D7net Mini Sh3LL v1

 
OFF  |  cURL : OFF  |  WGET : ON  |  Perl : ON  |  Python : OFF
Directory (0755) :  /var/www-old/html/

 Home   ☍ Command   ☍ Upload File   ☍Info Server   ☍ Buat File   ☍ Mass deface   ☍ Jumping   ☍ Config   ☍ Symlink   ☍ About 

Current File : /var/www-old/html/antarctic_drupal.sql
-- MySQL dump 10.19  Distrib 10.3.34-MariaDB, for debian-linux-gnu (x86_64)
--
-- Host: localhost    Database: antarctic_drupal
-- ------------------------------------------------------
-- Server version	10.3.34-MariaDB-0ubuntu0.20.04.1

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

--
-- Table structure for table `actions`
--

DROP TABLE IF EXISTS `actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `actions` (
  `aid` varchar(255) NOT NULL DEFAULT '0' COMMENT 'Primary Key: Unique actions ID.',
  `type` varchar(32) NOT NULL DEFAULT '' COMMENT 'The object that that action acts on (node, user, comment, system or custom types.)',
  `callback` varchar(255) NOT NULL DEFAULT '' COMMENT 'The callback function that executes when the action runs.',
  `parameters` longblob NOT NULL COMMENT 'Parameters to be passed to the callback function.',
  `label` varchar(255) NOT NULL DEFAULT '0' COMMENT 'Label of the action.',
  PRIMARY KEY (`aid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores action information.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `actions`
--

LOCK TABLES `actions` WRITE;
/*!40000 ALTER TABLE `actions` DISABLE KEYS */;
INSERT INTO `actions` VALUES ('comment_publish_action','comment','comment_publish_action','','Publish comment'),('comment_save_action','comment','comment_save_action','','Save comment'),('comment_unpublish_action','comment','comment_unpublish_action','','Unpublish comment'),('node_make_sticky_action','node','node_make_sticky_action','','Make content sticky'),('node_make_unsticky_action','node','node_make_unsticky_action','','Make content unsticky'),('node_promote_action','node','node_promote_action','','Promote content to front page'),('node_publish_action','node','node_publish_action','','Publish content'),('node_save_action','node','node_save_action','','Save content'),('node_unpromote_action','node','node_unpromote_action','','Remove content from front page'),('node_unpublish_action','node','node_unpublish_action','','Unpublish content'),('system_block_ip_action','user','system_block_ip_action','','Ban IP address of current user'),('user_block_user_action','user','user_block_user_action','','Block current user');
/*!40000 ALTER TABLE `actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `authmap`
--

DROP TABLE IF EXISTS `authmap`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `authmap` (
  `aid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: Unique authmap ID.',
  `uid` int(11) NOT NULL DEFAULT 0 COMMENT 'User’s users.uid.',
  `authname` varchar(128) NOT NULL DEFAULT '' COMMENT 'Unique authentication name.',
  `module` varchar(128) NOT NULL DEFAULT '' COMMENT 'Module which is controlling the authentication.',
  PRIMARY KEY (`aid`),
  UNIQUE KEY `authname` (`authname`),
  KEY `uid_module` (`uid`,`module`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COMMENT='Stores distributed authentication mapping.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `authmap`
--

LOCK TABLES `authmap` WRITE;
/*!40000 ALTER TABLE `authmap` DISABLE KEYS */;
INSERT INTO `authmap` VALUES (1,28,'raffmont','radius_client_auth'),(2,37,'budillon@uniparthenope.it','radius_client_auth'),(3,38,'diana.diluccio@uniparthenope.it','radius_client_auth'),(4,39,'0121000060','radius_client_auth'),(5,40,'destefano@uniparthenope.it','radius_client_auth'),(6,41,'destefano','radius_client_auth'),(7,42,'arturo','radius_client_auth'),(8,62,'budillon','radius_client_auth');
/*!40000 ALTER TABLE `authmap` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `batch`
--

DROP TABLE IF EXISTS `batch`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `batch` (
  `bid` int(10) unsigned NOT NULL COMMENT 'Primary Key: Unique batch ID.',
  `token` varchar(64) NOT NULL COMMENT 'A string token generated against the current user’s session id and the batch id, used to ensure that only the user who submitted the batch can effectively access it.',
  `timestamp` int(11) NOT NULL COMMENT 'A Unix timestamp indicating when this batch was submitted for processing. Stale batches are purged at cron time.',
  `batch` longblob DEFAULT NULL COMMENT 'A serialized array containing the processing data for the batch.',
  PRIMARY KEY (`bid`),
  KEY `token` (`token`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores details about batches (processes that run in...';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `batch`
--

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

--
-- Table structure for table `block`
--

DROP TABLE IF EXISTS `block`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `block` (
  `bid` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: Unique block ID.',
  `module` varchar(64) NOT NULL DEFAULT '' COMMENT 'The module from which the block originates; for example, ’user’ for the Who’s Online block, and ’block’ for any custom blocks.',
  `delta` varchar(32) NOT NULL DEFAULT '0' COMMENT 'Unique ID for block within a module.',
  `theme` varchar(64) NOT NULL DEFAULT '' COMMENT 'The theme under which the block settings apply.',
  `status` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'Block enabled status. (1 = enabled, 0 = disabled)',
  `weight` int(11) NOT NULL DEFAULT 0 COMMENT 'Block weight within region.',
  `region` varchar(64) NOT NULL DEFAULT '' COMMENT 'Theme region within which the block is set.',
  `custom` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'Flag to indicate how users may control visibility of the block. (0 = Users cannot control, 1 = On by default, but can be hidden, 2 = Hidden by default, but can be shown)',
  `visibility` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'Flag to indicate how to show blocks on pages. (0 = Show on all pages except listed pages, 1 = Show only on listed pages, 2 = Use custom PHP code to determine visibility)',
  `pages` text NOT NULL COMMENT 'Contents of the "Pages" block; contains either a list of paths on which to include/exclude the block or PHP code, depending on "visibility" setting.',
  `title` varchar(255) NOT NULL DEFAULT '' COMMENT 'Custom title for the block. (Empty string will use block default title, <none> will remove the title, text will cause block to use specified title.)',
  `cache` tinyint(4) NOT NULL DEFAULT 1 COMMENT 'Binary flag to indicate block cache mode. (-2: Custom cache, -1: Do not cache, 1: Cache per role, 2: Cache per user, 4: Cache per page, 8: Block cache global) See DRUPAL_CACHE_* constants in ../includes/common.inc for more detailed information.',
  `i18n_mode` int(11) NOT NULL DEFAULT 0 COMMENT 'Block multilingual mode.',
  PRIMARY KEY (`bid`),
  UNIQUE KEY `tmd` (`theme`,`module`,`delta`),
  KEY `list` (`theme`,`status`,`region`,`weight`,`module`)
) ENGINE=InnoDB AUTO_INCREMENT=176 DEFAULT CHARSET=utf8 COMMENT='Stores block settings, such as region and visibility...';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `block`
--

LOCK TABLES `block` WRITE;
/*!40000 ALTER TABLE `block` DISABLE KEYS */;
INSERT INTO `block` VALUES (1,'system','main','bartik',1,0,'content',0,0,'<front>','',-1,0),(2,'search','form','bartik',1,-1,'sidebar_first',0,0,'','',-1,0),(3,'node','recent','seven',1,10,'dashboard_main',0,0,'','',-1,0),(4,'user','login','bartik',0,0,'-1',1,0,'','',-1,0),(5,'system','navigation','bartik',1,0,'sidebar_first',0,0,'chart/page\r\nnode/57\r\nnode/58\r\nnode/59\r\nnode/60\r\nnode/61\r\nnode/62\r\nnode/63\r\nnode/64\r\nnode/65\r\nnode/66\r\nnode/67\r\nnode/68\r\nnode/69\r\nnode/70\r\nnode/71\r\nnode/72\r\nnode/73\r\nnode/74\r\nnode/75\r\nnode/76\r\nnode/77\r\nnode/78\r\nnode/79\r\nnode/80\r\nnode/81','Navigation',-1,0),(6,'system','powered-by','bartik',1,10,'footer',0,0,'','',-1,0),(7,'system','help','bartik',0,0,'-1',0,0,'chart/page','',-1,0),(8,'system','main','seven',1,0,'content',0,0,'<front>','',-1,0),(9,'system','help','seven',0,0,'-1',0,0,'chart/page','',-1,0),(10,'user','login','seven',0,10,'-1',1,0,'','',-1,0),(11,'user','new','seven',1,0,'dashboard_sidebar',0,0,'','',-1,0),(12,'search','form','seven',1,-10,'dashboard_sidebar',0,0,'','',-1,0),(13,'comment','recent','bartik',0,0,'-1',0,0,'','',1,0),(14,'node','syndicate','bartik',0,0,'-1',0,0,'','',-1,0),(15,'node','recent','bartik',0,0,'-1',0,0,'','',1,0),(16,'shortcut','shortcuts','bartik',0,0,'-1',0,0,'','',-1,0),(17,'system','management','bartik',0,0,'-1',0,0,'','',-1,0),(18,'system','user-menu','bartik',0,0,'-1',0,0,'chart/page\r\nnode/57\r\nnode/58\r\nnode/59\r\nnode/60\r\nnode/61\r\nnode/62\r\nnode/63\r\nnode/64\r\nnode/65\r\nnode/66\r\nnode/67\r\nnode/68\r\nnode/69\r\nnode/70\r\nnode/71\r\nnode/72\r\nnode/73\r\nnode/74\r\nnode/75\r\nnode/76\r\nnode/77\r\nnode/78\r\nnode/79\r\nnode/80\r\nnode/81','',-1,0),(19,'system','main-menu','bartik',0,0,'-1',0,0,'','',-1,0),(20,'user','new','bartik',0,0,'-1',0,0,'','',1,0),(21,'user','online','bartik',0,0,'-1',0,0,'','',-1,0),(22,'comment','recent','seven',1,0,'dashboard_inactive',0,0,'','',1,0),(23,'node','syndicate','seven',0,0,'-1',0,0,'','',-1,0),(24,'shortcut','shortcuts','seven',0,0,'-1',0,0,'','',-1,0),(25,'system','powered-by','seven',0,10,'-1',0,0,'','',-1,0),(26,'system','navigation','seven',0,0,'-1',0,0,'chart/page\r\nnode/57\r\nnode/58\r\nnode/59\r\nnode/60\r\nnode/61\r\nnode/62\r\nnode/63\r\nnode/64\r\nnode/65\r\nnode/66\r\nnode/67\r\nnode/68\r\nnode/69\r\nnode/70\r\nnode/71\r\nnode/72\r\nnode/73\r\nnode/74\r\nnode/75\r\nnode/76\r\nnode/77\r\nnode/78\r\nnode/79\r\nnode/80\r\nnode/81','Navigation',-1,0),(27,'system','management','seven',0,0,'-1',0,0,'','',-1,0),(28,'system','user-menu','seven',0,0,'-1',0,0,'chart/page\r\nnode/57\r\nnode/58\r\nnode/59\r\nnode/60\r\nnode/61\r\nnode/62\r\nnode/63\r\nnode/64\r\nnode/65\r\nnode/66\r\nnode/67\r\nnode/68\r\nnode/69\r\nnode/70\r\nnode/71\r\nnode/72\r\nnode/73\r\nnode/74\r\nnode/75\r\nnode/76\r\nnode/77\r\nnode/78\r\nnode/79\r\nnode/80\r\nnode/81','',-1,0),(29,'system','main-menu','seven',0,0,'-1',0,0,'','',-1,0),(30,'user','online','seven',1,0,'dashboard_inactive',0,0,'','',-1,0),(31,'locale','language','bartik',0,0,'-1',1,0,'chart/page\r\nnode/57\r\nnode/58\r\nnode/59\r\nnode/60\r\nnode/61\r\nnode/62\r\nnode/63\r\nnode/64\r\nnode/65\r\nnode/66\r\nnode/67\r\nnode/68\r\nnode/69\r\nnode/70\r\nnode/71\r\nnode/72\r\nnode/73\r\nnode/74\r\nnode/75\r\nnode/76\r\nnode/77\r\nnode/78\r\nnode/79\r\nnode/80\r\nnode/81','',-1,0),(32,'locale','language','seven',0,0,'-1',1,0,'chart/page\r\nnode/57\r\nnode/58\r\nnode/59\r\nnode/60\r\nnode/61\r\nnode/62\r\nnode/63\r\nnode/64\r\nnode/65\r\nnode/66\r\nnode/67\r\nnode/68\r\nnode/69\r\nnode/70\r\nnode/71\r\nnode/72\r\nnode/73\r\nnode/74\r\nnode/75\r\nnode/76\r\nnode/77\r\nnode/78\r\nnode/79\r\nnode/80\r\nnode/81','',-1,0),(33,'comment','recent','alpha_responsive_theme',0,0,'-1',0,0,'','',1,0),(34,'locale','language','alpha_responsive_theme',0,0,'-1',1,0,'chart/page\r\nnode/57\r\nnode/58\r\nnode/59\r\nnode/60\r\nnode/61\r\nnode/62\r\nnode/63\r\nnode/64\r\nnode/65\r\nnode/66\r\nnode/67\r\nnode/68\r\nnode/69\r\nnode/70\r\nnode/71\r\nnode/72\r\nnode/73\r\nnode/74\r\nnode/75\r\nnode/76\r\nnode/77\r\nnode/78\r\nnode/79\r\nnode/80\r\nnode/81','',-1,0),(35,'node','recent','alpha_responsive_theme',0,0,'-1',0,0,'','',1,0),(36,'node','syndicate','alpha_responsive_theme',0,0,'-1',0,0,'','',-1,0),(37,'search','form','alpha_responsive_theme',1,-1,'sidebar_first',0,0,'','',-1,0),(38,'shortcut','shortcuts','alpha_responsive_theme',0,0,'-1',0,0,'','',-1,0),(39,'system','help','alpha_responsive_theme',0,0,'-1',0,0,'chart/page','',-1,0),(40,'system','main','alpha_responsive_theme',1,0,'content',0,0,'<front>','',-1,0),(41,'system','main-menu','alpha_responsive_theme',0,0,'-1',0,0,'','',-1,0),(42,'system','management','alpha_responsive_theme',0,0,'-1',0,0,'','',-1,0),(43,'system','navigation','alpha_responsive_theme',1,0,'sidebar_first',0,0,'chart/page\r\nnode/57\r\nnode/58\r\nnode/59\r\nnode/60\r\nnode/61\r\nnode/62\r\nnode/63\r\nnode/64\r\nnode/65\r\nnode/66\r\nnode/67\r\nnode/68\r\nnode/69\r\nnode/70\r\nnode/71\r\nnode/72\r\nnode/73\r\nnode/74\r\nnode/75\r\nnode/76\r\nnode/77\r\nnode/78\r\nnode/79\r\nnode/80\r\nnode/81','Navigation',-1,0),(44,'system','powered-by','alpha_responsive_theme',1,10,'search',0,0,'','',-1,0),(45,'system','user-menu','alpha_responsive_theme',0,0,'-1',0,0,'chart/page\r\nnode/57\r\nnode/58\r\nnode/59\r\nnode/60\r\nnode/61\r\nnode/62\r\nnode/63\r\nnode/64\r\nnode/65\r\nnode/66\r\nnode/67\r\nnode/68\r\nnode/69\r\nnode/70\r\nnode/71\r\nnode/72\r\nnode/73\r\nnode/74\r\nnode/75\r\nnode/76\r\nnode/77\r\nnode/78\r\nnode/79\r\nnode/80\r\nnode/81','',-1,0),(46,'user','login','alpha_responsive_theme',0,0,'-1',1,0,'','',-1,0),(47,'user','new','alpha_responsive_theme',0,0,'-1',0,0,'','',1,0),(48,'user','online','alpha_responsive_theme',0,0,'-1',0,0,'','',-1,0),(49,'comment','recent','multipurpose',0,0,'-1',0,0,'','',1,0),(50,'locale','language','multipurpose',0,-14,'-1',1,0,'chart/page\r\nnode/57\r\nnode/58\r\nnode/59\r\nnode/60\r\nnode/61\r\nnode/62\r\nnode/63\r\nnode/64\r\nnode/65\r\nnode/66\r\nnode/67\r\nnode/68\r\nnode/69\r\nnode/70\r\nnode/71\r\nnode/72\r\nnode/73\r\nnode/74\r\nnode/75\r\nnode/76\r\nnode/77\r\nnode/78\r\nnode/79\r\nnode/80\r\nnode/81','',-1,0),(51,'node','recent','multipurpose',0,0,'-1',0,0,'','',1,0),(52,'node','syndicate','multipurpose',0,0,'-1',0,0,'','',-1,0),(53,'search','form','multipurpose',1,-11,'sidebar_first',0,0,'','',-1,0),(54,'shortcut','shortcuts','multipurpose',0,0,'-1',0,0,'','',-1,0),(55,'system','help','multipurpose',0,-11,'-1',0,0,'chart/page','',-1,0),(56,'system','main','multipurpose',0,-14,'-1',0,0,'<front>','',-1,0),(57,'system','main-menu','multipurpose',0,0,'-1',0,0,'','',-1,0),(58,'system','management','multipurpose',0,0,'-1',0,0,'','',-1,0),(59,'system','navigation','multipurpose',1,-12,'sidebar_first',0,0,'chart/page\r\nnode/57\r\nnode/58\r\nnode/59\r\nnode/60\r\nnode/61\r\nnode/62\r\nnode/63\r\nnode/64\r\nnode/65\r\nnode/66\r\nnode/67\r\nnode/68\r\nnode/69\r\nnode/70\r\nnode/71\r\nnode/72\r\nnode/73\r\nnode/74\r\nnode/75\r\nnode/76\r\nnode/77\r\nnode/78\r\nnode/79\r\nnode/80\r\nnode/81','Navigation',-1,0),(60,'system','powered-by','multipurpose',0,-8,'-1',0,0,'','',-1,0),(61,'system','user-menu','multipurpose',1,-10,'sidebar_first',0,0,'chart/page\r\nnode/57\r\nnode/58\r\nnode/59\r\nnode/60\r\nnode/61\r\nnode/62\r\nnode/63\r\nnode/64\r\nnode/65\r\nnode/66\r\nnode/67\r\nnode/68\r\nnode/69\r\nnode/70\r\nnode/71\r\nnode/72\r\nnode/73\r\nnode/74\r\nnode/75\r\nnode/76\r\nnode/77\r\nnode/78\r\nnode/79\r\nnode/80\r\nnode/81','',-1,0),(62,'user','login','multipurpose',0,-13,'-1',1,0,'','',-1,0),(63,'user','new','multipurpose',0,0,'-1',0,0,'','',1,0),(64,'user','online','multipurpose',0,0,'-1',0,0,'','',-1,0),(65,'photos','latest_images','alpha_responsive_theme',0,0,'-1',0,0,'','',1,0),(66,'photos','user_images','alpha_responsive_theme',0,0,'-1',0,0,'','',1,0),(67,'photos','information_pager','alpha_responsive_theme',0,0,'-1',0,0,'','',-1,0),(68,'photos','random_images','alpha_responsive_theme',0,0,'-1',0,0,'','',1,0),(69,'photos','latest_images','bartik',0,0,'-1',0,0,'','',1,0),(70,'photos','user_images','bartik',0,0,'-1',0,0,'','',1,0),(71,'photos','information_pager','bartik',0,0,'-1',0,0,'','',-1,0),(72,'photos','random_images','bartik',0,0,'-1',0,0,'','',1,0),(73,'photos','latest_images','multipurpose',0,0,'-1',0,0,'','',1,0),(74,'photos','user_images','multipurpose',0,0,'-1',0,0,'','',1,0),(75,'photos','information_pager','multipurpose',0,0,'-1',0,0,'','',-1,0),(76,'photos','random_images','multipurpose',0,0,'-1',0,0,'','',1,0),(77,'photos','latest_images','seven',0,0,'-1',0,0,'','',1,0),(78,'photos','user_images','seven',0,0,'-1',0,0,'','',1,0),(79,'photos','information_pager','seven',0,0,'-1',0,0,'','',-1,0),(80,'photos','random_images','seven',0,0,'-1',0,0,'','',1,0),(81,'comment','recent','venture_theme',0,0,'-1',0,0,'','',1,0),(82,'locale','language','venture_theme',0,-8,'-1',1,0,'chart/page\r\nnode/57\r\nnode/58\r\nnode/59\r\nnode/60\r\nnode/61\r\nnode/62\r\nnode/63\r\nnode/64\r\nnode/65\r\nnode/66\r\nnode/67\r\nnode/68\r\nnode/69\r\nnode/70\r\nnode/71\r\nnode/72\r\nnode/73\r\nnode/74\r\nnode/75\r\nnode/76\r\nnode/77\r\nnode/78\r\nnode/79\r\nnode/80\r\nnode/81','',-1,0),(83,'node','recent','venture_theme',0,0,'-1',0,0,'','',1,0),(84,'node','syndicate','venture_theme',0,0,'-1',0,0,'','',-1,0),(85,'photos','information_pager','venture_theme',0,0,'-1',0,0,'','',-1,0),(86,'photos','latest_images','venture_theme',0,0,'-1',0,0,'','',1,0),(87,'photos','random_images','venture_theme',0,0,'-1',0,0,'','',1,0),(88,'photos','user_images','venture_theme',0,0,'-1',0,0,'','',1,0),(89,'search','form','venture_theme',1,-7,'sidebar_first',0,0,'','',-1,0),(90,'shortcut','shortcuts','venture_theme',0,0,'-1',0,0,'','',-1,0),(91,'system','help','venture_theme',0,-6,'-1',0,0,'chart/page','',-1,0),(92,'system','main','venture_theme',1,0,'content',0,0,'<front>','',-1,0),(93,'system','main-menu','venture_theme',0,0,'-1',0,0,'','',-1,0),(94,'system','management','venture_theme',0,0,'-1',0,0,'','',-1,0),(95,'system','navigation','venture_theme',1,0,'preface_first',0,0,'chart/page\r\nnode/57\r\nnode/58\r\nnode/59\r\nnode/60\r\nnode/61\r\nnode/62\r\nnode/63\r\nnode/64\r\nnode/65\r\nnode/66\r\nnode/67\r\nnode/68\r\nnode/69\r\nnode/70\r\nnode/71\r\nnode/72\r\nnode/73\r\nnode/74\r\nnode/75\r\nnode/76\r\nnode/77\r\nnode/78\r\nnode/79\r\nnode/80\r\nnode/81','Navigation',-1,0),(96,'system','powered-by','venture_theme',0,-8,'-1',0,0,'','',-1,0),(97,'system','user-menu','venture_theme',1,0,'header',0,0,'chart/page\r\nnode/57\r\nnode/58\r\nnode/59\r\nnode/60\r\nnode/61\r\nnode/62\r\nnode/63\r\nnode/64\r\nnode/65\r\nnode/66\r\nnode/67\r\nnode/68\r\nnode/69\r\nnode/70\r\nnode/71\r\nnode/72\r\nnode/73\r\nnode/74\r\nnode/75\r\nnode/76\r\nnode/77\r\nnode/78\r\nnode/79\r\nnode/80\r\nnode/81','',-1,0),(98,'user','login','venture_theme',0,-5,'-1',1,0,'','',-1,0),(99,'user','new','venture_theme',0,0,'-1',0,0,'','',1,0),(100,'user','online','venture_theme',0,0,'-1',0,0,'','',-1,0),(101,'views','articles-block','multipurpose',1,0,'footer_first',0,0,'','',-1,0),(102,'views','articles-block','alpha_responsive_theme',0,0,'-1',0,0,'','',-1,0),(103,'views','articles-block','bartik',0,0,'-1',0,0,'','',-1,0),(104,'views','articles-block','seven',0,0,'-1',0,0,'','',-1,0),(105,'views','articles-block','venture_theme',0,0,'-1',0,0,'','',-1,0),(106,'locationmap','image','alpha_responsive_theme',0,0,'-1',0,0,'','',1,0),(107,'locationmap','image','bartik',0,0,'-1',0,0,'','',1,0),(108,'locationmap','image','multipurpose',0,0,'-1',0,0,'','',1,0),(109,'locationmap','image','seven',0,0,'-1',0,0,'','',1,0),(110,'locationmap','image','venture_theme',0,0,'-1',0,0,'','',1,0),(111,'gmap_location','0','alpha_responsive_theme',0,0,'-1',0,0,'','',-1,0),(112,'gmap_location','1','alpha_responsive_theme',0,0,'-1',0,0,'','',-1,0),(113,'gmap_location','0','bartik',0,0,'-1',0,0,'','',-1,0),(114,'gmap_location','1','bartik',0,0,'-1',0,0,'','',-1,0),(115,'gmap_location','0','multipurpose',0,0,'-1',0,0,'','',-1,0),(116,'gmap_location','1','multipurpose',0,0,'-1',0,0,'','',-1,0),(117,'gmap_location','0','seven',0,0,'-1',0,0,'','',-1,0),(118,'gmap_location','1','seven',0,0,'-1',0,0,'','',-1,0),(119,'gmap_location','0','venture_theme',0,0,'-1',0,0,'','',-1,0),(120,'gmap_location','1','venture_theme',0,0,'-1',0,0,'','',-1,0),(121,'menu','features','alpha_responsive_theme',0,0,'-1',0,0,'','',-1,0),(122,'menu','features','bartik',0,0,'-1',0,0,'','',-1,0),(123,'menu','features','multipurpose',0,0,'-1',0,0,'','',-1,0),(124,'menu','features','seven',0,0,'-1',0,0,'','',-1,0),(125,'menu','features','venture_theme',0,0,'-1',0,0,'','',-1,0),(126,'views','moorings_gallery_2012-block','multipurpose',1,-12,'content',0,1,'node/28','The Moorings deployed in 2012',-1,0),(127,'views','moorings_gallery_2014-block','multipurpose',1,-11,'content',0,1,'node/28','The Moorings deployed in 2014',-1,0),(128,'views','moorings_gallery_2012-block','alpha_responsive_theme',0,0,'-1',0,1,'node/28','The Moorings deployed in 2012',-1,0),(129,'views','moorings_gallery_2012-block','bartik',0,0,'-1',0,1,'node/28','The Moorings deployed in 2012',-1,0),(130,'views','moorings_gallery_2012-block','seven',0,0,'-1',0,1,'node/28','The Moorings deployed in 2012',-1,0),(131,'views','moorings_gallery_2012-block','venture_theme',0,0,'-1',0,1,'node/28','The Moorings deployed in 2012',-1,0),(132,'views','moorings_gallery_2014-block','alpha_responsive_theme',0,0,'-1',0,1,'node/28','The Moorings deployed in 2014',-1,0),(133,'views','moorings_gallery_2014-block','bartik',0,0,'-1',0,1,'node/28','The Moorings deployed in 2014',-1,0),(134,'views','moorings_gallery_2014-block','seven',0,0,'-1',0,1,'node/28','The Moorings deployed in 2014',-1,0),(135,'views','moorings_gallery_2014-block','venture_theme',0,0,'-1',0,1,'node/28','The Moorings deployed in 2014',-1,0),(136,'chartModule','chart','alpha_responsive_theme',0,0,'-1',0,0,'','',-1,0),(137,'chartModule','chart','bartik',0,0,'-1',0,0,'','',-1,0),(138,'chartModule','chart','multipurpose',0,0,'-1',0,0,'','',-1,0),(139,'chartModule','chart','seven',0,0,'-1',0,0,'','',-1,0),(140,'chartModule','chart','venture_theme',0,0,'-1',0,0,'','',-1,0),(146,'locale','language_content','alpha_responsive_theme',0,0,'-1',0,0,'chart/page\r\nnode/57\r\nnode/58\r\nnode/59\r\nnode/60\r\nnode/61\r\nnode/62\r\nnode/63\r\nnode/64\r\nnode/65\r\nnode/66\r\nnode/67\r\nnode/68\r\nnode/69\r\nnode/70\r\nnode/71\r\nnode/72\r\nnode/73\r\nnode/74\r\nnode/75\r\nnode/76\r\nnode/77\r\nnode/78\r\nnode/79\r\nnode/80\r\nnode/81','',-1,0),(147,'forum','active','alpha_responsive_theme',0,0,'-1',0,0,'','',-2,0),(148,'forum','new','alpha_responsive_theme',0,0,'-1',0,0,'','',-2,0),(149,'locale','language_content','bartik',0,0,'-1',0,0,'chart/page\r\nnode/57\r\nnode/58\r\nnode/59\r\nnode/60\r\nnode/61\r\nnode/62\r\nnode/63\r\nnode/64\r\nnode/65\r\nnode/66\r\nnode/67\r\nnode/68\r\nnode/69\r\nnode/70\r\nnode/71\r\nnode/72\r\nnode/73\r\nnode/74\r\nnode/75\r\nnode/76\r\nnode/77\r\nnode/78\r\nnode/79\r\nnode/80\r\nnode/81','',-1,0),(150,'forum','active','bartik',0,0,'-1',0,0,'','',-2,0),(151,'forum','new','bartik',0,0,'-1',0,0,'','',-2,0),(152,'locale','language_content','multipurpose',1,0,'sidebar_first',0,0,'chart/page\r\nnode/57\r\nnode/58\r\nnode/59\r\nnode/60\r\nnode/61\r\nnode/62\r\nnode/63\r\nnode/64\r\nnode/65\r\nnode/66\r\nnode/67\r\nnode/68\r\nnode/69\r\nnode/70\r\nnode/71\r\nnode/72\r\nnode/73\r\nnode/74\r\nnode/75\r\nnode/76\r\nnode/77\r\nnode/78\r\nnode/79\r\nnode/80\r\nnode/81','',-1,0),(153,'forum','active','multipurpose',0,0,'-1',0,0,'','',-2,0),(154,'forum','new','multipurpose',0,0,'-1',0,0,'','',-2,0),(155,'locale','language_content','seven',0,0,'-1',0,0,'chart/page\r\nnode/57\r\nnode/58\r\nnode/59\r\nnode/60\r\nnode/61\r\nnode/62\r\nnode/63\r\nnode/64\r\nnode/65\r\nnode/66\r\nnode/67\r\nnode/68\r\nnode/69\r\nnode/70\r\nnode/71\r\nnode/72\r\nnode/73\r\nnode/74\r\nnode/75\r\nnode/76\r\nnode/77\r\nnode/78\r\nnode/79\r\nnode/80\r\nnode/81','',-1,0),(156,'forum','active','seven',1,0,'dashboard_inactive',0,0,'','',-2,0),(157,'forum','new','seven',1,0,'dashboard_inactive',0,0,'','',-2,0),(158,'locale','language_content','venture_theme',0,0,'-1',0,0,'chart/page\r\nnode/57\r\nnode/58\r\nnode/59\r\nnode/60\r\nnode/61\r\nnode/62\r\nnode/63\r\nnode/64\r\nnode/65\r\nnode/66\r\nnode/67\r\nnode/68\r\nnode/69\r\nnode/70\r\nnode/71\r\nnode/72\r\nnode/73\r\nnode/74\r\nnode/75\r\nnode/76\r\nnode/77\r\nnode/78\r\nnode/79\r\nnode/80\r\nnode/81','',-1,0),(159,'forum','active','venture_theme',0,0,'-1',0,0,'','',-2,0),(160,'forum','new','venture_theme',0,0,'-1',0,0,'','',-2,0),(166,'block','2','alpha_responsive_theme',0,0,'-1',0,1,'<front>','',-1,1),(167,'block','2','bartik',0,0,'-1',0,1,'<front>','',-1,1),(168,'block','2','multipurpose',1,0,'content',0,1,'<front>','',-1,1),(169,'block','2','seven',0,0,'-1',0,1,'<front>','',-1,1),(170,'block','2','venture_theme',0,0,'-1',0,1,'<front>','',-1,1),(171,'block','3','alpha_responsive_theme',0,0,'-1',0,0,'chart/page\r\nnode/57\r\nnode/58\r\nnode/59\r\nnode/60\r\nnode/61\r\nnode/62\r\nnode/63\r\nnode/64\r\nnode/65\r\nnode/66\r\nnode/67\r\nnode/68\r\nnode/69\r\nnode/70\r\nnode/71\r\nnode/72\r\nnode/73\r\nnode/74\r\nnode/75\r\nnode/76\r\nnode/77\r\nnode/78\r\nnode/79\r\nnode/80\r\nnode/81','Log in',-1,0),(172,'block','3','bartik',0,0,'-1',0,0,'chart/page\r\nnode/57\r\nnode/58\r\nnode/59\r\nnode/60\r\nnode/61\r\nnode/62\r\nnode/63\r\nnode/64\r\nnode/65\r\nnode/66\r\nnode/67\r\nnode/68\r\nnode/69\r\nnode/70\r\nnode/71\r\nnode/72\r\nnode/73\r\nnode/74\r\nnode/75\r\nnode/76\r\nnode/77\r\nnode/78\r\nnode/79\r\nnode/80\r\nnode/81','Log in',-1,0),(173,'block','3','multipurpose',1,0,'sidebar_first',0,0,'chart/page\r\nnode/57\r\nnode/58\r\nnode/59\r\nnode/60\r\nnode/61\r\nnode/62\r\nnode/63\r\nnode/64\r\nnode/65\r\nnode/66\r\nnode/67\r\nnode/68\r\nnode/69\r\nnode/70\r\nnode/71\r\nnode/72\r\nnode/73\r\nnode/74\r\nnode/75\r\nnode/76\r\nnode/77\r\nnode/78\r\nnode/79\r\nnode/80\r\nnode/81','Log in',-1,0),(174,'block','3','seven',0,0,'-1',0,0,'chart/page\r\nnode/57\r\nnode/58\r\nnode/59\r\nnode/60\r\nnode/61\r\nnode/62\r\nnode/63\r\nnode/64\r\nnode/65\r\nnode/66\r\nnode/67\r\nnode/68\r\nnode/69\r\nnode/70\r\nnode/71\r\nnode/72\r\nnode/73\r\nnode/74\r\nnode/75\r\nnode/76\r\nnode/77\r\nnode/78\r\nnode/79\r\nnode/80\r\nnode/81','Log in',-1,0),(175,'block','3','venture_theme',0,0,'-1',0,0,'chart/page\r\nnode/57\r\nnode/58\r\nnode/59\r\nnode/60\r\nnode/61\r\nnode/62\r\nnode/63\r\nnode/64\r\nnode/65\r\nnode/66\r\nnode/67\r\nnode/68\r\nnode/69\r\nnode/70\r\nnode/71\r\nnode/72\r\nnode/73\r\nnode/74\r\nnode/75\r\nnode/76\r\nnode/77\r\nnode/78\r\nnode/79\r\nnode/80\r\nnode/81','Log in',-1,0);
/*!40000 ALTER TABLE `block` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `block_custom`
--

DROP TABLE IF EXISTS `block_custom`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `block_custom` (
  `bid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'The block’s block.bid.',
  `body` longtext DEFAULT NULL COMMENT 'Block contents.',
  `info` varchar(128) NOT NULL DEFAULT '' COMMENT 'Block description.',
  `format` varchar(255) DEFAULT NULL COMMENT 'The filter_format.format of the block body.',
  PRIMARY KEY (`bid`),
  UNIQUE KEY `info` (`info`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Stores contents of custom-made blocks.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `block_custom`
--

LOCK TABLES `block_custom` WRITE;
/*!40000 ALTER TABLE `block_custom` DISABLE KEYS */;
INSERT INTO `block_custom` VALUES (2,'<p align=\"justify\">The  <strong>MORSea</strong> (<em>Marine Observatory in the Ross Sea</em>), project funded by<a href=\"http://www.pnra.it/\"> P.N.R.A.</a>(<em>National Research Program in Antarctica</em>), focuses on the management of the marine observatory established since 1994 in the Ross Sea in the framework of CLIMA (Climatic Long-term Interaction for Mass balance in Antarctica p.i. G. Spezie) and ABIOCLEAR (<em>Antartic BIOgeochemical cycles-Climatic and. palEoclimAtic Recostructions</em> p.i. M. Ravaioli) projects. After the ending of these projects in 2010, the National Scientific Commission for Antarctica (<a href=\"http://www.csna.it/\">CSNA</a>) highlighted the importance of supporting activities connected to a network of four moorings in the Ross Sea. The moorings, previously named B, D, G and L, play an important role in the study of climate change and the interannual variability of the physical and biogeochemical processes in the water column.\r\nMooring activities have recently been associated to other oceanographic measurements conducted on the basis of the \"ship of opportunity\" concept. Measurements of sea surface temperature and salinity (SST and SSS respectively), launches of XBT and  XCTD probes, deployment of drifters and floats have been carried on without any need of additional ship-time.\r\nAll these activities were conducted up to 2009 in the framework of previous PNRA project as CLIMA and Southern Ocean Chokepoints Italian Contribution (SOChIC) and during last years have been introduced in the MORSea project in order to keep the continuity of the precious time series acquired since 1994\r\nIn Italy the project activities essentially concern the validation and analysis of the acquired data and the dissemination of scientific results achieved.</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/MooringRossSea2014.png\" style=\"height:495px; width:660px\" /></div>','casa','full_html'),(3,'<form action=\"/?q=user\" method=\"post\" id=\"user-login\" accept-charset=\"UTF-8\">\r\n<div>\r\n<div class=\"description\"><label for=\"edit-name\">Username <span class=\"form-required\" title=\"This field is required.\">*</span></label></div><input type=\"text\" id=\"edit-name\" name=\"name\" value=\"\" size=\"25\" maxlength=\"60\" class=\"form-text required\" />\r\n<div class=\"description\"><label for=\"edit-pass\">Password <span class=\"form-required\" title=\"This field is required.\">*</span></label></div><input type=\"password\" id=\"edit-pass\" name=\"pass\" size=\"25\" maxlength=\"128\" class=\"form-text required\" /><li><a href=\"/?q=user/password\">Request new password</a></li>\r\n<input type=\"hidden\" name=\"form_build_id\" value=\"form-QbTB5t7w4NGe033TzDwPx4scFy16dZjs26Y5oQKclUc\" /><input type=\"hidden\" name=\"form_id\" value=\"user_login\" /><input type=\"submit\" id=\"edit-submit\" name=\"op\" value=\"Log in\" class=\"form-submit\" />\r\n</div></form>','Log in','full_html');
/*!40000 ALTER TABLE `block_custom` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `block_node_type`
--

DROP TABLE IF EXISTS `block_node_type`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `block_node_type` (
  `module` varchar(64) NOT NULL COMMENT 'The block’s origin module, from block.module.',
  `delta` varchar(32) NOT NULL COMMENT 'The block’s unique delta within module, from block.delta.',
  `type` varchar(32) NOT NULL COMMENT 'The machine-readable name of this type from node_type.type.',
  PRIMARY KEY (`module`,`delta`,`type`),
  KEY `type` (`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sets up display criteria for blocks based on content types';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `block_node_type`
--

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

--
-- Table structure for table `block_role`
--

DROP TABLE IF EXISTS `block_role`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `block_role` (
  `module` varchar(64) NOT NULL COMMENT 'The block’s origin module, from block.module.',
  `delta` varchar(32) NOT NULL COMMENT 'The block’s unique delta within module, from block.delta.',
  `rid` int(10) unsigned NOT NULL COMMENT 'The user’s role ID from users_roles.rid.',
  PRIMARY KEY (`module`,`delta`,`rid`),
  KEY `rid` (`rid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sets up access permissions for blocks based on user roles';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `block_role`
--

LOCK TABLES `block_role` WRITE;
/*!40000 ALTER TABLE `block_role` DISABLE KEYS */;
INSERT INTO `block_role` VALUES ('block','3',1);
/*!40000 ALTER TABLE `block_role` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `blocked_ips`
--

DROP TABLE IF EXISTS `blocked_ips`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `blocked_ips` (
  `iid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: unique ID for IP addresses.',
  `ip` varchar(40) NOT NULL DEFAULT '' COMMENT 'IP address',
  PRIMARY KEY (`iid`),
  KEY `blocked_ip` (`ip`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores blocked IP addresses.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `blocked_ips`
--

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

--
-- Table structure for table `cache`
--

DROP TABLE IF EXISTS `cache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cache` (
  `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
  `data` longblob DEFAULT NULL COMMENT 'A collection of data to cache.',
  `expire` int(11) NOT NULL DEFAULT 0 COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
  `created` int(11) NOT NULL DEFAULT 0 COMMENT 'A Unix timestamp indicating when the cache entry was created.',
  `serialized` smallint(6) NOT NULL DEFAULT 0 COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
  PRIMARY KEY (`cid`),
  KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Generic cache table for caching things not separated out...';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cache`
--

LOCK TABLES `cache` WRITE;
/*!40000 ALTER TABLE `cache` DISABLE KEYS */;
INSERT INTO `cache` VALUES ('ctools_plugin_files:ctools:content_types','a:4:{s:6:\"ctools\";a:63:{s:20:\"node_comment_wrapper\";O:8:\"stdClass\":3:{s:3:\"uri\";s:84:\"sites/all/modules/ctools/plugins/content_types/node_context/node_comment_wrapper.inc\";s:8:\"filename\";s:24:\"node_comment_wrapper.inc\";s:4:\"name\";s:20:\"node_comment_wrapper\";}s:13:\"node_book_nav\";O:8:\"stdClass\":3:{s:3:\"uri\";s:77:\"sites/all/modules/ctools/plugins/content_types/node_context/node_book_nav.inc\";s:8:\"filename\";s:17:\"node_book_nav.inc\";s:4:\"name\";s:13:\"node_book_nav\";}s:12:\"node_created\";O:8:\"stdClass\":3:{s:3:\"uri\";s:76:\"sites/all/modules/ctools/plugins/content_types/node_context/node_created.inc\";s:8:\"filename\";s:16:\"node_created.inc\";s:4:\"name\";s:12:\"node_created\";}s:10:\"node_title\";O:8:\"stdClass\":3:{s:3:\"uri\";s:74:\"sites/all/modules/ctools/plugins/content_types/node_context/node_title.inc\";s:8:\"filename\";s:14:\"node_title.inc\";s:4:\"name\";s:10:\"node_title\";}s:11:\"node_author\";O:8:\"stdClass\":3:{s:3:\"uri\";s:75:\"sites/all/modules/ctools/plugins/content_types/node_context/node_author.inc\";s:8:\"filename\";s:15:\"node_author.inc\";s:4:\"name\";s:11:\"node_author\";}s:12:\"node_updated\";O:8:\"stdClass\":3:{s:3:\"uri\";s:76:\"sites/all/modules/ctools/plugins/content_types/node_context/node_updated.inc\";s:8:\"filename\";s:16:\"node_updated.inc\";s:4:\"name\";s:12:\"node_updated\";}s:13:\"node_comments\";O:8:\"stdClass\":3:{s:3:\"uri\";s:77:\"sites/all/modules/ctools/plugins/content_types/node_context/node_comments.inc\";s:8:\"filename\";s:17:\"node_comments.inc\";s:4:\"name\";s:13:\"node_comments\";}s:16:\"node_attachments\";O:8:\"stdClass\":3:{s:3:\"uri\";s:80:\"sites/all/modules/ctools/plugins/content_types/node_context/node_attachments.inc\";s:8:\"filename\";s:20:\"node_attachments.inc\";s:4:\"name\";s:16:\"node_attachments\";}s:9:\"node_body\";O:8:\"stdClass\":3:{s:3:\"uri\";s:73:\"sites/all/modules/ctools/plugins/content_types/node_context/node_body.inc\";s:8:\"filename\";s:13:\"node_body.inc\";s:4:\"name\";s:9:\"node_body\";}s:12:\"node_content\";O:8:\"stdClass\":3:{s:3:\"uri\";s:76:\"sites/all/modules/ctools/plugins/content_types/node_context/node_content.inc\";s:8:\"filename\";s:16:\"node_content.inc\";s:4:\"name\";s:12:\"node_content\";}s:10:\"node_terms\";O:8:\"stdClass\":3:{s:3:\"uri\";s:74:\"sites/all/modules/ctools/plugins/content_types/node_context/node_terms.inc\";s:8:\"filename\";s:14:\"node_terms.inc\";s:4:\"name\";s:10:\"node_terms\";}s:17:\"node_comment_form\";O:8:\"stdClass\":3:{s:3:\"uri\";s:81:\"sites/all/modules/ctools/plugins/content_types/node_context/node_comment_form.inc\";s:8:\"filename\";s:21:\"node_comment_form.inc\";s:4:\"name\";s:17:\"node_comment_form\";}s:14:\"node_book_menu\";O:8:\"stdClass\":3:{s:3:\"uri\";s:78:\"sites/all/modules/ctools/plugins/content_types/node_context/node_book_menu.inc\";s:8:\"filename\";s:18:\"node_book_menu.inc\";s:4:\"name\";s:14:\"node_book_menu\";}s:18:\"node_book_children\";O:8:\"stdClass\":3:{s:3:\"uri\";s:82:\"sites/all/modules/ctools/plugins/content_types/node_context/node_book_children.inc\";s:8:\"filename\";s:22:\"node_book_children.inc\";s:4:\"name\";s:18:\"node_book_children\";}s:14:\"node_type_desc\";O:8:\"stdClass\":3:{s:3:\"uri\";s:78:\"sites/all/modules/ctools/plugins/content_types/node_context/node_type_desc.inc\";s:8:\"filename\";s:18:\"node_type_desc.inc\";s:4:\"name\";s:14:\"node_type_desc\";}s:10:\"node_links\";O:8:\"stdClass\":3:{s:3:\"uri\";s:74:\"sites/all/modules/ctools/plugins/content_types/node_context/node_links.inc\";s:8:\"filename\";s:14:\"node_links.inc\";s:4:\"name\";s:10:\"node_links\";}s:13:\"search_result\";O:8:\"stdClass\":3:{s:3:\"uri\";s:71:\"sites/all/modules/ctools/plugins/content_types/search/search_result.inc\";s:8:\"filename\";s:17:\"search_result.inc\";s:4:\"name\";s:13:\"search_result\";}s:11:\"search_form\";O:8:\"stdClass\":3:{s:3:\"uri\";s:69:\"sites/all/modules/ctools/plugins/content_types/search/search_form.inc\";s:8:\"filename\";s:15:\"search_form.inc\";s:4:\"name\";s:11:\"search_form\";}s:20:\"page_secondary_links\";O:8:\"stdClass\":3:{s:3:\"uri\";s:76:\"sites/all/modules/ctools/plugins/content_types/page/page_secondary_links.inc\";s:8:\"filename\";s:24:\"page_secondary_links.inc\";s:4:\"name\";s:20:\"page_secondary_links\";}s:18:\"page_primary_links\";O:8:\"stdClass\":3:{s:3:\"uri\";s:74:\"sites/all/modules/ctools/plugins/content_types/page/page_primary_links.inc\";s:8:\"filename\";s:22:\"page_primary_links.inc\";s:4:\"name\";s:18:\"page_primary_links\";}s:9:\"page_help\";O:8:\"stdClass\":3:{s:3:\"uri\";s:65:\"sites/all/modules/ctools/plugins/content_types/page/page_help.inc\";s:8:\"filename\";s:13:\"page_help.inc\";s:4:\"name\";s:9:\"page_help\";}s:14:\"page_site_name\";O:8:\"stdClass\":3:{s:3:\"uri\";s:70:\"sites/all/modules/ctools/plugins/content_types/page/page_site_name.inc\";s:8:\"filename\";s:18:\"page_site_name.inc\";s:4:\"name\";s:14:\"page_site_name\";}s:12:\"page_actions\";O:8:\"stdClass\":3:{s:3:\"uri\";s:68:\"sites/all/modules/ctools/plugins/content_types/page/page_actions.inc\";s:8:\"filename\";s:16:\"page_actions.inc\";s:4:\"name\";s:12:\"page_actions\";}s:10:\"page_title\";O:8:\"stdClass\":3:{s:3:\"uri\";s:66:\"sites/all/modules/ctools/plugins/content_types/page/page_title.inc\";s:8:\"filename\";s:14:\"page_title.inc\";s:4:\"name\";s:10:\"page_title\";}s:15:\"page_feed_icons\";O:8:\"stdClass\":3:{s:3:\"uri\";s:71:\"sites/all/modules/ctools/plugins/content_types/page/page_feed_icons.inc\";s:8:\"filename\";s:19:\"page_feed_icons.inc\";s:4:\"name\";s:15:\"page_feed_icons\";}s:9:\"page_logo\";O:8:\"stdClass\":3:{s:3:\"uri\";s:65:\"sites/all/modules/ctools/plugins/content_types/page/page_logo.inc\";s:8:\"filename\";s:13:\"page_logo.inc\";s:4:\"name\";s:9:\"page_logo\";}s:15:\"page_breadcrumb\";O:8:\"stdClass\":3:{s:3:\"uri\";s:71:\"sites/all/modules/ctools/plugins/content_types/page/page_breadcrumb.inc\";s:8:\"filename\";s:19:\"page_breadcrumb.inc\";s:4:\"name\";s:15:\"page_breadcrumb\";}s:11:\"page_slogan\";O:8:\"stdClass\":3:{s:3:\"uri\";s:67:\"sites/all/modules/ctools/plugins/content_types/page/page_slogan.inc\";s:8:\"filename\";s:15:\"page_slogan.inc\";s:4:\"name\";s:11:\"page_slogan\";}s:9:\"page_tabs\";O:8:\"stdClass\":3:{s:3:\"uri\";s:65:\"sites/all/modules/ctools/plugins/content_types/page/page_tabs.inc\";s:8:\"filename\";s:13:\"page_tabs.inc\";s:4:\"name\";s:9:\"page_tabs\";}s:13:\"page_messages\";O:8:\"stdClass\":3:{s:3:\"uri\";s:69:\"sites/all/modules/ctools/plugins/content_types/page/page_messages.inc\";s:8:\"filename\";s:17:\"page_messages.inc\";s:4:\"name\";s:13:\"page_messages\";}s:5:\"token\";O:8:\"stdClass\":3:{s:3:\"uri\";s:62:\"sites/all/modules/ctools/plugins/content_types/token/token.inc\";s:8:\"filename\";s:9:\"token.inc\";s:4:\"name\";s:5:\"token\";}s:6:\"custom\";O:8:\"stdClass\":3:{s:3:\"uri\";s:64:\"sites/all/modules/ctools/plugins/content_types/custom/custom.inc\";s:8:\"filename\";s:10:\"custom.inc\";s:4:\"name\";s:6:\"custom\";}s:13:\"node_form_log\";O:8:\"stdClass\":3:{s:3:\"uri\";s:74:\"sites/all/modules/ctools/plugins/content_types/node_form/node_form_log.inc\";s:8:\"filename\";s:17:\"node_form_log.inc\";s:4:\"name\";s:13:\"node_form_log\";}s:17:\"node_form_comment\";O:8:\"stdClass\":3:{s:3:\"uri\";s:78:\"sites/all/modules/ctools/plugins/content_types/node_form/node_form_comment.inc\";s:8:\"filename\";s:21:\"node_form_comment.inc\";s:4:\"name\";s:17:\"node_form_comment\";}s:14:\"node_form_path\";O:8:\"stdClass\":3:{s:3:\"uri\";s:75:\"sites/all/modules/ctools/plugins/content_types/node_form/node_form_path.inc\";s:8:\"filename\";s:18:\"node_form_path.inc\";s:4:\"name\";s:14:\"node_form_path\";}s:17:\"node_form_buttons\";O:8:\"stdClass\":3:{s:3:\"uri\";s:78:\"sites/all/modules/ctools/plugins/content_types/node_form/node_form_buttons.inc\";s:8:\"filename\";s:21:\"node_form_buttons.inc\";s:4:\"name\";s:17:\"node_form_buttons\";}s:15:\"node_form_title\";O:8:\"stdClass\":3:{s:3:\"uri\";s:76:\"sites/all/modules/ctools/plugins/content_types/node_form/node_form_title.inc\";s:8:\"filename\";s:19:\"node_form_title.inc\";s:4:\"name\";s:15:\"node_form_title\";}s:14:\"node_form_book\";O:8:\"stdClass\":3:{s:3:\"uri\";s:75:\"sites/all/modules/ctools/plugins/content_types/node_form/node_form_book.inc\";s:8:\"filename\";s:18:\"node_form_book.inc\";s:4:\"name\";s:14:\"node_form_book\";}s:18:\"node_form_language\";O:8:\"stdClass\":3:{s:3:\"uri\";s:79:\"sites/all/modules/ctools/plugins/content_types/node_form/node_form_language.inc\";s:8:\"filename\";s:22:\"node_form_language.inc\";s:4:\"name\";s:18:\"node_form_language\";}s:16:\"node_form_author\";O:8:\"stdClass\":3:{s:3:\"uri\";s:77:\"sites/all/modules/ctools/plugins/content_types/node_form/node_form_author.inc\";s:8:\"filename\";s:20:\"node_form_author.inc\";s:4:\"name\";s:16:\"node_form_author\";}s:21:\"node_form_attachments\";O:8:\"stdClass\":3:{s:3:\"uri\";s:82:\"sites/all/modules/ctools/plugins/content_types/node_form/node_form_attachments.inc\";s:8:\"filename\";s:25:\"node_form_attachments.inc\";s:4:\"name\";s:21:\"node_form_attachments\";}s:14:\"node_form_menu\";O:8:\"stdClass\":3:{s:3:\"uri\";s:75:\"sites/all/modules/ctools/plugins/content_types/node_form/node_form_menu.inc\";s:8:\"filename\";s:18:\"node_form_menu.inc\";s:4:\"name\";s:14:\"node_form_menu\";}s:20:\"node_form_publishing\";O:8:\"stdClass\":3:{s:3:\"uri\";s:81:\"sites/all/modules/ctools/plugins/content_types/node_form/node_form_publishing.inc\";s:8:\"filename\";s:24:\"node_form_publishing.inc\";s:4:\"name\";s:20:\"node_form_publishing\";}s:10:\"user_links\";O:8:\"stdClass\":3:{s:3:\"uri\";s:74:\"sites/all/modules/ctools/plugins/content_types/user_context/user_links.inc\";s:8:\"filename\";s:14:\"user_links.inc\";s:4:\"name\";s:10:\"user_links\";}s:14:\"user_signature\";O:8:\"stdClass\":3:{s:3:\"uri\";s:78:\"sites/all/modules/ctools/plugins/content_types/user_context/user_signature.inc\";s:8:\"filename\";s:18:\"user_signature.inc\";s:4:\"name\";s:14:\"user_signature\";}s:14:\"profile_fields\";O:8:\"stdClass\":3:{s:3:\"uri\";s:78:\"sites/all/modules/ctools/plugins/content_types/user_context/profile_fields.inc\";s:8:\"filename\";s:18:\"profile_fields.inc\";s:4:\"name\";s:14:\"profile_fields\";}s:12:\"user_profile\";O:8:\"stdClass\":3:{s:3:\"uri\";s:76:\"sites/all/modules/ctools/plugins/content_types/user_context/user_profile.inc\";s:8:\"filename\";s:16:\"user_profile.inc\";s:4:\"name\";s:12:\"user_profile\";}s:12:\"user_picture\";O:8:\"stdClass\":3:{s:3:\"uri\";s:76:\"sites/all/modules/ctools/plugins/content_types/user_context/user_picture.inc\";s:8:\"filename\";s:16:\"user_picture.inc\";s:4:\"name\";s:12:\"user_picture\";}s:17:\"entity_form_field\";O:8:\"stdClass\":3:{s:3:\"uri\";s:73:\"sites/all/modules/ctools/plugins/content_types/form/entity_form_field.inc\";s:8:\"filename\";s:21:\"entity_form_field.inc\";s:4:\"name\";s:17:\"entity_form_field\";}s:4:\"form\";O:8:\"stdClass\":3:{s:3:\"uri\";s:60:\"sites/all/modules/ctools/plugins/content_types/form/form.inc\";s:8:\"filename\";s:8:\"form.inc\";s:4:\"name\";s:4:\"form\";}s:18:\"comment_reply_form\";O:8:\"stdClass\":3:{s:3:\"uri\";s:77:\"sites/all/modules/ctools/plugins/content_types/comment/comment_reply_form.inc\";s:8:\"filename\";s:22:\"comment_reply_form.inc\";s:4:\"name\";s:18:\"comment_reply_form\";}s:15:\"comment_created\";O:8:\"stdClass\":3:{s:3:\"uri\";s:74:\"sites/all/modules/ctools/plugins/content_types/comment/comment_created.inc\";s:8:\"filename\";s:19:\"comment_created.inc\";s:4:\"name\";s:15:\"comment_created\";}s:13:\"comment_links\";O:8:\"stdClass\":3:{s:3:\"uri\";s:72:\"sites/all/modules/ctools/plugins/content_types/comment/comment_links.inc\";s:8:\"filename\";s:17:\"comment_links.inc\";s:4:\"name\";s:13:\"comment_links\";}s:12:\"user_contact\";O:8:\"stdClass\":3:{s:3:\"uri\";s:71:\"sites/all/modules/ctools/plugins/content_types/contact/user_contact.inc\";s:8:\"filename\";s:16:\"user_contact.inc\";s:4:\"name\";s:12:\"user_contact\";}s:7:\"contact\";O:8:\"stdClass\":3:{s:3:\"uri\";s:66:\"sites/all/modules/ctools/plugins/content_types/contact/contact.inc\";s:8:\"filename\";s:11:\"contact.inc\";s:4:\"name\";s:7:\"contact\";}s:4:\"node\";O:8:\"stdClass\":3:{s:3:\"uri\";s:60:\"sites/all/modules/ctools/plugins/content_types/node/node.inc\";s:8:\"filename\";s:8:\"node.inc\";s:4:\"name\";s:4:\"node\";}s:5:\"block\";O:8:\"stdClass\":3:{s:3:\"uri\";s:62:\"sites/all/modules/ctools/plugins/content_types/block/block.inc\";s:8:\"filename\";s:9:\"block.inc\";s:4:\"name\";s:5:\"block\";}s:16:\"vocabulary_terms\";O:8:\"stdClass\":3:{s:3:\"uri\";s:86:\"sites/all/modules/ctools/plugins/content_types/vocabulary_context/vocabulary_terms.inc\";s:8:\"filename\";s:20:\"vocabulary_terms.inc\";s:4:\"name\";s:16:\"vocabulary_terms\";}s:18:\"entity_field_extra\";O:8:\"stdClass\":3:{s:3:\"uri\";s:84:\"sites/all/modules/ctools/plugins/content_types/entity_context/entity_field_extra.inc\";s:8:\"filename\";s:22:\"entity_field_extra.inc\";s:4:\"name\";s:18:\"entity_field_extra\";}s:12:\"entity_field\";O:8:\"stdClass\":3:{s:3:\"uri\";s:78:\"sites/all/modules/ctools/plugins/content_types/entity_context/entity_field.inc\";s:8:\"filename\";s:16:\"entity_field.inc\";s:4:\"name\";s:12:\"entity_field\";}s:16:\"term_description\";O:8:\"stdClass\":3:{s:3:\"uri\";s:80:\"sites/all/modules/ctools/plugins/content_types/term_context/term_description.inc\";s:8:\"filename\";s:20:\"term_description.inc\";s:4:\"name\";s:16:\"term_description\";}s:9:\"term_list\";O:8:\"stdClass\":3:{s:3:\"uri\";s:73:\"sites/all/modules/ctools/plugins/content_types/term_context/term_list.inc\";s:8:\"filename\";s:13:\"term_list.inc\";s:4:\"name\";s:9:\"term_list\";}s:9:\"term_name\";O:8:\"stdClass\":3:{s:3:\"uri\";s:73:\"sites/all/modules/ctools/plugins/content_types/term_context/term_name.inc\";s:8:\"filename\";s:13:\"term_name.inc\";s:4:\"name\";s:9:\"term_name\";}}s:6:\"entity\";a:1:{s:11:\"entity_view\";O:8:\"stdClass\":3:{s:3:\"uri\";s:61:\"sites/all/modules/entity/ctools/content_types/entity_view.inc\";s:8:\"filename\";s:15:\"entity_view.inc\";s:4:\"name\";s:11:\"entity_view\";}}s:8:\"geocoder\";a:0:{}s:8:\"location\";a:0:{}}',0,1538750670,1),('ctools_plugin_files:ctools:export_ui','a:5:{s:6:\"ctools\";a:1:{s:16:\"ctools_export_ui\";O:8:\"stdClass\":3:{s:3:\"uri\";s:63:\"sites/all/modules/ctools/plugins/export_ui/ctools_export_ui.inc\";s:8:\"filename\";s:20:\"ctools_export_ui.inc\";s:4:\"name\";s:16:\"ctools_export_ui\";}}s:6:\"entity\";a:0:{}s:8:\"geocoder\";a:0:{}s:8:\"location\";a:0:{}s:8:\"views_ui\";a:1:{s:8:\"views_ui\";O:8:\"stdClass\":3:{s:3:\"uri\";s:54:\"sites/all/modules/views/plugins/export_ui/views_ui.inc\";s:8:\"filename\";s:12:\"views_ui.inc\";s:4:\"name\";s:8:\"views_ui\";}}}',0,1652162471,1),('ctools_plugin_files:geocoder:geocoder_handler','a:1:{s:8:\"geocoder\";a:14:{s:3:\"wkt\";O:8:\"stdClass\":3:{s:3:\"uri\";s:59:\"sites/all/modules/geocoder/plugins/geocoder_handler/wkt.inc\";s:8:\"filename\";s:7:\"wkt.inc\";s:4:\"name\";s:3:\"wkt\";}s:6:\"google\";O:8:\"stdClass\":3:{s:3:\"uri\";s:62:\"sites/all/modules/geocoder/plugins/geocoder_handler/google.inc\";s:8:\"filename\";s:10:\"google.inc\";s:4:\"name\";s:6:\"google\";}s:6:\"latlon\";O:8:\"stdClass\":3:{s:3:\"uri\";s:62:\"sites/all/modules/geocoder/plugins/geocoder_handler/latlon.inc\";s:8:\"filename\";s:10:\"latlon.inc\";s:4:\"name\";s:6:\"latlon\";}s:23:\"openstreetmap_nominatim\";O:8:\"stdClass\":3:{s:3:\"uri\";s:79:\"sites/all/modules/geocoder/plugins/geocoder_handler/openstreetmap_nominatim.inc\";s:8:\"filename\";s:27:\"openstreetmap_nominatim.inc\";s:4:\"name\";s:23:\"openstreetmap_nominatim\";}s:6:\"mapzen\";O:8:\"stdClass\":3:{s:3:\"uri\";s:62:\"sites/all/modules/geocoder/plugins/geocoder_handler/mapzen.inc\";s:8:\"filename\";s:10:\"mapzen.inc\";s:4:\"name\";s:6:\"mapzen\";}s:4:\"bing\";O:8:\"stdClass\":3:{s:3:\"uri\";s:60:\"sites/all/modules/geocoder/plugins/geocoder_handler/bing.inc\";s:8:\"filename\";s:8:\"bing.inc\";s:4:\"name\";s:4:\"bing\";}s:4:\"exif\";O:8:\"stdClass\":3:{s:3:\"uri\";s:60:\"sites/all/modules/geocoder/plugins/geocoder_handler/exif.inc\";s:8:\"filename\";s:8:\"exif.inc\";s:4:\"name\";s:4:\"exif\";}s:3:\"gpx\";O:8:\"stdClass\":3:{s:3:\"uri\";s:59:\"sites/all/modules/geocoder/plugins/geocoder_handler/gpx.inc\";s:8:\"filename\";s:7:\"gpx.inc\";s:4:\"name\";s:3:\"gpx\";}s:4:\"json\";O:8:\"stdClass\":3:{s:3:\"uri\";s:60:\"sites/all/modules/geocoder/plugins/geocoder_handler/json.inc\";s:8:\"filename\";s:8:\"json.inc\";s:4:\"name\";s:4:\"json\";}s:3:\"kml\";O:8:\"stdClass\":3:{s:3:\"uri\";s:59:\"sites/all/modules/geocoder/plugins/geocoder_handler/kml.inc\";s:8:\"filename\";s:7:\"kml.inc\";s:4:\"name\";s:3:\"kml\";}s:18:\"mapquest_nominatim\";O:8:\"stdClass\":3:{s:3:\"uri\";s:74:\"sites/all/modules/geocoder/plugins/geocoder_handler/mapquest_nominatim.inc\";s:8:\"filename\";s:22:\"mapquest_nominatim.inc\";s:4:\"name\";s:18:\"mapquest_nominatim\";}s:5:\"yahoo\";O:8:\"stdClass\":3:{s:3:\"uri\";s:61:\"sites/all/modules/geocoder/plugins/geocoder_handler/yahoo.inc\";s:8:\"filename\";s:9:\"yahoo.inc\";s:4:\"name\";s:5:\"yahoo\";}s:6:\"mapbox\";O:8:\"stdClass\":3:{s:3:\"uri\";s:62:\"sites/all/modules/geocoder/plugins/geocoder_handler/mapbox.inc\";s:8:\"filename\";s:10:\"mapbox.inc\";s:4:\"name\";s:6:\"mapbox\";}s:6:\"yandex\";O:8:\"stdClass\":3:{s:3:\"uri\";s:62:\"sites/all/modules/geocoder/plugins/geocoder_handler/yandex.inc\";s:8:\"filename\";s:10:\"yandex.inc\";s:4:\"name\";s:6:\"yandex\";}}}',0,1652162474,1),('ctools_plugin_files:geofield:geofield_backend','a:2:{s:8:\"geocoder\";a:0:{}s:8:\"geofield\";a:1:{s:7:\"default\";O:8:\"stdClass\":3:{s:3:\"uri\";s:64:\"sites/all/modules/geofield/includes/geofield_backend/default.inc\";s:8:\"filename\";s:11:\"default.inc\";s:4:\"name\";s:7:\"default\";}}}',0,1538750673,1),('ctools_plugin_type_info','a:5:{s:12:\"addressfield\";a:1:{s:6:\"format\";a:13:{s:11:\"load themes\";b:1;s:6:\"module\";s:12:\"addressfield\";s:4:\"type\";s:6:\"format\";s:5:\"cache\";b:0;s:11:\"cache table\";s:5:\"cache\";s:7:\"classes\";a:0:{}s:9:\"use hooks\";b:0;s:8:\"defaults\";a:0:{}s:7:\"process\";s:0:\"\";s:9:\"alterable\";b:1;s:9:\"extension\";s:3:\"inc\";s:9:\"info file\";b:0;s:4:\"hook\";s:19:\"addressfield_format\";}}s:6:\"ctools\";a:7:{s:13:\"content_types\";a:13:{s:5:\"cache\";b:0;s:7:\"process\";a:3:{s:8:\"function\";s:22:\"ctools_content_process\";s:4:\"file\";s:11:\"content.inc\";s:4:\"path\";s:33:\"sites/all/modules/ctools/includes\";}s:6:\"module\";s:6:\"ctools\";s:4:\"type\";s:13:\"content_types\";s:11:\"cache table\";s:5:\"cache\";s:7:\"classes\";a:0:{}s:9:\"use hooks\";b:0;s:8:\"defaults\";a:0:{}s:9:\"alterable\";b:1;s:9:\"extension\";s:3:\"inc\";s:9:\"info file\";b:0;s:4:\"hook\";s:20:\"ctools_content_types\";s:11:\"load themes\";b:0;}s:8:\"contexts\";a:14:{s:13:\"child plugins\";b:1;s:6:\"module\";s:6:\"ctools\";s:4:\"type\";s:8:\"contexts\";s:5:\"cache\";b:0;s:11:\"cache table\";s:5:\"cache\";s:7:\"classes\";a:0:{}s:9:\"use hooks\";b:0;s:8:\"defaults\";a:0:{}s:7:\"process\";s:0:\"\";s:9:\"alterable\";b:1;s:9:\"extension\";s:3:\"inc\";s:9:\"info file\";b:0;s:4:\"hook\";s:15:\"ctools_contexts\";s:11:\"load themes\";b:0;}s:9:\"arguments\";a:14:{s:13:\"child plugins\";b:1;s:6:\"module\";s:6:\"ctools\";s:4:\"type\";s:9:\"arguments\";s:5:\"cache\";b:0;s:11:\"cache table\";s:5:\"cache\";s:7:\"classes\";a:0:{}s:9:\"use hooks\";b:0;s:8:\"defaults\";a:0:{}s:7:\"process\";s:0:\"\";s:9:\"alterable\";b:1;s:9:\"extension\";s:3:\"inc\";s:9:\"info file\";b:0;s:4:\"hook\";s:16:\"ctools_arguments\";s:11:\"load themes\";b:0;}s:13:\"relationships\";a:14:{s:13:\"child plugins\";b:1;s:6:\"module\";s:6:\"ctools\";s:4:\"type\";s:13:\"relationships\";s:5:\"cache\";b:0;s:11:\"cache table\";s:5:\"cache\";s:7:\"classes\";a:0:{}s:9:\"use hooks\";b:0;s:8:\"defaults\";a:0:{}s:7:\"process\";s:0:\"\";s:9:\"alterable\";b:1;s:9:\"extension\";s:3:\"inc\";s:9:\"info file\";b:0;s:4:\"hook\";s:20:\"ctools_relationships\";s:11:\"load themes\";b:0;}s:6:\"access\";a:14:{s:13:\"child plugins\";b:1;s:6:\"module\";s:6:\"ctools\";s:4:\"type\";s:6:\"access\";s:5:\"cache\";b:0;s:11:\"cache table\";s:5:\"cache\";s:7:\"classes\";a:0:{}s:9:\"use hooks\";b:0;s:8:\"defaults\";a:0:{}s:7:\"process\";s:0:\"\";s:9:\"alterable\";b:1;s:9:\"extension\";s:3:\"inc\";s:9:\"info file\";b:0;s:4:\"hook\";s:13:\"ctools_access\";s:11:\"load themes\";b:0;}s:9:\"export_ui\";a:13:{s:7:\"process\";a:3:{s:8:\"function\";s:24:\"ctools_export_ui_process\";s:4:\"file\";s:13:\"export-ui.inc\";s:4:\"path\";s:33:\"sites/all/modules/ctools/includes\";}s:7:\"classes\";a:1:{i:0;s:7:\"handler\";}s:6:\"module\";s:6:\"ctools\";s:4:\"type\";s:9:\"export_ui\";s:5:\"cache\";b:0;s:11:\"cache table\";s:5:\"cache\";s:9:\"use hooks\";b:0;s:8:\"defaults\";a:0:{}s:9:\"alterable\";b:1;s:9:\"extension\";s:3:\"inc\";s:9:\"info file\";b:0;s:4:\"hook\";s:16:\"ctools_export_ui\";s:11:\"load themes\";b:0;}s:5:\"cache\";a:13:{s:6:\"module\";s:6:\"ctools\";s:4:\"type\";s:5:\"cache\";s:5:\"cache\";b:0;s:11:\"cache table\";s:5:\"cache\";s:7:\"classes\";a:0:{}s:9:\"use hooks\";b:0;s:8:\"defaults\";a:0:{}s:7:\"process\";s:0:\"\";s:9:\"alterable\";b:1;s:9:\"extension\";s:3:\"inc\";s:9:\"info file\";b:0;s:4:\"hook\";s:12:\"ctools_cache\";s:11:\"load themes\";b:0;}}s:8:\"geocoder\";a:2:{s:16:\"geocoder_handler\";a:13:{s:5:\"cache\";b:1;s:6:\"module\";s:8:\"geocoder\";s:4:\"type\";s:16:\"geocoder_handler\";s:11:\"cache table\";s:5:\"cache\";s:7:\"classes\";a:0:{}s:9:\"use hooks\";b:0;s:8:\"defaults\";a:0:{}s:7:\"process\";s:0:\"\";s:9:\"alterable\";b:1;s:9:\"extension\";s:3:\"inc\";s:9:\"info file\";b:0;s:4:\"hook\";s:25:\"geocoder_geocoder_handler\";s:11:\"load themes\";b:0;}s:24:\"geocoder_reverse_handler\";a:13:{s:6:\"module\";s:8:\"geocoder\";s:4:\"type\";s:24:\"geocoder_reverse_handler\";s:5:\"cache\";b:0;s:11:\"cache table\";s:5:\"cache\";s:7:\"classes\";a:0:{}s:9:\"use hooks\";b:0;s:8:\"defaults\";a:0:{}s:7:\"process\";s:0:\"\";s:9:\"alterable\";b:1;s:9:\"extension\";s:3:\"inc\";s:9:\"info file\";b:0;s:4:\"hook\";s:33:\"geocoder_geocoder_reverse_handler\";s:11:\"load themes\";b:0;}}s:8:\"geofield\";a:2:{s:16:\"geofield_backend\";a:13:{s:6:\"module\";s:8:\"geofield\";s:4:\"type\";s:16:\"geofield_backend\";s:5:\"cache\";b:0;s:11:\"cache table\";s:5:\"cache\";s:7:\"classes\";a:0:{}s:9:\"use hooks\";b:0;s:8:\"defaults\";a:0:{}s:7:\"process\";s:0:\"\";s:9:\"alterable\";b:1;s:9:\"extension\";s:3:\"inc\";s:9:\"info file\";b:0;s:4:\"hook\";s:25:\"geofield_geofield_backend\";s:11:\"load themes\";b:0;}s:9:\"behaviors\";a:13:{s:9:\"use hooks\";b:1;s:6:\"module\";s:8:\"geofield\";s:4:\"type\";s:9:\"behaviors\";s:5:\"cache\";b:0;s:11:\"cache table\";s:5:\"cache\";s:7:\"classes\";a:0:{}s:8:\"defaults\";a:0:{}s:7:\"process\";s:0:\"\";s:9:\"alterable\";b:1;s:9:\"extension\";s:3:\"inc\";s:9:\"info file\";b:0;s:4:\"hook\";s:18:\"geofield_behaviors\";s:11:\"load themes\";b:0;}}s:8:\"views_ui\";a:1:{s:12:\"views_wizard\";a:14:{s:13:\"child plugins\";b:1;s:7:\"classes\";a:1:{i:0;s:17:\"form_wizard_class\";}s:8:\"defaults\";a:6:{s:12:\"get children\";N;s:9:\"get child\";N;s:5:\"title\";s:0:\"\";s:10:\"base_table\";N;s:12:\"get_instance\";s:33:\"views_ui_get_form_wizard_instance\";s:17:\"form_wizard_class\";a:2:{s:4:\"file\";s:26:\"views_ui_base_views_wizard\";s:5:\"class\";s:22:\"ViewsUiBaseViewsWizard\";}}s:6:\"module\";s:8:\"views_ui\";s:4:\"type\";s:12:\"views_wizard\";s:5:\"cache\";b:0;s:11:\"cache table\";s:5:\"cache\";s:9:\"use hooks\";b:0;s:7:\"process\";s:0:\"\";s:9:\"alterable\";b:1;s:9:\"extension\";s:3:\"inc\";s:9:\"info file\";b:0;s:4:\"hook\";s:21:\"views_ui_views_wizard\";s:11:\"load themes\";b:0;}}}',0,1538750673,1),('entity_info:en','a:7:{s:4:\"node\";a:30:{s:17:\"field replacement\";a:1:{s:5:\"title\";a:4:{s:5:\"field\";a:4:{s:4:\"type\";s:4:\"text\";s:11:\"cardinality\";i:1;s:12:\"translatable\";b:1;s:10:\"field_name\";s:11:\"title_field\";}s:8:\"instance\";a:7:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:0:\"\";s:8:\"required\";b:1;s:8:\"settings\";a:1:{s:15:\"text_processing\";i:0;}s:6:\"widget\";a:1:{s:6:\"weight\";i:-5;}s:7:\"display\";a:1:{s:7:\"default\";a:1:{s:4:\"type\";s:6:\"hidden\";}}s:10:\"field_name\";s:11:\"title_field\";}s:9:\"callbacks\";a:2:{s:8:\"sync_get\";s:25:\"title_field_text_sync_get\";s:8:\"sync_set\";s:25:\"title_field_text_sync_set\";}s:14:\"preprocess_key\";s:5:\"title\";}}s:21:\"efq bundle conditions\";b:1;s:5:\"label\";s:4:\"Node\";s:16:\"controller class\";s:14:\"NodeController\";s:10:\"base table\";s:4:\"node\";s:14:\"revision table\";s:13:\"node_revision\";s:12:\"uri callback\";s:8:\"node_uri\";s:9:\"fieldable\";b:1;s:11:\"entity keys\";a:6:{s:2:\"id\";s:3:\"nid\";s:8:\"revision\";s:3:\"vid\";s:6:\"bundle\";s:4:\"type\";s:5:\"label\";s:5:\"title\";s:8:\"language\";s:8:\"language\";s:12:\"translations\";s:12:\"translations\";}s:11:\"bundle keys\";a:1:{s:6:\"bundle\";s:4:\"type\";}s:7:\"bundles\";a:9:{s:6:\"photos\";a:3:{s:5:\"label\";s:5:\"Album\";s:5:\"admin\";a:4:{s:4:\"path\";s:39:\"admin/structure/types/manage/%node_type\";s:9:\"real path\";s:35:\"admin/structure/types/manage/photos\";s:15:\"bundle argument\";i:4;s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_mapping\";a:9:{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\";}}}s:7:\"article\";a:3:{s:5:\"label\";s:7:\"Article\";s:5:\"admin\";a:4:{s:4:\"path\";s:39:\"admin/structure/types/manage/%node_type\";s:9:\"real path\";s:36:\"admin/structure/types/manage/article\";s:15:\"bundle argument\";i:4;s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_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\";}}}s:4:\"page\";a:3:{s:5:\"label\";s:10:\"Basic page\";s:5:\"admin\";a:4:{s:4:\"path\";s:39:\"admin/structure/types/manage/%node_type\";s:9:\"real path\";s:33:\"admin/structure/types/manage/page\";s:15:\"bundle argument\";i:4;s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_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\";}}}s:5:\"forum\";a:3:{s:5:\"label\";s:11:\"Forum topic\";s:5:\"admin\";a:4:{s:4:\"path\";s:39:\"admin/structure/types/manage/%node_type\";s:9:\"real path\";s:34:\"admin/structure/types/manage/forum\";s:15:\"bundle argument\";i:4;s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_mapping\";a:9:{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\";}}}s:7:\"mooring\";a:3:{s:5:\"label\";s:7:\"Mooring\";s:5:\"admin\";a:4:{s:4:\"path\";s:39:\"admin/structure/types/manage/%node_type\";s:9:\"real path\";s:36:\"admin/structure/types/manage/mooring\";s:15:\"bundle argument\";i:4;s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_mapping\";a:9:{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\";}}}s:26:\"openlayers_example_content\";a:3:{s:5:\"label\";s:26:\"OpenLayers Example Content\";s:5:\"admin\";a:4:{s:4:\"path\";s:39:\"admin/structure/types/manage/%node_type\";s:9:\"real path\";s:55:\"admin/structure/types/manage/openlayers-example-content\";s:15:\"bundle argument\";i:4;s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_mapping\";a:9:{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\";}}}s:19:\"photo_moorings_2010\";a:3:{s:5:\"label\";s:19:\"Photo Moorings 2010\";s:5:\"admin\";a:4:{s:4:\"path\";s:39:\"admin/structure/types/manage/%node_type\";s:9:\"real path\";s:48:\"admin/structure/types/manage/photo-moorings-2010\";s:15:\"bundle argument\";i:4;s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_mapping\";a:9:{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\";}}}s:19:\"photo_moorings_2012\";a:3:{s:5:\"label\";s:19:\"Photo Moorings 2012\";s:5:\"admin\";a:4:{s:4:\"path\";s:39:\"admin/structure/types/manage/%node_type\";s:9:\"real path\";s:48:\"admin/structure/types/manage/photo-moorings-2012\";s:15:\"bundle argument\";i:4;s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_mapping\";a:9:{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\";}}}s:19:\"photo_moorings_2014\";a:3:{s:5:\"label\";s:19:\"Photo Moorings 2014\";s:5:\"admin\";a:4:{s:4:\"path\";s:39:\"admin/structure/types/manage/%node_type\";s:9:\"real path\";s:48:\"admin/structure/types/manage/photo-moorings-2014\";s:15:\"bundle argument\";i:4;s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_mapping\";a:9:{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\";}}}}s:10:\"view modes\";a:3:{s:4:\"full\";a:2:{s:5:\"label\";s:12:\"Full content\";s:15:\"custom settings\";b:0;}s:6:\"teaser\";a:2:{s:5:\"label\";s:6:\"Teaser\";s:15:\"custom settings\";b:1;}s:3:\"rss\";a:2:{s:5:\"label\";s:3:\"RSS\";s:15:\"custom settings\";b:0;}}s:11:\"translation\";a:2:{s:18:\"entity_translation\";a:7:{s:5:\"class\";s:28:\"EntityTranslationNodeHandler\";s:15:\"access callback\";s:34:\"entity_translation_node_tab_access\";s:16:\"access arguments\";a:1:{i:0;i:1;}s:15:\"bundle callback\";s:38:\"entity_translation_node_supported_type\";s:16:\"default settings\";a:2:{s:16:\"default_language\";s:3:\"und\";s:22:\"hide_language_selector\";b:0;}s:12:\"path schemes\";a:1:{s:7:\"default\";a:7:{s:11:\"admin theme\";s:1:\"1\";s:9:\"base path\";s:10:\"node/%node\";s:9:\"view path\";s:10:\"node/%node\";s:9:\"edit path\";s:15:\"node/%node/edit\";s:14:\"translate path\";s:20:\"node/%node/translate\";s:13:\"path wildcard\";s:5:\"%node\";s:9:\"edit tabs\";b:1;}}s:9:\"edit form\";s:4:\"node\";}s:6:\"locale\";b:1;}s:12:\"static cache\";b:1;s:11:\"field cache\";b:1;s:9:\"load hook\";s:9:\"node_load\";s:22:\"base table field types\";a:14:{s:3:\"nid\";s:6:\"serial\";s:3:\"vid\";s:3:\"int\";s:4:\"type\";s:7:\"varchar\";s:8:\"language\";s:7:\"varchar\";s:5:\"title\";s:7:\"varchar\";s:3:\"uid\";s:3:\"int\";s:6:\"status\";s:3:\"int\";s:7:\"created\";s:3:\"int\";s:7:\"changed\";s:3:\"int\";s:7:\"comment\";s:3:\"int\";s:7:\"promote\";s:3:\"int\";s:6:\"sticky\";s:3:\"int\";s:4:\"tnid\";s:3:\"int\";s:9:\"translate\";s:3:\"int\";}s:17:\"schema_fields_sql\";a:2:{s:10:\"base table\";a:14:{i:0;s:3:\"nid\";i:1;s:3:\"vid\";i:2;s:4:\"type\";i:3;s:8:\"language\";i:4;s:5:\"title\";i:5;s:3:\"uid\";i:6;s:6:\"status\";i:7;s:7:\"created\";i:8;s:7:\"changed\";i:9;s:7:\"comment\";i:10;s:7:\"promote\";i:11;s:6:\"sticky\";i:12;s:4:\"tnid\";i:13;s:9:\"translate\";}s:14:\"revision table\";a:10:{i:0;s:3:\"nid\";i:1;s:3:\"vid\";i:2;s:3:\"uid\";i:3;s:5:\"title\";i:4;s:3:\"log\";i:5;s:9:\"timestamp\";i:6;s:6:\"status\";i:7;s:7:\"comment\";i:8;s:7:\"promote\";i:9;s:6:\"sticky\";}}s:12:\"plural label\";s:5:\"Nodes\";s:11:\"description\";s:44:\"Nodes represent the main site content items.\";s:15:\"access callback\";s:35:\"entity_metadata_no_hook_node_access\";s:17:\"creation callback\";s:27:\"entity_metadata_create_node\";s:13:\"save callback\";s:9:\"node_save\";s:17:\"deletion callback\";s:11:\"node_delete\";s:26:\"revision deletion callback\";s:20:\"node_revision_delete\";s:13:\"form callback\";s:25:\"entity_metadata_form_node\";s:13:\"view callback\";s:25:\"entity_metadata_view_node\";s:13:\"configuration\";b:0;s:17:\"language callback\";s:27:\"entity_translation_language\";s:14:\"label callback\";s:18:\"title_entity_label\";}s:13:\"taxonomy_term\";a:28:{s:17:\"field replacement\";a:2:{s:4:\"name\";a:4:{s:5:\"field\";a:4:{s:4:\"type\";s:4:\"text\";s:11:\"cardinality\";i:1;s:12:\"translatable\";b:1;s:10:\"field_name\";s:10:\"name_field\";}s:8:\"instance\";a:7:{s:5:\"label\";s:4:\"Name\";s:11:\"description\";s:0:\"\";s:8:\"required\";b:1;s:8:\"settings\";a:1:{s:15:\"text_processing\";i:0;}s:6:\"widget\";a:1:{s:6:\"weight\";i:-5;}s:7:\"display\";a:1:{s:7:\"default\";a:1:{s:4:\"type\";s:6:\"hidden\";}}s:10:\"field_name\";s:10:\"name_field\";}s:14:\"preprocess_key\";s:9:\"term_name\";s:9:\"callbacks\";a:2:{s:8:\"sync_get\";s:25:\"title_field_text_sync_get\";s:8:\"sync_set\";s:25:\"title_field_text_sync_set\";}}s:11:\"description\";a:4:{s:5:\"field\";a:4:{s:4:\"type\";s:17:\"text_with_summary\";s:11:\"cardinality\";i:1;s:12:\"translatable\";b:1;s:10:\"field_name\";s:17:\"description_field\";}s:8:\"instance\";a:7:{s:8:\"required\";b:0;s:5:\"label\";s:11:\"Description\";s:11:\"description\";s:0:\"\";s:8:\"settings\";a:1:{s:15:\"text_processing\";i:1;}s:6:\"widget\";a:1:{s:6:\"weight\";i:-5;}s:7:\"display\";a:1:{s:7:\"default\";a:1:{s:4:\"type\";s:6:\"hidden\";}}s:10:\"field_name\";s:17:\"description_field\";}s:9:\"callbacks\";a:3:{s:6:\"submit\";s:35:\"title_field_term_description_submit\";s:8:\"sync_get\";s:38:\"title_field_text_with_summary_sync_get\";s:8:\"sync_set\";s:38:\"title_field_text_with_summary_sync_set\";}s:15:\"additional keys\";a:1:{s:6:\"format\";s:6:\"format\";}}}s:5:\"label\";s:13:\"Taxonomy term\";s:16:\"controller class\";s:22:\"TaxonomyTermController\";s:10:\"base table\";s:18:\"taxonomy_term_data\";s:12:\"uri callback\";s:17:\"taxonomy_term_uri\";s:9:\"fieldable\";b:1;s:11:\"entity keys\";a:6:{s:2:\"id\";s:3:\"tid\";s:6:\"bundle\";s:23:\"vocabulary_machine_name\";s:5:\"label\";s:4:\"name\";s:8:\"revision\";s:0:\"\";s:8:\"language\";s:8:\"language\";s:12:\"translations\";s:12:\"translations\";}s:11:\"bundle keys\";a:1:{s:6:\"bundle\";s:12:\"machine_name\";}s:7:\"bundles\";a:2:{s:4:\"tags\";a:3:{s:5:\"label\";s:4:\"Tags\";s:5:\"admin\";a:4:{s:4:\"path\";s:58:\"admin/structure/taxonomy/%taxonomy_vocabulary_machine_name\";s:9:\"real path\";s:29:\"admin/structure/taxonomy/tags\";s:15:\"bundle argument\";i:3;s:16:\"access arguments\";a:1:{i:0;s:19:\"administer taxonomy\";}}s:11:\"rdf_mapping\";a:5:{s:7:\"rdftype\";a:1:{i:0;s:12:\"skos:Concept\";}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\";}}}s:6:\"forums\";a:4:{s:5:\"label\";s:6:\"Forums\";s:5:\"admin\";a:4:{s:4:\"path\";s:58:\"admin/structure/taxonomy/%taxonomy_vocabulary_machine_name\";s:9:\"real path\";s:31:\"admin/structure/taxonomy/forums\";s:15:\"bundle argument\";i:3;s:16:\"access arguments\";a:1:{i:0;s:19:\"administer taxonomy\";}}s:11:\"rdf_mapping\";a:5:{s:7:\"rdftype\";a:1:{i:0;s:12:\"skos:Concept\";}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\";}}s:12:\"uri callback\";s:9:\"forum_uri\";}}s:10:\"view modes\";a:1:{s:4:\"full\";a:2:{s:5:\"label\";s:18:\"Taxonomy term page\";s:15:\"custom settings\";b:0;}}s:11:\"translation\";a:1:{s:18:\"entity_translation\";a:6:{s:5:\"class\";s:36:\"EntityTranslationTaxonomyTermHandler\";s:15:\"access callback\";s:43:\"entity_translation_taxonomy_term_tab_access\";s:16:\"access arguments\";a:1:{i:0;i:1;}s:9:\"base path\";s:28:\"taxonomy/term/%taxonomy_term\";s:9:\"edit form\";s:4:\"term\";s:15:\"bundle callback\";s:51:\"entity_translation_taxonomy_term_enabled_vocabulary\";}}s:12:\"static cache\";b:1;s:11:\"field cache\";b:1;s:9:\"load hook\";s:18:\"taxonomy_term_load\";s:22:\"base table field types\";a:8:{s:3:\"tid\";s:6:\"serial\";s:3:\"vid\";s:3:\"int\";s:4:\"name\";s:7:\"varchar\";s:11:\"description\";s:4:\"text\";s:6:\"format\";s:7:\"varchar\";s:6:\"weight\";s:3:\"int\";s:8:\"language\";s:7:\"varchar\";s:9:\"i18n_tsid\";s:3:\"int\";}s:17:\"schema_fields_sql\";a:1:{s:10:\"base table\";a:8:{i:0;s:3:\"tid\";i:1;s:3:\"vid\";i:2;s:4:\"name\";i:3;s:11:\"description\";i:4;s:6:\"format\";i:5;s:6:\"weight\";i:6;s:8:\"language\";i:7;s:9:\"i18n_tsid\";}}s:14:\"label callback\";s:18:\"title_entity_label\";s:12:\"plural label\";s:14:\"Taxonomy terms\";s:11:\"description\";s:48:\"Taxonomy terms are used for classifying content.\";s:15:\"access callback\";s:31:\"entity_metadata_taxonomy_access\";s:17:\"creation callback\";s:29:\"entity_metadata_create_object\";s:13:\"save callback\";s:18:\"taxonomy_term_save\";s:17:\"deletion callback\";s:20:\"taxonomy_term_delete\";s:13:\"view callback\";s:27:\"entity_metadata_view_single\";s:13:\"form callback\";s:34:\"entity_metadata_form_taxonomy_term\";s:10:\"token type\";s:4:\"term\";s:13:\"configuration\";b:0;s:14:\"label fallback\";a:1:{s:5:\"title\";s:33:\"i18n_taxonomy_taxonomy_term_label\";}}s:7:\"comment\";a:25:{s:17:\"field replacement\";a:1:{s:7:\"subject\";a:4:{s:5:\"field\";a:4:{s:4:\"type\";s:4:\"text\";s:11:\"cardinality\";i:1;s:12:\"translatable\";b:1;s:10:\"field_name\";s:13:\"subject_field\";}s:8:\"instance\";a:7:{s:5:\"label\";s:7:\"Subject\";s:11:\"description\";s:0:\"\";s:8:\"required\";b:1;s:8:\"settings\";a:1:{s:15:\"text_processing\";i:0;}s:6:\"widget\";a:1:{s:6:\"weight\";i:-5;}s:7:\"display\";a:1:{s:7:\"default\";a:1:{s:4:\"type\";s:6:\"hidden\";}}s:10:\"field_name\";s:13:\"subject_field\";}s:14:\"preprocess_key\";s:5:\"title\";s:9:\"callbacks\";a:2:{s:8:\"sync_get\";s:25:\"title_field_text_sync_get\";s:8:\"sync_set\";s:25:\"title_field_text_sync_set\";}}}s:5:\"label\";s:7:\"Comment\";s:10:\"base table\";s:7:\"comment\";s:12:\"uri callback\";s:11:\"comment_uri\";s:9:\"fieldable\";b:1;s:16:\"controller class\";s:17:\"CommentController\";s:11:\"entity keys\";a:6:{s:2:\"id\";s:3:\"cid\";s:6:\"bundle\";s:9:\"node_type\";s:5:\"label\";s:7:\"subject\";s:8:\"language\";s:8:\"language\";s:8:\"revision\";s:0:\"\";s:12:\"translations\";s:12:\"translations\";}s:7:\"bundles\";a:9:{s:19:\"comment_node_photos\";a:4:{s:5:\"label\";s:13:\"Album comment\";s:11:\"node bundle\";s:6:\"photos\";s:5:\"admin\";a:4:{s:4:\"path\";s:55:\"admin/structure/types/manage/%comment_node_type/comment\";s:15:\"bundle argument\";i:4;s:9:\"real path\";s:43:\"admin/structure/types/manage/photos/comment\";s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_mapping\";a:8:{s:7:\"rdftype\";a:2:{i:0;s:9:\"sioc:Post\";i:1;s:13:\"sioct:Comment\";}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:12:\"comment_body\";a:1:{s:10:\"predicates\";a:1:{i:0;s:15:\"content:encoded\";}}s:3:\"pid\";a:2:{s:10:\"predicates\";a:1:{i:0;s:13:\"sioc:reply_of\";}s:4:\"type\";s:3:\"rel\";}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:20:\"comment_node_article\";a:4:{s:5:\"label\";s:15:\"Article comment\";s:11:\"node bundle\";s:7:\"article\";s:5:\"admin\";a:4:{s:4:\"path\";s:55:\"admin/structure/types/manage/%comment_node_type/comment\";s:15:\"bundle argument\";i:4;s:9:\"real path\";s:44:\"admin/structure/types/manage/article/comment\";s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_mapping\";a:8:{s:7:\"rdftype\";a:2:{i:0;s:9:\"sioc:Post\";i:1;s:13:\"sioct:Comment\";}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:12:\"comment_body\";a:1:{s:10:\"predicates\";a:1:{i:0;s:15:\"content:encoded\";}}s:3:\"pid\";a:2:{s:10:\"predicates\";a:1:{i:0;s:13:\"sioc:reply_of\";}s:4:\"type\";s:3:\"rel\";}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:17:\"comment_node_page\";a:4:{s:5:\"label\";s:18:\"Basic page comment\";s:11:\"node bundle\";s:4:\"page\";s:5:\"admin\";a:4:{s:4:\"path\";s:55:\"admin/structure/types/manage/%comment_node_type/comment\";s:15:\"bundle argument\";i:4;s:9:\"real path\";s:41:\"admin/structure/types/manage/page/comment\";s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_mapping\";a:8:{s:7:\"rdftype\";a:2:{i:0;s:9:\"sioc:Post\";i:1;s:13:\"sioct:Comment\";}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:12:\"comment_body\";a:1:{s:10:\"predicates\";a:1:{i:0;s:15:\"content:encoded\";}}s:3:\"pid\";a:2:{s:10:\"predicates\";a:1:{i:0;s:13:\"sioc:reply_of\";}s:4:\"type\";s:3:\"rel\";}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:18:\"comment_node_forum\";a:4:{s:5:\"label\";s:19:\"Forum topic comment\";s:11:\"node bundle\";s:5:\"forum\";s:5:\"admin\";a:4:{s:4:\"path\";s:55:\"admin/structure/types/manage/%comment_node_type/comment\";s:15:\"bundle argument\";i:4;s:9:\"real path\";s:42:\"admin/structure/types/manage/forum/comment\";s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_mapping\";a:8:{s:7:\"rdftype\";a:2:{i:0;s:9:\"sioc:Post\";i:1;s:13:\"sioct:Comment\";}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:12:\"comment_body\";a:1:{s:10:\"predicates\";a:1:{i:0;s:15:\"content:encoded\";}}s:3:\"pid\";a:2:{s:10:\"predicates\";a:1:{i:0;s:13:\"sioc:reply_of\";}s:4:\"type\";s:3:\"rel\";}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:20:\"comment_node_mooring\";a:4:{s:5:\"label\";s:15:\"Mooring comment\";s:11:\"node bundle\";s:7:\"mooring\";s:5:\"admin\";a:4:{s:4:\"path\";s:55:\"admin/structure/types/manage/%comment_node_type/comment\";s:15:\"bundle argument\";i:4;s:9:\"real path\";s:44:\"admin/structure/types/manage/mooring/comment\";s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_mapping\";a:8:{s:7:\"rdftype\";a:2:{i:0;s:9:\"sioc:Post\";i:1;s:13:\"sioct:Comment\";}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:12:\"comment_body\";a:1:{s:10:\"predicates\";a:1:{i:0;s:15:\"content:encoded\";}}s:3:\"pid\";a:2:{s:10:\"predicates\";a:1:{i:0;s:13:\"sioc:reply_of\";}s:4:\"type\";s:3:\"rel\";}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:39:\"comment_node_openlayers_example_content\";a:4:{s:5:\"label\";s:34:\"OpenLayers Example Content comment\";s:11:\"node bundle\";s:26:\"openlayers_example_content\";s:5:\"admin\";a:4:{s:4:\"path\";s:55:\"admin/structure/types/manage/%comment_node_type/comment\";s:15:\"bundle argument\";i:4;s:9:\"real path\";s:63:\"admin/structure/types/manage/openlayers-example-content/comment\";s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_mapping\";a:8:{s:7:\"rdftype\";a:2:{i:0;s:9:\"sioc:Post\";i:1;s:13:\"sioct:Comment\";}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:12:\"comment_body\";a:1:{s:10:\"predicates\";a:1:{i:0;s:15:\"content:encoded\";}}s:3:\"pid\";a:2:{s:10:\"predicates\";a:1:{i:0;s:13:\"sioc:reply_of\";}s:4:\"type\";s:3:\"rel\";}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:32:\"comment_node_photo_moorings_2010\";a:4:{s:5:\"label\";s:27:\"Photo Moorings 2010 comment\";s:11:\"node bundle\";s:19:\"photo_moorings_2010\";s:5:\"admin\";a:4:{s:4:\"path\";s:55:\"admin/structure/types/manage/%comment_node_type/comment\";s:15:\"bundle argument\";i:4;s:9:\"real path\";s:56:\"admin/structure/types/manage/photo-moorings-2010/comment\";s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_mapping\";a:8:{s:7:\"rdftype\";a:2:{i:0;s:9:\"sioc:Post\";i:1;s:13:\"sioct:Comment\";}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:12:\"comment_body\";a:1:{s:10:\"predicates\";a:1:{i:0;s:15:\"content:encoded\";}}s:3:\"pid\";a:2:{s:10:\"predicates\";a:1:{i:0;s:13:\"sioc:reply_of\";}s:4:\"type\";s:3:\"rel\";}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:32:\"comment_node_photo_moorings_2012\";a:4:{s:5:\"label\";s:27:\"Photo Moorings 2012 comment\";s:11:\"node bundle\";s:19:\"photo_moorings_2012\";s:5:\"admin\";a:4:{s:4:\"path\";s:55:\"admin/structure/types/manage/%comment_node_type/comment\";s:15:\"bundle argument\";i:4;s:9:\"real path\";s:56:\"admin/structure/types/manage/photo-moorings-2012/comment\";s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_mapping\";a:8:{s:7:\"rdftype\";a:2:{i:0;s:9:\"sioc:Post\";i:1;s:13:\"sioct:Comment\";}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:12:\"comment_body\";a:1:{s:10:\"predicates\";a:1:{i:0;s:15:\"content:encoded\";}}s:3:\"pid\";a:2:{s:10:\"predicates\";a:1:{i:0;s:13:\"sioc:reply_of\";}s:4:\"type\";s:3:\"rel\";}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:32:\"comment_node_photo_moorings_2014\";a:4:{s:5:\"label\";s:27:\"Photo Moorings 2014 comment\";s:11:\"node bundle\";s:19:\"photo_moorings_2014\";s:5:\"admin\";a:4:{s:4:\"path\";s:55:\"admin/structure/types/manage/%comment_node_type/comment\";s:15:\"bundle argument\";i:4;s:9:\"real path\";s:56:\"admin/structure/types/manage/photo-moorings-2014/comment\";s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_mapping\";a:8:{s:7:\"rdftype\";a:2:{i:0;s:9:\"sioc:Post\";i:1;s:13:\"sioct:Comment\";}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:12:\"comment_body\";a:1:{s:10:\"predicates\";a:1:{i:0;s:15:\"content:encoded\";}}s:3:\"pid\";a:2:{s:10:\"predicates\";a:1:{i:0;s:13:\"sioc:reply_of\";}s:4:\"type\";s:3:\"rel\";}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:10:\"view modes\";a:1:{s:4:\"full\";a:2:{s:5:\"label\";s:12:\"Full comment\";s:15:\"custom settings\";b:0;}}s:12:\"static cache\";b:0;s:11:\"translation\";a:2:{s:18:\"entity_translation\";a:4:{s:5:\"class\";s:31:\"EntityTranslationCommentHandler\";s:11:\"admin theme\";b:0;s:15:\"bundle callback\";s:41:\"entity_translation_comment_supported_type\";s:16:\"default settings\";a:2:{s:16:\"default_language\";s:13:\"xx-et-current\";s:22:\"hide_language_selector\";b:1;}}s:6:\"locale\";b:1;}s:11:\"field cache\";b:1;s:9:\"load hook\";s:12:\"comment_load\";s:22:\"base table field types\";a:14:{s:3:\"cid\";s:6:\"serial\";s:3:\"pid\";s:3:\"int\";s:3:\"nid\";s:3:\"int\";s:3:\"uid\";s:3:\"int\";s:7:\"subject\";s:7:\"varchar\";s:8:\"hostname\";s:7:\"varchar\";s:7:\"created\";s:3:\"int\";s:7:\"changed\";s:3:\"int\";s:6:\"status\";s:3:\"int\";s:6:\"thread\";s:7:\"varchar\";s:4:\"name\";s:7:\"varchar\";s:4:\"mail\";s:7:\"varchar\";s:8:\"homepage\";s:7:\"varchar\";s:8:\"language\";s:7:\"varchar\";}s:17:\"schema_fields_sql\";a:1:{s:10:\"base table\";a:14:{i:0;s:3:\"cid\";i:1;s:3:\"pid\";i:2;s:3:\"nid\";i:3;s:3:\"uid\";i:4;s:7:\"subject\";i:5;s:8:\"hostname\";i:6;s:7:\"created\";i:7;s:7:\"changed\";i:8;s:6:\"status\";i:9;s:6:\"thread\";i:10;s:4:\"name\";i:11;s:4:\"mail\";i:12;s:8:\"homepage\";i:13;s:8:\"language\";}}s:12:\"plural label\";s:8:\"Comments\";s:11:\"description\";s:37:\"Remark or note that refers to a node.\";s:15:\"access callback\";s:30:\"entity_metadata_comment_access\";s:17:\"creation callback\";s:30:\"entity_metadata_create_comment\";s:13:\"save callback\";s:12:\"comment_save\";s:17:\"deletion callback\";s:14:\"comment_delete\";s:13:\"view callback\";s:28:\"entity_metadata_view_comment\";s:13:\"form callback\";s:28:\"entity_metadata_form_comment\";s:13:\"configuration\";b:0;s:14:\"label callback\";s:18:\"title_entity_label\";}s:16:\"i18n_translation\";a:15:{s:5:\"label\";s:15:\"Translation set\";s:16:\"controller class\";s:28:\"I18nTranslationSetController\";s:10:\"base table\";s:20:\"i18n_translation_set\";s:9:\"fieldable\";b:0;s:11:\"entity keys\";a:5:{s:2:\"id\";s:4:\"tsid\";s:6:\"bundle\";s:4:\"type\";s:5:\"label\";s:5:\"title\";s:8:\"revision\";s:0:\"\";s:12:\"translations\";s:12:\"translations\";}s:11:\"bundle keys\";a:1:{s:6:\"bundle\";s:4:\"type\";}s:7:\"bundles\";a:3:{s:9:\"menu_link\";a:2:{s:5:\"label\";s:9:\"Menu link\";s:11:\"rdf_mapping\";a:0:{}}s:4:\"path\";a:2:{s:5:\"label\";s:4:\"Path\";s:11:\"rdf_mapping\";a:0:{}}s:13:\"taxonomy_term\";a:2:{s:5:\"label\";s:13:\"Taxonomy term\";s:11:\"rdf_mapping\";a:0:{}}}s:12:\"static cache\";b:1;s:11:\"field cache\";b:1;s:9:\"load hook\";s:21:\"i18n_translation_load\";s:10:\"view modes\";a:0:{}s:11:\"translation\";a:1:{s:18:\"entity_translation\";a:1:{s:5:\"class\";s:31:\"EntityTranslationDefaultHandler\";}}s:22:\"base table field types\";a:8:{s:4:\"tsid\";s:6:\"serial\";s:5:\"title\";s:7:\"varchar\";s:4:\"type\";s:7:\"varchar\";s:6:\"bundle\";s:7:\"varchar\";s:9:\"master_id\";s:3:\"int\";s:6:\"status\";s:3:\"int\";s:7:\"created\";s:3:\"int\";s:7:\"changed\";s:3:\"int\";}s:17:\"schema_fields_sql\";a:1:{s:10:\"base table\";a:8:{i:0;s:4:\"tsid\";i:1;s:5:\"title\";i:2;s:4:\"type\";i:3;s:6:\"bundle\";i:4;s:9:\"master_id\";i:5;s:6:\"status\";i:6;s:7:\"created\";i:7;s:7:\"changed\";}}s:13:\"configuration\";b:0;}s:4:\"file\";a:20:{s:5:\"label\";s:4:\"File\";s:10:\"base table\";s:12:\"file_managed\";s:11:\"entity keys\";a:5:{s:2:\"id\";s:3:\"fid\";s:5:\"label\";s:8:\"filename\";s:8:\"revision\";s:0:\"\";s:6:\"bundle\";s:0:\"\";s:12:\"translations\";s:12:\"translations\";}s:12:\"static cache\";b:0;s:9:\"fieldable\";b:0;s:16:\"controller class\";s:29:\"DrupalDefaultEntityController\";s:11:\"field cache\";b:1;s:9:\"load hook\";s:9:\"file_load\";s:7:\"bundles\";a:1:{s:4:\"file\";a:2:{s:5:\"label\";s:4:\"File\";s:11:\"rdf_mapping\";a:0:{}}}s:10:\"view modes\";a:0:{}s:11:\"translation\";a:1:{s:18:\"entity_translation\";a:1:{s:5:\"class\";s:31:\"EntityTranslationDefaultHandler\";}}s:22:\"base table field types\";a:8:{s:3:\"fid\";s:6:\"serial\";s:3:\"uid\";s:3:\"int\";s:8:\"filename\";s:7:\"varchar\";s:3:\"uri\";s:7:\"varchar\";s:8:\"filemime\";s:7:\"varchar\";s:8:\"filesize\";s:3:\"int\";s:6:\"status\";s:3:\"int\";s:9:\"timestamp\";s:3:\"int\";}s:17:\"schema_fields_sql\";a:1:{s:10:\"base table\";a:8:{i:0;s:3:\"fid\";i:1;s:3:\"uid\";i:2;s:8:\"filename\";i:3;s:3:\"uri\";i:4;s:8:\"filemime\";i:5;s:8:\"filesize\";i:6;s:6:\"status\";i:7;s:9:\"timestamp\";}}s:12:\"plural label\";s:5:\"Files\";s:11:\"description\";s:14:\"Uploaded file.\";s:15:\"access callback\";s:27:\"entity_metadata_file_access\";s:13:\"save callback\";s:9:\"file_save\";s:17:\"deletion callback\";s:27:\"entity_metadata_delete_file\";s:12:\"uri callback\";s:24:\"entity_metadata_uri_file\";s:13:\"configuration\";b:0;}s:19:\"taxonomy_vocabulary\";a:22:{s:5:\"label\";s:19:\"Taxonomy vocabulary\";s:16:\"controller class\";s:28:\"TaxonomyVocabularyController\";s:10:\"base table\";s:19:\"taxonomy_vocabulary\";s:11:\"entity keys\";a:5:{s:2:\"id\";s:3:\"vid\";s:5:\"label\";s:4:\"name\";s:8:\"revision\";s:0:\"\";s:6:\"bundle\";s:0:\"\";s:12:\"translations\";s:12:\"translations\";}s:9:\"fieldable\";b:0;s:12:\"static cache\";b:1;s:11:\"field cache\";b:1;s:9:\"load hook\";s:24:\"taxonomy_vocabulary_load\";s:7:\"bundles\";a:1:{s:19:\"taxonomy_vocabulary\";a:2:{s:5:\"label\";s:19:\"Taxonomy vocabulary\";s:11:\"rdf_mapping\";a:3:{s:7:\"rdftype\";a:1:{i:0;s:18:\"skos:ConceptScheme\";}s:4:\"name\";a:1:{s:10:\"predicates\";a:1:{i:0;s:8:\"dc:title\";}}s:11:\"description\";a:1:{s:10:\"predicates\";a:1:{i:0;s:12:\"rdfs:comment\";}}}}}s:10:\"view modes\";a:0:{}s:11:\"translation\";a:1:{s:18:\"entity_translation\";a:1:{s:5:\"class\";s:31:\"EntityTranslationDefaultHandler\";}}s:22:\"base table field types\";a:9:{s:3:\"vid\";s:6:\"serial\";s:4:\"name\";s:7:\"varchar\";s:12:\"machine_name\";s:7:\"varchar\";s:11:\"description\";s:4:\"text\";s:9:\"hierarchy\";s:3:\"int\";s:6:\"module\";s:7:\"varchar\";s:6:\"weight\";s:3:\"int\";s:8:\"language\";s:7:\"varchar\";s:9:\"i18n_mode\";s:3:\"int\";}s:17:\"schema_fields_sql\";a:1:{s:10:\"base table\";a:11:{i:0;s:3:\"vid\";i:1;s:4:\"name\";i:2;s:12:\"machine_name\";i:3;s:11:\"description\";i:4;s:9:\"hierarchy\";i:5;s:6:\"module\";i:6;s:6:\"weight\";i:7;s:8:\"language\";i:8;s:9:\"i18n_mode\";i:9;s:9:\"i18n_mode\";i:10;s:8:\"language\";}}s:12:\"plural label\";s:21:\"Taxonomy vocabularies\";s:11:\"description\";s:84:\"Vocabularies contain related taxonomy terms, which are used for classifying content.\";s:15:\"access callback\";s:31:\"entity_metadata_taxonomy_access\";s:17:\"creation callback\";s:29:\"entity_metadata_create_object\";s:13:\"save callback\";s:24:\"taxonomy_vocabulary_save\";s:17:\"deletion callback\";s:26:\"taxonomy_vocabulary_delete\";s:13:\"form callback\";s:40:\"entity_metadata_form_taxonomy_vocabulary\";s:10:\"token type\";s:10:\"vocabulary\";s:13:\"configuration\";b:0;}s:4:\"user\";a:24:{s:5:\"label\";s:4:\"User\";s:16:\"controller class\";s:14:\"UserController\";s:10:\"base table\";s:5:\"users\";s:12:\"uri callback\";s:8:\"user_uri\";s:14:\"label callback\";s:15:\"format_username\";s:9:\"fieldable\";b:1;s:11:\"entity keys\";a:4:{s:2:\"id\";s:3:\"uid\";s:8:\"revision\";s:0:\"\";s:6:\"bundle\";s:0:\"\";s:12:\"translations\";s:12:\"translations\";}s:7:\"bundles\";a:1:{s:4:\"user\";a:3:{s:5:\"label\";s:4:\"User\";s:5:\"admin\";a:2:{s:4:\"path\";s:28:\"admin/config/people/accounts\";s:16:\"access arguments\";a:1:{i:0;s:16:\"administer users\";}}s:11:\"rdf_mapping\";a:3:{s:7:\"rdftype\";a:1:{i:0;s:16:\"sioc:UserAccount\";}s:4:\"name\";a:1:{s:10:\"predicates\";a:1:{i:0;s:9:\"foaf:name\";}}s:8:\"homepage\";a:2:{s:10:\"predicates\";a:1:{i:0;s:9:\"foaf:page\";}s:4:\"type\";s:3:\"rel\";}}}}s:10:\"view modes\";a:1:{s:4:\"full\";a:2:{s:5:\"label\";s:12:\"User account\";s:15:\"custom settings\";b:0;}}s:11:\"translation\";a:1:{s:18:\"entity_translation\";a:3:{s:5:\"class\";s:28:\"EntityTranslationUserHandler\";s:27:\"skip original values access\";b:1;s:25:\"skip shared fields access\";b:1;}}s:12:\"static cache\";b:1;s:11:\"field cache\";b:1;s:9:\"load hook\";s:9:\"user_load\";s:22:\"base table field types\";a:16:{s:3:\"uid\";s:3:\"int\";s:4:\"name\";s:7:\"varchar\";s:4:\"pass\";s:7:\"varchar\";s:4:\"mail\";s:7:\"varchar\";s:5:\"theme\";s:7:\"varchar\";s:9:\"signature\";s:7:\"varchar\";s:16:\"signature_format\";s:7:\"varchar\";s:7:\"created\";s:3:\"int\";s:6:\"access\";s:3:\"int\";s:5:\"login\";s:3:\"int\";s:6:\"status\";s:3:\"int\";s:8:\"timezone\";s:7:\"varchar\";s:8:\"language\";s:7:\"varchar\";s:7:\"picture\";s:3:\"int\";s:4:\"init\";s:7:\"varchar\";s:4:\"data\";s:4:\"blob\";}s:17:\"schema_fields_sql\";a:1:{s:10:\"base table\";a:16:{i:0;s:3:\"uid\";i:1;s:4:\"name\";i:2;s:4:\"pass\";i:3;s:4:\"mail\";i:4;s:5:\"theme\";i:5;s:9:\"signature\";i:6;s:16:\"signature_format\";i:7;s:7:\"created\";i:8;s:6:\"access\";i:9;s:5:\"login\";i:10;s:6:\"status\";i:11;s:8:\"timezone\";i:12;s:8:\"language\";i:13;s:7:\"picture\";i:14;s:4:\"init\";i:15;s:4:\"data\";}}s:12:\"plural label\";s:5:\"Users\";s:11:\"description\";s:45:\"Users who have created accounts on your site.\";s:15:\"access callback\";s:27:\"entity_metadata_user_access\";s:17:\"creation callback\";s:29:\"entity_metadata_create_object\";s:13:\"save callback\";s:25:\"entity_metadata_user_save\";s:17:\"deletion callback\";s:11:\"user_delete\";s:13:\"form callback\";s:25:\"entity_metadata_form_user\";s:13:\"view callback\";s:27:\"entity_metadata_view_single\";s:13:\"configuration\";b:0;}}',0,1538750673,1),('entity_info:it','a:7:{s:4:\"node\";a:30:{s:17:\"field replacement\";a:1:{s:5:\"title\";a:4:{s:5:\"field\";a:4:{s:4:\"type\";s:4:\"text\";s:11:\"cardinality\";i:1;s:12:\"translatable\";b:1;s:10:\"field_name\";s:11:\"title_field\";}s:8:\"instance\";a:7:{s:5:\"label\";s:6:\"Titolo\";s:11:\"description\";s:0:\"\";s:8:\"required\";b:1;s:8:\"settings\";a:1:{s:15:\"text_processing\";i:0;}s:6:\"widget\";a:1:{s:6:\"weight\";i:-5;}s:7:\"display\";a:1:{s:7:\"default\";a:1:{s:4:\"type\";s:6:\"hidden\";}}s:10:\"field_name\";s:11:\"title_field\";}s:9:\"callbacks\";a:2:{s:8:\"sync_get\";s:25:\"title_field_text_sync_get\";s:8:\"sync_set\";s:25:\"title_field_text_sync_set\";}s:14:\"preprocess_key\";s:5:\"title\";}}s:21:\"efq bundle conditions\";b:1;s:5:\"label\";s:4:\"Nodo\";s:16:\"controller class\";s:14:\"NodeController\";s:10:\"base table\";s:4:\"node\";s:14:\"revision table\";s:13:\"node_revision\";s:12:\"uri callback\";s:8:\"node_uri\";s:9:\"fieldable\";b:1;s:11:\"entity keys\";a:6:{s:2:\"id\";s:3:\"nid\";s:8:\"revision\";s:3:\"vid\";s:6:\"bundle\";s:4:\"type\";s:5:\"label\";s:5:\"title\";s:8:\"language\";s:8:\"language\";s:12:\"translations\";s:12:\"translations\";}s:11:\"bundle keys\";a:1:{s:6:\"bundle\";s:4:\"type\";}s:7:\"bundles\";a:9:{s:6:\"photos\";a:3:{s:5:\"label\";s:5:\"Album\";s:5:\"admin\";a:4:{s:4:\"path\";s:39:\"admin/structure/types/manage/%node_type\";s:9:\"real path\";s:35:\"admin/structure/types/manage/photos\";s:15:\"bundle argument\";i:4;s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_mapping\";a:9:{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\";}}}s:7:\"article\";a:3:{s:5:\"label\";s:7:\"Article\";s:5:\"admin\";a:4:{s:4:\"path\";s:39:\"admin/structure/types/manage/%node_type\";s:9:\"real path\";s:36:\"admin/structure/types/manage/article\";s:15:\"bundle argument\";i:4;s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_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\";}}}s:4:\"page\";a:3:{s:5:\"label\";s:10:\"Basic page\";s:5:\"admin\";a:4:{s:4:\"path\";s:39:\"admin/structure/types/manage/%node_type\";s:9:\"real path\";s:33:\"admin/structure/types/manage/page\";s:15:\"bundle argument\";i:4;s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_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\";}}}s:5:\"forum\";a:3:{s:5:\"label\";s:11:\"Forum topic\";s:5:\"admin\";a:4:{s:4:\"path\";s:39:\"admin/structure/types/manage/%node_type\";s:9:\"real path\";s:34:\"admin/structure/types/manage/forum\";s:15:\"bundle argument\";i:4;s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_mapping\";a:9:{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\";}}}s:7:\"mooring\";a:3:{s:5:\"label\";s:7:\"Mooring\";s:5:\"admin\";a:4:{s:4:\"path\";s:39:\"admin/structure/types/manage/%node_type\";s:9:\"real path\";s:36:\"admin/structure/types/manage/mooring\";s:15:\"bundle argument\";i:4;s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_mapping\";a:9:{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\";}}}s:26:\"openlayers_example_content\";a:3:{s:5:\"label\";s:26:\"OpenLayers Example Content\";s:5:\"admin\";a:4:{s:4:\"path\";s:39:\"admin/structure/types/manage/%node_type\";s:9:\"real path\";s:55:\"admin/structure/types/manage/openlayers-example-content\";s:15:\"bundle argument\";i:4;s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_mapping\";a:9:{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\";}}}s:19:\"photo_moorings_2010\";a:3:{s:5:\"label\";s:19:\"Photo Moorings 2010\";s:5:\"admin\";a:4:{s:4:\"path\";s:39:\"admin/structure/types/manage/%node_type\";s:9:\"real path\";s:48:\"admin/structure/types/manage/photo-moorings-2010\";s:15:\"bundle argument\";i:4;s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_mapping\";a:9:{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\";}}}s:19:\"photo_moorings_2012\";a:3:{s:5:\"label\";s:19:\"Photo Moorings 2012\";s:5:\"admin\";a:4:{s:4:\"path\";s:39:\"admin/structure/types/manage/%node_type\";s:9:\"real path\";s:48:\"admin/structure/types/manage/photo-moorings-2012\";s:15:\"bundle argument\";i:4;s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_mapping\";a:9:{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\";}}}s:19:\"photo_moorings_2014\";a:3:{s:5:\"label\";s:19:\"Photo Moorings 2014\";s:5:\"admin\";a:4:{s:4:\"path\";s:39:\"admin/structure/types/manage/%node_type\";s:9:\"real path\";s:48:\"admin/structure/types/manage/photo-moorings-2014\";s:15:\"bundle argument\";i:4;s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_mapping\";a:9:{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\";}}}}s:10:\"view modes\";a:3:{s:4:\"full\";a:2:{s:5:\"label\";s:18:\"Contenuto completo\";s:15:\"custom settings\";b:0;}s:6:\"teaser\";a:2:{s:5:\"label\";s:9:\"Anteprima\";s:15:\"custom settings\";b:1;}s:3:\"rss\";a:2:{s:5:\"label\";s:3:\"RSS\";s:15:\"custom settings\";b:0;}}s:11:\"translation\";a:2:{s:18:\"entity_translation\";a:7:{s:5:\"class\";s:28:\"EntityTranslationNodeHandler\";s:15:\"access callback\";s:34:\"entity_translation_node_tab_access\";s:16:\"access arguments\";a:1:{i:0;i:1;}s:15:\"bundle callback\";s:38:\"entity_translation_node_supported_type\";s:16:\"default settings\";a:2:{s:16:\"default_language\";s:3:\"und\";s:22:\"hide_language_selector\";b:0;}s:12:\"path schemes\";a:1:{s:7:\"default\";a:7:{s:11:\"admin theme\";s:1:\"1\";s:9:\"base path\";s:10:\"node/%node\";s:9:\"view path\";s:10:\"node/%node\";s:9:\"edit path\";s:15:\"node/%node/edit\";s:14:\"translate path\";s:20:\"node/%node/translate\";s:13:\"path wildcard\";s:5:\"%node\";s:9:\"edit tabs\";b:1;}}s:9:\"edit form\";s:4:\"node\";}s:6:\"locale\";b:1;}s:12:\"static cache\";b:1;s:11:\"field cache\";b:1;s:9:\"load hook\";s:9:\"node_load\";s:22:\"base table field types\";a:14:{s:3:\"nid\";s:6:\"serial\";s:3:\"vid\";s:3:\"int\";s:4:\"type\";s:7:\"varchar\";s:8:\"language\";s:7:\"varchar\";s:5:\"title\";s:7:\"varchar\";s:3:\"uid\";s:3:\"int\";s:6:\"status\";s:3:\"int\";s:7:\"created\";s:3:\"int\";s:7:\"changed\";s:3:\"int\";s:7:\"comment\";s:3:\"int\";s:7:\"promote\";s:3:\"int\";s:6:\"sticky\";s:3:\"int\";s:4:\"tnid\";s:3:\"int\";s:9:\"translate\";s:3:\"int\";}s:17:\"schema_fields_sql\";a:2:{s:10:\"base table\";a:14:{i:0;s:3:\"nid\";i:1;s:3:\"vid\";i:2;s:4:\"type\";i:3;s:8:\"language\";i:4;s:5:\"title\";i:5;s:3:\"uid\";i:6;s:6:\"status\";i:7;s:7:\"created\";i:8;s:7:\"changed\";i:9;s:7:\"comment\";i:10;s:7:\"promote\";i:11;s:6:\"sticky\";i:12;s:4:\"tnid\";i:13;s:9:\"translate\";}s:14:\"revision table\";a:10:{i:0;s:3:\"nid\";i:1;s:3:\"vid\";i:2;s:3:\"uid\";i:3;s:5:\"title\";i:4;s:3:\"log\";i:5;s:9:\"timestamp\";i:6;s:6:\"status\";i:7;s:7:\"comment\";i:8;s:7:\"promote\";i:9;s:6:\"sticky\";}}s:12:\"plural label\";s:4:\"Nodi\";s:11:\"description\";s:44:\"Nodes represent the main site content items.\";s:15:\"access callback\";s:35:\"entity_metadata_no_hook_node_access\";s:17:\"creation callback\";s:27:\"entity_metadata_create_node\";s:13:\"save callback\";s:9:\"node_save\";s:17:\"deletion callback\";s:11:\"node_delete\";s:26:\"revision deletion callback\";s:20:\"node_revision_delete\";s:13:\"form callback\";s:25:\"entity_metadata_form_node\";s:13:\"view callback\";s:25:\"entity_metadata_view_node\";s:13:\"configuration\";b:0;s:17:\"language callback\";s:27:\"entity_translation_language\";s:14:\"label callback\";s:18:\"title_entity_label\";}s:13:\"taxonomy_term\";a:28:{s:17:\"field replacement\";a:2:{s:4:\"name\";a:4:{s:5:\"field\";a:4:{s:4:\"type\";s:4:\"text\";s:11:\"cardinality\";i:1;s:12:\"translatable\";b:1;s:10:\"field_name\";s:10:\"name_field\";}s:8:\"instance\";a:7:{s:5:\"label\";s:4:\"Nome\";s:11:\"description\";s:0:\"\";s:8:\"required\";b:1;s:8:\"settings\";a:1:{s:15:\"text_processing\";i:0;}s:6:\"widget\";a:1:{s:6:\"weight\";i:-5;}s:7:\"display\";a:1:{s:7:\"default\";a:1:{s:4:\"type\";s:6:\"hidden\";}}s:10:\"field_name\";s:10:\"name_field\";}s:14:\"preprocess_key\";s:9:\"term_name\";s:9:\"callbacks\";a:2:{s:8:\"sync_get\";s:25:\"title_field_text_sync_get\";s:8:\"sync_set\";s:25:\"title_field_text_sync_set\";}}s:11:\"description\";a:4:{s:5:\"field\";a:4:{s:4:\"type\";s:17:\"text_with_summary\";s:11:\"cardinality\";i:1;s:12:\"translatable\";b:1;s:10:\"field_name\";s:17:\"description_field\";}s:8:\"instance\";a:7:{s:8:\"required\";b:0;s:5:\"label\";s:11:\"Descrizione\";s:11:\"description\";s:0:\"\";s:8:\"settings\";a:1:{s:15:\"text_processing\";i:1;}s:6:\"widget\";a:1:{s:6:\"weight\";i:-5;}s:7:\"display\";a:1:{s:7:\"default\";a:1:{s:4:\"type\";s:6:\"hidden\";}}s:10:\"field_name\";s:17:\"description_field\";}s:9:\"callbacks\";a:3:{s:6:\"submit\";s:35:\"title_field_term_description_submit\";s:8:\"sync_get\";s:38:\"title_field_text_with_summary_sync_get\";s:8:\"sync_set\";s:38:\"title_field_text_with_summary_sync_set\";}s:15:\"additional keys\";a:1:{s:6:\"format\";s:6:\"format\";}}}s:5:\"label\";s:24:\"Termine della tassonomia\";s:16:\"controller class\";s:22:\"TaxonomyTermController\";s:10:\"base table\";s:18:\"taxonomy_term_data\";s:12:\"uri callback\";s:17:\"taxonomy_term_uri\";s:9:\"fieldable\";b:1;s:11:\"entity keys\";a:6:{s:2:\"id\";s:3:\"tid\";s:6:\"bundle\";s:23:\"vocabulary_machine_name\";s:5:\"label\";s:4:\"name\";s:8:\"revision\";s:0:\"\";s:8:\"language\";s:8:\"language\";s:12:\"translations\";s:12:\"translations\";}s:11:\"bundle keys\";a:1:{s:6:\"bundle\";s:12:\"machine_name\";}s:7:\"bundles\";a:2:{s:4:\"tags\";a:3:{s:5:\"label\";s:4:\"Tags\";s:5:\"admin\";a:4:{s:4:\"path\";s:58:\"admin/structure/taxonomy/%taxonomy_vocabulary_machine_name\";s:9:\"real path\";s:29:\"admin/structure/taxonomy/tags\";s:15:\"bundle argument\";i:3;s:16:\"access arguments\";a:1:{i:0;s:19:\"administer taxonomy\";}}s:11:\"rdf_mapping\";a:5:{s:7:\"rdftype\";a:1:{i:0;s:12:\"skos:Concept\";}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\";}}}s:6:\"forums\";a:4:{s:5:\"label\";s:6:\"Forums\";s:5:\"admin\";a:4:{s:4:\"path\";s:58:\"admin/structure/taxonomy/%taxonomy_vocabulary_machine_name\";s:9:\"real path\";s:31:\"admin/structure/taxonomy/forums\";s:15:\"bundle argument\";i:3;s:16:\"access arguments\";a:1:{i:0;s:19:\"administer taxonomy\";}}s:11:\"rdf_mapping\";a:5:{s:7:\"rdftype\";a:1:{i:0;s:12:\"skos:Concept\";}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\";}}s:12:\"uri callback\";s:9:\"forum_uri\";}}s:10:\"view modes\";a:1:{s:4:\"full\";a:2:{s:5:\"label\";s:37:\"Pagina di un termine della tassonomia\";s:15:\"custom settings\";b:0;}}s:11:\"translation\";a:1:{s:18:\"entity_translation\";a:6:{s:5:\"class\";s:36:\"EntityTranslationTaxonomyTermHandler\";s:15:\"access callback\";s:43:\"entity_translation_taxonomy_term_tab_access\";s:16:\"access arguments\";a:1:{i:0;i:1;}s:9:\"base path\";s:28:\"taxonomy/term/%taxonomy_term\";s:9:\"edit form\";s:4:\"term\";s:15:\"bundle callback\";s:51:\"entity_translation_taxonomy_term_enabled_vocabulary\";}}s:12:\"static cache\";b:1;s:11:\"field cache\";b:1;s:9:\"load hook\";s:18:\"taxonomy_term_load\";s:22:\"base table field types\";a:8:{s:3:\"tid\";s:6:\"serial\";s:3:\"vid\";s:3:\"int\";s:4:\"name\";s:7:\"varchar\";s:11:\"description\";s:4:\"text\";s:6:\"format\";s:7:\"varchar\";s:6:\"weight\";s:3:\"int\";s:8:\"language\";s:7:\"varchar\";s:9:\"i18n_tsid\";s:3:\"int\";}s:17:\"schema_fields_sql\";a:1:{s:10:\"base table\";a:8:{i:0;s:3:\"tid\";i:1;s:3:\"vid\";i:2;s:4:\"name\";i:3;s:11:\"description\";i:4;s:6:\"format\";i:5;s:6:\"weight\";i:6;s:8:\"language\";i:7;s:9:\"i18n_tsid\";}}s:14:\"label callback\";s:18:\"title_entity_label\";s:12:\"plural label\";s:21:\"Termini di tassonomia\";s:11:\"description\";s:48:\"Taxonomy terms are used for classifying content.\";s:15:\"access callback\";s:31:\"entity_metadata_taxonomy_access\";s:17:\"creation callback\";s:29:\"entity_metadata_create_object\";s:13:\"save callback\";s:18:\"taxonomy_term_save\";s:17:\"deletion callback\";s:20:\"taxonomy_term_delete\";s:13:\"view callback\";s:27:\"entity_metadata_view_single\";s:13:\"form callback\";s:34:\"entity_metadata_form_taxonomy_term\";s:10:\"token type\";s:4:\"term\";s:13:\"configuration\";b:0;s:14:\"label fallback\";a:1:{s:5:\"title\";s:33:\"i18n_taxonomy_taxonomy_term_label\";}}s:7:\"comment\";a:25:{s:17:\"field replacement\";a:1:{s:7:\"subject\";a:4:{s:5:\"field\";a:4:{s:4:\"type\";s:4:\"text\";s:11:\"cardinality\";i:1;s:12:\"translatable\";b:1;s:10:\"field_name\";s:13:\"subject_field\";}s:8:\"instance\";a:7:{s:5:\"label\";s:7:\"Oggetto\";s:11:\"description\";s:0:\"\";s:8:\"required\";b:1;s:8:\"settings\";a:1:{s:15:\"text_processing\";i:0;}s:6:\"widget\";a:1:{s:6:\"weight\";i:-5;}s:7:\"display\";a:1:{s:7:\"default\";a:1:{s:4:\"type\";s:6:\"hidden\";}}s:10:\"field_name\";s:13:\"subject_field\";}s:14:\"preprocess_key\";s:5:\"title\";s:9:\"callbacks\";a:2:{s:8:\"sync_get\";s:25:\"title_field_text_sync_get\";s:8:\"sync_set\";s:25:\"title_field_text_sync_set\";}}}s:5:\"label\";s:8:\"Commento\";s:10:\"base table\";s:7:\"comment\";s:12:\"uri callback\";s:11:\"comment_uri\";s:9:\"fieldable\";b:1;s:16:\"controller class\";s:17:\"CommentController\";s:11:\"entity keys\";a:6:{s:2:\"id\";s:3:\"cid\";s:6:\"bundle\";s:9:\"node_type\";s:5:\"label\";s:7:\"subject\";s:8:\"language\";s:8:\"language\";s:8:\"revision\";s:0:\"\";s:12:\"translations\";s:12:\"translations\";}s:7:\"bundles\";a:9:{s:19:\"comment_node_photos\";a:4:{s:5:\"label\";s:18:\"commenti per Album\";s:11:\"node bundle\";s:6:\"photos\";s:5:\"admin\";a:4:{s:4:\"path\";s:55:\"admin/structure/types/manage/%comment_node_type/comment\";s:15:\"bundle argument\";i:4;s:9:\"real path\";s:43:\"admin/structure/types/manage/photos/comment\";s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_mapping\";a:8:{s:7:\"rdftype\";a:2:{i:0;s:9:\"sioc:Post\";i:1;s:13:\"sioct:Comment\";}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:12:\"comment_body\";a:1:{s:10:\"predicates\";a:1:{i:0;s:15:\"content:encoded\";}}s:3:\"pid\";a:2:{s:10:\"predicates\";a:1:{i:0;s:13:\"sioc:reply_of\";}s:4:\"type\";s:3:\"rel\";}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:20:\"comment_node_article\";a:4:{s:5:\"label\";s:20:\"commenti per Article\";s:11:\"node bundle\";s:7:\"article\";s:5:\"admin\";a:4:{s:4:\"path\";s:55:\"admin/structure/types/manage/%comment_node_type/comment\";s:15:\"bundle argument\";i:4;s:9:\"real path\";s:44:\"admin/structure/types/manage/article/comment\";s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_mapping\";a:8:{s:7:\"rdftype\";a:2:{i:0;s:9:\"sioc:Post\";i:1;s:13:\"sioct:Comment\";}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:12:\"comment_body\";a:1:{s:10:\"predicates\";a:1:{i:0;s:15:\"content:encoded\";}}s:3:\"pid\";a:2:{s:10:\"predicates\";a:1:{i:0;s:13:\"sioc:reply_of\";}s:4:\"type\";s:3:\"rel\";}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:17:\"comment_node_page\";a:4:{s:5:\"label\";s:23:\"commenti per Basic page\";s:11:\"node bundle\";s:4:\"page\";s:5:\"admin\";a:4:{s:4:\"path\";s:55:\"admin/structure/types/manage/%comment_node_type/comment\";s:15:\"bundle argument\";i:4;s:9:\"real path\";s:41:\"admin/structure/types/manage/page/comment\";s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_mapping\";a:8:{s:7:\"rdftype\";a:2:{i:0;s:9:\"sioc:Post\";i:1;s:13:\"sioct:Comment\";}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:12:\"comment_body\";a:1:{s:10:\"predicates\";a:1:{i:0;s:15:\"content:encoded\";}}s:3:\"pid\";a:2:{s:10:\"predicates\";a:1:{i:0;s:13:\"sioc:reply_of\";}s:4:\"type\";s:3:\"rel\";}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:18:\"comment_node_forum\";a:4:{s:5:\"label\";s:24:\"commenti per Forum topic\";s:11:\"node bundle\";s:5:\"forum\";s:5:\"admin\";a:4:{s:4:\"path\";s:55:\"admin/structure/types/manage/%comment_node_type/comment\";s:15:\"bundle argument\";i:4;s:9:\"real path\";s:42:\"admin/structure/types/manage/forum/comment\";s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_mapping\";a:8:{s:7:\"rdftype\";a:2:{i:0;s:9:\"sioc:Post\";i:1;s:13:\"sioct:Comment\";}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:12:\"comment_body\";a:1:{s:10:\"predicates\";a:1:{i:0;s:15:\"content:encoded\";}}s:3:\"pid\";a:2:{s:10:\"predicates\";a:1:{i:0;s:13:\"sioc:reply_of\";}s:4:\"type\";s:3:\"rel\";}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:20:\"comment_node_mooring\";a:4:{s:5:\"label\";s:20:\"commenti per Mooring\";s:11:\"node bundle\";s:7:\"mooring\";s:5:\"admin\";a:4:{s:4:\"path\";s:55:\"admin/structure/types/manage/%comment_node_type/comment\";s:15:\"bundle argument\";i:4;s:9:\"real path\";s:44:\"admin/structure/types/manage/mooring/comment\";s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_mapping\";a:8:{s:7:\"rdftype\";a:2:{i:0;s:9:\"sioc:Post\";i:1;s:13:\"sioct:Comment\";}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:12:\"comment_body\";a:1:{s:10:\"predicates\";a:1:{i:0;s:15:\"content:encoded\";}}s:3:\"pid\";a:2:{s:10:\"predicates\";a:1:{i:0;s:13:\"sioc:reply_of\";}s:4:\"type\";s:3:\"rel\";}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:39:\"comment_node_openlayers_example_content\";a:4:{s:5:\"label\";s:39:\"commenti per OpenLayers Example Content\";s:11:\"node bundle\";s:26:\"openlayers_example_content\";s:5:\"admin\";a:4:{s:4:\"path\";s:55:\"admin/structure/types/manage/%comment_node_type/comment\";s:15:\"bundle argument\";i:4;s:9:\"real path\";s:63:\"admin/structure/types/manage/openlayers-example-content/comment\";s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_mapping\";a:8:{s:7:\"rdftype\";a:2:{i:0;s:9:\"sioc:Post\";i:1;s:13:\"sioct:Comment\";}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:12:\"comment_body\";a:1:{s:10:\"predicates\";a:1:{i:0;s:15:\"content:encoded\";}}s:3:\"pid\";a:2:{s:10:\"predicates\";a:1:{i:0;s:13:\"sioc:reply_of\";}s:4:\"type\";s:3:\"rel\";}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:32:\"comment_node_photo_moorings_2010\";a:4:{s:5:\"label\";s:32:\"commenti per Photo Moorings 2010\";s:11:\"node bundle\";s:19:\"photo_moorings_2010\";s:5:\"admin\";a:4:{s:4:\"path\";s:55:\"admin/structure/types/manage/%comment_node_type/comment\";s:15:\"bundle argument\";i:4;s:9:\"real path\";s:56:\"admin/structure/types/manage/photo-moorings-2010/comment\";s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_mapping\";a:8:{s:7:\"rdftype\";a:2:{i:0;s:9:\"sioc:Post\";i:1;s:13:\"sioct:Comment\";}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:12:\"comment_body\";a:1:{s:10:\"predicates\";a:1:{i:0;s:15:\"content:encoded\";}}s:3:\"pid\";a:2:{s:10:\"predicates\";a:1:{i:0;s:13:\"sioc:reply_of\";}s:4:\"type\";s:3:\"rel\";}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:32:\"comment_node_photo_moorings_2012\";a:4:{s:5:\"label\";s:32:\"commenti per Photo Moorings 2012\";s:11:\"node bundle\";s:19:\"photo_moorings_2012\";s:5:\"admin\";a:4:{s:4:\"path\";s:55:\"admin/structure/types/manage/%comment_node_type/comment\";s:15:\"bundle argument\";i:4;s:9:\"real path\";s:56:\"admin/structure/types/manage/photo-moorings-2012/comment\";s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_mapping\";a:8:{s:7:\"rdftype\";a:2:{i:0;s:9:\"sioc:Post\";i:1;s:13:\"sioct:Comment\";}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:12:\"comment_body\";a:1:{s:10:\"predicates\";a:1:{i:0;s:15:\"content:encoded\";}}s:3:\"pid\";a:2:{s:10:\"predicates\";a:1:{i:0;s:13:\"sioc:reply_of\";}s:4:\"type\";s:3:\"rel\";}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:32:\"comment_node_photo_moorings_2014\";a:4:{s:5:\"label\";s:32:\"commenti per Photo Moorings 2014\";s:11:\"node bundle\";s:19:\"photo_moorings_2014\";s:5:\"admin\";a:4:{s:4:\"path\";s:55:\"admin/structure/types/manage/%comment_node_type/comment\";s:15:\"bundle argument\";i:4;s:9:\"real path\";s:56:\"admin/structure/types/manage/photo-moorings-2014/comment\";s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_mapping\";a:8:{s:7:\"rdftype\";a:2:{i:0;s:9:\"sioc:Post\";i:1;s:13:\"sioct:Comment\";}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:12:\"comment_body\";a:1:{s:10:\"predicates\";a:1:{i:0;s:15:\"content:encoded\";}}s:3:\"pid\";a:2:{s:10:\"predicates\";a:1:{i:0;s:13:\"sioc:reply_of\";}s:4:\"type\";s:3:\"rel\";}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:10:\"view modes\";a:1:{s:4:\"full\";a:2:{s:5:\"label\";s:17:\"Commento completo\";s:15:\"custom settings\";b:0;}}s:12:\"static cache\";b:0;s:11:\"translation\";a:2:{s:18:\"entity_translation\";a:4:{s:5:\"class\";s:31:\"EntityTranslationCommentHandler\";s:11:\"admin theme\";b:0;s:15:\"bundle callback\";s:41:\"entity_translation_comment_supported_type\";s:16:\"default settings\";a:2:{s:16:\"default_language\";s:13:\"xx-et-current\";s:22:\"hide_language_selector\";b:1;}}s:6:\"locale\";b:1;}s:11:\"field cache\";b:1;s:9:\"load hook\";s:12:\"comment_load\";s:22:\"base table field types\";a:14:{s:3:\"cid\";s:6:\"serial\";s:3:\"pid\";s:3:\"int\";s:3:\"nid\";s:3:\"int\";s:3:\"uid\";s:3:\"int\";s:7:\"subject\";s:7:\"varchar\";s:8:\"hostname\";s:7:\"varchar\";s:7:\"created\";s:3:\"int\";s:7:\"changed\";s:3:\"int\";s:6:\"status\";s:3:\"int\";s:6:\"thread\";s:7:\"varchar\";s:4:\"name\";s:7:\"varchar\";s:4:\"mail\";s:7:\"varchar\";s:8:\"homepage\";s:7:\"varchar\";s:8:\"language\";s:7:\"varchar\";}s:17:\"schema_fields_sql\";a:1:{s:10:\"base table\";a:14:{i:0;s:3:\"cid\";i:1;s:3:\"pid\";i:2;s:3:\"nid\";i:3;s:3:\"uid\";i:4;s:7:\"subject\";i:5;s:8:\"hostname\";i:6;s:7:\"created\";i:7;s:7:\"changed\";i:8;s:6:\"status\";i:9;s:6:\"thread\";i:10;s:4:\"name\";i:11;s:4:\"mail\";i:12;s:8:\"homepage\";i:13;s:8:\"language\";}}s:12:\"plural label\";s:8:\"Commenti\";s:11:\"description\";s:37:\"Remark or note that refers to a node.\";s:15:\"access callback\";s:30:\"entity_metadata_comment_access\";s:17:\"creation callback\";s:30:\"entity_metadata_create_comment\";s:13:\"save callback\";s:12:\"comment_save\";s:17:\"deletion callback\";s:14:\"comment_delete\";s:13:\"view callback\";s:28:\"entity_metadata_view_comment\";s:13:\"form callback\";s:28:\"entity_metadata_form_comment\";s:13:\"configuration\";b:0;s:14:\"label callback\";s:18:\"title_entity_label\";}s:16:\"i18n_translation\";a:15:{s:5:\"label\";s:15:\"Translation set\";s:16:\"controller class\";s:28:\"I18nTranslationSetController\";s:10:\"base table\";s:20:\"i18n_translation_set\";s:9:\"fieldable\";b:0;s:11:\"entity keys\";a:5:{s:2:\"id\";s:4:\"tsid\";s:6:\"bundle\";s:4:\"type\";s:5:\"label\";s:5:\"title\";s:8:\"revision\";s:0:\"\";s:12:\"translations\";s:12:\"translations\";}s:11:\"bundle keys\";a:1:{s:6:\"bundle\";s:4:\"type\";}s:7:\"bundles\";a:3:{s:9:\"menu_link\";a:2:{s:5:\"label\";s:13:\"Voce del menu\";s:11:\"rdf_mapping\";a:0:{}}s:4:\"path\";a:2:{s:5:\"label\";s:8:\"Percorso\";s:11:\"rdf_mapping\";a:0:{}}s:13:\"taxonomy_term\";a:2:{s:5:\"label\";s:24:\"Termine della tassonomia\";s:11:\"rdf_mapping\";a:0:{}}}s:12:\"static cache\";b:1;s:11:\"field cache\";b:1;s:9:\"load hook\";s:21:\"i18n_translation_load\";s:10:\"view modes\";a:0:{}s:11:\"translation\";a:1:{s:18:\"entity_translation\";a:1:{s:5:\"class\";s:31:\"EntityTranslationDefaultHandler\";}}s:22:\"base table field types\";a:8:{s:4:\"tsid\";s:6:\"serial\";s:5:\"title\";s:7:\"varchar\";s:4:\"type\";s:7:\"varchar\";s:6:\"bundle\";s:7:\"varchar\";s:9:\"master_id\";s:3:\"int\";s:6:\"status\";s:3:\"int\";s:7:\"created\";s:3:\"int\";s:7:\"changed\";s:3:\"int\";}s:17:\"schema_fields_sql\";a:1:{s:10:\"base table\";a:8:{i:0;s:4:\"tsid\";i:1;s:5:\"title\";i:2;s:4:\"type\";i:3;s:6:\"bundle\";i:4;s:9:\"master_id\";i:5;s:6:\"status\";i:6;s:7:\"created\";i:7;s:7:\"changed\";}}s:13:\"configuration\";b:0;}s:4:\"file\";a:20:{s:5:\"label\";s:4:\"File\";s:10:\"base table\";s:12:\"file_managed\";s:11:\"entity keys\";a:5:{s:2:\"id\";s:3:\"fid\";s:5:\"label\";s:8:\"filename\";s:8:\"revision\";s:0:\"\";s:6:\"bundle\";s:0:\"\";s:12:\"translations\";s:12:\"translations\";}s:12:\"static cache\";b:0;s:9:\"fieldable\";b:0;s:16:\"controller class\";s:29:\"DrupalDefaultEntityController\";s:11:\"field cache\";b:1;s:9:\"load hook\";s:9:\"file_load\";s:7:\"bundles\";a:1:{s:4:\"file\";a:2:{s:5:\"label\";s:4:\"File\";s:11:\"rdf_mapping\";a:0:{}}}s:10:\"view modes\";a:0:{}s:11:\"translation\";a:1:{s:18:\"entity_translation\";a:1:{s:5:\"class\";s:31:\"EntityTranslationDefaultHandler\";}}s:22:\"base table field types\";a:8:{s:3:\"fid\";s:6:\"serial\";s:3:\"uid\";s:3:\"int\";s:8:\"filename\";s:7:\"varchar\";s:3:\"uri\";s:7:\"varchar\";s:8:\"filemime\";s:7:\"varchar\";s:8:\"filesize\";s:3:\"int\";s:6:\"status\";s:3:\"int\";s:9:\"timestamp\";s:3:\"int\";}s:17:\"schema_fields_sql\";a:1:{s:10:\"base table\";a:8:{i:0;s:3:\"fid\";i:1;s:3:\"uid\";i:2;s:8:\"filename\";i:3;s:3:\"uri\";i:4;s:8:\"filemime\";i:5;s:8:\"filesize\";i:6;s:6:\"status\";i:7;s:9:\"timestamp\";}}s:12:\"plural label\";s:4:\"File\";s:11:\"description\";s:14:\"Uploaded file.\";s:15:\"access callback\";s:27:\"entity_metadata_file_access\";s:13:\"save callback\";s:9:\"file_save\";s:17:\"deletion callback\";s:27:\"entity_metadata_delete_file\";s:12:\"uri callback\";s:24:\"entity_metadata_uri_file\";s:13:\"configuration\";b:0;}s:19:\"taxonomy_vocabulary\";a:22:{s:5:\"label\";s:28:\"Vocabolario della tassonomia\";s:16:\"controller class\";s:28:\"TaxonomyVocabularyController\";s:10:\"base table\";s:19:\"taxonomy_vocabulary\";s:11:\"entity keys\";a:5:{s:2:\"id\";s:3:\"vid\";s:5:\"label\";s:4:\"name\";s:8:\"revision\";s:0:\"\";s:6:\"bundle\";s:0:\"\";s:12:\"translations\";s:12:\"translations\";}s:9:\"fieldable\";b:0;s:12:\"static cache\";b:1;s:11:\"field cache\";b:1;s:9:\"load hook\";s:24:\"taxonomy_vocabulary_load\";s:7:\"bundles\";a:1:{s:19:\"taxonomy_vocabulary\";a:2:{s:5:\"label\";s:28:\"Vocabolario della tassonomia\";s:11:\"rdf_mapping\";a:3:{s:7:\"rdftype\";a:1:{i:0;s:18:\"skos:ConceptScheme\";}s:4:\"name\";a:1:{s:10:\"predicates\";a:1:{i:0;s:8:\"dc:title\";}}s:11:\"description\";a:1:{s:10:\"predicates\";a:1:{i:0;s:12:\"rdfs:comment\";}}}}}s:10:\"view modes\";a:0:{}s:11:\"translation\";a:1:{s:18:\"entity_translation\";a:1:{s:5:\"class\";s:31:\"EntityTranslationDefaultHandler\";}}s:22:\"base table field types\";a:9:{s:3:\"vid\";s:6:\"serial\";s:4:\"name\";s:7:\"varchar\";s:12:\"machine_name\";s:7:\"varchar\";s:11:\"description\";s:4:\"text\";s:9:\"hierarchy\";s:3:\"int\";s:6:\"module\";s:7:\"varchar\";s:6:\"weight\";s:3:\"int\";s:8:\"language\";s:7:\"varchar\";s:9:\"i18n_mode\";s:3:\"int\";}s:17:\"schema_fields_sql\";a:1:{s:10:\"base table\";a:11:{i:0;s:3:\"vid\";i:1;s:4:\"name\";i:2;s:12:\"machine_name\";i:3;s:11:\"description\";i:4;s:9:\"hierarchy\";i:5;s:6:\"module\";i:6;s:6:\"weight\";i:7;s:8:\"language\";i:8;s:9:\"i18n_mode\";i:9;s:9:\"i18n_mode\";i:10;s:8:\"language\";}}s:12:\"plural label\";s:21:\"Taxonomy vocabularies\";s:11:\"description\";s:84:\"Vocabularies contain related taxonomy terms, which are used for classifying content.\";s:15:\"access callback\";s:31:\"entity_metadata_taxonomy_access\";s:17:\"creation callback\";s:29:\"entity_metadata_create_object\";s:13:\"save callback\";s:24:\"taxonomy_vocabulary_save\";s:17:\"deletion callback\";s:26:\"taxonomy_vocabulary_delete\";s:13:\"form callback\";s:40:\"entity_metadata_form_taxonomy_vocabulary\";s:10:\"token type\";s:10:\"vocabulary\";s:13:\"configuration\";b:0;}s:4:\"user\";a:24:{s:5:\"label\";s:6:\"Utente\";s:16:\"controller class\";s:14:\"UserController\";s:10:\"base table\";s:5:\"users\";s:12:\"uri callback\";s:8:\"user_uri\";s:14:\"label callback\";s:15:\"format_username\";s:9:\"fieldable\";b:1;s:11:\"entity keys\";a:4:{s:2:\"id\";s:3:\"uid\";s:8:\"revision\";s:0:\"\";s:6:\"bundle\";s:0:\"\";s:12:\"translations\";s:12:\"translations\";}s:7:\"bundles\";a:1:{s:4:\"user\";a:3:{s:5:\"label\";s:6:\"Utente\";s:5:\"admin\";a:2:{s:4:\"path\";s:28:\"admin/config/people/accounts\";s:16:\"access arguments\";a:1:{i:0;s:16:\"administer users\";}}s:11:\"rdf_mapping\";a:3:{s:7:\"rdftype\";a:1:{i:0;s:16:\"sioc:UserAccount\";}s:4:\"name\";a:1:{s:10:\"predicates\";a:1:{i:0;s:9:\"foaf:name\";}}s:8:\"homepage\";a:2:{s:10:\"predicates\";a:1:{i:0;s:9:\"foaf:page\";}s:4:\"type\";s:3:\"rel\";}}}}s:10:\"view modes\";a:1:{s:4:\"full\";a:2:{s:5:\"label\";s:14:\"Profilo utente\";s:15:\"custom settings\";b:0;}}s:11:\"translation\";a:1:{s:18:\"entity_translation\";a:3:{s:5:\"class\";s:28:\"EntityTranslationUserHandler\";s:27:\"skip original values access\";b:1;s:25:\"skip shared fields access\";b:1;}}s:12:\"static cache\";b:1;s:11:\"field cache\";b:1;s:9:\"load hook\";s:9:\"user_load\";s:22:\"base table field types\";a:16:{s:3:\"uid\";s:3:\"int\";s:4:\"name\";s:7:\"varchar\";s:4:\"pass\";s:7:\"varchar\";s:4:\"mail\";s:7:\"varchar\";s:5:\"theme\";s:7:\"varchar\";s:9:\"signature\";s:7:\"varchar\";s:16:\"signature_format\";s:7:\"varchar\";s:7:\"created\";s:3:\"int\";s:6:\"access\";s:3:\"int\";s:5:\"login\";s:3:\"int\";s:6:\"status\";s:3:\"int\";s:8:\"timezone\";s:7:\"varchar\";s:8:\"language\";s:7:\"varchar\";s:7:\"picture\";s:3:\"int\";s:4:\"init\";s:7:\"varchar\";s:4:\"data\";s:4:\"blob\";}s:17:\"schema_fields_sql\";a:1:{s:10:\"base table\";a:16:{i:0;s:3:\"uid\";i:1;s:4:\"name\";i:2;s:4:\"pass\";i:3;s:4:\"mail\";i:4;s:5:\"theme\";i:5;s:9:\"signature\";i:6;s:16:\"signature_format\";i:7;s:7:\"created\";i:8;s:6:\"access\";i:9;s:5:\"login\";i:10;s:6:\"status\";i:11;s:8:\"timezone\";i:12;s:8:\"language\";i:13;s:7:\"picture\";i:14;s:4:\"init\";i:15;s:4:\"data\";}}s:12:\"plural label\";s:6:\"Utenti\";s:11:\"description\";s:45:\"Users who have created accounts on your site.\";s:15:\"access callback\";s:27:\"entity_metadata_user_access\";s:17:\"creation callback\";s:29:\"entity_metadata_create_object\";s:13:\"save callback\";s:25:\"entity_metadata_user_save\";s:17:\"deletion callback\";s:11:\"user_delete\";s:13:\"form callback\";s:25:\"entity_metadata_form_user\";s:13:\"view callback\";s:27:\"entity_metadata_view_single\";s:13:\"configuration\";b:0;}}',0,1538750988,1),('filter_formats:en','a:4:{s:13:\"filtered_html\";O:8:\"stdClass\":5:{s:6:\"format\";s:13:\"filtered_html\";s:4:\"name\";s:13:\"Filtered HTML\";s:5:\"cache\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:6:\"weight\";s:1:\"0\";}s:9:\"full_html\";O:8:\"stdClass\":5:{s:6:\"format\";s:9:\"full_html\";s:4:\"name\";s:9:\"Full HTML\";s:5:\"cache\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:6:\"weight\";s:1:\"1\";}s:10:\"plain_text\";O:8:\"stdClass\":5:{s:6:\"format\";s:10:\"plain_text\";s:4:\"name\";s:10:\"Plain text\";s:5:\"cache\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:6:\"weight\";s:2:\"10\";}s:8:\"php_code\";O:8:\"stdClass\":5:{s:6:\"format\";s:8:\"php_code\";s:4:\"name\";s:8:\"PHP code\";s:5:\"cache\";s:1:\"0\";s:6:\"status\";s:1:\"1\";s:6:\"weight\";s:2:\"11\";}}',0,1538750670,1),('filter_formats:it','a:4:{s:13:\"filtered_html\";O:8:\"stdClass\":5:{s:6:\"format\";s:13:\"filtered_html\";s:4:\"name\";s:13:\"Filtered HTML\";s:5:\"cache\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:6:\"weight\";s:1:\"0\";}s:9:\"full_html\";O:8:\"stdClass\":5:{s:6:\"format\";s:9:\"full_html\";s:4:\"name\";s:9:\"Full HTML\";s:5:\"cache\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:6:\"weight\";s:1:\"1\";}s:10:\"plain_text\";O:8:\"stdClass\":5:{s:6:\"format\";s:10:\"plain_text\";s:4:\"name\";s:10:\"Plain text\";s:5:\"cache\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:6:\"weight\";s:2:\"10\";}s:8:\"php_code\";O:8:\"stdClass\":5:{s:6:\"format\";s:8:\"php_code\";s:4:\"name\";s:8:\"PHP code\";s:5:\"cache\";s:1:\"0\";s:6:\"status\";s:1:\"1\";s:6:\"weight\";s:2:\"11\";}}',0,1538751382,1),('filter_list_format','a:4:{s:8:\"php_code\";a:8:{s:11:\"filter_html\";O:8:\"stdClass\":6:{s:6:\"format\";s:8:\"php_code\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:11:\"filter_html\";s:6:\"weight\";s:3:\"-10\";s:6:\"status\";s:1:\"0\";s:8:\"settings\";s:168:\"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;}\";}s:18:\"filter_html_escape\";O:8:\"stdClass\":6:{s:6:\"format\";s:8:\"php_code\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:18:\"filter_html_escape\";s:6:\"weight\";s:3:\"-10\";s:6:\"status\";s:1:\"0\";s:8:\"settings\";s:6:\"a:0:{}\";}s:12:\"filter_autop\";O:8:\"stdClass\":6:{s:6:\"format\";s:8:\"php_code\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:12:\"filter_autop\";s:6:\"weight\";s:1:\"0\";s:6:\"status\";s:1:\"0\";s:8:\"settings\";s:6:\"a:0:{}\";}s:10:\"filter_url\";O:8:\"stdClass\":6:{s:6:\"format\";s:8:\"php_code\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:10:\"filter_url\";s:6:\"weight\";s:1:\"0\";s:6:\"status\";s:1:\"0\";s:8:\"settings\";s:36:\"a:1:{s:17:\"filter_url_length\";i:72;}\";}s:10:\"gmap_macro\";O:8:\"stdClass\":6:{s:6:\"format\";s:8:\"php_code\";s:6:\"module\";s:4:\"gmap\";s:4:\"name\";s:10:\"gmap_macro\";s:6:\"weight\";s:1:\"0\";s:6:\"status\";s:1:\"0\";s:8:\"settings\";s:6:\"a:0:{}\";}s:13:\"filter_photos\";O:8:\"stdClass\":6:{s:6:\"format\";s:8:\"php_code\";s:6:\"module\";s:6:\"photos\";s:4:\"name\";s:13:\"filter_photos\";s:6:\"weight\";s:1:\"0\";s:6:\"status\";s:1:\"0\";s:8:\"settings\";s:6:\"a:0:{}\";}s:8:\"php_code\";O:8:\"stdClass\":6:{s:6:\"format\";s:8:\"php_code\";s:6:\"module\";s:3:\"php\";s:4:\"name\";s:8:\"php_code\";s:6:\"weight\";s:1:\"0\";s:6:\"status\";s:1:\"1\";s:8:\"settings\";s:6:\"a:0:{}\";}s:20:\"filter_htmlcorrector\";O:8:\"stdClass\":6:{s:6:\"format\";s:8:\"php_code\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:20:\"filter_htmlcorrector\";s:6:\"weight\";s:2:\"10\";s:6:\"status\";s:1:\"0\";s:8:\"settings\";s:6:\"a:0:{}\";}}s:9:\"full_html\";a:5:{s:11:\"filter_html\";O:8:\"stdClass\":6:{s:6:\"format\";s:9:\"full_html\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:11:\"filter_html\";s:6:\"weight\";s:3:\"-10\";s:6:\"status\";s:1:\"0\";s:8:\"settings\";s:168:\"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;}\";}s:18:\"filter_html_escape\";O:8:\"stdClass\":6:{s:6:\"format\";s:9:\"full_html\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:18:\"filter_html_escape\";s:6:\"weight\";s:3:\"-10\";s:6:\"status\";s:1:\"0\";s:8:\"settings\";s:6:\"a:0:{}\";}s:10:\"filter_url\";O:8:\"stdClass\":6:{s:6:\"format\";s:9:\"full_html\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:10:\"filter_url\";s:6:\"weight\";s:1:\"0\";s:6:\"status\";s:1:\"1\";s:8:\"settings\";s:40:\"a:1:{s:17:\"filter_url_length\";s:2:\"72\";}\";}s:12:\"filter_autop\";O:8:\"stdClass\":6:{s:6:\"format\";s:9:\"full_html\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:12:\"filter_autop\";s:6:\"weight\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:8:\"settings\";s:6:\"a:0:{}\";}s:20:\"filter_htmlcorrector\";O:8:\"stdClass\":6:{s:6:\"format\";s:9:\"full_html\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:20:\"filter_htmlcorrector\";s:6:\"weight\";s:2:\"10\";s:6:\"status\";s:1:\"1\";s:8:\"settings\";s:6:\"a:0:{}\";}}s:10:\"plain_text\";a:5:{s:11:\"filter_html\";O:8:\"stdClass\":6:{s:6:\"format\";s:10:\"plain_text\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:11:\"filter_html\";s:6:\"weight\";s:3:\"-10\";s:6:\"status\";s:1:\"0\";s:8:\"settings\";s:168:\"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;}\";}s:18:\"filter_html_escape\";O:8:\"stdClass\":6:{s:6:\"format\";s:10:\"plain_text\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:18:\"filter_html_escape\";s:6:\"weight\";s:1:\"0\";s:6:\"status\";s:1:\"1\";s:8:\"settings\";s:6:\"a:0:{}\";}s:10:\"filter_url\";O:8:\"stdClass\":6:{s:6:\"format\";s:10:\"plain_text\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:10:\"filter_url\";s:6:\"weight\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:8:\"settings\";s:36:\"a:1:{s:17:\"filter_url_length\";i:72;}\";}s:12:\"filter_autop\";O:8:\"stdClass\":6:{s:6:\"format\";s:10:\"plain_text\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:12:\"filter_autop\";s:6:\"weight\";s:1:\"2\";s:6:\"status\";s:1:\"1\";s:8:\"settings\";s:6:\"a:0:{}\";}s:20:\"filter_htmlcorrector\";O:8:\"stdClass\":6:{s:6:\"format\";s:10:\"plain_text\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:20:\"filter_htmlcorrector\";s:6:\"weight\";s:2:\"10\";s:6:\"status\";s:1:\"0\";s:8:\"settings\";s:6:\"a:0:{}\";}}s:13:\"filtered_html\";a:5:{s:18:\"filter_html_escape\";O:8:\"stdClass\":6:{s:6:\"format\";s:13:\"filtered_html\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:18:\"filter_html_escape\";s:6:\"weight\";s:3:\"-10\";s:6:\"status\";s:1:\"0\";s:8:\"settings\";s:6:\"a:0:{}\";}s:10:\"filter_url\";O:8:\"stdClass\":6:{s:6:\"format\";s:13:\"filtered_html\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:10:\"filter_url\";s:6:\"weight\";s:1:\"0\";s:6:\"status\";s:1:\"1\";s:8:\"settings\";s:36:\"a:1:{s:17:\"filter_url_length\";i:72;}\";}s:11:\"filter_html\";O:8:\"stdClass\":6:{s:6:\"format\";s:13:\"filtered_html\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:11:\"filter_html\";s:6:\"weight\";s:1:\"1\";s:6:\"status\";s:1:\"1\";s:8:\"settings\";s:168:\"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;}\";}s:12:\"filter_autop\";O:8:\"stdClass\":6:{s:6:\"format\";s:13:\"filtered_html\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:12:\"filter_autop\";s:6:\"weight\";s:1:\"2\";s:6:\"status\";s:1:\"1\";s:8:\"settings\";s:6:\"a:0:{}\";}s:20:\"filter_htmlcorrector\";O:8:\"stdClass\":6:{s:6:\"format\";s:13:\"filtered_html\";s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:20:\"filter_htmlcorrector\";s:6:\"weight\";s:2:\"10\";s:6:\"status\";s:1:\"1\";s:8:\"settings\";s:6:\"a:0:{}\";}}}',0,1538750977,1),('gmap_icondata','a:4:{s:37:\"sites/all/modules/gmap/markers/small/\";a:4:{s:1:\"f\";a:24:{i:0;s:10:\"shadow.png\";i:1;s:7:\"red.png\";i:2;s:8:\"bred.png\";i:3;s:10:\"orange.png\";i:4;s:11:\"pyellow.png\";i:5;s:10:\"yellow.png\";i:6;s:10:\"pgreen.png\";i:7;s:9:\"green.png\";i:8;s:10:\"dgreen.png\";i:9;s:10:\"fgreen.png\";i:10;s:9:\"pblue.png\";i:11;s:9:\"lblue.png\";i:12;s:8:\"blue.png\";i:13;s:9:\"dblue.png\";i:14;s:10:\"purple.png\";i:15;s:8:\"pink.png\";i:16;s:9:\"bpink.png\";i:17;s:9:\"brown.png\";i:18;s:9:\"white.png\";i:19;s:9:\"lgray.png\";i:20;s:8:\"gray.png\";i:21;s:9:\"black.png\";i:22;s:11:\"altblue.png\";i:23;s:10:\"altred.png\";}s:1:\"w\";a:2:{i:0;i:22;i:1;i:12;}s:1:\"h\";a:1:{i:0;i:20;}s:1:\"i\";a:1:{i:0;a:2:{i:0;a:9:{i:0;a:24:{i:0;s:8:\"defaults\";i:1;s:9:\"small red\";i:2;s:10:\"small bred\";i:3;s:12:\"small orange\";i:4;s:13:\"small pyellow\";i:5;s:12:\"small yellow\";i:6;s:12:\"small pgreen\";i:7;s:11:\"small green\";i:8;s:12:\"small dgreen\";i:9;s:12:\"small fgreen\";i:10;s:11:\"small pblue\";i:11;s:11:\"small lblue\";i:12;s:10:\"small blue\";i:13;s:11:\"small dblue\";i:14;s:12:\"small purple\";i:15;s:10:\"small pink\";i:16;s:11:\"small bpink\";i:17;s:11:\"small brown\";i:18;s:11:\"small white\";i:19;s:11:\"small lgray\";i:20;s:10:\"small gray\";i:21;s:11:\"small black\";i:22;s:14:\"alt small blue\";i:23;s:13:\"alt small red\";}i:1;a:24:{i:0;s:0:\"\";i:1;s:9:\"Small Red\";i:2;s:16:\"Small Bright red\";i:3;s:12:\"Small Orange\";i:4;s:17:\"Small Pale Yellow\";i:5;s:12:\"Small Yellow\";i:6;s:16:\"Small Pale Green\";i:7;s:11:\"Small Green\";i:8;s:16:\"Small Dark Green\";i:9;s:18:\"Small Flouro Green\";i:10;s:15:\"Small Pale Blue\";i:11;s:16:\"Small Light Blue\";i:12;s:10:\"Small Blue\";i:13;s:15:\"Small Dark Blue\";i:14;s:12:\"Small Purple\";i:15;s:10:\"Small Pink\";i:16;s:17:\"Small Bright Pink\";i:17;s:11:\"Small Brown\";i:18;s:11:\"Small White\";i:19;s:16:\"Small Light Gray\";i:20;s:10:\"Small Gray\";i:21;s:11:\"Small Black\";i:22;s:22:\"Small Blue (Alternate)\";i:23;s:21:\"Small Red (Alternate)\";}i:2;a:24:{i:0;a:0:{}i:1;a:1:{i:0;i:1;}i:2;a:1:{i:0;i:2;}i:3;a:1:{i:0;i:3;}i:4;a:1:{i:0;i:4;}i:5;a:1:{i:0;i:5;}i:6;a:1:{i:0;i:6;}i:7;a:1:{i:0;i:7;}i:8;a:1:{i:0;i:8;}i:9;a:1:{i:0;i:9;}i:10;a:1:{i:0;i:10;}i:11;a:1:{i:0;i:11;}i:12;a:1:{i:0;i:12;}i:13;a:1:{i:0;i:13;}i:14;a:1:{i:0;i:14;}i:15;a:1:{i:0;i:15;}i:16;a:1:{i:0;i:16;}i:17;a:1:{i:0;i:17;}i:18;a:1:{i:0;i:18;}i:19;a:1:{i:0;i:19;}i:20;a:1:{i:0;i:20;}i:21;a:1:{i:0;i:21;}i:22;a:1:{i:0;i:22;}i:23;a:1:{i:0;i:23;}}i:3;a:2:{i:0;i:7;i:1;i:0;}i:4;a:2:{i:0;i:19;i:1;i:0;}i:5;a:2:{i:0;i:10;i:1;i:0;}i:6;a:2:{i:0;i:2;i:1;i:0;}i:7;a:1:{i:0;i:0;}i:8;a:1:{i:0;i:0;}}i:1;a:13:{i:0;a:0:{}i:1;a:0:{}i:2;a:0:{}i:3;a:0:{}i:4;a:0:{}i:5;a:0:{}i:6;a:0:{}i:7;a:0:{}i:8;a:0:{}i:9;a:0:{}i:10;a:0:{}i:11;a:0:{}i:12;a:0:{}}}}}s:36:\"sites/all/modules/gmap/markers/flat/\";a:4:{s:1:\"f\";a:1:{i:0;s:5:\"x.png\";}s:1:\"w\";a:1:{i:0;i:16;}s:1:\"h\";a:1:{i:0;i:16;}s:1:\"i\";a:1:{i:0;a:2:{i:0;a:7:{i:0;a:2:{i:0;s:8:\"defaults\";i:1;s:8:\"treasure\";}i:1;a:2:{i:0;s:0:\"\";i:1;s:16:\"X marks the spot\";}i:2;a:2:{i:0;a:0:{}i:1;a:1:{i:0;i:0;}}i:3;a:2:{i:0;i:8;i:1;i:0;}i:4;a:2:{i:0;i:8;i:1;i:0;}i:5;a:2:{i:0;i:8;i:1;i:0;}i:6;a:2:{i:0;i:8;i:1;i:0;}}i:1;a:13:{i:0;a:0:{}i:1;a:0:{}i:2;a:0:{}i:3;a:0:{}i:4;a:0:{}i:5;a:0:{}i:6;a:0:{}i:7;a:0:{}i:8;a:0:{}i:9;a:0:{}i:10;a:0:{}i:11;a:0:{}i:12;a:0:{}}}}}s:35:\"sites/all/modules/gmap/markers/big/\";a:4:{s:1:\"f\";a:3:{i:0;s:10:\"shadow.png\";i:1;s:8:\"blue.png\";i:2;s:7:\"red.png\";}s:1:\"w\";a:2:{i:0;i:56;i:1;i:30;}s:1:\"h\";a:1:{i:0;i:51;}s:1:\"i\";a:1:{i:0;a:2:{i:0;a:9:{i:0;a:3:{i:0;s:8:\"defaults\";i:1;s:8:\"big blue\";i:2;s:7:\"big red\";}i:1;a:3:{i:0;s:0:\"\";i:1;s:8:\"Big Blue\";i:2;s:7:\"Big Red\";}i:2;a:3:{i:0;a:0:{}i:1;a:1:{i:0;i:1;}i:2;a:1:{i:0;i:2;}}i:3;a:2:{i:0;i:16;i:1;i:0;}i:4;a:2:{i:0;i:51;i:1;i:0;}i:5;a:2:{i:0;i:24;i:1;i:0;}i:6;a:2:{i:0;i:4;i:1;i:0;}i:7;a:1:{i:0;i:0;}i:8;a:1:{i:0;i:0;}}i:1;a:13:{i:0;a:0:{}i:1;a:0:{}i:2;a:0:{}i:3;a:0:{}i:4;a:0:{}i:5;a:0:{}i:6;a:0:{}i:7;a:0:{}i:8;a:0:{}i:9;a:0:{}i:10;a:0:{}i:11;a:0:{}i:12;a:0:{}}}}}s:31:\"sites/all/modules/gmap/markers/\";a:4:{s:1:\"f\";a:131:{i:0;s:11:\"letter1.png\";i:1;s:11:\"letter2.png\";i:2;s:11:\"letter3.png\";i:3;s:11:\"letter4.png\";i:4;s:11:\"letter5.png\";i:5;s:11:\"letter6.png\";i:6;s:11:\"letter7.png\";i:7;s:11:\"letter8.png\";i:8;s:11:\"letter9.png\";i:9;s:12:\"letter10.png\";i:10;s:9:\"blank.png\";i:11;s:11:\"cluster.png\";i:12;s:10:\"drupal.png\";i:13;s:10:\"vertex.png\";i:14;s:8:\"blue.png\";i:15;s:8:\"gray.png\";i:16;s:9:\"green.png\";i:17;s:9:\"lblue.png\";i:18;s:10:\"orange.png\";i:19;s:8:\"pink.png\";i:20;s:10:\"purple.png\";i:21;s:9:\"white.png\";i:22;s:10:\"yellow.png\";i:23;s:11:\"number1.png\";i:24;s:11:\"number2.png\";i:25;s:11:\"number3.png\";i:26;s:11:\"number4.png\";i:27;s:11:\"number5.png\";i:28;s:11:\"number6.png\";i:29;s:11:\"number7.png\";i:30;s:11:\"number8.png\";i:31;s:11:\"number9.png\";i:32;s:12:\"number10.png\";i:33;s:12:\"number11.png\";i:34;s:12:\"number12.png\";i:35;s:12:\"number13.png\";i:36;s:12:\"number14.png\";i:37;s:12:\"number15.png\";i:38;s:12:\"number16.png\";i:39;s:12:\"number17.png\";i:40;s:12:\"number18.png\";i:41;s:12:\"number19.png\";i:42;s:12:\"number20.png\";i:43;s:12:\"number21.png\";i:44;s:12:\"number22.png\";i:45;s:12:\"number23.png\";i:46;s:12:\"number24.png\";i:47;s:12:\"number25.png\";i:48;s:12:\"number26.png\";i:49;s:12:\"number27.png\";i:50;s:12:\"number28.png\";i:51;s:12:\"number29.png\";i:52;s:12:\"number30.png\";i:53;s:12:\"number31.png\";i:54;s:12:\"number32.png\";i:55;s:12:\"number33.png\";i:56;s:12:\"number34.png\";i:57;s:12:\"number35.png\";i:58;s:12:\"number36.png\";i:59;s:12:\"number37.png\";i:60;s:12:\"number38.png\";i:61;s:12:\"number39.png\";i:62;s:12:\"number40.png\";i:63;s:12:\"number41.png\";i:64;s:12:\"number42.png\";i:65;s:12:\"number43.png\";i:66;s:12:\"number44.png\";i:67;s:12:\"number45.png\";i:68;s:12:\"number46.png\";i:69;s:12:\"number47.png\";i:70;s:12:\"number48.png\";i:71;s:12:\"number49.png\";i:72;s:12:\"number50.png\";i:73;s:12:\"number51.png\";i:74;s:12:\"number52.png\";i:75;s:12:\"number53.png\";i:76;s:12:\"number54.png\";i:77;s:12:\"number55.png\";i:78;s:12:\"number56.png\";i:79;s:12:\"number57.png\";i:80;s:12:\"number58.png\";i:81;s:12:\"number59.png\";i:82;s:12:\"number60.png\";i:83;s:12:\"number61.png\";i:84;s:12:\"number62.png\";i:85;s:12:\"number63.png\";i:86;s:12:\"number64.png\";i:87;s:12:\"number65.png\";i:88;s:12:\"number66.png\";i:89;s:12:\"number67.png\";i:90;s:12:\"number68.png\";i:91;s:12:\"number69.png\";i:92;s:12:\"number70.png\";i:93;s:12:\"number71.png\";i:94;s:12:\"number72.png\";i:95;s:12:\"number73.png\";i:96;s:12:\"number74.png\";i:97;s:12:\"number75.png\";i:98;s:12:\"number76.png\";i:99;s:12:\"number77.png\";i:100;s:12:\"number78.png\";i:101;s:12:\"number79.png\";i:102;s:12:\"number80.png\";i:103;s:12:\"number81.png\";i:104;s:12:\"number82.png\";i:105;s:12:\"number83.png\";i:106;s:12:\"number84.png\";i:107;s:12:\"number85.png\";i:108;s:12:\"number86.png\";i:109;s:12:\"number87.png\";i:110;s:12:\"number88.png\";i:111;s:12:\"number89.png\";i:112;s:12:\"number90.png\";i:113;s:12:\"number91.png\";i:114;s:12:\"number92.png\";i:115;s:12:\"number93.png\";i:116;s:12:\"number94.png\";i:117;s:12:\"number95.png\";i:118;s:12:\"number96.png\";i:119;s:12:\"number97.png\";i:120;s:12:\"number98.png\";i:121;s:12:\"number99.png\";i:122;s:17:\"marker_sunday.png\";i:123;s:17:\"marker_monday.png\";i:124;s:18:\"marker_tuesday.png\";i:125;s:20:\"marker_wednesday.png\";i:126;s:19:\"marker_thursday.png\";i:127;s:17:\"marker_friday.png\";i:128;s:19:\"marker_saturday.png\";i:129;s:10:\"route1.png\";i:130;s:10:\"route2.png\";}s:1:\"w\";a:15:{i:0;i:20;i:1;i:20;i:2;i:20;i:3;i:20;i:4;i:20;i:5;i:20;i:6;i:20;i:7;i:20;i:8;i:20;i:9;i:20;i:10;i:20;i:11;i:20;i:12;i:20;i:13;i:8;i:14;i:20;}s:1:\"h\";a:15:{i:0;i:34;i:1;i:34;i:2;i:34;i:3;i:34;i:4;i:34;i:5;i:34;i:6;i:34;i:7;i:34;i:8;i:34;i:9;i:34;i:10;i:34;i:11;i:34;i:12;i:34;i:13;i:8;i:14;i:34;}s:1:\"i\";a:6:{i:0;a:2:{i:0;a:7:{i:0;a:2:{i:0;s:8:\"defaults\";i:1;s:7:\"letters\";}i:1;a:2:{i:0;s:0:\"\";i:1;s:7:\"Letters\";}i:2;a:2:{i:0;a:0:{}i:1;a:10:{i:0;i:0;i:1;i:1;i:2;i:2;i:3;i:3;i:4;i:4;i:5;i:5;i:6;i:6;i:7;i:7;i:8;i:8;i:9;i:9;}}i:3;a:2:{i:0;i:10;i:1;i:0;}i:4;a:2:{i:0;i:29;i:1;i:0;}i:5;a:2:{i:0;i:17;i:1;i:0;}i:6;a:2:{i:0;i:6;i:1;i:0;}}i:1;a:13:{i:0;a:0:{}i:1;a:0:{}i:2;a:0:{}i:3;a:0:{}i:4;a:0:{}i:5;a:0:{}i:6;a:0:{}i:7;a:0:{}i:8;a:0:{}i:9;a:0:{}i:10;a:0:{}i:11;a:0:{}i:12;a:0:{}}}i:1;a:2:{i:0;a:7:{i:0;a:5:{i:0;s:8:\"defaults\";i:1;s:5:\"blank\";i:2;s:7:\"cluster\";i:3;s:6:\"drupal\";i:4;s:6:\"vertex\";}i:1;a:5:{i:0;s:0:\"\";i:1;s:5:\"Blank\";i:2;s:7:\"Cluster\";i:3;s:6:\"Drupal\";i:4;s:11:\"Line Vertex\";}i:2;a:5:{i:0;a:0:{}i:1;a:1:{i:0;i:10;}i:2;a:1:{i:0;i:11;}i:3;a:1:{i:0;i:12;}i:4;a:1:{i:0;i:13;}}i:3;a:5:{i:0;i:10;i:1;i:0;i:2;i:0;i:3;i:0;i:4;i:4;}i:4;a:5:{i:0;i:29;i:1;i:0;i:2;i:0;i:3;i:0;i:4;i:4;}i:5;a:5:{i:0;i:17;i:1;i:0;i:2;i:0;i:3;i:0;i:4;i:4;}i:6;a:5:{i:0;i:6;i:1;i:0;i:2;i:0;i:3;i:0;i:4;i:4;}}i:1;a:13:{i:0;a:0:{}i:1;a:0:{}i:2;a:0:{}i:3;a:0:{}i:4;a:0:{}i:5;a:0:{}i:6;a:0:{}i:7;a:0:{}i:8;a:0:{}i:9;a:0:{}i:10;a:0:{}i:11;a:0:{}i:12;a:0:{}}}i:2;a:2:{i:0;a:7:{i:0;a:10:{i:0;s:8:\"defaults\";i:1;s:4:\"blue\";i:2;s:4:\"gray\";i:3;s:5:\"green\";i:4;s:5:\"lblue\";i:5;s:6:\"orange\";i:6;s:4:\"pink\";i:7;s:6:\"purple\";i:8;s:5:\"white\";i:9;s:6:\"yellow\";}i:1;a:10:{i:0;s:0:\"\";i:1;s:4:\"Blue\";i:2;s:4:\"Gray\";i:3;s:5:\"Green\";i:4;s:10:\"Light Blue\";i:5;s:6:\"Orange\";i:6;s:4:\"Pink\";i:7;s:6:\"Purple\";i:8;s:5:\"White\";i:9;s:6:\"Yellow\";}i:2;a:10:{i:0;a:0:{}i:1;a:1:{i:0;i:14;}i:2;a:1:{i:0;i:15;}i:3;a:1:{i:0;i:16;}i:4;a:1:{i:0;i:17;}i:5;a:1:{i:0;i:18;}i:6;a:1:{i:0;i:19;}i:7;a:1:{i:0;i:20;}i:8;a:1:{i:0;i:21;}i:9;a:1:{i:0;i:22;}}i:3;a:2:{i:0;i:10;i:1;i:0;}i:4;a:2:{i:0;i:29;i:1;i:0;}i:5;a:2:{i:0;i:17;i:1;i:0;}i:6;a:2:{i:0;i:3;i:1;i:0;}}i:1;a:13:{i:0;a:0:{}i:1;a:0:{}i:2;a:0:{}i:3;a:0:{}i:4;a:0:{}i:5;a:0:{}i:6;a:0:{}i:7;a:0:{}i:8;a:0:{}i:9;a:0:{}i:10;a:0:{}i:11;a:0:{}i:12;a:0:{}}}i:3;a:2:{i:0;a:7:{i:0;a:2:{i:0;s:8:\"defaults\";i:1;s:7:\"numbers\";}i:1;a:2:{i:0;s:0:\"\";i:1;s:7:\"Numbers\";}i:2;a:2:{i:0;a:0:{}i:1;a:99:{i:0;i:23;i:1;i:24;i:2;i:25;i:3;i:26;i:4;i:27;i:5;i:28;i:6;i:29;i:7;i:30;i:8;i:31;i:9;i:32;i:10;i:33;i:11;i:34;i:12;i:35;i:13;i:36;i:14;i:37;i:15;i:38;i:16;i:39;i:17;i:40;i:18;i:41;i:19;i:42;i:20;i:43;i:21;i:44;i:22;i:45;i:23;i:46;i:24;i:47;i:25;i:48;i:26;i:49;i:27;i:50;i:28;i:51;i:29;i:52;i:30;i:53;i:31;i:54;i:32;i:55;i:33;i:56;i:34;i:57;i:35;i:58;i:36;i:59;i:37;i:60;i:38;i:61;i:39;i:62;i:40;i:63;i:41;i:64;i:42;i:65;i:43;i:66;i:44;i:67;i:45;i:68;i:46;i:69;i:47;i:70;i:48;i:71;i:49;i:72;i:50;i:73;i:51;i:74;i:52;i:75;i:53;i:76;i:54;i:77;i:55;i:78;i:56;i:79;i:57;i:80;i:58;i:81;i:59;i:82;i:60;i:83;i:61;i:84;i:62;i:85;i:63;i:86;i:64;i:87;i:65;i:88;i:66;i:89;i:67;i:90;i:68;i:91;i:69;i:92;i:70;i:93;i:71;i:94;i:72;i:95;i:73;i:96;i:74;i:97;i:75;i:98;i:76;i:99;i:77;i:100;i:78;i:101;i:79;i:102;i:80;i:103;i:81;i:104;i:82;i:105;i:83;i:106;i:84;i:107;i:85;i:108;i:86;i:109;i:87;i:110;i:88;i:111;i:89;i:112;i:90;i:113;i:91;i:114;i:92;i:115;i:93;i:116;i:94;i:117;i:95;i:118;i:96;i:119;i:97;i:120;i:98;i:121;}}i:3;a:2:{i:0;i:10;i:1;i:0;}i:4;a:2:{i:0;i:29;i:1;i:0;}i:5;a:2:{i:0;i:17;i:1;i:0;}i:6;a:2:{i:0;i:6;i:1;i:0;}}i:1;a:13:{i:0;a:0:{}i:1;a:0:{}i:2;a:0:{}i:3;a:0:{}i:4;a:0:{}i:5;a:0:{}i:6;a:0:{}i:7;a:0:{}i:8;a:0:{}i:9;a:0:{}i:10;a:0:{}i:11;a:0:{}i:12;a:0:{}}}i:4;a:2:{i:0;a:7:{i:0;a:9:{i:0;s:8:\"defaults\";i:1;s:6:\"sunday\";i:2;s:6:\"monday\";i:3;s:7:\"tuesday\";i:4;s:9:\"wednesday\";i:5;s:8:\"thursday\";i:6;s:6:\"friday\";i:7;s:8:\"saturday\";i:8;s:4:\"week\";}i:1;a:9:{i:0;s:0:\"\";i:1;s:6:\"Sunday\";i:2;s:6:\"Monday\";i:3;s:7:\"Tuesday\";i:4;s:9:\"Wednesday\";i:5;s:8:\"Thursday\";i:6;s:6:\"Friday\";i:7;s:8:\"Saturday\";i:8;s:4:\"Week\";}i:2;a:9:{i:0;a:0:{}i:1;a:1:{i:0;i:122;}i:2;a:1:{i:0;i:123;}i:3;a:1:{i:0;i:124;}i:4;a:1:{i:0;i:125;}i:5;a:1:{i:0;i:126;}i:6;a:1:{i:0;i:127;}i:7;a:1:{i:0;i:128;}i:8;a:7:{i:0;i:122;i:1;i:123;i:2;i:124;i:3;i:125;i:4;i:126;i:5;i:127;i:6;i:128;}}i:3;a:2:{i:0;i:10;i:1;i:0;}i:4;a:2:{i:0;i:29;i:1;i:0;}i:5;a:2:{i:0;i:17;i:1;i:0;}i:6;a:2:{i:0;i:3;i:1;i:0;}}i:1;a:13:{i:0;a:0:{}i:1;a:0:{}i:2;a:0:{}i:3;a:0:{}i:4;a:0:{}i:5;a:0:{}i:6;a:0:{}i:7;a:0:{}i:8;a:0:{}i:9;a:0:{}i:10;a:0:{}i:11;a:0:{}i:12;a:0:{}}}i:5;a:2:{i:0;a:7:{i:0;a:2:{i:0;s:8:\"defaults\";i:1;s:5:\"route\";}i:1;a:2:{i:0;s:0:\"\";i:1;s:5:\"Route\";}i:2;a:2:{i:0;a:0:{}i:1;a:2:{i:0;i:129;i:1;i:130;}}i:3;a:2:{i:0;i:10;i:1;i:0;}i:4;a:2:{i:0;i:29;i:1;i:0;}i:5;a:2:{i:0;i:17;i:1;i:0;}i:6;a:2:{i:0;i:6;i:1;i:0;}}i:1;a:13:{i:0;a:0:{}i:1;a:0:{}i:2;a:0:{}i:3;a:0:{}i:4;a:0:{}i:5;a:0:{}i:6;a:0:{}i:7;a:0:{}i:8;a:0:{}i:9;a:0:{}i:10;a:0:{}i:11;a:0:{}i:12;a:0:{}}}}}}',0,1538756379,1),('gmap_marker_titles','a:50:{s:9:\"small red\";s:13:\"Rosso Piccolo\";s:10:\"small bred\";s:23:\"Rosso brillante Piccolo\";s:12:\"small orange\";s:17:\"Arancione Piccolo\";s:13:\"small pyellow\";s:25:\"Giallo paglierino Piccolo\";s:12:\"small yellow\";s:14:\"Giallo Piccolo\";s:12:\"small pgreen\";s:21:\"Verde pallido Piccolo\";s:11:\"small green\";s:13:\"Verde Piccolo\";s:12:\"small dgreen\";s:19:\"Verde scuro Piccolo\";s:12:\"small fgreen\";s:18:\"Verde Fluo Piccolo\";s:11:\"small pblue\";s:15:\"Azzurro Piccolo\";s:11:\"small lblue\";s:18:\"Blu chiaro Piccolo\";s:10:\"small blue\";s:11:\"Blu Piccolo\";s:11:\"small dblue\";s:17:\"Blu scuro Piccolo\";s:12:\"small purple\";s:13:\"Viola Piccolo\";s:10:\"small pink\";s:12:\"Rosa Piccolo\";s:11:\"small bpink\";s:21:\"Rosa shocking Piccolo\";s:11:\"small brown\";s:15:\"Marrone Piccolo\";s:11:\"small white\";s:14:\"Bianco Piccolo\";s:11:\"small lgray\";s:21:\"Grigio chiaro Piccolo\";s:10:\"small gray\";s:14:\"Grigio Piccolo\";s:11:\"small black\";s:12:\"Nero Piccolo\";s:14:\"alt small blue\";s:25:\"Blu Piccolo (Sostitutivo)\";s:13:\"alt small red\";s:27:\"Rosso Piccolo (Sostitutivo)\";s:8:\"treasure\";s:17:\"X indica il luogo\";s:8:\"big blue\";s:10:\"Blu Grande\";s:7:\"big red\";s:12:\"Rosso Grande\";s:7:\"letters\";s:7:\"Lettere\";s:5:\"blank\";s:5:\"Vuota\";s:7:\"cluster\";s:6:\"Gruppo\";s:6:\"drupal\";s:6:\"Drupal\";s:6:\"vertex\";s:15:\"Linea di Vertex\";s:4:\"blue\";s:3:\"Blu\";s:4:\"gray\";s:6:\"Grigio\";s:5:\"green\";s:5:\"Verde\";s:5:\"lblue\";s:10:\"Blu chiaro\";s:6:\"orange\";s:9:\"Arancione\";s:4:\"pink\";s:4:\"Rosa\";s:6:\"purple\";s:5:\"Viola\";s:5:\"white\";s:6:\"Bianco\";s:6:\"yellow\";s:6:\"Giallo\";s:7:\"numbers\";s:6:\"Numeri\";s:6:\"sunday\";s:8:\"Domenica\";s:6:\"monday\";s:7:\"Lunedì\";s:7:\"tuesday\";s:8:\"Martedì\";s:9:\"wednesday\";s:10:\"Mercoledì\";s:8:\"thursday\";s:8:\"Giovedì\";s:6:\"friday\";s:8:\"Venerdì\";s:8:\"saturday\";s:6:\"Sabato\";s:4:\"week\";s:9:\"Settimana\";s:5:\"route\";s:10:\"Itinerario\";}',0,1538756379,1),('image_effects:it','a:6:{s:10:\"image_crop\";a:9:{s:5:\"label\";s:8:\"Ritaglia\";s:4:\"help\";s:90:\"Il ritaglio rimuove porzioni dell\'immagine in modo da portarla alle dimensioni desiderate.\";s:15:\"effect callback\";s:17:\"image_crop_effect\";s:19:\"dimensions callback\";s:23:\"image_resize_dimensions\";s:13:\"form callback\";s:15:\"image_crop_form\";s:13:\"summary theme\";s:18:\"image_crop_summary\";s:6:\"module\";s:5:\"image\";s:4:\"name\";s:10:\"image_crop\";s:4:\"data\";a:0:{}}s:16:\"image_desaturate\";a:7:{s:5:\"label\";s:8:\"Desatura\";s:4:\"help\";s:47:\"Desatura converte un\'immagine in scala di grigi\";s:15:\"effect callback\";s:23:\"image_desaturate_effect\";s:22:\"dimensions passthrough\";b:1;s:6:\"module\";s:5:\"image\";s:4:\"name\";s:16:\"image_desaturate\";s:4:\"data\";a:0:{}}s:12:\"image_resize\";a:9:{s:5:\"label\";s:12:\"Ridimensiona\";s:4:\"help\";s:163:\"Il ridimensionamento forza le dimensioni dell\'immagine secondo i valori impostati. Questo può causare restringimento o allungamento sproporzionato delle immagini.\";s:15:\"effect callback\";s:19:\"image_resize_effect\";s:19:\"dimensions callback\";s:23:\"image_resize_dimensions\";s:13:\"form callback\";s:17:\"image_resize_form\";s:13:\"summary theme\";s:20:\"image_resize_summary\";s:6:\"module\";s:5:\"image\";s:4:\"name\";s:12:\"image_resize\";s:4:\"data\";a:0:{}}s:12:\"image_rotate\";a:9:{s:5:\"label\";s:5:\"Ruota\";s:4:\"help\";s:101:\"La rotazione di un\'immagine può aumentarne le dimensioni per raggiungere l\'ampiezza della diagonale.\";s:15:\"effect callback\";s:19:\"image_rotate_effect\";s:19:\"dimensions callback\";s:23:\"image_rotate_dimensions\";s:13:\"form callback\";s:17:\"image_rotate_form\";s:13:\"summary theme\";s:20:\"image_rotate_summary\";s:6:\"module\";s:5:\"image\";s:4:\"name\";s:12:\"image_rotate\";s:4:\"data\";a:0:{}}s:11:\"image_scale\";a:9:{s:5:\"label\";s:5:\"Scala\";s:4:\"help\";s:169:\"La trasformazione in scala mantiene il rapporto delle dimensioni dell\'immagine originale. Se viene impostata una sola dimensione, l\'altra sarà calcolata di conseguenza.\";s:15:\"effect callback\";s:18:\"image_scale_effect\";s:19:\"dimensions callback\";s:22:\"image_scale_dimensions\";s:13:\"form callback\";s:16:\"image_scale_form\";s:13:\"summary theme\";s:19:\"image_scale_summary\";s:6:\"module\";s:5:\"image\";s:4:\"name\";s:11:\"image_scale\";s:4:\"data\";a:0:{}}s:20:\"image_scale_and_crop\";a:9:{s:5:\"label\";s:16:\"Scala e ritaglia\";s:4:\"help\";s:247:\"Scala e ritaglia preserva il rapporto di dimensioni dell\'immagine originale per poi ritagliare la dimensione in eccesso. Questo metodo è utile nei casi in cui si desidera ottenere delle miniature perfettamente quadrate senza deformare l\'immagine.\";s:15:\"effect callback\";s:27:\"image_scale_and_crop_effect\";s:19:\"dimensions callback\";s:23:\"image_resize_dimensions\";s:13:\"form callback\";s:17:\"image_resize_form\";s:13:\"summary theme\";s:20:\"image_resize_summary\";s:6:\"module\";s:5:\"image\";s:4:\"name\";s:20:\"image_scale_and_crop\";s:4:\"data\";a:0:{}}}',0,1538757252,1),('image_styles','a:4:{s:9:\"thumbnail\";a:6:{s:4:\"isid\";s:1:\"4\";s:4:\"name\";s:9:\"thumbnail\";s:5:\"label\";s:19:\"Thumbnail (200x200)\";s:6:\"module\";s:5:\"image\";s:7:\"storage\";i:2;s:7:\"effects\";a:1:{i:3;a:12:{s:5:\"label\";s:5:\"Scala\";s:4:\"help\";s:169:\"La trasformazione in scala mantiene il rapporto delle dimensioni dell\'immagine originale. Se viene impostata una sola dimensione, l\'altra sarà calcolata di conseguenza.\";s:15:\"effect callback\";s:18:\"image_scale_effect\";s:19:\"dimensions callback\";s:22:\"image_scale_dimensions\";s:13:\"form callback\";s:16:\"image_scale_form\";s:13:\"summary theme\";s:19:\"image_scale_summary\";s:6:\"module\";s:5:\"image\";s:4:\"name\";s:11:\"image_scale\";s:4:\"data\";a:3:{s:5:\"width\";s:3:\"200\";s:6:\"height\";s:3:\"200\";s:7:\"upscale\";i:1;}s:4:\"ieid\";s:1:\"3\";s:4:\"isid\";s:1:\"4\";s:6:\"weight\";s:1:\"0\";}}}s:6:\"medium\";a:5:{s:5:\"label\";s:16:\"Medium (220x220)\";s:7:\"effects\";a:1:{i:0;a:10:{s:5:\"label\";s:5:\"Scala\";s:4:\"help\";s:169:\"La trasformazione in scala mantiene il rapporto delle dimensioni dell\'immagine originale. Se viene impostata una sola dimensione, l\'altra sarà calcolata di conseguenza.\";s:15:\"effect callback\";s:18:\"image_scale_effect\";s:19:\"dimensions callback\";s:22:\"image_scale_dimensions\";s:13:\"form callback\";s:16:\"image_scale_form\";s:13:\"summary theme\";s:19:\"image_scale_summary\";s:6:\"module\";s:5:\"image\";s:4:\"name\";s:11:\"image_scale\";s:4:\"data\";a:3:{s:5:\"width\";i:220;s:6:\"height\";i:220;s:7:\"upscale\";i:1;}s:6:\"weight\";i:0;}}s:4:\"name\";s:6:\"medium\";s:6:\"module\";s:5:\"image\";s:7:\"storage\";i:4;}s:5:\"large\";a:6:{s:4:\"isid\";s:1:\"5\";s:4:\"name\";s:5:\"large\";s:5:\"label\";s:15:\"Large (800x600)\";s:6:\"module\";s:5:\"image\";s:7:\"storage\";i:2;s:7:\"effects\";a:1:{i:4;a:12:{s:5:\"label\";s:5:\"Scala\";s:4:\"help\";s:169:\"La trasformazione in scala mantiene il rapporto delle dimensioni dell\'immagine originale. Se viene impostata una sola dimensione, l\'altra sarà calcolata di conseguenza.\";s:15:\"effect callback\";s:18:\"image_scale_effect\";s:19:\"dimensions callback\";s:22:\"image_scale_dimensions\";s:13:\"form callback\";s:16:\"image_scale_form\";s:13:\"summary theme\";s:19:\"image_scale_summary\";s:6:\"module\";s:5:\"image\";s:4:\"name\";s:11:\"image_scale\";s:4:\"data\";a:3:{s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"600\";s:7:\"upscale\";i:0;}s:4:\"ieid\";s:1:\"4\";s:4:\"isid\";s:1:\"5\";s:6:\"weight\";s:1:\"0\";}}}s:13:\"photo_gallery\";a:6:{s:4:\"isid\";s:1:\"1\";s:4:\"name\";s:13:\"photo_gallery\";s:5:\"label\";s:13:\"Photo Gallery\";s:6:\"module\";N;s:7:\"storage\";i:1;s:7:\"effects\";a:1:{i:1;a:12:{s:5:\"label\";s:12:\"Ridimensiona\";s:4:\"help\";s:163:\"Il ridimensionamento forza le dimensioni dell\'immagine secondo i valori impostati. Questo può causare restringimento o allungamento sproporzionato delle immagini.\";s:15:\"effect callback\";s:19:\"image_resize_effect\";s:19:\"dimensions callback\";s:23:\"image_resize_dimensions\";s:13:\"form callback\";s:17:\"image_resize_form\";s:13:\"summary theme\";s:20:\"image_resize_summary\";s:6:\"module\";s:5:\"image\";s:4:\"name\";s:12:\"image_resize\";s:4:\"data\";a:2:{s:5:\"width\";s:3:\"120\";s:6:\"height\";s:3:\"260\";}s:4:\"ieid\";s:1:\"1\";s:4:\"isid\";s:1:\"1\";s:6:\"weight\";s:1:\"1\";}}}}',0,1538757252,1),('locale:it','a:2:{s:0:\"\";a:1365:{s:12:\"(active tab)\";s:15:\"(scheda attiva)\";s:9:\"Configure\";s:9:\"Configura\";s:14:\"Hide shortcuts\";s:20:\"Nascondi scorciatoie\";s:4:\"Home\";s:4:\"Home\";s:14:\"User interface\";s:18:\"Interfaccia utente\";s:5:\"Title\";s:6:\"Titolo\";s:4:\"Body\";s:5:\"Corpo\";s:5:\"Pages\";s:6:\"Pagine\";s:18:\"Save configuration\";s:20:\"Salva configurazione\";s:6:\"Status\";s:5:\"Stato\";s:6:\"E-mail\";s:6:\"E-mail\";s:6:\"Delete\";s:7:\"Elimina\";s:7:\"Content\";s:9:\"Contenuto\";s:8:\"Username\";s:11:\"Nome utente\";s:13:\"Email address\";s:16:\"Indirizzo e-mail\";s:11:\"Development\";s:8:\"Sviluppo\";s:5:\"Group\";s:6:\"Gruppo\";s:4:\"Type\";s:4:\"Tipo\";s:6:\"Author\";s:6:\"Autore\";s:4:\"List\";s:6:\"Elenco\";s:7:\"Subject\";s:7:\"Oggetto\";s:7:\"Actions\";s:6:\"Azioni\";s:11:\"Description\";s:11:\"Descrizione\";s:8:\"Language\";s:6:\"Lingua\";s:8:\"RSS feed\";s:8:\"Feed RSS\";s:8:\"Disabled\";s:11:\"Disattivato\";s:7:\"Enabled\";s:8:\"Attivato\";s:14:\"Administration\";s:15:\"Amministrazione\";s:8:\"Comments\";s:8:\"Commenti\";s:12:\"not verified\";s:14:\"non verificato\";s:8:\"Taxonomy\";s:10:\"Tassonomia\";s:13:\"Content types\";s:17:\"Tipi di contenuto\";s:9:\"Home page\";s:9:\"Home page\";s:7:\"Version\";s:8:\"Versione\";s:4:\"File\";s:4:\"File\";s:4:\"Edit\";s:8:\"Modifica\";s:4:\"Size\";s:10:\"Dimensione\";s:5:\"Reset\";s:10:\"Ripristina\";s:4:\"None\";s:7:\"Nessuno\";s:8:\"Password\";s:8:\"Password\";s:6:\"Weight\";s:4:\"Peso\";s:42:\"The configuration options have been saved.\";s:48:\"Le opzioni di configurazione sono state salvate.\";s:4:\"Link\";s:4:\"Link\";s:5:\"Image\";s:8:\"Immagine\";s:9:\"Help text\";s:14:\"Testo di aiuto\";s:6:\"Parent\";s:8:\"Genitore\";s:8:\"Category\";s:9:\"Categoria\";s:4:\"Name\";s:4:\"Nome\";s:19:\"Go to previous page\";s:26:\"Vai alla pagina precedente\";s:15:\"Go to next page\";s:26:\"Vai alla pagina successiva\";s:13:\"Taxonomy term\";s:24:\"Termine della tassonomia\";s:5:\"Field\";s:5:\"Campo\";s:5:\"Label\";s:9:\"Etichetta\";s:4:\"Help\";s:5:\"Aiuto\";s:7:\"Default\";s:11:\"Predefinito\";s:7:\"Summary\";s:8:\"Sommario\";s:6:\"Sunday\";s:8:\"Domenica\";s:6:\"Monday\";s:7:\"Lunedì\";s:7:\"Tuesday\";s:8:\"Martedì\";s:9:\"Wednesday\";s:10:\"Mercoledì\";s:8:\"Thursday\";s:8:\"Giovedì\";s:6:\"Friday\";s:8:\"Venerdì\";s:8:\"Saturday\";s:6:\"Sabato\";s:4:\"Core\";s:4:\"Core\";s:4:\"View\";s:10:\"Visualizza\";s:7:\"History\";s:10:\"Cronologia\";s:3:\"URL\";s:3:\"URL\";s:4:\"Path\";s:8:\"Percorso\";s:7:\"Modules\";s:6:\"Moduli\";s:4:\"Menu\";s:4:\"Menu\";s:6:\"Teaser\";s:9:\"Anteprima\";s:4:\"Text\";s:5:\"Testo\";s:9:\"Timestamp\";s:9:\"Timestamp\";s:7:\"Unknown\";s:11:\"Sconosciuto\";s:10:\"Attachment\";s:8:\"Allegato\";s:7:\"Picture\";s:8:\"Ritratto\";s:4:\"User\";s:6:\"Utente\";s:12:\"Content type\";s:17:\"Tipo di contenuto\";s:5:\"Email\";s:6:\"E-mail\";s:5:\"Files\";s:4:\"File\";s:7:\"User ID\";s:9:\"ID utente\";s:5:\"Error\";s:6:\"Errore\";s:7:\"Options\";s:7:\"Opzioni\";s:7:\"Contact\";s:8:\"Contatto\";s:7:\"Created\";s:6:\"Creato\";s:4:\"Node\";s:4:\"Nodo\";s:6:\"Active\";s:6:\"Attivo\";s:11:\"Date format\";s:12:\"Formato data\";s:11:\"Add content\";s:18:\"Aggiungi contenuto\";s:5:\"Block\";s:6:\"Blocco\";s:4:\"Page\";s:6:\"Pagina\";s:3:\"RSS\";s:3:\"RSS\";s:6:\"1 hour\";s:5:\"1 ora\";s:14:\"Taxonomy terms\";s:21:\"Termini di tassonomia\";s:9:\"Site name\";s:13:\"Nome del sito\";s:11:\"Site slogan\";s:15:\"Slogan del sito\";s:6:\"Drupal\";s:6:\"Drupal\";s:3:\"PHP\";s:3:\"PHP\";s:10:\"Up to date\";s:10:\"Aggiornato\";s:25:\"Drupal core update status\";s:44:\"Stato degli aggiornamenti del core di Drupal\";s:11:\"Out of date\";s:14:\"Non aggiornato\";s:6:\"Header\";s:12:\"Intestazione\";s:6:\"Footer\";s:14:\"Piè di pagina\";s:9:\"Menu link\";s:13:\"Voce del menu\";s:16:\"Feed description\";s:20:\"Descrizione del feed\";s:5:\"Roles\";s:5:\"Ruoli\";s:11:\"Revision ID\";s:12:\"ID revisione\";s:7:\"Comment\";s:8:\"Commento\";s:10:\"Comment ID\";s:11:\"ID commento\";s:8:\"Hostname\";s:9:\"Nome host\";s:9:\"Published\";s:10:\"Pubblicato\";s:9:\"Signature\";s:5:\"Firma\";s:8:\"Location\";s:9:\"Posizione\";s:22:\"Promoted to front page\";s:26:\"Promosso alla prima pagina\";s:7:\"File ID\";s:7:\"ID file\";s:9:\"File name\";s:13:\"Nome del file\";s:9:\"File size\";s:15:\"Dimensione file\";s:10:\"Vocabulary\";s:11:\"Vocabolario\";s:13:\"Vocabulary ID\";s:14:\"ID vocabolario\";s:7:\"Term ID\";s:10:\"ID Termine\";s:11:\"Last access\";s:14:\"Ultimo accesso\";s:10:\"Last login\";s:12:\"Ultimo login\";s:10:\"Overridden\";s:19:\"Variato manualmente\";s:5:\"Nodes\";s:4:\"Nodi\";s:11:\"Performance\";s:11:\"Prestazioni\";s:23:\"This field is required.\";s:29:\"Questo campo è obbligatorio.\";s:5:\"Scale\";s:5:\"Scala\";s:6:\"Medium\";s:5:\"Medio\";s:5:\"Media\";s:5:\"Media\";s:10:\"Plain text\";s:14:\"Testo semplice\";s:6:\"System\";s:7:\"Sistema\";s:5:\"Owner\";s:6:\"Autore\";s:4:\"node\";s:4:\"nodo\";s:5:\"Table\";s:7:\"Tabella\";s:3:\"Mon\";s:3:\"Lun\";s:3:\"Tue\";s:3:\"Mar\";s:3:\"Wed\";s:3:\"Mer\";s:3:\"Thu\";s:3:\"Gio\";s:3:\"Sat\";s:3:\"Sab\";s:3:\"Sun\";s:3:\"Dom\";s:13:\"Configuration\";s:14:\"Configurazione\";s:10:\"Navigation\";s:11:\"Navigazione\";s:5:\"Basic\";s:7:\"Di base\";s:10:\"Appearance\";s:7:\"Aspetto\";s:4:\"Role\";s:5:\"Ruolo\";s:10:\"User login\";s:14:\"Accesso utente\";s:6:\"Log in\";s:6:\"Accedi\";s:5:\"Users\";s:6:\"Utenti\";s:22:\"Minimum cache lifetime\";s:19:\"Durata minima cache\";s:18:\"Default front page\";s:24:\"Prima pagina predefinita\";s:9:\"Anonymous\";s:7:\"Anonimo\";s:15:\"Recent comments\";s:16:\"Commenti recenti\";s:7:\"Integer\";s:6:\"Intero\";s:10:\"IP Address\";s:12:\"Indirizzo IP\";s:16:\"Term description\";s:23:\"Descrizione del termine\";s:3:\"Key\";s:6:\"Chiave\";s:7:\"English\";s:7:\"Inglese\";s:7:\"Italian\";s:8:\"Italiano\";s:4:\"menu\";s:4:\"menu\";s:12:\"‹ previous\";s:14:\"‹ precedente\";s:8:\"next ›\";s:12:\"seguente ›\";s:18:\"View user profile.\";s:34:\"Visualizza il profilo dell\'utente.\";s:11:\"Titles only\";s:11:\"Solo titoli\";s:9:\"Full text\";s:14:\"Testo completo\";s:20:\"Request new password\";s:23:\"Richiedi nuova password\";s:9:\"Languages\";s:6:\"Lingue\";s:9:\"Edit menu\";s:14:\"Modifica menù\";s:15:\"Configure block\";s:16:\"Configura blocco\";s:11:\"Select list\";s:19:\"Elenco di selezione\";s:10:\"Text field\";s:14:\"Campo di testo\";s:4:\"Long\";s:5:\"Lungo\";s:5:\"Short\";s:5:\"Corto\";s:8:\"Workflow\";s:8:\"Workflow\";s:7:\"Log out\";s:4:\"Esci\";s:17:\"First day of week\";s:28:\"Primo giorno della settimana\";s:6:\"People\";s:7:\"Persone\";s:18:\"Last run !time ago\";s:27:\"Ultima esecuzione: !time fa\";s:16:\"Site information\";s:21:\"Informazioni sul sito\";s:7:\"Blocked\";s:8:\"Bloccato\";s:11:\"Parent term\";s:13:\"Termine padre\";s:12:\"Parent terms\";s:13:\"Termini padre\";s:9:\"Syndicate\";s:20:\"Scambia informazioni\";s:6:\"Forums\";s:5:\"Forum\";s:11:\"Permissions\";s:8:\"Permessi\";s:4:\"Cron\";s:4:\"Cron\";s:12:\"Date created\";s:17:\"Data di creazione\";s:13:\"Not published\";s:14:\"Non pubblicato\";s:11:\"Unformatted\";s:14:\"Non formattato\";s:12:\"New comments\";s:14:\"Nuovi commenti\";s:41:\"Manage the actions defined for your site.\";s:44:\"Gestisci le azioni definite per il tuo sito.\";s:9:\"Protected\";s:8:\"Protetto\";s:12:\"You are here\";s:10:\"Tu sei qui\";s:15:\"Default options\";s:19:\"Opzioni predefinite\";s:9:\"Shortcuts\";s:11:\"Scorciatoie\";s:13:\"Default value\";s:18:\"Valore predefinito\";s:8:\"Timezone\";s:11:\"Fuso orario\";s:6:\"Slogan\";s:6:\"Slogan\";s:42:\"The name used to indicate anonymous users.\";s:50:\"Il nome utilizzato per indicare gli utenti anonimi\";s:16:\"Go to first page\";s:21:\"Vai alla prima pagina\";s:15:\"Go to last page\";s:21:\"Vai all\'ultima pagina\";s:18:\"Go to page @number\";s:20:\"Vai a pagina @number\";s:5:\"Tasks\";s:10:\"Operazioni\";s:6:\"Blocks\";s:7:\"Blocchi\";s:5:\"Menus\";s:5:\"Menù\";s:17:\"Default time zone\";s:23:\"Fuso orario predefinito\";s:7:\"Trimmed\";s:10:\"Abbreviato\";s:7:\"Decimal\";s:8:\"Decimale\";s:5:\"Float\";s:14:\"Virgola mobile\";s:25:\"Check boxes/radio buttons\";s:27:\"Caselle/pulsanti di opzione\";s:22:\"Single on/off checkbox\";s:22:\"Casella on/off singola\";s:25:\"Text area (multiple rows)\";s:30:\"Area di testo (righe multiple)\";s:5:\"Index\";s:6:\"Indice\";s:10:\"Permission\";s:8:\"Permesso\";s:16:\"!title !required\";s:16:\"!title !required\";s:19:\"Date - newest first\";s:25:\"Data - prima i più nuovi\";s:19:\"Date - oldest first\";s:26:\"Data - prima i più vecchi\";s:19:\"Hot topic threshold\";s:31:\"Soglia degli argomenti \'caldi\'.\";s:15:\"Topics per page\";s:20:\"Argomenti per pagina\";s:25:\"Posts - most active first\";s:31:\"Contenuti - prima i più attivi\";s:26:\"Posts - least active first\";s:31:\"Contenuti - prima i meno attivi\";s:16:\"New forum topics\";s:25:\"Nuovi argomenti del forum\";s:14:\"Page not found\";s:18:\"Pagina non trovata\";s:8:\"« first\";s:8:\"« prima\";s:7:\"last »\";s:9:\"ultima »\";s:6:\"Resize\";s:12:\"Ridimensiona\";s:19:\"Rebuild permissions\";s:23:\"Ricostruisci i permessi\";s:16:\"Account settings\";s:20:\"Impostazioni profilo\";s:10:\"Clean URLs\";s:16:\"URL semplificati\";s:10:\"My account\";s:14:\"Profilo utente\";s:19:\"Active forum topics\";s:26:\"Argomenti del forum attivi\";s:19:\"Taxonomy vocabulary\";s:28:\"Vocabolario della tassonomia\";s:10:\"@count min\";s:10:\"@count min\";s:8:\"Featured\";s:11:\"In evidenza\";s:12:\"Machine name\";s:19:\"Nome ad uso interno\";s:11:\"Not secure!\";s:11:\"Non sicuro!\";s:28:\"(version @version available)\";s:31:\"(versione @version disponibile)\";s:10:\"Node count\";s:18:\"Conteggio dei nodi\";s:20:\"Skip to main content\";s:29:\"Salta al contenuto principale\";s:13:\"Default order\";s:18:\"Ordine predefinito\";s:17:\"Hide descriptions\";s:23:\"Nascondi le descrizioni\";s:39:\"Compress layout by hiding descriptions.\";s:46:\"Comprimi il layout nascondendo le descrizioni.\";s:7:\"Reports\";s:9:\"Resoconti\";s:15:\"Default picture\";s:20:\"Ritratto predefinito\";s:18:\"Configuration file\";s:22:\"File di configurazione\";s:13:\"Default theme\";s:16:\"Tema predefinito\";s:10:\"Web server\";s:10:\"Server web\";s:10:\"Auto-reply\";s:19:\"Risposta automatica\";s:9:\"Translate\";s:7:\"Traduci\";s:4:\"Crop\";s:8:\"Ritaglia\";s:11:\"Not enabled\";s:13:\"Non abilitato\";s:12:\"Web services\";s:11:\"Web service\";s:13:\"Error message\";s:19:\"Messaggio di errore\";s:12:\"User account\";s:14:\"Profilo utente\";s:15:\"Warning message\";s:25:\"Messaggio di avvertimento\";s:12:\"Primary tabs\";s:15:\"Schede primarie\";s:7:\"Boolean\";s:8:\"Booleano\";s:13:\"First sidebar\";s:20:\"Prima barra laterale\";s:10:\"List links\";s:23:\"Elenca le voci del menu\";s:9:\"MIME type\";s:9:\"Tipo MIME\";s:11:\"File system\";s:11:\"File system\";s:23:\"Enter your @s username.\";s:32:\"Inserisci il tuo nome utente @s.\";s:9:\"Dashboard\";s:9:\"Dashboard\";s:21:\"The size of the file.\";s:23:\"La dimensione del file.\";s:26:\"The MIME type of the file.\";s:22:\"Il tipo MIME del file.\";s:19:\"Translate interface\";s:19:\"Traduci interfaccia\";s:14:\"PHP extensions\";s:14:\"Estensioni PHP\";s:20:\"Multilingual support\";s:20:\"Supporto multilingue\";s:25:\"Enabled, with translation\";s:29:\"Abilitato, traduzione inclusa\";s:68:\"The website encountered an unexpected error. Please try again later.\";s:64:\"Si è verificato un errore inatteso. Riprova più tardi, grazie.\";s:9:\"Main menu\";s:15:\"Menu principale\";s:26:\"Username or e-mail address\";s:30:\"Nome utente o indirizzo e-mail\";s:25:\"The title of the comment.\";s:23:\"Il titolo del commento.\";s:13:\"Comment count\";s:15:\"Numero commenti\";s:22:\"The title of the node.\";s:19:\"Il titolo del nodo.\";s:29:\"The date the node was posted.\";s:41:\"La data in cui il nodo è stato inserito.\";s:9:\"Who\'s new\";s:12:\"Nuovi utenti\";s:20:\"Update notifications\";s:26:\"Notifiche di aggiornamento\";s:12:\"Standard PHP\";s:12:\"PHP standard\";s:22:\"PHP Mbstring Extension\";s:27:\"Estensione Mbstring per PHP\";s:15:\"Unicode library\";s:16:\"Libreria Unicode\";s:12:\"Compose tips\";s:32:\"Suggerimenti per la composizione\";s:50:\"Default number of forum topics displayed per page.\";s:65:\"Numero di default di argomenti del forum visualizzati per pagina.\";s:33:\"Default display order for topics.\";s:55:\"Ordine di visualizzazione predefinito per gli argomenti\";s:11:\"Forum topic\";s:34:\"Argomento di discussione del forum\";s:55:\"Configure languages for content and the user interface.\";s:59:\"Configura le lingue per i contenuti e l\'interfaccia utente.\";s:59:\"Translate the built in interface and optionally other text.\";s:61:\"Traduci l\'interfaccia integrata ed opzionalmente altri testi.\";s:11:\"URL aliases\";s:9:\"Alias URL\";s:46:\"Change your site\'s URL paths by aliasing them.\";s:57:\"Cambia i percorsi URL del tuo sito definendo degli alias.\";s:13:\"PHP evaluator\";s:16:\"Analizzatore PHP\";s:32:\"Default 403 (access denied) page\";s:39:\"Pagina 403 predefinita (accesso negato)\";s:28:\"Default 404 (not found) page\";s:36:\"Pagina 404 predefinita (non trovato)\";s:28:\"Number of items in each feed\";s:34:\"Numero di elementi in ciascun feed\";s:48:\"Default number of items to include in each feed.\";s:56:\"Numero predefinito di voci da includere in ciascun feed.\";s:12:\"Feed content\";s:18:\"Contenuto del feed\";s:18:\"Titles plus teaser\";s:18:\"Titoli e anteprime\";s:69:\"Global setting for the default display of content items in each feed.\";s:96:\"Impostazione globale per la visualizzazione predefinita degli oggetti contenuti in ciascun feed.\";s:17:\"Powered by Drupal\";s:21:\"Realizzato con Drupal\";s:68:\"Tell Drupal where to store uploaded files and how they are accessed.\";s:89:\"Comunica a Drupal la locazione dove salvare i file caricati e come consentirne l\'accesso.\";s:13:\"Image toolkit\";s:23:\"Toolkit per le immagini\";s:74:\"Choose which image toolkit to use if you have installed optional toolkits.\";s:76:\"Scegli quale toolkit per immagini usare se hai installato toolkit opzionali.\";s:14:\"RSS publishing\";s:17:\"Pubblicazione RSS\";s:13:\"Date and time\";s:10:\"Data e ora\";s:43:\"Enable or disable clean URLs for your site.\";s:49:\"Attiva o disattiva gli URL semplificati sul sito.\";s:20:\"PHP register globals\";s:20:\"PHP register globals\";s:16:\"PHP memory limit\";s:24:\"Limite della memoria PHP\";s:22:\"Cron maintenance tasks\";s:33:\"Processo di manutenzione del cron\";s:46:\"You can <a href=\"@cron\">run cron manually</a>.\";s:51:\"Puoi <a href=\"@cron\">eseguire cron manualmente</a>.\";s:42:\"Writable (<em>public</em> download method)\";s:52:\"Scrivibile (modalità di download <em>pubblica</em>)\";s:16:\"Database updates\";s:26:\"Aggiornamenti del database\";s:20:\"Access to update.php\";s:20:\"Accesso a update.php\";s:19:\"Content translation\";s:24:\"Traduzione dei contenuti\";s:30:\"Module and theme update status\";s:36:\"Stato aggiornamento di moduli e temi\";s:38:\"Notify user when account is activated.\";s:53:\"Avvisa l\'utente quando il suo profilo viene attivato.\";s:36:\"Notify user when account is blocked.\";s:50:\"Avvisa l\'utente quando il suo profilo è bloccato.\";s:18:\"Picture guidelines\";s:27:\"Linee guida per il ritratto\";s:19:\"E-mail new password\";s:35:\"Invia una nuova password via e-mail\";s:12:\"Who\'s online\";s:14:\"Utenti on-line\";s:50:\"Enter the password that accompanies your username.\";s:51:\"Inserisci la password associata al tuo nome utente.\";s:11:\"URL to file\";s:12:\"URL del file\";s:15:\"Upload progress\";s:27:\"Avanzamento del caricamento\";s:11:\"Text format\";s:17:\"Formato del testo\";s:21:\"The name of the site.\";s:17:\"Il nome del sito.\";s:17:\"Regional settings\";s:27:\"Impostazioni internazionali\";s:6:\"Rotate\";s:5:\"Ruota\";s:8:\"Page top\";s:13:\"Inizio pagina\";s:11:\"Page bottom\";s:12:\"Fondo pagina\";s:32:\"Hello <strong>@username</strong>\";s:31:\"Ciao <strong>@username</strong>\";s:13:\"Sidebar first\";s:20:\"Prima barra laterale\";s:9:\"Structure\";s:9:\"Struttura\";s:14:\"Secondary menu\";s:15:\"Menu secondario\";s:29:\"The unique ID of the comment.\";s:26:\"L\'ID univoco del commento.\";s:59:\"The IP address of the computer the comment was posted from.\";s:65:\"L\'indirizzo IP del computer da cui il commento è stato inserito.\";s:36:\"The name left by the comment author.\";s:42:\"Il nome lasciato dall\'autore del commento.\";s:45:\"The email address left by the comment author.\";s:53:\"L\'indirizzo e-mail lasciato dall\'autore del commento.\";s:45:\"The home page URL left by the comment author.\";s:56:\"L\'URL della home page lasciato dall\'autore del commento.\";s:23:\"The URL of the comment.\";s:19:\"L\'URL del commento.\";s:8:\"Edit URL\";s:12:\"Modifica URL\";s:35:\"The URL of the comment\'s edit page.\";s:44:\"L\'URL della pagina di modifica del commento.\";s:32:\"The date the comment was posted.\";s:52:\"La data nella quale il commento è stato pubblicato.\";s:53:\"The comment\'s parent, if comment threading is active.\";s:90:\"Il genitore di questo commento, se il raggruppamento per argomenti dei commenti è attivo.\";s:35:\"The node the comment was posted to.\";s:19:\"Il nodo commentato.\";s:40:\"The number of comments posted on a node.\";s:42:\"Il numero di commenti inseriti in un nodo.\";s:17:\"New comment count\";s:25:\"Nuovo totale dei commenti\";s:72:\"The number of comments posted on a node since the reader last viewed it.\";s:81:\"Il numero di commenti inseriti in un nodo dall\'ultima visita di chi sta leggendo.\";s:21:\"The type of the node.\";s:22:\"Il tipo del contenuto.\";s:36:\"The language the node is written in.\";s:46:\"La lingua nella quale è scritto il contenuto.\";s:20:\"The URL of the node.\";s:20:\"L\'URL del contenuto.\";s:32:\"The URL of the node\'s edit page.\";s:40:\"L\'URL della pagina di modifica del nodo.\";s:12:\"Date changed\";s:13:\"Data cambiata\";s:44:\"The date the node was most recently updated.\";s:61:\"La data più recente nella quale il nodo è stato aggiornato.\";s:23:\"The author of the node.\";s:18:\"L\'autore del nodo.\";s:23:\"The slogan of the site.\";s:19:\"Lo slogan del sito.\";s:46:\"The administrative email address for the site.\";s:46:\"L\'indirizzo e-mail amministrativo per il sito.\";s:33:\"The URL of the site\'s front page.\";s:34:\"L\'URL della prima pagina del sito.\";s:10:\"Login page\";s:17:\"Pagina di accesso\";s:33:\"The URL of the site\'s login page.\";s:39:\"L\'URL della pagina di accesso del sito.\";s:35:\"The unique ID of the uploaded file.\";s:30:\"L\'ID univoco del file caricato\";s:29:\"The name of the file on disk.\";s:27:\"Il nome del file sul disco.\";s:36:\"The web-accessible URL for the file.\";s:35:\"L\'URL del file accessibile dal web.\";s:44:\"The date the file was most recently changed.\";s:36:\"La data di ultima modifica del file.\";s:42:\"The user who originally uploaded the file.\";s:43:\"L\'utente che ha caricato il file originale.\";s:35:\"The unique ID of the taxonomy term.\";s:54:\"L\'identificativo univoco del termine della tassonomia.\";s:30:\"The name of the taxonomy term.\";s:37:\"Il nome del termine della tassonomia.\";s:46:\"The optional description of the taxonomy term.\";s:54:\"La descrizione opzionale dei termini della tassonomia.\";s:50:\"The number of nodes tagged with the taxonomy term.\";s:55:\"Il numero di nodi taggati con il termine di tassonomia.\";s:29:\"The URL of the taxonomy term.\";s:32:\"L\'URL del termine di tassonomia.\";s:44:\"The vocabulary the taxonomy term belongs to.\";s:55:\"Il vocabolario cui il termine di tassonomia appartiene.\";s:41:\"The unique ID of the taxonomy vocabulary.\";s:58:\"L\'identificativo univoco del vocabolario della tassonomia.\";s:36:\"The name of the taxonomy vocabulary.\";s:41:\"Il nome del vocabolario della tassonomia.\";s:52:\"The optional description of the taxonomy vocabulary.\";s:58:\"La descrizione opzionale del vocabolario della tassonomia.\";s:10:\"Term count\";s:17:\"Conteggio termini\";s:57:\"The number of terms belonging to the taxonomy vocabulary.\";s:64:\"Il numero dei termini appartenenti al vocabolario di tassonomia.\";s:34:\"The unique ID of the user account.\";s:32:\"L\'ID univoco del profilo utente.\";s:35:\"The login name of the user account.\";s:41:\"Il nome di accesso per il profilo utente.\";s:38:\"The email address of the user account.\";s:45:\"L\'indirizzo email abbinato al profilo utente.\";s:36:\"The URL of the account profile page.\";s:38:\"L\'URL della pagina del profilo utente.\";s:45:\"The date the user last logged in to the site.\";s:57:\"La data dell\'ultimo accesso al sito da parte dell\'utente.\";s:38:\"The date the user account was created.\";s:40:\"La data di creazione del profilo utente.\";s:17:\"Main page content\";s:33:\"Contenuto della pagina principale\";s:15:\"Default country\";s:17:\"Paese predefinito\";s:22:\"Site under maintenance\";s:20:\"Sito in manutenzione\";s:60:\"Operating in maintenance mode. <a href=\"@url\">Go online.</a>\";s:50:\"In manutenzione. <a href=\"@url\">Passa on-line.</a>\";s:14:\"Status message\";s:18:\"Messaggio di stato\";s:17:\"Pages or PHP code\";s:19:\"Pagine o codice PHP\";s:12:\"Cache blocks\";s:17:\"Cache dei blocchi\";s:12:\"Full comment\";s:17:\"Commento completo\";s:19:\"Default SQL storage\";s:29:\"Archiviazione SQL predefinita\";s:64:\"Stores fields in the local SQL database, using per-field tables.\";s:78:\"Memorizza i campi nel database SQL locale usando tabelle specifiche per campo.\";s:50:\"This field stores simple on/off or yes/no options.\";s:55:\"Questo campo gestisce semplici opzioni on/off o sì/no.\";s:11:\"List (text)\";s:14:\"Elenco (testo)\";s:57:\"This field stores a number in the database as an integer.\";s:54:\"Questo campo salva un numero nel database come intero.\";s:69:\"This field stores a number in the database in a fixed decimal format.\";s:75:\"Questo campo salva un numero nel database come un decimale a virgola fissa.\";s:70:\"This field stores a number in the database in a floating point format.\";s:76:\"Questo campo salva un numero nel database come un decimale a virgola mobile.\";s:47:\"This field stores varchar text in the database.\";s:60:\"Questo campo immagazzina nel database testo di tipo varchar.\";s:9:\"Long text\";s:10:\"Testo long\";s:44:\"This field stores long text in the database.\";s:57:\"Questo campo immagazzina nel database testo di tipo long.\";s:21:\"Long text and summary\";s:23:\"Testo lungo e riassunto\";s:18:\"Summary or trimmed\";s:20:\"Riassunto o troncato\";s:24:\"Text area with a summary\";s:27:\"Area di testo con riassunto\";s:55:\"This field stores the ID of a file as an integer value.\";s:67:\"Questo campo contiene l\'ID di un file sotto forma di valore intero.\";s:12:\"Generic file\";s:13:\"File generico\";s:14:\"Table of files\";s:16:\"Tabella dei file\";s:12:\"Text formats\";s:17:\"Formati del testo\";s:23:\"Limit allowed HTML tags\";s:28:\"Limita i tag HTML consentiti\";s:23:\"Convert URLs into links\";s:32:\"Converti gli URL in collegamenti\";s:35:\"Correct faulty and chopped off HTML\";s:43:\"Correggi codice HTML scorretto o incompleto\";s:30:\"Display any HTML as plain text\";s:43:\"Visualizza tutto l\'HTML come testo semplice\";s:63:\"The number of replies a topic must have to be considered \"hot\".\";s:81:\"Il numero di risposte che deve avere un argomento per essere considerato \"caldo\".\";s:69:\"A <em>forum topic</em> starts a new discussion thread within a forum.\";s:78:\"Un <em>nuovo argomento</em> avvia una nuova discussione all\'interno del forum.\";s:27:\"Forum navigation vocabulary\";s:40:\"Vocabolario per la navigazione del forum\";s:14:\"Scale and crop\";s:16:\"Scala e ritaglia\";s:10:\"Desaturate\";s:8:\"Desatura\";s:42:\"Desaturate converts an image to grayscale.\";s:47:\"Desatura converte un\'immagine in scala di grigi\";s:62:\"This field stores the ID of an image file as an integer value.\";s:67:\"Questo campo memorizza l\'ID di un file immagine come valore intero.\";s:20:\"Generate image style\";s:31:\"Genera lo stile per le immagini\";s:12:\"Image styles\";s:21:\"Stili per le immagini\";s:25:\"Language switcher (@type)\";s:30:\"Selettore della lingua (@type)\";s:13:\"No Main links\";s:22:\"Nessun link Principale\";s:25:\"Source for the Main links\";s:27:\"Origine dei link Principali\";s:18:\"No Secondary links\";s:30:\"Nessun collegamento Secondario\";s:30:\"Source for the Secondary links\";s:26:\"Origine dei link Secondari\";s:25:\"Preview before submitting\";s:53:\"Visualizza un\'anteprima prima di salvare il contenuto\";s:36:\"Display author and date information.\";s:37:\"Mostra informazioni su autore e data.\";s:51:\"Author username and publish date will be displayed.\";s:76:\"Verranno visualizzati il nome utente dell\'autore e la data di pubblicazione.\";s:20:\"Revision log message\";s:33:\"Messaggio di revisione per il log\";s:12:\"Full content\";s:18:\"Contenuto completo\";s:14:\"Recent content\";s:17:\"Contenuti recenti\";s:23:\"Node Access Permissions\";s:27:\"Permessi di accesso ai nodi\";s:25:\"@count permissions in use\";s:22:\"@count permessi in uso\";s:30:\"Add to %shortcut_set shortcuts\";s:44:\"Aggiungi al set di scorciatoie %shortcut_set\";s:14:\"Edit shortcuts\";s:20:\"Modifica scorciatoie\";s:22:\"Compress cached pages.\";s:39:\"Comprimi le pagine incluse nella cache.\";s:48:\"Description of your site, included in each feed.\";s:47:\"Descrizione del tuo sito, inclusa in ogni feed.\";s:34:\"Users may set their own time zone.\";s:52:\"Gli utenti possono impostare il proprio fuso orario.\";s:52:\"Remind users at login if their time zone is not set.\";s:81:\"Ricorda agli utenti al momento del login se il loro fuso orario non è impostato.\";s:50:\"Only applied if users may set their own time zone.\";s:72:\"Applicabile solo se gli utenti possono impostare il proprio fuso orario.\";s:23:\"Time zone for new users\";s:30:\"Fuso orario per i nuovi utenti\";s:18:\"Default time zone.\";s:24:\"Fuso orario predefinito.\";s:16:\"Empty time zone.\";s:18:\"Fuso orario vuoto.\";s:50:\"Users may set their own time zone at registration.\";s:83:\"Gli utenti possono impostare il proprio fuso orario al momento della registrazione.\";s:30:\"Put site into maintenance mode\";s:29:\"Metti il sito in manutenzione\";s:24:\"Maintenance mode message\";s:45:\"Messaggio della modalità «In manutenzione»\";s:62:\"Message to show visitors when the site is in maintenance mode.\";s:70:\"Messaggio da mostrare ai visitatori quando il sito è in manutenzione.\";s:12:\"Public files\";s:13:\"File pubblici\";s:43:\"Public local files served by the webserver.\";s:43:\"File pubblici locali gestiti dal webserver.\";s:15:\"Temporary files\";s:15:\"File temporanei\";s:46:\"Temporary local files for upload and previews.\";s:57:\"File locali temporanei per il caricamento e le anteprime.\";s:11:\"System help\";s:16:\"Aiuto di sistema\";s:45:\"Administer blocks, content types, menus, etc.\";s:55:\"Amministra i blocchi, i tipi di contenuto, i menu, ecc.\";s:19:\"IP address blocking\";s:25:\"Blocco degli indirizzi IP\";s:28:\"Manage blocked IP addresses.\";s:35:\"Gestisci gli indirizzi IP bloccati.\";s:12:\"Media tools.\";s:23:\"Strumenti multimediali.\";s:30:\"Tools related to web services.\";s:32:\"Strumenti legati ai web service.\";s:18:\"Development tools.\";s:22:\"Strumenti di sviluppo.\";s:16:\"Maintenance mode\";s:25:\"Modalità di manutenzione\";s:62:\"Take the site offline for maintenance or bring it back online.\";s:61:\"Mette il sito off-line per manutenzione o lo riporta on-line.\";s:18:\"Logging and errors\";s:31:\"Registro degli eventi ed errori\";s:21:\"Regional and language\";s:36:\"Impostazioni internazionali e lingue\";s:48:\"Regional settings, localization and translation.\";s:57:\"Impostazioni internazionali, localizzazione e traduzione.\";s:54:\"Settings for the site\'s default time zone and country.\";s:62:\"Impostazioni sul fuso orario e sul paese predefiniti del sito.\";s:44:\"Configure display formats for date and time.\";s:55:\"Configura i formati di visualizzazione di date e orari.\";s:19:\"Search and metadata\";s:18:\"Ricerca e metadati\";s:36:\"Local site search, metadata and SEO.\";s:40:\"Ricerca locale nel sito, metadati e SEO.\";s:37:\"General system related configuration.\";s:33:\"Impostazioni generali di sistema.\";s:38:\"Tools that enhance the user interface.\";s:46:\"Strumenti che migliorano l\'interfaccia utente.\";s:43:\"Content workflow, editorial workflow tools.\";s:114:\"Flusso di lavoro per i contenuti, strumenti per  la gestione dei flussi editoriali di pubblicazione dei contenuti.\";s:17:\"Content authoring\";s:25:\"Inserimento dei contenuti\";s:53:\"Settings related to formatting and authoring content.\";s:64:\"Impostazioni per la formattazione e l\'inserimento dei contenuti.\";s:16:\"more information\";s:22:\"ulteriori informazioni\";s:66:\"To run cron from outside the site, go to <a href=\"!cron\">!cron</a>\";s:72:\"Per eseguire cron al di fuori del sito, visita <a href=\"!cron\">!cron</a>\";s:18:\"Taxonomy term page\";s:37:\"Pagina di un termine della tassonomia\";s:14:\"Term reference\";s:19:\"Riferimento termine\";s:49:\"This field stores a reference to a taxonomy term.\";s:65:\"Questo campo salva un riferimento ad un termine della tassonomia.\";s:34:\"Autocomplete term widget (tagging)\";s:51:\"Widget di autocompletamento per i termini (tagging)\";s:17:\"Picture directory\";s:24:\"Cartella per le immagini\";s:33:\"Account cancellation confirmation\";s:43:\"Conferma di eliminazione del profilo utente\";s:34:\"User module timezone form element.\";s:45:\"Elemento il form fuso orario del modulo User.\";s:33:\"User module history view element.\";s:65:\"Elemento del modulo User per la visualizzazione della cronologia.\";s:16:\"Author textfield\";s:12:\"Campo autore\";s:17:\"Subject textfield\";s:13:\"Campo oggetto\";s:19:\"Term name textfield\";s:38:\"Campo di testo per il nome del termine\";s:25:\"Term description textarea\";s:44:\"Area di testo per la descrizione del termine\";s:24:\"Configure user accounts.\";s:27:\"Configura i profili utente.\";s:18:\"@node_type comment\";s:23:\"commenti per @node_type\";s:19:\"User interface text\";s:29:\"Testo dell\'interfaccia utente\";s:29:\"Add and modify shortcut sets.\";s:39:\"Crea o modifica insiemi di scorciatoie.\";s:19:\"Footer first column\";s:27:\"Piè pagina - Prima colonna\";s:20:\"Footer second column\";s:29:\"Piè pagina - Seconda colonna\";s:19:\"Footer third column\";s:27:\"Piè pagina - Terza colonna\";s:20:\"Footer fourth column\";s:28:\"Piè pagina - Quarta colonna\";s:22:\"GD library PNG support\";s:34:\"Supporto per PNG della libreria GD\";s:40:\"GD library rotate and desaturate effects\";s:54:\"Effetti di rotazione e desaturazione della libreria GD\";s:31:\"Cache pages for anonymous users\";s:38:\"Pagine in cache per gli utenti anonimi\";s:11:\"Highlighted\";s:11:\"Evidenziato\";s:14:\"Sidebar second\";s:22:\"Seconda barra laterale\";s:14:\"Triptych first\";s:27:\"Primo elemento del trittico\";s:15:\"Triptych middle\";s:30:\"Elemento centrale del trittico\";s:13:\"Triptych last\";s:28:\"Ultimo elemento del trittico\";s:24:\"!local-task-title!active\";s:24:\"!local-task-title!active\";s:26:\"Expiration of cached pages\";s:30:\"Scadenza delle pagine in cache\";s:68:\"The maximum time an external cache can use an old version of a page.\";s:90:\"Tempo massimo per cui una cache esterna può utilizzare una vecchia versione della pagina.\";s:19:\"Node module element\";s:24:\"Elemento del modulo Node\";s:13:\"Close overlay\";s:35:\"Chiudi l\'overlay di amministrazione\";s:40:\"Manage automatic site maintenance tasks.\";s:60:\"Gestisci le operazioni automatiche di manutenzione del sito.\";s:72:\"Subdirectory in the file upload directory where pictures will be stored.\";s:89:\"Sottocartella nella cartella di caricamento dei file dove le immagini verranno archiviate\";s:34:\"View and customize your dashboard.\";s:43:\"Visualizza e personalizza la tua dashboard.\";s:48:\"Reference for usage, configuration, and modules.\";s:52:\"Riferimenti per l\'uso, la configurazione e i moduli.\";s:33:\"Select and configure your themes.\";s:29:\"Seleziona e configura i temi.\";s:20:\"Administer settings.\";s:22:\"Gestisci impostazioni.\";s:34:\"View reports, updates, and errors.\";s:46:\"Visualizza resoconti, aggiornamenti ed errori.\";s:22:\"Administrative toolbar\";s:24:\"Barra di amministrazione\";s:45:\"Manage user accounts, roles, and permissions.\";s:42:\"Gestisci profili utente, ruoli e permessi.\";s:51:\"%type: !message in %function (line %line of %file).\";s:52:\"%type: !message in %function (linea %line di %file).\";s:21:\"Dismiss this message.\";s:25:\"Nascondi questo messaggio\";s:38:\"Options for the administrative overlay\";s:40:\"Opzioni per l\'overlay di amministrazione\";s:61:\"Read more<span class=\"element-invisible\"> about @title</span>\";s:60:\"Leggi tutto<span class=\"element-invisible\"> su @title</span>\";s:33:\"Aggregate and compress CSS files.\";s:30:\"Aggrega e comprimi i file CSS.\";s:27:\"Aggregate JavaScript files.\";s:26:\"Aggrega i file JavaScript.\";s:15:\"Database system\";s:16:\"Sistema database\";s:23:\"Database system version\";s:21:\"Versione del database\";s:14:\"List (integer)\";s:15:\"Elenco (intero)\";s:12:\"List (float)\";s:23:\"Elenco (virgola mobile)\";s:32:\"Administer content and comments.\";s:32:\"Amministra contenuto e commenti.\";s:12:\"RSS category\";s:13:\"Categoria RSS\";s:26:\"Extend site functionality.\";s:34:\"Estendi le funzionalità del sito.\";s:46:\"The requested page \"@path\" could not be found.\";s:49:\"La pagina richiesta \"@path\" non è stata trovata.\";s:22:\"User name and password\";s:22:\"Nome utente e password\";s:34:\"User module account form elements.\";s:42:\"Elementi del form account del modulo user.\";s:22:\"Public files directory\";s:22:\"Cartella file pubblici\";s:25:\"Temporary files directory\";s:24:\"Cartella file temporanei\";s:24:\"Subscribe to !feed-title\";s:25:\"Abbonamento a !feed-title\";s:64:\"Field type(s) in use - see <a href=\"@fields-page\">Field list</a>\";s:81:\"Tipi di campo attualmente in uso - vedere <a href=\"@fields-page\">Elenco campi</a>\";s:25:\"Translation update status\";s:39:\"Stato di aggiornamento delle traduzioni\";s:27:\"There are available updates\";s:33:\"Ci sono aggiornamenti disponibili\";s:5:\"Album\";s:5:\"Album\";s:10:\"Image file\";s:13:\"File immagine\";s:5:\"Cover\";s:9:\"Copertina\";s:9:\"Has Image\";s:17:\"Contiene Immagini\";s:4:\"IMCE\";s:4:\"IMCE\";s:42:\"Control how your image/file browser works.\";s:58:\"Controlla il funzionamento del browser di immagini e file.\";s:10:\"Album name\";b:1;s:15:\"Translation set\";b:1;s:9:\"Undefined\";b:1;s:13:\"First Sidebar\";b:1;s:13:\"Preface First\";b:1;s:14:\"Preface Middle\";b:1;s:12:\"Preface Last\";b:1;s:11:\"Content Top\";b:1;s:12:\"First Bottom\";b:1;s:13:\"Second Bottom\";b:1;s:12:\"Third Bottom\";b:1;s:16:\"Dashboard (main)\";b:1;s:19:\"Dashboard (sidebar)\";b:1;s:20:\"Dashboard (inactive)\";b:1;s:9:\"User menu\";b:1;s:9:\"!datetime\";b:1;s:9:\"Copyright\";b:1;s:8:\"Theme by\";b:1;s:12:\"Album photos\";b:1;s:6:\"Master\";b:1;s:8:\"Articles\";b:1;s:4:\"more\";b:1;s:5:\"Apply\";b:1;s:7:\"Sort by\";b:1;s:3:\"Asc\";b:1;s:4:\"Desc\";b:1;s:6:\"Normal\";s:7:\"Normale\";s:39:\"Comments are responses to node content.\";b:1;s:2:\"ID\";b:1;s:27:\"The comment ID of the field\";b:1;s:16:\"Author\'s website\";b:1;s:41:\"Hostname of user that posted the comment.\";b:1;s:4:\"Mail\";b:1;s:9:\"Post date\";b:1;s:46:\"Date and time of when the comment was created.\";b:1;s:31:\"The language the comment is in.\";b:1;s:12:\"Updated date\";b:1;s:51:\"Date and time of when the comment was last updated.\";b:1;s:12:\"Created date\";b:1;s:29:\"Date in the form of CCYYMMDD.\";b:1;s:20:\"Created year + month\";b:1;s:27:\"Date in the form of YYYYMM.\";b:1;s:12:\"Created year\";b:1;s:25:\"Date in the form of YYYY.\";b:1;s:13:\"Created month\";b:1;s:33:\"Date in the form of MM (01 - 12).\";b:1;s:11:\"Created day\";b:1;s:33:\"Date in the form of DD (01 - 31).\";b:1;s:12:\"Created week\";b:1;s:33:\"Date in the form of WW (01 - 53).\";b:1;s:8:\"Approved\";b:1;s:67:\"Whether the comment is approved (or still in the moderation queue).\";b:1;s:12:\"Not Approved\";b:1;s:16:\"Approved comment\";b:1;s:9:\"View link\";b:1;s:42:\"Provide a simple link to view the comment.\";b:1;s:9:\"Edit link\";b:1;s:42:\"Provide a simple link to edit the comment.\";b:1;s:11:\"Delete link\";b:1;s:44:\"Provide a simple link to delete the comment.\";b:1;s:12:\"Approve link\";b:1;s:45:\"Provide a simple link to approve the comment.\";b:1;s:13:\"Reply-to link\";b:1;s:46:\"Provide a simple link to reply to the comment.\";b:1;s:5:\"Depth\";b:1;s:51:\"Display the depth of the comment if it is threaded.\";b:1;s:6:\"Thread\";b:1;s:3:\"Nid\";b:1;s:47:\"The node ID to which the comment is a reply to.\";b:1;s:47:\"The content to which the comment is a reply to.\";b:1;s:10:\"Author uid\";b:1;s:73:\"If you need more fields than the uid add the comment: author relationship\";b:1;s:36:\"The User ID of the comment\'s author.\";b:1;s:6:\"author\";b:1;s:10:\"Parent CID\";b:1;s:37:\"The Comment ID of the parent comment.\";b:1;s:14:\"Parent comment\";b:1;s:19:\"The parent comment.\";b:1;s:17:\"Last comment time\";b:1;s:50:\"Date and time of when the last comment was posted.\";b:1;s:19:\"Last comment author\";b:1;s:50:\"The name of the author of the last posted comment.\";b:1;s:34:\"The number of comments a node has.\";b:1;s:22:\"Updated/commented date\";b:1;s:60:\"The most recent of last comment posted or node updated time.\";b:1;s:16:\"Last comment CID\";b:1;s:34:\"Display the last comment of a node\";b:1;s:12:\"Last Comment\";b:1;s:27:\"The last comment of a node.\";b:1;s:16:\"Last comment uid\";b:1;s:56:\"The User ID of the author of the last comment of a node.\";b:1;s:15:\"@entity:@bundle\";b:1;s:21:\"Appears in: @bundles.\";b:1;s:14:\"@group: @field\";b:1;s:14:\"@label (!name)\";b:1;s:12:\"- No value -\";b:1;s:22:\"@label (!name:!column)\";b:1;s:14:\"@label:!column\";b:1;s:35:\"This is an alias of @group: @field.\";b:1;s:21:\"Also known as: !also.\";b:1;s:24:\"@group (historical data)\";b:1;s:32:\"@group (historical data): @field\";b:1;s:20:\"@label (!name:delta)\";b:1;s:12:\"@label:delta\";b:1;s:29:\"Delta - Appears in: @bundles.\";b:1;s:21:\"term from !field_name\";b:1;s:22:\"image from !field_name\";b:1;s:13:\"Locale source\";b:1;s:73:\"A source string for translation, in English or the default site language.\";b:1;s:3:\"LID\";b:1;s:28:\"The ID of the source string.\";b:1;s:55:\"A description of the location or context of the string.\";b:1;s:32:\"The group the translation is in.\";b:1;s:6:\"Source\";s:8:\"Sorgente\";s:25:\"The full original string.\";b:1;s:51:\"The version of Drupal core that this string is for.\";b:1;s:47:\"Provide a simple link to edit the translations.\";b:1;s:13:\"Locale target\";b:1;s:11:\"Translation\";b:1;s:28:\"The full translation string.\";b:1;s:36:\"The language this translation is in.\";b:1;s:12:\"Singular LID\";b:1;s:33:\"The ID of the parent translation.\";b:1;s:6:\"Plural\";b:1;s:41:\"Whether or not the translation is plural.\";b:1;s:12:\"The node ID.\";b:1;s:18:\"The content title.\";b:1;s:32:\"The date the content was posted.\";b:1;s:38:\"The date the content was last updated.\";b:1;s:73:\"The content type (for example, \"blog entry\", \"forum post\", \"story\", etc).\";b:1;s:40:\"Whether or not the content is published.\";b:1;s:18:\"Published or admin\";b:1;s:67:\"Filters out unpublished content if the current user cannot view it.\";b:1;s:57:\"Whether or not the content is promoted to the front page.\";b:1;s:8:\"Promoted\";b:1;s:12:\"Not promoted\";b:1;s:6:\"Sticky\";b:1;s:37:\"Whether or not the content is sticky.\";b:1;s:10:\"Not sticky\";b:1;s:37:\"Provide a simple link to the content.\";b:1;s:42:\"Provide a simple link to edit the content.\";b:1;s:44:\"Provide a simple link to delete the content.\";b:1;s:33:\"The aliased path to this content.\";b:1;s:20:\"Updated year + month\";b:1;s:12:\"Updated year\";b:1;s:13:\"Updated month\";b:1;s:11:\"Updated day\";b:1;s:12:\"Updated week\";b:1;s:42:\"Relate content to the user who created it.\";b:1;s:19:\"User has a revision\";b:1;s:45:\"All nodes where a certain user has a revision\";b:1;s:16:\"Content revision\";b:1;s:52:\"Content revision is a history of changes to content.\";b:1;s:63:\"Relate a content revision to the user who created the revision.\";b:1;s:13:\"revision user\";b:1;s:41:\"The revision NID of the content revision.\";b:1;s:47:\"Get the actual content from a content revision.\";b:1;s:3:\"Vid\";b:1;s:40:\"The revision ID of the content revision.\";b:1;s:11:\"Log message\";b:1;s:54:\"The log message entered when the revision was created.\";b:1;s:35:\"The date the node was last updated.\";b:1;s:38:\"Provide a simple link to the revision.\";b:1;s:11:\"Revert link\";b:1;s:48:\"Provide a simple link to revert to the revision.\";b:1;s:53:\"Provide a simple link to delete the content revision.\";b:1;s:14:\"Content access\";b:1;s:6:\"Access\";b:1;s:17:\"Filter by access.\";b:1;s:15:\"Has new content\";b:1;s:47:\"Show a marker if the content is new or updated.\";b:1;s:41:\"Show only content that is new or updated.\";b:1;s:12:\"Album Photos\";b:1;s:13:\"Photos Albums\";b:1;s:7:\"Albums.\";b:1;s:8:\"Album ID\";b:1;s:23:\"This albums {node}.nid.\";b:1;s:11:\"Album cover\";b:1;s:53:\"The {file_managed}.fid for the albums cover (if set).\";b:1;s:37:\"The cover associated with this album.\";b:1;s:59:\"Access to the file associated with the cover of this Album.\";b:1;s:12:\"Album Weight\";b:1;s:25:\"The weight of this album.\";b:1;s:17:\"Album Image Count\";b:1;s:35:\"The number of images in this album.\";b:1;s:13:\"Photos Images\";b:1;s:13:\"Album images.\";b:1;s:36:\"The file associated with this image.\";b:1;s:58:\"Access to the file information associated with this image.\";b:1;s:29:\"This images album {node}.nid.\";b:1;s:11:\"Album: Node\";b:1;s:36:\"The node associated with this album.\";b:1;s:47:\"Access to node title and fields for this Album.\";b:1;s:11:\"Image Title\";b:1;s:25:\"The title for this image.\";b:1;s:17:\"Image Description\";b:1;s:31:\"The description for this image.\";b:1;s:15:\"Has Description\";b:1;s:12:\"Image Weight\";b:1;s:37:\"The image weight - custom sort order.\";b:1;s:11:\"Image Views\";b:1;s:48:\"Count how many times this image has been viewed.\";b:1;s:14:\"Image Comments\";b:1;s:39:\"Count how many comments this image has.\";b:1;s:47:\"Files maintained by Drupal and various modules.\";b:1;s:19:\"The ID of the file.\";b:1;s:21:\"The name of the file.\";b:1;s:21:\"The path of the file.\";b:1;s:9:\"Mime type\";b:1;s:26:\"The mime type of the file.\";b:1;s:9:\"Extension\";b:1;s:26:\"The extension of the file.\";b:1;s:23:\"The status of the file.\";b:1;s:11:\"Upload date\";b:1;s:31:\"The date the file was uploaded.\";b:1;s:17:\"User who uploaded\";b:1;s:32:\"The user that uploaded the file.\";b:1;s:10:\"File Usage\";b:1;s:13:\"Taxonomy Term\";b:1;s:19:\"Taxonomy Vocabulary\";b:1;s:6:\"Module\";b:1;s:43:\"The module managing this file relationship.\";b:1;s:11:\"Entity type\";s:15:\"Tipo di entità\";s:47:\"The type of entity that is related to the file.\";b:1;s:9:\"Entity ID\";s:10:\"ID Entità\";s:49:\"The ID of the entity that is related to the file.\";b:1;s:9:\"Use count\";b:1;s:52:\"The number of times the file is used by this entity.\";b:1;s:25:\"Module/Theme/Theme engine\";b:1;s:46:\"Modules/Themes/Theme engines in your codebase.\";b:1;s:34:\"Module/Theme/Theme engine filename\";b:1;s:30:\"Module/Theme/Theme engine name\";b:1;s:32:\"The name of the item; e.g. node.\";b:1;s:60:\"The type of the item, either module, theme, or theme_engine.\";b:1;s:55:\"Boolean indicating whether or not this item is enabled.\";b:1;s:14:\"Schema version\";b:1;s:28:\"The taxonomy vocabulary name\";b:1;s:66:\"Filter the results of \"Taxonomy: Term\" to a particular vocabulary.\";b:1;s:26:\"The taxonomy vocabulary ID\";b:1;s:35:\"The taxonomy vocabulary description\";b:1;s:30:\"The taxonomy vocabulary weight\";b:1;s:4:\"Term\";b:1;s:37:\"Taxonomy terms are attached to nodes.\";b:1;s:27:\"The tid of a taxonomy term.\";b:1;s:56:\"Taxonomy term chosen from autocomplete or select widget.\";b:1;s:19:\"Representative node\";b:1;s:23:\"The taxonomy term name.\";b:1;s:19:\"Taxonomy term name.\";b:1;s:13:\"Uncategorized\";b:1;s:21:\"The term weight field\";b:1;s:48:\"The description associated with a taxonomy term.\";b:1;s:14:\"Term edit link\";b:1;s:39:\"Provide a simple link to edit the term.\";b:1;s:17:\"Content with term\";b:1;s:38:\"Relate all content tagged with a term.\";b:1;s:20:\"Has taxonomy term ID\";b:1;s:54:\"Display content if it has the selected taxonomy terms.\";b:1;s:17:\"Has taxonomy term\";b:1;s:57:\"Filter the results of \"Taxonomy: Term\" by the parent pid.\";b:1;s:28:\"The parent term of the term.\";b:1;s:45:\"Users who have created accounts on your site.\";b:1;s:3:\"Uid\";b:1;s:11:\"The user ID\";b:1;s:16:\"Content authored\";b:1;s:5:\"nodes\";b:1;s:24:\"The raw numeric user ID.\";b:1;s:7:\"Current\";b:1;s:48:\"Filter the view to the currently logged in user.\";b:1;s:24:\"The user or author name.\";b:1;s:10:\"Name (raw)\";b:1;s:20:\"Language of the user\";b:1;s:31:\"The user\'s picture, if allowed.\";b:1;s:10:\"Has Avatar\";b:1;s:34:\"Provide a simple link to the user.\";b:1;s:30:\"The date the user was created.\";b:1;s:28:\"The user\'s last access date.\";b:1;s:27:\"The user\'s last login date.\";b:1;s:36:\"Whether a user is active or blocked.\";b:1;s:21:\"The user\'s signature.\";b:1;s:39:\"Provide a simple link to edit the user.\";b:1;s:11:\"Cancel link\";b:1;s:41:\"Provide a simple link to cancel the user.\";b:1;s:4:\"Data\";b:1;s:35:\"Provide serialized data of the user\";b:1;s:29:\"Roles that a user belongs to.\";b:1;s:7:\"No role\";b:1;s:21:\"The user permissions.\";b:1;s:10:\"Authmap ID\";b:1;s:15:\"The Authmap ID.\";b:1;s:19:\"Authentication name\";b:1;s:31:\"The unique authentication name.\";b:1;s:21:\"Authentication module\";b:1;s:57:\"The name of the module managing the authentication entry.\";b:1;s:6:\"Global\";b:1;s:6:\"Random\";b:1;s:28:\"Randomize the display order.\";b:1;s:4:\"Null\";b:1;s:11:\"Custom text\";b:1;s:28:\"Provide custom text or link.\";b:1;s:19:\"View result counter\";b:1;s:47:\"Displays the actual position of the view result\";b:1;s:9:\"Text area\";b:1;s:33:\"Provide markup text for the area.\";b:1;s:15:\"Unfiltered text\";b:1;s:9:\"View area\";b:1;s:29:\"Insert a view inside an area.\";b:1;s:14:\"Result summary\";b:1;s:53:\"Shows result summary, for example the items per page.\";b:1;s:8:\"Messages\";b:1;s:30:\"Displays messages in the area.\";b:1;s:16:\"Contextual Links\";b:1;s:42:\"Display fields in a contextual links menu.\";b:1;s:21:\"Combine fields filter\";b:1;s:15:\"Math expression\";b:1;s:52:\"Evaluates a mathematical expression and displays it.\";b:1;s:17:\"Fields comparison\";b:1;s:42:\"Compare database fields against eachother.\";b:1;s:55:\"Use fields comparison to filter the result of the view.\";b:1;s:39:\"The number of new comments on the node.\";b:1;s:16:\"Add comment link\";b:1;s:14:\"Comment status\";b:1;s:53:\"Whether comments are enabled or disabled on the node.\";b:1;s:24:\"User posted or commented\";b:1;s:70:\"Display nodes only if a user posted the node or commented on the node.\";b:1;s:20:\"Comments of the node\";b:1;s:20:\"@entity using @field\";b:1;s:50:\"Relate each @entity with a @field set to the term.\";b:1;s:11:\"!field_name\";b:1;s:51:\"Relate each @entity with a @field set to the image.\";b:1;s:31:\"The language the content is in.\";b:1;s:22:\"Taxonomy terms on node\";b:1;s:4:\"term\";b:1;s:18:\"All taxonomy terms\";b:1;s:33:\"Has taxonomy term ID (with depth)\";b:1;s:31:\"Has taxonomy terms (with depth)\";b:1;s:35:\"Has taxonomy term ID depth modifier\";b:1;s:23:\"Translation set node ID\";b:1;s:53:\"The ID of the translation set the content belongs to.\";b:1;s:18:\"Source translation\";b:1;s:49:\"The source that this content was translated from.\";b:1;s:12:\"Translations\";b:1;s:43:\"Versions of content in different languages.\";b:1;s:16:\"Node translation\";b:1;s:17:\"Child translation\";b:1;s:54:\"Content that is a translation of a source translation.\";b:1;s:18:\"Translation status\";b:1;s:8:\"Outdated\";b:1;s:14:\"Translate link\";b:1;s:44:\"Provide a simple link to translate the node.\";b:1;s:47:\"Display the comment with standard comment view.\";b:1;s:27:\"Display the comment as RSS.\";b:1;s:44:\"Display the content with standard node view.\";b:1;s:19:\"Content ID from URL\";b:1;s:25:\"Taxonomy term ID from URL\";b:1;s:41:\"Display the user with standard user view.\";b:1;s:16:\"User ID from URL\";b:1;s:27:\"User ID from logged in user\";b:1;s:31:\"Default settings for this view.\";b:1;s:54:\"Display the view as a page, with a URL and menu links.\";b:1;s:28:\"Display the view as a block.\";b:1;s:4:\"Feed\";b:1;s:48:\"Display the view as a feed, such as an RSS feed.\";b:1;s:5:\"Embed\";b:1;s:60:\"Provide a display which can be embedded using the views api.\";b:1;s:22:\"Empty display extender\";b:1;s:16:\"Unformatted list\";b:1;s:32:\"Displays rows one after another.\";b:1;s:9:\"HTML list\";b:1;s:30:\"Displays rows as an HTML list.\";b:1;s:4:\"Grid\";b:1;s:24:\"Displays rows in a grid.\";b:1;s:25:\"Displays rows in a table.\";b:1;s:39:\"Displays the default summary as a list.\";b:1;s:8:\"RSS Feed\";b:1;s:34:\"Generates an RSS feed from a view.\";b:1;s:6:\"Fields\";s:5:\"Campi\";s:46:\"Displays the fields with an optional template.\";b:1;s:28:\"Display fields as RSS items.\";b:1;s:11:\"Fixed value\";b:1;s:8:\"PHP Code\";b:1;s:18:\"Raw value from URL\";b:1;s:7:\"Numeric\";b:1;s:31:\"Will be available to all users.\";b:1;s:64:\"Access will be granted to users with any of the specified roles.\";b:1;s:69:\"Access will be granted to users with the specified permission string.\";b:1;s:9:\"SQL Query\";b:1;s:62:\"Query will be generated and run using the Drupal database API.\";b:1;s:25:\"No caching of Views data.\";b:1;s:10:\"Time-based\";b:1;s:34:\"Simple time-based caching of data.\";b:1;s:18:\"Basic exposed form\";b:1;s:14:\"Input required\";b:1;s:73:\"An exposed form that only renders a view if the form contains user input.\";b:1;s:17:\"Display all items\";b:1;s:43:\"Display all items that this view might find\";b:1;s:35:\"Display a specified number of items\";b:1;s:57:\"Display a limited number items that this view might find.\";b:1;s:24:\"Paged output, full pager\";b:1;s:4:\"Full\";s:8:\"Completo\";s:31:\"Paged output, full Drupal style\";b:1;s:24:\"Paged output, mini pager\";b:1;s:4:\"Mini\";b:1;s:26:\"Use the mini pager output.\";b:1;s:42:\"Do not pass admin strings for translation.\";b:1;s:9:\"Jump menu\";b:1;s:6:\"fields\";b:1;s:5:\"field\";b:1;s:18:\"Contextual filters\";b:1;s:18:\"contextual filters\";b:1;s:17:\"Contextual filter\";b:1;s:17:\"contextual filter\";b:1;s:13:\"Sort criteria\";b:1;s:13:\"sort criteria\";b:1;s:14:\"Sort criterion\";b:1;s:14:\"sort criterion\";b:1;s:15:\"Filter criteria\";b:1;s:15:\"filter criteria\";b:1;s:16:\"Filter criterion\";b:1;s:16:\"filter criterion\";b:1;s:13:\"Relationships\";b:1;s:13:\"relationships\";b:1;s:12:\"Relationship\";s:9:\"Relazione\";s:6:\"header\";b:1;s:6:\"footer\";b:1;s:19:\"No results behavior\";b:1;s:19:\"no results behavior\";b:1;s:6:\"Titolo\";b:1;s:4:\"True\";b:1;s:9:\"Is one of\";s:9:\"È uno di\";s:2:\"in\";b:1;s:1:\"=\";b:1;s:13:\"Is not one of\";s:13:\"Non è uno di\";s:6:\"not in\";b:1;s:2:\"<>\";b:1;s:9:\"By weight\";b:1;s:7:\"By time\";b:1;s:11:\"By comments\";b:1;s:9:\"By visits\";b:1;s:11:\"By filesize\";b:1;s:8:\"Sort by:\";b:1;s:6:\"Limit:\";b:1;s:5:\"Blank\";s:5:\"Vuota\";s:5:\"Large\";s:6:\"Grande\";s:7:\"Address\";s:9:\"Indirizzo\";s:4:\"Week\";s:9:\"Settimana\";s:8:\"Latitude\";s:10:\"Latitudine\";s:9:\"Longitude\";s:11:\"Longitudine\";s:8:\"Features\";s:13:\"Funzionalità\";s:17:\"Disable mousezoom\";s:23:\"Disabilita il mousezoom\";s:47:\"Disable using the scroll wheel to zoom the map.\";s:67:\"Disabilita l\'uso della rotella di scorrimento per zoomare la mappa.\";s:14:\"User locations\";s:21:\"Posizioni dell\'utente\";s:5:\"White\";s:6:\"Bianco\";s:4:\"Gray\";s:6:\"Grigio\";s:6:\"Purple\";s:5:\"Viola\";s:4:\"Pink\";s:4:\"Rosa\";s:5:\"Green\";s:5:\"Verde\";s:4:\"Blue\";s:3:\"Blu\";s:6:\"Orange\";s:9:\"Arancione\";s:5:\"Route\";s:10:\"Itinerario\";s:6:\"Yellow\";s:6:\"Giallo\";s:7:\"Letters\";s:7:\"Lettere\";s:7:\"Numbers\";s:6:\"Numeri\";s:7:\"Cluster\";s:6:\"Gruppo\";s:9:\"Small Red\";s:13:\"Rosso Piccolo\";s:16:\"Small Bright red\";s:23:\"Rosso brillante Piccolo\";s:12:\"Small Orange\";s:17:\"Arancione Piccolo\";s:17:\"Small Pale Yellow\";s:25:\"Giallo paglierino Piccolo\";s:12:\"Small Yellow\";s:14:\"Giallo Piccolo\";s:16:\"Small Pale Green\";s:21:\"Verde pallido Piccolo\";s:11:\"Small Green\";s:13:\"Verde Piccolo\";s:16:\"Small Dark Green\";s:19:\"Verde scuro Piccolo\";s:18:\"Small Flouro Green\";s:18:\"Verde Fluo Piccolo\";s:15:\"Small Pale Blue\";s:15:\"Azzurro Piccolo\";s:16:\"Small Light Blue\";s:18:\"Blu chiaro Piccolo\";s:10:\"Small Blue\";s:11:\"Blu Piccolo\";s:15:\"Small Dark Blue\";s:17:\"Blu scuro Piccolo\";s:12:\"Small Purple\";s:13:\"Viola Piccolo\";s:10:\"Small Pink\";s:12:\"Rosa Piccolo\";s:17:\"Small Bright Pink\";s:21:\"Rosa shocking Piccolo\";s:11:\"Small Brown\";s:15:\"Marrone Piccolo\";s:11:\"Small White\";s:14:\"Bianco Piccolo\";s:16:\"Small Light Gray\";s:21:\"Grigio chiaro Piccolo\";s:10:\"Small Gray\";s:14:\"Grigio Piccolo\";s:11:\"Small Black\";s:12:\"Nero Piccolo\";s:22:\"Small Blue (Alternate)\";s:25:\"Blu Piccolo (Sostitutivo)\";s:21:\"Small Red (Alternate)\";s:27:\"Rosso Piccolo (Sostitutivo)\";s:8:\"Big Blue\";s:10:\"Blu Grande\";s:7:\"Big Red\";s:12:\"Rosso Grande\";s:16:\"X marks the spot\";s:17:\"X indica il luogo\";s:11:\"Line Vertex\";s:15:\"Linea di Vertex\";s:10:\"Light Blue\";s:10:\"Blu chiaro\";s:7:\"Country\";s:5:\"Paese\";s:6:\"Street\";s:3:\"Via\";s:10:\"Additional\";s:10:\"Aggiuntivo\";s:4:\"City\";s:6:\"Città\";s:28:\"Settings for Location module\";s:35:\"Impostazioni per il modulo Location\";s:11:\"Coordinates\";s:10:\"Coordinate\";s:8:\"Province\";s:9:\"Provincia\";s:11:\"Postal Code\";s:14:\"Codice postale\";s:44:\"Locations are addresses and map coordinates.\";s:60:\"Le posizioni sono gli indirizzi e le coordinate della mappa.\";s:3:\"Lid\";s:3:\"Lid\";s:32:\"The location ID of the location.\";s:31:\"L\'ID posizione della posizione.\";s:34:\"The name of the selected location.\";s:36:\"Il nome della posizione selezionata.\";s:44:\"The street address of the selected location.\";s:35:\"La via della posizione selezionata.\";s:34:\"The city of the selected location.\";s:38:\"La città della posizione selezionata.\";s:38:\"The province of the selected location.\";s:41:\"La provincia della posizione selezionata.\";s:41:\"The postal code of the selected location.\";s:46:\"Il codice postale della posizione selezionata.\";s:37:\"The country of the selected location.\";s:39:\"La nazione della posizione selezionata.\";s:38:\"The latitude of the selected location.\";s:42:\"La latitudine della posizione selezionata.\";s:39:\"The longitude of the selected location.\";s:43:\"La longitudine della posizione selezionata.\";s:63:\"The coordinates of the selected location in \'lat, long\' format.\";s:66:\"Le coordinate della posizione selezionata nel formato \'lat, long\'.\";s:20:\"Distance / Proximity\";s:22:\"Distanza / Prossimità\";s:42:\"The entire address block for the location.\";s:50:\"Il blocco dell\'indirizzo completo della posizione.\";s:33:\"Store a location.module location.\";s:42:\"Archivia una posizione di location.module.\";s:14:\"Location Field\";s:15:\"Campo Posizione\";s:17:\"Default (address)\";s:23:\"Predefinito (indirizzo)\";s:16:\"Address with map\";s:19:\"Indirizzo con mappa\";s:8:\"Map only\";s:10:\"Solo mappa\";s:37:\"Multiple field values on a single map\";s:46:\"Valori multipli del campo su una singola mappa\";s:10:\"Menu items\";s:16:\"Elementi di menu\";s:10:\"Menu links\";s:12:\"Voci di menu\";s:14:\"Postal address\";s:17:\"Indirizzo postale\";s:20:\"Dynamic address form\";s:23:\"Form dinamico indirizzo\";s:21:\"!label of field %name\";s:22:\"!label del campo %name\";s:16:\"Location chooser\";b:1;s:48:\"Used to activate location choosing using a gmap.\";b:1;s:16:\"Disable dragging\";b:1;s:16:\"Disable keyboard\";b:1;s:31:\"Disable the keyboard shortcuts.\";b:1;s:23:\"Disable Continuous Zoom\";b:1;s:12:\"Use AutoZoom\";b:1;s:69:\"Automatically zoom the map to fit all markers when markers are added.\";b:1;s:39:\"Unconditionally enable marker interface\";b:1;s:19:\"Enable Overview Map\";b:1;s:53:\"Enable the \"overview map\" in the bottom right corner.\";b:1;s:58:\"Work around bugs when maps appear in collapsible fieldsets\";b:1;s:25:\"Add scale control to map.\";b:1;s:56:\"Adds a scale control to the map in the default position.\";b:1;s:27:\"Enable extra marker events.\";b:1;s:24:\"Enable clickable shapes.\";b:1;s:28:\"Highlight marker on rollover\";b:1;s:60:\"Highlight marker by creating circle on mouse rollover event.\";b:1;s:34:\"This field stores geo information.\";b:1;s:26:\"Geocode from another field\";b:1;s:21:\"Well Known Text (WKT)\";b:1;s:7:\"GeoJSON\";b:1;s:20:\"Latitude / Longitude\";b:1;s:6:\"Bounds\";b:1;s:3:\"KML\";b:1;s:3:\"GPX\";b:1;s:7:\"Geohash\";b:1;s:18:\"Latitude/Longitude\";b:1;s:13:\"Latitude Only\";b:1;s:14:\"Longitude Only\";b:1;s:13:\"Geometry Type\";b:1;s:31:\"Definition List (Accessibility)\";b:1;s:32:\"Descriptive Text (Accessibility)\";b:1;s:51:\"Additional street address of the selected location.\";b:1;s:4:\"GMap\";b:1;s:23:\"Displays rows as a map.\";b:1;s:13:\"Extended GMap\";b:1;s:26:\"Displays a map of markers.\";b:1;s:13:\"Search widget\";b:1;s:16:\"User menu widget\";b:1;s:16:\"Slideshow widget\";b:1;s:20:\"Front welcome widget\";b:1;s:16:\"First top widget\";b:1;s:17:\"Second top widget\";b:1;s:16:\"Third top widget\";b:1;s:14:\"Second sidebar\";b:1;s:17:\"Highlights widget\";b:1;s:19:\"Bottom first widget\";b:1;s:20:\"Bottom second widget\";b:1;s:19:\"Bottom third widget\";b:1;s:19:\"First bottom widget\";b:1;s:20:\"Second bottom widget\";b:1;s:19:\"Third bottom widget\";b:1;s:19:\"Forth bottom widget\";b:1;s:12:\"Location map\";b:1;s:10:\"Author map\";b:1;s:13:\"User\'s images\";b:1;s:17:\"Photo information\";b:1;s:13:\"Random images\";b:1;s:10:\"Management\";b:1;s:21:\"View: !view: !display\";b:1;s:10:\"Album view\";b:1;s:24:\"A total of !count images\";b:1;s:0:\"\";b:1;s:9:\"All sizes\";b:1;s:11:\"!cou visits\";b:1;s:26:\"Uploaded on !time by !name\";b:1;s:14:\"Album settings\";b:1;s:17:\"Images Management\";b:1;s:11:\"!cou images\";b:1;s:27:\"Submitted by !name on !date\";b:1;s:14:\"@name\'s albums\";b:1;s:14:\"Albums: @title\";b:1;s:39:\"Sharing code and download image: @title\";b:1;s:22:\"Back to the image page\";b:1;s:5:\"Thumb\";b:1;s:18:\"Language selection\";b:1;s:29:\"Location module form elements\";b:1;s:19:\"GMap Macro expander\";b:1;s:50:\"GMap macros will be displayed as interactive maps.\";b:1;s:22:\"Insert image and album\";b:1;s:18:\"Forecast as charts\";b:1;s:31:\"Image Based Scientific Forecast\";b:1;s:14:\"Node locations\";b:1;s:24:\"Create new photo albums.\";b:1;s:44:\"Nodes represent the main site content items.\";b:1;s:14:\"Uploaded file.\";b:1;s:37:\"Remark or note that refers to a node.\";b:1;s:48:\"Taxonomy terms are used for classifying content.\";b:1;s:21:\"Taxonomy vocabularies\";b:1;s:13:\"Contact forms\";b:1;s:37:\"Configurable contact form categories.\";b:1;s:57:\"Configurable fields descriptions, defaults, options, etc.\";b:1;s:10:\"Node types\";b:1;s:45:\"Content type names, descriptions, help texts.\";b:1;s:47:\"Translatable menu items: title and description.\";b:1;s:62:\"Vocabulary titles and term names for localizable vocabularies.\";b:1;s:39:\"Configurable blocks titles and content.\";b:1;s:18:\"Linked and wrapped\";b:1;s:18:\"Default translated\";b:1;s:16:\"Link (localized)\";b:1;s:22:\"Plain text (localized)\";b:1;s:16:\"Contact category\";b:1;s:14:\"Field instance\";b:1;s:9:\"Node type\";b:1;s:11:\"Title label\";b:1;s:10:\"menu items\";b:1;s:10:\"vocabulary\";b:1;s:5:\"terms\";b:1;s:27:\"The subject of the comment.\";b:1;s:26:\"The author of the comment.\";b:1;s:48:\"Whether the comment is published or unpublished.\";b:1;s:14:\"Field \"@name\".\";b:1;s:9:\"The file.\";b:1;s:20:\"The file description\";b:1;s:36:\"Whether the file is being displayed.\";b:1;s:15:\"The image file.\";b:1;s:24:\"The \"Alt\" attribute text\";b:1;s:26:\"The \"Title\" attribute text\";b:1;s:7:\"Node ID\";b:1;s:26:\"The unique ID of the node.\";b:1;s:37:\"The unique ID of the node\'s revision.\";b:1;s:6:\"Is new\";b:1;s:58:\"Whether the node is new and not saved to the database yet.\";b:1;s:45:\"Whether the node is published or unpublished.\";b:1;s:21:\"Promoted to frontpage\";b:1;s:46:\"Whether the node is promoted to the frontpage.\";b:1;s:15:\"Sticky in lists\";b:1;s:70:\"Whether the node is displayed at the top of lists in which it appears.\";b:1;s:23:\"Translation source node\";b:1;s:58:\"The original-language version of this node, if one exists.\";b:1;s:16:\"Creates revision\";b:1;s:48:\"Whether saving this node creates a new revision.\";b:1;s:72:\"The weight of the term, which is used for ordering terms during display.\";b:1;s:38:\"The parent terms of the taxonomy term.\";b:1;s:16:\"All parent terms\";b:1;s:65:\"Ancestors of the term, i.e. parent of all above hierarchy levels.\";b:1;s:44:\"The machine name of the taxonomy vocabulary.\";b:1;s:33:\"The url of the account edit page.\";b:1;s:41:\"The date the user last accessed the site.\";b:1;s:10:\"User roles\";b:1;s:22:\"The roles of the user.\";b:1;s:38:\"Whether the user is active or blocked.\";b:1;s:25:\"The user\'s default theme.\";b:1;s:14:\"Logged in user\";b:1;s:29:\"The currently logged in user.\";b:1;s:12:\"Current date\";b:1;s:26:\"The current date and time.\";b:1;s:12:\"Current page\";b:1;s:48:\"Information related to the current page request.\";b:1;s:53:\"The internal Drupal path of the current page request.\";b:1;s:41:\"The full URL of the current page request.\";b:1;s:35:\"The size of the file, in kilobytes.\";b:1;s:16:\"Comments allowed\";b:1;s:18:\"The node comments.\";b:1;s:18:\"The main body text\";b:1;s:18:\"Interface language\";b:1;s:57:\"The language code of the current user interface language.\";b:1;s:16:\"Content language\";b:1;s:50:\"The language code of the current content language.\";b:1;s:26:\"(No information available)\";b:1;s:21:\"Rendered @entity-type\";b:1;s:72:\"The @entity-type of the current relationship rendered using a view mode.\";b:1;s:6:\"Entity\";b:1;s:15:\"Rendered entity\";b:1;s:32:\"Displays a single chosen entity.\";b:1;s:23:\"@label (!name:language)\";b:1;s:15:\"@label:language\";b:1;s:32:\"Language - Appears in: @bundles.\";b:1;s:10:\"<No value>\";b:1;s:18:\"Entity translation\";b:1;s:45:\"Information about a translation of an entity.\";b:1;s:9:\"Entity id\";b:1;s:14:\"The entity id.\";b:1;s:16:\"The entity type.\";b:1;s:33:\"The language of this translation.\";b:1;s:20:\"The source language.\";b:1;s:31:\"The status of this translation.\";b:1;s:12:\"Needs update\";b:1;s:49:\"Indicates if the translation needs to be updated.\";b:1;s:13:\"Created date.\";b:1;s:7:\"Changed\";b:1;s:13:\"Changed date.\";b:1;s:34:\"Link to translation overview page.\";b:1;s:18:\"Translation exists\";b:1;s:24:\"The label of the entity.\";b:1;s:20:\"Link to contact page\";b:1;s:47:\"Provide a simple link to the user contact page.\";b:1;s:32:\"Entity translation: translations\";b:1;s:24:\"Translation information.\";b:1;s:18:\"!title: translated\";b:1;s:58:\"Show the field !title translated into a specified language\";b:1;s:62:\"Renders a single entity in a specific view mode (e.g. teaser).\";b:1;s:13:\"All variables\";b:1;s:12:\"multilingual\";b:1;s:21:\"Multilingual settings\";b:1;s:10:\"Realm list\";b:1;s:46:\"List of variables that can be set for a realm.\";b:1;s:12:\"Realm weight\";b:1;s:44:\"Override default weight for realm variables.\";b:1;s:44:\"Multilingual variables, main variable names.\";b:1;s:44:\"Multilingual variables, real variable names.\";b:1;s:30:\"Hide content translation links\";b:1;s:70:\"Default language for content types with Multilingual support disabled.\";b:1;s:48:\"The site\'s default language (Default behaviour).\";b:1;s:31:\"Language neutral (Recommended).\";b:1;s:25:\"Extended language options\";b:1;s:49:\"Require language (Do not allow Language Neutral).\";b:1;s:34:\"Lock language (Cannot be changed).\";b:1;s:25:\"Extended language support\";b:1;s:24:\"Select nodes by language\";b:1;s:33:\"Select taxonomy terms by language\";b:1;s:70:\"Enable always for block content though it may be disabled for the page\";b:1;s:9:\"Skip tags\";b:1;s:71:\"Skip queries with these tags. Enter a list of tags separated by commas.\";b:1;s:21:\"Site default language\";b:1;s:42:\"Select the source for the Secondary links.\";b:1;s:11:\"Menu parent\";b:1;s:22:\"Select the menu parent\";b:1;s:12:\"Menu options\";b:1;s:26:\"Select the available menus\";b:1;s:23:\"Length of trimmed posts\";b:1;s:43:\"Must users preview posts before submitting?\";b:1;s:25:\"The name of this website.\";b:1;s:18:\"Site email address\";b:1;s:14:\"Anonymous user\";b:1;s:28:\"Number of posts on main page\";b:1;s:22:\"Global theme settings.\";b:1;s:14:\"Theme settings\";b:1;s:46:\"Logo, icons and other specific theme settings.\";b:1;s:20:\"Public registrations\";b:1;s:61:\"Require e-mail verification when a visitor creates an account\";b:1;s:28:\"User registration guidelines\";b:1;s:42:\"Welcome, new user created by administrator\";b:1;s:29:\"Welcome, no approval required\";b:1;s:40:\"Welcome, awaiting administrator approval\";b:1;s:23:\"Password recovery email\";b:1;s:67:\"Customize e-mail messages sent to users who request a new password.\";b:1;s:24:\"Account activation email\";b:1;s:21:\"Account blocked email\";b:1;s:21:\"Account deleted email\";b:1;s:36:\"Notify user when account is deleted.\";b:1;s:17:\"Signature support\";b:1;s:15:\"Picture support\";b:1;s:26:\"Picture maximum dimensions\";b:1;s:43:\"Maximum dimensions for pictures, in pixels.\";b:1;s:25:\"Picture maximum file size\";b:1;s:38:\"Maximum file size for pictures, in kB.\";b:1;s:16:\"Forum containers\";b:1;s:21:\"Languages for content\";b:1;s:64:\"Determines which languages will be allowed for content creation.\";b:1;s:31:\"Enable translation for language\";b:1;s:25:\"Translatable text formats\";b:1;s:15:\"Source language\";b:1;s:24:\"Debug string translation\";b:1;s:33:\"Synchronize fields for node type.\";b:1;s:14:\"Title settings\";b:1;s:30:\"Settings for the Title module.\";b:1;s:39:\"Configure global album photos settings.\";b:1;s:69:\"Configure extended options for multilingual content and translations.\";b:1;s:16:\"Translation sets\";b:1;s:26:\"Translation sets overview.\";b:1;s:23:\"Configure GMap settings\";b:1;s:13:\"GMap Location\";b:1;s:33:\"Configure GMap Location settings.\";b:1;s:16:\"CTools CSS Cache\";b:1;s:6:\"Exists\";b:1;s:42:\"GeoPHP %version library installed at %path\";b:1;s:15:\"GeoPHP and GEOS\";b:1;s:52:\"Proj4JS Library version @version installed at %path.\";b:1;s:18:\"Album Photo Access\";b:1;s:11:\"Access Type\";b:1;s:24:\"This albums Access type.\";b:1;s:43:\"The Access Type associated with this album.\";b:1;s:53:\"Access to the Access Type associated with this album.\";b:1;s:13:\"Recent images\";b:1;s:12:\"Changed date\";b:1;s:20:\"Changed year + month\";b:1;s:12:\"Changed year\";b:1;s:13:\"Changed month\";b:1;s:11:\"Changed day\";b:1;s:12:\"Changed week\";b:1;s:13:\"Version Count\";b:1;s:56:\"The total count of versions/revisions of a certain node.\";b:1;s:14:\"Dropdown links\";b:1;s:67:\"Displays fields in a dropdown list, like on the views listing page.\";b:1;s:52:\"Combine multiple fields together and search by them.\";b:1;s:64:\"Determines if a translation exists for a particular translation.\";b:1;s:17:\"Specific language\";b:1;s:51:\"Sort by a specific language that the content is in.\";b:1;s:45:\"Has taxonomy term ID with depth (using joins)\";b:1;s:43:\"Has taxonomy terms with depth (using joins)\";b:1;s:47:\"Set custom language as default for new content.\";b:1;s:23:\"Custom default language\";b:1;s:16:\"Current language\";b:1;s:31:\"Class to use for the text group\";b:1;s:29:\"Database 4 byte UTF-8 support\";b:1;s:15:\"Realm variables\";b:1;s:18:\"Contact categories\";b:1;s:11:\"Field Bases\";b:1;s:15:\"Field Instances\";b:1;}s:11:\"geolocation\";a:1:{s:8:\"Location\";b:1;}}',0,1651320294,1),('node_types:en','O:8:\"stdClass\":2:{s:5:\"types\";a:9:{s:6:\"photos\";O:8:\"stdClass\":14:{s:4:\"type\";s:6:\"photos\";s:4:\"name\";s:5:\"Album\";s:4:\"base\";s:6:\"photos\";s:6:\"module\";s:6:\"photos\";s:11:\"description\";s:24:\"Create new photo albums.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:10:\"Album name\";s:6:\"custom\";s:1:\"0\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"1\";s:8:\"disabled\";b:0;s:9:\"orig_type\";s:6:\"photos\";s:16:\"disabled_changed\";b:0;}s:5:\"forum\";O:8:\"stdClass\":14:{s:4:\"type\";s:5:\"forum\";s:4:\"name\";s:11:\"Forum topic\";s:4:\"base\";s:5:\"forum\";s:6:\"module\";s:5:\"forum\";s:11:\"description\";s:69:\"A <em>forum topic</em> starts a new discussion thread within a forum.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:7:\"Subject\";s:6:\"custom\";s:1:\"0\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"1\";s:8:\"disabled\";b:0;s:9:\"orig_type\";s:5:\"forum\";s:16:\"disabled_changed\";b:0;}s:7:\"article\";O:8:\"stdClass\":14:{s:4:\"type\";s:7:\"article\";s:4:\"name\";s:7:\"Article\";s:4:\"base\";s:12:\"node_content\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:89:\"Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:8:\"disabled\";s:1:\"0\";s:9:\"orig_type\";s:7:\"article\";s:16:\"disabled_changed\";b:0;}s:7:\"mooring\";O:8:\"stdClass\":14:{s:4:\"type\";s:7:\"mooring\";s:4:\"name\";s:7:\"Mooring\";s:4:\"base\";s:12:\"node_content\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:9:\"A mooring\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:8:\"disabled\";s:1:\"0\";s:9:\"orig_type\";s:7:\"mooring\";s:16:\"disabled_changed\";b:0;}s:26:\"openlayers_example_content\";O:8:\"stdClass\":14:{s:4:\"type\";s:26:\"openlayers_example_content\";s:4:\"name\";s:26:\"OpenLayers Example Content\";s:4:\"base\";s:12:\"node_content\";s:6:\"module\";s:31:\"openlayers_test_example_feature\";s:11:\"description\";s:58:\"This is an example content type for the OpenLayers module.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:6:\"custom\";s:1:\"0\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"1\";s:8:\"disabled\";s:1:\"0\";s:9:\"orig_type\";s:26:\"openlayers_example_content\";s:16:\"disabled_changed\";b:0;}s:4:\"page\";O:8:\"stdClass\":14:{s:4:\"type\";s:4:\"page\";s:4:\"name\";s:10:\"Basic page\";s:4:\"base\";s:12:\"node_content\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:77:\"Use <em>basic pages</em> for your static content, such as an \'About us\' page.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:8:\"disabled\";s:1:\"0\";s:9:\"orig_type\";s:4:\"page\";s:16:\"disabled_changed\";b:0;}s:19:\"photo_moorings_2010\";O:8:\"stdClass\":14:{s:4:\"type\";s:19:\"photo_moorings_2010\";s:4:\"name\";s:19:\"Photo Moorings 2010\";s:4:\"base\";s:12:\"node_content\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:0:\"\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:19:\"Photo Moorings 2010\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:8:\"disabled\";s:1:\"0\";s:9:\"orig_type\";s:19:\"photo_moorings_2010\";s:16:\"disabled_changed\";b:0;}s:19:\"photo_moorings_2012\";O:8:\"stdClass\":14:{s:4:\"type\";s:19:\"photo_moorings_2012\";s:4:\"name\";s:19:\"Photo Moorings 2012\";s:4:\"base\";s:12:\"node_content\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:0:\"\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:19:\"Photo Moorings 2012\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:8:\"disabled\";s:1:\"0\";s:9:\"orig_type\";s:19:\"photo_moorings_2012\";s:16:\"disabled_changed\";b:0;}s:19:\"photo_moorings_2014\";O:8:\"stdClass\":14:{s:4:\"type\";s:19:\"photo_moorings_2014\";s:4:\"name\";s:19:\"Photo Moorings 2014\";s:4:\"base\";s:12:\"node_content\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:0:\"\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:19:\"Photo Moorings 2014\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:8:\"disabled\";s:1:\"0\";s:9:\"orig_type\";s:5:\"photo\";s:16:\"disabled_changed\";b:0;}}s:5:\"names\";a:9:{s:6:\"photos\";s:5:\"Album\";s:7:\"article\";s:7:\"Article\";s:4:\"page\";s:10:\"Basic page\";s:5:\"forum\";s:11:\"Forum topic\";s:7:\"mooring\";s:7:\"Mooring\";s:26:\"openlayers_example_content\";s:26:\"OpenLayers Example Content\";s:19:\"photo_moorings_2010\";s:19:\"Photo Moorings 2010\";s:19:\"photo_moorings_2012\";s:19:\"Photo Moorings 2012\";s:19:\"photo_moorings_2014\";s:19:\"Photo Moorings 2014\";}}',0,1538750673,1),('node_types:it','O:8:\"stdClass\":2:{s:5:\"types\";a:9:{s:6:\"photos\";O:8:\"stdClass\":14:{s:4:\"type\";s:6:\"photos\";s:4:\"name\";s:5:\"Album\";s:4:\"base\";s:6:\"photos\";s:6:\"module\";s:6:\"photos\";s:11:\"description\";s:24:\"Create new photo albums.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:10:\"Album name\";s:6:\"custom\";s:1:\"0\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"1\";s:8:\"disabled\";b:0;s:9:\"orig_type\";s:6:\"photos\";s:16:\"disabled_changed\";b:0;}s:5:\"forum\";O:8:\"stdClass\":14:{s:4:\"type\";s:5:\"forum\";s:4:\"name\";s:11:\"Forum topic\";s:4:\"base\";s:5:\"forum\";s:6:\"module\";s:5:\"forum\";s:11:\"description\";s:69:\"A <em>forum topic</em> starts a new discussion thread within a forum.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:7:\"Subject\";s:6:\"custom\";s:1:\"0\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"1\";s:8:\"disabled\";b:0;s:9:\"orig_type\";s:5:\"forum\";s:16:\"disabled_changed\";b:0;}s:7:\"article\";O:8:\"stdClass\":14:{s:4:\"type\";s:7:\"article\";s:4:\"name\";s:7:\"Article\";s:4:\"base\";s:12:\"node_content\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:89:\"Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:8:\"disabled\";s:1:\"0\";s:9:\"orig_type\";s:7:\"article\";s:16:\"disabled_changed\";b:0;}s:7:\"mooring\";O:8:\"stdClass\":14:{s:4:\"type\";s:7:\"mooring\";s:4:\"name\";s:7:\"Mooring\";s:4:\"base\";s:12:\"node_content\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:9:\"A mooring\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:8:\"disabled\";s:1:\"0\";s:9:\"orig_type\";s:7:\"mooring\";s:16:\"disabled_changed\";b:0;}s:26:\"openlayers_example_content\";O:8:\"stdClass\":14:{s:4:\"type\";s:26:\"openlayers_example_content\";s:4:\"name\";s:26:\"OpenLayers Example Content\";s:4:\"base\";s:12:\"node_content\";s:6:\"module\";s:31:\"openlayers_test_example_feature\";s:11:\"description\";s:58:\"This is an example content type for the OpenLayers module.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:6:\"custom\";s:1:\"0\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"1\";s:8:\"disabled\";s:1:\"0\";s:9:\"orig_type\";s:26:\"openlayers_example_content\";s:16:\"disabled_changed\";b:0;}s:4:\"page\";O:8:\"stdClass\":14:{s:4:\"type\";s:4:\"page\";s:4:\"name\";s:10:\"Basic page\";s:4:\"base\";s:12:\"node_content\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:77:\"Use <em>basic pages</em> for your static content, such as an \'About us\' page.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:8:\"disabled\";s:1:\"0\";s:9:\"orig_type\";s:4:\"page\";s:16:\"disabled_changed\";b:0;}s:19:\"photo_moorings_2010\";O:8:\"stdClass\":14:{s:4:\"type\";s:19:\"photo_moorings_2010\";s:4:\"name\";s:19:\"Photo Moorings 2010\";s:4:\"base\";s:12:\"node_content\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:0:\"\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:19:\"Photo Moorings 2010\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:8:\"disabled\";s:1:\"0\";s:9:\"orig_type\";s:19:\"photo_moorings_2010\";s:16:\"disabled_changed\";b:0;}s:19:\"photo_moorings_2012\";O:8:\"stdClass\":14:{s:4:\"type\";s:19:\"photo_moorings_2012\";s:4:\"name\";s:19:\"Photo Moorings 2012\";s:4:\"base\";s:12:\"node_content\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:0:\"\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:19:\"Photo Moorings 2012\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:8:\"disabled\";s:1:\"0\";s:9:\"orig_type\";s:19:\"photo_moorings_2012\";s:16:\"disabled_changed\";b:0;}s:19:\"photo_moorings_2014\";O:8:\"stdClass\":14:{s:4:\"type\";s:19:\"photo_moorings_2014\";s:4:\"name\";s:19:\"Photo Moorings 2014\";s:4:\"base\";s:12:\"node_content\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:0:\"\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:19:\"Photo Moorings 2014\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:8:\"disabled\";s:1:\"0\";s:9:\"orig_type\";s:5:\"photo\";s:16:\"disabled_changed\";b:0;}}s:5:\"names\";a:9:{s:6:\"photos\";s:5:\"Album\";s:7:\"article\";s:7:\"Article\";s:4:\"page\";s:10:\"Basic page\";s:5:\"forum\";s:11:\"Forum topic\";s:7:\"mooring\";s:7:\"Mooring\";s:26:\"openlayers_example_content\";s:26:\"OpenLayers Example Content\";s:19:\"photo_moorings_2010\";s:19:\"Photo Moorings 2010\";s:19:\"photo_moorings_2012\";s:19:\"Photo Moorings 2012\";s:19:\"photo_moorings_2014\";s:19:\"Photo Moorings 2014\";}}',0,1538750988,1),('plugins:geocoder:geocoder_handler','a:14:{s:3:\"wkt\";a:11:{s:5:\"title\";s:3:\"WKT\";s:11:\"description\";s:32:\"Get the geometry of a WKT string\";s:8:\"callback\";s:12:\"geocoder_wkt\";s:11:\"field_types\";a:5:{i:0;s:4:\"text\";i:1;s:9:\"text_long\";i:2;s:4:\"file\";i:3;s:8:\"geofield\";i:4;s:8:\"computed\";}s:14:\"field_callback\";s:18:\"geocoder_wkt_field\";s:6:\"module\";s:8:\"geocoder\";s:4:\"name\";s:3:\"wkt\";s:4:\"path\";s:51:\"sites/all/modules/geocoder/plugins/geocoder_handler\";s:4:\"file\";s:7:\"wkt.inc\";s:13:\"plugin module\";s:8:\"geocoder\";s:11:\"plugin type\";s:16:\"geocoder_handler\";}s:6:\"google\";a:13:{s:5:\"title\";s:15:\"Google Geocoder\";s:11:\"description\";s:28:\"Geocodes via google geocoder\";s:8:\"callback\";s:15:\"geocoder_google\";s:11:\"field_types\";a:8:{i:0;s:4:\"text\";i:1;s:9:\"text_long\";i:2;s:12:\"addressfield\";i:3;s:8:\"location\";i:4;s:17:\"text_with_summary\";i:5;s:8:\"computed\";i:6;s:23:\"taxonomy_term_reference\";i:7;s:7:\"country\";}s:14:\"field_callback\";s:21:\"geocoder_google_field\";s:17:\"settings_callback\";s:20:\"geocoder_google_form\";s:16:\"terms_of_service\";s:64:\"http://code.google.com/apis/maps/documentation/geocoding/#Limits\";s:6:\"module\";s:8:\"geocoder\";s:4:\"name\";s:6:\"google\";s:4:\"path\";s:51:\"sites/all/modules/geocoder/plugins/geocoder_handler\";s:4:\"file\";s:10:\"google.inc\";s:13:\"plugin module\";s:8:\"geocoder\";s:11:\"plugin type\";s:16:\"geocoder_handler\";}s:6:\"latlon\";a:11:{s:5:\"title\";s:20:\"Latitude / Longitude\";s:11:\"description\";s:58:\"Parse location from freeform latitude and longitude string\";s:8:\"callback\";s:15:\"geocoder_latlon\";s:11:\"field_types\";a:4:{i:0;s:4:\"text\";i:1;s:9:\"text_long\";i:2;s:17:\"text_with_summary\";i:3;s:8:\"computed\";}s:14:\"field_callback\";s:21:\"geocoder_latlon_field\";s:6:\"module\";s:8:\"geocoder\";s:4:\"name\";s:6:\"latlon\";s:4:\"path\";s:51:\"sites/all/modules/geocoder/plugins/geocoder_handler\";s:4:\"file\";s:10:\"latlon.inc\";s:13:\"plugin module\";s:8:\"geocoder\";s:11:\"plugin type\";s:16:\"geocoder_handler\";}s:23:\"openstreetmap_nominatim\";a:12:{s:5:\"title\";s:23:\"OpenStreetMap Nominatim\";s:11:\"description\";s:36:\"Geocodes via OpenStreetMap Nominatim\";s:8:\"callback\";s:32:\"geocoder_openstreetmap_nominatim\";s:11:\"field_types\";a:7:{i:0;s:4:\"text\";i:1;s:9:\"text_long\";i:2;s:12:\"addressfield\";i:3;s:8:\"location\";i:4;s:17:\"text_with_summary\";i:5;s:8:\"computed\";i:6;s:23:\"taxonomy_term_reference\";}s:14:\"field_callback\";s:38:\"geocoder_openstreetmap_nominatim_field\";s:16:\"terms_of_service\";s:38:\"http://www.openstreetmap.org/copyright\";s:6:\"module\";s:8:\"geocoder\";s:4:\"name\";s:23:\"openstreetmap_nominatim\";s:4:\"path\";s:51:\"sites/all/modules/geocoder/plugins/geocoder_handler\";s:4:\"file\";s:27:\"openstreetmap_nominatim.inc\";s:13:\"plugin module\";s:8:\"geocoder\";s:11:\"plugin type\";s:16:\"geocoder_handler\";}s:6:\"mapzen\";a:11:{s:5:\"title\";s:6:\"Mapzen\";s:11:\"description\";s:26:\"Geocodes via Mapzen search\";s:8:\"callback\";s:15:\"geocoder_mapzen\";s:11:\"field_types\";a:4:{i:0;s:4:\"text\";i:1;s:9:\"text_long\";i:2;s:4:\"file\";i:3;s:8:\"computed\";}s:14:\"field_callback\";s:21:\"geocoder_mapzen_field\";s:6:\"module\";s:8:\"geocoder\";s:4:\"name\";s:6:\"mapzen\";s:4:\"path\";s:51:\"sites/all/modules/geocoder/plugins/geocoder_handler\";s:4:\"file\";s:10:\"mapzen.inc\";s:13:\"plugin module\";s:8:\"geocoder\";s:11:\"plugin type\";s:16:\"geocoder_handler\";}s:4:\"bing\";a:12:{s:5:\"title\";s:4:\"Bing\";s:11:\"description\";s:17:\"Geocodes via Bing\";s:8:\"callback\";s:13:\"geocoder_bing\";s:11:\"field_types\";a:8:{i:0;s:4:\"text\";i:1;s:9:\"text_long\";i:2;s:12:\"addressfield\";i:3;s:8:\"location\";i:4;s:17:\"text_with_summary\";i:5;s:8:\"computed\";i:6;s:23:\"taxonomy_term_reference\";i:7;s:7:\"country\";}s:14:\"field_callback\";s:19:\"geocoder_bing_field\";s:16:\"terms_of_service\";s:53:\"http://msdn.microsoft.com/en-us/library/ff701714.aspx\";s:6:\"module\";s:8:\"geocoder\";s:4:\"name\";s:4:\"bing\";s:4:\"path\";s:51:\"sites/all/modules/geocoder/plugins/geocoder_handler\";s:4:\"file\";s:8:\"bing.inc\";s:13:\"plugin module\";s:8:\"geocoder\";s:11:\"plugin type\";s:16:\"geocoder_handler\";}s:4:\"exif\";a:11:{s:5:\"title\";s:10:\"Image/exif\";s:11:\"description\";s:78:\"Get a location from an image that was taken with a GPS enabled phone or camera\";s:8:\"callback\";s:13:\"geocoder_exif\";s:11:\"field_types\";a:2:{i:0;s:4:\"file\";i:1;s:5:\"image\";}s:14:\"field_callback\";s:19:\"geocoder_exif_field\";s:6:\"module\";s:8:\"geocoder\";s:4:\"name\";s:4:\"exif\";s:4:\"path\";s:51:\"sites/all/modules/geocoder/plugins/geocoder_handler\";s:4:\"file\";s:8:\"exif.inc\";s:13:\"plugin module\";s:8:\"geocoder\";s:11:\"plugin type\";s:16:\"geocoder_handler\";}s:3:\"gpx\";a:11:{s:5:\"title\";s:3:\"GPX\";s:11:\"description\";s:40:\"Get the geometry of a GPX string or file\";s:8:\"callback\";s:12:\"geocoder_gpx\";s:11:\"field_types\";a:4:{i:0;s:4:\"text\";i:1;s:9:\"text_long\";i:2;s:4:\"file\";i:3;s:8:\"computed\";}s:14:\"field_callback\";s:18:\"geocoder_gpx_field\";s:6:\"module\";s:8:\"geocoder\";s:4:\"name\";s:3:\"gpx\";s:4:\"path\";s:51:\"sites/all/modules/geocoder/plugins/geocoder_handler\";s:4:\"file\";s:7:\"gpx.inc\";s:13:\"plugin module\";s:8:\"geocoder\";s:11:\"plugin type\";s:16:\"geocoder_handler\";}s:4:\"json\";a:11:{s:5:\"title\";s:7:\"GeoJSON\";s:11:\"description\";s:50:\"Get the geometry of a GeoJSON string, file, or URL\";s:8:\"callback\";s:13:\"geocoder_json\";s:11:\"field_types\";a:4:{i:0;s:4:\"text\";i:1;s:9:\"text_long\";i:2;s:4:\"file\";i:3;s:8:\"computed\";}s:14:\"field_callback\";s:19:\"geocoder_json_field\";s:6:\"module\";s:8:\"geocoder\";s:4:\"name\";s:4:\"json\";s:4:\"path\";s:51:\"sites/all/modules/geocoder/plugins/geocoder_handler\";s:4:\"file\";s:8:\"json.inc\";s:13:\"plugin module\";s:8:\"geocoder\";s:11:\"plugin type\";s:16:\"geocoder_handler\";}s:3:\"kml\";a:11:{s:5:\"title\";s:3:\"KML\";s:11:\"description\";s:86:\"Get the geometry out of a KML string, file, or URL. Supports KMZ files upload as well.\";s:8:\"callback\";s:12:\"geocoder_kml\";s:11:\"field_types\";a:4:{i:0;s:4:\"text\";i:1;s:9:\"text_long\";i:2;s:4:\"file\";i:3;s:8:\"computed\";}s:14:\"field_callback\";s:18:\"geocoder_kml_field\";s:6:\"module\";s:8:\"geocoder\";s:4:\"name\";s:3:\"kml\";s:4:\"path\";s:51:\"sites/all/modules/geocoder/plugins/geocoder_handler\";s:4:\"file\";s:7:\"kml.inc\";s:13:\"plugin module\";s:8:\"geocoder\";s:11:\"plugin type\";s:16:\"geocoder_handler\";}s:18:\"mapquest_nominatim\";a:12:{s:5:\"title\";s:18:\"MapQuest Nominatim\";s:11:\"description\";s:31:\"Geocodes via MapQuest Nominatim\";s:8:\"callback\";s:27:\"geocoder_mapquest_nominatim\";s:11:\"field_types\";a:8:{i:0;s:4:\"text\";i:1;s:9:\"text_long\";i:2;s:12:\"addressfield\";i:3;s:8:\"location\";i:4;s:17:\"text_with_summary\";i:5;s:8:\"computed\";i:6;s:23:\"taxonomy_term_reference\";i:7;s:7:\"country\";}s:14:\"field_callback\";s:33:\"geocoder_mapquest_nominatim_field\";s:16:\"terms_of_service\";s:51:\"http://developer.mapquest.com/web/info/terms-of-use\";s:6:\"module\";s:8:\"geocoder\";s:4:\"name\";s:18:\"mapquest_nominatim\";s:4:\"path\";s:51:\"sites/all/modules/geocoder/plugins/geocoder_handler\";s:4:\"file\";s:22:\"mapquest_nominatim.inc\";s:13:\"plugin module\";s:8:\"geocoder\";s:11:\"plugin type\";s:16:\"geocoder_handler\";}s:5:\"yahoo\";a:12:{s:5:\"title\";s:17:\"Yahoo Placefinder\";s:11:\"description\";s:30:\"Geocodes via Yahoo Placefinder\";s:8:\"callback\";s:14:\"geocoder_yahoo\";s:11:\"field_types\";a:8:{i:0;s:4:\"text\";i:1;s:9:\"text_long\";i:2;s:12:\"addressfield\";i:3;s:8:\"location\";i:4;s:17:\"text_with_summary\";i:5;s:8:\"computed\";i:6;s:23:\"taxonomy_term_reference\";i:7;s:7:\"country\";}s:14:\"field_callback\";s:20:\"geocoder_yahoo_field\";s:16:\"terms_of_service\";s:43:\"http://developer.yahoo.com/geo/placefinder/\";s:6:\"module\";s:8:\"geocoder\";s:4:\"name\";s:5:\"yahoo\";s:4:\"path\";s:51:\"sites/all/modules/geocoder/plugins/geocoder_handler\";s:4:\"file\";s:9:\"yahoo.inc\";s:13:\"plugin module\";s:8:\"geocoder\";s:11:\"plugin type\";s:16:\"geocoder_handler\";}s:6:\"mapbox\";a:12:{s:5:\"title\";s:6:\"Mapbox\";s:11:\"description\";s:19:\"Geocodes via Mapbox\";s:8:\"callback\";s:15:\"geocoder_mapbox\";s:11:\"field_types\";a:7:{i:0;s:4:\"text\";i:1;s:9:\"text_long\";i:2;s:12:\"addressfield\";i:3;s:8:\"location\";i:4;s:17:\"text_with_summary\";i:5;s:8:\"computed\";i:6;s:23:\"taxonomy_term_reference\";}s:14:\"field_callback\";s:21:\"geocoder_mapbox_field\";s:16:\"terms_of_service\";s:37:\"https://www.mapbox.com/tos/#geocoding\";s:6:\"module\";s:8:\"geocoder\";s:4:\"name\";s:6:\"mapbox\";s:4:\"path\";s:51:\"sites/all/modules/geocoder/plugins/geocoder_handler\";s:4:\"file\";s:10:\"mapbox.inc\";s:13:\"plugin module\";s:8:\"geocoder\";s:11:\"plugin type\";s:16:\"geocoder_handler\";}s:6:\"yandex\";a:12:{s:5:\"title\";s:30:\"Yandex (Яндекс.Карт)\";s:11:\"description\";s:53:\"Geocodes addresses via Yandex (Яндекс.Карт)\";s:8:\"callback\";s:15:\"geocoder_yandex\";s:11:\"field_types\";a:8:{i:0;s:4:\"text\";i:1;s:9:\"text_long\";i:2;s:12:\"addressfield\";i:3;s:8:\"location\";i:4;s:17:\"text_with_summary\";i:5;s:8:\"computed\";i:6;s:23:\"taxonomy_term_reference\";i:7;s:7:\"country\";}s:14:\"field_callback\";s:21:\"geocoder_yandex_field\";s:16:\"terms_of_service\";s:62:\"http://api.yandex.ru/maps/geocoder/doc/desc/concepts/About.xml\";s:6:\"module\";s:8:\"geocoder\";s:4:\"name\";s:6:\"yandex\";s:4:\"path\";s:51:\"sites/all/modules/geocoder/plugins/geocoder_handler\";s:4:\"file\";s:10:\"yandex.inc\";s:13:\"plugin module\";s:8:\"geocoder\";s:11:\"plugin type\";s:16:\"geocoder_handler\";}}',0,1652162474,1),('schema','a:124:{s:14:\"variable_store\";a:5:{s:6:\"fields\";a:5:{s:5:\"realm\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:50;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:9:\"realm_key\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:50;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"value\";a:3:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;s:4:\"size\";s:3:\"big\";}s:10:\"serialized\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:1;}}s:11:\"primary key\";a:3:{i:0;s:5:\"realm\";i:1;s:9:\"realm_key\";i:2;s:4:\"name\";}s:7:\"indexes\";a:1:{s:11:\"realm_value\";a:2:{i:0;s:5:\"realm\";i:1;s:9:\"realm_key\";}}s:6:\"module\";s:14:\"variable_store\";s:4:\"name\";s:14:\"variable_store\";}s:5:\"block\";a:6:{s:6:\"fields\";a:13:{s:3:\"bid\";a:2:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;}s:6:\"module\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"delta\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:1:\"0\";}s:5:\"theme\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"status\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:6:\"weight\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"region\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"custom\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:10:\"visibility\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:5:\"pages\";a:2:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;}s:5:\"title\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:12:\"translatable\";b:1;}s:5:\"cache\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:1;s:4:\"size\";s:4:\"tiny\";}s:9:\"i18n_mode\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:11:\"description\";s:24:\"Block multilingual mode.\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"bid\";}s:11:\"unique keys\";a:1:{s:3:\"tmd\";a:3:{i:0;s:5:\"theme\";i:1;s:6:\"module\";i:2;s:5:\"delta\";}}s:7:\"indexes\";a:1:{s:4:\"list\";a:5:{i:0;s:5:\"theme\";i:1;s:6:\"status\";i:2;s:6:\"region\";i:3;s:6:\"weight\";i:4;s:6:\"module\";}}s:6:\"module\";s:5:\"block\";s:4:\"name\";s:5:\"block\";}s:10:\"block_role\";a:5:{s:6:\"fields\";a:3:{s:6:\"module\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;}s:5:\"delta\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;}s:3:\"rid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}}s:11:\"primary key\";a:3:{i:0;s:6:\"module\";i:1;s:5:\"delta\";i:2;s:3:\"rid\";}s:7:\"indexes\";a:1:{s:3:\"rid\";a:1:{i:0;s:3:\"rid\";}}s:6:\"module\";s:5:\"block\";s:4:\"name\";s:10:\"block_role\";}s:12:\"block_custom\";a:5:{s:6:\"fields\";a:4:{s:3:\"bid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:4:\"body\";a:4:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";s:12:\"translatable\";b:1;}s:4:\"info\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:11:\"unique keys\";a:1:{s:4:\"info\";a:1:{i:0;s:4:\"info\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"bid\";}s:6:\"module\";s:5:\"block\";s:4:\"name\";s:12:\"block_custom\";}s:11:\"cache_block\";a:5:{s:6:\"fields\";a:5:{s:3:\"cid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"serialized\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:6:\"module\";s:5:\"block\";s:4:\"name\";s:11:\"cache_block\";}s:7:\"comment\";a:6:{s:6:\"fields\";a:14:{s:3:\"cid\";a:2:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;}s:3:\"pid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"nid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"uid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"subject\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"hostname\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"changed\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"status\";a:5:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:1;s:4:\"size\";s:4:\"tiny\";}s:6:\"thread\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;}s:4:\"name\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:60;s:8:\"not null\";b:0;}s:4:\"mail\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:0;}s:8:\"homepage\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:12;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}}s:7:\"indexes\";a:5:{s:18:\"comment_status_pid\";a:2:{i:0;s:3:\"pid\";i:1;s:6:\"status\";}s:15:\"comment_num_new\";a:5:{i:0;s:3:\"nid\";i:1;s:6:\"status\";i:2;s:7:\"created\";i:3;s:3:\"cid\";i:4;s:6:\"thread\";}s:11:\"comment_uid\";a:1:{i:0;s:3:\"uid\";}s:20:\"comment_nid_language\";a:2:{i:0;s:3:\"nid\";i:1;s:8:\"language\";}s:15:\"comment_created\";a:1:{i:0;s:7:\"created\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:12:\"foreign keys\";a:2:{s:12:\"comment_node\";a:2:{s:5:\"table\";s:4:\"node\";s:7:\"columns\";a:1:{s:3:\"nid\";s:3:\"nid\";}}s:14:\"comment_author\";a:2:{s:5:\"table\";s:5:\"users\";s:7:\"columns\";a:1:{s:3:\"uid\";s:3:\"uid\";}}}s:6:\"module\";s:7:\"comment\";s:4:\"name\";s:7:\"comment\";}s:23:\"node_comment_statistics\";a:6:{s:6:\"fields\";a:6:{s:3:\"nid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"cid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:22:\"last_comment_timestamp\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:17:\"last_comment_name\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:60;s:8:\"not null\";b:0;}s:16:\"last_comment_uid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:13:\"comment_count\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:1:{i:0;s:3:\"nid\";}s:7:\"indexes\";a:3:{s:22:\"node_comment_timestamp\";a:1:{i:0;s:22:\"last_comment_timestamp\";}s:13:\"comment_count\";a:1:{i:0;s:13:\"comment_count\";}s:16:\"last_comment_uid\";a:1:{i:0;s:16:\"last_comment_uid\";}}s:12:\"foreign keys\";a:2:{s:15:\"statistics_node\";a:2:{s:5:\"table\";s:4:\"node\";s:7:\"columns\";a:1:{s:3:\"nid\";s:3:\"nid\";}}s:19:\"last_comment_author\";a:2:{s:5:\"table\";s:5:\"users\";s:7:\"columns\";a:1:{s:16:\"last_comment_uid\";s:3:\"uid\";}}}s:6:\"module\";s:7:\"comment\";s:4:\"name\";s:23:\"node_comment_statistics\";}s:7:\"contact\";a:6:{s:6:\"fields\";a:6:{s:3:\"cid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:8:\"category\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:12:\"translatable\";b:1;}s:10:\"recipients\";a:3:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;s:4:\"size\";s:3:\"big\";}s:5:\"reply\";a:3:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;s:4:\"size\";s:3:\"big\";}s:6:\"weight\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:8:\"selected\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:11:\"unique keys\";a:1:{s:8:\"category\";a:1:{i:0;s:8:\"category\";}}s:7:\"indexes\";a:1:{s:4:\"list\";a:2:{i:0;s:6:\"weight\";i:1;s:8:\"category\";}}s:6:\"module\";s:7:\"contact\";s:4:\"name\";s:7:\"contact\";}s:19:\"ctools_object_cache\";a:5:{s:6:\"fields\";a:5:{s:3:\"sid\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:2:\"64\";s:8:\"not null\";b:1;}s:4:\"name\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;}s:3:\"obj\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;}s:7:\"updated\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"data\";a:3:{s:4:\"type\";s:4:\"blob\";s:4:\"size\";s:3:\"big\";s:9:\"serialize\";b:1;}}s:11:\"primary key\";a:3:{i:0;s:3:\"sid\";i:1;s:3:\"obj\";i:2;s:4:\"name\";}s:7:\"indexes\";a:1:{s:7:\"updated\";a:1:{i:0;s:7:\"updated\";}}s:6:\"module\";s:6:\"ctools\";s:4:\"name\";s:19:\"ctools_object_cache\";}s:16:\"ctools_css_cache\";a:4:{s:6:\"fields\";a:4:{s:3:\"cid\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:3:\"128\";s:8:\"not null\";b:1;}s:8:\"filename\";a:2:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:3:\"255\";}s:3:\"css\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:9:\"serialize\";b:1;}s:6:\"filter\";a:2:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:6:\"module\";s:6:\"ctools\";s:4:\"name\";s:16:\"ctools_css_cache\";}s:8:\"watchdog\";a:5:{s:6:\"fields\";a:11:{s:3:\"wid\";a:2:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;}s:3:\"uid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"message\";a:3:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;s:4:\"size\";s:3:\"big\";}s:9:\"variables\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:1;s:4:\"size\";s:3:\"big\";}s:8:\"severity\";a:5:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:4:\"link\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;s:7:\"default\";s:0:\"\";}s:8:\"location\";a:2:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;}s:7:\"referer\";a:2:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;}s:8:\"hostname\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:9:\"timestamp\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:1:{i:0;s:3:\"wid\";}s:7:\"indexes\";a:3:{s:4:\"type\";a:1:{i:0;s:4:\"type\";}s:3:\"uid\";a:1:{i:0;s:3:\"uid\";}s:8:\"severity\";a:1:{i:0;s:8:\"severity\";}}s:6:\"module\";s:5:\"dblog\";s:4:\"name\";s:8:\"watchdog\";}s:34:\"entity_translation_upgrade_history\";a:5:{s:6:\"fields\";a:4:{s:3:\"nid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:4:\"tnid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:12;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"complete\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:2:{s:4:\"tnid\";a:1:{i:0;s:4:\"tnid\";}s:8:\"complete\";a:1:{i:0;s:8:\"complete\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"nid\";}s:6:\"module\";s:26:\"entity_translation_upgrade\";s:4:\"name\";s:34:\"entity_translation_upgrade_history\";}s:12:\"field_config\";a:5:{s:6:\"fields\";a:13:{s:2:\"id\";a:2:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;}s:10:\"field_name\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;}s:4:\"type\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;}s:6:\"module\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"active\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:12:\"storage_type\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;}s:14:\"storage_module\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:14:\"storage_active\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"locked\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"data\";a:4:{s:4:\"type\";s:4:\"blob\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:1;s:9:\"serialize\";b:1;}s:11:\"cardinality\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:12:\"translatable\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"deleted\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:1:{i:0;s:2:\"id\";}s:7:\"indexes\";a:8:{s:10:\"field_name\";a:1:{i:0;s:10:\"field_name\";}s:6:\"active\";a:1:{i:0;s:6:\"active\";}s:14:\"storage_active\";a:1:{i:0;s:14:\"storage_active\";}s:7:\"deleted\";a:1:{i:0;s:7:\"deleted\";}s:6:\"module\";a:1:{i:0;s:6:\"module\";}s:14:\"storage_module\";a:1:{i:0;s:14:\"storage_module\";}s:4:\"type\";a:1:{i:0;s:4:\"type\";}s:12:\"storage_type\";a:1:{i:0;s:12:\"storage_type\";}}s:6:\"module\";s:5:\"field\";s:4:\"name\";s:12:\"field_config\";}s:21:\"field_config_instance\";a:5:{s:6:\"fields\";a:7:{s:2:\"id\";a:2:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;}s:8:\"field_id\";a:2:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;}s:10:\"field_name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:11:\"entity_type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"bundle\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:4:{s:4:\"type\";s:4:\"blob\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:1;s:9:\"serialize\";b:1;}s:7:\"deleted\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:1:{i:0;s:2:\"id\";}s:7:\"indexes\";a:2:{s:17:\"field_name_bundle\";a:3:{i:0;s:10:\"field_name\";i:1;s:11:\"entity_type\";i:2;s:6:\"bundle\";}s:7:\"deleted\";a:1:{i:0;s:7:\"deleted\";}}s:6:\"module\";s:5:\"field\";s:4:\"name\";s:21:\"field_config_instance\";}s:11:\"cache_field\";a:5:{s:6:\"fields\";a:5:{s:3:\"cid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"serialized\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:6:\"module\";s:5:\"field\";s:4:\"name\";s:11:\"cache_field\";}s:23:\"field_data_comment_body\";a:6:{s:6:\"fields\";a:9:{s:11:\"entity_type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"bundle\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"deleted\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"entity_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:11:\"revision_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:0;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"delta\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:18:\"comment_body_value\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:19:\"comment_body_format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:11:\"primary key\";a:5:{i:0;s:11:\"entity_type\";i:1;s:9:\"entity_id\";i:2;s:7:\"deleted\";i:3;s:5:\"delta\";i:4;s:8:\"language\";}s:7:\"indexes\";a:7:{s:11:\"entity_type\";a:1:{i:0;s:11:\"entity_type\";}s:6:\"bundle\";a:1:{i:0;s:6:\"bundle\";}s:7:\"deleted\";a:1:{i:0;s:7:\"deleted\";}s:9:\"entity_id\";a:1:{i:0;s:9:\"entity_id\";}s:11:\"revision_id\";a:1:{i:0;s:11:\"revision_id\";}s:8:\"language\";a:1:{i:0;s:8:\"language\";}s:19:\"comment_body_format\";a:1:{i:0;s:19:\"comment_body_format\";}}s:12:\"foreign keys\";a:1:{s:19:\"comment_body_format\";a:2:{s:5:\"table\";s:13:\"filter_format\";s:7:\"columns\";a:1:{s:19:\"comment_body_format\";s:6:\"format\";}}}s:6:\"module\";s:17:\"field_sql_storage\";s:4:\"name\";s:23:\"field_data_comment_body\";}s:27:\"field_revision_comment_body\";a:6:{s:6:\"fields\";a:9:{s:11:\"entity_type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"bundle\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"deleted\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"entity_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:11:\"revision_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"delta\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:18:\"comment_body_value\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:19:\"comment_body_format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:11:\"primary key\";a:6:{i:0;s:11:\"entity_type\";i:1;s:9:\"entity_id\";i:2;s:11:\"revision_id\";i:3;s:7:\"deleted\";i:4;s:5:\"delta\";i:5;s:8:\"language\";}s:7:\"indexes\";a:7:{s:11:\"entity_type\";a:1:{i:0;s:11:\"entity_type\";}s:6:\"bundle\";a:1:{i:0;s:6:\"bundle\";}s:7:\"deleted\";a:1:{i:0;s:7:\"deleted\";}s:9:\"entity_id\";a:1:{i:0;s:9:\"entity_id\";}s:11:\"revision_id\";a:1:{i:0;s:11:\"revision_id\";}s:8:\"language\";a:1:{i:0;s:8:\"language\";}s:19:\"comment_body_format\";a:1:{i:0;s:19:\"comment_body_format\";}}s:12:\"foreign keys\";a:1:{s:19:\"comment_body_format\";a:2:{s:5:\"table\";s:13:\"filter_format\";s:7:\"columns\";a:1:{s:19:\"comment_body_format\";s:6:\"format\";}}}s:6:\"module\";s:17:\"field_sql_storage\";s:4:\"name\";s:27:\"field_revision_comment_body\";}s:15:\"field_data_body\";a:6:{s:6:\"fields\";a:10:{s:11:\"entity_type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"bundle\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"deleted\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"entity_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:11:\"revision_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:0;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"delta\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:10:\"body_value\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:12:\"body_summary\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:11:\"body_format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:11:\"primary key\";a:5:{i:0;s:11:\"entity_type\";i:1;s:9:\"entity_id\";i:2;s:7:\"deleted\";i:3;s:5:\"delta\";i:4;s:8:\"language\";}s:7:\"indexes\";a:7:{s:11:\"entity_type\";a:1:{i:0;s:11:\"entity_type\";}s:6:\"bundle\";a:1:{i:0;s:6:\"bundle\";}s:7:\"deleted\";a:1:{i:0;s:7:\"deleted\";}s:9:\"entity_id\";a:1:{i:0;s:9:\"entity_id\";}s:11:\"revision_id\";a:1:{i:0;s:11:\"revision_id\";}s:8:\"language\";a:1:{i:0;s:8:\"language\";}s:11:\"body_format\";a:1:{i:0;s:11:\"body_format\";}}s:12:\"foreign keys\";a:1:{s:11:\"body_format\";a:2:{s:5:\"table\";s:13:\"filter_format\";s:7:\"columns\";a:1:{s:11:\"body_format\";s:6:\"format\";}}}s:6:\"module\";s:17:\"field_sql_storage\";s:4:\"name\";s:15:\"field_data_body\";}s:19:\"field_revision_body\";a:6:{s:6:\"fields\";a:10:{s:11:\"entity_type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"bundle\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"deleted\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"entity_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:11:\"revision_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"delta\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:10:\"body_value\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:12:\"body_summary\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:11:\"body_format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:11:\"primary key\";a:6:{i:0;s:11:\"entity_type\";i:1;s:9:\"entity_id\";i:2;s:11:\"revision_id\";i:3;s:7:\"deleted\";i:4;s:5:\"delta\";i:5;s:8:\"language\";}s:7:\"indexes\";a:7:{s:11:\"entity_type\";a:1:{i:0;s:11:\"entity_type\";}s:6:\"bundle\";a:1:{i:0;s:6:\"bundle\";}s:7:\"deleted\";a:1:{i:0;s:7:\"deleted\";}s:9:\"entity_id\";a:1:{i:0;s:9:\"entity_id\";}s:11:\"revision_id\";a:1:{i:0;s:11:\"revision_id\";}s:8:\"language\";a:1:{i:0;s:8:\"language\";}s:11:\"body_format\";a:1:{i:0;s:11:\"body_format\";}}s:12:\"foreign keys\";a:1:{s:11:\"body_format\";a:2:{s:5:\"table\";s:13:\"filter_format\";s:7:\"columns\";a:1:{s:11:\"body_format\";s:6:\"format\";}}}s:6:\"module\";s:17:\"field_sql_storage\";s:4:\"name\";s:19:\"field_revision_body\";}s:21:\"field_data_field_tags\";a:6:{s:6:\"fields\";a:8:{s:11:\"entity_type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"bundle\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"deleted\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"entity_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:11:\"revision_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:0;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"delta\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:14:\"field_tags_tid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:0;}}s:11:\"primary key\";a:5:{i:0;s:11:\"entity_type\";i:1;s:9:\"entity_id\";i:2;s:7:\"deleted\";i:3;s:5:\"delta\";i:4;s:8:\"language\";}s:7:\"indexes\";a:7:{s:11:\"entity_type\";a:1:{i:0;s:11:\"entity_type\";}s:6:\"bundle\";a:1:{i:0;s:6:\"bundle\";}s:7:\"deleted\";a:1:{i:0;s:7:\"deleted\";}s:9:\"entity_id\";a:1:{i:0;s:9:\"entity_id\";}s:11:\"revision_id\";a:1:{i:0;s:11:\"revision_id\";}s:8:\"language\";a:1:{i:0;s:8:\"language\";}s:14:\"field_tags_tid\";a:1:{i:0;s:14:\"field_tags_tid\";}}s:12:\"foreign keys\";a:1:{s:14:\"field_tags_tid\";a:2:{s:5:\"table\";s:18:\"taxonomy_term_data\";s:7:\"columns\";a:1:{s:14:\"field_tags_tid\";s:3:\"tid\";}}}s:6:\"module\";s:17:\"field_sql_storage\";s:4:\"name\";s:21:\"field_data_field_tags\";}s:25:\"field_revision_field_tags\";a:6:{s:6:\"fields\";a:8:{s:11:\"entity_type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"bundle\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"deleted\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"entity_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:11:\"revision_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"delta\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:14:\"field_tags_tid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:0;}}s:11:\"primary key\";a:6:{i:0;s:11:\"entity_type\";i:1;s:9:\"entity_id\";i:2;s:11:\"revision_id\";i:3;s:7:\"deleted\";i:4;s:5:\"delta\";i:5;s:8:\"language\";}s:7:\"indexes\";a:7:{s:11:\"entity_type\";a:1:{i:0;s:11:\"entity_type\";}s:6:\"bundle\";a:1:{i:0;s:6:\"bundle\";}s:7:\"deleted\";a:1:{i:0;s:7:\"deleted\";}s:9:\"entity_id\";a:1:{i:0;s:9:\"entity_id\";}s:11:\"revision_id\";a:1:{i:0;s:11:\"revision_id\";}s:8:\"language\";a:1:{i:0;s:8:\"language\";}s:14:\"field_tags_tid\";a:1:{i:0;s:14:\"field_tags_tid\";}}s:12:\"foreign keys\";a:1:{s:14:\"field_tags_tid\";a:2:{s:5:\"table\";s:18:\"taxonomy_term_data\";s:7:\"columns\";a:1:{s:14:\"field_tags_tid\";s:3:\"tid\";}}}s:6:\"module\";s:17:\"field_sql_storage\";s:4:\"name\";s:25:\"field_revision_field_tags\";}s:22:\"field_data_field_image\";a:6:{s:6:\"fields\";a:12:{s:11:\"entity_type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"bundle\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"deleted\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"entity_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:11:\"revision_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:0;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"delta\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:15:\"field_image_fid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:0;s:8:\"unsigned\";b:1;}s:15:\"field_image_alt\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:512;s:8:\"not null\";b:0;}s:17:\"field_image_title\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:1024;s:8:\"not null\";b:0;}s:17:\"field_image_width\";a:2:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}s:18:\"field_image_height\";a:2:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}}s:11:\"primary key\";a:5:{i:0;s:11:\"entity_type\";i:1;s:9:\"entity_id\";i:2;s:7:\"deleted\";i:3;s:5:\"delta\";i:4;s:8:\"language\";}s:7:\"indexes\";a:7:{s:11:\"entity_type\";a:1:{i:0;s:11:\"entity_type\";}s:6:\"bundle\";a:1:{i:0;s:6:\"bundle\";}s:7:\"deleted\";a:1:{i:0;s:7:\"deleted\";}s:9:\"entity_id\";a:1:{i:0;s:9:\"entity_id\";}s:11:\"revision_id\";a:1:{i:0;s:11:\"revision_id\";}s:8:\"language\";a:1:{i:0;s:8:\"language\";}s:15:\"field_image_fid\";a:1:{i:0;s:15:\"field_image_fid\";}}s:12:\"foreign keys\";a:1:{s:15:\"field_image_fid\";a:2:{s:5:\"table\";s:12:\"file_managed\";s:7:\"columns\";a:1:{s:15:\"field_image_fid\";s:3:\"fid\";}}}s:6:\"module\";s:17:\"field_sql_storage\";s:4:\"name\";s:22:\"field_data_field_image\";}s:26:\"field_revision_field_image\";a:6:{s:6:\"fields\";a:12:{s:11:\"entity_type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"bundle\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"deleted\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"entity_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:11:\"revision_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"delta\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:15:\"field_image_fid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:0;s:8:\"unsigned\";b:1;}s:15:\"field_image_alt\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:512;s:8:\"not null\";b:0;}s:17:\"field_image_title\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:1024;s:8:\"not null\";b:0;}s:17:\"field_image_width\";a:2:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}s:18:\"field_image_height\";a:2:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}}s:11:\"primary key\";a:6:{i:0;s:11:\"entity_type\";i:1;s:9:\"entity_id\";i:2;s:11:\"revision_id\";i:3;s:7:\"deleted\";i:4;s:5:\"delta\";i:5;s:8:\"language\";}s:7:\"indexes\";a:7:{s:11:\"entity_type\";a:1:{i:0;s:11:\"entity_type\";}s:6:\"bundle\";a:1:{i:0;s:6:\"bundle\";}s:7:\"deleted\";a:1:{i:0;s:7:\"deleted\";}s:9:\"entity_id\";a:1:{i:0;s:9:\"entity_id\";}s:11:\"revision_id\";a:1:{i:0;s:11:\"revision_id\";}s:8:\"language\";a:1:{i:0;s:8:\"language\";}s:15:\"field_image_fid\";a:1:{i:0;s:15:\"field_image_fid\";}}s:12:\"foreign keys\";a:1:{s:15:\"field_image_fid\";a:2:{s:5:\"table\";s:12:\"file_managed\";s:7:\"columns\";a:1:{s:15:\"field_image_fid\";s:3:\"fid\";}}}s:6:\"module\";s:17:\"field_sql_storage\";s:4:\"name\";s:26:\"field_revision_field_image\";}s:41:\"field_data_field_openlayers_example_input\";a:5:{s:6:\"fields\";a:16:{s:11:\"entity_type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"bundle\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"deleted\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"entity_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:11:\"revision_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:0;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"delta\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:35:\"field_openlayers_example_input_geom\";a:3:{s:4:\"type\";s:4:\"blob\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:39:\"field_openlayers_example_input_geo_type\";a:3:{s:4:\"type\";s:7:\"varchar\";s:7:\"default\";s:0:\"\";s:6:\"length\";i:64;}s:34:\"field_openlayers_example_input_lat\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:34:\"field_openlayers_example_input_lon\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:35:\"field_openlayers_example_input_left\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:34:\"field_openlayers_example_input_top\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:36:\"field_openlayers_example_input_right\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:37:\"field_openlayers_example_input_bottom\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:38:\"field_openlayers_example_input_geohash\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:16;s:8:\"not null\";b:0;}}s:11:\"primary key\";a:5:{i:0;s:11:\"entity_type\";i:1;s:9:\"entity_id\";i:2;s:7:\"deleted\";i:3;s:5:\"delta\";i:4;s:8:\"language\";}s:7:\"indexes\";a:15:{s:11:\"entity_type\";a:1:{i:0;s:11:\"entity_type\";}s:6:\"bundle\";a:1:{i:0;s:6:\"bundle\";}s:7:\"deleted\";a:1:{i:0;s:7:\"deleted\";}s:9:\"entity_id\";a:1:{i:0;s:9:\"entity_id\";}s:11:\"revision_id\";a:1:{i:0;s:11:\"revision_id\";}s:8:\"language\";a:1:{i:0;s:8:\"language\";}s:34:\"field_openlayers_example_input_lat\";a:1:{i:0;s:34:\"field_openlayers_example_input_lat\";}s:34:\"field_openlayers_example_input_lon\";a:1:{i:0;s:34:\"field_openlayers_example_input_lon\";}s:34:\"field_openlayers_example_input_top\";a:1:{i:0;s:34:\"field_openlayers_example_input_top\";}s:37:\"field_openlayers_example_input_bottom\";a:1:{i:0;s:37:\"field_openlayers_example_input_bottom\";}s:35:\"field_openlayers_example_input_left\";a:1:{i:0;s:35:\"field_openlayers_example_input_left\";}s:36:\"field_openlayers_example_input_right\";a:1:{i:0;s:36:\"field_openlayers_example_input_right\";}s:38:\"field_openlayers_example_input_geohash\";a:1:{i:0;s:38:\"field_openlayers_example_input_geohash\";}s:39:\"field_openlayers_example_input_centroid\";a:2:{i:0;s:34:\"field_openlayers_example_input_lat\";i:1;s:34:\"field_openlayers_example_input_lon\";}s:35:\"field_openlayers_example_input_bbox\";a:4:{i:0;s:34:\"field_openlayers_example_input_top\";i:1;s:37:\"field_openlayers_example_input_bottom\";i:2;s:35:\"field_openlayers_example_input_left\";i:3;s:36:\"field_openlayers_example_input_right\";}}s:6:\"module\";s:17:\"field_sql_storage\";s:4:\"name\";s:41:\"field_data_field_openlayers_example_input\";}s:45:\"field_revision_field_openlayers_example_input\";a:5:{s:6:\"fields\";a:16:{s:11:\"entity_type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"bundle\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"deleted\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"entity_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:11:\"revision_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"delta\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:35:\"field_openlayers_example_input_geom\";a:3:{s:4:\"type\";s:4:\"blob\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:39:\"field_openlayers_example_input_geo_type\";a:3:{s:4:\"type\";s:7:\"varchar\";s:7:\"default\";s:0:\"\";s:6:\"length\";i:64;}s:34:\"field_openlayers_example_input_lat\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:34:\"field_openlayers_example_input_lon\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:35:\"field_openlayers_example_input_left\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:34:\"field_openlayers_example_input_top\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:36:\"field_openlayers_example_input_right\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:37:\"field_openlayers_example_input_bottom\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:38:\"field_openlayers_example_input_geohash\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:16;s:8:\"not null\";b:0;}}s:11:\"primary key\";a:6:{i:0;s:11:\"entity_type\";i:1;s:9:\"entity_id\";i:2;s:11:\"revision_id\";i:3;s:7:\"deleted\";i:4;s:5:\"delta\";i:5;s:8:\"language\";}s:7:\"indexes\";a:15:{s:11:\"entity_type\";a:1:{i:0;s:11:\"entity_type\";}s:6:\"bundle\";a:1:{i:0;s:6:\"bundle\";}s:7:\"deleted\";a:1:{i:0;s:7:\"deleted\";}s:9:\"entity_id\";a:1:{i:0;s:9:\"entity_id\";}s:11:\"revision_id\";a:1:{i:0;s:11:\"revision_id\";}s:8:\"language\";a:1:{i:0;s:8:\"language\";}s:34:\"field_openlayers_example_input_lat\";a:1:{i:0;s:34:\"field_openlayers_example_input_lat\";}s:34:\"field_openlayers_example_input_lon\";a:1:{i:0;s:34:\"field_openlayers_example_input_lon\";}s:34:\"field_openlayers_example_input_top\";a:1:{i:0;s:34:\"field_openlayers_example_input_top\";}s:37:\"field_openlayers_example_input_bottom\";a:1:{i:0;s:37:\"field_openlayers_example_input_bottom\";}s:35:\"field_openlayers_example_input_left\";a:1:{i:0;s:35:\"field_openlayers_example_input_left\";}s:36:\"field_openlayers_example_input_right\";a:1:{i:0;s:36:\"field_openlayers_example_input_right\";}s:38:\"field_openlayers_example_input_geohash\";a:1:{i:0;s:38:\"field_openlayers_example_input_geohash\";}s:39:\"field_openlayers_example_input_centroid\";a:2:{i:0;s:34:\"field_openlayers_example_input_lat\";i:1;s:34:\"field_openlayers_example_input_lon\";}s:35:\"field_openlayers_example_input_bbox\";a:4:{i:0;s:34:\"field_openlayers_example_input_top\";i:1;s:37:\"field_openlayers_example_input_bottom\";i:2;s:35:\"field_openlayers_example_input_left\";i:3;s:36:\"field_openlayers_example_input_right\";}}s:6:\"module\";s:17:\"field_sql_storage\";s:4:\"name\";s:45:\"field_revision_field_openlayers_example_input\";}s:23:\"field_data_field_gfdata\";a:5:{s:6:\"fields\";a:16:{s:11:\"entity_type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"bundle\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"deleted\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"entity_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:11:\"revision_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:0;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"delta\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:17:\"field_gfdata_geom\";a:3:{s:4:\"type\";s:4:\"blob\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:21:\"field_gfdata_geo_type\";a:3:{s:4:\"type\";s:7:\"varchar\";s:7:\"default\";s:0:\"\";s:6:\"length\";i:64;}s:16:\"field_gfdata_lat\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:16:\"field_gfdata_lon\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:17:\"field_gfdata_left\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:16:\"field_gfdata_top\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:18:\"field_gfdata_right\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:19:\"field_gfdata_bottom\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:20:\"field_gfdata_geohash\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:16;s:8:\"not null\";b:0;}}s:11:\"primary key\";a:5:{i:0;s:11:\"entity_type\";i:1;s:9:\"entity_id\";i:2;s:7:\"deleted\";i:3;s:5:\"delta\";i:4;s:8:\"language\";}s:7:\"indexes\";a:15:{s:11:\"entity_type\";a:1:{i:0;s:11:\"entity_type\";}s:6:\"bundle\";a:1:{i:0;s:6:\"bundle\";}s:7:\"deleted\";a:1:{i:0;s:7:\"deleted\";}s:9:\"entity_id\";a:1:{i:0;s:9:\"entity_id\";}s:11:\"revision_id\";a:1:{i:0;s:11:\"revision_id\";}s:8:\"language\";a:1:{i:0;s:8:\"language\";}s:16:\"field_gfdata_lat\";a:1:{i:0;s:16:\"field_gfdata_lat\";}s:16:\"field_gfdata_lon\";a:1:{i:0;s:16:\"field_gfdata_lon\";}s:16:\"field_gfdata_top\";a:1:{i:0;s:16:\"field_gfdata_top\";}s:19:\"field_gfdata_bottom\";a:1:{i:0;s:19:\"field_gfdata_bottom\";}s:17:\"field_gfdata_left\";a:1:{i:0;s:17:\"field_gfdata_left\";}s:18:\"field_gfdata_right\";a:1:{i:0;s:18:\"field_gfdata_right\";}s:20:\"field_gfdata_geohash\";a:1:{i:0;s:20:\"field_gfdata_geohash\";}s:21:\"field_gfdata_centroid\";a:2:{i:0;s:16:\"field_gfdata_lat\";i:1;s:16:\"field_gfdata_lon\";}s:17:\"field_gfdata_bbox\";a:4:{i:0;s:16:\"field_gfdata_top\";i:1;s:19:\"field_gfdata_bottom\";i:2;s:17:\"field_gfdata_left\";i:3;s:18:\"field_gfdata_right\";}}s:6:\"module\";s:17:\"field_sql_storage\";s:4:\"name\";s:23:\"field_data_field_gfdata\";}s:27:\"field_revision_field_gfdata\";a:5:{s:6:\"fields\";a:16:{s:11:\"entity_type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"bundle\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"deleted\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"entity_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:11:\"revision_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"delta\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:17:\"field_gfdata_geom\";a:3:{s:4:\"type\";s:4:\"blob\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:21:\"field_gfdata_geo_type\";a:3:{s:4:\"type\";s:7:\"varchar\";s:7:\"default\";s:0:\"\";s:6:\"length\";i:64;}s:16:\"field_gfdata_lat\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:16:\"field_gfdata_lon\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:17:\"field_gfdata_left\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:16:\"field_gfdata_top\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:18:\"field_gfdata_right\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:19:\"field_gfdata_bottom\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:20:\"field_gfdata_geohash\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:16;s:8:\"not null\";b:0;}}s:11:\"primary key\";a:6:{i:0;s:11:\"entity_type\";i:1;s:9:\"entity_id\";i:2;s:11:\"revision_id\";i:3;s:7:\"deleted\";i:4;s:5:\"delta\";i:5;s:8:\"language\";}s:7:\"indexes\";a:15:{s:11:\"entity_type\";a:1:{i:0;s:11:\"entity_type\";}s:6:\"bundle\";a:1:{i:0;s:6:\"bundle\";}s:7:\"deleted\";a:1:{i:0;s:7:\"deleted\";}s:9:\"entity_id\";a:1:{i:0;s:9:\"entity_id\";}s:11:\"revision_id\";a:1:{i:0;s:11:\"revision_id\";}s:8:\"language\";a:1:{i:0;s:8:\"language\";}s:16:\"field_gfdata_lat\";a:1:{i:0;s:16:\"field_gfdata_lat\";}s:16:\"field_gfdata_lon\";a:1:{i:0;s:16:\"field_gfdata_lon\";}s:16:\"field_gfdata_top\";a:1:{i:0;s:16:\"field_gfdata_top\";}s:19:\"field_gfdata_bottom\";a:1:{i:0;s:19:\"field_gfdata_bottom\";}s:17:\"field_gfdata_left\";a:1:{i:0;s:17:\"field_gfdata_left\";}s:18:\"field_gfdata_right\";a:1:{i:0;s:18:\"field_gfdata_right\";}s:20:\"field_gfdata_geohash\";a:1:{i:0;s:20:\"field_gfdata_geohash\";}s:21:\"field_gfdata_centroid\";a:2:{i:0;s:16:\"field_gfdata_lat\";i:1;s:16:\"field_gfdata_lon\";}s:17:\"field_gfdata_bbox\";a:4:{i:0;s:16:\"field_gfdata_top\";i:1;s:19:\"field_gfdata_bottom\";i:2;s:17:\"field_gfdata_left\";i:3;s:18:\"field_gfdata_right\";}}s:6:\"module\";s:17:\"field_sql_storage\";s:4:\"name\";s:27:\"field_revision_field_gfdata\";}s:22:\"field_data_field_photo\";a:6:{s:6:\"fields\";a:12:{s:11:\"entity_type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"bundle\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"deleted\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"entity_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:11:\"revision_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:0;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"delta\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:15:\"field_photo_fid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:0;s:8:\"unsigned\";b:1;}s:15:\"field_photo_alt\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:512;s:8:\"not null\";b:0;}s:17:\"field_photo_title\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:1024;s:8:\"not null\";b:0;}s:17:\"field_photo_width\";a:2:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}s:18:\"field_photo_height\";a:2:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}}s:11:\"primary key\";a:5:{i:0;s:11:\"entity_type\";i:1;s:9:\"entity_id\";i:2;s:7:\"deleted\";i:3;s:5:\"delta\";i:4;s:8:\"language\";}s:7:\"indexes\";a:7:{s:11:\"entity_type\";a:1:{i:0;s:11:\"entity_type\";}s:6:\"bundle\";a:1:{i:0;s:6:\"bundle\";}s:7:\"deleted\";a:1:{i:0;s:7:\"deleted\";}s:9:\"entity_id\";a:1:{i:0;s:9:\"entity_id\";}s:11:\"revision_id\";a:1:{i:0;s:11:\"revision_id\";}s:8:\"language\";a:1:{i:0;s:8:\"language\";}s:15:\"field_photo_fid\";a:1:{i:0;s:15:\"field_photo_fid\";}}s:12:\"foreign keys\";a:1:{s:15:\"field_photo_fid\";a:2:{s:5:\"table\";s:12:\"file_managed\";s:7:\"columns\";a:1:{s:15:\"field_photo_fid\";s:3:\"fid\";}}}s:6:\"module\";s:17:\"field_sql_storage\";s:4:\"name\";s:22:\"field_data_field_photo\";}s:26:\"field_revision_field_photo\";a:6:{s:6:\"fields\";a:12:{s:11:\"entity_type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"bundle\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"deleted\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"entity_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:11:\"revision_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"delta\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:15:\"field_photo_fid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:0;s:8:\"unsigned\";b:1;}s:15:\"field_photo_alt\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:512;s:8:\"not null\";b:0;}s:17:\"field_photo_title\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:1024;s:8:\"not null\";b:0;}s:17:\"field_photo_width\";a:2:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}s:18:\"field_photo_height\";a:2:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}}s:11:\"primary key\";a:6:{i:0;s:11:\"entity_type\";i:1;s:9:\"entity_id\";i:2;s:11:\"revision_id\";i:3;s:7:\"deleted\";i:4;s:5:\"delta\";i:5;s:8:\"language\";}s:7:\"indexes\";a:7:{s:11:\"entity_type\";a:1:{i:0;s:11:\"entity_type\";}s:6:\"bundle\";a:1:{i:0;s:6:\"bundle\";}s:7:\"deleted\";a:1:{i:0;s:7:\"deleted\";}s:9:\"entity_id\";a:1:{i:0;s:9:\"entity_id\";}s:11:\"revision_id\";a:1:{i:0;s:11:\"revision_id\";}s:8:\"language\";a:1:{i:0;s:8:\"language\";}s:15:\"field_photo_fid\";a:1:{i:0;s:15:\"field_photo_fid\";}}s:12:\"foreign keys\";a:1:{s:15:\"field_photo_fid\";a:2:{s:5:\"table\";s:12:\"file_managed\";s:7:\"columns\";a:1:{s:15:\"field_photo_fid\";s:3:\"fid\";}}}s:6:\"module\";s:17:\"field_sql_storage\";s:4:\"name\";s:26:\"field_revision_field_photo\";}s:36:\"field_data_field_photo_moorings_2012\";a:6:{s:6:\"fields\";a:12:{s:11:\"entity_type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"bundle\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"deleted\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"entity_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:11:\"revision_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:0;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"delta\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:29:\"field_photo_moorings_2012_fid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:0;s:8:\"unsigned\";b:1;}s:29:\"field_photo_moorings_2012_alt\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:512;s:8:\"not null\";b:0;}s:31:\"field_photo_moorings_2012_title\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:1024;s:8:\"not null\";b:0;}s:31:\"field_photo_moorings_2012_width\";a:2:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}s:32:\"field_photo_moorings_2012_height\";a:2:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}}s:11:\"primary key\";a:5:{i:0;s:11:\"entity_type\";i:1;s:9:\"entity_id\";i:2;s:7:\"deleted\";i:3;s:5:\"delta\";i:4;s:8:\"language\";}s:7:\"indexes\";a:7:{s:11:\"entity_type\";a:1:{i:0;s:11:\"entity_type\";}s:6:\"bundle\";a:1:{i:0;s:6:\"bundle\";}s:7:\"deleted\";a:1:{i:0;s:7:\"deleted\";}s:9:\"entity_id\";a:1:{i:0;s:9:\"entity_id\";}s:11:\"revision_id\";a:1:{i:0;s:11:\"revision_id\";}s:8:\"language\";a:1:{i:0;s:8:\"language\";}s:29:\"field_photo_moorings_2012_fid\";a:1:{i:0;s:29:\"field_photo_moorings_2012_fid\";}}s:12:\"foreign keys\";a:1:{s:29:\"field_photo_moorings_2012_fid\";a:2:{s:5:\"table\";s:12:\"file_managed\";s:7:\"columns\";a:1:{s:29:\"field_photo_moorings_2012_fid\";s:3:\"fid\";}}}s:6:\"module\";s:17:\"field_sql_storage\";s:4:\"name\";s:36:\"field_data_field_photo_moorings_2012\";}s:40:\"field_revision_field_photo_moorings_2012\";a:6:{s:6:\"fields\";a:12:{s:11:\"entity_type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"bundle\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"deleted\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"entity_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:11:\"revision_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"delta\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:29:\"field_photo_moorings_2012_fid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:0;s:8:\"unsigned\";b:1;}s:29:\"field_photo_moorings_2012_alt\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:512;s:8:\"not null\";b:0;}s:31:\"field_photo_moorings_2012_title\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:1024;s:8:\"not null\";b:0;}s:31:\"field_photo_moorings_2012_width\";a:2:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}s:32:\"field_photo_moorings_2012_height\";a:2:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}}s:11:\"primary key\";a:6:{i:0;s:11:\"entity_type\";i:1;s:9:\"entity_id\";i:2;s:11:\"revision_id\";i:3;s:7:\"deleted\";i:4;s:5:\"delta\";i:5;s:8:\"language\";}s:7:\"indexes\";a:7:{s:11:\"entity_type\";a:1:{i:0;s:11:\"entity_type\";}s:6:\"bundle\";a:1:{i:0;s:6:\"bundle\";}s:7:\"deleted\";a:1:{i:0;s:7:\"deleted\";}s:9:\"entity_id\";a:1:{i:0;s:9:\"entity_id\";}s:11:\"revision_id\";a:1:{i:0;s:11:\"revision_id\";}s:8:\"language\";a:1:{i:0;s:8:\"language\";}s:29:\"field_photo_moorings_2012_fid\";a:1:{i:0;s:29:\"field_photo_moorings_2012_fid\";}}s:12:\"foreign keys\";a:1:{s:29:\"field_photo_moorings_2012_fid\";a:2:{s:5:\"table\";s:12:\"file_managed\";s:7:\"columns\";a:1:{s:29:\"field_photo_moorings_2012_fid\";s:3:\"fid\";}}}s:6:\"module\";s:17:\"field_sql_storage\";s:4:\"name\";s:40:\"field_revision_field_photo_moorings_2012\";}s:26:\"field_data_taxonomy_forums\";a:6:{s:6:\"fields\";a:8:{s:11:\"entity_type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"bundle\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"deleted\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"entity_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:11:\"revision_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:0;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"delta\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:19:\"taxonomy_forums_tid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:0;}}s:11:\"primary key\";a:5:{i:0;s:11:\"entity_type\";i:1;s:9:\"entity_id\";i:2;s:7:\"deleted\";i:3;s:5:\"delta\";i:4;s:8:\"language\";}s:7:\"indexes\";a:7:{s:11:\"entity_type\";a:1:{i:0;s:11:\"entity_type\";}s:6:\"bundle\";a:1:{i:0;s:6:\"bundle\";}s:7:\"deleted\";a:1:{i:0;s:7:\"deleted\";}s:9:\"entity_id\";a:1:{i:0;s:9:\"entity_id\";}s:11:\"revision_id\";a:1:{i:0;s:11:\"revision_id\";}s:8:\"language\";a:1:{i:0;s:8:\"language\";}s:19:\"taxonomy_forums_tid\";a:1:{i:0;s:19:\"taxonomy_forums_tid\";}}s:12:\"foreign keys\";a:1:{s:19:\"taxonomy_forums_tid\";a:2:{s:5:\"table\";s:18:\"taxonomy_term_data\";s:7:\"columns\";a:1:{s:19:\"taxonomy_forums_tid\";s:3:\"tid\";}}}s:6:\"module\";s:17:\"field_sql_storage\";s:4:\"name\";s:26:\"field_data_taxonomy_forums\";}s:30:\"field_revision_taxonomy_forums\";a:6:{s:6:\"fields\";a:8:{s:11:\"entity_type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"bundle\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"deleted\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"entity_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:11:\"revision_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"delta\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:19:\"taxonomy_forums_tid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:0;}}s:11:\"primary key\";a:6:{i:0;s:11:\"entity_type\";i:1;s:9:\"entity_id\";i:2;s:11:\"revision_id\";i:3;s:7:\"deleted\";i:4;s:5:\"delta\";i:5;s:8:\"language\";}s:7:\"indexes\";a:7:{s:11:\"entity_type\";a:1:{i:0;s:11:\"entity_type\";}s:6:\"bundle\";a:1:{i:0;s:6:\"bundle\";}s:7:\"deleted\";a:1:{i:0;s:7:\"deleted\";}s:9:\"entity_id\";a:1:{i:0;s:9:\"entity_id\";}s:11:\"revision_id\";a:1:{i:0;s:11:\"revision_id\";}s:8:\"language\";a:1:{i:0;s:8:\"language\";}s:19:\"taxonomy_forums_tid\";a:1:{i:0;s:19:\"taxonomy_forums_tid\";}}s:12:\"foreign keys\";a:1:{s:19:\"taxonomy_forums_tid\";a:2:{s:5:\"table\";s:18:\"taxonomy_term_data\";s:7:\"columns\";a:1:{s:19:\"taxonomy_forums_tid\";s:3:\"tid\";}}}s:6:\"module\";s:17:\"field_sql_storage\";s:4:\"name\";s:30:\"field_revision_taxonomy_forums\";}s:22:\"field_data_title_field\";a:6:{s:6:\"fields\";a:9:{s:11:\"entity_type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"bundle\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"deleted\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"entity_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:11:\"revision_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:0;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"delta\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:17:\"title_field_value\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}s:18:\"title_field_format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:11:\"primary key\";a:5:{i:0;s:11:\"entity_type\";i:1;s:9:\"entity_id\";i:2;s:7:\"deleted\";i:3;s:5:\"delta\";i:4;s:8:\"language\";}s:7:\"indexes\";a:7:{s:11:\"entity_type\";a:1:{i:0;s:11:\"entity_type\";}s:6:\"bundle\";a:1:{i:0;s:6:\"bundle\";}s:7:\"deleted\";a:1:{i:0;s:7:\"deleted\";}s:9:\"entity_id\";a:1:{i:0;s:9:\"entity_id\";}s:11:\"revision_id\";a:1:{i:0;s:11:\"revision_id\";}s:8:\"language\";a:1:{i:0;s:8:\"language\";}s:18:\"title_field_format\";a:1:{i:0;s:18:\"title_field_format\";}}s:12:\"foreign keys\";a:1:{s:18:\"title_field_format\";a:2:{s:5:\"table\";s:13:\"filter_format\";s:7:\"columns\";a:1:{s:18:\"title_field_format\";s:6:\"format\";}}}s:6:\"module\";s:17:\"field_sql_storage\";s:4:\"name\";s:22:\"field_data_title_field\";}s:26:\"field_revision_title_field\";a:6:{s:6:\"fields\";a:9:{s:11:\"entity_type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"bundle\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"deleted\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"entity_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:11:\"revision_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"delta\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:17:\"title_field_value\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}s:18:\"title_field_format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:11:\"primary key\";a:6:{i:0;s:11:\"entity_type\";i:1;s:9:\"entity_id\";i:2;s:11:\"revision_id\";i:3;s:7:\"deleted\";i:4;s:5:\"delta\";i:5;s:8:\"language\";}s:7:\"indexes\";a:7:{s:11:\"entity_type\";a:1:{i:0;s:11:\"entity_type\";}s:6:\"bundle\";a:1:{i:0;s:6:\"bundle\";}s:7:\"deleted\";a:1:{i:0;s:7:\"deleted\";}s:9:\"entity_id\";a:1:{i:0;s:9:\"entity_id\";}s:11:\"revision_id\";a:1:{i:0;s:11:\"revision_id\";}s:8:\"language\";a:1:{i:0;s:8:\"language\";}s:18:\"title_field_format\";a:1:{i:0;s:18:\"title_field_format\";}}s:12:\"foreign keys\";a:1:{s:18:\"title_field_format\";a:2:{s:5:\"table\";s:13:\"filter_format\";s:7:\"columns\";a:1:{s:18:\"title_field_format\";s:6:\"format\";}}}s:6:\"module\";s:17:\"field_sql_storage\";s:4:\"name\";s:26:\"field_revision_title_field\";}s:36:\"field_data_field_photo_moorings_2010\";a:6:{s:6:\"fields\";a:12:{s:11:\"entity_type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"bundle\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"deleted\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"entity_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:11:\"revision_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:0;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"delta\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:29:\"field_photo_moorings_2010_fid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:0;s:8:\"unsigned\";b:1;}s:29:\"field_photo_moorings_2010_alt\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:512;s:8:\"not null\";b:0;}s:31:\"field_photo_moorings_2010_title\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:1024;s:8:\"not null\";b:0;}s:31:\"field_photo_moorings_2010_width\";a:2:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}s:32:\"field_photo_moorings_2010_height\";a:2:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}}s:11:\"primary key\";a:5:{i:0;s:11:\"entity_type\";i:1;s:9:\"entity_id\";i:2;s:7:\"deleted\";i:3;s:5:\"delta\";i:4;s:8:\"language\";}s:7:\"indexes\";a:7:{s:11:\"entity_type\";a:1:{i:0;s:11:\"entity_type\";}s:6:\"bundle\";a:1:{i:0;s:6:\"bundle\";}s:7:\"deleted\";a:1:{i:0;s:7:\"deleted\";}s:9:\"entity_id\";a:1:{i:0;s:9:\"entity_id\";}s:11:\"revision_id\";a:1:{i:0;s:11:\"revision_id\";}s:8:\"language\";a:1:{i:0;s:8:\"language\";}s:29:\"field_photo_moorings_2010_fid\";a:1:{i:0;s:29:\"field_photo_moorings_2010_fid\";}}s:12:\"foreign keys\";a:1:{s:29:\"field_photo_moorings_2010_fid\";a:2:{s:5:\"table\";s:12:\"file_managed\";s:7:\"columns\";a:1:{s:29:\"field_photo_moorings_2010_fid\";s:3:\"fid\";}}}s:6:\"module\";s:17:\"field_sql_storage\";s:4:\"name\";s:36:\"field_data_field_photo_moorings_2010\";}s:40:\"field_revision_field_photo_moorings_2010\";a:6:{s:6:\"fields\";a:12:{s:11:\"entity_type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"bundle\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"deleted\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"entity_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:11:\"revision_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"delta\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:29:\"field_photo_moorings_2010_fid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:0;s:8:\"unsigned\";b:1;}s:29:\"field_photo_moorings_2010_alt\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:512;s:8:\"not null\";b:0;}s:31:\"field_photo_moorings_2010_title\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:1024;s:8:\"not null\";b:0;}s:31:\"field_photo_moorings_2010_width\";a:2:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}s:32:\"field_photo_moorings_2010_height\";a:2:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}}s:11:\"primary key\";a:6:{i:0;s:11:\"entity_type\";i:1;s:9:\"entity_id\";i:2;s:11:\"revision_id\";i:3;s:7:\"deleted\";i:4;s:5:\"delta\";i:5;s:8:\"language\";}s:7:\"indexes\";a:7:{s:11:\"entity_type\";a:1:{i:0;s:11:\"entity_type\";}s:6:\"bundle\";a:1:{i:0;s:6:\"bundle\";}s:7:\"deleted\";a:1:{i:0;s:7:\"deleted\";}s:9:\"entity_id\";a:1:{i:0;s:9:\"entity_id\";}s:11:\"revision_id\";a:1:{i:0;s:11:\"revision_id\";}s:8:\"language\";a:1:{i:0;s:8:\"language\";}s:29:\"field_photo_moorings_2010_fid\";a:1:{i:0;s:29:\"field_photo_moorings_2010_fid\";}}s:12:\"foreign keys\";a:1:{s:29:\"field_photo_moorings_2010_fid\";a:2:{s:5:\"table\";s:12:\"file_managed\";s:7:\"columns\";a:1:{s:29:\"field_photo_moorings_2010_fid\";s:3:\"fid\";}}}s:6:\"module\";s:17:\"field_sql_storage\";s:4:\"name\";s:40:\"field_revision_field_photo_moorings_2010\";}s:6:\"filter\";a:5:{s:6:\"fields\";a:6:{s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;}s:6:\"module\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"weight\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"status\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:8:\"settings\";a:4:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";s:9:\"serialize\";b:1;}}s:11:\"primary key\";a:2:{i:0;s:6:\"format\";i:1;s:4:\"name\";}s:7:\"indexes\";a:1:{s:4:\"list\";a:3:{i:0;s:6:\"weight\";i:1;s:6:\"module\";i:2;s:4:\"name\";}}s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:6:\"filter\";}s:13:\"filter_format\";a:6:{s:6:\"fields\";a:5:{s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;}s:4:\"name\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:12:\"translatable\";b:1;}s:5:\"cache\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:6:\"status\";a:5:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:1;s:4:\"size\";s:4:\"tiny\";}s:6:\"weight\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:1:{i:0;s:6:\"format\";}s:11:\"unique keys\";a:1:{s:4:\"name\";a:1:{i:0;s:4:\"name\";}}s:7:\"indexes\";a:1:{s:13:\"status_weight\";a:2:{i:0;s:6:\"status\";i:1;s:6:\"weight\";}}s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:13:\"filter_format\";}s:12:\"cache_filter\";a:5:{s:6:\"fields\";a:5:{s:3:\"cid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"serialized\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:6:\"module\";s:6:\"filter\";s:4:\"name\";s:12:\"cache_filter\";}s:14:\"cache_geocoder\";a:5:{s:6:\"fields\";a:5:{s:3:\"cid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"serialized\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:6:\"module\";s:8:\"geocoder\";s:4:\"name\";s:14:\"cache_geocoder\";}s:20:\"i18n_translation_set\";a:5:{s:6:\"fields\";a:8:{s:4:\"tsid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:5:\"title\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"bundle\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:9:\"master_id\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"status\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:1;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"changed\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:13:\"entity_bundle\";a:2:{i:0;s:4:\"type\";i:1;s:6:\"bundle\";}}s:11:\"primary key\";a:1:{i:0;s:4:\"tsid\";}s:6:\"module\";s:16:\"i18n_translation\";s:4:\"name\";s:20:\"i18n_translation_set\";}s:11:\"cache_image\";a:5:{s:6:\"fields\";a:5:{s:3:\"cid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"serialized\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:6:\"module\";s:5:\"image\";s:4:\"name\";s:11:\"cache_image\";}s:12:\"image_styles\";a:5:{s:6:\"fields\";a:3:{s:4:\"isid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:4:\"name\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;}s:5:\"label\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}}s:11:\"primary key\";a:1:{i:0;s:4:\"isid\";}s:11:\"unique keys\";a:1:{s:4:\"name\";a:1:{i:0;s:4:\"name\";}}s:6:\"module\";s:5:\"image\";s:4:\"name\";s:12:\"image_styles\";}s:13:\"image_effects\";a:6:{s:6:\"fields\";a:5:{s:4:\"ieid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:4:\"isid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"weight\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:0;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"name\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;}s:4:\"data\";a:4:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:1;s:4:\"size\";s:3:\"big\";s:9:\"serialize\";b:1;}}s:11:\"primary key\";a:1:{i:0;s:4:\"ieid\";}s:7:\"indexes\";a:2:{s:4:\"isid\";a:1:{i:0;s:4:\"isid\";}s:6:\"weight\";a:1:{i:0;s:6:\"weight\";}}s:12:\"foreign keys\";a:1:{s:11:\"image_style\";a:2:{s:5:\"table\";s:12:\"image_styles\";s:7:\"columns\";a:1:{s:4:\"isid\";s:4:\"isid\";}}}s:6:\"module\";s:5:\"image\";s:4:\"name\";s:13:\"image_effects\";}s:19:\"l10n_update_project\";a:4:{s:6:\"fields\";a:7:{s:4:\"name\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:2:\"50\";s:8:\"not null\";b:1;}s:12:\"project_type\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:2:\"50\";s:8:\"not null\";b:1;}s:4:\"core\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:3:\"128\";s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"version\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:3:\"128\";s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:11:\"l10n_server\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:3:\"255\";s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:9:\"l10n_path\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:3:\"255\";s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"status\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:1;}}s:11:\"primary key\";a:1:{i:0;s:4:\"name\";}s:6:\"module\";s:11:\"l10n_update\";s:4:\"name\";s:19:\"l10n_update_project\";}s:16:\"l10n_update_file\";a:4:{s:6:\"fields\";a:10:{s:7:\"project\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:2:\"50\";s:8:\"not null\";b:1;}s:8:\"language\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:2:\"12\";s:8:\"not null\";b:1;}s:4:\"type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:2:\"50\";s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"filename\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"fileurl\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:3:\"uri\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:9:\"timestamp\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:0;s:10:\"disp-width\";s:2:\"11\";s:7:\"default\";i:0;}s:7:\"version\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:3:\"128\";s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"status\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:1;}s:12:\"last_checked\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:0;s:10:\"disp-width\";s:2:\"11\";s:7:\"default\";i:0;}}s:11:\"primary key\";a:2:{i:0;s:7:\"project\";i:1;s:8:\"language\";}s:6:\"module\";s:11:\"l10n_update\";s:4:\"name\";s:16:\"l10n_update_file\";}s:17:\"cache_l10n_update\";a:5:{s:6:\"fields\";a:5:{s:3:\"cid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"serialized\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:6:\"module\";s:11:\"l10n_update\";s:4:\"name\";s:17:\"cache_l10n_update\";}s:15:\"cache_libraries\";a:5:{s:6:\"fields\";a:5:{s:3:\"cid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"serialized\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:6:\"module\";s:9:\"libraries\";s:4:\"name\";s:15:\"cache_libraries\";}s:9:\"languages\";a:5:{s:6:\"fields\";a:11:{s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:12;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"native\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:9:\"direction\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"enabled\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"plurals\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"formula\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"domain\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"prefix\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"weight\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"javascript\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}}s:11:\"primary key\";a:1:{i:0;s:8:\"language\";}s:7:\"indexes\";a:1:{s:4:\"list\";a:2:{i:0;s:6:\"weight\";i:1;s:4:\"name\";}}s:6:\"module\";s:6:\"locale\";s:4:\"name\";s:9:\"languages\";}s:14:\"locales_source\";a:5:{s:6:\"fields\";a:6:{s:3:\"lid\";a:2:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;}s:8:\"location\";a:3:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:9:\"textgroup\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:7:\"default\";}s:6:\"source\";a:3:{s:4:\"type\";s:4:\"text\";s:10:\"mysql_type\";s:4:\"blob\";s:8:\"not null\";b:1;}s:7:\"context\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"version\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:20;s:8:\"not null\";b:1;s:7:\"default\";s:4:\"none\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"lid\";}s:7:\"indexes\";a:1:{s:14:\"source_context\";a:2:{i:0;a:2:{i:0;s:6:\"source\";i:1;i:30;}i:1;s:7:\"context\";}}s:6:\"module\";s:6:\"locale\";s:4:\"name\";s:14:\"locales_source\";}s:14:\"locales_target\";a:6:{s:6:\"fields\";a:7:{s:3:\"lid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:11:\"translation\";a:3:{s:4:\"type\";s:4:\"text\";s:10:\"mysql_type\";s:4:\"blob\";s:8:\"not null\";b:1;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:12;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"plid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"plural\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:11:\"l10n_status\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:11:\"i18n_status\";a:4:{s:11:\"description\";s:66:\"A boolean indicating whether this translation needs to be updated.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:3:{i:0;s:8:\"language\";i:1;s:3:\"lid\";i:2;s:6:\"plural\";}s:12:\"foreign keys\";a:1:{s:14:\"locales_source\";a:2:{s:5:\"table\";s:14:\"locales_source\";s:7:\"columns\";a:1:{s:3:\"lid\";s:3:\"lid\";}}}s:7:\"indexes\";a:3:{s:3:\"lid\";a:1:{i:0;s:3:\"lid\";}s:4:\"plid\";a:1:{i:0;s:4:\"plid\";}s:6:\"plural\";a:1:{i:0;s:6:\"plural\";}}s:6:\"module\";s:6:\"locale\";s:4:\"name\";s:14:\"locales_target\";}s:8:\"location\";a:4:{s:6:\"fields\";a:12:{s:3:\"lid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:4:\"name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:7:\"default\";s:0:\"\";s:8:\"not null\";b:1;}s:6:\"street\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:7:\"default\";s:0:\"\";s:8:\"not null\";b:1;}s:10:\"additional\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:7:\"default\";s:0:\"\";s:8:\"not null\";b:1;}s:4:\"city\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:7:\"default\";s:0:\"\";s:8:\"not null\";b:1;}s:8:\"province\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:16;s:7:\"default\";s:0:\"\";s:8:\"not null\";b:1;}s:11:\"postal_code\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:16;s:7:\"default\";s:0:\"\";s:8:\"not null\";b:1;}s:7:\"country\";a:4:{s:4:\"type\";s:4:\"char\";s:6:\"length\";i:2;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"latitude\";a:5:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:10;s:5:\"scale\";i:6;s:8:\"not null\";b:1;s:7:\"default\";d:0;}s:9:\"longitude\";a:5:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:10;s:5:\"scale\";i:6;s:8:\"not null\";b:1;s:7:\"default\";d:0;}s:6:\"source\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:7:\"default\";i:0;s:8:\"not null\";b:1;}s:10:\"is_primary\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:7:\"default\";i:0;s:8:\"not null\";b:1;}}s:11:\"primary key\";a:1:{i:0;s:3:\"lid\";}s:6:\"module\";s:8:\"location\";s:4:\"name\";s:8:\"location\";}s:17:\"location_instance\";a:4:{s:6:\"fields\";a:5:{s:3:\"nid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"vid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"uid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:5:\"genid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:3:\"lid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:5:{s:3:\"nid\";a:1:{i:0;s:3:\"nid\";}s:3:\"vid\";a:1:{i:0;s:3:\"vid\";}s:3:\"uid\";a:1:{i:0;s:3:\"uid\";}s:5:\"genid\";a:1:{i:0;s:5:\"genid\";}s:3:\"lid\";a:1:{i:0;s:3:\"lid\";}}s:6:\"module\";s:8:\"location\";s:4:\"name\";s:17:\"location_instance\";}s:8:\"zipcodes\";a:4:{s:6:\"fields\";a:8:{s:3:\"zip\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:16;s:8:\"not null\";b:1;s:7:\"default\";s:1:\"0\";}s:4:\"city\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:30;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"state\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:30;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"latitude\";a:5:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:10;s:5:\"scale\";i:6;s:8:\"not null\";b:1;s:7:\"default\";d:0;}s:9:\"longitude\";a:5:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:10;s:5:\"scale\";i:6;s:8:\"not null\";b:1;s:7:\"default\";d:0;}s:8:\"timezone\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"dst\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"country\";a:4:{s:4:\"type\";s:4:\"char\";s:6:\"length\";i:2;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}}s:7:\"indexes\";a:5:{s:2:\"pc\";a:2:{i:0;s:7:\"country\";i:1;s:3:\"zip\";}s:3:\"zip\";a:1:{i:0;s:3:\"zip\";}s:8:\"latitude\";a:1:{i:0;s:8:\"latitude\";}s:9:\"longitude\";a:1:{i:0;s:9:\"longitude\";}s:7:\"country\";a:1:{i:0;s:7:\"country\";}}s:6:\"module\";s:8:\"location\";s:4:\"name\";s:8:\"zipcodes\";}s:14:\"cache_location\";a:5:{s:6:\"fields\";a:6:{s:3:\"cid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"headers\";a:2:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;}s:10:\"serialized\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:6:\"module\";s:8:\"location\";s:4:\"name\";s:14:\"cache_location\";}s:16:\"location_country\";a:4:{s:6:\"fields\";a:2:{s:4:\"code\";a:3:{s:4:\"type\";s:4:\"char\";s:6:\"length\";i:2;s:8:\"not null\";b:1;}s:4:\"name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:7:\"default\";s:0:\"\";s:8:\"not null\";b:1;}}s:11:\"primary key\";a:1:{i:0;s:4:\"code\";}s:6:\"module\";s:8:\"location\";s:4:\"name\";s:16:\"location_country\";}s:11:\"menu_custom\";a:4:{s:6:\"fields\";a:5:{s:9:\"menu_name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"title\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:12:\"translatable\";b:1;}s:11:\"description\";a:3:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;s:12:\"translatable\";b:1;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:12;s:8:\"not null\";b:1;s:7:\"default\";s:3:\"und\";}s:9:\"i18n_mode\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:1:{i:0;s:9:\"menu_name\";}s:6:\"module\";s:4:\"menu\";s:4:\"name\";s:11:\"menu_custom\";}s:4:\"node\";a:7:{s:6:\"fields\";a:14:{s:3:\"nid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"vid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:0;s:7:\"default\";N;}s:4:\"type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:12;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"title\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:3:\"uid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"status\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:1;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"changed\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"comment\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"promote\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"sticky\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"tnid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"translate\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:10:{s:12:\"node_changed\";a:1:{i:0;s:7:\"changed\";}s:12:\"node_created\";a:1:{i:0;s:7:\"created\";}s:14:\"node_frontpage\";a:4:{i:0;s:7:\"promote\";i:1;s:6:\"status\";i:2;s:6:\"sticky\";i:3;s:7:\"created\";}s:16:\"node_status_type\";a:3:{i:0;s:6:\"status\";i:1;s:4:\"type\";i:2;s:3:\"nid\";}s:15:\"node_title_type\";a:2:{i:0;s:5:\"title\";i:1;a:2:{i:0;s:4:\"type\";i:1;i:4;}}s:9:\"node_type\";a:1:{i:0;a:2:{i:0;s:4:\"type\";i:1;i:4;}}s:3:\"uid\";a:1:{i:0;s:3:\"uid\";}s:4:\"tnid\";a:1:{i:0;s:4:\"tnid\";}s:9:\"translate\";a:1:{i:0;s:9:\"translate\";}s:8:\"language\";a:1:{i:0;s:8:\"language\";}}s:11:\"unique keys\";a:1:{s:3:\"vid\";a:1:{i:0;s:3:\"vid\";}}s:12:\"foreign keys\";a:2:{s:13:\"node_revision\";a:2:{s:5:\"table\";s:13:\"node_revision\";s:7:\"columns\";a:1:{s:3:\"vid\";s:3:\"vid\";}}s:11:\"node_author\";a:2:{s:5:\"table\";s:5:\"users\";s:7:\"columns\";a:1:{s:3:\"uid\";s:3:\"uid\";}}}s:11:\"primary key\";a:1:{i:0;s:3:\"nid\";}s:6:\"module\";s:4:\"node\";s:4:\"name\";s:4:\"node\";}s:11:\"node_access\";a:5:{s:6:\"fields\";a:6:{s:3:\"nid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"gid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:5:\"realm\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:10:\"grant_view\";a:5:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:12:\"grant_update\";a:5:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:12:\"grant_delete\";a:5:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}}s:11:\"primary key\";a:3:{i:0;s:3:\"nid\";i:1;s:3:\"gid\";i:2;s:5:\"realm\";}s:12:\"foreign keys\";a:1:{s:13:\"affected_node\";a:2:{s:5:\"table\";s:4:\"node\";s:7:\"columns\";a:1:{s:3:\"nid\";s:3:\"nid\";}}}s:6:\"module\";s:4:\"node\";s:4:\"name\";s:11:\"node_access\";}s:13:\"node_revision\";a:6:{s:6:\"fields\";a:10:{s:3:\"nid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"vid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"uid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:5:\"title\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:3:\"log\";a:3:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;s:4:\"size\";s:3:\"big\";}s:9:\"timestamp\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"status\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:1;}s:7:\"comment\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"promote\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"sticky\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:2:{s:3:\"nid\";a:1:{i:0;s:3:\"nid\";}s:3:\"uid\";a:1:{i:0;s:3:\"uid\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"vid\";}s:12:\"foreign keys\";a:2:{s:14:\"versioned_node\";a:2:{s:5:\"table\";s:4:\"node\";s:7:\"columns\";a:1:{s:3:\"nid\";s:3:\"nid\";}}s:14:\"version_author\";a:2:{s:5:\"table\";s:5:\"users\";s:7:\"columns\";a:1:{s:3:\"uid\";s:3:\"uid\";}}}s:6:\"module\";s:4:\"node\";s:4:\"name\";s:13:\"node_revision\";}s:9:\"node_type\";a:4:{s:6:\"fields\";a:13:{s:4:\"type\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;}s:4:\"name\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:12:\"translatable\";b:1;}s:4:\"base\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;}s:6:\"module\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;}s:11:\"description\";a:4:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;s:4:\"size\";s:6:\"medium\";s:12:\"translatable\";b:1;}s:4:\"help\";a:4:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;s:4:\"size\";s:6:\"medium\";s:12:\"translatable\";b:1;}s:9:\"has_title\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:4:\"size\";s:4:\"tiny\";}s:11:\"title_label\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:12:\"translatable\";b:1;}s:6:\"custom\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:8:\"modified\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:6:\"locked\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:8:\"disabled\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:9:\"orig_type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}}s:11:\"primary key\";a:1:{i:0;s:4:\"type\";}s:6:\"module\";s:4:\"node\";s:4:\"name\";s:9:\"node_type\";}s:15:\"block_node_type\";a:5:{s:6:\"fields\";a:3:{s:6:\"module\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;}s:5:\"delta\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;}s:4:\"type\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;}}s:11:\"primary key\";a:3:{i:0;s:6:\"module\";i:1;s:5:\"delta\";i:2;s:4:\"type\";}s:7:\"indexes\";a:1:{s:4:\"type\";a:1:{i:0;s:4:\"type\";}}s:6:\"module\";s:4:\"node\";s:4:\"name\";s:15:\"block_node_type\";}s:7:\"history\";a:5:{s:6:\"fields\";a:3:{s:3:\"uid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"nid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"timestamp\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:2:{i:0;s:3:\"uid\";i:1;s:3:\"nid\";}s:7:\"indexes\";a:1:{s:3:\"nid\";a:1:{i:0;s:3:\"nid\";}}s:6:\"module\";s:4:\"node\";s:4:\"name\";s:7:\"history\";}s:12:\"photos_album\";a:5:{s:6:\"fields\";a:5:{s:3:\"pid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"fid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"wid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:5:\"count\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"data\";a:3:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;s:4:\"size\";s:3:\"big\";}}s:7:\"indexes\";a:2:{s:3:\"fid\";a:1:{i:0;s:3:\"fid\";}s:3:\"wid\";a:1:{i:0;s:3:\"wid\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"pid\";}s:6:\"module\";s:6:\"photos\";s:4:\"name\";s:12:\"photos_album\";}s:12:\"photos_image\";a:5:{s:6:\"fields\";a:8:{s:3:\"fid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"pid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";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:7:\"default\";s:0:\"\";}s:3:\"des\";a:3:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;s:4:\"size\";s:3:\"big\";}s:3:\"wid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:5:\"count\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:8:\"comcount\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"exif\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:6:\"length\";i:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:4:{s:3:\"pid\";a:1:{i:0;s:3:\"pid\";}s:3:\"wid\";a:1:{i:0;s:3:\"wid\";}s:5:\"count\";a:1:{i:0;s:5:\"count\";}s:8:\"comcount\";a:1:{i:0;s:8:\"comcount\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"fid\";}s:6:\"module\";s:6:\"photos\";s:4:\"name\";s:12:\"photos_image\";}s:14:\"photos_comment\";a:4:{s:6:\"fields\";a:2:{s:3:\"fid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"cid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}}s:7:\"indexes\";a:2:{s:3:\"fid\";a:1:{i:0;s:3:\"fid\";}s:3:\"cid\";a:1:{i:0;s:3:\"cid\";}}s:6:\"module\";s:6:\"photos\";s:4:\"name\";s:14:\"photos_comment\";}s:11:\"photos_node\";a:4:{s:6:\"fields\";a:3:{s:3:\"nid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"fid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"wid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:3:{s:3:\"nid\";a:1:{i:0;s:3:\"nid\";}s:3:\"fid\";a:1:{i:0;s:3:\"fid\";}s:3:\"wid\";a:1:{i:0;s:3:\"wid\";}}s:6:\"module\";s:6:\"photos\";s:4:\"name\";s:11:\"photos_node\";}s:12:\"photos_count\";a:5:{s:6:\"fields\";a:5:{s:2:\"id\";a:2:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;}s:3:\"cid\";a:4:{s:4:\"type\";s:3:\"int\";s:7:\"default\";i:0;s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:7:\"changed\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:12;s:7:\"default\";s:0:\"\";s:8:\"not null\";b:1;}s:5:\"value\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:3:{s:3:\"cid\";a:1:{i:0;s:3:\"cid\";}s:4:\"type\";a:1:{i:0;s:4:\"type\";}s:5:\"value\";a:1:{i:0;s:5:\"value\";}}s:11:\"primary key\";a:1:{i:0;s:2:\"id\";}s:6:\"module\";s:6:\"photos\";s:4:\"name\";s:12:\"photos_count\";}s:12:\"cache_photos\";a:5:{s:6:\"fields\";a:5:{s:3:\"cid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"serialized\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:6:\"module\";s:6:\"photos\";s:4:\"name\";s:12:\"cache_photos\";}s:19:\"photos_access_album\";a:5:{s:6:\"fields\";a:4:{s:2:\"id\";a:2:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;}s:3:\"nid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:6:\"viewid\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:6:\"length\";i:1;s:7:\"default\";i:0;}s:4:\"pass\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:7:\"default\";s:0:\"\";}}s:7:\"indexes\";a:1:{s:3:\"nid\";a:1:{i:0;s:3:\"nid\";}}s:11:\"primary key\";a:1:{i:0;s:2:\"id\";}s:6:\"module\";s:13:\"photos_access\";s:4:\"name\";s:19:\"photos_access_album\";}s:18:\"photos_access_user\";a:4:{s:6:\"fields\";a:3:{s:2:\"id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"uid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:11:\"collaborate\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:6:\"length\";i:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:3:\"uid\";a:1:{i:0;s:3:\"uid\";}}s:6:\"module\";s:13:\"photos_access\";s:4:\"name\";s:18:\"photos_access_user\";}s:11:\"rdf_mapping\";a:4:{s:6:\"fields\";a:3:{s:4:\"type\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;}s:6:\"bundle\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;}s:7:\"mapping\";a:4:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";s:9:\"serialize\";b:1;}}s:11:\"primary key\";a:2:{i:0;s:4:\"type\";i:1;s:6:\"bundle\";}s:6:\"module\";s:3:\"rdf\";s:4:\"name\";s:11:\"rdf_mapping\";}s:12:\"shortcut_set\";a:5:{s:6:\"fields\";a:2:{s:8:\"set_name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"title\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}}s:11:\"primary key\";a:1:{i:0;s:8:\"set_name\";}s:12:\"foreign keys\";a:1:{s:9:\"menu_name\";a:2:{s:5:\"table\";s:10:\"menu_links\";s:7:\"columns\";a:1:{s:8:\"set_name\";s:9:\"menu_name\";}}}s:6:\"module\";s:8:\"shortcut\";s:4:\"name\";s:12:\"shortcut_set\";}s:18:\"shortcut_set_users\";a:6:{s:6:\"fields\";a:2:{s:3:\"uid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:8:\"set_name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"uid\";}s:7:\"indexes\";a:1:{s:8:\"set_name\";a:1:{i:0;s:8:\"set_name\";}}s:12:\"foreign keys\";a:2:{s:8:\"set_user\";a:2:{s:5:\"table\";s:5:\"users\";s:7:\"columns\";a:1:{s:3:\"uid\";s:3:\"uid\";}}s:8:\"set_name\";a:2:{s:5:\"table\";s:12:\"shortcut_set\";s:7:\"columns\";a:1:{s:8:\"set_name\";s:8:\"set_name\";}}}s:6:\"module\";s:8:\"shortcut\";s:4:\"name\";s:18:\"shortcut_set_users\";}s:8:\"variable\";a:4:{s:6:\"fields\";a:2:{s:4:\"name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"value\";a:4:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:1;s:4:\"size\";s:3:\"big\";s:12:\"translatable\";b:1;}}s:11:\"primary key\";a:1:{i:0;s:4:\"name\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:8:\"variable\";}s:7:\"actions\";a:4:{s:6:\"fields\";a:5:{s:3:\"aid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:1:\"0\";}s:4:\"type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"callback\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:10:\"parameters\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:1;s:4:\"size\";s:3:\"big\";}s:5:\"label\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:1:\"0\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"aid\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:7:\"actions\";}s:5:\"batch\";a:5:{s:6:\"fields\";a:4:{s:3:\"bid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:5:\"token\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;}s:9:\"timestamp\";a:2:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;}s:5:\"batch\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"bid\";}s:7:\"indexes\";a:1:{s:5:\"token\";a:1:{i:0;s:5:\"token\";}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:5:\"batch\";}s:11:\"blocked_ips\";a:5:{s:6:\"fields\";a:2:{s:3:\"iid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:2:\"ip\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:40;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}}s:7:\"indexes\";a:1:{s:10:\"blocked_ip\";a:1:{i:0;s:2:\"ip\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"iid\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:11:\"blocked_ips\";}s:5:\"cache\";a:5:{s:6:\"fields\";a:5:{s:3:\"cid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"serialized\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:5:\"cache\";}s:15:\"cache_bootstrap\";a:5:{s:6:\"fields\";a:5:{s:3:\"cid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"serialized\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:15:\"cache_bootstrap\";}s:10:\"cache_form\";a:5:{s:6:\"fields\";a:5:{s:3:\"cid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"serialized\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:10:\"cache_form\";}s:10:\"cache_page\";a:5:{s:6:\"fields\";a:5:{s:3:\"cid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"serialized\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:10:\"cache_page\";}s:10:\"cache_menu\";a:5:{s:6:\"fields\";a:5:{s:3:\"cid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"serialized\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:10:\"cache_menu\";}s:10:\"cache_path\";a:5:{s:6:\"fields\";a:5:{s:3:\"cid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"serialized\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:10:\"cache_path\";}s:16:\"date_format_type\";a:5:{s:6:\"fields\";a:3:{s:4:\"type\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;}s:5:\"title\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;}s:6:\"locked\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:7:\"default\";i:0;s:8:\"not null\";b:1;}}s:11:\"primary key\";a:1:{i:0;s:4:\"type\";}s:7:\"indexes\";a:1:{s:5:\"title\";a:1:{i:0;s:5:\"title\";}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:16:\"date_format_type\";}s:12:\"date_formats\";a:5:{s:6:\"fields\";a:4:{s:4:\"dfid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;s:8:\"unsigned\";b:1;}s:6:\"format\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:100;s:8:\"not null\";b:1;s:6:\"binary\";b:1;}s:4:\"type\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;}s:6:\"locked\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:7:\"default\";i:0;s:8:\"not null\";b:1;}}s:11:\"primary key\";a:1:{i:0;s:4:\"dfid\";}s:11:\"unique keys\";a:1:{s:7:\"formats\";a:2:{i:0;s:6:\"format\";i:1;s:4:\"type\";}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:12:\"date_formats\";}s:18:\"date_format_locale\";a:4:{s:6:\"fields\";a:3:{s:6:\"format\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:100;s:8:\"not null\";b:1;s:6:\"binary\";b:1;}s:4:\"type\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;}s:8:\"language\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:12;s:8:\"not null\";b:1;}}s:11:\"primary key\";a:2:{i:0;s:4:\"type\";i:1;s:8:\"language\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:18:\"date_format_locale\";}s:12:\"file_managed\";a:7:{s:6:\"fields\";a:8:{s:3:\"fid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"uid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:8:\"filename\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:3:\"uri\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:6:\"binary\";b:1;}s:8:\"filemime\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"filesize\";a:5:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:3:\"big\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"status\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:9:\"timestamp\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:3:{s:3:\"uid\";a:1:{i:0;s:3:\"uid\";}s:6:\"status\";a:1:{i:0;s:6:\"status\";}s:9:\"timestamp\";a:1:{i:0;s:9:\"timestamp\";}}s:11:\"unique keys\";a:1:{s:3:\"uri\";a:1:{i:0;s:3:\"uri\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"fid\";}s:12:\"foreign keys\";a:1:{s:10:\"file_owner\";a:2:{s:5:\"table\";s:5:\"users\";s:7:\"columns\";a:1:{s:3:\"uid\";s:3:\"uid\";}}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:12:\"file_managed\";}s:10:\"file_usage\";a:5:{s:6:\"fields\";a:5:{s:3:\"fid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:6:\"module\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:2:\"id\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:5:\"count\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:4:{i:0;s:3:\"fid\";i:1;s:4:\"type\";i:2;s:2:\"id\";i:3;s:6:\"module\";}s:7:\"indexes\";a:3:{s:7:\"type_id\";a:2:{i:0;s:4:\"type\";i:1;s:2:\"id\";}s:9:\"fid_count\";a:2:{i:0;s:3:\"fid\";i:1;s:5:\"count\";}s:10:\"fid_module\";a:2:{i:0;s:3:\"fid\";i:1;s:6:\"module\";}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:10:\"file_usage\";}s:5:\"flood\";a:5:{s:6:\"fields\";a:5:{s:3:\"fid\";a:2:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;}s:5:\"event\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:10:\"identifier\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:9:\"timestamp\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"expiration\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:1:{i:0;s:3:\"fid\";}s:7:\"indexes\";a:2:{s:5:\"allow\";a:3:{i:0;s:5:\"event\";i:1;s:10:\"identifier\";i:2;s:9:\"timestamp\";}s:5:\"purge\";a:1:{i:0;s:10:\"expiration\";}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:5:\"flood\";}s:11:\"menu_router\";a:5:{s:6:\"fields\";a:23:{s:4:\"path\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:14:\"load_functions\";a:2:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:1;}s:16:\"to_arg_functions\";a:2:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:1;}s:15:\"access_callback\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:16:\"access_arguments\";a:2:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;}s:13:\"page_callback\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:14:\"page_arguments\";a:2:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;}s:17:\"delivery_callback\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:3:\"fit\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:12:\"number_parts\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:5:\"small\";}s:7:\"context\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"tab_parent\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"tab_root\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"title\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:14:\"title_callback\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:15:\"title_arguments\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:14:\"theme_callback\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:15:\"theme_arguments\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"type\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:11:\"description\";a:2:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;}s:8:\"position\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"weight\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:12:\"include_file\";a:2:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:6:\"medium\";}}s:7:\"indexes\";a:3:{s:3:\"fit\";a:1:{i:0;s:3:\"fit\";}s:10:\"tab_parent\";a:3:{i:0;a:2:{i:0;s:10:\"tab_parent\";i:1;i:64;}i:1;s:6:\"weight\";i:2;s:5:\"title\";}s:21:\"tab_root_weight_title\";a:3:{i:0;a:2:{i:0;s:8:\"tab_root\";i:1;i:64;}i:1;s:6:\"weight\";i:2;s:5:\"title\";}}s:11:\"primary key\";a:1:{i:0;s:4:\"path\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:11:\"menu_router\";}s:10:\"menu_links\";a:5:{s:6:\"fields\";a:27:{s:9:\"menu_name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"mlid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:4:\"plid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"link_path\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:11:\"router_path\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:10:\"link_title\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:12:\"translatable\";b:1;}s:7:\"options\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:12:\"translatable\";b:1;}s:6:\"module\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:6:\"system\";}s:6:\"hidden\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:5:\"small\";}s:8:\"external\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:5:\"small\";}s:12:\"has_children\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:5:\"small\";}s:8:\"expanded\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:5:\"small\";}s:6:\"weight\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:5:\"depth\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:5:\"small\";}s:10:\"customized\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:5:\"small\";}s:2:\"p1\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:2:\"p2\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:2:\"p3\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:2:\"p4\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:2:\"p5\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:2:\"p6\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:2:\"p7\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:2:\"p8\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:2:\"p9\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"updated\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:5:\"small\";}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:12;s:8:\"not null\";b:1;s:7:\"default\";s:3:\"und\";}s:9:\"i18n_tsid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:4:{s:9:\"path_menu\";a:2:{i:0;a:2:{i:0;s:9:\"link_path\";i:1;i:128;}i:1;s:9:\"menu_name\";}s:22:\"menu_plid_expand_child\";a:4:{i:0;s:9:\"menu_name\";i:1;s:4:\"plid\";i:2;s:8:\"expanded\";i:3;s:12:\"has_children\";}s:12:\"menu_parents\";a:10:{i:0;s:9:\"menu_name\";i:1;s:2:\"p1\";i:2;s:2:\"p2\";i:3;s:2:\"p3\";i:4;s:2:\"p4\";i:5;s:2:\"p5\";i:6;s:2:\"p6\";i:7;s:2:\"p7\";i:8;s:2:\"p8\";i:9;s:2:\"p9\";}s:11:\"router_path\";a:1:{i:0;a:2:{i:0;s:11:\"router_path\";i:1;i:128;}}}s:11:\"primary key\";a:1:{i:0;s:4:\"mlid\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:10:\"menu_links\";}s:5:\"queue\";a:5:{s:6:\"fields\";a:5:{s:7:\"item_id\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:4:\"name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:4:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";s:9:\"serialize\";b:1;}s:6:\"expire\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:1:{i:0;s:7:\"item_id\";}s:7:\"indexes\";a:2:{s:12:\"name_created\";a:2:{i:0;s:4:\"name\";i:1;s:7:\"created\";}s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:5:\"queue\";}s:8:\"registry\";a:5:{s:6:\"fields\";a:5:{s:4:\"name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:9;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"filename\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;}s:6:\"module\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"weight\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:2:{i:0;s:4:\"name\";i:1;s:4:\"type\";}s:7:\"indexes\";a:1:{s:4:\"hook\";a:3:{i:0;s:4:\"type\";i:1;s:6:\"weight\";i:2;s:6:\"module\";}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:8:\"registry\";}s:13:\"registry_file\";a:4:{s:6:\"fields\";a:2:{s:8:\"filename\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;}s:4:\"hash\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;}}s:11:\"primary key\";a:1:{i:0;s:8:\"filename\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:13:\"registry_file\";}s:9:\"semaphore\";a:5:{s:6:\"fields\";a:3:{s:4:\"name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"value\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"expire\";a:3:{s:4:\"type\";s:5:\"float\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:1;}}s:7:\"indexes\";a:2:{s:5:\"value\";a:1:{i:0;s:5:\"value\";}s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:11:\"primary key\";a:1:{i:0;s:4:\"name\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:9:\"semaphore\";}s:9:\"sequences\";a:4:{s:6:\"fields\";a:1:{s:5:\"value\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}}s:11:\"primary key\";a:1:{i:0;s:5:\"value\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:9:\"sequences\";}s:8:\"sessions\";a:6:{s:6:\"fields\";a:7:{s:3:\"uid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"sid\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;}s:4:\"ssid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"hostname\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:9:\"timestamp\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:5:\"cache\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"session\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}}s:11:\"primary key\";a:2:{i:0;s:3:\"sid\";i:1;s:4:\"ssid\";}s:7:\"indexes\";a:3:{s:9:\"timestamp\";a:1:{i:0;s:9:\"timestamp\";}s:3:\"uid\";a:1:{i:0;s:3:\"uid\";}s:4:\"ssid\";a:1:{i:0;s:4:\"ssid\";}}s:12:\"foreign keys\";a:1:{s:12:\"session_user\";a:2:{s:5:\"table\";s:5:\"users\";s:7:\"columns\";a:1:{s:3:\"uid\";s:3:\"uid\";}}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:8:\"sessions\";}s:6:\"system\";a:5:{s:6:\"fields\";a:9:{s:8:\"filename\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:12;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"owner\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"status\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"bootstrap\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:14:\"schema_version\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:-1;s:4:\"size\";s:5:\"small\";}s:6:\"weight\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"info\";a:2:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;}}s:11:\"primary key\";a:1:{i:0;s:8:\"filename\";}s:7:\"indexes\";a:2:{s:11:\"system_list\";a:5:{i:0;s:6:\"status\";i:1;s:9:\"bootstrap\";i:2;s:4:\"type\";i:3;s:6:\"weight\";i:4;s:4:\"name\";}s:9:\"type_name\";a:2:{i:0;s:4:\"type\";i:1;s:4:\"name\";}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:6:\"system\";}s:9:\"url_alias\";a:5:{s:6:\"fields\";a:4:{s:3:\"pid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:6:\"source\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"alias\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:12;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"pid\";}s:7:\"indexes\";a:2:{s:18:\"alias_language_pid\";a:3:{i:0;s:5:\"alias\";i:1;s:8:\"language\";i:2;s:3:\"pid\";}s:19:\"source_language_pid\";a:3:{i:0;s:6:\"source\";i:1;s:8:\"language\";i:2;s:3:\"pid\";}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:9:\"url_alias\";}s:18:\"taxonomy_term_data\";a:6:{s:6:\"fields\";a:8:{s:3:\"tid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"vid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"name\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:12:\"translatable\";b:1;}s:11:\"description\";a:4:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";s:12:\"translatable\";b:1;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}s:6:\"weight\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:12;s:8:\"not null\";b:1;s:7:\"default\";s:3:\"und\";}s:9:\"i18n_tsid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:1:{i:0;s:3:\"tid\";}s:12:\"foreign keys\";a:1:{s:10:\"vocabulary\";a:2:{s:5:\"table\";s:19:\"taxonomy_vocabulary\";s:7:\"columns\";a:1:{s:3:\"vid\";s:3:\"vid\";}}}s:7:\"indexes\";a:3:{s:13:\"taxonomy_tree\";a:3:{i:0;s:3:\"vid\";i:1;s:6:\"weight\";i:2;s:4:\"name\";}s:8:\"vid_name\";a:2:{i:0;s:3:\"vid\";i:1;s:4:\"name\";}s:4:\"name\";a:1:{i:0;s:4:\"name\";}}s:6:\"module\";s:8:\"taxonomy\";s:4:\"name\";s:18:\"taxonomy_term_data\";}s:23:\"taxonomy_term_hierarchy\";a:6:{s:6:\"fields\";a:2:{s:3:\"tid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"parent\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:6:\"parent\";a:1:{i:0;s:6:\"parent\";}}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:3:\"tid\";s:3:\"tid\";}}}s:11:\"primary key\";a:2:{i:0;s:3:\"tid\";i:1;s:6:\"parent\";}s:6:\"module\";s:8:\"taxonomy\";s:4:\"name\";s:23:\"taxonomy_term_hierarchy\";}s:19:\"taxonomy_vocabulary\";a:6:{s:6:\"fields\";a:9:{s:3:\"vid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:4:\"name\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:12:\"translatable\";b:1;}s:12:\"machine_name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:11:\"description\";a:4:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";s:12:\"translatable\";b:1;}s:9:\"hierarchy\";a:5:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:6:\"module\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"weight\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:12;s:8:\"not null\";b:1;s:7:\"default\";s:3:\"und\";}s:9:\"i18n_mode\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:1:{i:0;s:3:\"vid\";}s:7:\"indexes\";a:1:{s:4:\"list\";a:2:{i:0;s:6:\"weight\";i:1;s:4:\"name\";}}s:11:\"unique keys\";a:1:{s:12:\"machine_name\";a:1:{i:0;s:12:\"machine_name\";}}s:6:\"module\";s:8:\"taxonomy\";s:4:\"name\";s:19:\"taxonomy_vocabulary\";}s:14:\"taxonomy_index\";a:5:{s:6:\"fields\";a:4:{s:3:\"nid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"tid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"sticky\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:0;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:2:{s:9:\"term_node\";a:3:{i:0;s:3:\"tid\";i:1;s:6:\"sticky\";i:2;s:7:\"created\";}s:3:\"nid\";a:1:{i:0;s:3:\"nid\";}}s:12:\"foreign keys\";a:2:{s:12:\"tracked_node\";a:2:{s:5:\"table\";s:4:\"node\";s:7:\"columns\";a:1:{s:3:\"nid\";s:3:\"nid\";}}s:4:\"term\";a:2:{s:5:\"table\";s:18:\"taxonomy_term_data\";s:7:\"columns\";a:1:{s:3:\"tid\";s:3:\"tid\";}}}s:6:\"module\";s:8:\"taxonomy\";s:4:\"name\";s:14:\"taxonomy_index\";}s:12:\"cache_update\";a:5:{s:6:\"fields\";a:5:{s:3:\"cid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"serialized\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:6:\"module\";s:6:\"update\";s:4:\"name\";s:12:\"cache_update\";}s:7:\"authmap\";a:7:{s:6:\"fields\";a:4:{s:3:\"aid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"uid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:8:\"authname\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"module\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}}s:11:\"unique keys\";a:1:{s:8:\"authname\";a:1:{i:0;s:8:\"authname\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"aid\";}s:12:\"foreign keys\";a:1:{s:4:\"user\";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:10:\"uid_module\";a:2:{i:0;s:3:\"uid\";i:1;s:6:\"module\";}}s:6:\"module\";s:4:\"user\";s:4:\"name\";s:7:\"authmap\";}s:15:\"role_permission\";a:6:{s:6:\"fields\";a:3:{s:3:\"rid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:10:\"permission\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"module\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}}s:11:\"primary key\";a:2:{i:0;s:3:\"rid\";i:1;s:10:\"permission\";}s:7:\"indexes\";a:1:{s:10:\"permission\";a:1:{i:0;s:10:\"permission\";}}s:12:\"foreign keys\";a:1:{s:4:\"role\";a:2:{s:5:\"table\";s:4:\"role\";s:7:\"columns\";a:1:{s:3:\"rid\";s:3:\"rid\";}}}s:6:\"module\";s:4:\"user\";s:4:\"name\";s:15:\"role_permission\";}s:4:\"role\";a:6:{s:6:\"fields\";a:3:{s:3:\"rid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:4:\"name\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:12:\"translatable\";b:1;}s:6:\"weight\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"unique keys\";a:1:{s:4:\"name\";a:1:{i:0;s:4:\"name\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"rid\";}s:7:\"indexes\";a:1:{s:11:\"name_weight\";a:2:{i:0;s:4:\"name\";i:1;s:6:\"weight\";}}s:6:\"module\";s:4:\"user\";s:4:\"name\";s:4:\"role\";}s:5:\"users\";a:7:{s:6:\"fields\";a:16:{s:3:\"uid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:60;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"pass\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"mail\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:254;s:8:\"not null\";b:0;s:7:\"default\";s:0:\"\";}s:5:\"theme\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:9:\"signature\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:16:\"signature_format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"access\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:5:\"login\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"status\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:8:\"timezone\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:0;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:12;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"picture\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"init\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:254;s:8:\"not null\";b:0;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:4:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";s:9:\"serialize\";b:1;}}s:7:\"indexes\";a:4:{s:6:\"access\";a:1:{i:0;s:6:\"access\";}s:7:\"created\";a:1:{i:0;s:7:\"created\";}s:4:\"mail\";a:1:{i:0;s:4:\"mail\";}s:7:\"picture\";a:1:{i:0;s:7:\"picture\";}}s:11:\"unique keys\";a:1:{s:4:\"name\";a:1:{i:0;s:4:\"name\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"uid\";}s:12:\"foreign keys\";a:1:{s:16:\"signature_format\";a:2:{s:5:\"table\";s:13:\"filter_format\";s:7:\"columns\";a:1:{s:16:\"signature_format\";s:6:\"format\";}}}s:6:\"module\";s:4:\"user\";s:4:\"name\";s:5:\"users\";}s:11:\"users_roles\";a:6:{s:6:\"fields\";a:2:{s:3:\"uid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"rid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:2:{i:0;s:3:\"uid\";i:1;s:3:\"rid\";}s:7:\"indexes\";a:1:{s:3:\"rid\";a:1:{i:0;s:3:\"rid\";}}s:12:\"foreign keys\";a:2:{s:4:\"user\";a:2:{s:5:\"table\";s:5:\"users\";s:7:\"columns\";a:1:{s:3:\"uid\";s:3:\"uid\";}}s:4:\"role\";a:2:{s:5:\"table\";s:4:\"role\";s:7:\"columns\";a:1:{s:3:\"rid\";s:3:\"rid\";}}}s:6:\"module\";s:4:\"user\";s:4:\"name\";s:11:\"users_roles\";}s:14:\"cache_variable\";a:5:{s:6:\"fields\";a:5:{s:3:\"cid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"serialized\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:6:\"module\";s:8:\"variable\";s:4:\"name\";s:14:\"cache_variable\";}s:5:\"forum\";a:6:{s:6:\"fields\";a:3:{s:3:\"nid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"vid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"tid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:2:{s:11:\"forum_topic\";a:2:{i:0;s:3:\"nid\";i:1;s:3:\"tid\";}s:3:\"tid\";a:1:{i:0;s:3:\"tid\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"vid\";}s:12:\"foreign keys\";a:1:{s:10:\"forum_node\";a:2:{s:5:\"table\";s:4:\"node\";s:7:\"columns\";a:2:{s:3:\"nid\";s:3:\"nid\";s:3:\"vid\";s:3:\"vid\";}}}s:6:\"module\";s:5:\"forum\";s:4:\"name\";s:5:\"forum\";}s:11:\"forum_index\";a:5:{s:6:\"fields\";a:7:{s:3:\"nid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:5:\"title\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:3:\"tid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"sticky\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:0;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:7:\"created\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:22:\"last_comment_timestamp\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:13:\"comment_count\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:3:{s:12:\"forum_topics\";a:4:{i:0;s:3:\"nid\";i:1;s:3:\"tid\";i:2;s:6:\"sticky\";i:3;s:22:\"last_comment_timestamp\";}s:7:\"created\";a:1:{i:0;s:7:\"created\";}s:22:\"last_comment_timestamp\";a:1:{i:0;s:22:\"last_comment_timestamp\";}}s:12:\"foreign keys\";a:2:{s:12:\"tracked_node\";a:2:{s:5:\"table\";s:4:\"node\";s:7:\"columns\";a:1:{s:3:\"nid\";s:3:\"nid\";}}s:4:\"term\";a:2:{s:5:\"table\";s:18:\"taxonomy_term_data\";s:7:\"columns\";a:1:{s:3:\"tid\";s:3:\"tid\";}}}s:6:\"module\";s:5:\"forum\";s:4:\"name\";s:11:\"forum_index\";}s:9:\"i18n_path\";a:7:{s:6:\"fields\";a:5:{s:4:\"tpid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:4:\"tsid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:4:\"path\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:12;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:3:\"pid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:4:\"path\";a:1:{i:0;s:4:\"path\";}}s:11:\"unique keys\";a:1:{s:12:\"set_language\";a:2:{i:0;s:4:\"tsid\";i:1;s:8:\"language\";}}s:12:\"foreign keys\";a:2:{s:13:\"path_language\";a:2:{s:5:\"table\";s:9:\"languages\";s:7:\"columns\";a:1:{s:8:\"language\";s:8:\"language\";}}s:15:\"translation_set\";a:2:{s:5:\"table\";s:16:\"i18n_translation\";s:7:\"columns\";a:1:{s:4:\"tsid\";s:4:\"tsid\";}}}s:11:\"primary key\";a:1:{i:0;s:4:\"tpid\";}s:6:\"module\";s:9:\"i18n_path\";s:4:\"name\";s:9:\"i18n_path\";}s:11:\"i18n_string\";a:5:{s:6:\"fields\";a:8:{s:3:\"lid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"textgroup\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:50;s:8:\"not null\";b:1;s:7:\"default\";s:7:\"default\";}s:7:\"context\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"objectid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"property\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:11:\"objectindex\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:11:\"primary key\";a:1:{i:0;s:3:\"lid\";}s:7:\"indexes\";a:1:{s:13:\"group_context\";a:2:{i:0;s:9:\"textgroup\";i:1;a:2:{i:0;s:7:\"context\";i:1;i:50;}}}s:6:\"module\";s:11:\"i18n_string\";s:4:\"name\";s:11:\"i18n_string\";}s:10:\"views_view\";a:6:{s:6:\"export\";a:17:{s:10:\"identifier\";s:4:\"view\";s:11:\"bulk export\";b:1;s:11:\"primary key\";s:3:\"vid\";s:12:\"default hook\";s:19:\"views_default_views\";s:11:\"admin_title\";s:10:\"human_name\";s:17:\"admin_description\";s:11:\"description\";s:3:\"api\";a:4:{s:5:\"owner\";s:5:\"views\";s:3:\"api\";s:13:\"views_default\";s:15:\"minimum_version\";s:1:\"2\";s:15:\"current_version\";s:3:\"3.0\";}s:6:\"object\";s:4:\"view\";s:19:\"subrecords callback\";s:26:\"views_load_display_records\";s:6:\"status\";s:14:\"views_defaults\";s:15:\"create callback\";s:14:\"views_new_view\";s:13:\"save callback\";s:15:\"views_save_view\";s:15:\"delete callback\";s:17:\"views_delete_view\";s:15:\"export callback\";s:17:\"views_export_view\";s:15:\"status callback\";s:19:\"views_export_status\";s:14:\"cache defaults\";b:1;s:17:\"default cache bin\";s:11:\"cache_views\";}s:6:\"fields\";a:7:{s:3:\"vid\";a:4:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:9:\"no export\";b:1;}s:4:\"name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:7:\"default\";s:0:\"\";s:8:\"not null\";b:1;}s:11:\"description\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:3:\"255\";s:7:\"default\";s:0:\"\";}s:3:\"tag\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:3:\"255\";s:7:\"default\";s:0:\"\";}s:10:\"base_table\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:7:\"default\";s:0:\"\";s:8:\"not null\";b:1;}s:10:\"human_name\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:3:\"255\";s:7:\"default\";s:0:\"\";}s:4:\"core\";a:2:{s:4:\"type\";s:3:\"int\";s:7:\"default\";i:0;}}s:11:\"primary key\";a:1:{i:0;s:3:\"vid\";}s:11:\"unique keys\";a:1:{s:4:\"name\";a:1:{i:0;s:4:\"name\";}}s:6:\"module\";s:5:\"views\";s:4:\"name\";s:10:\"views_view\";}s:13:\"views_display\";a:5:{s:6:\"fields\";a:6:{s:3:\"vid\";a:5:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;s:9:\"no export\";b:1;}s:2:\"id\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:2:\"64\";s:7:\"default\";s:0:\"\";s:8:\"not null\";b:1;}s:13:\"display_title\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:2:\"64\";s:7:\"default\";s:0:\"\";s:8:\"not null\";b:1;}s:14:\"display_plugin\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:2:\"64\";s:7:\"default\";s:0:\"\";s:8:\"not null\";b:1;}s:8:\"position\";a:2:{s:4:\"type\";s:3:\"int\";s:7:\"default\";i:0;}s:15:\"display_options\";a:4:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:9:\"serialize\";b:1;s:18:\"serialized default\";s:6:\"a:0:{}\";}}s:7:\"indexes\";a:1:{s:3:\"vid\";a:2:{i:0;s:3:\"vid\";i:1;s:8:\"position\";}}s:11:\"primary key\";a:2:{i:0;s:3:\"vid\";i:1;s:2:\"id\";}s:6:\"module\";s:5:\"views\";s:4:\"name\";s:13:\"views_display\";}s:11:\"cache_views\";a:5:{s:6:\"fields\";a:5:{s:3:\"cid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"serialized\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:6:\"module\";s:5:\"views\";s:4:\"name\";s:11:\"cache_views\";}s:16:\"cache_views_data\";a:5:{s:6:\"fields\";a:5:{s:3:\"cid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"serialized\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:1;}}s:7:\"indexes\";a:1:{s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:6:\"module\";s:5:\"views\";s:4:\"name\";s:16:\"cache_views_data\";}s:18:\"entity_translation\";a:4:{s:6:\"fields\";a:10:{s:11:\"entity_type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:9:\"entity_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:11:\"revision_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"source\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:3:\"uid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"status\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:1;}s:9:\"translate\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"changed\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:3:{i:0;s:11:\"entity_type\";i:1;s:9:\"entity_id\";i:2;s:8:\"language\";}s:6:\"module\";s:18:\"entity_translation\";s:4:\"name\";s:18:\"entity_translation\";}s:27:\"entity_translation_revision\";a:5:{s:6:\"fields\";a:10:{s:11:\"entity_type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:9:\"entity_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:11:\"revision_id\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"source\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:3:\"uid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"status\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:1;}s:9:\"translate\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"changed\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:3:{i:0;s:11:\"entity_type\";i:1;s:11:\"revision_id\";i:2;s:8:\"language\";}s:7:\"indexes\";a:1:{s:11:\"revision_id\";a:1:{i:0;s:11:\"revision_id\";}}s:6:\"module\";s:18:\"entity_translation\";s:4:\"name\";s:27:\"entity_translation_revision\";}s:14:\"cache_features\";a:5:{s:6:\"fields\";a:5:{s:3:\"cid\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:3:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";}s:6:\"expire\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"serialized\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:5:\"small\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:6:\"expire\";a:1:{i:0;s:6:\"expire\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:6:\"module\";s:8:\"features\";s:4:\"name\";s:14:\"cache_features\";}s:19:\"i18n_block_language\";a:5:{s:6:\"fields\";a:3:{s:6:\"module\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;}s:5:\"delta\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:12;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}}s:11:\"primary key\";a:3:{i:0;s:6:\"module\";i:1;s:5:\"delta\";i:2;s:8:\"language\";}s:7:\"indexes\";a:1:{s:8:\"language\";a:1:{i:0;s:8:\"language\";}}s:6:\"module\";s:10:\"i18n_block\";s:4:\"name\";s:19:\"i18n_block_language\";}}',0,1538750673,1),('schema:runtime:','a:4:{s:10:\"views_view\";a:6:{s:6:\"export\";a:17:{s:10:\"identifier\";s:4:\"view\";s:11:\"bulk export\";b:1;s:11:\"primary key\";s:3:\"vid\";s:12:\"default hook\";s:19:\"views_default_views\";s:11:\"admin_title\";s:10:\"human_name\";s:17:\"admin_description\";s:11:\"description\";s:3:\"api\";a:4:{s:5:\"owner\";s:5:\"views\";s:3:\"api\";s:13:\"views_default\";s:15:\"minimum_version\";s:1:\"2\";s:15:\"current_version\";s:3:\"3.0\";}s:6:\"object\";s:4:\"view\";s:19:\"subrecords callback\";s:26:\"views_load_display_records\";s:6:\"status\";s:14:\"views_defaults\";s:15:\"create callback\";s:14:\"views_new_view\";s:13:\"save callback\";s:15:\"views_save_view\";s:15:\"delete callback\";s:17:\"views_delete_view\";s:15:\"export callback\";s:17:\"views_export_view\";s:15:\"status callback\";s:19:\"views_export_status\";s:14:\"cache defaults\";b:1;s:17:\"default cache bin\";s:11:\"cache_views\";}s:6:\"fields\";a:7:{s:3:\"vid\";a:4:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:9:\"no export\";b:1;}s:4:\"name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:7:\"default\";s:0:\"\";s:8:\"not null\";b:1;}s:11:\"description\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:3:\"255\";s:7:\"default\";s:0:\"\";}s:3:\"tag\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:3:\"255\";s:7:\"default\";s:0:\"\";}s:10:\"base_table\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:7:\"default\";s:0:\"\";s:8:\"not null\";b:1;}s:10:\"human_name\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:3:\"255\";s:7:\"default\";s:0:\"\";}s:4:\"core\";a:2:{s:4:\"type\";s:3:\"int\";s:7:\"default\";i:0;}}s:11:\"primary key\";a:1:{i:0;s:3:\"vid\";}s:11:\"unique keys\";a:1:{s:4:\"name\";a:1:{i:0;s:4:\"name\";}}s:6:\"module\";s:5:\"views\";s:4:\"name\";s:10:\"views_view\";}s:13:\"views_display\";a:5:{s:6:\"fields\";a:6:{s:3:\"vid\";a:5:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;s:9:\"no export\";b:1;}s:2:\"id\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:2:\"64\";s:7:\"default\";s:0:\"\";s:8:\"not null\";b:1;}s:13:\"display_title\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:2:\"64\";s:7:\"default\";s:0:\"\";s:8:\"not null\";b:1;}s:14:\"display_plugin\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:2:\"64\";s:7:\"default\";s:0:\"\";s:8:\"not null\";b:1;}s:8:\"position\";a:2:{s:4:\"type\";s:3:\"int\";s:7:\"default\";i:0;}s:15:\"display_options\";a:4:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:9:\"serialize\";b:1;s:18:\"serialized default\";s:6:\"a:0:{}\";}}s:7:\"indexes\";a:1:{s:3:\"vid\";a:2:{i:0;s:3:\"vid\";i:1;s:8:\"position\";}}s:11:\"primary key\";a:2:{i:0;s:3:\"vid\";i:1;s:2:\"id\";}s:6:\"module\";s:5:\"views\";s:4:\"name\";s:13:\"views_display\";}s:4:\"node\";a:7:{s:6:\"fields\";a:14:{s:3:\"nid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"vid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:0;s:7:\"default\";N;}s:4:\"type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:12;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"title\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:3:\"uid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"status\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:1;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"changed\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"comment\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"promote\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"sticky\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"tnid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"translate\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:10:{s:12:\"node_changed\";a:1:{i:0;s:7:\"changed\";}s:12:\"node_created\";a:1:{i:0;s:7:\"created\";}s:14:\"node_frontpage\";a:4:{i:0;s:7:\"promote\";i:1;s:6:\"status\";i:2;s:6:\"sticky\";i:3;s:7:\"created\";}s:16:\"node_status_type\";a:3:{i:0;s:6:\"status\";i:1;s:4:\"type\";i:2;s:3:\"nid\";}s:15:\"node_title_type\";a:2:{i:0;s:5:\"title\";i:1;a:2:{i:0;s:4:\"type\";i:1;i:4;}}s:9:\"node_type\";a:1:{i:0;a:2:{i:0;s:4:\"type\";i:1;i:4;}}s:3:\"uid\";a:1:{i:0;s:3:\"uid\";}s:4:\"tnid\";a:1:{i:0;s:4:\"tnid\";}s:9:\"translate\";a:1:{i:0;s:9:\"translate\";}s:8:\"language\";a:1:{i:0;s:8:\"language\";}}s:11:\"unique keys\";a:1:{s:3:\"vid\";a:1:{i:0;s:3:\"vid\";}}s:12:\"foreign keys\";a:2:{s:13:\"node_revision\";a:2:{s:5:\"table\";s:13:\"node_revision\";s:7:\"columns\";a:1:{s:3:\"vid\";s:3:\"vid\";}}s:11:\"node_author\";a:2:{s:5:\"table\";s:5:\"users\";s:7:\"columns\";a:1:{s:3:\"uid\";s:3:\"uid\";}}}s:11:\"primary key\";a:1:{i:0;s:3:\"nid\";}s:6:\"module\";s:4:\"node\";s:4:\"name\";s:4:\"node\";}s:13:\"node_revision\";a:6:{s:6:\"fields\";a:10:{s:3:\"nid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"vid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"uid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:5:\"title\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:3:\"log\";a:3:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;s:4:\"size\";s:3:\"big\";}s:9:\"timestamp\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"status\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:1;}s:7:\"comment\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"promote\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"sticky\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:2:{s:3:\"nid\";a:1:{i:0;s:3:\"nid\";}s:3:\"uid\";a:1:{i:0;s:3:\"uid\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"vid\";}s:12:\"foreign keys\";a:2:{s:14:\"versioned_node\";a:2:{s:5:\"table\";s:4:\"node\";s:7:\"columns\";a:1:{s:3:\"nid\";s:3:\"nid\";}}s:14:\"version_author\";a:2:{s:5:\"table\";s:5:\"users\";s:7:\"columns\";a:1:{s:3:\"uid\";s:3:\"uid\";}}}s:6:\"module\";s:4:\"node\";s:4:\"name\";s:13:\"node_revision\";}}',0,1652167761,1),('schema:runtime:1','a:16:{s:4:\"node\";a:7:{s:6:\"fields\";a:14:{s:3:\"nid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"vid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:0;s:7:\"default\";N;}s:4:\"type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:12;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"title\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:3:\"uid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"status\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:1;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"changed\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"comment\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"promote\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"sticky\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"tnid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:9:\"translate\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:10:{s:12:\"node_changed\";a:1:{i:0;s:7:\"changed\";}s:12:\"node_created\";a:1:{i:0;s:7:\"created\";}s:14:\"node_frontpage\";a:4:{i:0;s:7:\"promote\";i:1;s:6:\"status\";i:2;s:6:\"sticky\";i:3;s:7:\"created\";}s:16:\"node_status_type\";a:3:{i:0;s:6:\"status\";i:1;s:4:\"type\";i:2;s:3:\"nid\";}s:15:\"node_title_type\";a:2:{i:0;s:5:\"title\";i:1;a:2:{i:0;s:4:\"type\";i:1;i:4;}}s:9:\"node_type\";a:1:{i:0;a:2:{i:0;s:4:\"type\";i:1;i:4;}}s:3:\"uid\";a:1:{i:0;s:3:\"uid\";}s:4:\"tnid\";a:1:{i:0;s:4:\"tnid\";}s:9:\"translate\";a:1:{i:0;s:9:\"translate\";}s:8:\"language\";a:1:{i:0;s:8:\"language\";}}s:11:\"unique keys\";a:1:{s:3:\"vid\";a:1:{i:0;s:3:\"vid\";}}s:12:\"foreign keys\";a:2:{s:13:\"node_revision\";a:2:{s:5:\"table\";s:13:\"node_revision\";s:7:\"columns\";a:1:{s:3:\"vid\";s:3:\"vid\";}}s:11:\"node_author\";a:2:{s:5:\"table\";s:5:\"users\";s:7:\"columns\";a:1:{s:3:\"uid\";s:3:\"uid\";}}}s:11:\"primary key\";a:1:{i:0;s:3:\"nid\";}s:6:\"module\";s:4:\"node\";s:4:\"name\";s:4:\"node\";}s:13:\"node_revision\";a:6:{s:6:\"fields\";a:10:{s:3:\"nid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"vid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"uid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:5:\"title\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:3:\"log\";a:3:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;s:4:\"size\";s:3:\"big\";}s:9:\"timestamp\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"status\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:1;}s:7:\"comment\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"promote\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"sticky\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:2:{s:3:\"nid\";a:1:{i:0;s:3:\"nid\";}s:3:\"uid\";a:1:{i:0;s:3:\"uid\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"vid\";}s:12:\"foreign keys\";a:2:{s:14:\"versioned_node\";a:2:{s:5:\"table\";s:4:\"node\";s:7:\"columns\";a:1:{s:3:\"nid\";s:3:\"nid\";}}s:14:\"version_author\";a:2:{s:5:\"table\";s:5:\"users\";s:7:\"columns\";a:1:{s:3:\"uid\";s:3:\"uid\";}}}s:6:\"module\";s:4:\"node\";s:4:\"name\";s:13:\"node_revision\";}s:18:\"taxonomy_term_data\";a:6:{s:6:\"fields\";a:8:{s:3:\"tid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"vid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"name\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:12:\"translatable\";b:1;}s:11:\"description\";a:4:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";s:12:\"translatable\";b:1;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}s:6:\"weight\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:12;s:8:\"not null\";b:1;s:7:\"default\";s:3:\"und\";}s:9:\"i18n_tsid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:1:{i:0;s:3:\"tid\";}s:12:\"foreign keys\";a:1:{s:10:\"vocabulary\";a:2:{s:5:\"table\";s:19:\"taxonomy_vocabulary\";s:7:\"columns\";a:1:{s:3:\"vid\";s:3:\"vid\";}}}s:7:\"indexes\";a:3:{s:13:\"taxonomy_tree\";a:3:{i:0;s:3:\"vid\";i:1;s:6:\"weight\";i:2;s:4:\"name\";}s:8:\"vid_name\";a:2:{i:0;s:3:\"vid\";i:1;s:4:\"name\";}s:4:\"name\";a:1:{i:0;s:4:\"name\";}}s:6:\"module\";s:8:\"taxonomy\";s:4:\"name\";s:18:\"taxonomy_term_data\";}s:7:\"comment\";a:6:{s:6:\"fields\";a:14:{s:3:\"cid\";a:2:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;}s:3:\"pid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"nid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"uid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"subject\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"hostname\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"changed\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"status\";a:5:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:1;s:4:\"size\";s:4:\"tiny\";}s:6:\"thread\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;}s:4:\"name\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:60;s:8:\"not null\";b:0;}s:4:\"mail\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:0;}s:8:\"homepage\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:12;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}}s:7:\"indexes\";a:5:{s:18:\"comment_status_pid\";a:2:{i:0;s:3:\"pid\";i:1;s:6:\"status\";}s:15:\"comment_num_new\";a:5:{i:0;s:3:\"nid\";i:1;s:6:\"status\";i:2;s:7:\"created\";i:3;s:3:\"cid\";i:4;s:6:\"thread\";}s:11:\"comment_uid\";a:1:{i:0;s:3:\"uid\";}s:20:\"comment_nid_language\";a:2:{i:0;s:3:\"nid\";i:1;s:8:\"language\";}s:15:\"comment_created\";a:1:{i:0;s:7:\"created\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"cid\";}s:12:\"foreign keys\";a:2:{s:12:\"comment_node\";a:2:{s:5:\"table\";s:4:\"node\";s:7:\"columns\";a:1:{s:3:\"nid\";s:3:\"nid\";}}s:14:\"comment_author\";a:2:{s:5:\"table\";s:5:\"users\";s:7:\"columns\";a:1:{s:3:\"uid\";s:3:\"uid\";}}}s:6:\"module\";s:7:\"comment\";s:4:\"name\";s:7:\"comment\";}s:20:\"i18n_translation_set\";a:5:{s:6:\"fields\";a:8:{s:4:\"tsid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:5:\"title\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"bundle\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:9:\"master_id\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"status\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:1;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:7:\"changed\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:1:{s:13:\"entity_bundle\";a:2:{i:0;s:4:\"type\";i:1;s:6:\"bundle\";}}s:11:\"primary key\";a:1:{i:0;s:4:\"tsid\";}s:6:\"module\";s:16:\"i18n_translation\";s:4:\"name\";s:20:\"i18n_translation_set\";}s:12:\"file_managed\";a:7:{s:6:\"fields\";a:8:{s:3:\"fid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"uid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:8:\"filename\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:3:\"uri\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:6:\"binary\";b:1;}s:8:\"filemime\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"filesize\";a:5:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:3:\"big\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"status\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:9:\"timestamp\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:3:{s:3:\"uid\";a:1:{i:0;s:3:\"uid\";}s:6:\"status\";a:1:{i:0;s:6:\"status\";}s:9:\"timestamp\";a:1:{i:0;s:9:\"timestamp\";}}s:11:\"unique keys\";a:1:{s:3:\"uri\";a:1:{i:0;s:3:\"uri\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"fid\";}s:12:\"foreign keys\";a:1:{s:10:\"file_owner\";a:2:{s:5:\"table\";s:5:\"users\";s:7:\"columns\";a:1:{s:3:\"uid\";s:3:\"uid\";}}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:12:\"file_managed\";}s:19:\"taxonomy_vocabulary\";a:6:{s:6:\"fields\";a:9:{s:3:\"vid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:4:\"name\";a:5:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";s:12:\"translatable\";b:1;}s:12:\"machine_name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:11:\"description\";a:4:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";s:12:\"translatable\";b:1;}s:9:\"hierarchy\";a:5:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:6:\"module\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"weight\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:12;s:8:\"not null\";b:1;s:7:\"default\";s:3:\"und\";}s:9:\"i18n_mode\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}}s:11:\"primary key\";a:1:{i:0;s:3:\"vid\";}s:7:\"indexes\";a:1:{s:4:\"list\";a:2:{i:0;s:6:\"weight\";i:1;s:4:\"name\";}}s:11:\"unique keys\";a:1:{s:12:\"machine_name\";a:1:{i:0;s:12:\"machine_name\";}}s:6:\"module\";s:8:\"taxonomy\";s:4:\"name\";s:19:\"taxonomy_vocabulary\";}s:5:\"users\";a:7:{s:6:\"fields\";a:16:{s:3:\"uid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:60;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"pass\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"mail\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:254;s:8:\"not null\";b:0;s:7:\"default\";s:0:\"\";}s:5:\"theme\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:9:\"signature\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:16:\"signature_format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}s:7:\"created\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"access\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:5:\"login\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:6:\"status\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:4:\"tiny\";}s:8:\"timezone\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:32;s:8:\"not null\";b:0;}s:8:\"language\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:12;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"picture\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"init\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:254;s:8:\"not null\";b:0;s:7:\"default\";s:0:\"\";}s:4:\"data\";a:4:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;s:4:\"size\";s:3:\"big\";s:9:\"serialize\";b:1;}}s:7:\"indexes\";a:4:{s:6:\"access\";a:1:{i:0;s:6:\"access\";}s:7:\"created\";a:1:{i:0;s:7:\"created\";}s:4:\"mail\";a:1:{i:0;s:4:\"mail\";}s:7:\"picture\";a:1:{i:0;s:7:\"picture\";}}s:11:\"unique keys\";a:1:{s:4:\"name\";a:1:{i:0;s:4:\"name\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"uid\";}s:12:\"foreign keys\";a:1:{s:16:\"signature_format\";a:2:{s:5:\"table\";s:13:\"filter_format\";s:7:\"columns\";a:1:{s:16:\"signature_format\";s:6:\"format\";}}}s:6:\"module\";s:4:\"user\";s:4:\"name\";s:5:\"users\";}s:11:\"menu_router\";a:5:{s:6:\"fields\";a:23:{s:4:\"path\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:14:\"load_functions\";a:2:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:1;}s:16:\"to_arg_functions\";a:2:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:1;}s:15:\"access_callback\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:16:\"access_arguments\";a:2:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;}s:13:\"page_callback\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:14:\"page_arguments\";a:2:{s:4:\"type\";s:4:\"blob\";s:8:\"not null\";b:0;}s:17:\"delivery_callback\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:3:\"fit\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:12:\"number_parts\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;s:4:\"size\";s:5:\"small\";}s:7:\"context\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:10:\"tab_parent\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"tab_root\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:5:\"title\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:14:\"title_callback\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:15:\"title_arguments\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:14:\"theme_callback\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:15:\"theme_arguments\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:4:\"type\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:11:\"description\";a:2:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;}s:8:\"position\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"weight\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:12:\"include_file\";a:2:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:6:\"medium\";}}s:7:\"indexes\";a:3:{s:3:\"fit\";a:1:{i:0;s:3:\"fit\";}s:10:\"tab_parent\";a:3:{i:0;a:2:{i:0;s:10:\"tab_parent\";i:1;i:64;}i:1;s:6:\"weight\";i:2;s:5:\"title\";}s:21:\"tab_root_weight_title\";a:3:{i:0;a:2:{i:0;s:8:\"tab_root\";i:1;i:64;}i:1;s:6:\"weight\";i:2;s:5:\"title\";}}s:11:\"primary key\";a:1:{i:0;s:4:\"path\";}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:11:\"menu_router\";}s:10:\"views_view\";a:6:{s:6:\"export\";a:17:{s:10:\"identifier\";s:4:\"view\";s:11:\"bulk export\";b:1;s:11:\"primary key\";s:3:\"vid\";s:12:\"default hook\";s:19:\"views_default_views\";s:11:\"admin_title\";s:10:\"human_name\";s:17:\"admin_description\";s:11:\"description\";s:3:\"api\";a:4:{s:5:\"owner\";s:5:\"views\";s:3:\"api\";s:13:\"views_default\";s:15:\"minimum_version\";s:1:\"2\";s:15:\"current_version\";s:3:\"3.0\";}s:6:\"object\";s:4:\"view\";s:19:\"subrecords callback\";s:26:\"views_load_display_records\";s:6:\"status\";s:14:\"views_defaults\";s:15:\"create callback\";s:14:\"views_new_view\";s:13:\"save callback\";s:15:\"views_save_view\";s:15:\"delete callback\";s:17:\"views_delete_view\";s:15:\"export callback\";s:17:\"views_export_view\";s:15:\"status callback\";s:19:\"views_export_status\";s:14:\"cache defaults\";b:1;s:17:\"default cache bin\";s:11:\"cache_views\";}s:6:\"fields\";a:7:{s:3:\"vid\";a:4:{s:4:\"type\";s:6:\"serial\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:9:\"no export\";b:1;}s:4:\"name\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:128;s:7:\"default\";s:0:\"\";s:8:\"not null\";b:1;}s:11:\"description\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:3:\"255\";s:7:\"default\";s:0:\"\";}s:3:\"tag\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:3:\"255\";s:7:\"default\";s:0:\"\";}s:10:\"base_table\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:7:\"default\";s:0:\"\";s:8:\"not null\";b:1;}s:10:\"human_name\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:3:\"255\";s:7:\"default\";s:0:\"\";}s:4:\"core\";a:2:{s:4:\"type\";s:3:\"int\";s:7:\"default\";i:0;}}s:11:\"primary key\";a:1:{i:0;s:3:\"vid\";}s:11:\"unique keys\";a:1:{s:4:\"name\";a:1:{i:0;s:4:\"name\";}}s:6:\"module\";s:5:\"views\";s:4:\"name\";s:10:\"views_view\";}s:13:\"views_display\";a:5:{s:6:\"fields\";a:6:{s:3:\"vid\";a:5:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;s:9:\"no export\";b:1;}s:2:\"id\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:2:\"64\";s:7:\"default\";s:0:\"\";s:8:\"not null\";b:1;}s:13:\"display_title\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:2:\"64\";s:7:\"default\";s:0:\"\";s:8:\"not null\";b:1;}s:14:\"display_plugin\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:2:\"64\";s:7:\"default\";s:0:\"\";s:8:\"not null\";b:1;}s:8:\"position\";a:2:{s:4:\"type\";s:3:\"int\";s:7:\"default\";i:0;}s:15:\"display_options\";a:4:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:9:\"serialize\";b:1;s:18:\"serialized default\";s:6:\"a:0:{}\";}}s:7:\"indexes\";a:1:{s:3:\"vid\";a:2:{i:0;s:3:\"vid\";i:1;s:8:\"position\";}}s:11:\"primary key\";a:2:{i:0;s:3:\"vid\";i:1;s:2:\"id\";}s:6:\"module\";s:5:\"views\";s:4:\"name\";s:13:\"views_display\";}s:16:\"date_format_type\";a:5:{s:6:\"fields\";a:3:{s:4:\"type\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;}s:5:\"title\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;}s:6:\"locked\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:7:\"default\";i:0;s:8:\"not null\";b:1;}}s:11:\"primary key\";a:1:{i:0;s:4:\"type\";}s:7:\"indexes\";a:1:{s:5:\"title\";a:1:{i:0;s:5:\"title\";}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:16:\"date_format_type\";}s:12:\"date_formats\";a:5:{s:6:\"fields\";a:4:{s:4:\"dfid\";a:3:{s:4:\"type\";s:6:\"serial\";s:8:\"not null\";b:1;s:8:\"unsigned\";b:1;}s:6:\"format\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:100;s:8:\"not null\";b:1;s:6:\"binary\";b:1;}s:4:\"type\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:64;s:8:\"not null\";b:1;}s:6:\"locked\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:7:\"default\";i:0;s:8:\"not null\";b:1;}}s:11:\"primary key\";a:1:{i:0;s:4:\"dfid\";}s:11:\"unique keys\";a:1:{s:7:\"formats\";a:2:{i:0;s:6:\"format\";i:1;s:4:\"type\";}}s:6:\"module\";s:6:\"system\";s:4:\"name\";s:12:\"date_formats\";}s:12:\"photos_image\";a:5:{s:6:\"fields\";a:8:{s:3:\"fid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"pid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";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:7:\"default\";s:0:\"\";}s:3:\"des\";a:3:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;s:4:\"size\";s:3:\"big\";}s:3:\"wid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:5:\"count\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:8:\"comcount\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"exif\";a:4:{s:4:\"type\";s:3:\"int\";s:4:\"size\";s:4:\"tiny\";s:6:\"length\";i:1;s:7:\"default\";i:0;}}s:7:\"indexes\";a:4:{s:3:\"pid\";a:1:{i:0;s:3:\"pid\";}s:3:\"wid\";a:1:{i:0;s:3:\"wid\";}s:5:\"count\";a:1:{i:0;s:5:\"count\";}s:8:\"comcount\";a:1:{i:0;s:8:\"comcount\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"fid\";}s:6:\"module\";s:6:\"photos\";s:4:\"name\";s:12:\"photos_image\";}s:12:\"photos_album\";a:5:{s:6:\"fields\";a:5:{s:3:\"pid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;}s:3:\"fid\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:3:\"wid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:5:\"count\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:1;s:7:\"default\";i:0;}s:4:\"data\";a:3:{s:4:\"type\";s:4:\"text\";s:8:\"not null\";b:1;s:4:\"size\";s:3:\"big\";}}s:7:\"indexes\";a:2:{s:3:\"fid\";a:1:{i:0;s:3:\"fid\";}s:3:\"wid\";a:1:{i:0;s:3:\"wid\";}}s:11:\"primary key\";a:1:{i:0;s:3:\"pid\";}s:6:\"module\";s:6:\"photos\";s:4:\"name\";s:12:\"photos_album\";}s:16:\"l10n_update_file\";a:4:{s:6:\"fields\";a:10:{s:7:\"project\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:2:\"50\";s:8:\"not null\";b:1;}s:8:\"language\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:2:\"12\";s:8:\"not null\";b:1;}s:4:\"type\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:2:\"50\";s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:8:\"filename\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:7:\"fileurl\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:3:\"uri\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:9:\"timestamp\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:0;s:10:\"disp-width\";s:2:\"11\";s:7:\"default\";i:0;}s:7:\"version\";a:4:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";s:3:\"128\";s:8:\"not null\";b:1;s:7:\"default\";s:0:\"\";}s:6:\"status\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:1;s:7:\"default\";i:1;}s:12:\"last_checked\";a:4:{s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:0;s:10:\"disp-width\";s:2:\"11\";s:7:\"default\";i:0;}}s:11:\"primary key\";a:2:{i:0;s:7:\"project\";i:1;s:8:\"language\";}s:6:\"module\";s:11:\"l10n_update\";s:4:\"name\";s:16:\"l10n_update_file\";}}',0,1539164953,1),('system_cache_tables','a:17:{i:0;s:11:\"cache_block\";i:1;s:16:\"cache_ctools_css\";i:2;s:11:\"cache_field\";i:3;s:14:\"cache_geocoder\";i:4;s:11:\"cache_image\";i:5;s:15:\"cache_libraries\";i:6;s:14:\"cache_location\";i:7;s:14:\"cache_variable\";i:8;s:11:\"cache_views\";i:9;s:16:\"cache_views_data\";i:10;s:14:\"cache_features\";i:11;s:5:\"cache\";i:12;s:10:\"cache_path\";i:13;s:12:\"cache_filter\";i:14;s:10:\"cache_page\";i:15;s:10:\"cache_form\";i:16;s:10:\"cache_menu\";}',0,1538756379,1),('theme_registry:build:modules','a:285:{s:22:\"features_module_status\";a:9:{s:9:\"variables\";a:2:{s:6:\"module\";N;s:6:\"status\";N;}s:4:\"path\";s:32:\"sites/all/modules/features/theme\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/features\";s:8:\"function\";s:28:\"theme_features_module_status\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/features/theme/theme.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:19:\"features_components\";a:9:{s:9:\"variables\";a:2:{s:4:\"info\";N;s:7:\"sources\";N;}s:4:\"path\";s:32:\"sites/all/modules/features/theme\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/features\";s:8:\"function\";s:25:\"theme_features_components\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/features/theme/theme.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:22:\"features_component_key\";a:8:{s:4:\"path\";s:32:\"sites/all/modules/features/theme\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/features\";s:8:\"function\";s:28:\"theme_features_component_key\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/features/theme/theme.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:23:\"features_component_list\";a:9:{s:9:\"variables\";a:3:{s:10:\"components\";a:0:{}s:6:\"source\";a:0:{}s:9:\"conflicts\";a:0:{}}s:4:\"path\";s:32:\"sites/all/modules/features/theme\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/features\";s:8:\"function\";s:29:\"theme_features_component_list\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/features/theme/theme.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:21:\"features_storage_link\";a:9:{s:9:\"variables\";a:4:{s:7:\"storage\";N;s:4:\"text\";N;s:4:\"path\";N;s:7:\"options\";a:0:{}}s:4:\"path\";s:32:\"sites/all/modules/features/theme\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/features\";s:8:\"function\";s:27:\"theme_features_storage_link\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/features/theme/theme.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:18:\"features_lock_link\";a:9:{s:9:\"variables\";a:3:{s:7:\"feature\";N;s:9:\"component\";N;s:6:\"locked\";b:0;}s:4:\"path\";s:32:\"sites/all/modules/features/theme\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/features\";s:8:\"function\";s:24:\"theme_features_lock_link\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/features/theme/theme.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:21:\"features_form_package\";a:9:{s:14:\"render element\";s:4:\"form\";s:4:\"path\";s:32:\"sites/all/modules/features/theme\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/features\";s:8:\"function\";s:27:\"theme_features_form_package\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/features/theme/theme.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:20:\"features_form_export\";a:9:{s:14:\"render element\";s:4:\"form\";s:4:\"path\";s:32:\"sites/all/modules/features/theme\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/features\";s:8:\"function\";s:26:\"theme_features_form_export\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/features/theme/theme.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:24:\"features_form_components\";a:9:{s:14:\"render element\";s:4:\"form\";s:4:\"path\";s:32:\"sites/all/modules/features/theme\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/features\";s:8:\"function\";s:30:\"theme_features_form_components\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/features/theme/theme.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:21:\"features_form_buttons\";a:9:{s:14:\"render element\";s:7:\"element\";s:4:\"path\";s:32:\"sites/all/modules/features/theme\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/features\";s:8:\"function\";s:27:\"theme_features_form_buttons\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/features/theme/theme.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:25:\"features_admin_components\";a:9:{s:14:\"render element\";s:4:\"form\";s:8:\"template\";s:25:\"features-admin-components\";s:4:\"path\";s:32:\"sites/all/modules/features/theme\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/features\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/features/theme/theme.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:45:\"template_preprocess_features_admin_components\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:30:\"entity_translation_unavailable\";a:6:{s:9:\"variables\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:36:\"sites/all/modules/entity_translation\";s:8:\"function\";s:36:\"theme_entity_translation_unavailable\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:32:\"entity_translation_language_tabs\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:36:\"sites/all/modules/entity_translation\";s:8:\"function\";s:38:\"theme_entity_translation_language_tabs\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:27:\"entity_translation_overview\";a:8:{s:9:\"variables\";a:2:{s:4:\"rows\";N;s:6:\"header\";N;}s:4:\"file\";s:28:\"entity_translation.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:36:\"sites/all/modules/entity_translation\";s:8:\"function\";s:33:\"theme_entity_translation_overview\";s:8:\"includes\";a:1:{i:0;s:65:\"sites/all/modules/entity_translation/entity_translation.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:36:\"entity_translation_overview_outdated\";a:8:{s:9:\"variables\";a:1:{s:7:\"message\";N;}s:4:\"file\";s:28:\"entity_translation.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:36:\"sites/all/modules/entity_translation\";s:8:\"function\";s:42:\"theme_entity_translation_overview_outdated\";s:8:\"includes\";a:1:{i:0;s:65:\"sites/all/modules/entity_translation/entity_translation.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:16:\"views_mini_pager\";a:10:{s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:9:\"variables\";a:3:{s:4:\"tags\";a:0:{}s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}}s:7:\"pattern\";s:18:\"views_mini_pager__\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:22:\"theme_views_mini_pager\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:16:\"views_view_field\";a:10:{s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:7:\"pattern\";s:18:\"views_view_field__\";s:9:\"variables\";a:3:{s:4:\"view\";N;s:5:\"field\";N;s:3:\"row\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:22:\"theme_views_view_field\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:1:{i:0;s:36:\"template_preprocess_views_view_field\";}s:17:\"process functions\";a:0:{}}s:19:\"views_view_grouping\";a:10:{s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:7:\"pattern\";s:21:\"views_view_grouping__\";s:9:\"variables\";a:5:{s:4:\"view\";N;s:8:\"grouping\";N;s:14:\"grouping_level\";N;s:4:\"rows\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:25:\"theme_views_view_grouping\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:1:{i:0;s:39:\"template_preprocess_views_view_grouping\";}s:17:\"process functions\";a:0:{}}s:10:\"views_view\";a:10:{s:7:\"pattern\";s:12:\"views_view__\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:9:\"variables\";a:2:{s:10:\"view_array\";a:0:{}s:4:\"view\";N;}s:8:\"template\";s:10:\"views-view\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:30:\"template_preprocess_views_view\";i:2;s:21:\"contextual_preprocess\";i:3;s:30:\"views_ui_preprocess_views_view\";}s:17:\"process functions\";a:4:{i:0;s:16:\"template_process\";i:1;s:27:\"template_process_views_view\";i:2;s:14:\"ctools_process\";i:3;s:11:\"rdf_process\";}}s:14:\"gmap_view_gmap\";a:10:{s:7:\"pattern\";s:16:\"gmap_view_gmap__\";s:4:\"file\";s:14:\"gmap.views.inc\";s:4:\"path\";s:22:\"sites/all/modules/gmap\";s:9:\"variables\";a:4:{s:4:\"view\";N;s:7:\"options\";N;s:4:\"rows\";N;s:5:\"title\";N;}s:8:\"template\";s:14:\"gmap-view-gmap\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:37:\"sites/all/modules/gmap/gmap.views.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:34:\"template_preprocess_gmap_view_gmap\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:28:\"gmap_views_view_gmapextended\";a:10:{s:7:\"pattern\";s:30:\"gmap_views_view_gmapextended__\";s:4:\"file\";s:14:\"gmap.views.inc\";s:4:\"path\";s:22:\"sites/all/modules/gmap\";s:9:\"variables\";a:4:{s:4:\"view\";N;s:7:\"options\";N;s:4:\"rows\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:34:\"theme_gmap_views_view_gmapextended\";s:8:\"includes\";a:1:{i:0;s:37:\"sites/all/modules/gmap/gmap.views.inc\";}s:20:\"preprocess functions\";a:1:{i:0;s:48:\"template_preprocess_gmap_views_view_gmapextended\";}s:17:\"process functions\";a:0:{}}s:22:\"views_view_unformatted\";a:10:{s:7:\"pattern\";s:24:\"views_view_unformatted__\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:9:\"variables\";a:4:{s:4:\"view\";N;s:7:\"options\";N;s:4:\"rows\";N;s:5:\"title\";N;}s:8:\"template\";s:22:\"views-view-unformatted\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:42:\"template_preprocess_views_view_unformatted\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:15:\"views_view_list\";a:10:{s:7:\"pattern\";s:17:\"views_view_list__\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:9:\"variables\";a:4:{s:4:\"view\";N;s:7:\"options\";N;s:4:\"rows\";N;s:5:\"title\";N;}s:8:\"template\";s:15:\"views-view-list\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:35:\"template_preprocess_views_view_list\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:15:\"views_view_grid\";a:10:{s:7:\"pattern\";s:17:\"views_view_grid__\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:9:\"variables\";a:4:{s:4:\"view\";N;s:7:\"options\";N;s:4:\"rows\";N;s:5:\"title\";N;}s:8:\"template\";s:15:\"views-view-grid\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:35:\"template_preprocess_views_view_grid\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:16:\"views_view_table\";a:10:{s:7:\"pattern\";s:18:\"views_view_table__\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:9:\"variables\";a:4:{s:4:\"view\";N;s:7:\"options\";N;s:4:\"rows\";N;s:5:\"title\";N;}s:8:\"template\";s:16:\"views-view-table\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:36:\"template_preprocess_views_view_table\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:18:\"views_view_summary\";a:10:{s:7:\"pattern\";s:20:\"views_view_summary__\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:9:\"variables\";a:4:{s:4:\"view\";N;s:7:\"options\";N;s:4:\"rows\";N;s:5:\"title\";N;}s:8:\"template\";s:18:\"views-view-summary\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:38:\"template_preprocess_views_view_summary\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:30:\"views_view_summary_unformatted\";a:10:{s:7:\"pattern\";s:32:\"views_view_summary_unformatted__\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:9:\"variables\";a:4:{s:4:\"view\";N;s:7:\"options\";N;s:4:\"rows\";N;s:5:\"title\";N;}s:8:\"template\";s:30:\"views-view-summary-unformatted\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:50:\"template_preprocess_views_view_summary_unformatted\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:14:\"views_view_rss\";a:10:{s:7:\"pattern\";s:16:\"views_view_rss__\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:9:\"variables\";a:4:{s:4:\"view\";N;s:7:\"options\";N;s:4:\"rows\";N;s:5:\"title\";N;}s:8:\"template\";s:14:\"views-view-rss\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:34:\"template_preprocess_views_view_rss\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:28:\"views_view_summary_jump_menu\";a:10:{s:7:\"pattern\";s:30:\"views_view_summary_jump_menu__\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:9:\"variables\";a:4:{s:4:\"view\";N;s:7:\"options\";N;s:4:\"rows\";N;s:5:\"title\";N;}s:8:\"template\";s:28:\"views-view-summary-jump-menu\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:20:\"views_view_jump_menu\";a:10:{s:7:\"pattern\";s:22:\"views_view_jump_menu__\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:9:\"variables\";a:4:{s:4:\"view\";N;s:7:\"options\";N;s:4:\"rows\";N;s:5:\"title\";N;}s:8:\"template\";s:20:\"views-view-jump-menu\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:22:\"views_view_row_comment\";a:10:{s:7:\"pattern\";s:24:\"views_view_row_comment__\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:9:\"variables\";a:4:{s:4:\"view\";N;s:7:\"options\";N;s:3:\"row\";N;s:11:\"field_alias\";N;}s:8:\"template\";s:22:\"views-view-row-comment\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:42:\"template_preprocess_views_view_row_comment\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:18:\"views_view_row_rss\";a:10:{s:7:\"pattern\";s:20:\"views_view_row_rss__\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:9:\"variables\";a:4:{s:4:\"view\";N;s:7:\"options\";N;s:3:\"row\";N;s:11:\"field_alias\";N;}s:8:\"template\";s:18:\"views-view-row-rss\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:38:\"template_preprocess_views_view_row_rss\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:17:\"views_view_fields\";a:10:{s:7:\"pattern\";s:19:\"views_view_fields__\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:9:\"variables\";a:4:{s:4:\"view\";N;s:7:\"options\";N;s:3:\"row\";N;s:11:\"field_alias\";N;}s:8:\"template\";s:17:\"views-view-fields\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:37:\"template_preprocess_views_view_fields\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:21:\"views_form_views_form\";a:9:{s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:27:\"theme_views_form_views_form\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:18:\"views_exposed_form\";a:10:{s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:8:\"template\";s:18:\"views-exposed-form\";s:7:\"pattern\";s:20:\"views_exposed_form__\";s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:38:\"template_preprocess_views_exposed_form\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:10:\"views_more\";a:10:{s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:8:\"template\";s:10:\"views-more\";s:7:\"pattern\";s:12:\"views_more__\";s:9:\"variables\";a:3:{s:8:\"more_url\";N;s:9:\"link_text\";s:4:\"more\";s:4:\"view\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:6:\"forums\";a:6:{s:8:\"template\";s:20:\"modules/forum/forums\";s:9:\"variables\";a:6:{s:6:\"forums\";N;s:6:\"topics\";N;s:7:\"parents\";N;s:3:\"tid\";N;s:6:\"sortby\";N;s:14:\"forum_per_page\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/forum\";s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:26:\"template_preprocess_forums\";i:2;s:21:\"contextual_preprocess\";i:3;s:28:\"i18n_forum_preprocess_forums\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:10:\"forum_list\";a:6:{s:8:\"template\";s:24:\"modules/forum/forum-list\";s:9:\"variables\";a:3:{s:6:\"forums\";N;s:7:\"parents\";N;s:3:\"tid\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/forum\";s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:30:\"template_preprocess_forum_list\";i:2;s:21:\"contextual_preprocess\";i:3;s:32:\"i18n_forum_preprocess_forum_list\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:16:\"forum_topic_list\";a:6:{s:8:\"template\";s:30:\"modules/forum/forum-topic-list\";s:9:\"variables\";a:4:{s:3:\"tid\";N;s:6:\"topics\";N;s:6:\"sortby\";N;s:14:\"forum_per_page\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/forum\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:36:\"template_preprocess_forum_topic_list\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:10:\"forum_icon\";a:6:{s:8:\"template\";s:24:\"modules/forum/forum-icon\";s:9:\"variables\";a:5:{s:9:\"new_posts\";N;s:9:\"num_posts\";i:0;s:12:\"comment_mode\";i:0;s:6:\"sticky\";i:0;s:9:\"first_new\";b:0;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/forum\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:30:\"template_preprocess_forum_icon\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:15:\"forum_submitted\";a:6:{s:8:\"template\";s:29:\"modules/forum/forum-submitted\";s:9:\"variables\";a:1:{s:5:\"topic\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/forum\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:35:\"template_preprocess_forum_submitted\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:10:\"forum_form\";a:8:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:15:\"forum.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/forum\";s:8:\"function\";s:16:\"theme_forum_form\";s:8:\"includes\";a:1:{i:0;s:29:\"modules/forum/forum.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:28:\"views_ui_display_tab_setting\";a:7:{s:9:\"variables\";a:7:{s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:14:\"settings_links\";a:0:{}s:10:\"overridden\";b:0;s:9:\"defaulted\";b:0;s:21:\"description_separator\";b:1;s:5:\"class\";a:0:{}}s:8:\"template\";s:28:\"views-ui-display-tab-setting\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:48:\"template_preprocess_views_ui_display_tab_setting\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:27:\"views_ui_display_tab_bucket\";a:7:{s:14:\"render element\";s:7:\"element\";s:8:\"template\";s:27:\"views-ui-display-tab-bucket\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:47:\"template_preprocess_views_ui_display_tab_bucket\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:23:\"views_ui_rearrange_form\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:29:\"theme_views_ui_rearrange_form\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:30:\"views_ui_rearrange_filter_form\";a:8:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:18:\"includes/admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:36:\"theme_views_ui_rearrange_filter_form\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/views/includes/admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:27:\"views_ui_expose_filter_form\";a:8:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:18:\"includes/admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:33:\"theme_views_ui_expose_filter_form\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/views/includes/admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:18:\"views_ui_view_info\";a:8:{s:9:\"variables\";a:2:{s:4:\"view\";N;s:4:\"base\";N;}s:4:\"file\";s:18:\"includes/admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:24:\"theme_views_ui_view_info\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/views/includes/admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:32:\"views_ui_build_group_filter_form\";a:8:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:18:\"includes/admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:38:\"theme_views_ui_build_group_filter_form\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/views/includes/admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:12:\"views_tabset\";a:6:{s:9:\"variables\";a:1:{s:4:\"tabs\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:18:\"theme_views_tabset\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:9:\"views_tab\";a:6:{s:9:\"variables\";a:1:{s:4:\"body\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:15:\"theme_views_tab\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:30:\"views_ui_reorder_displays_form\";a:8:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:18:\"includes/admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:36:\"theme_views_ui_reorder_displays_form\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/views/includes/admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:27:\"views_ui_style_plugin_table\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:33:\"theme_views_ui_style_plugin_table\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:29:\"views_ui_view_preview_section\";a:6:{s:9:\"variables\";a:4:{s:4:\"view\";N;s:7:\"section\";N;s:7:\"content\";N;s:5:\"links\";s:0:\"\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:35:\"theme_views_ui_view_preview_section\";s:20:\"preprocess functions\";a:1:{i:0;s:49:\"template_preprocess_views_ui_view_preview_section\";}s:17:\"process functions\";a:0:{}}s:15:\"views_container\";a:8:{s:14:\"render element\";s:7:\"element\";s:4:\"file\";s:15:\"theme/theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:21:\"theme_views_container\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:21:\"variable_table_select\";a:8:{s:14:\"render element\";s:7:\"element\";s:4:\"file\";s:17:\"variable.form.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/variable\";s:8:\"function\";s:27:\"theme_variable_table_select\";s:8:\"includes\";a:1:{i:0;s:44:\"sites/all/modules/variable/variable.form.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:12:\"user_picture\";a:6:{s:9:\"variables\";a:1:{s:7:\"account\";N;}s:8:\"template\";s:25:\"modules/user/user-picture\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:32:\"template_preprocess_user_picture\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:12:\"user_profile\";a:8:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:25:\"modules/user/user-profile\";s:4:\"file\";s:14:\"user.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.pages.inc\";}s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:32:\"template_preprocess_user_profile\";i:2;s:21:\"contextual_preprocess\";i:3;s:27:\"rdf_preprocess_user_profile\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:21:\"user_profile_category\";a:8:{s:14:\"render element\";s:7:\"element\";s:8:\"template\";s:34:\"modules/user/user-profile-category\";s:4:\"file\";s:14:\"user.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.pages.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:41:\"template_preprocess_user_profile_category\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:17:\"user_profile_item\";a:8:{s:14:\"render element\";s:7:\"element\";s:8:\"template\";s:30:\"modules/user/user-profile-item\";s:4:\"file\";s:14:\"user.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.pages.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:37:\"template_preprocess_user_profile_item\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:9:\"user_list\";a:6:{s:9:\"variables\";a:2:{s:5:\"users\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:15:\"theme_user_list\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:22:\"user_admin_permissions\";a:8:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:14:\"user.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:28:\"theme_user_admin_permissions\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:16:\"user_admin_roles\";a:8:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:14:\"user.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:22:\"theme_user_admin_roles\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:27:\"user_permission_description\";a:8:{s:9:\"variables\";a:2:{s:15:\"permission_item\";N;s:4:\"hide\";N;}s:4:\"file\";s:14:\"user.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:33:\"theme_user_permission_description\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:14:\"user_signature\";a:6:{s:9:\"variables\";a:1:{s:9:\"signature\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:20:\"theme_user_signature\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:26:\"update_manager_update_form\";a:8:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:18:\"update.manager.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:32:\"theme_update_manager_update_form\";s:8:\"includes\";a:1:{i:0;s:33:\"modules/update/update.manager.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:17:\"update_last_check\";a:6:{s:9:\"variables\";a:1:{s:4:\"last\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:23:\"theme_update_last_check\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:13:\"update_report\";a:8:{s:9:\"variables\";a:1:{s:4:\"data\";N;}s:4:\"file\";s:17:\"update.report.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:19:\"theme_update_report\";s:8:\"includes\";a:1:{i:0;s:32:\"modules/update/update.report.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:14:\"update_version\";a:8:{s:9:\"variables\";a:3:{s:7:\"version\";N;s:3:\"tag\";N;s:5:\"class\";a:0:{}}s:4:\"file\";s:17:\"update.report.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:20:\"theme_update_version\";s:8:\"includes\";a:1:{i:0;s:32:\"modules/update/update.report.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:19:\"update_status_label\";a:8:{s:9:\"variables\";a:1:{s:6:\"status\";N;}s:4:\"file\";s:17:\"update.report.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:25:\"theme_update_status_label\";s:8:\"includes\";a:1:{i:0;s:32:\"modules/update/update.report.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:7:\"toolbar\";a:7:{s:14:\"render element\";s:7:\"toolbar\";s:8:\"template\";s:7:\"toolbar\";s:4:\"path\";s:15:\"modules/toolbar\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/toolbar\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";i:2;s:26:\"toolbar_preprocess_toolbar\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:14:\"toolbar_toggle\";a:6:{s:9:\"variables\";a:2:{s:9:\"collapsed\";N;s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/toolbar\";s:8:\"function\";s:20:\"theme_toolbar_toggle\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:30:\"taxonomy_overview_vocabularies\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/taxonomy\";s:8:\"function\";s:36:\"theme_taxonomy_overview_vocabularies\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:23:\"taxonomy_overview_terms\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/taxonomy\";s:8:\"function\";s:29:\"theme_taxonomy_overview_terms\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:13:\"taxonomy_term\";a:6:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:30:\"modules/taxonomy/taxonomy-term\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/taxonomy\";s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:33:\"template_preprocess_taxonomy_term\";i:2;s:21:\"contextual_preprocess\";i:3;s:28:\"rdf_preprocess_taxonomy_term\";}s:17:\"process functions\";a:4:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";i:3;s:27:\"title_process_taxonomy_term\";}}s:4:\"html\";a:6:{s:14:\"render element\";s:4:\"page\";s:8:\"template\";s:19:\"modules/system/html\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:20:\"preprocess functions\";a:7:{i:0;s:19:\"template_preprocess\";i:1;s:24:\"template_preprocess_html\";i:2;s:21:\"contextual_preprocess\";i:3;s:23:\"overlay_preprocess_html\";i:4;s:23:\"toolbar_preprocess_html\";i:5;s:20:\"i18n_preprocess_html\";i:6;s:21:\"views_preprocess_html\";}s:17:\"process functions\";a:4:{i:0;s:16:\"template_process\";i:1;s:21:\"template_process_html\";i:2;s:14:\"ctools_process\";i:3;s:11:\"rdf_process\";}}s:4:\"page\";a:6:{s:14:\"render element\";s:4:\"page\";s:8:\"template\";s:19:\"modules/system/page\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:20:\"preprocess functions\";a:7:{i:0;s:19:\"template_preprocess\";i:1;s:24:\"template_preprocess_page\";i:2;s:21:\"contextual_preprocess\";i:3;s:23:\"overlay_preprocess_page\";i:4;s:24:\"shortcut_preprocess_page\";i:5;s:21:\"views_preprocess_page\";i:6;s:34:\"entity_translation_preprocess_page\";}s:17:\"process functions\";a:5:{i:0;s:16:\"template_process\";i:1;s:21:\"template_process_page\";i:2;s:14:\"ctools_process\";i:3;s:11:\"rdf_process\";i:4;s:18:\"title_process_page\";}}s:6:\"region\";a:6:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:21:\"modules/system/region\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:26:\"template_preprocess_region\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:15:\"status_messages\";a:6:{s:9:\"variables\";a:1:{s:7:\"display\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:21:\"theme_status_messages\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:4:\"link\";a:6:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:4:\"path\";N;s:7:\"options\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_link\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:5:\"links\";a:6:{s:9:\"variables\";a:3:{s:5:\"links\";N;s:10:\"attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:5:\"links\";}}s:7:\"heading\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_links\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:5:\"image\";a:6:{s:9:\"variables\";a:6:{s:4:\"path\";N;s:5:\"width\";N;s:6:\"height\";N;s:3:\"alt\";s:0:\"\";s:5:\"title\";N;s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_image\";s:20:\"preprocess functions\";a:1:{i:0;s:20:\"rdf_preprocess_image\";}s:17:\"process functions\";a:0:{}}s:10:\"breadcrumb\";a:6:{s:9:\"variables\";a:1:{s:10:\"breadcrumb\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_breadcrumb\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:4:\"help\";a:6:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_help\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:5:\"table\";a:6:{s:9:\"variables\";a:7:{s:6:\"header\";N;s:4:\"rows\";N;s:10:\"attributes\";a:0:{}s:7:\"caption\";N;s:9:\"colgroups\";a:0:{}s:6:\"sticky\";b:1;s:5:\"empty\";s:0:\"\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_table\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:19:\"tablesort_indicator\";a:6:{s:9:\"variables\";a:1:{s:5:\"style\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:25:\"theme_tablesort_indicator\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:4:\"mark\";a:6:{s:9:\"variables\";a:1:{s:4:\"type\";i:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_mark\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:9:\"item_list\";a:6:{s:9:\"variables\";a:4:{s:5:\"items\";a:0:{}s:5:\"title\";N;s:4:\"type\";s:2:\"ul\";s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_item_list\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:14:\"more_help_link\";a:6:{s:9:\"variables\";a:1:{s:3:\"url\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:20:\"theme_more_help_link\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:9:\"feed_icon\";a:6:{s:9:\"variables\";a:2:{s:3:\"url\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_feed_icon\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:9:\"more_link\";a:6:{s:9:\"variables\";a:2:{s:3:\"url\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_more_link\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:8:\"username\";a:6:{s:9:\"variables\";a:1:{s:7:\"account\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_username\";s:20:\"preprocess functions\";a:2:{i:0;s:28:\"template_preprocess_username\";i:1;s:23:\"rdf_preprocess_username\";}s:17:\"process functions\";a:1:{i:0;s:25:\"template_process_username\";}}s:12:\"progress_bar\";a:6:{s:9:\"variables\";a:2:{s:7:\"percent\";N;s:7:\"message\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_progress_bar\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:11:\"indentation\";a:6:{s:9:\"variables\";a:1:{s:4:\"size\";i:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_indentation\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:8:\"html_tag\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_html_tag\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:16:\"maintenance_page\";a:6:{s:9:\"variables\";a:2:{s:7:\"content\";N;s:13:\"show_messages\";b:1;}s:8:\"template\";s:31:\"modules/system/maintenance-page\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:36:\"template_preprocess_maintenance_page\";i:2;s:21:\"contextual_preprocess\";i:3;s:35:\"overlay_preprocess_maintenance_page\";}s:17:\"process functions\";a:4:{i:0;s:16:\"template_process\";i:1;s:33:\"template_process_maintenance_page\";i:2;s:14:\"ctools_process\";i:3;s:11:\"rdf_process\";}}s:11:\"update_page\";a:6:{s:9:\"variables\";a:2:{s:7:\"content\";N;s:13:\"show_messages\";b:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_update_page\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:12:\"install_page\";a:6:{s:9:\"variables\";a:1:{s:7:\"content\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_install_page\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:9:\"task_list\";a:6:{s:9:\"variables\";a:2:{s:5:\"items\";N;s:6:\"active\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_task_list\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:17:\"authorize_message\";a:6:{s:9:\"variables\";a:2:{s:7:\"message\";N;s:7:\"success\";b:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:23:\"theme_authorize_message\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:16:\"authorize_report\";a:6:{s:9:\"variables\";a:1:{s:8:\"messages\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:22:\"theme_authorize_report\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:5:\"pager\";a:6:{s:9:\"variables\";a:4:{s:4:\"tags\";a:0:{}s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}s:8:\"quantity\";i:9;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_pager\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:11:\"pager_first\";a:6:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_pager_first\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:14:\"pager_previous\";a:6:{s:9:\"variables\";a:4:{s:4:\"text\";N;s:7:\"element\";i:0;s:8:\"interval\";i:1;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:20:\"theme_pager_previous\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:10:\"pager_next\";a:6:{s:9:\"variables\";a:4:{s:4:\"text\";N;s:7:\"element\";i:0;s:8:\"interval\";i:1;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_pager_next\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:10:\"pager_last\";a:6:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_pager_last\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:10:\"pager_link\";a:6:{s:9:\"variables\";a:5:{s:4:\"text\";N;s:8:\"page_new\";N;s:7:\"element\";N;s:10:\"parameters\";a:0:{}s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_pager_link\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:9:\"menu_link\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_menu_link\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:9:\"menu_tree\";a:6:{s:14:\"render element\";s:4:\"tree\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_menu_tree\";s:20:\"preprocess functions\";a:1:{i:0;s:29:\"template_preprocess_menu_tree\";}s:17:\"process functions\";a:0:{}}s:15:\"menu_local_task\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:21:\"theme_menu_local_task\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:17:\"menu_local_action\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:23:\"theme_menu_local_action\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:16:\"menu_local_tasks\";a:6:{s:9:\"variables\";a:2:{s:7:\"primary\";a:0:{}s:9:\"secondary\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:22:\"theme_menu_local_tasks\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:6:\"select\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_select\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:8:\"fieldset\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_fieldset\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:5:\"radio\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_radio\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:6:\"radios\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_radios\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:4:\"date\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_date\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:15:\"exposed_filters\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:21:\"theme_exposed_filters\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:8:\"checkbox\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_checkbox\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:10:\"checkboxes\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_checkboxes\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:6:\"button\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_button\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:12:\"image_button\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_image_button\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:6:\"hidden\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_hidden\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:9:\"textfield\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_textfield\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:4:\"form\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_form\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:8:\"textarea\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_textarea\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:8:\"password\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_password\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:4:\"file\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_file\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:11:\"tableselect\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_tableselect\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:12:\"form_element\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_form_element\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:20:\"form_required_marker\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:26:\"theme_form_required_marker\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:18:\"form_element_label\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:24:\"theme_form_element_label\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:13:\"vertical_tabs\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:19:\"theme_vertical_tabs\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:9:\"container\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_container\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:18:\"system_themes_page\";a:8:{s:9:\"variables\";a:1:{s:12:\"theme_groups\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:24:\"theme_system_themes_page\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:20:\"system_settings_form\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:26:\"theme_system_settings_form\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:12:\"confirm_form\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_confirm_form\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:23:\"system_modules_fieldset\";a:8:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:29:\"theme_system_modules_fieldset\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:27:\"system_modules_incompatible\";a:8:{s:9:\"variables\";a:1:{s:7:\"message\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:33:\"theme_system_modules_incompatible\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:24:\"system_modules_uninstall\";a:8:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:30:\"theme_system_modules_uninstall\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:13:\"status_report\";a:8:{s:14:\"render element\";s:12:\"requirements\";s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:19:\"theme_status_report\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:10:\"admin_page\";a:8:{s:9:\"variables\";a:1:{s:6:\"blocks\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_admin_page\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:11:\"admin_block\";a:8:{s:9:\"variables\";a:1:{s:5:\"block\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_admin_block\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:19:\"admin_block_content\";a:8:{s:9:\"variables\";a:1:{s:7:\"content\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:25:\"theme_admin_block_content\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:18:\"system_admin_index\";a:8:{s:9:\"variables\";a:1:{s:10:\"menu_items\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:24:\"theme_system_admin_index\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:17:\"system_powered_by\";a:6:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:23:\"theme_system_powered_by\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:19:\"system_compact_link\";a:6:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:25:\"theme_system_compact_link\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:25:\"system_date_time_settings\";a:8:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:31:\"theme_system_date_time_settings\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:22:\"shortcut_set_customize\";a:8:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:18:\"shortcut.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/shortcut\";s:8:\"function\";s:28:\"theme_shortcut_set_customize\";s:8:\"includes\";a:1:{i:0;s:35:\"modules/shortcut/shortcut.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:29:\"rdf_template_variable_wrapper\";a:6:{s:9:\"variables\";a:4:{s:7:\"content\";N;s:10:\"attributes\";a:0:{}s:7:\"context\";a:0:{}s:6:\"inline\";b:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:11:\"modules/rdf\";s:8:\"function\";s:35:\"theme_rdf_template_variable_wrapper\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:12:\"rdf_metadata\";a:6:{s:9:\"variables\";a:1:{s:8:\"metadata\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:11:\"modules/rdf\";s:8:\"function\";s:18:\"theme_rdf_metadata\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:20:\"photos_editlist_form\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:8:\"function\";s:26:\"theme_photos_editlist_form\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:20:\"photos_comment_count\";a:6:{s:8:\"function\";s:33:\"photos_theme_photos_comment_count\";s:9:\"variables\";a:2:{s:8:\"comcount\";N;s:3:\"url\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:14:\"photos_default\";a:6:{s:8:\"template\";s:43:\"sites/all/modules/photos/tpl/photos_default\";s:9:\"variables\";a:1:{s:7:\"content\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:11:\"photos_down\";a:6:{s:8:\"template\";s:40:\"sites/all/modules/photos/tpl/photos_down\";s:9:\"variables\";a:2:{s:7:\"content\";N;s:4:\"type\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:12:\"photos_slide\";a:6:{s:8:\"template\";s:41:\"sites/all/modules/photos/tpl/photos_slide\";s:9:\"variables\";a:1:{s:7:\"content\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:16:\"photos_imageview\";a:6:{s:8:\"template\";s:45:\"sites/all/modules/photos/tpl/photos_imageview\";s:9:\"variables\";a:2:{s:5:\"image\";N;s:4:\"type\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:17:\"photos_imageblock\";a:6:{s:8:\"template\";s:46:\"sites/all/modules/photos/tpl/photos_imageblock\";s:9:\"variables\";a:1:{s:5:\"image\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:12:\"photos_block\";a:6:{s:8:\"function\";s:25:\"photos_theme_photos_block\";s:9:\"variables\";a:2:{s:6:\"images\";N;s:4:\"type\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:16:\"photos_albumview\";a:6:{s:8:\"template\";s:45:\"sites/all/modules/photos/tpl/photos_albumview\";s:9:\"variables\";a:2:{s:5:\"album\";N;s:4:\"node\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:16:\"photos_albumlist\";a:6:{s:8:\"template\";s:45:\"sites/all/modules/photos/tpl/photos_albumlist\";s:9:\"variables\";a:1:{s:5:\"image\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:17:\"photos_albumlinks\";a:6:{s:8:\"template\";s:46:\"sites/all/modules/photos/tpl/photos_albumlinks\";s:9:\"variables\";a:1:{s:5:\"links\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:16:\"photos_imagehtml\";a:6:{s:8:\"template\";s:45:\"sites/all/modules/photos/tpl/photos_imagehtml\";s:9:\"variables\";a:2:{s:5:\"image\";N;s:10:\"style_name\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";i:2;s:34:\"photos_preprocess_photos_imagehtml\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:11:\"photos_exif\";a:6:{s:8:\"template\";s:40:\"sites/all/modules/photos/tpl/photos_exif\";s:9:\"variables\";a:2:{s:4:\"exif\";N;s:4:\"type\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:12:\"photos_print\";a:6:{s:8:\"template\";s:41:\"sites/all/modules/photos/tpl/photos_print\";s:9:\"variables\";a:2:{s:7:\"content\";N;s:4:\"type\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:12:\"photos_share\";a:6:{s:8:\"template\";s:41:\"sites/all/modules/photos/tpl/photos_share\";s:9:\"variables\";a:2:{s:6:\"images\";N;s:4:\"type\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:11:\"photos_vote\";a:6:{s:8:\"template\";s:40:\"sites/all/modules/photos/tpl/photos_vote\";s:9:\"variables\";a:1:{s:3:\"fid\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";i:2;s:29:\"photos_preprocess_photos_vote\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:7:\"overlay\";a:6:{s:14:\"render element\";s:4:\"page\";s:8:\"template\";s:23:\"modules/overlay/overlay\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/overlay\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:27:\"template_preprocess_overlay\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:4:{i:0;s:16:\"template_process\";i:1;s:24:\"template_process_overlay\";i:2;s:14:\"ctools_process\";i:3;s:11:\"rdf_process\";}}s:23:\"overlay_disable_message\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/overlay\";s:8:\"function\";s:29:\"theme_overlay_disable_message\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:12:\"options_none\";a:6:{s:9:\"variables\";a:2:{s:8:\"instance\";N;s:6:\"option\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:29:\"modules/field/modules/options\";s:8:\"function\";s:18:\"theme_options_none\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:4:\"node\";a:6:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:17:\"modules/node/node\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:20:\"preprocess functions\";a:7:{i:0;s:19:\"template_preprocess\";i:1;s:24:\"template_preprocess_node\";i:2;s:21:\"contextual_preprocess\";i:3;s:22:\"ctools_preprocess_node\";i:4;s:19:\"rdf_preprocess_node\";i:5;s:21:\"views_preprocess_node\";i:6;s:34:\"entity_translation_preprocess_node\";}s:17:\"process functions\";a:4:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";i:3;s:18:\"title_process_node\";}}s:17:\"node_search_admin\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:23:\"theme_node_search_admin\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:13:\"node_add_list\";a:8:{s:9:\"variables\";a:1:{s:7:\"content\";N;}s:4:\"file\";s:14:\"node.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:19:\"theme_node_add_list\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/node/node.pages.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:12:\"node_preview\";a:8:{s:9:\"variables\";a:1:{s:4:\"node\";N;}s:4:\"file\";s:14:\"node.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:18:\"theme_node_preview\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/node/node.pages.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:19:\"node_admin_overview\";a:8:{s:9:\"variables\";a:2:{s:4:\"name\";N;s:4:\"type\";N;}s:4:\"file\";s:17:\"content_types.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:25:\"theme_node_admin_overview\";s:8:\"includes\";a:1:{i:0;s:30:\"modules/node/content_types.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:17:\"node_recent_block\";a:6:{s:9:\"variables\";a:1:{s:5:\"nodes\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:23:\"theme_node_recent_block\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:19:\"node_recent_content\";a:6:{s:9:\"variables\";a:1:{s:4:\"node\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:25:\"theme_node_recent_content\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:18:\"menu_overview_form\";a:8:{s:4:\"file\";s:14:\"menu.admin.inc\";s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/menu\";s:8:\"function\";s:24:\"theme_menu_overview_form\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/menu/menu.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:19:\"menu_admin_overview\";a:8:{s:4:\"file\";s:14:\"menu.admin.inc\";s:9:\"variables\";a:3:{s:5:\"title\";N;s:4:\"name\";N;s:11:\"description\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/menu\";s:8:\"function\";s:25:\"theme_menu_admin_overview\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/menu/menu.admin.inc\";}s:20:\"preprocess functions\";a:1:{i:0;s:40:\"i18n_menu_preprocess_menu_admin_overview\";}s:17:\"process functions\";a:0:{}}s:22:\"location_cck_field_all\";a:6:{s:9:\"variables\";a:4:{s:8:\"location\";N;s:4:\"hide\";a:0:{}s:5:\"field\";N;s:8:\"instance\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:47:\"sites/all/modules/location/contrib/location_cck\";s:8:\"function\";s:28:\"theme_location_cck_field_all\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:22:\"location_cck_field_map\";a:6:{s:9:\"variables\";a:3:{s:9:\"locations\";N;s:5:\"field\";N;s:8:\"instance\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:47:\"sites/all/modules/location/contrib/location_cck\";s:8:\"function\";s:28:\"theme_location_cck_field_map\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:24:\"location_cck_field_popup\";a:6:{s:9:\"variables\";a:2:{s:8:\"location\";N;s:8:\"instance\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:47:\"sites/all/modules/location/contrib/location_cck\";s:8:\"function\";s:30:\"theme_location_cck_field_popup\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:17:\"location_settings\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/location\";s:8:\"function\";s:23:\"theme_location_settings\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:9:\"locations\";a:6:{s:8:\"template\";s:36:\"sites/all/modules/location/locations\";s:9:\"variables\";a:2:{s:9:\"locations\";N;s:4:\"hide\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/location\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:29:\"template_preprocess_locations\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:8:\"location\";a:6:{s:8:\"template\";s:35:\"sites/all/modules/location/location\";s:9:\"variables\";a:2:{s:8:\"location\";N;s:4:\"hide\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/location\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:28:\"template_preprocess_location\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:21:\"location_latitude_dms\";a:6:{s:9:\"variables\";a:1:{i:0;s:8:\"latitude\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/location\";s:8:\"function\";s:27:\"theme_location_latitude_dms\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:22:\"location_longitude_dms\";a:6:{s:9:\"variables\";a:1:{i:0;s:9:\"longitude\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/location\";s:8:\"function\";s:28:\"theme_location_longitude_dms\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:25:\"location_map_link_options\";a:8:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:18:\"location.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/location\";s:8:\"function\";s:31:\"theme_location_map_link_options\";s:8:\"includes\";a:1:{i:0;s:45:\"sites/all/modules/location/location.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:26:\"location_geocoding_options\";a:8:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:18:\"location.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/location\";s:8:\"function\";s:32:\"theme_location_geocoding_options\";s:8:\"includes\";a:1:{i:0;s:45:\"sites/all/modules/location/location.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:16:\"location_element\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/location\";s:8:\"function\";s:22:\"theme_location_element\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:17:\"location_distance\";a:6:{s:8:\"template\";s:44:\"sites/all/modules/location/location_distance\";s:9:\"variables\";a:2:{s:8:\"distance\";i:0;s:5:\"units\";s:2:\"km\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/location\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:37:\"template_preprocess_location_distance\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:30:\"locale_languages_overview_form\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/locale\";s:8:\"function\";s:36:\"theme_locale_languages_overview_form\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:31:\"locale_languages_configure_form\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/locale\";s:8:\"function\";s:37:\"theme_locale_languages_configure_form\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:23:\"locale_date_format_form\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/locale\";s:8:\"function\";s:29:\"theme_locale_date_format_form\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:26:\"libraries_table_with_title\";a:8:{s:9:\"variables\";a:9:{s:6:\"header\";N;s:4:\"rows\";N;s:10:\"attributes\";a:0:{}s:7:\"caption\";N;s:9:\"colgroups\";a:0:{}s:6:\"sticky\";b:1;s:5:\"empty\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}s:4:\"file\";s:19:\"libraries.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:27:\"sites/all/modules/libraries\";s:8:\"function\";s:32:\"theme_libraries_table_with_title\";s:8:\"includes\";a:1:{i:0;s:47:\"sites/all/modules/libraries/libraries.theme.inc\";}s:20:\"preprocess functions\";a:1:{i:0;s:46:\"template_preprocess_libraries_table_with_title\";}s:17:\"process functions\";a:0:{}}s:18:\"languageicons_icon\";a:6:{s:9:\"variables\";a:2:{s:8:\"language\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:31:\"sites/all/modules/languageicons\";s:8:\"function\";s:24:\"theme_languageicons_icon\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:19:\"languageicons_place\";a:6:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:4:\"icon\";N;s:9:\"separator\";s:1:\" \";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:31:\"sites/all/modules/languageicons\";s:8:\"function\";s:25:\"theme_languageicons_place\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:26:\"l10n_update_project_status\";a:8:{s:9:\"variables\";a:5:{s:8:\"projects\";N;s:9:\"languages\";N;s:7:\"history\";N;s:9:\"available\";N;s:7:\"updates\";N;}s:4:\"file\";s:21:\"l10n_update.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:29:\"sites/all/modules/l10n_update\";s:8:\"function\";s:32:\"theme_l10n_update_project_status\";s:8:\"includes\";a:1:{i:0;s:51:\"sites/all/modules/l10n_update/l10n_update.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:34:\"l10n_update_single_project_wrapper\";a:8:{s:7:\"project\";a:5:{s:7:\"project\";N;s:14:\"project_status\";N;s:9:\"languages\";N;s:7:\"history\";N;s:7:\"updates\";N;}s:4:\"file\";s:21:\"l10n_update.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:29:\"sites/all/modules/l10n_update\";s:8:\"function\";s:40:\"theme_l10n_update_single_project_wrapper\";s:8:\"includes\";a:1:{i:0;s:51:\"sites/all/modules/l10n_update/l10n_update.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:33:\"l10n_update_single_project_status\";a:8:{s:9:\"variables\";a:3:{s:7:\"project\";N;s:6:\"server\";N;s:6:\"status\";N;}s:4:\"file\";s:21:\"l10n_update.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:29:\"sites/all/modules/l10n_update\";s:8:\"function\";s:39:\"theme_l10n_update_single_project_status\";s:8:\"includes\";a:1:{i:0;s:51:\"sites/all/modules/l10n_update/l10n_update.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:27:\"l10n_update_current_release\";a:8:{s:9:\"variables\";a:3:{s:8:\"language\";N;s:7:\"release\";N;s:6:\"status\";N;}s:4:\"file\";s:21:\"l10n_update.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:29:\"sites/all/modules/l10n_update\";s:8:\"function\";s:33:\"theme_l10n_update_current_release\";s:8:\"includes\";a:1:{i:0;s:51:\"sites/all/modules/l10n_update/l10n_update.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:29:\"l10n_update_available_release\";a:8:{s:9:\"variables\";a:1:{s:7:\"release\";N;}s:4:\"file\";s:21:\"l10n_update.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:29:\"sites/all/modules/l10n_update\";s:8:\"function\";s:35:\"theme_l10n_update_available_release\";s:8:\"includes\";a:1:{i:0;s:51:\"sites/all/modules/l10n_update/l10n_update.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:26:\"l10n_update_version_status\";a:8:{s:9:\"variables\";a:2:{s:6:\"status\";N;s:4:\"type\";N;}s:4:\"file\";s:21:\"l10n_update.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:29:\"sites/all/modules/l10n_update\";s:8:\"function\";s:32:\"theme_l10n_update_version_status\";s:8:\"includes\";a:1:{i:0;s:51:\"sites/all/modules/l10n_update/l10n_update.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:10:\"imce_admin\";a:6:{s:8:\"function\";s:16:\"imce_admin_theme\";s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/imce\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:16:\"imce_directories\";a:6:{s:8:\"function\";s:22:\"imce_directories_theme\";s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/imce\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:15:\"imce_thumbnails\";a:6:{s:8:\"function\";s:21:\"imce_thumbnails_theme\";s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/imce\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:14:\"imce_root_text\";a:6:{s:9:\"variables\";a:1:{s:8:\"imce_ref\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/imce\";s:8:\"function\";s:20:\"theme_imce_root_text\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:14:\"imce_user_page\";a:6:{s:9:\"variables\";a:1:{s:7:\"account\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/imce\";s:8:\"function\";s:20:\"theme_imce_user_page\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:14:\"imce_file_list\";a:7:{s:8:\"template\";s:14:\"imce-file-list\";s:9:\"variables\";a:1:{s:8:\"imce_ref\";N;}s:4:\"path\";s:26:\"sites/all/modules/imce/tpl\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/imce\";s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:12:\"imce_content\";a:7:{s:8:\"template\";s:12:\"imce-content\";s:9:\"variables\";a:3:{s:4:\"tree\";N;s:5:\"forms\";N;s:8:\"imce_ref\";N;}s:4:\"path\";s:26:\"sites/all/modules/imce/tpl\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/imce\";s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:9:\"imce_page\";a:7:{s:8:\"template\";s:9:\"imce-page\";s:9:\"variables\";a:1:{s:7:\"content\";N;}s:4:\"path\";s:26:\"sites/all/modules/imce/tpl\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/imce\";s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:11:\"image_style\";a:6:{s:9:\"variables\";a:7:{s:10:\"style_name\";N;s:4:\"path\";N;s:5:\"width\";N;s:6:\"height\";N;s:3:\"alt\";s:0:\"\";s:5:\"title\";N;s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:17:\"theme_image_style\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:16:\"image_style_list\";a:6:{s:9:\"variables\";a:1:{s:6:\"styles\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:22:\"theme_image_style_list\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:19:\"image_style_effects\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:25:\"theme_image_style_effects\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:19:\"image_style_preview\";a:6:{s:9:\"variables\";a:1:{s:5:\"style\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:25:\"theme_image_style_preview\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:12:\"image_anchor\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:18:\"theme_image_anchor\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:20:\"image_resize_summary\";a:6:{s:9:\"variables\";a:1:{s:4:\"data\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:26:\"theme_image_resize_summary\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:19:\"image_scale_summary\";a:6:{s:9:\"variables\";a:1:{s:4:\"data\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:25:\"theme_image_scale_summary\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:18:\"image_crop_summary\";a:6:{s:9:\"variables\";a:1:{s:4:\"data\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:24:\"theme_image_crop_summary\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:20:\"image_rotate_summary\";a:6:{s:9:\"variables\";a:1:{s:4:\"data\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:26:\"theme_image_rotate_summary\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:12:\"image_widget\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:18:\"theme_image_widget\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:15:\"image_formatter\";a:6:{s:9:\"variables\";a:3:{s:4:\"item\";N;s:4:\"path\";N;s:11:\"image_style\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:21:\"theme_image_formatter\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:28:\"i18n_node_select_translation\";a:8:{s:14:\"render element\";s:7:\"element\";s:4:\"file\";s:19:\"i18n_node.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:32:\"sites/all/modules/i18n/i18n_node\";s:8:\"function\";s:34:\"theme_i18n_node_select_translation\";s:8:\"includes\";a:1:{i:0;s:52:\"sites/all/modules/i18n/i18n_node/i18n_node.pages.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:23:\"gmap_location_user_page\";a:6:{s:9:\"variables\";a:3:{s:6:\"header\";s:0:\"\";s:3:\"map\";s:0:\"\";s:6:\"footer\";s:0:\"\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/gmap\";s:8:\"function\";s:29:\"theme_gmap_location_user_page\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:23:\"gmap_location_node_page\";a:6:{s:9:\"variables\";a:4:{s:5:\"count\";i:0;s:6:\"header\";s:0:\"\";s:3:\"map\";s:0:\"\";s:6:\"footer\";s:0:\"\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/gmap\";s:8:\"function\";s:29:\"theme_gmap_location_node_page\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:29:\"gmap_location_infowindow_node\";a:7:{s:7:\"pattern\";s:31:\"gmap_location_infowindow_node__\";s:9:\"variables\";a:2:{s:4:\"node\";N;s:3:\"opt\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/gmap\";s:8:\"function\";s:35:\"theme_gmap_location_infowindow_node\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:29:\"gmap_location_infowindow_user\";a:6:{s:9:\"variables\";a:1:{s:7:\"account\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/gmap\";s:8:\"function\";s:35:\"theme_gmap_location_infowindow_user\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:26:\"gmap_views_ui_gmapextended\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/gmap\";s:8:\"function\";s:32:\"theme_gmap_views_ui_gmapextended\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:15:\"views_view_gmap\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/gmap\";s:8:\"function\";s:21:\"theme_views_view_gmap\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:23:\"gmap_views_marker_label\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/gmap\";s:8:\"function\";s:29:\"theme_gmap_views_marker_label\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:17:\"gmap_marker_popup\";a:6:{s:9:\"variables\";a:1:{s:5:\"label\";s:0:\"\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/gmap\";s:8:\"function\";s:23:\"theme_gmap_marker_popup\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:14:\"gmap_dimension\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/gmap\";s:8:\"function\";s:20:\"theme_gmap_dimension\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:4:\"gmap\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/gmap\";s:8:\"function\";s:10:\"theme_gmap\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:15:\"geofield_latlon\";a:7:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/geofield\";s:8:\"function\";s:21:\"theme_geofield_latlon\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:18:\"geofield_proximity\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/geofield\";s:8:\"function\";s:24:\"theme_geofield_proximity\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:21:\"filter_admin_overview\";a:8:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:16:\"filter.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:27:\"theme_filter_admin_overview\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/filter/filter.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:32:\"filter_admin_format_filter_order\";a:8:{s:14:\"render element\";s:7:\"element\";s:4:\"file\";s:16:\"filter.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:38:\"theme_filter_admin_format_filter_order\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/filter/filter.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:11:\"filter_tips\";a:8:{s:9:\"variables\";a:2:{s:4:\"tips\";N;s:4:\"long\";b:0;}s:4:\"file\";s:16:\"filter.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:17:\"theme_filter_tips\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/filter/filter.pages.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:19:\"text_format_wrapper\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:25:\"theme_text_format_wrapper\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:21:\"filter_tips_more_info\";a:6:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:27:\"theme_filter_tips_more_info\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:17:\"filter_guidelines\";a:6:{s:9:\"variables\";a:1:{s:6:\"format\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:23:\"theme_filter_guidelines\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:9:\"file_link\";a:6:{s:9:\"variables\";a:2:{s:4:\"file\";N;s:14:\"icon_directory\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:15:\"theme_file_link\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:9:\"file_icon\";a:6:{s:9:\"variables\";a:3:{s:4:\"file\";N;s:14:\"icon_directory\";N;s:3:\"alt\";s:0:\"\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:15:\"theme_file_icon\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:17:\"file_managed_file\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:23:\"theme_file_managed_file\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:11:\"file_widget\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:17:\"theme_file_widget\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:20:\"file_widget_multiple\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:26:\"theme_file_widget_multiple\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:20:\"file_formatter_table\";a:6:{s:9:\"variables\";a:1:{s:5:\"items\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:26:\"theme_file_formatter_table\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:16:\"file_upload_help\";a:6:{s:9:\"variables\";a:2:{s:11:\"description\";N;s:17:\"upload_validators\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:22:\"theme_file_upload_help\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:14:\"field_ui_table\";a:6:{s:14:\"render element\";s:8:\"elements\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/field_ui\";s:8:\"function\";s:20:\"theme_field_ui_table\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:5:\"field\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/field\";s:8:\"function\";s:11:\"theme_field\";s:20:\"preprocess functions\";a:2:{i:0;s:25:\"template_preprocess_field\";i:1;s:20:\"rdf_preprocess_field\";}s:17:\"process functions\";a:1:{i:0;s:22:\"template_process_field\";}}s:25:\"field_multiple_value_form\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/field\";s:8:\"function\";s:31:\"theme_field_multiple_value_form\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:13:\"entity_status\";a:8:{s:9:\"variables\";a:2:{s:6:\"status\";N;s:4:\"html\";b:1;}s:4:\"file\";s:22:\"theme/entity.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/entity\";s:8:\"function\";s:19:\"theme_entity_status\";s:8:\"includes\";a:1:{i:0;s:47:\"sites/all/modules/entity/theme/entity.theme.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:6:\"entity\";a:10:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:6:\"entity\";s:7:\"pattern\";s:9:\"()(\\.|__)\";s:4:\"path\";s:30:\"sites/all/modules/entity/theme\";s:4:\"file\";s:16:\"entity.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/entity\";s:8:\"includes\";a:1:{i:0;s:47:\"sites/all/modules/entity/theme/entity.theme.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:26:\"template_preprocess_entity\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:15:\"entity_property\";a:8:{s:14:\"render element\";s:8:\"elements\";s:4:\"file\";s:22:\"theme/entity.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/entity\";s:8:\"function\";s:21:\"theme_entity_property\";s:8:\"includes\";a:1:{i:0;s:47:\"sites/all/modules/entity/theme/entity.theme.inc\";}s:20:\"preprocess functions\";a:1:{i:0;s:35:\"template_preprocess_entity_property\";}s:17:\"process functions\";a:1:{i:0;s:32:\"template_process_entity_property\";}}s:23:\"entity_ui_overview_item\";a:8:{s:9:\"variables\";a:4:{s:5:\"label\";N;s:11:\"entity_type\";N;s:3:\"url\";b:0;s:4:\"name\";b:0;}s:4:\"file\";s:22:\"includes/entity.ui.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/entity\";s:8:\"function\";s:29:\"theme_entity_ui_overview_item\";s:8:\"includes\";a:1:{i:0;s:47:\"sites/all/modules/entity/includes/entity.ui.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:13:\"dblog_message\";a:8:{s:9:\"variables\";a:2:{s:5:\"event\";N;s:4:\"link\";b:0;}s:4:\"file\";s:15:\"dblog.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/dblog\";s:8:\"function\";s:19:\"theme_dblog_message\";s:8:\"includes\";a:1:{i:0;s:29:\"modules/dblog/dblog.admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:9:\"dashboard\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:15:\"theme_dashboard\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:15:\"dashboard_admin\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:21:\"theme_dashboard_admin\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:16:\"dashboard_region\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:22:\"theme_dashboard_region\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:25:\"dashboard_disabled_blocks\";a:6:{s:9:\"variables\";a:1:{s:6:\"blocks\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:31:\"theme_dashboard_disabled_blocks\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:24:\"dashboard_disabled_block\";a:6:{s:9:\"variables\";a:1:{s:5:\"block\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:30:\"theme_dashboard_disabled_block\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:28:\"dashboard_admin_display_form\";a:9:{s:8:\"template\";s:24:\"block-admin-display-form\";s:4:\"path\";s:13:\"modules/block\";s:4:\"file\";s:15:\"block.admin.inc\";s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"includes\";a:1:{i:0;s:29:\"modules/block/block.admin.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:48:\"template_preprocess_dashboard_admin_display_form\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:33:\"ctools_menu_local_actions_wrapper\";a:8:{s:14:\"render element\";s:5:\"links\";s:4:\"file\";s:31:\"includes/action-links.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/ctools\";s:8:\"function\";s:39:\"theme_ctools_menu_local_actions_wrapper\";s:8:\"includes\";a:1:{i:0;s:56:\"sites/all/modules/ctools/includes/action-links.theme.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:15:\"ctools_dropdown\";a:8:{s:9:\"variables\";a:4:{s:5:\"title\";N;s:5:\"links\";N;s:5:\"image\";b:0;s:5:\"class\";s:0:\"\";}s:4:\"file\";s:27:\"includes/dropdown.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/ctools\";s:8:\"function\";s:21:\"theme_ctools_dropdown\";s:8:\"includes\";a:1:{i:0;s:52:\"sites/all/modules/ctools/includes/dropdown.theme.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:18:\"ctools_collapsible\";a:8:{s:9:\"variables\";a:3:{s:6:\"handle\";N;s:7:\"content\";N;s:9:\"collapsed\";b:0;}s:4:\"file\";s:30:\"includes/collapsible.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/ctools\";s:8:\"function\";s:24:\"theme_ctools_collapsible\";s:8:\"includes\";a:1:{i:0;s:55:\"sites/all/modules/ctools/includes/collapsible.theme.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:29:\"ctools_collapsible_remembered\";a:8:{s:9:\"variables\";a:4:{s:2:\"id\";N;s:6:\"handle\";N;s:7:\"content\";N;s:9:\"collapsed\";b:0;}s:4:\"file\";s:30:\"includes/collapsible.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/ctools\";s:8:\"function\";s:35:\"theme_ctools_collapsible_remembered\";s:8:\"includes\";a:1:{i:0;s:55:\"sites/all/modules/ctools/includes/collapsible.theme.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:19:\"ctools_wizard_trail\";a:8:{s:9:\"variables\";a:3:{s:5:\"trail\";N;s:9:\"form_info\";N;s:7:\"divider\";s:4:\" » \";}s:4:\"file\";s:25:\"includes/wizard.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/ctools\";s:8:\"function\";s:25:\"theme_ctools_wizard_trail\";s:8:\"includes\";a:1:{i:0;s:50:\"sites/all/modules/ctools/includes/wizard.theme.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:33:\"ctools_stylizer_color_scheme_form\";a:8:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:21:\"includes/stylizer.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/ctools\";s:8:\"function\";s:39:\"theme_ctools_stylizer_color_scheme_form\";s:8:\"includes\";a:1:{i:0;s:46:\"sites/all/modules/ctools/includes/stylizer.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:28:\"ctools_stylizer_preview_form\";a:8:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:21:\"includes/stylizer.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/ctools\";s:8:\"function\";s:34:\"theme_ctools_stylizer_preview_form\";s:8:\"includes\";a:1:{i:0;s:46:\"sites/all/modules/ctools/includes/stylizer.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:17:\"ctools_style_icon\";a:8:{s:9:\"variables\";a:2:{s:5:\"image\";N;s:5:\"title\";N;}s:4:\"file\";s:21:\"includes/stylizer.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/ctools\";s:8:\"function\";s:23:\"theme_ctools_style_icon\";s:8:\"includes\";a:1:{i:0;s:46:\"sites/all/modules/ctools/includes/stylizer.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:24:\"links__ctools_dropbutton\";a:8:{s:9:\"variables\";a:4:{s:5:\"title\";N;s:5:\"links\";N;s:5:\"image\";b:0;s:5:\"class\";N;}s:4:\"file\";s:29:\"includes/dropbutton.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/ctools\";s:8:\"function\";s:30:\"theme_links__ctools_dropbutton\";s:8:\"includes\";a:1:{i:0;s:54:\"sites/all/modules/ctools/includes/dropbutton.theme.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:19:\"ctools_context_list\";a:8:{s:9:\"variables\";a:1:{s:6:\"object\";N;}s:4:\"file\";s:26:\"includes/context.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/ctools\";s:8:\"function\";s:25:\"theme_ctools_context_list\";s:8:\"includes\";a:1:{i:0;s:51:\"sites/all/modules/ctools/includes/context.theme.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:28:\"ctools_context_list_no_table\";a:8:{s:9:\"variables\";a:1:{s:6:\"object\";N;}s:4:\"file\";s:26:\"includes/context.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/ctools\";s:8:\"function\";s:34:\"theme_ctools_context_list_no_table\";s:8:\"includes\";a:1:{i:0;s:51:\"sites/all/modules/ctools/includes/context.theme.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:24:\"ctools_context_item_form\";a:8:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:26:\"includes/context.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/ctools\";s:8:\"function\";s:30:\"theme_ctools_context_item_form\";s:8:\"includes\";a:1:{i:0;s:51:\"sites/all/modules/ctools/includes/context.theme.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:23:\"ctools_context_item_row\";a:8:{s:9:\"variables\";a:5:{s:4:\"type\";N;s:4:\"form\";N;s:8:\"position\";N;s:5:\"count\";N;s:7:\"with_tr\";b:1;}s:4:\"file\";s:26:\"includes/context.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/ctools\";s:8:\"function\";s:29:\"theme_ctools_context_item_row\";s:8:\"includes\";a:1:{i:0;s:51:\"sites/all/modules/ctools/includes/context.theme.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:23:\"ctools_access_admin_add\";a:8:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:33:\"includes/context-access-admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/ctools\";s:8:\"function\";s:29:\"theme_ctools_access_admin_add\";s:8:\"includes\";a:1:{i:0;s:58:\"sites/all/modules/ctools/includes/context-access-admin.inc\";}s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:13:\"comment_block\";a:6:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:8:\"function\";s:19:\"theme_comment_block\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:15:\"comment_preview\";a:6:{s:9:\"variables\";a:1:{s:7:\"comment\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:8:\"function\";s:21:\"theme_comment_preview\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:7:\"comment\";a:6:{s:8:\"template\";s:23:\"modules/comment/comment\";s:14:\"render element\";s:8:\"elements\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:20:\"preprocess functions\";a:5:{i:0;s:19:\"template_preprocess\";i:1;s:27:\"template_preprocess_comment\";i:2;s:21:\"contextual_preprocess\";i:3;s:22:\"rdf_preprocess_comment\";i:4;s:24:\"views_preprocess_comment\";}s:17:\"process functions\";a:4:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";i:3;s:21:\"title_process_comment\";}}s:22:\"comment_post_forbidden\";a:6:{s:9:\"variables\";a:1:{s:4:\"node\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:8:\"function\";s:28:\"theme_comment_post_forbidden\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:15:\"comment_wrapper\";a:6:{s:8:\"template\";s:31:\"modules/comment/comment-wrapper\";s:14:\"render element\";s:7:\"content\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:35:\"template_preprocess_comment_wrapper\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:17:\"color_scheme_form\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/color\";s:8:\"function\";s:23:\"theme_color_scheme_form\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:22:\"addressfield_container\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:30:\"sites/all/modules/addressfield\";s:8:\"function\";s:28:\"theme_addressfield_container\";s:20:\"preprocess functions\";a:0:{}s:17:\"process functions\";a:0:{}}s:5:\"block\";a:6:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:19:\"modules/block/block\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/block\";s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:25:\"template_preprocess_block\";i:2;s:21:\"contextual_preprocess\";i:3;s:23:\"system_preprocess_block\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:24:\"block_admin_display_form\";a:8:{s:8:\"template\";s:38:\"modules/block/block-admin-display-form\";s:4:\"file\";s:15:\"block.admin.inc\";s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/block\";s:8:\"includes\";a:1:{i:0;s:29:\"modules/block/block.admin.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:44:\"template_preprocess_block_admin_display_form\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}}',0,1538750670,1),('theme_registry:multipurpose','a:286:{s:10:\"breadcrumb\";a:4:{s:8:\"function\";s:23:\"multipurpose_breadcrumb\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:29:\"sites/all/themes/multipurpose\";s:9:\"variables\";a:1:{s:10:\"breadcrumb\";N;}}s:16:\"menu_local_tasks\";a:4:{s:8:\"function\";s:29:\"multipurpose_menu_local_tasks\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:29:\"sites/all/themes/multipurpose\";s:9:\"variables\";a:2:{s:7:\"primary\";a:0:{}s:9:\"secondary\";a:0:{}}}s:5:\"block\";a:7:{s:8:\"template\";s:5:\"block\";s:4:\"path\";s:39:\"sites/all/themes/multipurpose/templates\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:29:\"sites/all/themes/multipurpose\";s:14:\"render element\";s:8:\"elements\";s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:25:\"template_preprocess_block\";i:2;s:21:\"contextual_preprocess\";i:3;s:23:\"system_preprocess_block\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:6:\"region\";a:7:{s:8:\"template\";s:6:\"region\";s:4:\"path\";s:39:\"sites/all/themes/multipurpose/templates\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:29:\"sites/all/themes/multipurpose\";s:14:\"render element\";s:8:\"elements\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:26:\"template_preprocess_region\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:7:\"comment\";a:7:{s:8:\"template\";s:7:\"comment\";s:4:\"path\";s:39:\"sites/all/themes/multipurpose/templates\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:29:\"sites/all/themes/multipurpose\";s:14:\"render element\";s:8:\"elements\";s:20:\"preprocess functions\";a:5:{i:0;s:19:\"template_preprocess\";i:1;s:27:\"template_preprocess_comment\";i:2;s:21:\"contextual_preprocess\";i:3;s:22:\"rdf_preprocess_comment\";i:4;s:24:\"views_preprocess_comment\";}s:17:\"process functions\";a:4:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";i:3;s:21:\"title_process_comment\";}}s:15:\"comment_wrapper\";a:7:{s:8:\"template\";s:15:\"comment-wrapper\";s:4:\"path\";s:39:\"sites/all/themes/multipurpose/templates\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:29:\"sites/all/themes/multipurpose\";s:14:\"render element\";s:7:\"content\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:35:\"template_preprocess_comment_wrapper\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:4:\"page\";a:7:{s:8:\"template\";s:4:\"page\";s:4:\"path\";s:39:\"sites/all/themes/multipurpose/templates\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:29:\"sites/all/themes/multipurpose\";s:14:\"render element\";s:4:\"page\";s:20:\"preprocess functions\";a:8:{i:0;s:19:\"template_preprocess\";i:1;s:24:\"template_preprocess_page\";i:2;s:21:\"contextual_preprocess\";i:3;s:23:\"overlay_preprocess_page\";i:4;s:24:\"shortcut_preprocess_page\";i:5;s:21:\"views_preprocess_page\";i:6;s:34:\"entity_translation_preprocess_page\";i:7;s:28:\"multipurpose_preprocess_page\";}s:17:\"process functions\";a:5:{i:0;s:16:\"template_process\";i:1;s:21:\"template_process_page\";i:2;s:14:\"ctools_process\";i:3;s:11:\"rdf_process\";i:4;s:18:\"title_process_page\";}}s:4:\"node\";a:7:{s:8:\"template\";s:4:\"node\";s:4:\"path\";s:39:\"sites/all/themes/multipurpose/templates\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:29:\"sites/all/themes/multipurpose\";s:14:\"render element\";s:8:\"elements\";s:20:\"preprocess functions\";a:8:{i:0;s:19:\"template_preprocess\";i:1;s:24:\"template_preprocess_node\";i:2;s:21:\"contextual_preprocess\";i:3;s:22:\"ctools_preprocess_node\";i:4;s:19:\"rdf_preprocess_node\";i:5;s:21:\"views_preprocess_node\";i:6;s:34:\"entity_translation_preprocess_node\";i:7;s:28:\"multipurpose_preprocess_node\";}s:17:\"process functions\";a:4:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";i:3;s:18:\"title_process_node\";}}s:4:\"html\";a:7:{s:8:\"template\";s:4:\"html\";s:4:\"path\";s:39:\"sites/all/themes/multipurpose/templates\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:29:\"sites/all/themes/multipurpose\";s:14:\"render element\";s:4:\"page\";s:20:\"preprocess functions\";a:7:{i:0;s:19:\"template_preprocess\";i:1;s:24:\"template_preprocess_html\";i:2;s:21:\"contextual_preprocess\";i:3;s:23:\"overlay_preprocess_html\";i:4;s:23:\"toolbar_preprocess_html\";i:5;s:20:\"i18n_preprocess_html\";i:6;s:21:\"views_preprocess_html\";}s:17:\"process functions\";a:4:{i:0;s:16:\"template_process\";i:1;s:21:\"template_process_html\";i:2;s:14:\"ctools_process\";i:3;s:11:\"rdf_process\";}}s:16:\"maintenance_page\";a:7:{s:8:\"template\";s:16:\"maintenance-page\";s:4:\"path\";s:39:\"sites/all/themes/multipurpose/templates\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:29:\"sites/all/themes/multipurpose\";s:9:\"variables\";a:2:{s:7:\"content\";N;s:13:\"show_messages\";b:1;}s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:36:\"template_preprocess_maintenance_page\";i:2;s:21:\"contextual_preprocess\";i:3;s:35:\"overlay_preprocess_maintenance_page\";}s:17:\"process functions\";a:4:{i:0;s:16:\"template_process\";i:1;s:33:\"template_process_maintenance_page\";i:2;s:14:\"ctools_process\";i:3;s:11:\"rdf_process\";}}s:11:\"node__forum\";a:6:{s:8:\"template\";s:11:\"node--forum\";s:4:\"path\";s:39:\"sites/all/themes/multipurpose/templates\";s:14:\"render element\";s:8:\"elements\";s:9:\"base hook\";s:4:\"node\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:29:\"sites/all/themes/multipurpose\";}s:22:\"features_module_status\";a:7:{s:9:\"variables\";a:2:{s:6:\"module\";N;s:6:\"status\";N;}s:4:\"path\";s:32:\"sites/all/modules/features/theme\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/features\";s:8:\"function\";s:28:\"theme_features_module_status\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/features/theme/theme.inc\";}}s:19:\"features_components\";a:7:{s:9:\"variables\";a:2:{s:4:\"info\";N;s:7:\"sources\";N;}s:4:\"path\";s:32:\"sites/all/modules/features/theme\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/features\";s:8:\"function\";s:25:\"theme_features_components\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/features/theme/theme.inc\";}}s:22:\"features_component_key\";a:6:{s:4:\"path\";s:32:\"sites/all/modules/features/theme\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/features\";s:8:\"function\";s:28:\"theme_features_component_key\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/features/theme/theme.inc\";}}s:23:\"features_component_list\";a:7:{s:9:\"variables\";a:3:{s:10:\"components\";a:0:{}s:6:\"source\";a:0:{}s:9:\"conflicts\";a:0:{}}s:4:\"path\";s:32:\"sites/all/modules/features/theme\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/features\";s:8:\"function\";s:29:\"theme_features_component_list\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/features/theme/theme.inc\";}}s:21:\"features_storage_link\";a:7:{s:9:\"variables\";a:4:{s:7:\"storage\";N;s:4:\"text\";N;s:4:\"path\";N;s:7:\"options\";a:0:{}}s:4:\"path\";s:32:\"sites/all/modules/features/theme\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/features\";s:8:\"function\";s:27:\"theme_features_storage_link\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/features/theme/theme.inc\";}}s:18:\"features_lock_link\";a:7:{s:9:\"variables\";a:3:{s:7:\"feature\";N;s:9:\"component\";N;s:6:\"locked\";b:0;}s:4:\"path\";s:32:\"sites/all/modules/features/theme\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/features\";s:8:\"function\";s:24:\"theme_features_lock_link\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/features/theme/theme.inc\";}}s:21:\"features_form_package\";a:7:{s:14:\"render element\";s:4:\"form\";s:4:\"path\";s:32:\"sites/all/modules/features/theme\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/features\";s:8:\"function\";s:27:\"theme_features_form_package\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/features/theme/theme.inc\";}}s:20:\"features_form_export\";a:7:{s:14:\"render element\";s:4:\"form\";s:4:\"path\";s:32:\"sites/all/modules/features/theme\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/features\";s:8:\"function\";s:26:\"theme_features_form_export\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/features/theme/theme.inc\";}}s:24:\"features_form_components\";a:7:{s:14:\"render element\";s:4:\"form\";s:4:\"path\";s:32:\"sites/all/modules/features/theme\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/features\";s:8:\"function\";s:30:\"theme_features_form_components\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/features/theme/theme.inc\";}}s:21:\"features_form_buttons\";a:7:{s:14:\"render element\";s:7:\"element\";s:4:\"path\";s:32:\"sites/all/modules/features/theme\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/features\";s:8:\"function\";s:27:\"theme_features_form_buttons\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/features/theme/theme.inc\";}}s:25:\"features_admin_components\";a:9:{s:14:\"render element\";s:4:\"form\";s:8:\"template\";s:25:\"features-admin-components\";s:4:\"path\";s:32:\"sites/all/modules/features/theme\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/features\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/features/theme/theme.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:45:\"template_preprocess_features_admin_components\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:30:\"entity_translation_unavailable\";a:4:{s:9:\"variables\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:36:\"sites/all/modules/entity_translation\";s:8:\"function\";s:36:\"theme_entity_translation_unavailable\";}s:32:\"entity_translation_language_tabs\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:36:\"sites/all/modules/entity_translation\";s:8:\"function\";s:38:\"theme_entity_translation_language_tabs\";}s:27:\"entity_translation_overview\";a:6:{s:9:\"variables\";a:2:{s:4:\"rows\";N;s:6:\"header\";N;}s:4:\"file\";s:28:\"entity_translation.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:36:\"sites/all/modules/entity_translation\";s:8:\"function\";s:33:\"theme_entity_translation_overview\";s:8:\"includes\";a:1:{i:0;s:65:\"sites/all/modules/entity_translation/entity_translation.admin.inc\";}}s:36:\"entity_translation_overview_outdated\";a:6:{s:9:\"variables\";a:1:{s:7:\"message\";N;}s:4:\"file\";s:28:\"entity_translation.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:36:\"sites/all/modules/entity_translation\";s:8:\"function\";s:42:\"theme_entity_translation_overview_outdated\";s:8:\"includes\";a:1:{i:0;s:65:\"sites/all/modules/entity_translation/entity_translation.admin.inc\";}}s:16:\"views_mini_pager\";a:8:{s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:9:\"variables\";a:3:{s:4:\"tags\";a:0:{}s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}}s:7:\"pattern\";s:18:\"views_mini_pager__\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:22:\"theme_views_mini_pager\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}}s:16:\"views_view_field\";a:9:{s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:7:\"pattern\";s:18:\"views_view_field__\";s:9:\"variables\";a:3:{s:4:\"view\";N;s:5:\"field\";N;s:3:\"row\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:22:\"theme_views_view_field\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:1:{i:0;s:36:\"template_preprocess_views_view_field\";}}s:19:\"views_view_grouping\";a:9:{s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:7:\"pattern\";s:21:\"views_view_grouping__\";s:9:\"variables\";a:5:{s:4:\"view\";N;s:8:\"grouping\";N;s:14:\"grouping_level\";N;s:4:\"rows\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:25:\"theme_views_view_grouping\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:1:{i:0;s:39:\"template_preprocess_views_view_grouping\";}}s:10:\"views_view\";a:10:{s:7:\"pattern\";s:12:\"views_view__\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:9:\"variables\";a:2:{s:10:\"view_array\";a:0:{}s:4:\"view\";N;}s:8:\"template\";s:10:\"views-view\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:30:\"template_preprocess_views_view\";i:2;s:21:\"contextual_preprocess\";i:3;s:30:\"views_ui_preprocess_views_view\";}s:17:\"process functions\";a:4:{i:0;s:16:\"template_process\";i:1;s:27:\"template_process_views_view\";i:2;s:14:\"ctools_process\";i:3;s:11:\"rdf_process\";}}s:14:\"gmap_view_gmap\";a:10:{s:7:\"pattern\";s:16:\"gmap_view_gmap__\";s:4:\"file\";s:14:\"gmap.views.inc\";s:4:\"path\";s:22:\"sites/all/modules/gmap\";s:9:\"variables\";a:4:{s:4:\"view\";N;s:7:\"options\";N;s:4:\"rows\";N;s:5:\"title\";N;}s:8:\"template\";s:14:\"gmap-view-gmap\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:37:\"sites/all/modules/gmap/gmap.views.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:34:\"template_preprocess_gmap_view_gmap\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:28:\"gmap_views_view_gmapextended\";a:9:{s:7:\"pattern\";s:30:\"gmap_views_view_gmapextended__\";s:4:\"file\";s:14:\"gmap.views.inc\";s:4:\"path\";s:22:\"sites/all/modules/gmap\";s:9:\"variables\";a:4:{s:4:\"view\";N;s:7:\"options\";N;s:4:\"rows\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:34:\"theme_gmap_views_view_gmapextended\";s:8:\"includes\";a:1:{i:0;s:37:\"sites/all/modules/gmap/gmap.views.inc\";}s:20:\"preprocess functions\";a:1:{i:0;s:48:\"template_preprocess_gmap_views_view_gmapextended\";}}s:22:\"views_view_unformatted\";a:10:{s:7:\"pattern\";s:24:\"views_view_unformatted__\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:9:\"variables\";a:4:{s:4:\"view\";N;s:7:\"options\";N;s:4:\"rows\";N;s:5:\"title\";N;}s:8:\"template\";s:22:\"views-view-unformatted\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:42:\"template_preprocess_views_view_unformatted\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:15:\"views_view_list\";a:10:{s:7:\"pattern\";s:17:\"views_view_list__\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:9:\"variables\";a:4:{s:4:\"view\";N;s:7:\"options\";N;s:4:\"rows\";N;s:5:\"title\";N;}s:8:\"template\";s:15:\"views-view-list\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:35:\"template_preprocess_views_view_list\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:15:\"views_view_grid\";a:10:{s:7:\"pattern\";s:17:\"views_view_grid__\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:9:\"variables\";a:4:{s:4:\"view\";N;s:7:\"options\";N;s:4:\"rows\";N;s:5:\"title\";N;}s:8:\"template\";s:15:\"views-view-grid\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:35:\"template_preprocess_views_view_grid\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:16:\"views_view_table\";a:10:{s:7:\"pattern\";s:18:\"views_view_table__\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:9:\"variables\";a:4:{s:4:\"view\";N;s:7:\"options\";N;s:4:\"rows\";N;s:5:\"title\";N;}s:8:\"template\";s:16:\"views-view-table\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:36:\"template_preprocess_views_view_table\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:18:\"views_view_summary\";a:10:{s:7:\"pattern\";s:20:\"views_view_summary__\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:9:\"variables\";a:4:{s:4:\"view\";N;s:7:\"options\";N;s:4:\"rows\";N;s:5:\"title\";N;}s:8:\"template\";s:18:\"views-view-summary\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:38:\"template_preprocess_views_view_summary\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:30:\"views_view_summary_unformatted\";a:10:{s:7:\"pattern\";s:32:\"views_view_summary_unformatted__\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:9:\"variables\";a:4:{s:4:\"view\";N;s:7:\"options\";N;s:4:\"rows\";N;s:5:\"title\";N;}s:8:\"template\";s:30:\"views-view-summary-unformatted\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:50:\"template_preprocess_views_view_summary_unformatted\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:14:\"views_view_rss\";a:10:{s:7:\"pattern\";s:16:\"views_view_rss__\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:9:\"variables\";a:4:{s:4:\"view\";N;s:7:\"options\";N;s:4:\"rows\";N;s:5:\"title\";N;}s:8:\"template\";s:14:\"views-view-rss\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:34:\"template_preprocess_views_view_rss\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:28:\"views_view_summary_jump_menu\";a:10:{s:7:\"pattern\";s:30:\"views_view_summary_jump_menu__\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:9:\"variables\";a:4:{s:4:\"view\";N;s:7:\"options\";N;s:4:\"rows\";N;s:5:\"title\";N;}s:8:\"template\";s:28:\"views-view-summary-jump-menu\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:20:\"views_view_jump_menu\";a:10:{s:7:\"pattern\";s:22:\"views_view_jump_menu__\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:9:\"variables\";a:4:{s:4:\"view\";N;s:7:\"options\";N;s:4:\"rows\";N;s:5:\"title\";N;}s:8:\"template\";s:20:\"views-view-jump-menu\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:22:\"views_view_row_comment\";a:10:{s:7:\"pattern\";s:24:\"views_view_row_comment__\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:9:\"variables\";a:4:{s:4:\"view\";N;s:7:\"options\";N;s:3:\"row\";N;s:11:\"field_alias\";N;}s:8:\"template\";s:22:\"views-view-row-comment\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:42:\"template_preprocess_views_view_row_comment\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:18:\"views_view_row_rss\";a:10:{s:7:\"pattern\";s:20:\"views_view_row_rss__\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:9:\"variables\";a:4:{s:4:\"view\";N;s:7:\"options\";N;s:3:\"row\";N;s:11:\"field_alias\";N;}s:8:\"template\";s:18:\"views-view-row-rss\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:38:\"template_preprocess_views_view_row_rss\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:17:\"views_view_fields\";a:10:{s:7:\"pattern\";s:19:\"views_view_fields__\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:9:\"variables\";a:4:{s:4:\"view\";N;s:7:\"options\";N;s:3:\"row\";N;s:11:\"field_alias\";N;}s:8:\"template\";s:17:\"views-view-fields\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:37:\"template_preprocess_views_view_fields\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:21:\"views_form_views_form\";a:7:{s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:27:\"theme_views_form_views_form\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}}s:18:\"views_exposed_form\";a:10:{s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:8:\"template\";s:18:\"views-exposed-form\";s:7:\"pattern\";s:20:\"views_exposed_form__\";s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:38:\"template_preprocess_views_exposed_form\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:10:\"views_more\";a:10:{s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:8:\"template\";s:10:\"views-more\";s:7:\"pattern\";s:12:\"views_more__\";s:9:\"variables\";a:3:{s:8:\"more_url\";N;s:9:\"link_text\";s:4:\"more\";s:4:\"view\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:6:\"forums\";a:6:{s:8:\"template\";s:20:\"modules/forum/forums\";s:9:\"variables\";a:6:{s:6:\"forums\";N;s:6:\"topics\";N;s:7:\"parents\";N;s:3:\"tid\";N;s:6:\"sortby\";N;s:14:\"forum_per_page\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/forum\";s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:26:\"template_preprocess_forums\";i:2;s:21:\"contextual_preprocess\";i:3;s:28:\"i18n_forum_preprocess_forums\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:10:\"forum_list\";a:6:{s:8:\"template\";s:24:\"modules/forum/forum-list\";s:9:\"variables\";a:3:{s:6:\"forums\";N;s:7:\"parents\";N;s:3:\"tid\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/forum\";s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:30:\"template_preprocess_forum_list\";i:2;s:21:\"contextual_preprocess\";i:3;s:32:\"i18n_forum_preprocess_forum_list\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:16:\"forum_topic_list\";a:6:{s:8:\"template\";s:30:\"modules/forum/forum-topic-list\";s:9:\"variables\";a:4:{s:3:\"tid\";N;s:6:\"topics\";N;s:6:\"sortby\";N;s:14:\"forum_per_page\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/forum\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:36:\"template_preprocess_forum_topic_list\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:10:\"forum_icon\";a:6:{s:8:\"template\";s:24:\"modules/forum/forum-icon\";s:9:\"variables\";a:5:{s:9:\"new_posts\";N;s:9:\"num_posts\";i:0;s:12:\"comment_mode\";i:0;s:6:\"sticky\";i:0;s:9:\"first_new\";b:0;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/forum\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:30:\"template_preprocess_forum_icon\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:15:\"forum_submitted\";a:6:{s:8:\"template\";s:29:\"modules/forum/forum-submitted\";s:9:\"variables\";a:1:{s:5:\"topic\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/forum\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:35:\"template_preprocess_forum_submitted\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:10:\"forum_form\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:15:\"forum.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/forum\";s:8:\"function\";s:16:\"theme_forum_form\";s:8:\"includes\";a:1:{i:0;s:29:\"modules/forum/forum.admin.inc\";}}s:28:\"views_ui_display_tab_setting\";a:7:{s:9:\"variables\";a:7:{s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:14:\"settings_links\";a:0:{}s:10:\"overridden\";b:0;s:9:\"defaulted\";b:0;s:21:\"description_separator\";b:1;s:5:\"class\";a:0:{}}s:8:\"template\";s:28:\"views-ui-display-tab-setting\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:48:\"template_preprocess_views_ui_display_tab_setting\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:27:\"views_ui_display_tab_bucket\";a:7:{s:14:\"render element\";s:7:\"element\";s:8:\"template\";s:27:\"views-ui-display-tab-bucket\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:47:\"template_preprocess_views_ui_display_tab_bucket\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:23:\"views_ui_rearrange_form\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:29:\"theme_views_ui_rearrange_form\";}s:30:\"views_ui_rearrange_filter_form\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:18:\"includes/admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:36:\"theme_views_ui_rearrange_filter_form\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/views/includes/admin.inc\";}}s:27:\"views_ui_expose_filter_form\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:18:\"includes/admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:33:\"theme_views_ui_expose_filter_form\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/views/includes/admin.inc\";}}s:18:\"views_ui_view_info\";a:6:{s:9:\"variables\";a:2:{s:4:\"view\";N;s:4:\"base\";N;}s:4:\"file\";s:18:\"includes/admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:24:\"theme_views_ui_view_info\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/views/includes/admin.inc\";}}s:32:\"views_ui_build_group_filter_form\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:18:\"includes/admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:38:\"theme_views_ui_build_group_filter_form\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/views/includes/admin.inc\";}}s:12:\"views_tabset\";a:4:{s:9:\"variables\";a:1:{s:4:\"tabs\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:18:\"theme_views_tabset\";}s:9:\"views_tab\";a:4:{s:9:\"variables\";a:1:{s:4:\"body\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:15:\"theme_views_tab\";}s:30:\"views_ui_reorder_displays_form\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:18:\"includes/admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:36:\"theme_views_ui_reorder_displays_form\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/views/includes/admin.inc\";}}s:27:\"views_ui_style_plugin_table\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:33:\"theme_views_ui_style_plugin_table\";}s:29:\"views_ui_view_preview_section\";a:5:{s:9:\"variables\";a:4:{s:4:\"view\";N;s:7:\"section\";N;s:7:\"content\";N;s:5:\"links\";s:0:\"\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:35:\"theme_views_ui_view_preview_section\";s:20:\"preprocess functions\";a:1:{i:0;s:49:\"template_preprocess_views_ui_view_preview_section\";}}s:15:\"views_container\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"file\";s:15:\"theme/theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:21:\"theme_views_container\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}}s:21:\"variable_table_select\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"file\";s:17:\"variable.form.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/variable\";s:8:\"function\";s:27:\"theme_variable_table_select\";s:8:\"includes\";a:1:{i:0;s:44:\"sites/all/modules/variable/variable.form.inc\";}}s:12:\"user_picture\";a:6:{s:9:\"variables\";a:1:{s:7:\"account\";N;}s:8:\"template\";s:25:\"modules/user/user-picture\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:32:\"template_preprocess_user_picture\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:12:\"user_profile\";a:8:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:25:\"modules/user/user-profile\";s:4:\"file\";s:14:\"user.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.pages.inc\";}s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:32:\"template_preprocess_user_profile\";i:2;s:21:\"contextual_preprocess\";i:3;s:27:\"rdf_preprocess_user_profile\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:21:\"user_profile_category\";a:8:{s:14:\"render element\";s:7:\"element\";s:8:\"template\";s:34:\"modules/user/user-profile-category\";s:4:\"file\";s:14:\"user.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.pages.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:41:\"template_preprocess_user_profile_category\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:17:\"user_profile_item\";a:8:{s:14:\"render element\";s:7:\"element\";s:8:\"template\";s:30:\"modules/user/user-profile-item\";s:4:\"file\";s:14:\"user.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.pages.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:37:\"template_preprocess_user_profile_item\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:9:\"user_list\";a:4:{s:9:\"variables\";a:2:{s:5:\"users\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:15:\"theme_user_list\";}s:22:\"user_admin_permissions\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:14:\"user.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:28:\"theme_user_admin_permissions\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.admin.inc\";}}s:16:\"user_admin_roles\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:14:\"user.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:22:\"theme_user_admin_roles\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.admin.inc\";}}s:27:\"user_permission_description\";a:6:{s:9:\"variables\";a:2:{s:15:\"permission_item\";N;s:4:\"hide\";N;}s:4:\"file\";s:14:\"user.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:33:\"theme_user_permission_description\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.admin.inc\";}}s:14:\"user_signature\";a:4:{s:9:\"variables\";a:1:{s:9:\"signature\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:20:\"theme_user_signature\";}s:26:\"update_manager_update_form\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:18:\"update.manager.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:32:\"theme_update_manager_update_form\";s:8:\"includes\";a:1:{i:0;s:33:\"modules/update/update.manager.inc\";}}s:17:\"update_last_check\";a:4:{s:9:\"variables\";a:1:{s:4:\"last\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:23:\"theme_update_last_check\";}s:13:\"update_report\";a:6:{s:9:\"variables\";a:1:{s:4:\"data\";N;}s:4:\"file\";s:17:\"update.report.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:19:\"theme_update_report\";s:8:\"includes\";a:1:{i:0;s:32:\"modules/update/update.report.inc\";}}s:14:\"update_version\";a:6:{s:9:\"variables\";a:3:{s:7:\"version\";N;s:3:\"tag\";N;s:5:\"class\";a:0:{}}s:4:\"file\";s:17:\"update.report.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:20:\"theme_update_version\";s:8:\"includes\";a:1:{i:0;s:32:\"modules/update/update.report.inc\";}}s:19:\"update_status_label\";a:6:{s:9:\"variables\";a:1:{s:6:\"status\";N;}s:4:\"file\";s:17:\"update.report.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:25:\"theme_update_status_label\";s:8:\"includes\";a:1:{i:0;s:32:\"modules/update/update.report.inc\";}}s:7:\"toolbar\";a:7:{s:14:\"render element\";s:7:\"toolbar\";s:8:\"template\";s:7:\"toolbar\";s:4:\"path\";s:15:\"modules/toolbar\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/toolbar\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";i:2;s:26:\"toolbar_preprocess_toolbar\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:14:\"toolbar_toggle\";a:4:{s:9:\"variables\";a:2:{s:9:\"collapsed\";N;s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/toolbar\";s:8:\"function\";s:20:\"theme_toolbar_toggle\";}s:30:\"taxonomy_overview_vocabularies\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/taxonomy\";s:8:\"function\";s:36:\"theme_taxonomy_overview_vocabularies\";}s:23:\"taxonomy_overview_terms\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/taxonomy\";s:8:\"function\";s:29:\"theme_taxonomy_overview_terms\";}s:13:\"taxonomy_term\";a:6:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:30:\"modules/taxonomy/taxonomy-term\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/taxonomy\";s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:33:\"template_preprocess_taxonomy_term\";i:2;s:21:\"contextual_preprocess\";i:3;s:28:\"rdf_preprocess_taxonomy_term\";}s:17:\"process functions\";a:4:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";i:3;s:27:\"title_process_taxonomy_term\";}}s:15:\"status_messages\";a:4:{s:9:\"variables\";a:1:{s:7:\"display\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:21:\"theme_status_messages\";}s:4:\"link\";a:4:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:4:\"path\";N;s:7:\"options\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_link\";}s:5:\"links\";a:4:{s:9:\"variables\";a:3:{s:5:\"links\";N;s:10:\"attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:5:\"links\";}}s:7:\"heading\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_links\";}s:5:\"image\";a:5:{s:9:\"variables\";a:6:{s:4:\"path\";N;s:5:\"width\";N;s:6:\"height\";N;s:3:\"alt\";s:0:\"\";s:5:\"title\";N;s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_image\";s:20:\"preprocess functions\";a:1:{i:0;s:20:\"rdf_preprocess_image\";}}s:4:\"help\";a:4:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_help\";}s:5:\"table\";a:4:{s:9:\"variables\";a:7:{s:6:\"header\";N;s:4:\"rows\";N;s:10:\"attributes\";a:0:{}s:7:\"caption\";N;s:9:\"colgroups\";a:0:{}s:6:\"sticky\";b:1;s:5:\"empty\";s:0:\"\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_table\";}s:19:\"tablesort_indicator\";a:4:{s:9:\"variables\";a:1:{s:5:\"style\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:25:\"theme_tablesort_indicator\";}s:4:\"mark\";a:4:{s:9:\"variables\";a:1:{s:4:\"type\";i:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_mark\";}s:9:\"item_list\";a:4:{s:9:\"variables\";a:4:{s:5:\"items\";a:0:{}s:5:\"title\";N;s:4:\"type\";s:2:\"ul\";s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_item_list\";}s:14:\"more_help_link\";a:4:{s:9:\"variables\";a:1:{s:3:\"url\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:20:\"theme_more_help_link\";}s:9:\"feed_icon\";a:4:{s:9:\"variables\";a:2:{s:3:\"url\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_feed_icon\";}s:9:\"more_link\";a:4:{s:9:\"variables\";a:2:{s:3:\"url\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_more_link\";}s:8:\"username\";a:6:{s:9:\"variables\";a:1:{s:7:\"account\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_username\";s:20:\"preprocess functions\";a:2:{i:0;s:28:\"template_preprocess_username\";i:1;s:23:\"rdf_preprocess_username\";}s:17:\"process functions\";a:1:{i:0;s:25:\"template_process_username\";}}s:12:\"progress_bar\";a:4:{s:9:\"variables\";a:2:{s:7:\"percent\";N;s:7:\"message\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_progress_bar\";}s:11:\"indentation\";a:4:{s:9:\"variables\";a:1:{s:4:\"size\";i:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_indentation\";}s:8:\"html_tag\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_html_tag\";}s:11:\"update_page\";a:4:{s:9:\"variables\";a:2:{s:7:\"content\";N;s:13:\"show_messages\";b:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_update_page\";}s:12:\"install_page\";a:4:{s:9:\"variables\";a:1:{s:7:\"content\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_install_page\";}s:9:\"task_list\";a:4:{s:9:\"variables\";a:2:{s:5:\"items\";N;s:6:\"active\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_task_list\";}s:17:\"authorize_message\";a:4:{s:9:\"variables\";a:2:{s:7:\"message\";N;s:7:\"success\";b:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:23:\"theme_authorize_message\";}s:16:\"authorize_report\";a:4:{s:9:\"variables\";a:1:{s:8:\"messages\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:22:\"theme_authorize_report\";}s:5:\"pager\";a:4:{s:9:\"variables\";a:4:{s:4:\"tags\";a:0:{}s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}s:8:\"quantity\";i:9;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_pager\";}s:11:\"pager_first\";a:4:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_pager_first\";}s:14:\"pager_previous\";a:4:{s:9:\"variables\";a:4:{s:4:\"text\";N;s:7:\"element\";i:0;s:8:\"interval\";i:1;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:20:\"theme_pager_previous\";}s:10:\"pager_next\";a:4:{s:9:\"variables\";a:4:{s:4:\"text\";N;s:7:\"element\";i:0;s:8:\"interval\";i:1;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_pager_next\";}s:10:\"pager_last\";a:4:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_pager_last\";}s:10:\"pager_link\";a:4:{s:9:\"variables\";a:5:{s:4:\"text\";N;s:8:\"page_new\";N;s:7:\"element\";N;s:10:\"parameters\";a:0:{}s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_pager_link\";}s:9:\"menu_link\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_menu_link\";}s:9:\"menu_tree\";a:5:{s:14:\"render element\";s:4:\"tree\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_menu_tree\";s:20:\"preprocess functions\";a:1:{i:0;s:29:\"template_preprocess_menu_tree\";}}s:15:\"menu_local_task\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:21:\"theme_menu_local_task\";}s:17:\"menu_local_action\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:23:\"theme_menu_local_action\";}s:6:\"select\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_select\";}s:8:\"fieldset\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_fieldset\";}s:5:\"radio\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_radio\";}s:6:\"radios\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_radios\";}s:4:\"date\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_date\";}s:15:\"exposed_filters\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:21:\"theme_exposed_filters\";}s:8:\"checkbox\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_checkbox\";}s:10:\"checkboxes\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_checkboxes\";}s:6:\"button\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_button\";}s:12:\"image_button\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_image_button\";}s:6:\"hidden\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_hidden\";}s:9:\"textfield\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_textfield\";}s:4:\"form\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_form\";}s:8:\"textarea\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_textarea\";}s:8:\"password\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_password\";}s:4:\"file\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_file\";}s:11:\"tableselect\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_tableselect\";}s:12:\"form_element\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_form_element\";}s:20:\"form_required_marker\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:26:\"theme_form_required_marker\";}s:18:\"form_element_label\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:24:\"theme_form_element_label\";}s:13:\"vertical_tabs\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:19:\"theme_vertical_tabs\";}s:9:\"container\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_container\";}s:18:\"system_themes_page\";a:6:{s:9:\"variables\";a:1:{s:12:\"theme_groups\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:24:\"theme_system_themes_page\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:20:\"system_settings_form\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:26:\"theme_system_settings_form\";}s:12:\"confirm_form\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_confirm_form\";}s:23:\"system_modules_fieldset\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:29:\"theme_system_modules_fieldset\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:27:\"system_modules_incompatible\";a:6:{s:9:\"variables\";a:1:{s:7:\"message\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:33:\"theme_system_modules_incompatible\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:24:\"system_modules_uninstall\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:30:\"theme_system_modules_uninstall\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:13:\"status_report\";a:6:{s:14:\"render element\";s:12:\"requirements\";s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:19:\"theme_status_report\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:10:\"admin_page\";a:6:{s:9:\"variables\";a:1:{s:6:\"blocks\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_admin_page\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:11:\"admin_block\";a:6:{s:9:\"variables\";a:1:{s:5:\"block\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_admin_block\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:19:\"admin_block_content\";a:6:{s:9:\"variables\";a:1:{s:7:\"content\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:25:\"theme_admin_block_content\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:18:\"system_admin_index\";a:6:{s:9:\"variables\";a:1:{s:10:\"menu_items\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:24:\"theme_system_admin_index\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:17:\"system_powered_by\";a:4:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:23:\"theme_system_powered_by\";}s:19:\"system_compact_link\";a:4:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:25:\"theme_system_compact_link\";}s:25:\"system_date_time_settings\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:31:\"theme_system_date_time_settings\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:22:\"shortcut_set_customize\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:18:\"shortcut.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/shortcut\";s:8:\"function\";s:28:\"theme_shortcut_set_customize\";s:8:\"includes\";a:1:{i:0;s:35:\"modules/shortcut/shortcut.admin.inc\";}}s:29:\"rdf_template_variable_wrapper\";a:4:{s:9:\"variables\";a:4:{s:7:\"content\";N;s:10:\"attributes\";a:0:{}s:7:\"context\";a:0:{}s:6:\"inline\";b:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:11:\"modules/rdf\";s:8:\"function\";s:35:\"theme_rdf_template_variable_wrapper\";}s:12:\"rdf_metadata\";a:4:{s:9:\"variables\";a:1:{s:8:\"metadata\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:11:\"modules/rdf\";s:8:\"function\";s:18:\"theme_rdf_metadata\";}s:20:\"photos_editlist_form\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:8:\"function\";s:26:\"theme_photos_editlist_form\";}s:20:\"photos_comment_count\";a:4:{s:8:\"function\";s:33:\"photos_theme_photos_comment_count\";s:9:\"variables\";a:2:{s:8:\"comcount\";N;s:3:\"url\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";}s:14:\"photos_default\";a:6:{s:8:\"template\";s:43:\"sites/all/modules/photos/tpl/photos_default\";s:9:\"variables\";a:1:{s:7:\"content\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:11:\"photos_down\";a:6:{s:8:\"template\";s:40:\"sites/all/modules/photos/tpl/photos_down\";s:9:\"variables\";a:2:{s:7:\"content\";N;s:4:\"type\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:12:\"photos_slide\";a:6:{s:8:\"template\";s:41:\"sites/all/modules/photos/tpl/photos_slide\";s:9:\"variables\";a:1:{s:7:\"content\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:16:\"photos_imageview\";a:6:{s:8:\"template\";s:45:\"sites/all/modules/photos/tpl/photos_imageview\";s:9:\"variables\";a:2:{s:5:\"image\";N;s:4:\"type\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:17:\"photos_imageblock\";a:6:{s:8:\"template\";s:46:\"sites/all/modules/photos/tpl/photos_imageblock\";s:9:\"variables\";a:1:{s:5:\"image\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:12:\"photos_block\";a:4:{s:8:\"function\";s:25:\"photos_theme_photos_block\";s:9:\"variables\";a:2:{s:6:\"images\";N;s:4:\"type\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";}s:16:\"photos_albumview\";a:6:{s:8:\"template\";s:45:\"sites/all/modules/photos/tpl/photos_albumview\";s:9:\"variables\";a:2:{s:5:\"album\";N;s:4:\"node\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:16:\"photos_albumlist\";a:6:{s:8:\"template\";s:45:\"sites/all/modules/photos/tpl/photos_albumlist\";s:9:\"variables\";a:1:{s:5:\"image\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:17:\"photos_albumlinks\";a:6:{s:8:\"template\";s:46:\"sites/all/modules/photos/tpl/photos_albumlinks\";s:9:\"variables\";a:1:{s:5:\"links\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:16:\"photos_imagehtml\";a:6:{s:8:\"template\";s:45:\"sites/all/modules/photos/tpl/photos_imagehtml\";s:9:\"variables\";a:2:{s:5:\"image\";N;s:10:\"style_name\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";i:2;s:34:\"photos_preprocess_photos_imagehtml\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:11:\"photos_exif\";a:6:{s:8:\"template\";s:40:\"sites/all/modules/photos/tpl/photos_exif\";s:9:\"variables\";a:2:{s:4:\"exif\";N;s:4:\"type\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:12:\"photos_print\";a:6:{s:8:\"template\";s:41:\"sites/all/modules/photos/tpl/photos_print\";s:9:\"variables\";a:2:{s:7:\"content\";N;s:4:\"type\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:12:\"photos_share\";a:6:{s:8:\"template\";s:41:\"sites/all/modules/photos/tpl/photos_share\";s:9:\"variables\";a:2:{s:6:\"images\";N;s:4:\"type\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:11:\"photos_vote\";a:6:{s:8:\"template\";s:40:\"sites/all/modules/photos/tpl/photos_vote\";s:9:\"variables\";a:1:{s:3:\"fid\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";i:2;s:29:\"photos_preprocess_photos_vote\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:7:\"overlay\";a:6:{s:14:\"render element\";s:4:\"page\";s:8:\"template\";s:23:\"modules/overlay/overlay\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/overlay\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:27:\"template_preprocess_overlay\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:4:{i:0;s:16:\"template_process\";i:1;s:24:\"template_process_overlay\";i:2;s:14:\"ctools_process\";i:3;s:11:\"rdf_process\";}}s:23:\"overlay_disable_message\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/overlay\";s:8:\"function\";s:29:\"theme_overlay_disable_message\";}s:12:\"options_none\";a:4:{s:9:\"variables\";a:2:{s:8:\"instance\";N;s:6:\"option\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:29:\"modules/field/modules/options\";s:8:\"function\";s:18:\"theme_options_none\";}s:17:\"node_search_admin\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:23:\"theme_node_search_admin\";}s:13:\"node_add_list\";a:6:{s:9:\"variables\";a:1:{s:7:\"content\";N;}s:4:\"file\";s:14:\"node.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:19:\"theme_node_add_list\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/node/node.pages.inc\";}}s:12:\"node_preview\";a:6:{s:9:\"variables\";a:1:{s:4:\"node\";N;}s:4:\"file\";s:14:\"node.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:18:\"theme_node_preview\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/node/node.pages.inc\";}}s:19:\"node_admin_overview\";a:6:{s:9:\"variables\";a:2:{s:4:\"name\";N;s:4:\"type\";N;}s:4:\"file\";s:17:\"content_types.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:25:\"theme_node_admin_overview\";s:8:\"includes\";a:1:{i:0;s:30:\"modules/node/content_types.inc\";}}s:17:\"node_recent_block\";a:4:{s:9:\"variables\";a:1:{s:5:\"nodes\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:23:\"theme_node_recent_block\";}s:19:\"node_recent_content\";a:4:{s:9:\"variables\";a:1:{s:4:\"node\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:25:\"theme_node_recent_content\";}s:18:\"menu_overview_form\";a:6:{s:4:\"file\";s:14:\"menu.admin.inc\";s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/menu\";s:8:\"function\";s:24:\"theme_menu_overview_form\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/menu/menu.admin.inc\";}}s:19:\"menu_admin_overview\";a:7:{s:4:\"file\";s:14:\"menu.admin.inc\";s:9:\"variables\";a:3:{s:5:\"title\";N;s:4:\"name\";N;s:11:\"description\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/menu\";s:8:\"function\";s:25:\"theme_menu_admin_overview\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/menu/menu.admin.inc\";}s:20:\"preprocess functions\";a:1:{i:0;s:40:\"i18n_menu_preprocess_menu_admin_overview\";}}s:22:\"location_cck_field_all\";a:4:{s:9:\"variables\";a:4:{s:8:\"location\";N;s:4:\"hide\";a:0:{}s:5:\"field\";N;s:8:\"instance\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:47:\"sites/all/modules/location/contrib/location_cck\";s:8:\"function\";s:28:\"theme_location_cck_field_all\";}s:22:\"location_cck_field_map\";a:4:{s:9:\"variables\";a:3:{s:9:\"locations\";N;s:5:\"field\";N;s:8:\"instance\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:47:\"sites/all/modules/location/contrib/location_cck\";s:8:\"function\";s:28:\"theme_location_cck_field_map\";}s:24:\"location_cck_field_popup\";a:4:{s:9:\"variables\";a:2:{s:8:\"location\";N;s:8:\"instance\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:47:\"sites/all/modules/location/contrib/location_cck\";s:8:\"function\";s:30:\"theme_location_cck_field_popup\";}s:17:\"location_settings\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/location\";s:8:\"function\";s:23:\"theme_location_settings\";}s:9:\"locations\";a:6:{s:8:\"template\";s:36:\"sites/all/modules/location/locations\";s:9:\"variables\";a:2:{s:9:\"locations\";N;s:4:\"hide\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/location\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:29:\"template_preprocess_locations\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:8:\"location\";a:6:{s:8:\"template\";s:35:\"sites/all/modules/location/location\";s:9:\"variables\";a:2:{s:8:\"location\";N;s:4:\"hide\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/location\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:28:\"template_preprocess_location\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:21:\"location_latitude_dms\";a:4:{s:9:\"variables\";a:1:{i:0;s:8:\"latitude\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/location\";s:8:\"function\";s:27:\"theme_location_latitude_dms\";}s:22:\"location_longitude_dms\";a:4:{s:9:\"variables\";a:1:{i:0;s:9:\"longitude\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/location\";s:8:\"function\";s:28:\"theme_location_longitude_dms\";}s:25:\"location_map_link_options\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:18:\"location.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/location\";s:8:\"function\";s:31:\"theme_location_map_link_options\";s:8:\"includes\";a:1:{i:0;s:45:\"sites/all/modules/location/location.admin.inc\";}}s:26:\"location_geocoding_options\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:18:\"location.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/location\";s:8:\"function\";s:32:\"theme_location_geocoding_options\";s:8:\"includes\";a:1:{i:0;s:45:\"sites/all/modules/location/location.admin.inc\";}}s:16:\"location_element\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/location\";s:8:\"function\";s:22:\"theme_location_element\";}s:17:\"location_distance\";a:6:{s:8:\"template\";s:44:\"sites/all/modules/location/location_distance\";s:9:\"variables\";a:2:{s:8:\"distance\";i:0;s:5:\"units\";s:2:\"km\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/location\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:37:\"template_preprocess_location_distance\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:30:\"locale_languages_overview_form\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/locale\";s:8:\"function\";s:36:\"theme_locale_languages_overview_form\";}s:31:\"locale_languages_configure_form\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/locale\";s:8:\"function\";s:37:\"theme_locale_languages_configure_form\";}s:23:\"locale_date_format_form\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/locale\";s:8:\"function\";s:29:\"theme_locale_date_format_form\";}s:26:\"libraries_table_with_title\";a:7:{s:9:\"variables\";a:9:{s:6:\"header\";N;s:4:\"rows\";N;s:10:\"attributes\";a:0:{}s:7:\"caption\";N;s:9:\"colgroups\";a:0:{}s:6:\"sticky\";b:1;s:5:\"empty\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}s:4:\"file\";s:19:\"libraries.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:27:\"sites/all/modules/libraries\";s:8:\"function\";s:32:\"theme_libraries_table_with_title\";s:8:\"includes\";a:1:{i:0;s:47:\"sites/all/modules/libraries/libraries.theme.inc\";}s:20:\"preprocess functions\";a:1:{i:0;s:46:\"template_preprocess_libraries_table_with_title\";}}s:18:\"languageicons_icon\";a:4:{s:9:\"variables\";a:2:{s:8:\"language\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:31:\"sites/all/modules/languageicons\";s:8:\"function\";s:24:\"theme_languageicons_icon\";}s:19:\"languageicons_place\";a:4:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:4:\"icon\";N;s:9:\"separator\";s:1:\" \";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:31:\"sites/all/modules/languageicons\";s:8:\"function\";s:25:\"theme_languageicons_place\";}s:26:\"l10n_update_project_status\";a:6:{s:9:\"variables\";a:5:{s:8:\"projects\";N;s:9:\"languages\";N;s:7:\"history\";N;s:9:\"available\";N;s:7:\"updates\";N;}s:4:\"file\";s:21:\"l10n_update.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:29:\"sites/all/modules/l10n_update\";s:8:\"function\";s:32:\"theme_l10n_update_project_status\";s:8:\"includes\";a:1:{i:0;s:51:\"sites/all/modules/l10n_update/l10n_update.admin.inc\";}}s:34:\"l10n_update_single_project_wrapper\";a:6:{s:7:\"project\";a:5:{s:7:\"project\";N;s:14:\"project_status\";N;s:9:\"languages\";N;s:7:\"history\";N;s:7:\"updates\";N;}s:4:\"file\";s:21:\"l10n_update.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:29:\"sites/all/modules/l10n_update\";s:8:\"function\";s:40:\"theme_l10n_update_single_project_wrapper\";s:8:\"includes\";a:1:{i:0;s:51:\"sites/all/modules/l10n_update/l10n_update.admin.inc\";}}s:33:\"l10n_update_single_project_status\";a:6:{s:9:\"variables\";a:3:{s:7:\"project\";N;s:6:\"server\";N;s:6:\"status\";N;}s:4:\"file\";s:21:\"l10n_update.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:29:\"sites/all/modules/l10n_update\";s:8:\"function\";s:39:\"theme_l10n_update_single_project_status\";s:8:\"includes\";a:1:{i:0;s:51:\"sites/all/modules/l10n_update/l10n_update.admin.inc\";}}s:27:\"l10n_update_current_release\";a:6:{s:9:\"variables\";a:3:{s:8:\"language\";N;s:7:\"release\";N;s:6:\"status\";N;}s:4:\"file\";s:21:\"l10n_update.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:29:\"sites/all/modules/l10n_update\";s:8:\"function\";s:33:\"theme_l10n_update_current_release\";s:8:\"includes\";a:1:{i:0;s:51:\"sites/all/modules/l10n_update/l10n_update.admin.inc\";}}s:29:\"l10n_update_available_release\";a:6:{s:9:\"variables\";a:1:{s:7:\"release\";N;}s:4:\"file\";s:21:\"l10n_update.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:29:\"sites/all/modules/l10n_update\";s:8:\"function\";s:35:\"theme_l10n_update_available_release\";s:8:\"includes\";a:1:{i:0;s:51:\"sites/all/modules/l10n_update/l10n_update.admin.inc\";}}s:26:\"l10n_update_version_status\";a:6:{s:9:\"variables\";a:2:{s:6:\"status\";N;s:4:\"type\";N;}s:4:\"file\";s:21:\"l10n_update.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:29:\"sites/all/modules/l10n_update\";s:8:\"function\";s:32:\"theme_l10n_update_version_status\";s:8:\"includes\";a:1:{i:0;s:51:\"sites/all/modules/l10n_update/l10n_update.admin.inc\";}}s:10:\"imce_admin\";a:4:{s:8:\"function\";s:16:\"imce_admin_theme\";s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/imce\";}s:16:\"imce_directories\";a:4:{s:8:\"function\";s:22:\"imce_directories_theme\";s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/imce\";}s:15:\"imce_thumbnails\";a:4:{s:8:\"function\";s:21:\"imce_thumbnails_theme\";s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/imce\";}s:14:\"imce_root_text\";a:4:{s:9:\"variables\";a:1:{s:8:\"imce_ref\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/imce\";s:8:\"function\";s:20:\"theme_imce_root_text\";}s:14:\"imce_user_page\";a:4:{s:9:\"variables\";a:1:{s:7:\"account\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/imce\";s:8:\"function\";s:20:\"theme_imce_user_page\";}s:14:\"imce_file_list\";a:7:{s:8:\"template\";s:14:\"imce-file-list\";s:9:\"variables\";a:1:{s:8:\"imce_ref\";N;}s:4:\"path\";s:26:\"sites/all/modules/imce/tpl\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/imce\";s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:12:\"imce_content\";a:7:{s:8:\"template\";s:12:\"imce-content\";s:9:\"variables\";a:3:{s:4:\"tree\";N;s:5:\"forms\";N;s:8:\"imce_ref\";N;}s:4:\"path\";s:26:\"sites/all/modules/imce/tpl\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/imce\";s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:9:\"imce_page\";a:7:{s:8:\"template\";s:9:\"imce-page\";s:9:\"variables\";a:1:{s:7:\"content\";N;}s:4:\"path\";s:26:\"sites/all/modules/imce/tpl\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/imce\";s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:11:\"image_style\";a:4:{s:9:\"variables\";a:7:{s:10:\"style_name\";N;s:4:\"path\";N;s:5:\"width\";N;s:6:\"height\";N;s:3:\"alt\";s:0:\"\";s:5:\"title\";N;s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:17:\"theme_image_style\";}s:16:\"image_style_list\";a:4:{s:9:\"variables\";a:1:{s:6:\"styles\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:22:\"theme_image_style_list\";}s:19:\"image_style_effects\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:25:\"theme_image_style_effects\";}s:19:\"image_style_preview\";a:4:{s:9:\"variables\";a:1:{s:5:\"style\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:25:\"theme_image_style_preview\";}s:12:\"image_anchor\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:18:\"theme_image_anchor\";}s:20:\"image_resize_summary\";a:4:{s:9:\"variables\";a:1:{s:4:\"data\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:26:\"theme_image_resize_summary\";}s:19:\"image_scale_summary\";a:4:{s:9:\"variables\";a:1:{s:4:\"data\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:25:\"theme_image_scale_summary\";}s:18:\"image_crop_summary\";a:4:{s:9:\"variables\";a:1:{s:4:\"data\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:24:\"theme_image_crop_summary\";}s:20:\"image_rotate_summary\";a:4:{s:9:\"variables\";a:1:{s:4:\"data\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:26:\"theme_image_rotate_summary\";}s:12:\"image_widget\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:18:\"theme_image_widget\";}s:15:\"image_formatter\";a:4:{s:9:\"variables\";a:3:{s:4:\"item\";N;s:4:\"path\";N;s:11:\"image_style\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:21:\"theme_image_formatter\";}s:28:\"i18n_node_select_translation\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"file\";s:19:\"i18n_node.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:32:\"sites/all/modules/i18n/i18n_node\";s:8:\"function\";s:34:\"theme_i18n_node_select_translation\";s:8:\"includes\";a:1:{i:0;s:52:\"sites/all/modules/i18n/i18n_node/i18n_node.pages.inc\";}}s:23:\"gmap_location_user_page\";a:4:{s:9:\"variables\";a:3:{s:6:\"header\";s:0:\"\";s:3:\"map\";s:0:\"\";s:6:\"footer\";s:0:\"\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/gmap\";s:8:\"function\";s:29:\"theme_gmap_location_user_page\";}s:23:\"gmap_location_node_page\";a:4:{s:9:\"variables\";a:4:{s:5:\"count\";i:0;s:6:\"header\";s:0:\"\";s:3:\"map\";s:0:\"\";s:6:\"footer\";s:0:\"\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/gmap\";s:8:\"function\";s:29:\"theme_gmap_location_node_page\";}s:29:\"gmap_location_infowindow_node\";a:5:{s:7:\"pattern\";s:31:\"gmap_location_infowindow_node__\";s:9:\"variables\";a:2:{s:4:\"node\";N;s:3:\"opt\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/gmap\";s:8:\"function\";s:35:\"theme_gmap_location_infowindow_node\";}s:29:\"gmap_location_infowindow_user\";a:4:{s:9:\"variables\";a:1:{s:7:\"account\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/gmap\";s:8:\"function\";s:35:\"theme_gmap_location_infowindow_user\";}s:26:\"gmap_views_ui_gmapextended\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/gmap\";s:8:\"function\";s:32:\"theme_gmap_views_ui_gmapextended\";}s:15:\"views_view_gmap\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/gmap\";s:8:\"function\";s:21:\"theme_views_view_gmap\";}s:23:\"gmap_views_marker_label\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/gmap\";s:8:\"function\";s:29:\"theme_gmap_views_marker_label\";}s:17:\"gmap_marker_popup\";a:4:{s:9:\"variables\";a:1:{s:5:\"label\";s:0:\"\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/gmap\";s:8:\"function\";s:23:\"theme_gmap_marker_popup\";}s:14:\"gmap_dimension\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/gmap\";s:8:\"function\";s:20:\"theme_gmap_dimension\";}s:4:\"gmap\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/gmap\";s:8:\"function\";s:10:\"theme_gmap\";}s:15:\"geofield_latlon\";a:5:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/geofield\";s:8:\"function\";s:21:\"theme_geofield_latlon\";}s:18:\"geofield_proximity\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/geofield\";s:8:\"function\";s:24:\"theme_geofield_proximity\";}s:21:\"filter_admin_overview\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:16:\"filter.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:27:\"theme_filter_admin_overview\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/filter/filter.admin.inc\";}}s:32:\"filter_admin_format_filter_order\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"file\";s:16:\"filter.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:38:\"theme_filter_admin_format_filter_order\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/filter/filter.admin.inc\";}}s:11:\"filter_tips\";a:6:{s:9:\"variables\";a:2:{s:4:\"tips\";N;s:4:\"long\";b:0;}s:4:\"file\";s:16:\"filter.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:17:\"theme_filter_tips\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/filter/filter.pages.inc\";}}s:19:\"text_format_wrapper\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:25:\"theme_text_format_wrapper\";}s:21:\"filter_tips_more_info\";a:4:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:27:\"theme_filter_tips_more_info\";}s:17:\"filter_guidelines\";a:4:{s:9:\"variables\";a:1:{s:6:\"format\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:23:\"theme_filter_guidelines\";}s:9:\"file_link\";a:4:{s:9:\"variables\";a:2:{s:4:\"file\";N;s:14:\"icon_directory\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:15:\"theme_file_link\";}s:9:\"file_icon\";a:4:{s:9:\"variables\";a:3:{s:4:\"file\";N;s:14:\"icon_directory\";N;s:3:\"alt\";s:0:\"\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:15:\"theme_file_icon\";}s:17:\"file_managed_file\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:23:\"theme_file_managed_file\";}s:11:\"file_widget\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:17:\"theme_file_widget\";}s:20:\"file_widget_multiple\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:26:\"theme_file_widget_multiple\";}s:20:\"file_formatter_table\";a:4:{s:9:\"variables\";a:1:{s:5:\"items\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:26:\"theme_file_formatter_table\";}s:16:\"file_upload_help\";a:4:{s:9:\"variables\";a:2:{s:11:\"description\";N;s:17:\"upload_validators\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:22:\"theme_file_upload_help\";}s:14:\"field_ui_table\";a:4:{s:14:\"render element\";s:8:\"elements\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/field_ui\";s:8:\"function\";s:20:\"theme_field_ui_table\";}s:5:\"field\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/field\";s:8:\"function\";s:11:\"theme_field\";s:20:\"preprocess functions\";a:2:{i:0;s:25:\"template_preprocess_field\";i:1;s:20:\"rdf_preprocess_field\";}s:17:\"process functions\";a:1:{i:0;s:22:\"template_process_field\";}}s:25:\"field_multiple_value_form\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/field\";s:8:\"function\";s:31:\"theme_field_multiple_value_form\";}s:13:\"entity_status\";a:6:{s:9:\"variables\";a:2:{s:6:\"status\";N;s:4:\"html\";b:1;}s:4:\"file\";s:22:\"theme/entity.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/entity\";s:8:\"function\";s:19:\"theme_entity_status\";s:8:\"includes\";a:1:{i:0;s:47:\"sites/all/modules/entity/theme/entity.theme.inc\";}}s:6:\"entity\";a:10:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:6:\"entity\";s:7:\"pattern\";s:9:\"()(\\.|__)\";s:4:\"path\";s:30:\"sites/all/modules/entity/theme\";s:4:\"file\";s:16:\"entity.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/entity\";s:8:\"includes\";a:1:{i:0;s:47:\"sites/all/modules/entity/theme/entity.theme.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:26:\"template_preprocess_entity\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:15:\"entity_property\";a:8:{s:14:\"render element\";s:8:\"elements\";s:4:\"file\";s:22:\"theme/entity.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/entity\";s:8:\"function\";s:21:\"theme_entity_property\";s:8:\"includes\";a:1:{i:0;s:47:\"sites/all/modules/entity/theme/entity.theme.inc\";}s:20:\"preprocess functions\";a:1:{i:0;s:35:\"template_preprocess_entity_property\";}s:17:\"process functions\";a:1:{i:0;s:32:\"template_process_entity_property\";}}s:23:\"entity_ui_overview_item\";a:6:{s:9:\"variables\";a:4:{s:5:\"label\";N;s:11:\"entity_type\";N;s:3:\"url\";b:0;s:4:\"name\";b:0;}s:4:\"file\";s:22:\"includes/entity.ui.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/entity\";s:8:\"function\";s:29:\"theme_entity_ui_overview_item\";s:8:\"includes\";a:1:{i:0;s:47:\"sites/all/modules/entity/includes/entity.ui.inc\";}}s:13:\"dblog_message\";a:6:{s:9:\"variables\";a:2:{s:5:\"event\";N;s:4:\"link\";b:0;}s:4:\"file\";s:15:\"dblog.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/dblog\";s:8:\"function\";s:19:\"theme_dblog_message\";s:8:\"includes\";a:1:{i:0;s:29:\"modules/dblog/dblog.admin.inc\";}}s:9:\"dashboard\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:15:\"theme_dashboard\";}s:15:\"dashboard_admin\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:21:\"theme_dashboard_admin\";}s:16:\"dashboard_region\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:22:\"theme_dashboard_region\";}s:25:\"dashboard_disabled_blocks\";a:4:{s:9:\"variables\";a:1:{s:6:\"blocks\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:31:\"theme_dashboard_disabled_blocks\";}s:24:\"dashboard_disabled_block\";a:4:{s:9:\"variables\";a:1:{s:5:\"block\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:30:\"theme_dashboard_disabled_block\";}s:28:\"dashboard_admin_display_form\";a:9:{s:8:\"template\";s:24:\"block-admin-display-form\";s:4:\"path\";s:13:\"modules/block\";s:4:\"file\";s:15:\"block.admin.inc\";s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"includes\";a:1:{i:0;s:29:\"modules/block/block.admin.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:48:\"template_preprocess_dashboard_admin_display_form\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:33:\"ctools_menu_local_actions_wrapper\";a:6:{s:14:\"render element\";s:5:\"links\";s:4:\"file\";s:31:\"includes/action-links.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/ctools\";s:8:\"function\";s:39:\"theme_ctools_menu_local_actions_wrapper\";s:8:\"includes\";a:1:{i:0;s:56:\"sites/all/modules/ctools/includes/action-links.theme.inc\";}}s:15:\"ctools_dropdown\";a:6:{s:9:\"variables\";a:4:{s:5:\"title\";N;s:5:\"links\";N;s:5:\"image\";b:0;s:5:\"class\";s:0:\"\";}s:4:\"file\";s:27:\"includes/dropdown.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/ctools\";s:8:\"function\";s:21:\"theme_ctools_dropdown\";s:8:\"includes\";a:1:{i:0;s:52:\"sites/all/modules/ctools/includes/dropdown.theme.inc\";}}s:18:\"ctools_collapsible\";a:6:{s:9:\"variables\";a:3:{s:6:\"handle\";N;s:7:\"content\";N;s:9:\"collapsed\";b:0;}s:4:\"file\";s:30:\"includes/collapsible.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/ctools\";s:8:\"function\";s:24:\"theme_ctools_collapsible\";s:8:\"includes\";a:1:{i:0;s:55:\"sites/all/modules/ctools/includes/collapsible.theme.inc\";}}s:29:\"ctools_collapsible_remembered\";a:6:{s:9:\"variables\";a:4:{s:2:\"id\";N;s:6:\"handle\";N;s:7:\"content\";N;s:9:\"collapsed\";b:0;}s:4:\"file\";s:30:\"includes/collapsible.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/ctools\";s:8:\"function\";s:35:\"theme_ctools_collapsible_remembered\";s:8:\"includes\";a:1:{i:0;s:55:\"sites/all/modules/ctools/includes/collapsible.theme.inc\";}}s:19:\"ctools_wizard_trail\";a:6:{s:9:\"variables\";a:3:{s:5:\"trail\";N;s:9:\"form_info\";N;s:7:\"divider\";s:4:\" » \";}s:4:\"file\";s:25:\"includes/wizard.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/ctools\";s:8:\"function\";s:25:\"theme_ctools_wizard_trail\";s:8:\"includes\";a:1:{i:0;s:50:\"sites/all/modules/ctools/includes/wizard.theme.inc\";}}s:33:\"ctools_stylizer_color_scheme_form\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:21:\"includes/stylizer.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/ctools\";s:8:\"function\";s:39:\"theme_ctools_stylizer_color_scheme_form\";s:8:\"includes\";a:1:{i:0;s:46:\"sites/all/modules/ctools/includes/stylizer.inc\";}}s:28:\"ctools_stylizer_preview_form\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:21:\"includes/stylizer.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/ctools\";s:8:\"function\";s:34:\"theme_ctools_stylizer_preview_form\";s:8:\"includes\";a:1:{i:0;s:46:\"sites/all/modules/ctools/includes/stylizer.inc\";}}s:17:\"ctools_style_icon\";a:6:{s:9:\"variables\";a:2:{s:5:\"image\";N;s:5:\"title\";N;}s:4:\"file\";s:21:\"includes/stylizer.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/ctools\";s:8:\"function\";s:23:\"theme_ctools_style_icon\";s:8:\"includes\";a:1:{i:0;s:46:\"sites/all/modules/ctools/includes/stylizer.inc\";}}s:24:\"links__ctools_dropbutton\";a:6:{s:9:\"variables\";a:4:{s:5:\"title\";N;s:5:\"links\";N;s:5:\"image\";b:0;s:5:\"class\";N;}s:4:\"file\";s:29:\"includes/dropbutton.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/ctools\";s:8:\"function\";s:30:\"theme_links__ctools_dropbutton\";s:8:\"includes\";a:1:{i:0;s:54:\"sites/all/modules/ctools/includes/dropbutton.theme.inc\";}}s:19:\"ctools_context_list\";a:6:{s:9:\"variables\";a:1:{s:6:\"object\";N;}s:4:\"file\";s:26:\"includes/context.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/ctools\";s:8:\"function\";s:25:\"theme_ctools_context_list\";s:8:\"includes\";a:1:{i:0;s:51:\"sites/all/modules/ctools/includes/context.theme.inc\";}}s:28:\"ctools_context_list_no_table\";a:6:{s:9:\"variables\";a:1:{s:6:\"object\";N;}s:4:\"file\";s:26:\"includes/context.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/ctools\";s:8:\"function\";s:34:\"theme_ctools_context_list_no_table\";s:8:\"includes\";a:1:{i:0;s:51:\"sites/all/modules/ctools/includes/context.theme.inc\";}}s:24:\"ctools_context_item_form\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:26:\"includes/context.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/ctools\";s:8:\"function\";s:30:\"theme_ctools_context_item_form\";s:8:\"includes\";a:1:{i:0;s:51:\"sites/all/modules/ctools/includes/context.theme.inc\";}}s:23:\"ctools_context_item_row\";a:6:{s:9:\"variables\";a:5:{s:4:\"type\";N;s:4:\"form\";N;s:8:\"position\";N;s:5:\"count\";N;s:7:\"with_tr\";b:1;}s:4:\"file\";s:26:\"includes/context.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/ctools\";s:8:\"function\";s:29:\"theme_ctools_context_item_row\";s:8:\"includes\";a:1:{i:0;s:51:\"sites/all/modules/ctools/includes/context.theme.inc\";}}s:23:\"ctools_access_admin_add\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:33:\"includes/context-access-admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/ctools\";s:8:\"function\";s:29:\"theme_ctools_access_admin_add\";s:8:\"includes\";a:1:{i:0;s:58:\"sites/all/modules/ctools/includes/context-access-admin.inc\";}}s:13:\"comment_block\";a:4:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:8:\"function\";s:19:\"theme_comment_block\";}s:15:\"comment_preview\";a:4:{s:9:\"variables\";a:1:{s:7:\"comment\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:8:\"function\";s:21:\"theme_comment_preview\";}s:22:\"comment_post_forbidden\";a:4:{s:9:\"variables\";a:1:{s:4:\"node\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:8:\"function\";s:28:\"theme_comment_post_forbidden\";}s:17:\"color_scheme_form\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/color\";s:8:\"function\";s:23:\"theme_color_scheme_form\";}s:22:\"addressfield_container\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:30:\"sites/all/modules/addressfield\";s:8:\"function\";s:28:\"theme_addressfield_container\";}s:24:\"block_admin_display_form\";a:8:{s:8:\"template\";s:38:\"modules/block/block-admin-display-form\";s:4:\"file\";s:15:\"block.admin.inc\";s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/block\";s:8:\"includes\";a:1:{i:0;s:29:\"modules/block/block.admin.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:44:\"template_preprocess_block_admin_display_form\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}}',0,1538750950,1),('theme_registry:runtime:multipurpose','a:286:{s:10:\"breadcrumb\";a:4:{s:8:\"function\";s:23:\"multipurpose_breadcrumb\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:29:\"sites/all/themes/multipurpose\";s:9:\"variables\";a:1:{s:10:\"breadcrumb\";N;}}s:16:\"menu_local_tasks\";a:4:{s:8:\"function\";s:29:\"multipurpose_menu_local_tasks\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:29:\"sites/all/themes/multipurpose\";s:9:\"variables\";a:2:{s:7:\"primary\";a:0:{}s:9:\"secondary\";a:0:{}}}s:5:\"block\";a:7:{s:8:\"template\";s:5:\"block\";s:4:\"path\";s:39:\"sites/all/themes/multipurpose/templates\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:29:\"sites/all/themes/multipurpose\";s:14:\"render element\";s:8:\"elements\";s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:25:\"template_preprocess_block\";i:2;s:21:\"contextual_preprocess\";i:3;s:23:\"system_preprocess_block\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:6:\"region\";a:7:{s:8:\"template\";s:6:\"region\";s:4:\"path\";s:39:\"sites/all/themes/multipurpose/templates\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:29:\"sites/all/themes/multipurpose\";s:14:\"render element\";s:8:\"elements\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:26:\"template_preprocess_region\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:7:\"comment\";N;s:15:\"comment_wrapper\";N;s:4:\"page\";a:7:{s:8:\"template\";s:4:\"page\";s:4:\"path\";s:39:\"sites/all/themes/multipurpose/templates\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:29:\"sites/all/themes/multipurpose\";s:14:\"render element\";s:4:\"page\";s:20:\"preprocess functions\";a:8:{i:0;s:19:\"template_preprocess\";i:1;s:24:\"template_preprocess_page\";i:2;s:21:\"contextual_preprocess\";i:3;s:23:\"overlay_preprocess_page\";i:4;s:24:\"shortcut_preprocess_page\";i:5;s:21:\"views_preprocess_page\";i:6;s:34:\"entity_translation_preprocess_page\";i:7;s:28:\"multipurpose_preprocess_page\";}s:17:\"process functions\";a:5:{i:0;s:16:\"template_process\";i:1;s:21:\"template_process_page\";i:2;s:14:\"ctools_process\";i:3;s:11:\"rdf_process\";i:4;s:18:\"title_process_page\";}}s:4:\"node\";a:7:{s:8:\"template\";s:4:\"node\";s:4:\"path\";s:39:\"sites/all/themes/multipurpose/templates\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:29:\"sites/all/themes/multipurpose\";s:14:\"render element\";s:8:\"elements\";s:20:\"preprocess functions\";a:8:{i:0;s:19:\"template_preprocess\";i:1;s:24:\"template_preprocess_node\";i:2;s:21:\"contextual_preprocess\";i:3;s:22:\"ctools_preprocess_node\";i:4;s:19:\"rdf_preprocess_node\";i:5;s:21:\"views_preprocess_node\";i:6;s:34:\"entity_translation_preprocess_node\";i:7;s:28:\"multipurpose_preprocess_node\";}s:17:\"process functions\";a:4:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";i:3;s:18:\"title_process_node\";}}s:4:\"html\";a:7:{s:8:\"template\";s:4:\"html\";s:4:\"path\";s:39:\"sites/all/themes/multipurpose/templates\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:29:\"sites/all/themes/multipurpose\";s:14:\"render element\";s:4:\"page\";s:20:\"preprocess functions\";a:7:{i:0;s:19:\"template_preprocess\";i:1;s:24:\"template_preprocess_html\";i:2;s:21:\"contextual_preprocess\";i:3;s:23:\"overlay_preprocess_html\";i:4;s:23:\"toolbar_preprocess_html\";i:5;s:20:\"i18n_preprocess_html\";i:6;s:21:\"views_preprocess_html\";}s:17:\"process functions\";a:4:{i:0;s:16:\"template_process\";i:1;s:21:\"template_process_html\";i:2;s:14:\"ctools_process\";i:3;s:11:\"rdf_process\";}}s:16:\"maintenance_page\";a:7:{s:8:\"template\";s:16:\"maintenance-page\";s:4:\"path\";s:39:\"sites/all/themes/multipurpose/templates\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:29:\"sites/all/themes/multipurpose\";s:9:\"variables\";a:2:{s:7:\"content\";N;s:13:\"show_messages\";b:1;}s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:36:\"template_preprocess_maintenance_page\";i:2;s:21:\"contextual_preprocess\";i:3;s:35:\"overlay_preprocess_maintenance_page\";}s:17:\"process functions\";a:4:{i:0;s:16:\"template_process\";i:1;s:33:\"template_process_maintenance_page\";i:2;s:14:\"ctools_process\";i:3;s:11:\"rdf_process\";}}s:11:\"node__forum\";N;s:22:\"features_module_status\";N;s:19:\"features_components\";N;s:22:\"features_component_key\";N;s:23:\"features_component_list\";N;s:21:\"features_storage_link\";N;s:18:\"features_lock_link\";N;s:21:\"features_form_package\";N;s:20:\"features_form_export\";N;s:24:\"features_form_components\";N;s:21:\"features_form_buttons\";N;s:25:\"features_admin_components\";N;s:30:\"entity_translation_unavailable\";N;s:32:\"entity_translation_language_tabs\";N;s:27:\"entity_translation_overview\";N;s:36:\"entity_translation_overview_outdated\";N;s:16:\"views_mini_pager\";N;s:16:\"views_view_field\";N;s:19:\"views_view_grouping\";N;s:10:\"views_view\";a:10:{s:7:\"pattern\";s:12:\"views_view__\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:9:\"variables\";a:2:{s:10:\"view_array\";a:0:{}s:4:\"view\";N;}s:8:\"template\";s:10:\"views-view\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:30:\"template_preprocess_views_view\";i:2;s:21:\"contextual_preprocess\";i:3;s:30:\"views_ui_preprocess_views_view\";}s:17:\"process functions\";a:4:{i:0;s:16:\"template_process\";i:1;s:27:\"template_process_views_view\";i:2;s:14:\"ctools_process\";i:3;s:11:\"rdf_process\";}}s:14:\"gmap_view_gmap\";N;s:28:\"gmap_views_view_gmapextended\";N;s:22:\"views_view_unformatted\";N;s:15:\"views_view_list\";N;s:15:\"views_view_grid\";N;s:16:\"views_view_table\";N;s:18:\"views_view_summary\";N;s:30:\"views_view_summary_unformatted\";N;s:14:\"views_view_rss\";N;s:28:\"views_view_summary_jump_menu\";N;s:20:\"views_view_jump_menu\";N;s:22:\"views_view_row_comment\";N;s:18:\"views_view_row_rss\";N;s:17:\"views_view_fields\";N;s:21:\"views_form_views_form\";N;s:18:\"views_exposed_form\";N;s:10:\"views_more\";N;s:6:\"forums\";N;s:10:\"forum_list\";N;s:16:\"forum_topic_list\";N;s:10:\"forum_icon\";N;s:15:\"forum_submitted\";N;s:10:\"forum_form\";N;s:28:\"views_ui_display_tab_setting\";N;s:27:\"views_ui_display_tab_bucket\";N;s:23:\"views_ui_rearrange_form\";N;s:30:\"views_ui_rearrange_filter_form\";N;s:27:\"views_ui_expose_filter_form\";N;s:18:\"views_ui_view_info\";N;s:32:\"views_ui_build_group_filter_form\";N;s:12:\"views_tabset\";N;s:9:\"views_tab\";N;s:30:\"views_ui_reorder_displays_form\";N;s:27:\"views_ui_style_plugin_table\";N;s:29:\"views_ui_view_preview_section\";N;s:15:\"views_container\";N;s:21:\"variable_table_select\";N;s:12:\"user_picture\";a:6:{s:9:\"variables\";a:1:{s:7:\"account\";N;}s:8:\"template\";s:25:\"modules/user/user-picture\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:32:\"template_preprocess_user_picture\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:12:\"user_profile\";a:8:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:25:\"modules/user/user-profile\";s:4:\"file\";s:14:\"user.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.pages.inc\";}s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:32:\"template_preprocess_user_profile\";i:2;s:21:\"contextual_preprocess\";i:3;s:27:\"rdf_preprocess_user_profile\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:21:\"user_profile_category\";a:8:{s:14:\"render element\";s:7:\"element\";s:8:\"template\";s:34:\"modules/user/user-profile-category\";s:4:\"file\";s:14:\"user.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.pages.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:41:\"template_preprocess_user_profile_category\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:17:\"user_profile_item\";a:8:{s:14:\"render element\";s:7:\"element\";s:8:\"template\";s:30:\"modules/user/user-profile-item\";s:4:\"file\";s:14:\"user.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.pages.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:37:\"template_preprocess_user_profile_item\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:9:\"user_list\";N;s:22:\"user_admin_permissions\";N;s:16:\"user_admin_roles\";N;s:27:\"user_permission_description\";N;s:14:\"user_signature\";N;s:26:\"update_manager_update_form\";N;s:17:\"update_last_check\";N;s:13:\"update_report\";N;s:14:\"update_version\";N;s:19:\"update_status_label\";N;s:7:\"toolbar\";a:7:{s:14:\"render element\";s:7:\"toolbar\";s:8:\"template\";s:7:\"toolbar\";s:4:\"path\";s:15:\"modules/toolbar\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/toolbar\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";i:2;s:26:\"toolbar_preprocess_toolbar\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:14:\"toolbar_toggle\";a:4:{s:9:\"variables\";a:2:{s:9:\"collapsed\";N;s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/toolbar\";s:8:\"function\";s:20:\"theme_toolbar_toggle\";}s:30:\"taxonomy_overview_vocabularies\";N;s:23:\"taxonomy_overview_terms\";N;s:13:\"taxonomy_term\";N;s:15:\"status_messages\";a:4:{s:9:\"variables\";a:1:{s:7:\"display\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:21:\"theme_status_messages\";}s:4:\"link\";a:4:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:4:\"path\";N;s:7:\"options\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_link\";}s:5:\"links\";a:4:{s:9:\"variables\";a:3:{s:5:\"links\";N;s:10:\"attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:5:\"links\";}}s:7:\"heading\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_links\";}s:5:\"image\";a:5:{s:9:\"variables\";a:6:{s:4:\"path\";N;s:5:\"width\";N;s:6:\"height\";N;s:3:\"alt\";s:0:\"\";s:5:\"title\";N;s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_image\";s:20:\"preprocess functions\";a:1:{i:0;s:20:\"rdf_preprocess_image\";}}s:4:\"help\";N;s:5:\"table\";N;s:19:\"tablesort_indicator\";N;s:4:\"mark\";N;s:9:\"item_list\";a:4:{s:9:\"variables\";a:4:{s:5:\"items\";a:0:{}s:5:\"title\";N;s:4:\"type\";s:2:\"ul\";s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_item_list\";}s:14:\"more_help_link\";N;s:9:\"feed_icon\";a:4:{s:9:\"variables\";a:2:{s:3:\"url\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_feed_icon\";}s:9:\"more_link\";N;s:8:\"username\";a:6:{s:9:\"variables\";a:1:{s:7:\"account\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_username\";s:20:\"preprocess functions\";a:2:{i:0;s:28:\"template_preprocess_username\";i:1;s:23:\"rdf_preprocess_username\";}s:17:\"process functions\";a:1:{i:0;s:25:\"template_process_username\";}}s:12:\"progress_bar\";N;s:11:\"indentation\";N;s:8:\"html_tag\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_html_tag\";}s:11:\"update_page\";N;s:12:\"install_page\";N;s:9:\"task_list\";N;s:17:\"authorize_message\";N;s:16:\"authorize_report\";N;s:5:\"pager\";a:4:{s:9:\"variables\";a:4:{s:4:\"tags\";a:0:{}s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}s:8:\"quantity\";i:9;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_pager\";}s:11:\"pager_first\";a:4:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_pager_first\";}s:14:\"pager_previous\";a:4:{s:9:\"variables\";a:4:{s:4:\"text\";N;s:7:\"element\";i:0;s:8:\"interval\";i:1;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:20:\"theme_pager_previous\";}s:10:\"pager_next\";a:4:{s:9:\"variables\";a:4:{s:4:\"text\";N;s:7:\"element\";i:0;s:8:\"interval\";i:1;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_pager_next\";}s:10:\"pager_last\";a:4:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_pager_last\";}s:10:\"pager_link\";a:4:{s:9:\"variables\";a:5:{s:4:\"text\";N;s:8:\"page_new\";N;s:7:\"element\";N;s:10:\"parameters\";a:0:{}s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_pager_link\";}s:9:\"menu_link\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_menu_link\";}s:9:\"menu_tree\";a:5:{s:14:\"render element\";s:4:\"tree\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_menu_tree\";s:20:\"preprocess functions\";a:1:{i:0;s:29:\"template_preprocess_menu_tree\";}}s:15:\"menu_local_task\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:21:\"theme_menu_local_task\";}s:17:\"menu_local_action\";N;s:6:\"select\";N;s:8:\"fieldset\";N;s:5:\"radio\";N;s:6:\"radios\";N;s:4:\"date\";N;s:15:\"exposed_filters\";N;s:8:\"checkbox\";N;s:10:\"checkboxes\";N;s:6:\"button\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_button\";}s:12:\"image_button\";N;s:6:\"hidden\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_hidden\";}s:9:\"textfield\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_textfield\";}s:4:\"form\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_form\";}s:8:\"textarea\";N;s:8:\"password\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_password\";}s:4:\"file\";N;s:11:\"tableselect\";N;s:12:\"form_element\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_form_element\";}s:20:\"form_required_marker\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:26:\"theme_form_required_marker\";}s:18:\"form_element_label\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:24:\"theme_form_element_label\";}s:13:\"vertical_tabs\";N;s:9:\"container\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_container\";}s:18:\"system_themes_page\";N;s:20:\"system_settings_form\";N;s:12:\"confirm_form\";N;s:23:\"system_modules_fieldset\";N;s:27:\"system_modules_incompatible\";N;s:24:\"system_modules_uninstall\";N;s:13:\"status_report\";N;s:10:\"admin_page\";N;s:11:\"admin_block\";N;s:19:\"admin_block_content\";N;s:18:\"system_admin_index\";N;s:17:\"system_powered_by\";N;s:19:\"system_compact_link\";N;s:25:\"system_date_time_settings\";N;s:22:\"shortcut_set_customize\";N;s:29:\"rdf_template_variable_wrapper\";a:4:{s:9:\"variables\";a:4:{s:7:\"content\";N;s:10:\"attributes\";a:0:{}s:7:\"context\";a:0:{}s:6:\"inline\";b:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:11:\"modules/rdf\";s:8:\"function\";s:35:\"theme_rdf_template_variable_wrapper\";}s:12:\"rdf_metadata\";a:4:{s:9:\"variables\";a:1:{s:8:\"metadata\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:11:\"modules/rdf\";s:8:\"function\";s:18:\"theme_rdf_metadata\";}s:20:\"photos_editlist_form\";N;s:20:\"photos_comment_count\";N;s:14:\"photos_default\";N;s:11:\"photos_down\";a:6:{s:8:\"template\";s:40:\"sites/all/modules/photos/tpl/photos_down\";s:9:\"variables\";a:2:{s:7:\"content\";N;s:4:\"type\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:12:\"photos_slide\";N;s:16:\"photos_imageview\";a:6:{s:8:\"template\";s:45:\"sites/all/modules/photos/tpl/photos_imageview\";s:9:\"variables\";a:2:{s:5:\"image\";N;s:4:\"type\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:17:\"photos_imageblock\";N;s:12:\"photos_block\";N;s:16:\"photos_albumview\";a:6:{s:8:\"template\";s:45:\"sites/all/modules/photos/tpl/photos_albumview\";s:9:\"variables\";a:2:{s:5:\"album\";N;s:4:\"node\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:16:\"photos_albumlist\";N;s:17:\"photos_albumlinks\";a:6:{s:8:\"template\";s:46:\"sites/all/modules/photos/tpl/photos_albumlinks\";s:9:\"variables\";a:1:{s:5:\"links\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:16:\"photos_imagehtml\";a:6:{s:8:\"template\";s:45:\"sites/all/modules/photos/tpl/photos_imagehtml\";s:9:\"variables\";a:2:{s:5:\"image\";N;s:10:\"style_name\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";i:2;s:34:\"photos_preprocess_photos_imagehtml\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:11:\"photos_exif\";N;s:12:\"photos_print\";N;s:12:\"photos_share\";N;s:11:\"photos_vote\";N;s:7:\"overlay\";N;s:23:\"overlay_disable_message\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/overlay\";s:8:\"function\";s:29:\"theme_overlay_disable_message\";}s:12:\"options_none\";N;s:17:\"node_search_admin\";N;s:13:\"node_add_list\";N;s:12:\"node_preview\";N;s:19:\"node_admin_overview\";N;s:17:\"node_recent_block\";N;s:19:\"node_recent_content\";N;s:18:\"menu_overview_form\";N;s:19:\"menu_admin_overview\";N;s:22:\"location_cck_field_all\";N;s:22:\"location_cck_field_map\";N;s:24:\"location_cck_field_popup\";N;s:17:\"location_settings\";N;s:9:\"locations\";N;s:8:\"location\";N;s:21:\"location_latitude_dms\";N;s:22:\"location_longitude_dms\";N;s:25:\"location_map_link_options\";N;s:26:\"location_geocoding_options\";N;s:16:\"location_element\";N;s:17:\"location_distance\";N;s:30:\"locale_languages_overview_form\";N;s:31:\"locale_languages_configure_form\";N;s:23:\"locale_date_format_form\";N;s:26:\"libraries_table_with_title\";N;s:18:\"languageicons_icon\";a:4:{s:9:\"variables\";a:2:{s:8:\"language\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:31:\"sites/all/modules/languageicons\";s:8:\"function\";s:24:\"theme_languageicons_icon\";}s:19:\"languageicons_place\";a:4:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:4:\"icon\";N;s:9:\"separator\";s:1:\" \";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:31:\"sites/all/modules/languageicons\";s:8:\"function\";s:25:\"theme_languageicons_place\";}s:26:\"l10n_update_project_status\";N;s:34:\"l10n_update_single_project_wrapper\";N;s:33:\"l10n_update_single_project_status\";N;s:27:\"l10n_update_current_release\";N;s:29:\"l10n_update_available_release\";N;s:26:\"l10n_update_version_status\";N;s:10:\"imce_admin\";N;s:16:\"imce_directories\";N;s:15:\"imce_thumbnails\";N;s:14:\"imce_root_text\";N;s:14:\"imce_user_page\";N;s:14:\"imce_file_list\";N;s:12:\"imce_content\";N;s:9:\"imce_page\";N;s:11:\"image_style\";a:4:{s:9:\"variables\";a:7:{s:10:\"style_name\";N;s:4:\"path\";N;s:5:\"width\";N;s:6:\"height\";N;s:3:\"alt\";s:0:\"\";s:5:\"title\";N;s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:17:\"theme_image_style\";}s:16:\"image_style_list\";N;s:19:\"image_style_effects\";N;s:19:\"image_style_preview\";N;s:12:\"image_anchor\";N;s:20:\"image_resize_summary\";N;s:19:\"image_scale_summary\";N;s:18:\"image_crop_summary\";N;s:20:\"image_rotate_summary\";N;s:12:\"image_widget\";N;s:15:\"image_formatter\";a:4:{s:9:\"variables\";a:3:{s:4:\"item\";N;s:4:\"path\";N;s:11:\"image_style\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:21:\"theme_image_formatter\";}s:28:\"i18n_node_select_translation\";N;s:23:\"gmap_location_user_page\";N;s:23:\"gmap_location_node_page\";N;s:29:\"gmap_location_infowindow_node\";N;s:29:\"gmap_location_infowindow_user\";N;s:26:\"gmap_views_ui_gmapextended\";N;s:15:\"views_view_gmap\";N;s:23:\"gmap_views_marker_label\";N;s:17:\"gmap_marker_popup\";N;s:14:\"gmap_dimension\";N;s:4:\"gmap\";N;s:15:\"geofield_latlon\";N;s:18:\"geofield_proximity\";N;s:21:\"filter_admin_overview\";N;s:32:\"filter_admin_format_filter_order\";N;s:11:\"filter_tips\";N;s:19:\"text_format_wrapper\";N;s:21:\"filter_tips_more_info\";N;s:17:\"filter_guidelines\";N;s:9:\"file_link\";N;s:9:\"file_icon\";N;s:17:\"file_managed_file\";N;s:11:\"file_widget\";N;s:20:\"file_widget_multiple\";N;s:20:\"file_formatter_table\";N;s:16:\"file_upload_help\";N;s:14:\"field_ui_table\";N;s:5:\"field\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/field\";s:8:\"function\";s:11:\"theme_field\";s:20:\"preprocess functions\";a:2:{i:0;s:25:\"template_preprocess_field\";i:1;s:20:\"rdf_preprocess_field\";}s:17:\"process functions\";a:1:{i:0;s:22:\"template_process_field\";}}s:25:\"field_multiple_value_form\";N;s:13:\"entity_status\";N;s:6:\"entity\";N;s:15:\"entity_property\";N;s:23:\"entity_ui_overview_item\";N;s:13:\"dblog_message\";N;s:9:\"dashboard\";N;s:15:\"dashboard_admin\";N;s:16:\"dashboard_region\";N;s:25:\"dashboard_disabled_blocks\";N;s:24:\"dashboard_disabled_block\";N;s:28:\"dashboard_admin_display_form\";N;s:33:\"ctools_menu_local_actions_wrapper\";N;s:15:\"ctools_dropdown\";N;s:18:\"ctools_collapsible\";N;s:29:\"ctools_collapsible_remembered\";N;s:19:\"ctools_wizard_trail\";N;s:33:\"ctools_stylizer_color_scheme_form\";N;s:28:\"ctools_stylizer_preview_form\";N;s:17:\"ctools_style_icon\";N;s:24:\"links__ctools_dropbutton\";N;s:19:\"ctools_context_list\";N;s:28:\"ctools_context_list_no_table\";N;s:24:\"ctools_context_item_form\";N;s:23:\"ctools_context_item_row\";N;s:23:\"ctools_access_admin_add\";N;s:13:\"comment_block\";N;s:15:\"comment_preview\";N;s:22:\"comment_post_forbidden\";N;s:17:\"color_scheme_form\";N;s:22:\"addressfield_container\";N;s:24:\"block_admin_display_form\";N;}',0,1538783477,1),('theme_registry:runtime:seven','a:285:{s:19:\"tablesort_indicator\";a:4:{s:8:\"function\";s:25:\"seven_tablesort_indicator\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:12:\"themes/seven\";s:9:\"variables\";a:1:{s:5:\"style\";N;}}s:19:\"admin_block_content\";a:5:{s:8:\"function\";s:25:\"seven_admin_block_content\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:12:\"themes/seven\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}s:9:\"variables\";a:1:{s:7:\"content\";N;}}s:13:\"node_add_list\";a:5:{s:8:\"function\";s:19:\"seven_node_add_list\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:12:\"themes/seven\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/node/node.pages.inc\";}s:9:\"variables\";a:1:{s:7:\"content\";N;}}s:4:\"page\";a:7:{s:8:\"template\";s:4:\"page\";s:4:\"path\";s:12:\"themes/seven\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:12:\"themes/seven\";s:14:\"render element\";s:4:\"page\";s:20:\"preprocess functions\";a:8:{i:0;s:19:\"template_preprocess\";i:1;s:24:\"template_preprocess_page\";i:2;s:21:\"contextual_preprocess\";i:3;s:23:\"overlay_preprocess_page\";i:4;s:24:\"shortcut_preprocess_page\";i:5;s:21:\"views_preprocess_page\";i:6;s:34:\"entity_translation_preprocess_page\";i:7;s:21:\"seven_preprocess_page\";}s:17:\"process functions\";a:5:{i:0;s:16:\"template_process\";i:1;s:21:\"template_process_page\";i:2;s:14:\"ctools_process\";i:3;s:11:\"rdf_process\";i:4;s:18:\"title_process_page\";}}s:16:\"maintenance_page\";a:7:{s:8:\"template\";s:16:\"maintenance-page\";s:4:\"path\";s:12:\"themes/seven\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:12:\"themes/seven\";s:9:\"variables\";a:2:{s:7:\"content\";N;s:13:\"show_messages\";b:1;}s:20:\"preprocess functions\";a:5:{i:0;s:19:\"template_preprocess\";i:1;s:36:\"template_preprocess_maintenance_page\";i:2;s:21:\"contextual_preprocess\";i:3;s:35:\"overlay_preprocess_maintenance_page\";i:4;s:33:\"seven_preprocess_maintenance_page\";}s:17:\"process functions\";a:4:{i:0;s:16:\"template_process\";i:1;s:33:\"template_process_maintenance_page\";i:2;s:14:\"ctools_process\";i:3;s:11:\"rdf_process\";}}s:22:\"features_module_status\";N;s:19:\"features_components\";N;s:22:\"features_component_key\";N;s:23:\"features_component_list\";N;s:21:\"features_storage_link\";N;s:18:\"features_lock_link\";N;s:21:\"features_form_package\";N;s:20:\"features_form_export\";N;s:24:\"features_form_components\";N;s:21:\"features_form_buttons\";N;s:25:\"features_admin_components\";N;s:30:\"entity_translation_unavailable\";N;s:32:\"entity_translation_language_tabs\";N;s:27:\"entity_translation_overview\";N;s:36:\"entity_translation_overview_outdated\";N;s:16:\"views_mini_pager\";N;s:16:\"views_view_field\";N;s:19:\"views_view_grouping\";N;s:10:\"views_view\";N;s:14:\"gmap_view_gmap\";N;s:28:\"gmap_views_view_gmapextended\";N;s:22:\"views_view_unformatted\";N;s:15:\"views_view_list\";N;s:15:\"views_view_grid\";N;s:16:\"views_view_table\";N;s:18:\"views_view_summary\";N;s:30:\"views_view_summary_unformatted\";N;s:14:\"views_view_rss\";N;s:28:\"views_view_summary_jump_menu\";N;s:20:\"views_view_jump_menu\";N;s:22:\"views_view_row_comment\";N;s:18:\"views_view_row_rss\";N;s:17:\"views_view_fields\";N;s:21:\"views_form_views_form\";N;s:18:\"views_exposed_form\";N;s:10:\"views_more\";N;s:6:\"forums\";N;s:10:\"forum_list\";N;s:16:\"forum_topic_list\";N;s:10:\"forum_icon\";N;s:15:\"forum_submitted\";N;s:10:\"forum_form\";N;s:28:\"views_ui_display_tab_setting\";N;s:27:\"views_ui_display_tab_bucket\";N;s:23:\"views_ui_rearrange_form\";N;s:30:\"views_ui_rearrange_filter_form\";N;s:27:\"views_ui_expose_filter_form\";N;s:18:\"views_ui_view_info\";N;s:32:\"views_ui_build_group_filter_form\";N;s:12:\"views_tabset\";N;s:9:\"views_tab\";N;s:30:\"views_ui_reorder_displays_form\";N;s:27:\"views_ui_style_plugin_table\";N;s:29:\"views_ui_view_preview_section\";N;s:15:\"views_container\";N;s:21:\"variable_table_select\";N;s:12:\"user_picture\";a:6:{s:9:\"variables\";a:1:{s:7:\"account\";N;}s:8:\"template\";s:25:\"modules/user/user-picture\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:32:\"template_preprocess_user_picture\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:12:\"user_profile\";N;s:21:\"user_profile_category\";N;s:17:\"user_profile_item\";N;s:9:\"user_list\";a:4:{s:9:\"variables\";a:2:{s:5:\"users\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:15:\"theme_user_list\";}s:22:\"user_admin_permissions\";N;s:16:\"user_admin_roles\";N;s:27:\"user_permission_description\";N;s:14:\"user_signature\";N;s:26:\"update_manager_update_form\";N;s:17:\"update_last_check\";N;s:13:\"update_report\";N;s:14:\"update_version\";N;s:19:\"update_status_label\";N;s:7:\"toolbar\";N;s:14:\"toolbar_toggle\";N;s:30:\"taxonomy_overview_vocabularies\";N;s:23:\"taxonomy_overview_terms\";N;s:13:\"taxonomy_term\";N;s:4:\"html\";a:6:{s:14:\"render element\";s:4:\"page\";s:8:\"template\";s:19:\"modules/system/html\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"themes/seven\";s:20:\"preprocess functions\";a:8:{i:0;s:19:\"template_preprocess\";i:1;s:24:\"template_preprocess_html\";i:2;s:21:\"contextual_preprocess\";i:3;s:23:\"overlay_preprocess_html\";i:4;s:23:\"toolbar_preprocess_html\";i:5;s:20:\"i18n_preprocess_html\";i:6;s:21:\"views_preprocess_html\";i:7;s:21:\"seven_preprocess_html\";}s:17:\"process functions\";a:4:{i:0;s:16:\"template_process\";i:1;s:21:\"template_process_html\";i:2;s:14:\"ctools_process\";i:3;s:11:\"rdf_process\";}}s:6:\"region\";a:6:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:21:\"modules/system/region\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:26:\"template_preprocess_region\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:15:\"status_messages\";a:4:{s:9:\"variables\";a:1:{s:7:\"display\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:21:\"theme_status_messages\";}s:4:\"link\";a:4:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:4:\"path\";N;s:7:\"options\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_link\";}s:5:\"links\";a:4:{s:9:\"variables\";a:3:{s:5:\"links\";N;s:10:\"attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:5:\"links\";}}s:7:\"heading\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_links\";}s:5:\"image\";a:5:{s:9:\"variables\";a:6:{s:4:\"path\";N;s:5:\"width\";N;s:6:\"height\";N;s:3:\"alt\";s:0:\"\";s:5:\"title\";N;s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_image\";s:20:\"preprocess functions\";a:1:{i:0;s:20:\"rdf_preprocess_image\";}}s:10:\"breadcrumb\";a:4:{s:9:\"variables\";a:1:{s:10:\"breadcrumb\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_breadcrumb\";}s:4:\"help\";N;s:5:\"table\";a:4:{s:9:\"variables\";a:7:{s:6:\"header\";N;s:4:\"rows\";N;s:10:\"attributes\";a:0:{}s:7:\"caption\";N;s:9:\"colgroups\";a:0:{}s:6:\"sticky\";b:1;s:5:\"empty\";s:0:\"\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_table\";}s:4:\"mark\";a:4:{s:9:\"variables\";a:1:{s:4:\"type\";i:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_mark\";}s:9:\"item_list\";a:4:{s:9:\"variables\";a:4:{s:5:\"items\";a:0:{}s:5:\"title\";N;s:4:\"type\";s:2:\"ul\";s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_item_list\";}s:14:\"more_help_link\";N;s:9:\"feed_icon\";N;s:9:\"more_link\";a:4:{s:9:\"variables\";a:2:{s:3:\"url\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_more_link\";}s:8:\"username\";a:6:{s:9:\"variables\";a:1:{s:7:\"account\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_username\";s:20:\"preprocess functions\";a:2:{i:0;s:28:\"template_preprocess_username\";i:1;s:23:\"rdf_preprocess_username\";}s:17:\"process functions\";a:1:{i:0;s:25:\"template_process_username\";}}s:12:\"progress_bar\";N;s:11:\"indentation\";N;s:8:\"html_tag\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_html_tag\";}s:11:\"update_page\";N;s:12:\"install_page\";N;s:9:\"task_list\";N;s:17:\"authorize_message\";N;s:16:\"authorize_report\";N;s:5:\"pager\";a:4:{s:9:\"variables\";a:4:{s:4:\"tags\";a:0:{}s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}s:8:\"quantity\";i:9;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_pager\";}s:11:\"pager_first\";a:4:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_pager_first\";}s:14:\"pager_previous\";a:4:{s:9:\"variables\";a:4:{s:4:\"text\";N;s:7:\"element\";i:0;s:8:\"interval\";i:1;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:20:\"theme_pager_previous\";}s:10:\"pager_next\";a:4:{s:9:\"variables\";a:4:{s:4:\"text\";N;s:7:\"element\";i:0;s:8:\"interval\";i:1;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_pager_next\";}s:10:\"pager_last\";a:4:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_pager_last\";}s:10:\"pager_link\";N;s:9:\"menu_link\";N;s:9:\"menu_tree\";N;s:15:\"menu_local_task\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:21:\"theme_menu_local_task\";}s:17:\"menu_local_action\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:23:\"theme_menu_local_action\";}s:16:\"menu_local_tasks\";a:4:{s:9:\"variables\";a:2:{s:7:\"primary\";a:0:{}s:9:\"secondary\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:22:\"theme_menu_local_tasks\";}s:6:\"select\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_select\";}s:8:\"fieldset\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_fieldset\";}s:5:\"radio\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_radio\";}s:6:\"radios\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_radios\";}s:4:\"date\";N;s:15:\"exposed_filters\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:21:\"theme_exposed_filters\";}s:8:\"checkbox\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_checkbox\";}s:10:\"checkboxes\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_checkboxes\";}s:6:\"button\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_button\";}s:12:\"image_button\";N;s:6:\"hidden\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_hidden\";}s:9:\"textfield\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_textfield\";}s:4:\"form\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_form\";}s:8:\"textarea\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_textarea\";}s:8:\"password\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_password\";}s:4:\"file\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_file\";}s:11:\"tableselect\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_tableselect\";}s:12:\"form_element\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_form_element\";}s:20:\"form_required_marker\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:26:\"theme_form_required_marker\";}s:18:\"form_element_label\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:24:\"theme_form_element_label\";}s:13:\"vertical_tabs\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:19:\"theme_vertical_tabs\";}s:9:\"container\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_container\";}s:18:\"system_themes_page\";N;s:20:\"system_settings_form\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:26:\"theme_system_settings_form\";}s:12:\"confirm_form\";N;s:23:\"system_modules_fieldset\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:29:\"theme_system_modules_fieldset\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:27:\"system_modules_incompatible\";N;s:24:\"system_modules_uninstall\";N;s:13:\"status_report\";N;s:10:\"admin_page\";a:6:{s:9:\"variables\";a:1:{s:6:\"blocks\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_admin_page\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:11:\"admin_block\";a:6:{s:9:\"variables\";a:1:{s:5:\"block\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_admin_block\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:18:\"system_admin_index\";N;s:17:\"system_powered_by\";N;s:19:\"system_compact_link\";a:4:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:25:\"theme_system_compact_link\";}s:25:\"system_date_time_settings\";N;s:22:\"shortcut_set_customize\";N;s:29:\"rdf_template_variable_wrapper\";N;s:12:\"rdf_metadata\";N;s:20:\"photos_editlist_form\";N;s:20:\"photos_comment_count\";N;s:14:\"photos_default\";N;s:11:\"photos_down\";N;s:12:\"photos_slide\";N;s:16:\"photos_imageview\";N;s:17:\"photos_imageblock\";N;s:12:\"photos_block\";N;s:16:\"photos_albumview\";N;s:16:\"photos_albumlist\";N;s:17:\"photos_albumlinks\";N;s:16:\"photos_imagehtml\";N;s:11:\"photos_exif\";N;s:12:\"photos_print\";N;s:12:\"photos_share\";N;s:11:\"photos_vote\";N;s:7:\"overlay\";a:6:{s:14:\"render element\";s:4:\"page\";s:8:\"template\";s:23:\"modules/overlay/overlay\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/overlay\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:27:\"template_preprocess_overlay\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:4:{i:0;s:16:\"template_process\";i:1;s:24:\"template_process_overlay\";i:2;s:14:\"ctools_process\";i:3;s:11:\"rdf_process\";}}s:23:\"overlay_disable_message\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/overlay\";s:8:\"function\";s:29:\"theme_overlay_disable_message\";}s:12:\"options_none\";N;s:4:\"node\";N;s:17:\"node_search_admin\";N;s:12:\"node_preview\";N;s:19:\"node_admin_overview\";N;s:17:\"node_recent_block\";a:4:{s:9:\"variables\";a:1:{s:5:\"nodes\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:23:\"theme_node_recent_block\";}s:19:\"node_recent_content\";a:4:{s:9:\"variables\";a:1:{s:4:\"node\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:25:\"theme_node_recent_content\";}s:18:\"menu_overview_form\";N;s:19:\"menu_admin_overview\";N;s:22:\"location_cck_field_all\";N;s:22:\"location_cck_field_map\";N;s:24:\"location_cck_field_popup\";N;s:17:\"location_settings\";N;s:9:\"locations\";N;s:8:\"location\";N;s:21:\"location_latitude_dms\";N;s:22:\"location_longitude_dms\";N;s:25:\"location_map_link_options\";N;s:26:\"location_geocoding_options\";N;s:16:\"location_element\";N;s:17:\"location_distance\";N;s:30:\"locale_languages_overview_form\";N;s:31:\"locale_languages_configure_form\";N;s:23:\"locale_date_format_form\";N;s:26:\"libraries_table_with_title\";N;s:18:\"languageicons_icon\";a:4:{s:9:\"variables\";a:2:{s:8:\"language\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:31:\"sites/all/modules/languageicons\";s:8:\"function\";s:24:\"theme_languageicons_icon\";}s:19:\"languageicons_place\";a:4:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:4:\"icon\";N;s:9:\"separator\";s:1:\" \";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:31:\"sites/all/modules/languageicons\";s:8:\"function\";s:25:\"theme_languageicons_place\";}s:26:\"l10n_update_project_status\";N;s:34:\"l10n_update_single_project_wrapper\";N;s:33:\"l10n_update_single_project_status\";N;s:27:\"l10n_update_current_release\";N;s:29:\"l10n_update_available_release\";N;s:26:\"l10n_update_version_status\";N;s:10:\"imce_admin\";N;s:16:\"imce_directories\";N;s:15:\"imce_thumbnails\";N;s:14:\"imce_root_text\";N;s:14:\"imce_user_page\";N;s:14:\"imce_file_list\";N;s:12:\"imce_content\";N;s:9:\"imce_page\";N;s:11:\"image_style\";a:4:{s:9:\"variables\";a:7:{s:10:\"style_name\";N;s:4:\"path\";N;s:5:\"width\";N;s:6:\"height\";N;s:3:\"alt\";s:0:\"\";s:5:\"title\";N;s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:17:\"theme_image_style\";}s:16:\"image_style_list\";N;s:19:\"image_style_effects\";N;s:19:\"image_style_preview\";N;s:12:\"image_anchor\";N;s:20:\"image_resize_summary\";N;s:19:\"image_scale_summary\";N;s:18:\"image_crop_summary\";N;s:20:\"image_rotate_summary\";N;s:12:\"image_widget\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:18:\"theme_image_widget\";}s:15:\"image_formatter\";N;s:28:\"i18n_node_select_translation\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"file\";s:19:\"i18n_node.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:32:\"sites/all/modules/i18n/i18n_node\";s:8:\"function\";s:34:\"theme_i18n_node_select_translation\";s:8:\"includes\";a:1:{i:0;s:52:\"sites/all/modules/i18n/i18n_node/i18n_node.pages.inc\";}}s:23:\"gmap_location_user_page\";N;s:23:\"gmap_location_node_page\";N;s:29:\"gmap_location_infowindow_node\";N;s:29:\"gmap_location_infowindow_user\";N;s:26:\"gmap_views_ui_gmapextended\";N;s:15:\"views_view_gmap\";N;s:23:\"gmap_views_marker_label\";N;s:17:\"gmap_marker_popup\";N;s:14:\"gmap_dimension\";N;s:4:\"gmap\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/gmap\";s:8:\"function\";s:10:\"theme_gmap\";}s:15:\"geofield_latlon\";N;s:18:\"geofield_proximity\";N;s:21:\"filter_admin_overview\";N;s:32:\"filter_admin_format_filter_order\";N;s:11:\"filter_tips\";a:6:{s:9:\"variables\";a:2:{s:4:\"tips\";N;s:4:\"long\";b:0;}s:4:\"file\";s:16:\"filter.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:17:\"theme_filter_tips\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/filter/filter.pages.inc\";}}s:19:\"text_format_wrapper\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:25:\"theme_text_format_wrapper\";}s:21:\"filter_tips_more_info\";a:4:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:27:\"theme_filter_tips_more_info\";}s:17:\"filter_guidelines\";a:4:{s:9:\"variables\";a:1:{s:6:\"format\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:23:\"theme_filter_guidelines\";}s:9:\"file_link\";N;s:9:\"file_icon\";N;s:17:\"file_managed_file\";N;s:11:\"file_widget\";N;s:20:\"file_widget_multiple\";N;s:20:\"file_formatter_table\";N;s:16:\"file_upload_help\";a:4:{s:9:\"variables\";a:2:{s:11:\"description\";N;s:17:\"upload_validators\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:22:\"theme_file_upload_help\";}s:14:\"field_ui_table\";a:4:{s:14:\"render element\";s:8:\"elements\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/field_ui\";s:8:\"function\";s:20:\"theme_field_ui_table\";}s:5:\"field\";N;s:25:\"field_multiple_value_form\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/field\";s:8:\"function\";s:31:\"theme_field_multiple_value_form\";}s:13:\"entity_status\";N;s:6:\"entity\";N;s:15:\"entity_property\";N;s:23:\"entity_ui_overview_item\";N;s:13:\"dblog_message\";N;s:9:\"dashboard\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:15:\"theme_dashboard\";}s:15:\"dashboard_admin\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:21:\"theme_dashboard_admin\";}s:16:\"dashboard_region\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:22:\"theme_dashboard_region\";}s:25:\"dashboard_disabled_blocks\";N;s:24:\"dashboard_disabled_block\";N;s:28:\"dashboard_admin_display_form\";N;s:33:\"ctools_menu_local_actions_wrapper\";N;s:15:\"ctools_dropdown\";N;s:18:\"ctools_collapsible\";N;s:29:\"ctools_collapsible_remembered\";N;s:19:\"ctools_wizard_trail\";N;s:33:\"ctools_stylizer_color_scheme_form\";N;s:28:\"ctools_stylizer_preview_form\";N;s:17:\"ctools_style_icon\";N;s:24:\"links__ctools_dropbutton\";N;s:19:\"ctools_context_list\";N;s:28:\"ctools_context_list_no_table\";N;s:24:\"ctools_context_item_form\";N;s:23:\"ctools_context_item_row\";N;s:23:\"ctools_access_admin_add\";N;s:13:\"comment_block\";a:4:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:8:\"function\";s:19:\"theme_comment_block\";}s:15:\"comment_preview\";N;s:7:\"comment\";N;s:22:\"comment_post_forbidden\";N;s:15:\"comment_wrapper\";N;s:17:\"color_scheme_form\";N;s:22:\"addressfield_container\";N;s:5:\"block\";a:6:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:19:\"modules/block/block\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/block\";s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:25:\"template_preprocess_block\";i:2;s:21:\"contextual_preprocess\";i:3;s:23:\"system_preprocess_block\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:24:\"block_admin_display_form\";N;}',0,1652163438,1),('theme_registry:seven','a:285:{s:19:\"tablesort_indicator\";a:4:{s:8:\"function\";s:25:\"seven_tablesort_indicator\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:12:\"themes/seven\";s:9:\"variables\";a:1:{s:5:\"style\";N;}}s:19:\"admin_block_content\";a:5:{s:8:\"function\";s:25:\"seven_admin_block_content\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:12:\"themes/seven\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}s:9:\"variables\";a:1:{s:7:\"content\";N;}}s:13:\"node_add_list\";a:5:{s:8:\"function\";s:19:\"seven_node_add_list\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:12:\"themes/seven\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/node/node.pages.inc\";}s:9:\"variables\";a:1:{s:7:\"content\";N;}}s:4:\"page\";a:7:{s:8:\"template\";s:4:\"page\";s:4:\"path\";s:12:\"themes/seven\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:12:\"themes/seven\";s:14:\"render element\";s:4:\"page\";s:20:\"preprocess functions\";a:8:{i:0;s:19:\"template_preprocess\";i:1;s:24:\"template_preprocess_page\";i:2;s:21:\"contextual_preprocess\";i:3;s:23:\"overlay_preprocess_page\";i:4;s:24:\"shortcut_preprocess_page\";i:5;s:21:\"views_preprocess_page\";i:6;s:34:\"entity_translation_preprocess_page\";i:7;s:21:\"seven_preprocess_page\";}s:17:\"process functions\";a:5:{i:0;s:16:\"template_process\";i:1;s:21:\"template_process_page\";i:2;s:14:\"ctools_process\";i:3;s:11:\"rdf_process\";i:4;s:18:\"title_process_page\";}}s:16:\"maintenance_page\";a:7:{s:8:\"template\";s:16:\"maintenance-page\";s:4:\"path\";s:12:\"themes/seven\";s:4:\"type\";s:12:\"theme_engine\";s:10:\"theme path\";s:12:\"themes/seven\";s:9:\"variables\";a:2:{s:7:\"content\";N;s:13:\"show_messages\";b:1;}s:20:\"preprocess functions\";a:5:{i:0;s:19:\"template_preprocess\";i:1;s:36:\"template_preprocess_maintenance_page\";i:2;s:21:\"contextual_preprocess\";i:3;s:35:\"overlay_preprocess_maintenance_page\";i:4;s:33:\"seven_preprocess_maintenance_page\";}s:17:\"process functions\";a:4:{i:0;s:16:\"template_process\";i:1;s:33:\"template_process_maintenance_page\";i:2;s:14:\"ctools_process\";i:3;s:11:\"rdf_process\";}}s:22:\"features_module_status\";a:7:{s:9:\"variables\";a:2:{s:6:\"module\";N;s:6:\"status\";N;}s:4:\"path\";s:32:\"sites/all/modules/features/theme\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/features\";s:8:\"function\";s:28:\"theme_features_module_status\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/features/theme/theme.inc\";}}s:19:\"features_components\";a:7:{s:9:\"variables\";a:2:{s:4:\"info\";N;s:7:\"sources\";N;}s:4:\"path\";s:32:\"sites/all/modules/features/theme\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/features\";s:8:\"function\";s:25:\"theme_features_components\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/features/theme/theme.inc\";}}s:22:\"features_component_key\";a:6:{s:4:\"path\";s:32:\"sites/all/modules/features/theme\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/features\";s:8:\"function\";s:28:\"theme_features_component_key\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/features/theme/theme.inc\";}}s:23:\"features_component_list\";a:7:{s:9:\"variables\";a:3:{s:10:\"components\";a:0:{}s:6:\"source\";a:0:{}s:9:\"conflicts\";a:0:{}}s:4:\"path\";s:32:\"sites/all/modules/features/theme\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/features\";s:8:\"function\";s:29:\"theme_features_component_list\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/features/theme/theme.inc\";}}s:21:\"features_storage_link\";a:7:{s:9:\"variables\";a:4:{s:7:\"storage\";N;s:4:\"text\";N;s:4:\"path\";N;s:7:\"options\";a:0:{}}s:4:\"path\";s:32:\"sites/all/modules/features/theme\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/features\";s:8:\"function\";s:27:\"theme_features_storage_link\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/features/theme/theme.inc\";}}s:18:\"features_lock_link\";a:7:{s:9:\"variables\";a:3:{s:7:\"feature\";N;s:9:\"component\";N;s:6:\"locked\";b:0;}s:4:\"path\";s:32:\"sites/all/modules/features/theme\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/features\";s:8:\"function\";s:24:\"theme_features_lock_link\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/features/theme/theme.inc\";}}s:21:\"features_form_package\";a:7:{s:14:\"render element\";s:4:\"form\";s:4:\"path\";s:32:\"sites/all/modules/features/theme\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/features\";s:8:\"function\";s:27:\"theme_features_form_package\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/features/theme/theme.inc\";}}s:20:\"features_form_export\";a:7:{s:14:\"render element\";s:4:\"form\";s:4:\"path\";s:32:\"sites/all/modules/features/theme\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/features\";s:8:\"function\";s:26:\"theme_features_form_export\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/features/theme/theme.inc\";}}s:24:\"features_form_components\";a:7:{s:14:\"render element\";s:4:\"form\";s:4:\"path\";s:32:\"sites/all/modules/features/theme\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/features\";s:8:\"function\";s:30:\"theme_features_form_components\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/features/theme/theme.inc\";}}s:21:\"features_form_buttons\";a:7:{s:14:\"render element\";s:7:\"element\";s:4:\"path\";s:32:\"sites/all/modules/features/theme\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/features\";s:8:\"function\";s:27:\"theme_features_form_buttons\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/features/theme/theme.inc\";}}s:25:\"features_admin_components\";a:9:{s:14:\"render element\";s:4:\"form\";s:8:\"template\";s:25:\"features-admin-components\";s:4:\"path\";s:32:\"sites/all/modules/features/theme\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/features\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/features/theme/theme.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:45:\"template_preprocess_features_admin_components\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:30:\"entity_translation_unavailable\";a:4:{s:9:\"variables\";a:1:{s:7:\"element\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:36:\"sites/all/modules/entity_translation\";s:8:\"function\";s:36:\"theme_entity_translation_unavailable\";}s:32:\"entity_translation_language_tabs\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:36:\"sites/all/modules/entity_translation\";s:8:\"function\";s:38:\"theme_entity_translation_language_tabs\";}s:27:\"entity_translation_overview\";a:6:{s:9:\"variables\";a:2:{s:4:\"rows\";N;s:6:\"header\";N;}s:4:\"file\";s:28:\"entity_translation.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:36:\"sites/all/modules/entity_translation\";s:8:\"function\";s:33:\"theme_entity_translation_overview\";s:8:\"includes\";a:1:{i:0;s:65:\"sites/all/modules/entity_translation/entity_translation.admin.inc\";}}s:36:\"entity_translation_overview_outdated\";a:6:{s:9:\"variables\";a:1:{s:7:\"message\";N;}s:4:\"file\";s:28:\"entity_translation.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:36:\"sites/all/modules/entity_translation\";s:8:\"function\";s:42:\"theme_entity_translation_overview_outdated\";s:8:\"includes\";a:1:{i:0;s:65:\"sites/all/modules/entity_translation/entity_translation.admin.inc\";}}s:16:\"views_mini_pager\";a:8:{s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:9:\"variables\";a:3:{s:4:\"tags\";a:0:{}s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}}s:7:\"pattern\";s:18:\"views_mini_pager__\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:22:\"theme_views_mini_pager\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}}s:16:\"views_view_field\";a:9:{s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:7:\"pattern\";s:18:\"views_view_field__\";s:9:\"variables\";a:3:{s:4:\"view\";N;s:5:\"field\";N;s:3:\"row\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:22:\"theme_views_view_field\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:1:{i:0;s:36:\"template_preprocess_views_view_field\";}}s:19:\"views_view_grouping\";a:9:{s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:7:\"pattern\";s:21:\"views_view_grouping__\";s:9:\"variables\";a:5:{s:4:\"view\";N;s:8:\"grouping\";N;s:14:\"grouping_level\";N;s:4:\"rows\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:25:\"theme_views_view_grouping\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:1:{i:0;s:39:\"template_preprocess_views_view_grouping\";}}s:10:\"views_view\";a:10:{s:7:\"pattern\";s:12:\"views_view__\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:9:\"variables\";a:2:{s:10:\"view_array\";a:0:{}s:4:\"view\";N;}s:8:\"template\";s:10:\"views-view\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:30:\"template_preprocess_views_view\";i:2;s:21:\"contextual_preprocess\";i:3;s:30:\"views_ui_preprocess_views_view\";}s:17:\"process functions\";a:4:{i:0;s:16:\"template_process\";i:1;s:27:\"template_process_views_view\";i:2;s:14:\"ctools_process\";i:3;s:11:\"rdf_process\";}}s:14:\"gmap_view_gmap\";a:10:{s:7:\"pattern\";s:16:\"gmap_view_gmap__\";s:4:\"file\";s:14:\"gmap.views.inc\";s:4:\"path\";s:22:\"sites/all/modules/gmap\";s:9:\"variables\";a:4:{s:4:\"view\";N;s:7:\"options\";N;s:4:\"rows\";N;s:5:\"title\";N;}s:8:\"template\";s:14:\"gmap-view-gmap\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:37:\"sites/all/modules/gmap/gmap.views.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:34:\"template_preprocess_gmap_view_gmap\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:28:\"gmap_views_view_gmapextended\";a:9:{s:7:\"pattern\";s:30:\"gmap_views_view_gmapextended__\";s:4:\"file\";s:14:\"gmap.views.inc\";s:4:\"path\";s:22:\"sites/all/modules/gmap\";s:9:\"variables\";a:4:{s:4:\"view\";N;s:7:\"options\";N;s:4:\"rows\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:34:\"theme_gmap_views_view_gmapextended\";s:8:\"includes\";a:1:{i:0;s:37:\"sites/all/modules/gmap/gmap.views.inc\";}s:20:\"preprocess functions\";a:1:{i:0;s:48:\"template_preprocess_gmap_views_view_gmapextended\";}}s:22:\"views_view_unformatted\";a:10:{s:7:\"pattern\";s:24:\"views_view_unformatted__\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:9:\"variables\";a:4:{s:4:\"view\";N;s:7:\"options\";N;s:4:\"rows\";N;s:5:\"title\";N;}s:8:\"template\";s:22:\"views-view-unformatted\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:42:\"template_preprocess_views_view_unformatted\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:15:\"views_view_list\";a:10:{s:7:\"pattern\";s:17:\"views_view_list__\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:9:\"variables\";a:4:{s:4:\"view\";N;s:7:\"options\";N;s:4:\"rows\";N;s:5:\"title\";N;}s:8:\"template\";s:15:\"views-view-list\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:35:\"template_preprocess_views_view_list\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:15:\"views_view_grid\";a:10:{s:7:\"pattern\";s:17:\"views_view_grid__\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:9:\"variables\";a:4:{s:4:\"view\";N;s:7:\"options\";N;s:4:\"rows\";N;s:5:\"title\";N;}s:8:\"template\";s:15:\"views-view-grid\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:35:\"template_preprocess_views_view_grid\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:16:\"views_view_table\";a:10:{s:7:\"pattern\";s:18:\"views_view_table__\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:9:\"variables\";a:4:{s:4:\"view\";N;s:7:\"options\";N;s:4:\"rows\";N;s:5:\"title\";N;}s:8:\"template\";s:16:\"views-view-table\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:36:\"template_preprocess_views_view_table\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:18:\"views_view_summary\";a:10:{s:7:\"pattern\";s:20:\"views_view_summary__\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:9:\"variables\";a:4:{s:4:\"view\";N;s:7:\"options\";N;s:4:\"rows\";N;s:5:\"title\";N;}s:8:\"template\";s:18:\"views-view-summary\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:38:\"template_preprocess_views_view_summary\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:30:\"views_view_summary_unformatted\";a:10:{s:7:\"pattern\";s:32:\"views_view_summary_unformatted__\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:9:\"variables\";a:4:{s:4:\"view\";N;s:7:\"options\";N;s:4:\"rows\";N;s:5:\"title\";N;}s:8:\"template\";s:30:\"views-view-summary-unformatted\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:50:\"template_preprocess_views_view_summary_unformatted\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:14:\"views_view_rss\";a:10:{s:7:\"pattern\";s:16:\"views_view_rss__\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:9:\"variables\";a:4:{s:4:\"view\";N;s:7:\"options\";N;s:4:\"rows\";N;s:5:\"title\";N;}s:8:\"template\";s:14:\"views-view-rss\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:34:\"template_preprocess_views_view_rss\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:28:\"views_view_summary_jump_menu\";a:10:{s:7:\"pattern\";s:30:\"views_view_summary_jump_menu__\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:9:\"variables\";a:4:{s:4:\"view\";N;s:7:\"options\";N;s:4:\"rows\";N;s:5:\"title\";N;}s:8:\"template\";s:28:\"views-view-summary-jump-menu\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:20:\"views_view_jump_menu\";a:10:{s:7:\"pattern\";s:22:\"views_view_jump_menu__\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:9:\"variables\";a:4:{s:4:\"view\";N;s:7:\"options\";N;s:4:\"rows\";N;s:5:\"title\";N;}s:8:\"template\";s:20:\"views-view-jump-menu\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:22:\"views_view_row_comment\";a:10:{s:7:\"pattern\";s:24:\"views_view_row_comment__\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:9:\"variables\";a:4:{s:4:\"view\";N;s:7:\"options\";N;s:3:\"row\";N;s:11:\"field_alias\";N;}s:8:\"template\";s:22:\"views-view-row-comment\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:42:\"template_preprocess_views_view_row_comment\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:18:\"views_view_row_rss\";a:10:{s:7:\"pattern\";s:20:\"views_view_row_rss__\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:9:\"variables\";a:4:{s:4:\"view\";N;s:7:\"options\";N;s:3:\"row\";N;s:11:\"field_alias\";N;}s:8:\"template\";s:18:\"views-view-row-rss\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:38:\"template_preprocess_views_view_row_rss\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:17:\"views_view_fields\";a:10:{s:7:\"pattern\";s:19:\"views_view_fields__\";s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:9:\"variables\";a:4:{s:4:\"view\";N;s:7:\"options\";N;s:3:\"row\";N;s:11:\"field_alias\";N;}s:8:\"template\";s:17:\"views-view-fields\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:37:\"template_preprocess_views_view_fields\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:21:\"views_form_views_form\";a:7:{s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:27:\"theme_views_form_views_form\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}}s:18:\"views_exposed_form\";a:10:{s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:8:\"template\";s:18:\"views-exposed-form\";s:7:\"pattern\";s:20:\"views_exposed_form__\";s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:38:\"template_preprocess_views_exposed_form\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:10:\"views_more\";a:10:{s:4:\"file\";s:9:\"theme.inc\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:8:\"template\";s:10:\"views-more\";s:7:\"pattern\";s:12:\"views_more__\";s:9:\"variables\";a:3:{s:8:\"more_url\";N;s:9:\"link_text\";s:4:\"more\";s:4:\"view\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:6:\"forums\";a:6:{s:8:\"template\";s:20:\"modules/forum/forums\";s:9:\"variables\";a:6:{s:6:\"forums\";N;s:6:\"topics\";N;s:7:\"parents\";N;s:3:\"tid\";N;s:6:\"sortby\";N;s:14:\"forum_per_page\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/forum\";s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:26:\"template_preprocess_forums\";i:2;s:21:\"contextual_preprocess\";i:3;s:28:\"i18n_forum_preprocess_forums\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:10:\"forum_list\";a:6:{s:8:\"template\";s:24:\"modules/forum/forum-list\";s:9:\"variables\";a:3:{s:6:\"forums\";N;s:7:\"parents\";N;s:3:\"tid\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/forum\";s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:30:\"template_preprocess_forum_list\";i:2;s:21:\"contextual_preprocess\";i:3;s:32:\"i18n_forum_preprocess_forum_list\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:16:\"forum_topic_list\";a:6:{s:8:\"template\";s:30:\"modules/forum/forum-topic-list\";s:9:\"variables\";a:4:{s:3:\"tid\";N;s:6:\"topics\";N;s:6:\"sortby\";N;s:14:\"forum_per_page\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/forum\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:36:\"template_preprocess_forum_topic_list\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:10:\"forum_icon\";a:6:{s:8:\"template\";s:24:\"modules/forum/forum-icon\";s:9:\"variables\";a:5:{s:9:\"new_posts\";N;s:9:\"num_posts\";i:0;s:12:\"comment_mode\";i:0;s:6:\"sticky\";i:0;s:9:\"first_new\";b:0;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/forum\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:30:\"template_preprocess_forum_icon\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:15:\"forum_submitted\";a:6:{s:8:\"template\";s:29:\"modules/forum/forum-submitted\";s:9:\"variables\";a:1:{s:5:\"topic\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/forum\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:35:\"template_preprocess_forum_submitted\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:10:\"forum_form\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:15:\"forum.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/forum\";s:8:\"function\";s:16:\"theme_forum_form\";s:8:\"includes\";a:1:{i:0;s:29:\"modules/forum/forum.admin.inc\";}}s:28:\"views_ui_display_tab_setting\";a:7:{s:9:\"variables\";a:7:{s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:14:\"settings_links\";a:0:{}s:10:\"overridden\";b:0;s:9:\"defaulted\";b:0;s:21:\"description_separator\";b:1;s:5:\"class\";a:0:{}}s:8:\"template\";s:28:\"views-ui-display-tab-setting\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:48:\"template_preprocess_views_ui_display_tab_setting\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:27:\"views_ui_display_tab_bucket\";a:7:{s:14:\"render element\";s:7:\"element\";s:8:\"template\";s:27:\"views-ui-display-tab-bucket\";s:4:\"path\";s:29:\"sites/all/modules/views/theme\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:47:\"template_preprocess_views_ui_display_tab_bucket\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:23:\"views_ui_rearrange_form\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:29:\"theme_views_ui_rearrange_form\";}s:30:\"views_ui_rearrange_filter_form\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:18:\"includes/admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:36:\"theme_views_ui_rearrange_filter_form\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/views/includes/admin.inc\";}}s:27:\"views_ui_expose_filter_form\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:18:\"includes/admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:33:\"theme_views_ui_expose_filter_form\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/views/includes/admin.inc\";}}s:18:\"views_ui_view_info\";a:6:{s:9:\"variables\";a:2:{s:4:\"view\";N;s:4:\"base\";N;}s:4:\"file\";s:18:\"includes/admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:24:\"theme_views_ui_view_info\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/views/includes/admin.inc\";}}s:32:\"views_ui_build_group_filter_form\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:18:\"includes/admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:38:\"theme_views_ui_build_group_filter_form\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/views/includes/admin.inc\";}}s:12:\"views_tabset\";a:4:{s:9:\"variables\";a:1:{s:4:\"tabs\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:18:\"theme_views_tabset\";}s:9:\"views_tab\";a:4:{s:9:\"variables\";a:1:{s:4:\"body\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:15:\"theme_views_tab\";}s:30:\"views_ui_reorder_displays_form\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:18:\"includes/admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:36:\"theme_views_ui_reorder_displays_form\";s:8:\"includes\";a:1:{i:0;s:42:\"sites/all/modules/views/includes/admin.inc\";}}s:27:\"views_ui_style_plugin_table\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:33:\"theme_views_ui_style_plugin_table\";}s:29:\"views_ui_view_preview_section\";a:5:{s:9:\"variables\";a:4:{s:4:\"view\";N;s:7:\"section\";N;s:7:\"content\";N;s:5:\"links\";s:0:\"\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:35:\"theme_views_ui_view_preview_section\";s:20:\"preprocess functions\";a:1:{i:0;s:49:\"template_preprocess_views_ui_view_preview_section\";}}s:15:\"views_container\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"file\";s:15:\"theme/theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:23:\"sites/all/modules/views\";s:8:\"function\";s:21:\"theme_views_container\";s:8:\"includes\";a:1:{i:0;s:39:\"sites/all/modules/views/theme/theme.inc\";}}s:21:\"variable_table_select\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"file\";s:17:\"variable.form.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/variable\";s:8:\"function\";s:27:\"theme_variable_table_select\";s:8:\"includes\";a:1:{i:0;s:44:\"sites/all/modules/variable/variable.form.inc\";}}s:12:\"user_picture\";a:6:{s:9:\"variables\";a:1:{s:7:\"account\";N;}s:8:\"template\";s:25:\"modules/user/user-picture\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:32:\"template_preprocess_user_picture\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:12:\"user_profile\";a:8:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:25:\"modules/user/user-profile\";s:4:\"file\";s:14:\"user.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.pages.inc\";}s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:32:\"template_preprocess_user_profile\";i:2;s:21:\"contextual_preprocess\";i:3;s:27:\"rdf_preprocess_user_profile\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:21:\"user_profile_category\";a:8:{s:14:\"render element\";s:7:\"element\";s:8:\"template\";s:34:\"modules/user/user-profile-category\";s:4:\"file\";s:14:\"user.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.pages.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:41:\"template_preprocess_user_profile_category\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:17:\"user_profile_item\";a:8:{s:14:\"render element\";s:7:\"element\";s:8:\"template\";s:30:\"modules/user/user-profile-item\";s:4:\"file\";s:14:\"user.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.pages.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:37:\"template_preprocess_user_profile_item\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:9:\"user_list\";a:4:{s:9:\"variables\";a:2:{s:5:\"users\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:15:\"theme_user_list\";}s:22:\"user_admin_permissions\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:14:\"user.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:28:\"theme_user_admin_permissions\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.admin.inc\";}}s:16:\"user_admin_roles\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:14:\"user.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:22:\"theme_user_admin_roles\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.admin.inc\";}}s:27:\"user_permission_description\";a:6:{s:9:\"variables\";a:2:{s:15:\"permission_item\";N;s:4:\"hide\";N;}s:4:\"file\";s:14:\"user.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:33:\"theme_user_permission_description\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/user/user.admin.inc\";}}s:14:\"user_signature\";a:4:{s:9:\"variables\";a:1:{s:9:\"signature\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/user\";s:8:\"function\";s:20:\"theme_user_signature\";}s:26:\"update_manager_update_form\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:18:\"update.manager.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:32:\"theme_update_manager_update_form\";s:8:\"includes\";a:1:{i:0;s:33:\"modules/update/update.manager.inc\";}}s:17:\"update_last_check\";a:4:{s:9:\"variables\";a:1:{s:4:\"last\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:23:\"theme_update_last_check\";}s:13:\"update_report\";a:6:{s:9:\"variables\";a:1:{s:4:\"data\";N;}s:4:\"file\";s:17:\"update.report.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:19:\"theme_update_report\";s:8:\"includes\";a:1:{i:0;s:32:\"modules/update/update.report.inc\";}}s:14:\"update_version\";a:6:{s:9:\"variables\";a:3:{s:7:\"version\";N;s:3:\"tag\";N;s:5:\"class\";a:0:{}}s:4:\"file\";s:17:\"update.report.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:20:\"theme_update_version\";s:8:\"includes\";a:1:{i:0;s:32:\"modules/update/update.report.inc\";}}s:19:\"update_status_label\";a:6:{s:9:\"variables\";a:1:{s:6:\"status\";N;}s:4:\"file\";s:17:\"update.report.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/update\";s:8:\"function\";s:25:\"theme_update_status_label\";s:8:\"includes\";a:1:{i:0;s:32:\"modules/update/update.report.inc\";}}s:7:\"toolbar\";a:7:{s:14:\"render element\";s:7:\"toolbar\";s:8:\"template\";s:7:\"toolbar\";s:4:\"path\";s:15:\"modules/toolbar\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/toolbar\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";i:2;s:26:\"toolbar_preprocess_toolbar\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:14:\"toolbar_toggle\";a:4:{s:9:\"variables\";a:2:{s:9:\"collapsed\";N;s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/toolbar\";s:8:\"function\";s:20:\"theme_toolbar_toggle\";}s:30:\"taxonomy_overview_vocabularies\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/taxonomy\";s:8:\"function\";s:36:\"theme_taxonomy_overview_vocabularies\";}s:23:\"taxonomy_overview_terms\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/taxonomy\";s:8:\"function\";s:29:\"theme_taxonomy_overview_terms\";}s:13:\"taxonomy_term\";a:6:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:30:\"modules/taxonomy/taxonomy-term\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/taxonomy\";s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:33:\"template_preprocess_taxonomy_term\";i:2;s:21:\"contextual_preprocess\";i:3;s:28:\"rdf_preprocess_taxonomy_term\";}s:17:\"process functions\";a:4:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";i:3;s:27:\"title_process_taxonomy_term\";}}s:4:\"html\";a:6:{s:14:\"render element\";s:4:\"page\";s:8:\"template\";s:19:\"modules/system/html\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"themes/seven\";s:20:\"preprocess functions\";a:8:{i:0;s:19:\"template_preprocess\";i:1;s:24:\"template_preprocess_html\";i:2;s:21:\"contextual_preprocess\";i:3;s:23:\"overlay_preprocess_html\";i:4;s:23:\"toolbar_preprocess_html\";i:5;s:20:\"i18n_preprocess_html\";i:6;s:21:\"views_preprocess_html\";i:7;s:21:\"seven_preprocess_html\";}s:17:\"process functions\";a:4:{i:0;s:16:\"template_process\";i:1;s:21:\"template_process_html\";i:2;s:14:\"ctools_process\";i:3;s:11:\"rdf_process\";}}s:6:\"region\";a:6:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:21:\"modules/system/region\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:26:\"template_preprocess_region\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:15:\"status_messages\";a:4:{s:9:\"variables\";a:1:{s:7:\"display\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:21:\"theme_status_messages\";}s:4:\"link\";a:4:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:4:\"path\";N;s:7:\"options\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_link\";}s:5:\"links\";a:4:{s:9:\"variables\";a:3:{s:5:\"links\";N;s:10:\"attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:5:\"links\";}}s:7:\"heading\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_links\";}s:5:\"image\";a:5:{s:9:\"variables\";a:6:{s:4:\"path\";N;s:5:\"width\";N;s:6:\"height\";N;s:3:\"alt\";s:0:\"\";s:5:\"title\";N;s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_image\";s:20:\"preprocess functions\";a:1:{i:0;s:20:\"rdf_preprocess_image\";}}s:10:\"breadcrumb\";a:4:{s:9:\"variables\";a:1:{s:10:\"breadcrumb\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_breadcrumb\";}s:4:\"help\";a:4:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_help\";}s:5:\"table\";a:4:{s:9:\"variables\";a:7:{s:6:\"header\";N;s:4:\"rows\";N;s:10:\"attributes\";a:0:{}s:7:\"caption\";N;s:9:\"colgroups\";a:0:{}s:6:\"sticky\";b:1;s:5:\"empty\";s:0:\"\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_table\";}s:4:\"mark\";a:4:{s:9:\"variables\";a:1:{s:4:\"type\";i:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_mark\";}s:9:\"item_list\";a:4:{s:9:\"variables\";a:4:{s:5:\"items\";a:0:{}s:5:\"title\";N;s:4:\"type\";s:2:\"ul\";s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_item_list\";}s:14:\"more_help_link\";a:4:{s:9:\"variables\";a:1:{s:3:\"url\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:20:\"theme_more_help_link\";}s:9:\"feed_icon\";a:4:{s:9:\"variables\";a:2:{s:3:\"url\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_feed_icon\";}s:9:\"more_link\";a:4:{s:9:\"variables\";a:2:{s:3:\"url\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_more_link\";}s:8:\"username\";a:6:{s:9:\"variables\";a:1:{s:7:\"account\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_username\";s:20:\"preprocess functions\";a:2:{i:0;s:28:\"template_preprocess_username\";i:1;s:23:\"rdf_preprocess_username\";}s:17:\"process functions\";a:1:{i:0;s:25:\"template_process_username\";}}s:12:\"progress_bar\";a:4:{s:9:\"variables\";a:2:{s:7:\"percent\";N;s:7:\"message\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_progress_bar\";}s:11:\"indentation\";a:4:{s:9:\"variables\";a:1:{s:4:\"size\";i:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_indentation\";}s:8:\"html_tag\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_html_tag\";}s:11:\"update_page\";a:4:{s:9:\"variables\";a:2:{s:7:\"content\";N;s:13:\"show_messages\";b:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_update_page\";}s:12:\"install_page\";a:4:{s:9:\"variables\";a:1:{s:7:\"content\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_install_page\";}s:9:\"task_list\";a:4:{s:9:\"variables\";a:2:{s:5:\"items\";N;s:6:\"active\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_task_list\";}s:17:\"authorize_message\";a:4:{s:9:\"variables\";a:2:{s:7:\"message\";N;s:7:\"success\";b:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:23:\"theme_authorize_message\";}s:16:\"authorize_report\";a:4:{s:9:\"variables\";a:1:{s:8:\"messages\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:22:\"theme_authorize_report\";}s:5:\"pager\";a:4:{s:9:\"variables\";a:4:{s:4:\"tags\";a:0:{}s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}s:8:\"quantity\";i:9;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_pager\";}s:11:\"pager_first\";a:4:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_pager_first\";}s:14:\"pager_previous\";a:4:{s:9:\"variables\";a:4:{s:4:\"text\";N;s:7:\"element\";i:0;s:8:\"interval\";i:1;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:20:\"theme_pager_previous\";}s:10:\"pager_next\";a:4:{s:9:\"variables\";a:4:{s:4:\"text\";N;s:7:\"element\";i:0;s:8:\"interval\";i:1;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_pager_next\";}s:10:\"pager_last\";a:4:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:7:\"element\";i:0;s:10:\"parameters\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_pager_last\";}s:10:\"pager_link\";a:4:{s:9:\"variables\";a:5:{s:4:\"text\";N;s:8:\"page_new\";N;s:7:\"element\";N;s:10:\"parameters\";a:0:{}s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_pager_link\";}s:9:\"menu_link\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_menu_link\";}s:9:\"menu_tree\";a:5:{s:14:\"render element\";s:4:\"tree\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_menu_tree\";s:20:\"preprocess functions\";a:1:{i:0;s:29:\"template_preprocess_menu_tree\";}}s:15:\"menu_local_task\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:21:\"theme_menu_local_task\";}s:17:\"menu_local_action\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:23:\"theme_menu_local_action\";}s:16:\"menu_local_tasks\";a:4:{s:9:\"variables\";a:2:{s:7:\"primary\";a:0:{}s:9:\"secondary\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:22:\"theme_menu_local_tasks\";}s:6:\"select\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_select\";}s:8:\"fieldset\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_fieldset\";}s:5:\"radio\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:11:\"theme_radio\";}s:6:\"radios\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_radios\";}s:4:\"date\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_date\";}s:15:\"exposed_filters\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:21:\"theme_exposed_filters\";}s:8:\"checkbox\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_checkbox\";}s:10:\"checkboxes\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_checkboxes\";}s:6:\"button\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_button\";}s:12:\"image_button\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_image_button\";}s:6:\"hidden\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:12:\"theme_hidden\";}s:9:\"textfield\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_textfield\";}s:4:\"form\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_form\";}s:8:\"textarea\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_textarea\";}s:8:\"password\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:14:\"theme_password\";}s:4:\"file\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:10:\"theme_file\";}s:11:\"tableselect\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_tableselect\";}s:12:\"form_element\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_form_element\";}s:20:\"form_required_marker\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:26:\"theme_form_required_marker\";}s:18:\"form_element_label\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:24:\"theme_form_element_label\";}s:13:\"vertical_tabs\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:19:\"theme_vertical_tabs\";}s:9:\"container\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:15:\"theme_container\";}s:18:\"system_themes_page\";a:6:{s:9:\"variables\";a:1:{s:12:\"theme_groups\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:24:\"theme_system_themes_page\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:20:\"system_settings_form\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:26:\"theme_system_settings_form\";}s:12:\"confirm_form\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:18:\"theme_confirm_form\";}s:23:\"system_modules_fieldset\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:29:\"theme_system_modules_fieldset\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:27:\"system_modules_incompatible\";a:6:{s:9:\"variables\";a:1:{s:7:\"message\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:33:\"theme_system_modules_incompatible\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:24:\"system_modules_uninstall\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:30:\"theme_system_modules_uninstall\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:13:\"status_report\";a:6:{s:14:\"render element\";s:12:\"requirements\";s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:19:\"theme_status_report\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:10:\"admin_page\";a:6:{s:9:\"variables\";a:1:{s:6:\"blocks\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:16:\"theme_admin_page\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:11:\"admin_block\";a:6:{s:9:\"variables\";a:1:{s:5:\"block\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:17:\"theme_admin_block\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:18:\"system_admin_index\";a:6:{s:9:\"variables\";a:1:{s:10:\"menu_items\";N;}s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:24:\"theme_system_admin_index\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:17:\"system_powered_by\";a:4:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:23:\"theme_system_powered_by\";}s:19:\"system_compact_link\";a:4:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:25:\"theme_system_compact_link\";}s:25:\"system_date_time_settings\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:16:\"system.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/system\";s:8:\"function\";s:31:\"theme_system_date_time_settings\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/system/system.admin.inc\";}}s:22:\"shortcut_set_customize\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:18:\"shortcut.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/shortcut\";s:8:\"function\";s:28:\"theme_shortcut_set_customize\";s:8:\"includes\";a:1:{i:0;s:35:\"modules/shortcut/shortcut.admin.inc\";}}s:29:\"rdf_template_variable_wrapper\";a:4:{s:9:\"variables\";a:4:{s:7:\"content\";N;s:10:\"attributes\";a:0:{}s:7:\"context\";a:0:{}s:6:\"inline\";b:1;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:11:\"modules/rdf\";s:8:\"function\";s:35:\"theme_rdf_template_variable_wrapper\";}s:12:\"rdf_metadata\";a:4:{s:9:\"variables\";a:1:{s:8:\"metadata\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:11:\"modules/rdf\";s:8:\"function\";s:18:\"theme_rdf_metadata\";}s:20:\"photos_editlist_form\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:8:\"function\";s:26:\"theme_photos_editlist_form\";}s:20:\"photos_comment_count\";a:4:{s:8:\"function\";s:33:\"photos_theme_photos_comment_count\";s:9:\"variables\";a:2:{s:8:\"comcount\";N;s:3:\"url\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";}s:14:\"photos_default\";a:6:{s:8:\"template\";s:43:\"sites/all/modules/photos/tpl/photos_default\";s:9:\"variables\";a:1:{s:7:\"content\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:11:\"photos_down\";a:6:{s:8:\"template\";s:40:\"sites/all/modules/photos/tpl/photos_down\";s:9:\"variables\";a:2:{s:7:\"content\";N;s:4:\"type\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:12:\"photos_slide\";a:6:{s:8:\"template\";s:41:\"sites/all/modules/photos/tpl/photos_slide\";s:9:\"variables\";a:1:{s:7:\"content\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:16:\"photos_imageview\";a:6:{s:8:\"template\";s:45:\"sites/all/modules/photos/tpl/photos_imageview\";s:9:\"variables\";a:2:{s:5:\"image\";N;s:4:\"type\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:17:\"photos_imageblock\";a:6:{s:8:\"template\";s:46:\"sites/all/modules/photos/tpl/photos_imageblock\";s:9:\"variables\";a:1:{s:5:\"image\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:12:\"photos_block\";a:4:{s:8:\"function\";s:25:\"photos_theme_photos_block\";s:9:\"variables\";a:2:{s:6:\"images\";N;s:4:\"type\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";}s:16:\"photos_albumview\";a:6:{s:8:\"template\";s:45:\"sites/all/modules/photos/tpl/photos_albumview\";s:9:\"variables\";a:2:{s:5:\"album\";N;s:4:\"node\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:16:\"photos_albumlist\";a:6:{s:8:\"template\";s:45:\"sites/all/modules/photos/tpl/photos_albumlist\";s:9:\"variables\";a:1:{s:5:\"image\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:17:\"photos_albumlinks\";a:6:{s:8:\"template\";s:46:\"sites/all/modules/photos/tpl/photos_albumlinks\";s:9:\"variables\";a:1:{s:5:\"links\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:16:\"photos_imagehtml\";a:6:{s:8:\"template\";s:45:\"sites/all/modules/photos/tpl/photos_imagehtml\";s:9:\"variables\";a:2:{s:5:\"image\";N;s:10:\"style_name\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";i:2;s:34:\"photos_preprocess_photos_imagehtml\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:11:\"photos_exif\";a:6:{s:8:\"template\";s:40:\"sites/all/modules/photos/tpl/photos_exif\";s:9:\"variables\";a:2:{s:4:\"exif\";N;s:4:\"type\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:12:\"photos_print\";a:6:{s:8:\"template\";s:41:\"sites/all/modules/photos/tpl/photos_print\";s:9:\"variables\";a:2:{s:7:\"content\";N;s:4:\"type\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:12:\"photos_share\";a:6:{s:8:\"template\";s:41:\"sites/all/modules/photos/tpl/photos_share\";s:9:\"variables\";a:2:{s:6:\"images\";N;s:4:\"type\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:11:\"photos_vote\";a:6:{s:8:\"template\";s:40:\"sites/all/modules/photos/tpl/photos_vote\";s:9:\"variables\";a:1:{s:3:\"fid\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/photos\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";i:2;s:29:\"photos_preprocess_photos_vote\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:7:\"overlay\";a:6:{s:14:\"render element\";s:4:\"page\";s:8:\"template\";s:23:\"modules/overlay/overlay\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/overlay\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:27:\"template_preprocess_overlay\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:4:{i:0;s:16:\"template_process\";i:1;s:24:\"template_process_overlay\";i:2;s:14:\"ctools_process\";i:3;s:11:\"rdf_process\";}}s:23:\"overlay_disable_message\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/overlay\";s:8:\"function\";s:29:\"theme_overlay_disable_message\";}s:12:\"options_none\";a:4:{s:9:\"variables\";a:2:{s:8:\"instance\";N;s:6:\"option\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:29:\"modules/field/modules/options\";s:8:\"function\";s:18:\"theme_options_none\";}s:4:\"node\";a:6:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:17:\"modules/node/node\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:20:\"preprocess functions\";a:7:{i:0;s:19:\"template_preprocess\";i:1;s:24:\"template_preprocess_node\";i:2;s:21:\"contextual_preprocess\";i:3;s:22:\"ctools_preprocess_node\";i:4;s:19:\"rdf_preprocess_node\";i:5;s:21:\"views_preprocess_node\";i:6;s:34:\"entity_translation_preprocess_node\";}s:17:\"process functions\";a:4:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";i:3;s:18:\"title_process_node\";}}s:17:\"node_search_admin\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:23:\"theme_node_search_admin\";}s:12:\"node_preview\";a:6:{s:9:\"variables\";a:1:{s:4:\"node\";N;}s:4:\"file\";s:14:\"node.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:18:\"theme_node_preview\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/node/node.pages.inc\";}}s:19:\"node_admin_overview\";a:6:{s:9:\"variables\";a:2:{s:4:\"name\";N;s:4:\"type\";N;}s:4:\"file\";s:17:\"content_types.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:25:\"theme_node_admin_overview\";s:8:\"includes\";a:1:{i:0;s:30:\"modules/node/content_types.inc\";}}s:17:\"node_recent_block\";a:4:{s:9:\"variables\";a:1:{s:5:\"nodes\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:23:\"theme_node_recent_block\";}s:19:\"node_recent_content\";a:4:{s:9:\"variables\";a:1:{s:4:\"node\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/node\";s:8:\"function\";s:25:\"theme_node_recent_content\";}s:18:\"menu_overview_form\";a:6:{s:4:\"file\";s:14:\"menu.admin.inc\";s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/menu\";s:8:\"function\";s:24:\"theme_menu_overview_form\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/menu/menu.admin.inc\";}}s:19:\"menu_admin_overview\";a:7:{s:4:\"file\";s:14:\"menu.admin.inc\";s:9:\"variables\";a:3:{s:5:\"title\";N;s:4:\"name\";N;s:11:\"description\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/menu\";s:8:\"function\";s:25:\"theme_menu_admin_overview\";s:8:\"includes\";a:1:{i:0;s:27:\"modules/menu/menu.admin.inc\";}s:20:\"preprocess functions\";a:1:{i:0;s:40:\"i18n_menu_preprocess_menu_admin_overview\";}}s:22:\"location_cck_field_all\";a:4:{s:9:\"variables\";a:4:{s:8:\"location\";N;s:4:\"hide\";a:0:{}s:5:\"field\";N;s:8:\"instance\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:47:\"sites/all/modules/location/contrib/location_cck\";s:8:\"function\";s:28:\"theme_location_cck_field_all\";}s:22:\"location_cck_field_map\";a:4:{s:9:\"variables\";a:3:{s:9:\"locations\";N;s:5:\"field\";N;s:8:\"instance\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:47:\"sites/all/modules/location/contrib/location_cck\";s:8:\"function\";s:28:\"theme_location_cck_field_map\";}s:24:\"location_cck_field_popup\";a:4:{s:9:\"variables\";a:2:{s:8:\"location\";N;s:8:\"instance\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:47:\"sites/all/modules/location/contrib/location_cck\";s:8:\"function\";s:30:\"theme_location_cck_field_popup\";}s:17:\"location_settings\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/location\";s:8:\"function\";s:23:\"theme_location_settings\";}s:9:\"locations\";a:6:{s:8:\"template\";s:36:\"sites/all/modules/location/locations\";s:9:\"variables\";a:2:{s:9:\"locations\";N;s:4:\"hide\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/location\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:29:\"template_preprocess_locations\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:8:\"location\";a:6:{s:8:\"template\";s:35:\"sites/all/modules/location/location\";s:9:\"variables\";a:2:{s:8:\"location\";N;s:4:\"hide\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/location\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:28:\"template_preprocess_location\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:21:\"location_latitude_dms\";a:4:{s:9:\"variables\";a:1:{i:0;s:8:\"latitude\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/location\";s:8:\"function\";s:27:\"theme_location_latitude_dms\";}s:22:\"location_longitude_dms\";a:4:{s:9:\"variables\";a:1:{i:0;s:9:\"longitude\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/location\";s:8:\"function\";s:28:\"theme_location_longitude_dms\";}s:25:\"location_map_link_options\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:18:\"location.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/location\";s:8:\"function\";s:31:\"theme_location_map_link_options\";s:8:\"includes\";a:1:{i:0;s:45:\"sites/all/modules/location/location.admin.inc\";}}s:26:\"location_geocoding_options\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:18:\"location.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/location\";s:8:\"function\";s:32:\"theme_location_geocoding_options\";s:8:\"includes\";a:1:{i:0;s:45:\"sites/all/modules/location/location.admin.inc\";}}s:16:\"location_element\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/location\";s:8:\"function\";s:22:\"theme_location_element\";}s:17:\"location_distance\";a:6:{s:8:\"template\";s:44:\"sites/all/modules/location/location_distance\";s:9:\"variables\";a:2:{s:8:\"distance\";i:0;s:5:\"units\";s:2:\"km\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/location\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:37:\"template_preprocess_location_distance\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:30:\"locale_languages_overview_form\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/locale\";s:8:\"function\";s:36:\"theme_locale_languages_overview_form\";}s:31:\"locale_languages_configure_form\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/locale\";s:8:\"function\";s:37:\"theme_locale_languages_configure_form\";}s:23:\"locale_date_format_form\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/locale\";s:8:\"function\";s:29:\"theme_locale_date_format_form\";}s:26:\"libraries_table_with_title\";a:7:{s:9:\"variables\";a:9:{s:6:\"header\";N;s:4:\"rows\";N;s:10:\"attributes\";a:0:{}s:7:\"caption\";N;s:9:\"colgroups\";a:0:{}s:6:\"sticky\";b:1;s:5:\"empty\";s:0:\"\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";}s:4:\"file\";s:19:\"libraries.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:27:\"sites/all/modules/libraries\";s:8:\"function\";s:32:\"theme_libraries_table_with_title\";s:8:\"includes\";a:1:{i:0;s:47:\"sites/all/modules/libraries/libraries.theme.inc\";}s:20:\"preprocess functions\";a:1:{i:0;s:46:\"template_preprocess_libraries_table_with_title\";}}s:18:\"languageicons_icon\";a:4:{s:9:\"variables\";a:2:{s:8:\"language\";N;s:5:\"title\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:31:\"sites/all/modules/languageicons\";s:8:\"function\";s:24:\"theme_languageicons_icon\";}s:19:\"languageicons_place\";a:4:{s:9:\"variables\";a:3:{s:4:\"text\";N;s:4:\"icon\";N;s:9:\"separator\";s:1:\" \";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:31:\"sites/all/modules/languageicons\";s:8:\"function\";s:25:\"theme_languageicons_place\";}s:26:\"l10n_update_project_status\";a:6:{s:9:\"variables\";a:5:{s:8:\"projects\";N;s:9:\"languages\";N;s:7:\"history\";N;s:9:\"available\";N;s:7:\"updates\";N;}s:4:\"file\";s:21:\"l10n_update.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:29:\"sites/all/modules/l10n_update\";s:8:\"function\";s:32:\"theme_l10n_update_project_status\";s:8:\"includes\";a:1:{i:0;s:51:\"sites/all/modules/l10n_update/l10n_update.admin.inc\";}}s:34:\"l10n_update_single_project_wrapper\";a:6:{s:7:\"project\";a:5:{s:7:\"project\";N;s:14:\"project_status\";N;s:9:\"languages\";N;s:7:\"history\";N;s:7:\"updates\";N;}s:4:\"file\";s:21:\"l10n_update.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:29:\"sites/all/modules/l10n_update\";s:8:\"function\";s:40:\"theme_l10n_update_single_project_wrapper\";s:8:\"includes\";a:1:{i:0;s:51:\"sites/all/modules/l10n_update/l10n_update.admin.inc\";}}s:33:\"l10n_update_single_project_status\";a:6:{s:9:\"variables\";a:3:{s:7:\"project\";N;s:6:\"server\";N;s:6:\"status\";N;}s:4:\"file\";s:21:\"l10n_update.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:29:\"sites/all/modules/l10n_update\";s:8:\"function\";s:39:\"theme_l10n_update_single_project_status\";s:8:\"includes\";a:1:{i:0;s:51:\"sites/all/modules/l10n_update/l10n_update.admin.inc\";}}s:27:\"l10n_update_current_release\";a:6:{s:9:\"variables\";a:3:{s:8:\"language\";N;s:7:\"release\";N;s:6:\"status\";N;}s:4:\"file\";s:21:\"l10n_update.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:29:\"sites/all/modules/l10n_update\";s:8:\"function\";s:33:\"theme_l10n_update_current_release\";s:8:\"includes\";a:1:{i:0;s:51:\"sites/all/modules/l10n_update/l10n_update.admin.inc\";}}s:29:\"l10n_update_available_release\";a:6:{s:9:\"variables\";a:1:{s:7:\"release\";N;}s:4:\"file\";s:21:\"l10n_update.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:29:\"sites/all/modules/l10n_update\";s:8:\"function\";s:35:\"theme_l10n_update_available_release\";s:8:\"includes\";a:1:{i:0;s:51:\"sites/all/modules/l10n_update/l10n_update.admin.inc\";}}s:26:\"l10n_update_version_status\";a:6:{s:9:\"variables\";a:2:{s:6:\"status\";N;s:4:\"type\";N;}s:4:\"file\";s:21:\"l10n_update.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:29:\"sites/all/modules/l10n_update\";s:8:\"function\";s:32:\"theme_l10n_update_version_status\";s:8:\"includes\";a:1:{i:0;s:51:\"sites/all/modules/l10n_update/l10n_update.admin.inc\";}}s:10:\"imce_admin\";a:4:{s:8:\"function\";s:16:\"imce_admin_theme\";s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/imce\";}s:16:\"imce_directories\";a:4:{s:8:\"function\";s:22:\"imce_directories_theme\";s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/imce\";}s:15:\"imce_thumbnails\";a:4:{s:8:\"function\";s:21:\"imce_thumbnails_theme\";s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/imce\";}s:14:\"imce_root_text\";a:4:{s:9:\"variables\";a:1:{s:8:\"imce_ref\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/imce\";s:8:\"function\";s:20:\"theme_imce_root_text\";}s:14:\"imce_user_page\";a:4:{s:9:\"variables\";a:1:{s:7:\"account\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/imce\";s:8:\"function\";s:20:\"theme_imce_user_page\";}s:14:\"imce_file_list\";a:7:{s:8:\"template\";s:14:\"imce-file-list\";s:9:\"variables\";a:1:{s:8:\"imce_ref\";N;}s:4:\"path\";s:26:\"sites/all/modules/imce/tpl\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/imce\";s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:12:\"imce_content\";a:7:{s:8:\"template\";s:12:\"imce-content\";s:9:\"variables\";a:3:{s:4:\"tree\";N;s:5:\"forms\";N;s:8:\"imce_ref\";N;}s:4:\"path\";s:26:\"sites/all/modules/imce/tpl\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/imce\";s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:9:\"imce_page\";a:7:{s:8:\"template\";s:9:\"imce-page\";s:9:\"variables\";a:1:{s:7:\"content\";N;}s:4:\"path\";s:26:\"sites/all/modules/imce/tpl\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/imce\";s:20:\"preprocess functions\";a:2:{i:0;s:19:\"template_preprocess\";i:1;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:11:\"image_style\";a:4:{s:9:\"variables\";a:7:{s:10:\"style_name\";N;s:4:\"path\";N;s:5:\"width\";N;s:6:\"height\";N;s:3:\"alt\";s:0:\"\";s:5:\"title\";N;s:10:\"attributes\";a:0:{}}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:17:\"theme_image_style\";}s:16:\"image_style_list\";a:4:{s:9:\"variables\";a:1:{s:6:\"styles\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:22:\"theme_image_style_list\";}s:19:\"image_style_effects\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:25:\"theme_image_style_effects\";}s:19:\"image_style_preview\";a:4:{s:9:\"variables\";a:1:{s:5:\"style\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:25:\"theme_image_style_preview\";}s:12:\"image_anchor\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:18:\"theme_image_anchor\";}s:20:\"image_resize_summary\";a:4:{s:9:\"variables\";a:1:{s:4:\"data\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:26:\"theme_image_resize_summary\";}s:19:\"image_scale_summary\";a:4:{s:9:\"variables\";a:1:{s:4:\"data\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:25:\"theme_image_scale_summary\";}s:18:\"image_crop_summary\";a:4:{s:9:\"variables\";a:1:{s:4:\"data\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:24:\"theme_image_crop_summary\";}s:20:\"image_rotate_summary\";a:4:{s:9:\"variables\";a:1:{s:4:\"data\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:26:\"theme_image_rotate_summary\";}s:12:\"image_widget\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:18:\"theme_image_widget\";}s:15:\"image_formatter\";a:4:{s:9:\"variables\";a:3:{s:4:\"item\";N;s:4:\"path\";N;s:11:\"image_style\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/image\";s:8:\"function\";s:21:\"theme_image_formatter\";}s:28:\"i18n_node_select_translation\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"file\";s:19:\"i18n_node.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:32:\"sites/all/modules/i18n/i18n_node\";s:8:\"function\";s:34:\"theme_i18n_node_select_translation\";s:8:\"includes\";a:1:{i:0;s:52:\"sites/all/modules/i18n/i18n_node/i18n_node.pages.inc\";}}s:23:\"gmap_location_user_page\";a:4:{s:9:\"variables\";a:3:{s:6:\"header\";s:0:\"\";s:3:\"map\";s:0:\"\";s:6:\"footer\";s:0:\"\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/gmap\";s:8:\"function\";s:29:\"theme_gmap_location_user_page\";}s:23:\"gmap_location_node_page\";a:4:{s:9:\"variables\";a:4:{s:5:\"count\";i:0;s:6:\"header\";s:0:\"\";s:3:\"map\";s:0:\"\";s:6:\"footer\";s:0:\"\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/gmap\";s:8:\"function\";s:29:\"theme_gmap_location_node_page\";}s:29:\"gmap_location_infowindow_node\";a:5:{s:7:\"pattern\";s:31:\"gmap_location_infowindow_node__\";s:9:\"variables\";a:2:{s:4:\"node\";N;s:3:\"opt\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/gmap\";s:8:\"function\";s:35:\"theme_gmap_location_infowindow_node\";}s:29:\"gmap_location_infowindow_user\";a:4:{s:9:\"variables\";a:1:{s:7:\"account\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/gmap\";s:8:\"function\";s:35:\"theme_gmap_location_infowindow_user\";}s:26:\"gmap_views_ui_gmapextended\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/gmap\";s:8:\"function\";s:32:\"theme_gmap_views_ui_gmapextended\";}s:15:\"views_view_gmap\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/gmap\";s:8:\"function\";s:21:\"theme_views_view_gmap\";}s:23:\"gmap_views_marker_label\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/gmap\";s:8:\"function\";s:29:\"theme_gmap_views_marker_label\";}s:17:\"gmap_marker_popup\";a:4:{s:9:\"variables\";a:1:{s:5:\"label\";s:0:\"\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/gmap\";s:8:\"function\";s:23:\"theme_gmap_marker_popup\";}s:14:\"gmap_dimension\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/gmap\";s:8:\"function\";s:20:\"theme_gmap_dimension\";}s:4:\"gmap\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:22:\"sites/all/modules/gmap\";s:8:\"function\";s:10:\"theme_gmap\";}s:15:\"geofield_latlon\";a:5:{s:9:\"arguments\";a:1:{s:7:\"element\";N;}s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/geofield\";s:8:\"function\";s:21:\"theme_geofield_latlon\";}s:18:\"geofield_proximity\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:26:\"sites/all/modules/geofield\";s:8:\"function\";s:24:\"theme_geofield_proximity\";}s:21:\"filter_admin_overview\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:16:\"filter.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:27:\"theme_filter_admin_overview\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/filter/filter.admin.inc\";}}s:32:\"filter_admin_format_filter_order\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"file\";s:16:\"filter.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:38:\"theme_filter_admin_format_filter_order\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/filter/filter.admin.inc\";}}s:11:\"filter_tips\";a:6:{s:9:\"variables\";a:2:{s:4:\"tips\";N;s:4:\"long\";b:0;}s:4:\"file\";s:16:\"filter.pages.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:17:\"theme_filter_tips\";s:8:\"includes\";a:1:{i:0;s:31:\"modules/filter/filter.pages.inc\";}}s:19:\"text_format_wrapper\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:25:\"theme_text_format_wrapper\";}s:21:\"filter_tips_more_info\";a:4:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:27:\"theme_filter_tips_more_info\";}s:17:\"filter_guidelines\";a:4:{s:9:\"variables\";a:1:{s:6:\"format\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:14:\"modules/filter\";s:8:\"function\";s:23:\"theme_filter_guidelines\";}s:9:\"file_link\";a:4:{s:9:\"variables\";a:2:{s:4:\"file\";N;s:14:\"icon_directory\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:15:\"theme_file_link\";}s:9:\"file_icon\";a:4:{s:9:\"variables\";a:3:{s:4:\"file\";N;s:14:\"icon_directory\";N;s:3:\"alt\";s:0:\"\";}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:15:\"theme_file_icon\";}s:17:\"file_managed_file\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:23:\"theme_file_managed_file\";}s:11:\"file_widget\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:17:\"theme_file_widget\";}s:20:\"file_widget_multiple\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:26:\"theme_file_widget_multiple\";}s:20:\"file_formatter_table\";a:4:{s:9:\"variables\";a:1:{s:5:\"items\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:26:\"theme_file_formatter_table\";}s:16:\"file_upload_help\";a:4:{s:9:\"variables\";a:2:{s:11:\"description\";N;s:17:\"upload_validators\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:12:\"modules/file\";s:8:\"function\";s:22:\"theme_file_upload_help\";}s:14:\"field_ui_table\";a:4:{s:14:\"render element\";s:8:\"elements\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:16:\"modules/field_ui\";s:8:\"function\";s:20:\"theme_field_ui_table\";}s:5:\"field\";a:6:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/field\";s:8:\"function\";s:11:\"theme_field\";s:20:\"preprocess functions\";a:2:{i:0;s:25:\"template_preprocess_field\";i:1;s:20:\"rdf_preprocess_field\";}s:17:\"process functions\";a:1:{i:0;s:22:\"template_process_field\";}}s:25:\"field_multiple_value_form\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/field\";s:8:\"function\";s:31:\"theme_field_multiple_value_form\";}s:13:\"entity_status\";a:6:{s:9:\"variables\";a:2:{s:6:\"status\";N;s:4:\"html\";b:1;}s:4:\"file\";s:22:\"theme/entity.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/entity\";s:8:\"function\";s:19:\"theme_entity_status\";s:8:\"includes\";a:1:{i:0;s:47:\"sites/all/modules/entity/theme/entity.theme.inc\";}}s:6:\"entity\";a:10:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:6:\"entity\";s:7:\"pattern\";s:9:\"()(\\.|__)\";s:4:\"path\";s:30:\"sites/all/modules/entity/theme\";s:4:\"file\";s:16:\"entity.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/entity\";s:8:\"includes\";a:1:{i:0;s:47:\"sites/all/modules/entity/theme/entity.theme.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:26:\"template_preprocess_entity\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:15:\"entity_property\";a:8:{s:14:\"render element\";s:8:\"elements\";s:4:\"file\";s:22:\"theme/entity.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/entity\";s:8:\"function\";s:21:\"theme_entity_property\";s:8:\"includes\";a:1:{i:0;s:47:\"sites/all/modules/entity/theme/entity.theme.inc\";}s:20:\"preprocess functions\";a:1:{i:0;s:35:\"template_preprocess_entity_property\";}s:17:\"process functions\";a:1:{i:0;s:32:\"template_process_entity_property\";}}s:23:\"entity_ui_overview_item\";a:6:{s:9:\"variables\";a:4:{s:5:\"label\";N;s:11:\"entity_type\";N;s:3:\"url\";b:0;s:4:\"name\";b:0;}s:4:\"file\";s:22:\"includes/entity.ui.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/entity\";s:8:\"function\";s:29:\"theme_entity_ui_overview_item\";s:8:\"includes\";a:1:{i:0;s:47:\"sites/all/modules/entity/includes/entity.ui.inc\";}}s:13:\"dblog_message\";a:6:{s:9:\"variables\";a:2:{s:5:\"event\";N;s:4:\"link\";b:0;}s:4:\"file\";s:15:\"dblog.admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/dblog\";s:8:\"function\";s:19:\"theme_dblog_message\";s:8:\"includes\";a:1:{i:0;s:29:\"modules/dblog/dblog.admin.inc\";}}s:9:\"dashboard\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:15:\"theme_dashboard\";}s:15:\"dashboard_admin\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:21:\"theme_dashboard_admin\";}s:16:\"dashboard_region\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:22:\"theme_dashboard_region\";}s:25:\"dashboard_disabled_blocks\";a:4:{s:9:\"variables\";a:1:{s:6:\"blocks\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:31:\"theme_dashboard_disabled_blocks\";}s:24:\"dashboard_disabled_block\";a:4:{s:9:\"variables\";a:1:{s:5:\"block\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"function\";s:30:\"theme_dashboard_disabled_block\";}s:28:\"dashboard_admin_display_form\";a:9:{s:8:\"template\";s:24:\"block-admin-display-form\";s:4:\"path\";s:13:\"modules/block\";s:4:\"file\";s:15:\"block.admin.inc\";s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:17:\"modules/dashboard\";s:8:\"includes\";a:1:{i:0;s:29:\"modules/block/block.admin.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:48:\"template_preprocess_dashboard_admin_display_form\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:33:\"ctools_menu_local_actions_wrapper\";a:6:{s:14:\"render element\";s:5:\"links\";s:4:\"file\";s:31:\"includes/action-links.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/ctools\";s:8:\"function\";s:39:\"theme_ctools_menu_local_actions_wrapper\";s:8:\"includes\";a:1:{i:0;s:56:\"sites/all/modules/ctools/includes/action-links.theme.inc\";}}s:15:\"ctools_dropdown\";a:6:{s:9:\"variables\";a:4:{s:5:\"title\";N;s:5:\"links\";N;s:5:\"image\";b:0;s:5:\"class\";s:0:\"\";}s:4:\"file\";s:27:\"includes/dropdown.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/ctools\";s:8:\"function\";s:21:\"theme_ctools_dropdown\";s:8:\"includes\";a:1:{i:0;s:52:\"sites/all/modules/ctools/includes/dropdown.theme.inc\";}}s:18:\"ctools_collapsible\";a:6:{s:9:\"variables\";a:3:{s:6:\"handle\";N;s:7:\"content\";N;s:9:\"collapsed\";b:0;}s:4:\"file\";s:30:\"includes/collapsible.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/ctools\";s:8:\"function\";s:24:\"theme_ctools_collapsible\";s:8:\"includes\";a:1:{i:0;s:55:\"sites/all/modules/ctools/includes/collapsible.theme.inc\";}}s:29:\"ctools_collapsible_remembered\";a:6:{s:9:\"variables\";a:4:{s:2:\"id\";N;s:6:\"handle\";N;s:7:\"content\";N;s:9:\"collapsed\";b:0;}s:4:\"file\";s:30:\"includes/collapsible.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/ctools\";s:8:\"function\";s:35:\"theme_ctools_collapsible_remembered\";s:8:\"includes\";a:1:{i:0;s:55:\"sites/all/modules/ctools/includes/collapsible.theme.inc\";}}s:19:\"ctools_wizard_trail\";a:6:{s:9:\"variables\";a:3:{s:5:\"trail\";N;s:9:\"form_info\";N;s:7:\"divider\";s:4:\" » \";}s:4:\"file\";s:25:\"includes/wizard.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/ctools\";s:8:\"function\";s:25:\"theme_ctools_wizard_trail\";s:8:\"includes\";a:1:{i:0;s:50:\"sites/all/modules/ctools/includes/wizard.theme.inc\";}}s:33:\"ctools_stylizer_color_scheme_form\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:21:\"includes/stylizer.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/ctools\";s:8:\"function\";s:39:\"theme_ctools_stylizer_color_scheme_form\";s:8:\"includes\";a:1:{i:0;s:46:\"sites/all/modules/ctools/includes/stylizer.inc\";}}s:28:\"ctools_stylizer_preview_form\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:21:\"includes/stylizer.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/ctools\";s:8:\"function\";s:34:\"theme_ctools_stylizer_preview_form\";s:8:\"includes\";a:1:{i:0;s:46:\"sites/all/modules/ctools/includes/stylizer.inc\";}}s:17:\"ctools_style_icon\";a:6:{s:9:\"variables\";a:2:{s:5:\"image\";N;s:5:\"title\";N;}s:4:\"file\";s:21:\"includes/stylizer.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/ctools\";s:8:\"function\";s:23:\"theme_ctools_style_icon\";s:8:\"includes\";a:1:{i:0;s:46:\"sites/all/modules/ctools/includes/stylizer.inc\";}}s:24:\"links__ctools_dropbutton\";a:6:{s:9:\"variables\";a:4:{s:5:\"title\";N;s:5:\"links\";N;s:5:\"image\";b:0;s:5:\"class\";N;}s:4:\"file\";s:29:\"includes/dropbutton.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/ctools\";s:8:\"function\";s:30:\"theme_links__ctools_dropbutton\";s:8:\"includes\";a:1:{i:0;s:54:\"sites/all/modules/ctools/includes/dropbutton.theme.inc\";}}s:19:\"ctools_context_list\";a:6:{s:9:\"variables\";a:1:{s:6:\"object\";N;}s:4:\"file\";s:26:\"includes/context.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/ctools\";s:8:\"function\";s:25:\"theme_ctools_context_list\";s:8:\"includes\";a:1:{i:0;s:51:\"sites/all/modules/ctools/includes/context.theme.inc\";}}s:28:\"ctools_context_list_no_table\";a:6:{s:9:\"variables\";a:1:{s:6:\"object\";N;}s:4:\"file\";s:26:\"includes/context.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/ctools\";s:8:\"function\";s:34:\"theme_ctools_context_list_no_table\";s:8:\"includes\";a:1:{i:0;s:51:\"sites/all/modules/ctools/includes/context.theme.inc\";}}s:24:\"ctools_context_item_form\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:26:\"includes/context.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/ctools\";s:8:\"function\";s:30:\"theme_ctools_context_item_form\";s:8:\"includes\";a:1:{i:0;s:51:\"sites/all/modules/ctools/includes/context.theme.inc\";}}s:23:\"ctools_context_item_row\";a:6:{s:9:\"variables\";a:5:{s:4:\"type\";N;s:4:\"form\";N;s:8:\"position\";N;s:5:\"count\";N;s:7:\"with_tr\";b:1;}s:4:\"file\";s:26:\"includes/context.theme.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/ctools\";s:8:\"function\";s:29:\"theme_ctools_context_item_row\";s:8:\"includes\";a:1:{i:0;s:51:\"sites/all/modules/ctools/includes/context.theme.inc\";}}s:23:\"ctools_access_admin_add\";a:6:{s:14:\"render element\";s:4:\"form\";s:4:\"file\";s:33:\"includes/context-access-admin.inc\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:24:\"sites/all/modules/ctools\";s:8:\"function\";s:29:\"theme_ctools_access_admin_add\";s:8:\"includes\";a:1:{i:0;s:58:\"sites/all/modules/ctools/includes/context-access-admin.inc\";}}s:13:\"comment_block\";a:4:{s:9:\"variables\";a:0:{}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:8:\"function\";s:19:\"theme_comment_block\";}s:15:\"comment_preview\";a:4:{s:9:\"variables\";a:1:{s:7:\"comment\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:8:\"function\";s:21:\"theme_comment_preview\";}s:7:\"comment\";a:6:{s:8:\"template\";s:23:\"modules/comment/comment\";s:14:\"render element\";s:8:\"elements\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:20:\"preprocess functions\";a:5:{i:0;s:19:\"template_preprocess\";i:1;s:27:\"template_preprocess_comment\";i:2;s:21:\"contextual_preprocess\";i:3;s:22:\"rdf_preprocess_comment\";i:4;s:24:\"views_preprocess_comment\";}s:17:\"process functions\";a:4:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";i:3;s:21:\"title_process_comment\";}}s:22:\"comment_post_forbidden\";a:4:{s:9:\"variables\";a:1:{s:4:\"node\";N;}s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:8:\"function\";s:28:\"theme_comment_post_forbidden\";}s:15:\"comment_wrapper\";a:6:{s:8:\"template\";s:31:\"modules/comment/comment-wrapper\";s:14:\"render element\";s:7:\"content\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:15:\"modules/comment\";s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:35:\"template_preprocess_comment_wrapper\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:17:\"color_scheme_form\";a:4:{s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/color\";s:8:\"function\";s:23:\"theme_color_scheme_form\";}s:22:\"addressfield_container\";a:4:{s:14:\"render element\";s:7:\"element\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:30:\"sites/all/modules/addressfield\";s:8:\"function\";s:28:\"theme_addressfield_container\";}s:5:\"block\";a:6:{s:14:\"render element\";s:8:\"elements\";s:8:\"template\";s:19:\"modules/block/block\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/block\";s:20:\"preprocess functions\";a:4:{i:0;s:19:\"template_preprocess\";i:1;s:25:\"template_preprocess_block\";i:2;s:21:\"contextual_preprocess\";i:3;s:23:\"system_preprocess_block\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}s:24:\"block_admin_display_form\";a:8:{s:8:\"template\";s:38:\"modules/block/block-admin-display-form\";s:4:\"file\";s:15:\"block.admin.inc\";s:14:\"render element\";s:4:\"form\";s:4:\"type\";s:6:\"module\";s:10:\"theme path\";s:13:\"modules/block\";s:8:\"includes\";a:1:{i:0;s:29:\"modules/block/block.admin.inc\";}s:20:\"preprocess functions\";a:3:{i:0;s:19:\"template_preprocess\";i:1;s:44:\"template_preprocess_block_admin_display_form\";i:2;s:21:\"contextual_preprocess\";}s:17:\"process functions\";a:3:{i:0;s:16:\"template_process\";i:1;s:14:\"ctools_process\";i:2;s:11:\"rdf_process\";}}}',0,1538750670,1),('views:plugin_data:en','a:12:{s:7:\"display\";a:6:{s:7:\"default\";a:20:{s:5:\"title\";s:6:\"Master\";s:4:\"help\";s:31:\"Default settings for this view.\";s:7:\"handler\";s:28:\"views_plugin_display_default\";s:5:\"theme\";s:10:\"views_view\";s:5:\"no ui\";b:1;s:9:\"no remove\";b:1;s:2:\"js\";a:6:{i:0;s:12:\"misc/form.js\";i:1;s:16:\"misc/collapse.js\";i:2;s:16:\"misc/textarea.js\";i:3;s:17:\"misc/tabledrag.js\";i:4;s:20:\"misc/autocomplete.js\";i:5;s:40:\"sites/all/modules/ctools/js/dependent.js\";}s:8:\"use ajax\";b:1;s:9:\"use pager\";b:1;s:8:\"use more\";b:1;s:18:\"accept attachments\";b:1;s:10:\"help topic\";s:15:\"display-default\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:32:\"views_plugin_display_default.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:7:\"default\";s:16:\"contextual links\";a:1:{s:8:\"views_ui\";a:2:{s:11:\"parent path\";s:26:\"admin/structure/views/view\";s:19:\"argument properties\";a:1:{i:0;s:4:\"name\";}}}}s:4:\"page\";a:20:{s:5:\"title\";s:4:\"Page\";s:4:\"help\";s:54:\"Display the view as a page, with a URL and menu links.\";s:7:\"handler\";s:25:\"views_plugin_display_page\";s:5:\"theme\";s:10:\"views_view\";s:14:\"uses hook menu\";b:1;s:26:\"contextual links locations\";a:1:{i:0;s:4:\"page\";}s:8:\"use ajax\";b:1;s:9:\"use pager\";b:1;s:8:\"use more\";b:1;s:18:\"accept attachments\";b:1;s:5:\"admin\";s:4:\"Page\";s:10:\"help topic\";s:12:\"display-page\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:29:\"views_plugin_display_page.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"page\";s:16:\"contextual links\";a:1:{s:8:\"views_ui\";a:2:{s:11:\"parent path\";s:26:\"admin/structure/views/view\";s:19:\"argument properties\";a:1:{i:0;s:4:\"name\";}}}}s:5:\"block\";a:20:{s:5:\"title\";s:5:\"Block\";s:4:\"help\";s:28:\"Display the view as a block.\";s:7:\"handler\";s:26:\"views_plugin_display_block\";s:5:\"theme\";s:10:\"views_view\";s:15:\"uses hook block\";b:1;s:26:\"contextual links locations\";a:1:{i:0;s:5:\"block\";}s:8:\"use ajax\";b:1;s:9:\"use pager\";b:1;s:8:\"use more\";b:1;s:18:\"accept attachments\";b:1;s:5:\"admin\";s:5:\"Block\";s:10:\"help topic\";s:13:\"display-block\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:30:\"views_plugin_display_block.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:5:\"block\";s:16:\"contextual links\";a:1:{s:8:\"views_ui\";a:2:{s:11:\"parent path\";s:26:\"admin/structure/views/view\";s:19:\"argument properties\";a:1:{i:0;s:4:\"name\";}}}}s:10:\"attachment\";a:18:{s:5:\"title\";s:10:\"Attachment\";s:4:\"help\";s:79:\"Attachments added to other displays to achieve multiple views in the same view.\";s:7:\"handler\";s:31:\"views_plugin_display_attachment\";s:5:\"theme\";s:10:\"views_view\";s:26:\"contextual links locations\";a:0:{}s:8:\"use ajax\";b:1;s:9:\"use pager\";b:0;s:8:\"use more\";b:1;s:18:\"accept attachments\";b:0;s:10:\"help topic\";s:18:\"display-attachment\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:35:\"views_plugin_display_attachment.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:10:\"attachment\";s:16:\"contextual links\";a:1:{s:8:\"views_ui\";a:2:{s:11:\"parent path\";s:26:\"admin/structure/views/view\";s:19:\"argument properties\";a:1:{i:0;s:4:\"name\";}}}}s:4:\"feed\";a:17:{s:5:\"title\";s:4:\"Feed\";s:4:\"help\";s:48:\"Display the view as a feed, such as an RSS feed.\";s:7:\"handler\";s:25:\"views_plugin_display_feed\";s:14:\"uses hook menu\";b:1;s:8:\"use ajax\";b:0;s:9:\"use pager\";b:0;s:18:\"accept attachments\";b:0;s:5:\"admin\";s:4:\"Feed\";s:10:\"help topic\";s:12:\"display-feed\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:29:\"views_plugin_display_feed.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"feed\";s:16:\"contextual links\";a:1:{s:8:\"views_ui\";a:2:{s:11:\"parent path\";s:26:\"admin/structure/views/view\";s:19:\"argument properties\";a:1:{i:0;s:4:\"name\";}}}}s:5:\"embed\";a:18:{s:5:\"title\";s:5:\"Embed\";s:4:\"help\";s:60:\"Provide a display which can be embedded using the views api.\";s:7:\"handler\";s:26:\"views_plugin_display_embed\";s:5:\"theme\";s:10:\"views_view\";s:14:\"uses hook menu\";b:0;s:8:\"use ajax\";b:1;s:9:\"use pager\";b:1;s:18:\"accept attachments\";b:0;s:5:\"admin\";s:5:\"Embed\";s:5:\"no ui\";b:1;s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:30:\"views_plugin_display_embed.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:5:\"embed\";s:16:\"contextual links\";a:1:{s:8:\"views_ui\";a:2:{s:11:\"parent path\";s:26:\"admin/structure/views/view\";s:19:\"argument properties\";a:1:{i:0;s:4:\"name\";}}}}}s:5:\"style\";a:11:{s:4:\"gmap\";a:15:{s:5:\"title\";s:4:\"GMap\";s:4:\"help\";s:23:\"Displays rows as a map.\";s:7:\"handler\";s:22:\"gmap_plugin_style_gmap\";s:5:\"theme\";s:14:\"gmap_view_gmap\";s:15:\"uses row plugin\";b:1;s:13:\"uses grouping\";b:1;s:12:\"uses options\";b:1;s:4:\"type\";s:6:\"normal\";s:6:\"module\";s:4:\"gmap\";s:10:\"theme path\";s:22:\"sites/all/modules/gmap\";s:10:\"theme file\";s:14:\"gmap.views.inc\";s:4:\"path\";s:22:\"sites/all/modules/gmap\";s:4:\"file\";s:26:\"gmap_plugin_style_gmap.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"gmap\";}s:12:\"gmapextended\";a:15:{s:5:\"title\";s:13:\"Extended GMap\";s:4:\"help\";s:26:\"Displays a map of markers.\";s:7:\"handler\";s:30:\"gmap_plugin_style_gmapextended\";s:5:\"theme\";s:28:\"gmap_views_view_gmapextended\";s:15:\"uses row plugin\";b:1;s:11:\"uses fields\";b:1;s:12:\"uses options\";b:1;s:4:\"type\";s:6:\"normal\";s:6:\"module\";s:4:\"gmap\";s:10:\"theme path\";s:22:\"sites/all/modules/gmap\";s:10:\"theme file\";s:14:\"gmap.views.inc\";s:4:\"path\";s:22:\"sites/all/modules/gmap\";s:4:\"file\";s:34:\"gmap_plugin_style_gmapextended.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:12:\"gmapextended\";}s:7:\"default\";a:17:{s:5:\"title\";s:16:\"Unformatted list\";s:4:\"help\";s:32:\"Displays rows one after another.\";s:7:\"handler\";s:26:\"views_plugin_style_default\";s:5:\"theme\";s:22:\"views_view_unformatted\";s:15:\"uses row plugin\";b:1;s:14:\"uses row class\";b:1;s:13:\"uses grouping\";b:1;s:12:\"uses options\";b:1;s:4:\"type\";s:6:\"normal\";s:10:\"help topic\";s:17:\"style-unformatted\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:30:\"views_plugin_style_default.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:7:\"default\";}s:4:\"list\";a:16:{s:5:\"title\";s:9:\"HTML list\";s:4:\"help\";s:30:\"Displays rows as an HTML list.\";s:7:\"handler\";s:23:\"views_plugin_style_list\";s:5:\"theme\";s:15:\"views_view_list\";s:15:\"uses row plugin\";b:1;s:14:\"uses row class\";b:1;s:12:\"uses options\";b:1;s:4:\"type\";s:6:\"normal\";s:10:\"help topic\";s:10:\"style-list\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:27:\"views_plugin_style_list.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"list\";}s:4:\"grid\";a:17:{s:5:\"title\";s:4:\"Grid\";s:4:\"help\";s:24:\"Displays rows in a grid.\";s:7:\"handler\";s:23:\"views_plugin_style_grid\";s:5:\"theme\";s:15:\"views_view_grid\";s:11:\"uses fields\";b:0;s:15:\"uses row plugin\";b:1;s:14:\"uses row class\";b:1;s:12:\"uses options\";b:1;s:4:\"type\";s:6:\"normal\";s:10:\"help topic\";s:10:\"style-grid\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:27:\"views_plugin_style_grid.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"grid\";}s:5:\"table\";a:17:{s:5:\"title\";s:5:\"Table\";s:4:\"help\";s:25:\"Displays rows in a table.\";s:7:\"handler\";s:24:\"views_plugin_style_table\";s:5:\"theme\";s:16:\"views_view_table\";s:15:\"uses row plugin\";b:0;s:14:\"uses row class\";b:1;s:11:\"uses fields\";b:1;s:12:\"uses options\";b:1;s:4:\"type\";s:6:\"normal\";s:10:\"help topic\";s:11:\"style-table\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:28:\"views_plugin_style_table.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:5:\"table\";}s:15:\"default_summary\";a:14:{s:5:\"title\";s:4:\"List\";s:4:\"help\";s:39:\"Displays the default summary as a list.\";s:7:\"handler\";s:26:\"views_plugin_style_summary\";s:5:\"theme\";s:18:\"views_view_summary\";s:4:\"type\";s:7:\"summary\";s:12:\"uses options\";b:1;s:10:\"help topic\";s:13:\"style-summary\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:30:\"views_plugin_style_summary.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:15:\"default_summary\";}s:19:\"unformatted_summary\";a:14:{s:5:\"title\";s:11:\"Unformatted\";s:4:\"help\";s:78:\"Displays the summary unformatted, with option for one after another or inline.\";s:7:\"handler\";s:38:\"views_plugin_style_summary_unformatted\";s:5:\"theme\";s:30:\"views_view_summary_unformatted\";s:4:\"type\";s:7:\"summary\";s:12:\"uses options\";b:1;s:10:\"help topic\";s:25:\"style-summary-unformatted\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:42:\"views_plugin_style_summary_unformatted.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:19:\"unformatted_summary\";}s:3:\"rss\";a:15:{s:5:\"title\";s:8:\"RSS Feed\";s:4:\"help\";s:34:\"Generates an RSS feed from a view.\";s:7:\"handler\";s:22:\"views_plugin_style_rss\";s:5:\"theme\";s:14:\"views_view_rss\";s:15:\"uses row plugin\";b:1;s:12:\"uses options\";b:1;s:4:\"type\";s:4:\"feed\";s:10:\"help topic\";s:9:\"style-rss\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:26:\"views_plugin_style_rss.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:3:\"rss\";}s:17:\"jump_menu_summary\";a:14:{s:5:\"title\";s:9:\"Jump menu\";s:4:\"help\";s:111:\"Puts all of the results into a select box and allows the user to go to a different page based upon the results.\";s:7:\"handler\";s:36:\"views_plugin_style_summary_jump_menu\";s:5:\"theme\";s:28:\"views_view_summary_jump_menu\";s:4:\"type\";s:7:\"summary\";s:12:\"uses options\";b:1;s:10:\"help topic\";s:23:\"style-summary-jump-menu\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:40:\"views_plugin_style_summary_jump_menu.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:17:\"jump_menu_summary\";}s:9:\"jump_menu\";a:16:{s:5:\"title\";s:9:\"Jump menu\";s:4:\"help\";s:111:\"Puts all of the results into a select box and allows the user to go to a different page based upon the results.\";s:7:\"handler\";s:28:\"views_plugin_style_jump_menu\";s:5:\"theme\";s:20:\"views_view_jump_menu\";s:15:\"uses row plugin\";b:1;s:11:\"uses fields\";b:1;s:12:\"uses options\";b:1;s:4:\"type\";s:6:\"normal\";s:10:\"help topic\";s:15:\"style-jump-menu\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:32:\"views_plugin_style_jump_menu.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:9:\"jump_menu\";}}s:3:\"row\";a:8:{s:7:\"comment\";a:15:{s:5:\"title\";s:7:\"Comment\";s:4:\"help\";s:47:\"Display the comment with standard comment view.\";s:7:\"handler\";s:29:\"views_plugin_row_comment_view\";s:5:\"theme\";s:22:\"views_view_row_comment\";s:4:\"path\";s:39:\"sites/all/modules/views/modules/comment\";s:4:\"base\";a:1:{i:0;s:7:\"comment\";}s:12:\"uses options\";b:1;s:4:\"type\";s:6:\"normal\";s:10:\"help topic\";s:13:\"style-comment\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"file\";s:33:\"views_plugin_row_comment_view.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:7:\"comment\";}s:11:\"comment_rss\";a:15:{s:5:\"title\";s:7:\"Comment\";s:4:\"help\";s:27:\"Display the comment as RSS.\";s:7:\"handler\";s:28:\"views_plugin_row_comment_rss\";s:5:\"theme\";s:18:\"views_view_row_rss\";s:4:\"path\";s:39:\"sites/all/modules/views/modules/comment\";s:4:\"base\";a:1:{i:0;s:7:\"comment\";}s:12:\"uses options\";b:1;s:4:\"type\";s:4:\"feed\";s:10:\"help topic\";s:17:\"style-comment-rss\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"file\";s:32:\"views_plugin_row_comment_rss.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:11:\"comment_rss\";}s:6:\"entity\";a:14:{s:5:\"title\";s:15:\"Rendered entity\";s:4:\"help\";s:62:\"Renders a single entity in a specific view mode (e.g. teaser).\";s:7:\"handler\";s:35:\"entity_views_plugin_row_entity_view\";s:11:\"uses fields\";b:0;s:12:\"uses options\";b:1;s:4:\"type\";s:6:\"normal\";s:4:\"base\";a:6:{i:0;s:7:\"comment\";i:1;s:4:\"node\";i:2;s:13:\"node_revision\";i:3;s:18:\"taxonomy_term_data\";i:4;s:5:\"users\";i:5;s:12:\"file_managed\";}s:6:\"module\";s:6:\"entity\";s:10:\"theme path\";s:24:\"sites/all/modules/entity\";s:10:\"theme file\";s:16:\"entity.views.inc\";s:4:\"path\";s:24:\"sites/all/modules/entity\";s:4:\"file\";s:39:\"entity_views_plugin_row_entity_view.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:6:\"entity\";}s:4:\"node\";a:14:{s:5:\"title\";s:7:\"Content\";s:4:\"help\";s:44:\"Display the content with standard node view.\";s:7:\"handler\";s:26:\"views_plugin_row_node_view\";s:4:\"path\";s:36:\"sites/all/modules/views/modules/node\";s:4:\"base\";a:1:{i:0;s:4:\"node\";}s:12:\"uses options\";b:1;s:4:\"type\";s:6:\"normal\";s:10:\"help topic\";s:10:\"style-node\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"file\";s:30:\"views_plugin_row_node_view.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"node\";}s:8:\"node_rss\";a:15:{s:5:\"title\";s:7:\"Content\";s:4:\"help\";s:44:\"Display the content with standard node view.\";s:7:\"handler\";s:25:\"views_plugin_row_node_rss\";s:4:\"path\";s:36:\"sites/all/modules/views/modules/node\";s:5:\"theme\";s:18:\"views_view_row_rss\";s:4:\"base\";a:1:{i:0;s:4:\"node\";}s:12:\"uses options\";b:1;s:4:\"type\";s:4:\"feed\";s:10:\"help topic\";s:14:\"style-node-rss\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"file\";s:29:\"views_plugin_row_node_rss.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:8:\"node_rss\";}s:4:\"user\";a:14:{s:5:\"title\";s:4:\"User\";s:4:\"help\";s:41:\"Display the user with standard user view.\";s:7:\"handler\";s:26:\"views_plugin_row_user_view\";s:4:\"base\";a:1:{i:0;s:5:\"users\";}s:12:\"uses options\";b:1;s:4:\"type\";s:6:\"normal\";s:10:\"help topic\";s:11:\"style-users\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:30:\"views_plugin_row_user_view.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"user\";}s:6:\"fields\";a:15:{s:5:\"title\";s:6:\"Fields\";s:4:\"help\";s:46:\"Displays the fields with an optional template.\";s:7:\"handler\";s:23:\"views_plugin_row_fields\";s:5:\"theme\";s:17:\"views_view_fields\";s:11:\"uses fields\";b:1;s:12:\"uses options\";b:1;s:4:\"type\";s:6:\"normal\";s:10:\"help topic\";s:16:\"style-row-fields\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:27:\"views_plugin_row_fields.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:6:\"fields\";}s:10:\"rss_fields\";a:15:{s:5:\"title\";s:6:\"Fields\";s:4:\"help\";s:28:\"Display fields as RSS items.\";s:7:\"handler\";s:27:\"views_plugin_row_rss_fields\";s:5:\"theme\";s:18:\"views_view_row_rss\";s:11:\"uses fields\";b:1;s:12:\"uses options\";b:1;s:4:\"type\";s:4:\"feed\";s:10:\"help topic\";s:16:\"style-row-fields\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:31:\"views_plugin_row_rss_fields.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:10:\"rss_fields\";}}s:16:\"argument default\";a:8:{s:4:\"node\";a:9:{s:5:\"title\";s:19:\"Content ID from URL\";s:7:\"handler\";s:34:\"views_plugin_argument_default_node\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:38:\"views_plugin_argument_default_node.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"node\";}s:12:\"taxonomy_tid\";a:9:{s:5:\"title\";s:25:\"Taxonomy term ID from URL\";s:7:\"handler\";s:42:\"views_plugin_argument_default_taxonomy_tid\";s:4:\"path\";s:40:\"sites/all/modules/views/modules/taxonomy\";s:6:\"parent\";s:5:\"fixed\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"file\";s:46:\"views_plugin_argument_default_taxonomy_tid.inc\";s:4:\"name\";s:12:\"taxonomy_tid\";}s:4:\"user\";a:9:{s:5:\"title\";s:16:\"User ID from URL\";s:7:\"handler\";s:34:\"views_plugin_argument_default_user\";s:4:\"path\";s:36:\"sites/all/modules/views/modules/user\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"file\";s:38:\"views_plugin_argument_default_user.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"user\";}s:12:\"current_user\";a:9:{s:5:\"title\";s:27:\"User ID from logged in user\";s:7:\"handler\";s:42:\"views_plugin_argument_default_current_user\";s:4:\"path\";s:36:\"sites/all/modules/views/modules/user\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"file\";s:46:\"views_plugin_argument_default_current_user.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:12:\"current_user\";}s:6:\"parent\";a:9:{s:5:\"no ui\";b:1;s:7:\"handler\";s:29:\"views_plugin_argument_default\";s:6:\"parent\";s:0:\"\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:33:\"views_plugin_argument_default.inc\";s:4:\"name\";s:6:\"parent\";}s:5:\"fixed\";a:9:{s:5:\"title\";s:11:\"Fixed value\";s:7:\"handler\";s:35:\"views_plugin_argument_default_fixed\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:39:\"views_plugin_argument_default_fixed.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:5:\"fixed\";}s:3:\"php\";a:9:{s:5:\"title\";s:8:\"PHP Code\";s:7:\"handler\";s:33:\"views_plugin_argument_default_php\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:37:\"views_plugin_argument_default_php.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:3:\"php\";}s:3:\"raw\";a:9:{s:5:\"title\";s:18:\"Raw value from URL\";s:7:\"handler\";s:33:\"views_plugin_argument_default_raw\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:37:\"views_plugin_argument_default_raw.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:3:\"raw\";}}s:18:\"argument validator\";a:5:{s:4:\"node\";a:9:{s:5:\"title\";s:7:\"Content\";s:7:\"handler\";s:35:\"views_plugin_argument_validate_node\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:39:\"views_plugin_argument_validate_node.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"node\";}s:13:\"taxonomy_term\";a:9:{s:5:\"title\";s:13:\"Taxonomy term\";s:7:\"handler\";s:44:\"views_plugin_argument_validate_taxonomy_term\";s:4:\"path\";s:40:\"sites/all/modules/views/modules/taxonomy\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"file\";s:48:\"views_plugin_argument_validate_taxonomy_term.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:13:\"taxonomy_term\";}s:4:\"user\";a:9:{s:5:\"title\";s:4:\"User\";s:7:\"handler\";s:35:\"views_plugin_argument_validate_user\";s:4:\"path\";s:36:\"sites/all/modules/views/modules/user\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"file\";s:39:\"views_plugin_argument_validate_user.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"user\";}s:3:\"php\";a:9:{s:5:\"title\";s:8:\"PHP Code\";s:7:\"handler\";s:34:\"views_plugin_argument_validate_php\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:38:\"views_plugin_argument_validate_php.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:3:\"php\";}s:7:\"numeric\";a:9:{s:5:\"title\";s:7:\"Numeric\";s:7:\"handler\";s:38:\"views_plugin_argument_validate_numeric\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:42:\"views_plugin_argument_validate_numeric.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:7:\"numeric\";}}s:6:\"access\";a:3:{s:4:\"none\";a:11:{s:5:\"title\";s:4:\"None\";s:4:\"help\";s:31:\"Will be available to all users.\";s:7:\"handler\";s:24:\"views_plugin_access_none\";s:10:\"help topic\";s:11:\"access-none\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:28:\"views_plugin_access_none.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"none\";}s:4:\"role\";a:12:{s:5:\"title\";s:4:\"Role\";s:4:\"help\";s:64:\"Access will be granted to users with any of the specified roles.\";s:7:\"handler\";s:24:\"views_plugin_access_role\";s:12:\"uses options\";b:1;s:10:\"help topic\";s:11:\"access-role\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:28:\"views_plugin_access_role.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"role\";}s:4:\"perm\";a:12:{s:5:\"title\";s:10:\"Permission\";s:4:\"help\";s:69:\"Access will be granted to users with the specified permission string.\";s:7:\"handler\";s:24:\"views_plugin_access_perm\";s:12:\"uses options\";b:1;s:10:\"help topic\";s:11:\"access-perm\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:28:\"views_plugin_access_perm.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"perm\";}}s:5:\"cache\";a:3:{s:6:\"parent\";a:9:{s:5:\"no ui\";b:1;s:7:\"handler\";s:18:\"views_plugin_cache\";s:6:\"parent\";s:0:\"\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:22:\"views_plugin_cache.inc\";s:4:\"name\";s:6:\"parent\";}s:4:\"none\";a:11:{s:5:\"title\";s:4:\"None\";s:4:\"help\";s:25:\"No caching of Views data.\";s:7:\"handler\";s:23:\"views_plugin_cache_none\";s:10:\"help topic\";s:10:\"cache-none\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:27:\"views_plugin_cache_none.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"none\";}s:4:\"time\";a:12:{s:5:\"title\";s:10:\"Time-based\";s:4:\"help\";s:34:\"Simple time-based caching of data.\";s:7:\"handler\";s:23:\"views_plugin_cache_time\";s:12:\"uses options\";b:1;s:10:\"help topic\";s:10:\"cache-time\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:27:\"views_plugin_cache_time.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"time\";}}s:12:\"exposed_form\";a:3:{s:6:\"parent\";a:9:{s:5:\"no ui\";b:1;s:7:\"handler\";s:25:\"views_plugin_exposed_form\";s:6:\"parent\";s:0:\"\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:29:\"views_plugin_exposed_form.inc\";s:4:\"name\";s:6:\"parent\";}s:5:\"basic\";a:12:{s:5:\"title\";s:5:\"Basic\";s:4:\"help\";s:18:\"Basic exposed form\";s:7:\"handler\";s:31:\"views_plugin_exposed_form_basic\";s:12:\"uses options\";b:1;s:10:\"help topic\";s:18:\"exposed-form-basic\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:35:\"views_plugin_exposed_form_basic.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:5:\"basic\";}s:14:\"input_required\";a:12:{s:5:\"title\";s:14:\"Input required\";s:4:\"help\";s:73:\"An exposed form that only renders a view if the form contains user input.\";s:7:\"handler\";s:40:\"views_plugin_exposed_form_input_required\";s:12:\"uses options\";b:1;s:10:\"help topic\";s:27:\"exposed-form-input-required\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:44:\"views_plugin_exposed_form_input_required.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:14:\"input_required\";}}s:16:\"display_extender\";a:1:{s:7:\"default\";a:12:{s:5:\"title\";s:22:\"Empty display extender\";s:4:\"help\";s:31:\"Default settings for this view.\";s:7:\"handler\";s:29:\"views_plugin_display_extender\";s:7:\"enabled\";b:0;s:5:\"no ui\";b:1;s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:33:\"views_plugin_display_extender.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:7:\"default\";}}s:5:\"query\";a:2:{s:6:\"parent\";a:9:{s:5:\"no ui\";b:1;s:7:\"handler\";s:18:\"views_plugin_query\";s:6:\"parent\";s:0:\"\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:22:\"views_plugin_query.inc\";s:4:\"name\";s:6:\"parent\";}s:11:\"views_query\";a:10:{s:5:\"title\";s:9:\"SQL Query\";s:4:\"help\";s:62:\"Query will be generated and run using the Drupal database API.\";s:7:\"handler\";s:26:\"views_plugin_query_default\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:30:\"views_plugin_query_default.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:11:\"views_query\";}}s:5:\"pager\";a:5:{s:6:\"parent\";a:9:{s:5:\"no ui\";b:1;s:7:\"handler\";s:18:\"views_plugin_pager\";s:6:\"parent\";s:0:\"\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:22:\"views_plugin_pager.inc\";s:4:\"name\";s:6:\"parent\";}s:4:\"none\";a:13:{s:5:\"title\";s:17:\"Display all items\";s:4:\"help\";s:43:\"Display all items that this view might find\";s:7:\"handler\";s:23:\"views_plugin_pager_none\";s:10:\"help topic\";s:10:\"pager-none\";s:12:\"uses options\";b:1;s:4:\"type\";s:5:\"basic\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:27:\"views_plugin_pager_none.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"none\";}s:4:\"some\";a:13:{s:5:\"title\";s:35:\"Display a specified number of items\";s:4:\"help\";s:57:\"Display a limited number items that this view might find.\";s:7:\"handler\";s:23:\"views_plugin_pager_some\";s:10:\"help topic\";s:10:\"pager-some\";s:12:\"uses options\";b:1;s:4:\"type\";s:5:\"basic\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:27:\"views_plugin_pager_some.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"some\";}s:4:\"full\";a:13:{s:5:\"title\";s:24:\"Paged output, full pager\";s:11:\"short title\";s:4:\"Full\";s:4:\"help\";s:31:\"Paged output, full Drupal style\";s:7:\"handler\";s:23:\"views_plugin_pager_full\";s:10:\"help topic\";s:10:\"pager-full\";s:12:\"uses options\";b:1;s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:27:\"views_plugin_pager_full.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"full\";}s:4:\"mini\";a:13:{s:5:\"title\";s:24:\"Paged output, mini pager\";s:11:\"short title\";s:4:\"Mini\";s:4:\"help\";s:26:\"Use the mini pager output.\";s:7:\"handler\";s:23:\"views_plugin_pager_mini\";s:10:\"help topic\";s:10:\"pager-mini\";s:12:\"uses options\";b:1;s:6:\"parent\";s:4:\"full\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:27:\"views_plugin_pager_mini.inc\";s:4:\"name\";s:4:\"mini\";}}s:12:\"localization\";a:3:{s:6:\"parent\";a:9:{s:5:\"no ui\";b:1;s:7:\"handler\";s:25:\"views_plugin_localization\";s:6:\"parent\";s:0:\"\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:29:\"views_plugin_localization.inc\";s:4:\"name\";s:6:\"parent\";}s:4:\"none\";a:11:{s:5:\"title\";s:4:\"None\";s:4:\"help\";s:42:\"Do not pass admin strings for translation.\";s:7:\"handler\";s:30:\"views_plugin_localization_none\";s:10:\"help topic\";s:17:\"localization-none\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:34:\"views_plugin_localization_none.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"none\";}s:4:\"core\";a:11:{s:5:\"title\";s:4:\"Core\";s:4:\"help\";s:283:\"Use Drupal core t() function. Not recommended, as it doesn\'t support updates to existing strings. If you need to translate Views labels into other languages, consider installing the <a href=\"http://drupal.org/project/i18n\">Internationalization</a> package\'s Views translation module.\";s:7:\"handler\";s:30:\"views_plugin_localization_core\";s:10:\"help topic\";s:17:\"localization-core\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:34:\"views_plugin_localization_core.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"core\";}}}',0,1538750977,1),('views:plugin_data:it','a:12:{s:7:\"display\";a:6:{s:7:\"default\";a:20:{s:5:\"title\";s:6:\"Master\";s:4:\"help\";s:31:\"Default settings for this view.\";s:7:\"handler\";s:28:\"views_plugin_display_default\";s:5:\"theme\";s:10:\"views_view\";s:5:\"no ui\";b:1;s:9:\"no remove\";b:1;s:2:\"js\";a:6:{i:0;s:12:\"misc/form.js\";i:1;s:16:\"misc/collapse.js\";i:2;s:16:\"misc/textarea.js\";i:3;s:17:\"misc/tabledrag.js\";i:4;s:20:\"misc/autocomplete.js\";i:5;s:40:\"sites/all/modules/ctools/js/dependent.js\";}s:8:\"use ajax\";b:1;s:9:\"use pager\";b:1;s:8:\"use more\";b:1;s:18:\"accept attachments\";b:1;s:10:\"help topic\";s:15:\"display-default\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:32:\"views_plugin_display_default.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:7:\"default\";s:16:\"contextual links\";a:1:{s:8:\"views_ui\";a:2:{s:11:\"parent path\";s:26:\"admin/structure/views/view\";s:19:\"argument properties\";a:1:{i:0;s:4:\"name\";}}}}s:4:\"page\";a:20:{s:5:\"title\";s:6:\"Pagina\";s:4:\"help\";s:54:\"Display the view as a page, with a URL and menu links.\";s:7:\"handler\";s:25:\"views_plugin_display_page\";s:5:\"theme\";s:10:\"views_view\";s:14:\"uses hook menu\";b:1;s:26:\"contextual links locations\";a:1:{i:0;s:4:\"page\";}s:8:\"use ajax\";b:1;s:9:\"use pager\";b:1;s:8:\"use more\";b:1;s:18:\"accept attachments\";b:1;s:5:\"admin\";s:6:\"Pagina\";s:10:\"help topic\";s:12:\"display-page\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:29:\"views_plugin_display_page.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"page\";s:16:\"contextual links\";a:1:{s:8:\"views_ui\";a:2:{s:11:\"parent path\";s:26:\"admin/structure/views/view\";s:19:\"argument properties\";a:1:{i:0;s:4:\"name\";}}}}s:5:\"block\";a:20:{s:5:\"title\";s:6:\"Blocco\";s:4:\"help\";s:28:\"Display the view as a block.\";s:7:\"handler\";s:26:\"views_plugin_display_block\";s:5:\"theme\";s:10:\"views_view\";s:15:\"uses hook block\";b:1;s:26:\"contextual links locations\";a:1:{i:0;s:5:\"block\";}s:8:\"use ajax\";b:1;s:9:\"use pager\";b:1;s:8:\"use more\";b:1;s:18:\"accept attachments\";b:1;s:5:\"admin\";s:6:\"Blocco\";s:10:\"help topic\";s:13:\"display-block\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:30:\"views_plugin_display_block.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:5:\"block\";s:16:\"contextual links\";a:1:{s:8:\"views_ui\";a:2:{s:11:\"parent path\";s:26:\"admin/structure/views/view\";s:19:\"argument properties\";a:1:{i:0;s:4:\"name\";}}}}s:10:\"attachment\";a:18:{s:5:\"title\";s:8:\"Allegato\";s:4:\"help\";s:79:\"Attachments added to other displays to achieve multiple views in the same view.\";s:7:\"handler\";s:31:\"views_plugin_display_attachment\";s:5:\"theme\";s:10:\"views_view\";s:26:\"contextual links locations\";a:0:{}s:8:\"use ajax\";b:1;s:9:\"use pager\";b:0;s:8:\"use more\";b:1;s:18:\"accept attachments\";b:0;s:10:\"help topic\";s:18:\"display-attachment\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:35:\"views_plugin_display_attachment.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:10:\"attachment\";s:16:\"contextual links\";a:1:{s:8:\"views_ui\";a:2:{s:11:\"parent path\";s:26:\"admin/structure/views/view\";s:19:\"argument properties\";a:1:{i:0;s:4:\"name\";}}}}s:4:\"feed\";a:17:{s:5:\"title\";s:4:\"Feed\";s:4:\"help\";s:48:\"Display the view as a feed, such as an RSS feed.\";s:7:\"handler\";s:25:\"views_plugin_display_feed\";s:14:\"uses hook menu\";b:1;s:8:\"use ajax\";b:0;s:9:\"use pager\";b:0;s:18:\"accept attachments\";b:0;s:5:\"admin\";s:4:\"Feed\";s:10:\"help topic\";s:12:\"display-feed\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:29:\"views_plugin_display_feed.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"feed\";s:16:\"contextual links\";a:1:{s:8:\"views_ui\";a:2:{s:11:\"parent path\";s:26:\"admin/structure/views/view\";s:19:\"argument properties\";a:1:{i:0;s:4:\"name\";}}}}s:5:\"embed\";a:18:{s:5:\"title\";s:5:\"Embed\";s:4:\"help\";s:60:\"Provide a display which can be embedded using the views api.\";s:7:\"handler\";s:26:\"views_plugin_display_embed\";s:5:\"theme\";s:10:\"views_view\";s:14:\"uses hook menu\";b:0;s:8:\"use ajax\";b:1;s:9:\"use pager\";b:1;s:18:\"accept attachments\";b:0;s:5:\"admin\";s:5:\"Embed\";s:5:\"no ui\";b:1;s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:30:\"views_plugin_display_embed.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:5:\"embed\";s:16:\"contextual links\";a:1:{s:8:\"views_ui\";a:2:{s:11:\"parent path\";s:26:\"admin/structure/views/view\";s:19:\"argument properties\";a:1:{i:0;s:4:\"name\";}}}}}s:5:\"style\";a:11:{s:4:\"gmap\";a:15:{s:5:\"title\";s:4:\"GMap\";s:4:\"help\";s:23:\"Displays rows as a map.\";s:7:\"handler\";s:22:\"gmap_plugin_style_gmap\";s:5:\"theme\";s:14:\"gmap_view_gmap\";s:15:\"uses row plugin\";b:1;s:13:\"uses grouping\";b:1;s:12:\"uses options\";b:1;s:4:\"type\";s:6:\"normal\";s:6:\"module\";s:4:\"gmap\";s:10:\"theme path\";s:22:\"sites/all/modules/gmap\";s:10:\"theme file\";s:14:\"gmap.views.inc\";s:4:\"path\";s:22:\"sites/all/modules/gmap\";s:4:\"file\";s:26:\"gmap_plugin_style_gmap.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"gmap\";}s:12:\"gmapextended\";a:15:{s:5:\"title\";s:13:\"Extended GMap\";s:4:\"help\";s:26:\"Displays a map of markers.\";s:7:\"handler\";s:30:\"gmap_plugin_style_gmapextended\";s:5:\"theme\";s:28:\"gmap_views_view_gmapextended\";s:15:\"uses row plugin\";b:1;s:11:\"uses fields\";b:1;s:12:\"uses options\";b:1;s:4:\"type\";s:6:\"normal\";s:6:\"module\";s:4:\"gmap\";s:10:\"theme path\";s:22:\"sites/all/modules/gmap\";s:10:\"theme file\";s:14:\"gmap.views.inc\";s:4:\"path\";s:22:\"sites/all/modules/gmap\";s:4:\"file\";s:34:\"gmap_plugin_style_gmapextended.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:12:\"gmapextended\";}s:7:\"default\";a:17:{s:5:\"title\";s:16:\"Unformatted list\";s:4:\"help\";s:32:\"Displays rows one after another.\";s:7:\"handler\";s:26:\"views_plugin_style_default\";s:5:\"theme\";s:22:\"views_view_unformatted\";s:15:\"uses row plugin\";b:1;s:14:\"uses row class\";b:1;s:13:\"uses grouping\";b:1;s:12:\"uses options\";b:1;s:4:\"type\";s:6:\"normal\";s:10:\"help topic\";s:17:\"style-unformatted\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:30:\"views_plugin_style_default.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:7:\"default\";}s:4:\"list\";a:16:{s:5:\"title\";s:9:\"HTML list\";s:4:\"help\";s:30:\"Displays rows as an HTML list.\";s:7:\"handler\";s:23:\"views_plugin_style_list\";s:5:\"theme\";s:15:\"views_view_list\";s:15:\"uses row plugin\";b:1;s:14:\"uses row class\";b:1;s:12:\"uses options\";b:1;s:4:\"type\";s:6:\"normal\";s:10:\"help topic\";s:10:\"style-list\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:27:\"views_plugin_style_list.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"list\";}s:4:\"grid\";a:17:{s:5:\"title\";s:4:\"Grid\";s:4:\"help\";s:24:\"Displays rows in a grid.\";s:7:\"handler\";s:23:\"views_plugin_style_grid\";s:5:\"theme\";s:15:\"views_view_grid\";s:11:\"uses fields\";b:0;s:15:\"uses row plugin\";b:1;s:14:\"uses row class\";b:1;s:12:\"uses options\";b:1;s:4:\"type\";s:6:\"normal\";s:10:\"help topic\";s:10:\"style-grid\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:27:\"views_plugin_style_grid.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"grid\";}s:5:\"table\";a:17:{s:5:\"title\";s:7:\"Tabella\";s:4:\"help\";s:25:\"Displays rows in a table.\";s:7:\"handler\";s:24:\"views_plugin_style_table\";s:5:\"theme\";s:16:\"views_view_table\";s:15:\"uses row plugin\";b:0;s:14:\"uses row class\";b:1;s:11:\"uses fields\";b:1;s:12:\"uses options\";b:1;s:4:\"type\";s:6:\"normal\";s:10:\"help topic\";s:11:\"style-table\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:28:\"views_plugin_style_table.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:5:\"table\";}s:15:\"default_summary\";a:14:{s:5:\"title\";s:6:\"Elenco\";s:4:\"help\";s:39:\"Displays the default summary as a list.\";s:7:\"handler\";s:26:\"views_plugin_style_summary\";s:5:\"theme\";s:18:\"views_view_summary\";s:4:\"type\";s:7:\"summary\";s:12:\"uses options\";b:1;s:10:\"help topic\";s:13:\"style-summary\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:30:\"views_plugin_style_summary.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:15:\"default_summary\";}s:19:\"unformatted_summary\";a:14:{s:5:\"title\";s:14:\"Non formattato\";s:4:\"help\";s:78:\"Displays the summary unformatted, with option for one after another or inline.\";s:7:\"handler\";s:38:\"views_plugin_style_summary_unformatted\";s:5:\"theme\";s:30:\"views_view_summary_unformatted\";s:4:\"type\";s:7:\"summary\";s:12:\"uses options\";b:1;s:10:\"help topic\";s:25:\"style-summary-unformatted\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:42:\"views_plugin_style_summary_unformatted.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:19:\"unformatted_summary\";}s:3:\"rss\";a:15:{s:5:\"title\";s:8:\"RSS Feed\";s:4:\"help\";s:34:\"Generates an RSS feed from a view.\";s:7:\"handler\";s:22:\"views_plugin_style_rss\";s:5:\"theme\";s:14:\"views_view_rss\";s:15:\"uses row plugin\";b:1;s:12:\"uses options\";b:1;s:4:\"type\";s:4:\"feed\";s:10:\"help topic\";s:9:\"style-rss\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:26:\"views_plugin_style_rss.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:3:\"rss\";}s:17:\"jump_menu_summary\";a:14:{s:5:\"title\";s:9:\"Jump menu\";s:4:\"help\";s:111:\"Puts all of the results into a select box and allows the user to go to a different page based upon the results.\";s:7:\"handler\";s:36:\"views_plugin_style_summary_jump_menu\";s:5:\"theme\";s:28:\"views_view_summary_jump_menu\";s:4:\"type\";s:7:\"summary\";s:12:\"uses options\";b:1;s:10:\"help topic\";s:23:\"style-summary-jump-menu\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:40:\"views_plugin_style_summary_jump_menu.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:17:\"jump_menu_summary\";}s:9:\"jump_menu\";a:16:{s:5:\"title\";s:9:\"Jump menu\";s:4:\"help\";s:111:\"Puts all of the results into a select box and allows the user to go to a different page based upon the results.\";s:7:\"handler\";s:28:\"views_plugin_style_jump_menu\";s:5:\"theme\";s:20:\"views_view_jump_menu\";s:15:\"uses row plugin\";b:1;s:11:\"uses fields\";b:1;s:12:\"uses options\";b:1;s:4:\"type\";s:6:\"normal\";s:10:\"help topic\";s:15:\"style-jump-menu\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:32:\"views_plugin_style_jump_menu.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:9:\"jump_menu\";}}s:3:\"row\";a:8:{s:7:\"comment\";a:15:{s:5:\"title\";s:8:\"Commento\";s:4:\"help\";s:47:\"Display the comment with standard comment view.\";s:7:\"handler\";s:29:\"views_plugin_row_comment_view\";s:5:\"theme\";s:22:\"views_view_row_comment\";s:4:\"path\";s:39:\"sites/all/modules/views/modules/comment\";s:4:\"base\";a:1:{i:0;s:7:\"comment\";}s:12:\"uses options\";b:1;s:4:\"type\";s:6:\"normal\";s:10:\"help topic\";s:13:\"style-comment\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"file\";s:33:\"views_plugin_row_comment_view.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:7:\"comment\";}s:11:\"comment_rss\";a:15:{s:5:\"title\";s:8:\"Commento\";s:4:\"help\";s:27:\"Display the comment as RSS.\";s:7:\"handler\";s:28:\"views_plugin_row_comment_rss\";s:5:\"theme\";s:18:\"views_view_row_rss\";s:4:\"path\";s:39:\"sites/all/modules/views/modules/comment\";s:4:\"base\";a:1:{i:0;s:7:\"comment\";}s:12:\"uses options\";b:1;s:4:\"type\";s:4:\"feed\";s:10:\"help topic\";s:17:\"style-comment-rss\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"file\";s:32:\"views_plugin_row_comment_rss.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:11:\"comment_rss\";}s:6:\"entity\";a:14:{s:5:\"title\";s:15:\"Rendered entity\";s:4:\"help\";s:62:\"Renders a single entity in a specific view mode (e.g. teaser).\";s:7:\"handler\";s:35:\"entity_views_plugin_row_entity_view\";s:11:\"uses fields\";b:0;s:12:\"uses options\";b:1;s:4:\"type\";s:6:\"normal\";s:4:\"base\";a:6:{i:0;s:7:\"comment\";i:1;s:4:\"node\";i:2;s:13:\"node_revision\";i:3;s:18:\"taxonomy_term_data\";i:4;s:5:\"users\";i:5;s:12:\"file_managed\";}s:6:\"module\";s:6:\"entity\";s:10:\"theme path\";s:24:\"sites/all/modules/entity\";s:10:\"theme file\";s:16:\"entity.views.inc\";s:4:\"path\";s:24:\"sites/all/modules/entity\";s:4:\"file\";s:39:\"entity_views_plugin_row_entity_view.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:6:\"entity\";}s:4:\"node\";a:14:{s:5:\"title\";s:9:\"Contenuto\";s:4:\"help\";s:44:\"Display the content with standard node view.\";s:7:\"handler\";s:26:\"views_plugin_row_node_view\";s:4:\"path\";s:36:\"sites/all/modules/views/modules/node\";s:4:\"base\";a:1:{i:0;s:4:\"node\";}s:12:\"uses options\";b:1;s:4:\"type\";s:6:\"normal\";s:10:\"help topic\";s:10:\"style-node\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"file\";s:30:\"views_plugin_row_node_view.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"node\";}s:8:\"node_rss\";a:15:{s:5:\"title\";s:9:\"Contenuto\";s:4:\"help\";s:44:\"Display the content with standard node view.\";s:7:\"handler\";s:25:\"views_plugin_row_node_rss\";s:4:\"path\";s:36:\"sites/all/modules/views/modules/node\";s:5:\"theme\";s:18:\"views_view_row_rss\";s:4:\"base\";a:1:{i:0;s:4:\"node\";}s:12:\"uses options\";b:1;s:4:\"type\";s:4:\"feed\";s:10:\"help topic\";s:14:\"style-node-rss\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"file\";s:29:\"views_plugin_row_node_rss.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:8:\"node_rss\";}s:4:\"user\";a:14:{s:5:\"title\";s:6:\"Utente\";s:4:\"help\";s:41:\"Display the user with standard user view.\";s:7:\"handler\";s:26:\"views_plugin_row_user_view\";s:4:\"base\";a:1:{i:0;s:5:\"users\";}s:12:\"uses options\";b:1;s:4:\"type\";s:6:\"normal\";s:10:\"help topic\";s:11:\"style-users\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:30:\"views_plugin_row_user_view.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"user\";}s:6:\"fields\";a:15:{s:5:\"title\";s:5:\"Campi\";s:4:\"help\";s:46:\"Displays the fields with an optional template.\";s:7:\"handler\";s:23:\"views_plugin_row_fields\";s:5:\"theme\";s:17:\"views_view_fields\";s:11:\"uses fields\";b:1;s:12:\"uses options\";b:1;s:4:\"type\";s:6:\"normal\";s:10:\"help topic\";s:16:\"style-row-fields\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:27:\"views_plugin_row_fields.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:6:\"fields\";}s:10:\"rss_fields\";a:15:{s:5:\"title\";s:5:\"Campi\";s:4:\"help\";s:28:\"Display fields as RSS items.\";s:7:\"handler\";s:27:\"views_plugin_row_rss_fields\";s:5:\"theme\";s:18:\"views_view_row_rss\";s:11:\"uses fields\";b:1;s:12:\"uses options\";b:1;s:4:\"type\";s:4:\"feed\";s:10:\"help topic\";s:16:\"style-row-fields\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:31:\"views_plugin_row_rss_fields.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:10:\"rss_fields\";}}s:16:\"argument default\";a:8:{s:4:\"node\";a:9:{s:5:\"title\";s:19:\"Content ID from URL\";s:7:\"handler\";s:34:\"views_plugin_argument_default_node\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:38:\"views_plugin_argument_default_node.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"node\";}s:12:\"taxonomy_tid\";a:9:{s:5:\"title\";s:25:\"Taxonomy term ID from URL\";s:7:\"handler\";s:42:\"views_plugin_argument_default_taxonomy_tid\";s:4:\"path\";s:40:\"sites/all/modules/views/modules/taxonomy\";s:6:\"parent\";s:5:\"fixed\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"file\";s:46:\"views_plugin_argument_default_taxonomy_tid.inc\";s:4:\"name\";s:12:\"taxonomy_tid\";}s:4:\"user\";a:9:{s:5:\"title\";s:16:\"User ID from URL\";s:7:\"handler\";s:34:\"views_plugin_argument_default_user\";s:4:\"path\";s:36:\"sites/all/modules/views/modules/user\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"file\";s:38:\"views_plugin_argument_default_user.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"user\";}s:12:\"current_user\";a:9:{s:5:\"title\";s:27:\"User ID from logged in user\";s:7:\"handler\";s:42:\"views_plugin_argument_default_current_user\";s:4:\"path\";s:36:\"sites/all/modules/views/modules/user\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"file\";s:46:\"views_plugin_argument_default_current_user.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:12:\"current_user\";}s:6:\"parent\";a:9:{s:5:\"no ui\";b:1;s:7:\"handler\";s:29:\"views_plugin_argument_default\";s:6:\"parent\";s:0:\"\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:33:\"views_plugin_argument_default.inc\";s:4:\"name\";s:6:\"parent\";}s:5:\"fixed\";a:9:{s:5:\"title\";s:11:\"Fixed value\";s:7:\"handler\";s:35:\"views_plugin_argument_default_fixed\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:39:\"views_plugin_argument_default_fixed.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:5:\"fixed\";}s:3:\"php\";a:9:{s:5:\"title\";s:8:\"PHP Code\";s:7:\"handler\";s:33:\"views_plugin_argument_default_php\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:37:\"views_plugin_argument_default_php.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:3:\"php\";}s:3:\"raw\";a:9:{s:5:\"title\";s:18:\"Raw value from URL\";s:7:\"handler\";s:33:\"views_plugin_argument_default_raw\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:37:\"views_plugin_argument_default_raw.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:3:\"raw\";}}s:18:\"argument validator\";a:5:{s:4:\"node\";a:9:{s:5:\"title\";s:9:\"Contenuto\";s:7:\"handler\";s:35:\"views_plugin_argument_validate_node\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:39:\"views_plugin_argument_validate_node.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"node\";}s:13:\"taxonomy_term\";a:9:{s:5:\"title\";s:24:\"Termine della tassonomia\";s:7:\"handler\";s:44:\"views_plugin_argument_validate_taxonomy_term\";s:4:\"path\";s:40:\"sites/all/modules/views/modules/taxonomy\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"file\";s:48:\"views_plugin_argument_validate_taxonomy_term.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:13:\"taxonomy_term\";}s:4:\"user\";a:9:{s:5:\"title\";s:6:\"Utente\";s:7:\"handler\";s:35:\"views_plugin_argument_validate_user\";s:4:\"path\";s:36:\"sites/all/modules/views/modules/user\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"file\";s:39:\"views_plugin_argument_validate_user.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"user\";}s:3:\"php\";a:9:{s:5:\"title\";s:8:\"PHP Code\";s:7:\"handler\";s:34:\"views_plugin_argument_validate_php\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:38:\"views_plugin_argument_validate_php.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:3:\"php\";}s:7:\"numeric\";a:9:{s:5:\"title\";s:7:\"Numeric\";s:7:\"handler\";s:38:\"views_plugin_argument_validate_numeric\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:42:\"views_plugin_argument_validate_numeric.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:7:\"numeric\";}}s:6:\"access\";a:3:{s:4:\"none\";a:11:{s:5:\"title\";s:7:\"Nessuno\";s:4:\"help\";s:31:\"Will be available to all users.\";s:7:\"handler\";s:24:\"views_plugin_access_none\";s:10:\"help topic\";s:11:\"access-none\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:28:\"views_plugin_access_none.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"none\";}s:4:\"role\";a:12:{s:5:\"title\";s:5:\"Ruolo\";s:4:\"help\";s:64:\"Access will be granted to users with any of the specified roles.\";s:7:\"handler\";s:24:\"views_plugin_access_role\";s:12:\"uses options\";b:1;s:10:\"help topic\";s:11:\"access-role\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:28:\"views_plugin_access_role.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"role\";}s:4:\"perm\";a:12:{s:5:\"title\";s:8:\"Permesso\";s:4:\"help\";s:69:\"Access will be granted to users with the specified permission string.\";s:7:\"handler\";s:24:\"views_plugin_access_perm\";s:12:\"uses options\";b:1;s:10:\"help topic\";s:11:\"access-perm\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:28:\"views_plugin_access_perm.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"perm\";}}s:5:\"cache\";a:3:{s:6:\"parent\";a:9:{s:5:\"no ui\";b:1;s:7:\"handler\";s:18:\"views_plugin_cache\";s:6:\"parent\";s:0:\"\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:22:\"views_plugin_cache.inc\";s:4:\"name\";s:6:\"parent\";}s:4:\"none\";a:11:{s:5:\"title\";s:7:\"Nessuno\";s:4:\"help\";s:25:\"No caching of Views data.\";s:7:\"handler\";s:23:\"views_plugin_cache_none\";s:10:\"help topic\";s:10:\"cache-none\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:27:\"views_plugin_cache_none.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"none\";}s:4:\"time\";a:12:{s:5:\"title\";s:10:\"Time-based\";s:4:\"help\";s:34:\"Simple time-based caching of data.\";s:7:\"handler\";s:23:\"views_plugin_cache_time\";s:12:\"uses options\";b:1;s:10:\"help topic\";s:10:\"cache-time\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:27:\"views_plugin_cache_time.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"time\";}}s:12:\"exposed_form\";a:3:{s:6:\"parent\";a:9:{s:5:\"no ui\";b:1;s:7:\"handler\";s:25:\"views_plugin_exposed_form\";s:6:\"parent\";s:0:\"\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:29:\"views_plugin_exposed_form.inc\";s:4:\"name\";s:6:\"parent\";}s:5:\"basic\";a:12:{s:5:\"title\";s:7:\"Di base\";s:4:\"help\";s:18:\"Basic exposed form\";s:7:\"handler\";s:31:\"views_plugin_exposed_form_basic\";s:12:\"uses options\";b:1;s:10:\"help topic\";s:18:\"exposed-form-basic\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:35:\"views_plugin_exposed_form_basic.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:5:\"basic\";}s:14:\"input_required\";a:12:{s:5:\"title\";s:14:\"Input required\";s:4:\"help\";s:73:\"An exposed form that only renders a view if the form contains user input.\";s:7:\"handler\";s:40:\"views_plugin_exposed_form_input_required\";s:12:\"uses options\";b:1;s:10:\"help topic\";s:27:\"exposed-form-input-required\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:44:\"views_plugin_exposed_form_input_required.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:14:\"input_required\";}}s:16:\"display_extender\";a:1:{s:7:\"default\";a:12:{s:5:\"title\";s:22:\"Empty display extender\";s:4:\"help\";s:31:\"Default settings for this view.\";s:7:\"handler\";s:29:\"views_plugin_display_extender\";s:7:\"enabled\";b:0;s:5:\"no ui\";b:1;s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:33:\"views_plugin_display_extender.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:7:\"default\";}}s:5:\"query\";a:2:{s:6:\"parent\";a:9:{s:5:\"no ui\";b:1;s:7:\"handler\";s:18:\"views_plugin_query\";s:6:\"parent\";s:0:\"\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:22:\"views_plugin_query.inc\";s:4:\"name\";s:6:\"parent\";}s:11:\"views_query\";a:10:{s:5:\"title\";s:9:\"SQL Query\";s:4:\"help\";s:62:\"Query will be generated and run using the Drupal database API.\";s:7:\"handler\";s:26:\"views_plugin_query_default\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:30:\"views_plugin_query_default.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:11:\"views_query\";}}s:5:\"pager\";a:5:{s:6:\"parent\";a:9:{s:5:\"no ui\";b:1;s:7:\"handler\";s:18:\"views_plugin_pager\";s:6:\"parent\";s:0:\"\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:22:\"views_plugin_pager.inc\";s:4:\"name\";s:6:\"parent\";}s:4:\"none\";a:13:{s:5:\"title\";s:17:\"Display all items\";s:4:\"help\";s:43:\"Display all items that this view might find\";s:7:\"handler\";s:23:\"views_plugin_pager_none\";s:10:\"help topic\";s:10:\"pager-none\";s:12:\"uses options\";b:1;s:4:\"type\";s:5:\"basic\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:27:\"views_plugin_pager_none.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"none\";}s:4:\"some\";a:13:{s:5:\"title\";s:35:\"Display a specified number of items\";s:4:\"help\";s:57:\"Display a limited number items that this view might find.\";s:7:\"handler\";s:23:\"views_plugin_pager_some\";s:10:\"help topic\";s:10:\"pager-some\";s:12:\"uses options\";b:1;s:4:\"type\";s:5:\"basic\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:27:\"views_plugin_pager_some.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"some\";}s:4:\"full\";a:13:{s:5:\"title\";s:24:\"Paged output, full pager\";s:11:\"short title\";s:8:\"Completo\";s:4:\"help\";s:31:\"Paged output, full Drupal style\";s:7:\"handler\";s:23:\"views_plugin_pager_full\";s:10:\"help topic\";s:10:\"pager-full\";s:12:\"uses options\";b:1;s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:27:\"views_plugin_pager_full.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"full\";}s:4:\"mini\";a:13:{s:5:\"title\";s:24:\"Paged output, mini pager\";s:11:\"short title\";s:4:\"Mini\";s:4:\"help\";s:26:\"Use the mini pager output.\";s:7:\"handler\";s:23:\"views_plugin_pager_mini\";s:10:\"help topic\";s:10:\"pager-mini\";s:12:\"uses options\";b:1;s:6:\"parent\";s:4:\"full\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:27:\"views_plugin_pager_mini.inc\";s:4:\"name\";s:4:\"mini\";}}s:12:\"localization\";a:3:{s:6:\"parent\";a:9:{s:5:\"no ui\";b:1;s:7:\"handler\";s:25:\"views_plugin_localization\";s:6:\"parent\";s:0:\"\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:29:\"views_plugin_localization.inc\";s:4:\"name\";s:6:\"parent\";}s:4:\"none\";a:11:{s:5:\"title\";s:7:\"Nessuno\";s:4:\"help\";s:42:\"Do not pass admin strings for translation.\";s:7:\"handler\";s:30:\"views_plugin_localization_none\";s:10:\"help topic\";s:17:\"localization-none\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:34:\"views_plugin_localization_none.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"none\";}s:4:\"core\";a:11:{s:5:\"title\";s:4:\"Core\";s:4:\"help\";s:283:\"Use Drupal core t() function. Not recommended, as it doesn\'t support updates to existing strings. If you need to translate Views labels into other languages, consider installing the <a href=\"http://drupal.org/project/i18n\">Internationalization</a> package\'s Views translation module.\";s:7:\"handler\";s:30:\"views_plugin_localization_core\";s:10:\"help topic\";s:17:\"localization-core\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:34:\"views_plugin_localization_core.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"core\";}}}',0,1538751382,1);
/*!40000 ALTER TABLE `cache` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cache_block`
--

DROP TABLE IF EXISTS `cache_block`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cache_block` (
  `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
  `data` longblob DEFAULT NULL COMMENT 'A collection of data to cache.',
  `expire` int(11) NOT NULL DEFAULT 0 COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
  `created` int(11) NOT NULL DEFAULT 0 COMMENT 'A Unix timestamp indicating when the cache entry was created.',
  `serialized` smallint(6) NOT NULL DEFAULT 0 COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
  PRIMARY KEY (`cid`),
  KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cache table for the Block module to store already built...';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cache_block`
--

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

--
-- Table structure for table `cache_bootstrap`
--

DROP TABLE IF EXISTS `cache_bootstrap`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cache_bootstrap` (
  `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
  `data` longblob DEFAULT NULL COMMENT 'A collection of data to cache.',
  `expire` int(11) NOT NULL DEFAULT 0 COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
  `created` int(11) NOT NULL DEFAULT 0 COMMENT 'A Unix timestamp indicating when the cache entry was created.',
  `serialized` smallint(6) NOT NULL DEFAULT 0 COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
  PRIMARY KEY (`cid`),
  KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cache table for data required to bootstrap Drupal, may be...';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cache_bootstrap`
--

LOCK TABLES `cache_bootstrap` WRITE;
/*!40000 ALTER TABLE `cache_bootstrap` DISABLE KEYS */;
INSERT INTO `cache_bootstrap` VALUES ('hook_info','a:25:{s:20:\"entity_property_info\";a:1:{s:5:\"group\";s:4:\"info\";}s:26:\"entity_property_info_alter\";a:1:{s:5:\"group\";s:4:\"info\";}s:15:\"i18n_field_info\";a:1:{s:5:\"group\";s:4:\"i18n\";}s:25:\"i18n_translation_set_info\";a:1:{s:5:\"group\";s:4:\"i18n\";}s:10:\"token_info\";a:1:{s:5:\"group\";s:6:\"tokens\";}s:16:\"token_info_alter\";a:1:{s:5:\"group\";s:6:\"tokens\";}s:6:\"tokens\";a:1:{s:5:\"group\";s:6:\"tokens\";}s:12:\"tokens_alter\";a:1:{s:5:\"group\";s:6:\"tokens\";}s:13:\"variable_info\";a:1:{s:5:\"group\";s:8:\"variable\";}s:19:\"variable_group_info\";a:1:{s:5:\"group\";s:8:\"variable\";}s:18:\"variable_type_info\";a:1:{s:5:\"group\";s:8:\"variable\";}s:28:\"variable_settings_form_alter\";a:1:{s:5:\"group\";s:8:\"variable\";}s:16:\"i18n_object_info\";a:1:{s:5:\"group\";s:4:\"i18n\";}s:19:\"i18n_string_objects\";a:1:{s:5:\"group\";s:4:\"i18n\";}s:19:\"i18n_string_refresh\";a:1:{s:5:\"group\";s:4:\"i18n\";}s:16:\"i18n_string_list\";a:1:{s:5:\"group\";s:4:\"i18n\";}s:16:\"i18n_string_info\";a:1:{s:5:\"group\";s:4:\"i18n\";}s:25:\"entity_translation_insert\";a:1:{s:5:\"group\";s:18:\"entity_translation\";}s:25:\"entity_translation_update\";a:1:{s:5:\"group\";s:18:\"entity_translation\";}s:25:\"entity_translation_delete\";a:1:{s:5:\"group\";s:18:\"entity_translation\";}s:12:\"features_api\";a:1:{s:5:\"group\";s:8:\"features\";}s:19:\"features_pipe_alter\";a:1:{s:5:\"group\";s:8:\"features\";}s:21:\"features_export_alter\";a:1:{s:5:\"group\";s:8:\"features\";}s:29:\"features_export_options_alter\";a:1:{s:5:\"group\";s:8:\"features\";}s:17:\"i18n_sync_options\";a:1:{s:5:\"group\";s:4:\"i18n\";}}',0,1538750673,1),('lookup_cache','a:63:{s:31:\"cVariableRealmDefaultController\";s:66:\"sites/all/modules/variable/variable_realm/variable_realm.class.inc\";s:26:\"cI18nVariableLanguageRealm\";s:60:\"sites/all/modules/i18n/i18n_variable/i18n_variable.class.inc\";s:24:\"cVariableStoreRealmStore\";s:66:\"sites/all/modules/variable/variable_store/variable_store.class.inc\";s:30:\"cDrupalDefaultEntityController\";s:19:\"includes/entity.inc\";s:32:\"cEntityTranslationHandlerFactory\";s:77:\"sites/all/modules/entity_translation/includes/translation.handler_factory.inc\";s:7:\"cgeoPHP\";b:0;s:7:\"igeoPHP\";b:0;s:7:\"tgeoPHP\";b:0;s:13:\"cGEOSGeometry\";b:0;s:13:\"iGEOSGeometry\";b:0;s:13:\"tGEOSGeometry\";b:0;s:20:\"cDatabaseTasks_mysql\";s:35:\"includes/database/mysql/install.inc\";s:20:\"cSelectQueryExtender\";s:28:\"includes/database/select.inc\";s:5:\"cview\";s:41:\"sites/all/modules/views/includes/view.inc\";s:25:\"cEntityFieldHandlerHelper\";s:77:\"sites/all/modules/entity/views/handlers/entity_views_field_handler_helper.inc\";s:29:\"cviews_plugin_display_default\";s:64:\"sites/all/modules/views/plugins/views_plugin_display_default.inc\";s:21:\"cviews_plugin_display\";s:56:\"sites/all/modules/views/plugins/views_plugin_display.inc\";s:31:\"cviews_plugin_localization_core\";s:66:\"sites/all/modules/views/plugins/views_plugin_localization_core.inc\";s:26:\"cviews_plugin_localization\";s:61:\"sites/all/modules/views/plugins/views_plugin_localization.inc\";s:26:\"cviews_plugin_display_page\";s:61:\"sites/all/modules/views/plugins/views_plugin_display_page.inc\";s:27:\"cviews_plugin_display_block\";s:62:\"sites/all/modules/views/plugins/views_plugin_display_block.inc\";s:26:\"cviews_plugin_display_feed\";s:61:\"sites/all/modules/views/plugins/views_plugin_display_feed.inc\";s:32:\"cviews_plugin_display_attachment\";s:67:\"sites/all/modules/views/plugins/views_plugin_display_attachment.inc\";s:25:\"cviews_plugin_access_perm\";s:60:\"sites/all/modules/views/plugins/views_plugin_access_perm.inc\";s:20:\"cviews_plugin_access\";s:55:\"sites/all/modules/views/plugins/views_plugin_access.inc\";s:25:\"cviews_handler_field_node\";s:65:\"sites/all/modules/views/modules/node/views_handler_field_node.inc\";s:20:\"cviews_handler_field\";s:56:\"sites/all/modules/views/handlers/views_handler_field.inc\";s:24:\"cviews_handler_sort_date\";s:60:\"sites/all/modules/views/handlers/views_handler_sort_date.inc\";s:19:\"cviews_handler_sort\";s:55:\"sites/all/modules/views/handlers/views_handler_sort.inc\";s:38:\"cviews_handler_filter_boolean_operator\";s:74:\"sites/all/modules/views/handlers/views_handler_filter_boolean_operator.inc\";s:21:\"cviews_handler_filter\";s:57:\"sites/all/modules/views/handlers/views_handler_filter.inc\";s:31:\"cviews_handler_filter_node_type\";s:71:\"sites/all/modules/views/modules/node/views_handler_filter_node_type.inc\";s:33:\"cviews_handler_filter_in_operator\";s:69:\"sites/all/modules/views/handlers/views_handler_filter_in_operator.inc\";s:27:\"cviews_plugin_query_default\";s:62:\"sites/all/modules/views/plugins/views_plugin_query_default.inc\";s:19:\"cviews_plugin_query\";s:54:\"sites/all/modules/views/plugins/views_plugin_query.inc\";s:27:\"cviews_plugin_style_default\";s:62:\"sites/all/modules/views/plugins/views_plugin_style_default.inc\";s:19:\"cviews_plugin_style\";s:54:\"sites/all/modules/views/plugins/views_plugin_style.inc\";s:24:\"cviews_plugin_row_fields\";s:59:\"sites/all/modules/views/plugins/views_plugin_row_fields.inc\";s:17:\"cviews_plugin_row\";s:52:\"sites/all/modules/views/plugins/views_plugin_row.inc\";s:24:\"cviews_plugin_pager_some\";s:59:\"sites/all/modules/views/plugins/views_plugin_pager_some.inc\";s:19:\"cviews_plugin_pager\";s:54:\"sites/all/modules/views/plugins/views_plugin_pager.inc\";s:24:\"cviews_plugin_cache_none\";s:59:\"sites/all/modules/views/plugins/views_plugin_cache_none.inc\";s:19:\"cviews_plugin_cache\";s:54:\"sites/all/modules/views/plugins/views_plugin_cache.inc\";s:32:\"cviews_plugin_exposed_form_basic\";s:67:\"sites/all/modules/views/plugins/views_plugin_exposed_form_basic.inc\";s:26:\"cviews_plugin_exposed_form\";s:61:\"sites/all/modules/views/plugins/views_plugin_exposed_form.inc\";s:13:\"cviews_plugin\";s:44:\"sites/all/modules/views/includes/plugins.inc\";s:19:\"cPagerDefault_mysql\";b:0;s:19:\"iPagerDefault_mysql\";b:0;s:19:\"tPagerDefault_mysql\";b:0;s:32:\"cEntityTranslationDefaultHandler\";s:69:\"sites/all/modules/entity_translation/includes/translation.handler.inc\";s:29:\"cEntityTranslationNodeHandler\";s:74:\"sites/all/modules/entity_translation/includes/translation.handler.node.inc\";s:31:\"ci18n_menu_link_translation_set\";s:46:\"sites/all/modules/i18n/i18n_menu/i18n_menu.inc\";s:21:\"ci18n_translation_set\";s:60:\"sites/all/modules/i18n/i18n_translation/i18n_translation.inc\";s:27:\"ci18n_string_object_wrapper\";s:50:\"sites/all/modules/i18n/i18n_string/i18n_string.inc\";s:20:\"ci18n_object_wrapper\";s:38:\"sites/all/modules/i18n/i18n_object.inc\";s:20:\"ci18n_field_instance\";s:48:\"sites/all/modules/i18n/i18n_field/i18n_field.inc\";s:30:\"ci18n_string_textgroup_default\";s:50:\"sites/all/modules/i18n/i18n_string/i18n_string.inc\";s:15:\"cCToolsCssCache\";s:47:\"sites/all/modules/ctools/includes/css-cache.inc\";s:9:\"cviews_ui\";s:60:\"sites/all/modules/views/plugins/export_ui/views_ui.class.php\";s:17:\"cctools_export_ui\";s:69:\"sites/all/modules/ctools/plugins/export_ui/ctools_export_ui.class.php\";s:16:\"cTableSort_mysql\";b:0;s:16:\"iTableSort_mysql\";b:0;s:16:\"tTableSort_mysql\";b:0;}',0,1652162474,1),('module_implements','a:217:{s:15:\"stream_wrappers\";a:1:{s:6:\"system\";b:0;}s:23:\"module_implements_alter\";a:6:{s:12:\"addressfield\";b:0;s:6:\"entity\";b:0;s:10:\"i18n_field\";b:0;s:8:\"variable\";b:0;s:18:\"entity_translation\";b:0;s:5:\"title\";b:0;}s:21:\"stream_wrappers_alter\";a:0:{}s:17:\"url_inbound_alter\";a:0:{}s:12:\"custom_theme\";a:2:{s:6:\"system\";b:0;s:8:\"views_ui\";b:0;}s:11:\"admin_paths\";a:11:{s:5:\"block\";b:0;s:4:\"imce\";b:0;s:4:\"node\";b:0;s:7:\"overlay\";b:0;s:8:\"shortcut\";b:0;s:6:\"system\";b:0;s:8:\"taxonomy\";b:0;s:11:\"translation\";b:0;s:4:\"user\";b:0;s:13:\"i18n_taxonomy\";b:0;s:18:\"entity_translation\";b:0;}s:11:\"entity_info\";a:8:{s:5:\"title\";b:0;s:7:\"comment\";b:0;s:16:\"i18n_translation\";b:0;s:4:\"node\";b:0;s:6:\"system\";b:0;s:8:\"taxonomy\";b:0;s:4:\"user\";b:0;s:18:\"entity_translation\";b:0;}s:9:\"node_info\";a:2:{s:6:\"photos\";b:0;s:5:\"forum\";b:0;}s:11:\"query_alter\";a:0:{}s:24:\"query_translatable_alter\";a:0:{}s:28:\"query_node_type_access_alter\";a:0:{}s:25:\"i18n_translation_set_info\";a:3:{s:9:\"i18n_menu\";s:4:\"i18n\";s:9:\"i18n_path\";b:0;s:13:\"i18n_taxonomy\";s:4:\"i18n\";}s:31:\"i18n_translation_set_info_alter\";a:0:{}s:6:\"schema\";a:35:{s:14:\"variable_store\";b:0;s:5:\"block\";b:0;s:7:\"comment\";b:0;s:7:\"contact\";b:0;s:6:\"ctools\";b:0;s:5:\"dblog\";b:0;s:26:\"entity_translation_upgrade\";b:0;s:5:\"field\";b:0;s:17:\"field_sql_storage\";b:0;s:6:\"filter\";b:0;s:8:\"geocoder\";b:0;s:16:\"i18n_translation\";b:0;s:5:\"image\";b:0;s:11:\"l10n_update\";b:0;s:9:\"libraries\";b:0;s:6:\"locale\";b:0;s:8:\"location\";b:0;s:4:\"menu\";b:0;s:4:\"node\";b:0;s:6:\"photos\";b:0;s:13:\"photos_access\";b:0;s:3:\"rdf\";b:0;s:8:\"shortcut\";b:0;s:6:\"system\";b:0;s:8:\"taxonomy\";b:0;s:6:\"update\";b:0;s:4:\"user\";b:0;s:8:\"variable\";b:0;s:5:\"forum\";b:0;s:9:\"i18n_path\";b:0;s:11:\"i18n_string\";b:0;s:5:\"views\";b:0;s:18:\"entity_translation\";b:0;s:8:\"features\";b:0;s:10:\"i18n_block\";b:0;}s:16:\"field_read_field\";a:0:{}s:18:\"ctools_plugin_type\";a:5:{s:12:\"addressfield\";b:0;s:6:\"ctools\";b:0;s:8:\"geocoder\";b:0;s:8:\"geofield\";b:0;s:8:\"views_ui\";b:0;}s:23:\"ctools_plugin_directory\";a:7:{s:12:\"addressfield\";b:0;s:6:\"ctools\";b:0;s:6:\"entity\";b:0;s:8:\"geocoder\";b:0;s:8:\"geofield\";b:0;s:8:\"location\";b:0;s:8:\"views_ui\";b:0;}s:23:\"ctools_plugin_pre_alter\";a:0:{}s:24:\"ctools_plugin_post_alter\";a:0:{}s:12:\"schema_alter\";a:5:{s:11:\"l10n_update\";b:0;s:9:\"i18n_menu\";b:0;s:13:\"i18n_taxonomy\";b:0;s:11:\"i18n_string\";b:0;s:10:\"i18n_block\";b:0;}s:17:\"entity_info_alter\";a:7:{s:6:\"locale\";b:0;s:3:\"rdf\";b:0;s:5:\"forum\";b:0;s:13:\"i18n_taxonomy\";b:0;s:6:\"entity\";b:0;s:18:\"entity_translation\";b:0;s:5:\"title\";b:0;}s:11:\"rdf_mapping\";a:5:{s:7:\"comment\";b:0;s:4:\"node\";b:0;s:8:\"taxonomy\";b:0;s:4:\"user\";b:0;s:5:\"forum\";b:0;}s:17:\"admin_paths_alter\";a:0:{}s:19:\"menu_get_item_alter\";a:0:{}s:18:\"url_outbound_alter\";a:1:{s:6:\"locale\";b:0;}s:13:\"library_alter\";a:2:{s:6:\"locale\";b:0;s:8:\"views_ui\";b:0;}s:4:\"init\";a:12:{s:14:\"variable_realm\";b:0;s:6:\"ctools\";b:0;s:5:\"dblog\";b:0;s:26:\"entity_translation_upgrade\";b:0;s:13:\"i18n_redirect\";b:0;s:11:\"i18n_select\";b:0;s:6:\"locale\";b:0;s:7:\"overlay\";b:0;s:6:\"photos\";b:0;s:13:\"photos_access\";b:0;s:6:\"system\";b:0;s:6:\"update\";b:0;}s:17:\"date_format_types\";a:1:{s:6:\"system\";b:0;}s:23:\"date_format_types_alter\";a:0:{}s:24:\"overlay_child_initialize\";a:1:{s:7:\"overlay\";b:0;}s:14:\"libraries_info\";a:2:{s:6:\"photos\";b:0;s:7:\"proj4js\";b:0;}s:25:\"libraries_info_file_paths\";a:0:{}s:20:\"libraries_info_alter\";a:0:{}s:13:\"photos_access\";a:2:{s:6:\"photos\";b:0;s:13:\"photos_access\";b:0;}s:22:\"menu_site_status_alter\";a:1:{s:4:\"user\";b:0;}s:12:\"element_info\";a:12:{s:12:\"addressfield\";b:0;s:10:\"contextual\";b:0;s:8:\"field_ui\";b:0;s:4:\"file\";b:0;s:6:\"filter\";b:0;s:8:\"geofield\";b:0;s:4:\"gmap\";b:0;s:4:\"imce\";b:0;s:8:\"location\";b:0;s:6:\"system\";b:0;s:4:\"user\";b:0;s:8:\"variable\";b:0;}s:4:\"gmap\";a:1:{s:4:\"gmap\";b:0;}s:18:\"element_info_alter\";a:2:{s:6:\"ctools\";b:0;s:11:\"i18n_string\";b:0;}s:10:\"form_alter\";a:8:{s:11:\"l10n_update\";b:0;s:6:\"locale\";b:0;s:7:\"overlay\";b:0;s:6:\"photos\";b:0;s:13:\"photos_access\";b:0;s:13:\"i18n_taxonomy\";b:0;s:18:\"entity_translation\";b:0;s:8:\"variable\";b:0;}s:38:\"form_system_performance_settings_alter\";a:1:{s:5:\"block\";b:0;}s:11:\"node_grants\";a:1:{s:13:\"photos_access\";b:0;}s:28:\"variable_settings_form_alter\";a:1:{s:14:\"variable_realm\";s:8:\"variable\";}s:13:\"variable_info\";a:13:{s:14:\"variable_realm\";s:8:\"variable\";s:13:\"i18n_variable\";s:8:\"variable\";s:9:\"i18n_node\";s:8:\"variable\";s:11:\"i18n_select\";s:8:\"variable\";s:6:\"locale\";b:0;s:4:\"menu\";b:0;s:4:\"node\";b:0;s:6:\"system\";b:0;s:4:\"user\";b:0;s:5:\"forum\";b:0;s:4:\"i18n\";s:8:\"variable\";s:11:\"i18n_string\";s:8:\"variable\";s:9:\"i18n_sync\";s:8:\"variable\";}s:18:\"variable_type_info\";a:10:{s:14:\"variable_realm\";s:8:\"variable\";s:6:\"locale\";b:0;s:4:\"menu\";b:0;s:4:\"node\";b:0;s:6:\"system\";b:0;s:8:\"taxonomy\";b:0;s:4:\"user\";b:0;s:8:\"variable\";s:8:\"variable\";s:4:\"i18n\";s:8:\"variable\";s:11:\"i18n_string\";s:8:\"variable\";}s:24:\"variable_type_info_alter\";a:0:{}s:19:\"variable_info_alter\";a:2:{s:11:\"translation\";b:0;s:9:\"i18n_menu\";b:0;}s:28:\"page_delivery_callback_alter\";a:1:{s:7:\"overlay\";b:0;}s:10:\"page_build\";a:3:{s:5:\"block\";b:0;s:9:\"dashboard\";b:0;s:7:\"toolbar\";b:0;}s:22:\"query_block_load_alter\";a:0:{}s:16:\"block_list_alter\";a:7:{s:5:\"block\";b:0;s:6:\"ctools\";b:0;s:9:\"dashboard\";b:0;s:11:\"i18n_select\";b:0;s:4:\"node\";b:0;s:7:\"overlay\";b:0;s:10:\"i18n_block\";b:0;}s:17:\"dashboard_regions\";a:1:{s:9:\"dashboard\";b:0;}s:23:\"dashboard_regions_alter\";a:0:{}s:16:\"block_view_alter\";a:3:{s:4:\"menu\";b:0;s:9:\"i18n_menu\";b:0;s:10:\"i18n_block\";b:0;}s:28:\"block_view_system_main_alter\";a:0:{}s:10:\"page_alter\";a:5:{s:6:\"ctools\";b:0;s:7:\"overlay\";b:0;s:8:\"shortcut\";b:0;s:6:\"system\";b:0;s:5:\"views\";b:0;}s:14:\"file_url_alter\";a:0:{}s:32:\"query_preferred_menu_links_alter\";a:1:{s:9:\"i18n_menu\";b:0;}s:23:\"query_node_access_alter\";a:2:{s:11:\"i18n_select\";b:0;s:4:\"node\";b:0;}s:26:\"translated_menu_link_alter\";a:2:{s:4:\"user\";b:0;s:9:\"i18n_menu\";b:0;}s:22:\"menu_local_tasks_alter\";a:5:{s:6:\"ctools\";b:0;s:4:\"node\";b:0;s:5:\"forum\";b:0;s:10:\"i18n_forum\";b:0;s:18:\"entity_translation\";b:0;}s:20:\"shortcut_default_set\";a:0:{}s:21:\"menu_breadcrumb_alter\";a:0:{}s:14:\"rdf_namespaces\";a:1:{s:3:\"rdf\";b:0;}s:8:\"js_alter\";a:1:{s:6:\"locale\";b:0;}s:15:\"html_head_alter\";a:0:{}s:9:\"css_alter\";a:1:{s:6:\"locale\";b:0;}s:4:\"exit\";a:1:{s:7:\"overlay\";b:0;}s:12:\"requirements\";a:10:{s:5:\"color\";b:0;s:6:\"ctools\";b:0;s:4:\"file\";b:0;s:6:\"geophp\";b:0;s:5:\"image\";b:0;s:11:\"l10n_update\";b:0;s:4:\"node\";b:0;s:7:\"proj4js\";b:0;s:6:\"system\";b:0;s:6:\"update\";b:0;}s:20:\"theme_registry_alter\";a:0:{}s:19:\"i18n_translate_path\";a:5:{s:9:\"i18n_node\";b:0;s:9:\"i18n_menu\";b:0;s:9:\"i18n_path\";b:0;s:13:\"i18n_taxonomy\";b:0;s:10:\"i18n_forum\";b:0;}s:25:\"i18n_translate_path_alter\";a:0:{}s:20:\"form_user_pass_alter\";a:0:{}s:8:\"watchdog\";a:1:{s:5:\"dblog\";b:0;}s:30:\"query_user_load_multiple_alter\";a:0:{}s:17:\"node_grants_alter\";a:0:{}s:11:\"node_access\";a:2:{s:4:\"node\";b:0;s:6:\"photos\";b:0;}s:34:\"block_view_system_navigation_alter\";a:0:{}s:28:\"block_view_search_form_alter\";a:0:{}s:33:\"block_view_system_user_menu_alter\";a:0:{}s:11:\"filter_info\";a:4:{s:6:\"filter\";b:0;s:4:\"gmap\";b:0;s:6:\"photos\";b:0;s:3:\"php\";b:0;}s:17:\"filter_info_alter\";a:0:{}s:24:\"block_view_block_3_alter\";a:0:{}s:27:\"language_switch_links_alter\";a:3:{s:13:\"languageicons\";b:0;s:11:\"translation\";b:0;s:4:\"i18n\";b:0;}s:40:\"block_view_locale_language_content_alter\";a:0:{}s:9:\"views_api\";a:21:{s:5:\"title\";b:0;s:12:\"addressfield\";b:0;s:7:\"comment\";b:0;s:7:\"contact\";b:0;s:6:\"entity\";b:0;s:5:\"field\";b:0;s:4:\"file\";b:0;s:6:\"filter\";b:0;s:8:\"geofield\";b:0;s:5:\"image\";b:0;s:6:\"locale\";b:0;s:8:\"location\";b:0;s:4:\"node\";b:0;s:6:\"photos\";b:0;s:6:\"system\";b:0;s:8:\"taxonomy\";b:0;s:11:\"translation\";b:0;s:4:\"user\";b:0;s:13:\"i18n_taxonomy\";b:0;s:5:\"views\";b:0;s:18:\"entity_translation\";b:0;}s:15:\"views_api_alter\";a:0:{}s:13:\"views_plugins\";a:7:{s:7:\"comment\";b:0;s:6:\"entity\";b:0;s:4:\"gmap\";b:0;s:4:\"node\";b:0;s:8:\"taxonomy\";b:0;s:4:\"user\";b:0;s:5:\"views\";b:0;}s:10:\"views_data\";a:14:{s:7:\"comment\";b:0;s:6:\"entity\";b:0;s:5:\"field\";b:0;s:6:\"filter\";b:0;s:6:\"locale\";b:0;s:8:\"location\";b:0;s:4:\"node\";b:0;s:6:\"photos\";b:0;s:13:\"photos_access\";b:0;s:6:\"system\";b:0;s:8:\"taxonomy\";b:0;s:4:\"user\";b:0;s:5:\"views\";b:0;s:18:\"entity_translation\";b:0;}s:20:\"entity_property_info\";a:1:{s:6:\"entity\";s:4:\"info\";}s:10:\"field_info\";a:9:{s:12:\"addressfield\";b:0;s:4:\"file\";b:0;s:8:\"geofield\";b:0;s:5:\"image\";b:0;s:4:\"list\";b:0;s:12:\"location_cck\";b:0;s:6:\"number\";b:0;s:8:\"taxonomy\";b:0;s:4:\"text\";b:0;}s:16:\"field_info_alter\";a:7:{s:5:\"title\";b:0;s:6:\"entity\";b:0;s:10:\"i18n_field\";b:0;s:4:\"user\";b:0;s:13:\"i18n_taxonomy\";b:0;s:18:\"entity_translation\";b:0;s:9:\"i18n_sync\";b:0;}s:17:\"field_widget_info\";a:10:{s:12:\"addressfield\";b:0;s:4:\"file\";b:0;s:8:\"geocoder\";b:0;s:8:\"geofield\";b:0;s:5:\"image\";b:0;s:12:\"location_cck\";b:0;s:6:\"number\";b:0;s:7:\"options\";b:0;s:8:\"taxonomy\";b:0;s:4:\"text\";b:0;}s:23:\"field_widget_info_alter\";a:2:{s:4:\"list\";b:0;s:8:\"taxonomy\";b:0;}s:20:\"field_formatter_info\";a:12:{s:5:\"title\";b:0;s:12:\"addressfield\";b:0;s:4:\"file\";b:0;s:8:\"geofield\";b:0;s:10:\"i18n_field\";b:0;s:5:\"image\";b:0;s:4:\"list\";b:0;s:12:\"location_cck\";b:0;s:6:\"number\";b:0;s:8:\"taxonomy\";b:0;s:4:\"text\";b:0;s:13:\"i18n_taxonomy\";b:0;}s:15:\"i18n_field_info\";a:1:{s:10:\"i18n_field\";s:4:\"i18n\";}s:21:\"i18n_field_info_alter\";a:0:{}s:26:\"field_formatter_info_alter\";a:0:{}s:18:\"field_storage_info\";a:1:{s:17:\"field_sql_storage\";b:0;}s:24:\"field_storage_info_alter\";a:0:{}s:27:\"field_storage_details_alter\";a:1:{s:13:\"i18n_taxonomy\";b:0;}s:19:\"field_read_instance\";a:0:{}s:26:\"entity_property_info_alter\";a:1:{s:6:\"entity\";s:4:\"info\";}s:33:\"entity_views_field_handlers_alter\";a:0:{}s:22:\"field_views_data_alter\";a:1:{s:5:\"title\";b:0;}s:16:\"views_data_alter\";a:8:{s:7:\"comment\";b:0;s:7:\"contact\";b:0;s:5:\"field\";b:0;s:6:\"locale\";b:0;s:6:\"photos\";b:0;s:8:\"taxonomy\";b:0;s:11:\"translation\";b:0;s:18:\"entity_translation\";b:0;}s:19:\"views_plugins_alter\";a:1:{s:8:\"views_ui\";b:0;}s:36:\"views_plugin_option_definition_alter\";a:0:{}s:25:\"views_default_views_alter\";a:0:{}s:23:\"translation_pre_process\";a:0:{}s:24:\"translation_post_process\";a:0:{}s:14:\"views_pre_view\";a:0:{}s:37:\"views_handler_option_definition_alter\";a:0:{}s:15:\"views_pre_build\";a:0:{}s:17:\"views_query_alter\";a:0:{}s:25:\"views_query_substitutions\";a:3:{s:4:\"node\";b:0;s:4:\"user\";b:0;s:5:\"views\";b:0;}s:16:\"views_post_build\";a:0:{}s:17:\"views_pre_execute\";a:0:{}s:17:\"query_views_alter\";a:1:{s:5:\"views\";b:0;}s:26:\"query_views_articles_alter\";a:0:{}s:18:\"views_post_execute\";a:0:{}s:16:\"views_pre_render\";a:2:{s:4:\"gmap\";b:0;s:13:\"i18n_taxonomy\";b:0;}s:17:\"views_post_render\";a:0:{}s:37:\"block_view_views_articles_block_alter\";a:0:{}s:21:\"form_user_login_alter\";a:0:{}s:25:\"overlay_parent_initialize\";a:1:{s:7:\"overlay\";b:0;}s:17:\"query_pager_alter\";a:0:{}s:24:\"block_view_block_2_alter\";a:0:{}s:27:\"menu_contextual_links_alter\";a:0:{}s:27:\"contextual_links_view_alter\";a:2:{s:8:\"views_ui\";b:0;s:5:\"views\";b:0;}s:14:\"username_alter\";a:0:{}s:30:\"query_node_load_multiple_alter\";a:0:{}s:22:\"field_storage_pre_load\";a:0:{}s:31:\"field_available_languages_alter\";a:0:{}s:17:\"field_attach_load\";a:2:{s:5:\"title\";b:0;s:8:\"geocoder\";b:0;}s:20:\"field_language_alter\";a:2:{s:6:\"locale\";b:0;s:18:\"entity_translation\";b:0;}s:11:\"entity_load\";a:3:{s:5:\"title\";b:0;s:3:\"rdf\";b:0;s:18:\"entity_translation\";b:0;}s:9:\"node_load\";a:6:{s:7:\"comment\";b:0;s:13:\"location_node\";b:0;s:6:\"photos\";b:0;s:13:\"photos_access\";b:0;s:4:\"user\";b:0;s:5:\"forum\";b:0;}s:22:\"entity_view_mode_alter\";a:0:{}s:19:\"field_display_alter\";a:0:{}s:24:\"field_display_node_alter\";a:1:{s:4:\"node\";b:0;}s:19:\"entity_prepare_view\";a:1:{s:5:\"title\";b:0;}s:12:\"field_access\";a:0:{}s:23:\"field_attach_view_alter\";a:4:{s:10:\"i18n_field\";b:0;s:3:\"rdf\";b:0;s:13:\"i18n_taxonomy\";b:0;s:18:\"entity_translation\";b:0;}s:9:\"node_view\";a:8:{s:7:\"comment\";b:0;s:9:\"i18n_node\";b:0;s:13:\"location_node\";b:0;s:6:\"photos\";b:0;s:11:\"translation\";b:0;s:5:\"forum\";b:0;s:10:\"i18n_forum\";b:0;s:18:\"entity_translation\";b:0;}s:26:\"query_comment_filter_alter\";a:1:{s:18:\"entity_translation\";b:0;}s:18:\"field_extra_fields\";a:9:{s:7:\"comment\";b:0;s:6:\"entity\";b:0;s:9:\"i18n_node\";b:0;s:8:\"location\";b:0;s:4:\"node\";b:0;s:8:\"taxonomy\";b:0;s:4:\"user\";b:0;s:13:\"i18n_taxonomy\";b:0;s:18:\"entity_translation\";b:0;}s:45:\"query_taxonomy_vocabulary_load_multiple_alter\";a:0:{}s:24:\"taxonomy_vocabulary_load\";a:0:{}s:24:\"field_extra_fields_alter\";a:1:{s:5:\"title\";b:0;}s:32:\"field_extra_fields_display_alter\";a:0:{}s:11:\"entity_view\";a:0:{}s:15:\"node_view_alter\";a:1:{s:9:\"i18n_node\";b:0;}s:17:\"entity_view_alter\";a:0:{}s:34:\"language_fallback_candidates_alter\";a:0:{}s:29:\"field_attach_preprocess_alter\";a:0:{}s:42:\"query_i18n_translation_load_multiple_alter\";a:0:{}s:21:\"i18n_translation_load\";a:0:{}s:16:\"i18n_object_info\";a:8:{s:6:\"entity\";s:4:\"i18n\";s:12:\"i18n_contact\";s:4:\"i18n\";s:10:\"i18n_field\";s:4:\"i18n\";s:9:\"i18n_node\";s:4:\"i18n\";s:9:\"i18n_menu\";s:4:\"i18n\";s:9:\"i18n_path\";b:0;s:13:\"i18n_taxonomy\";s:4:\"i18n\";s:10:\"i18n_block\";s:4:\"i18n\";}s:22:\"i18n_object_info_alter\";a:2:{s:11:\"i18n_string\";b:0;s:10:\"i18n_field\";b:0;}s:28:\"i18n_string_list_field_alter\";a:0:{}s:16:\"i18n_string_info\";a:7:{s:6:\"entity\";s:4:\"i18n\";s:12:\"i18n_contact\";s:4:\"i18n\";s:10:\"i18n_field\";s:4:\"i18n\";s:9:\"i18n_node\";s:4:\"i18n\";s:9:\"i18n_menu\";s:4:\"i18n\";s:13:\"i18n_taxonomy\";s:4:\"i18n\";s:10:\"i18n_block\";s:4:\"i18n\";}s:22:\"i18n_string_info_alter\";a:1:{s:11:\"i18n_string\";b:0;}s:30:\"query_file_load_multiple_alter\";a:0:{}s:9:\"file_load\";a:0:{}s:39:\"form_system_site_maintenance_mode_alter\";a:0:{}s:9:\"user_load\";a:1:{s:6:\"photos\";b:0;}s:9:\"user_view\";a:2:{s:6:\"photos\";b:0;s:4:\"user\";b:0;}s:15:\"user_view_alter\";a:0:{}s:20:\"image_default_styles\";a:1:{s:5:\"image\";b:0;}s:17:\"image_effect_info\";a:1:{s:5:\"image\";b:0;}s:23:\"image_effect_info_alter\";a:0:{}s:18:\"image_styles_alter\";a:0:{}s:50:\"block_view_views_moorings_gallery_2012_block_alter\";a:0:{}s:50:\"block_view_views_moorings_gallery_2014_block_alter\";a:0:{}s:15:\"cron_queue_info\";a:0:{}s:21:\"cron_queue_info_alter\";a:0:{}s:4:\"cron\";a:8:{s:6:\"ctools\";b:0;s:5:\"dblog\";b:0;s:5:\"field\";b:0;s:11:\"l10n_update\";b:0;s:4:\"node\";b:0;s:6:\"photos\";b:0;s:6:\"system\";b:0;s:6:\"update\";b:0;}s:17:\"system_info_alter\";a:6:{s:9:\"dashboard\";b:0;s:5:\"field\";b:0;s:7:\"overlay\";b:0;s:6:\"system\";b:0;s:7:\"toolbar\";b:0;s:4:\"user\";b:0;}s:17:\"system_theme_info\";a:0:{}s:24:\"system_theme_engine_info\";a:0:{}s:21:\"update_projects_alter\";a:0:{}s:17:\"field_attach_form\";a:3:{s:5:\"title\";b:0;s:10:\"i18n_field\";b:0;s:18:\"entity_translation\";b:0;}s:28:\"form_user_profile_form_alter\";a:4:{s:5:\"block\";b:0;s:7:\"contact\";b:0;s:7:\"overlay\";b:0;s:6:\"system\";b:0;}s:25:\"user_cancel_methods_alter\";a:0:{}s:30:\"form_user_admin_settings_alter\";a:1:{s:7:\"contact\";b:0;}s:41:\"form_field_ui_display_overview_form_alter\";a:0:{}s:4:\"help\";a:50:{s:5:\"title\";b:0;s:5:\"block\";b:0;s:5:\"color\";b:0;s:7:\"comment\";b:0;s:7:\"contact\";b:0;s:10:\"contextual\";b:0;s:9:\"dashboard\";b:0;s:5:\"dblog\";b:0;s:8:\"features\";b:0;s:5:\"field\";b:0;s:17:\"field_sql_storage\";b:0;s:8:\"field_ui\";b:0;s:4:\"file\";b:0;s:6:\"filter\";b:0;s:5:\"forum\";b:0;s:4:\"help\";b:0;s:4:\"i18n\";b:0;s:10:\"i18n_block\";b:0;s:10:\"i18n_forum\";b:0;s:9:\"i18n_menu\";b:0;s:9:\"i18n_node\";b:0;s:13:\"i18n_redirect\";b:0;s:11:\"i18n_string\";b:0;s:9:\"i18n_sync\";b:0;s:13:\"i18n_taxonomy\";b:0;s:5:\"image\";b:0;s:11:\"l10n_update\";b:0;s:13:\"languageicons\";b:0;s:9:\"libraries\";b:0;s:4:\"list\";b:0;s:6:\"locale\";b:0;s:8:\"location\";b:0;s:4:\"menu\";b:0;s:4:\"node\";b:0;s:6:\"number\";b:0;s:7:\"options\";b:0;s:7:\"overlay\";b:0;s:4:\"path\";b:0;s:3:\"php\";b:0;s:3:\"rdf\";b:0;s:8:\"shortcut\";b:0;s:6:\"system\";b:0;s:8:\"taxonomy\";b:0;s:4:\"text\";b:0;s:7:\"toolbar\";b:0;s:11:\"translation\";b:0;s:6:\"update\";b:0;s:4:\"user\";b:0;s:5:\"views\";b:0;s:8:\"views_ui\";b:0;}s:10:\"permission\";a:34:{s:5:\"block\";b:0;s:7:\"comment\";b:0;s:7:\"contact\";b:0;s:10:\"contextual\";b:0;s:6:\"ctools\";b:0;s:9:\"dashboard\";b:0;s:5:\"field\";b:0;s:6:\"filter\";b:0;s:8:\"geocoder\";b:0;s:13:\"gmap_location\";b:0;s:9:\"i18n_node\";b:0;s:5:\"image\";b:0;s:4:\"imce\";b:0;s:9:\"libraries\";b:0;s:6:\"locale\";b:0;s:8:\"location\";b:0;s:4:\"menu\";b:0;s:4:\"node\";b:0;s:7:\"overlay\";b:0;s:4:\"path\";b:0;s:6:\"photos\";b:0;s:3:\"php\";b:0;s:8:\"shortcut\";b:0;s:6:\"system\";b:0;s:8:\"taxonomy\";b:0;s:7:\"toolbar\";b:0;s:11:\"translation\";b:0;s:4:\"user\";b:0;s:5:\"forum\";b:0;s:11:\"i18n_string\";b:0;s:5:\"views\";b:0;s:18:\"entity_translation\";b:0;s:8:\"features\";b:0;s:10:\"i18n_block\";b:0;}s:25:\"form_system_modules_alter\";a:2:{s:6:\"update\";b:0;s:8:\"features\";b:0;}s:27:\"form_user_filter_form_alter\";a:0:{}s:21:\"query_tablesort_alter\";a:0:{}s:15:\"user_operations\";a:1:{s:4:\"user\";b:0;}s:29:\"form_user_admin_account_alter\";a:0:{}s:28:\"block_view_node_recent_alter\";a:0:{}s:25:\"block_view_user_new_alter\";a:0:{}s:31:\"block_view_comment_recent_alter\";a:0:{}s:29:\"block_view_forum_active_alter\";a:0:{}s:26:\"block_view_forum_new_alter\";a:0:{}s:28:\"block_view_user_online_alter\";a:0:{}s:5:\"forms\";a:5:{s:7:\"comment\";b:0;s:9:\"dashboard\";b:0;s:6:\"entity\";b:0;s:4:\"node\";b:0;s:5:\"views\";b:0;}s:12:\"node_prepare\";a:5:{s:7:\"comment\";b:0;s:9:\"i18n_node\";b:0;s:4:\"menu\";b:0;s:11:\"translation\";b:0;s:9:\"i18n_sync\";b:0;}s:29:\"field_widget_properties_alter\";a:0:{}s:34:\"field_widget_properties_node_alter\";a:0:{}s:23:\"field_widget_form_alter\";a:2:{s:10:\"i18n_field\";b:0;s:26:\"location_gmap_find_address\";b:0;}s:50:\"field_widget_text_textarea_with_summary_form_alter\";a:0:{}s:38:\"field_widget_text_textfield_form_alter\";a:0:{}s:20:\"form_node_form_alter\";a:9:{s:7:\"comment\";b:0;s:9:\"i18n_node\";b:0;s:6:\"locale\";b:0;s:13:\"location_node\";b:0;s:4:\"menu\";b:0;s:4:\"path\";b:0;s:11:\"translation\";b:0;s:5:\"forum\";b:0;s:9:\"i18n_menu\";b:0;}s:25:\"form_page_node_form_alter\";a:0:{}s:11:\"locationapi\";a:3:{s:8:\"location\";b:0;s:12:\"location_cck\";b:0;s:13:\"location_node\";b:0;}s:15:\"countries_alter\";a:0:{}s:22:\"location_element_alter\";a:0:{}s:43:\"form_system_site_information_settings_alter\";a:0:{}s:39:\"form_i18n_node_select_translation_alter\";a:0:{}s:32:\"form_block_admin_configure_alter\";a:3:{s:9:\"dashboard\";b:0;s:4:\"node\";b:0;s:10:\"i18n_block\";b:0;}s:45:\"field_widget_taxonomy_autocomplete_form_alter\";a:1:{s:18:\"entity_translation\";b:0;}s:35:\"field_widget_image_image_form_alter\";a:0:{}s:28:\"form_article_node_form_alter\";a:0:{}}',0,1652163438,1),('system_list','a:3:{s:14:\"module_enabled\";a:80:{s:9:\"i18n_user\";O:8:\"stdClass\":9:{s:8:\"filename\";s:49:\"sites/all/modules/i18n/i18n_user/i18n_user.module\";s:4:\"name\";s:9:\"i18n_user\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:6:\"-10000\";s:4:\"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:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}}s:14:\"variable_realm\";O:8:\"stdClass\":9:{s:8:\"filename\";s:63:\"sites/all/modules/variable/variable_realm/variable_realm.module\";s:4:\"name\";s:14:\"variable_realm\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7000\";s:6:\"weight\";s:5:\"-1000\";s:4:\"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:1410352904;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:14:\"variable_store\";O:8:\"stdClass\":9:{s:8:\"filename\";s:63:\"sites/all/modules/variable/variable_store/variable_store.module\";s:4:\"name\";s:14:\"variable_store\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7000\";s:6:\"weight\";s:5:\"-1000\";s:4:\"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:1410352904;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:13:\"i18n_variable\";O:8:\"stdClass\":9:{s:8:\"filename\";s:57:\"sites/all/modules/i18n/i18n_variable/i18n_variable.module\";s:4:\"name\";s:13:\"i18n_variable\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7004\";s:6:\"weight\";s:4:\"-900\";s:4:\"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:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:5:\"block\";O:8:\"stdClass\":9:{s:8:\"filename\";s:26:\"modules/block/block.module\";s:4:\"name\";s:5:\"block\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7009\";s:6:\"weight\";s:2:\"-5\";s:4:\"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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:12:\"addressfield\";O:8:\"stdClass\":9:{s:8:\"filename\";s:50:\"sites/all/modules/addressfield/addressfield.module\";s:4:\"name\";s:12:\"addressfield\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7001\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:12:{s:4:\"name\";s:13:\"Address Field\";s:11:\"description\";s:64:\"Manage a flexible address field, implementing the xNAL standard.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:6:\"Fields\";s:12:\"dependencies\";a:1:{i:0;s:6:\"ctools\";}s:5:\"files\";a:4:{i:0;s:24:\"addressfield.migrate.inc\";i:1;s:62:\"views/addressfield_views_handler_field_administrative_area.inc\";i:2;s:50:\"views/addressfield_views_handler_field_country.inc\";i:3;s:51:\"views/addressfield_views_handler_filter_country.inc\";}s:7:\"version\";s:7:\"7.x-1.2\";s:7:\"project\";s:12:\"addressfield\";s:9:\"datestamp\";s:10:\"1444254070\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:11:\"chartModule\";O:8:\"stdClass\":9:{s:8:\"filename\";s:52:\"sites/default/modules/chartModule/chartModule.module\";s:4:\"name\";s:11:\"chartModule\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:11:{s:4:\"name\";s:11:\"chartModule\";s:11:\"description\";s:32:\"weather forecast in chart format\";s:4:\"core\";s:3:\"7.x\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:15:\"css/general.css\";s:49:\"sites/default/modules/chartModule/css/general.css\";}}s:7:\"package\";s:22:\"Meteo at Uniparthenope\";s:5:\"mtime\";i:1424957246;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;}}s:5:\"color\";O:8:\"stdClass\":9:{s:8:\"filename\";s:26:\"modules/color/color.module\";s:4:\"name\";s:5:\"color\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7001\";s:6:\"weight\";s:1:\"0\";s:4:\"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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:7:\"comment\";O:8:\"stdClass\":9:{s:8:\"filename\";s:30:\"modules/comment/comment.module\";s:4:\"name\";s:7:\"comment\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7009\";s:6:\"weight\";s:1:\"0\";s:4:\"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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:7:\"contact\";O:8:\"stdClass\":9:{s:8:\"filename\";s:30:\"modules/contact/contact.module\";s:4:\"name\";s:7:\"contact\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7003\";s:6:\"weight\";s:1:\"0\";s:4:\"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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:10:\"contextual\";O:8:\"stdClass\":9:{s:8:\"filename\";s:36:\"modules/contextual/contextual.module\";s:4:\"name\";s:10:\"contextual\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:6:\"ctools\";O:8:\"stdClass\":9:{s:8:\"filename\";s:38:\"sites/all/modules/ctools/ctools.module\";s:4:\"name\";s:6:\"ctools\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7003\";s:6:\"weight\";s:1:\"0\";s:4:\"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:14:{i:0;s:20:\"includes/context.inc\";i:1;s:22:\"includes/css-cache.inc\";i:2;s:22:\"includes/math-expr.inc\";i:3;s:21:\"includes/stylizer.inc\";i:4;s:18:\"tests/context.test\";i:5;s:14:\"tests/css.test\";i:6;s:20:\"tests/css_cache.test\";i:7;s:25:\"tests/ctools.plugins.test\";i:8;s:17:\"tests/ctools.test\";i:9;s:26:\"tests/math_expression.test\";i:10;s:32:\"tests/math_expression_stack.test\";i:11;s:23:\"tests/object_cache.test\";i:12;s:28:\"tests/object_cache_unit.test\";i:13;s:22:\"tests/page_tokens.test\";}s:7:\"version\";s:8:\"7.x-1.14\";s:7:\"project\";s:6:\"ctools\";s:9:\"datestamp\";s:10:\"1519455788\";s:5:\"mtime\";i:1537955055;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:9:\"dashboard\";O:8:\"stdClass\":9:{s:8:\"filename\";s:34:\"modules/dashboard/dashboard.module\";s:4:\"name\";s:9:\"dashboard\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:5:\"dblog\";O:8:\"stdClass\":9:{s:8:\"filename\";s:26:\"modules/dblog/dblog.module\";s:4:\"name\";s:5:\"dblog\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7003\";s:6:\"weight\";s:1:\"0\";s:4:\"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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:6:\"entity\";O:8:\"stdClass\":9:{s:8:\"filename\";s:38:\"sites/all/modules/entity/entity.module\";s:4:\"name\";s:6:\"entity\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7003\";s:6:\"weight\";s:1:\"0\";s:4:\"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.9\";s:7:\"project\";s:6:\"entity\";s:9:\"datestamp\";s:10:\"1518620551\";s:5:\"mtime\";i:1537955055;s:12:\"dependencies\";a:0:{}s:7:\"package\";s:5:\"Other\";s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:12:\"entity_token\";O:8:\"stdClass\":9:{s:8:\"filename\";s:44:\"sites/all/modules/entity/entity_token.module\";s:4:\"name\";s:12:\"entity_token\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"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.9\";s:7:\"project\";s:6:\"entity\";s:9:\"datestamp\";s:10:\"1518620551\";s:5:\"mtime\";i:1537955055;s:7:\"package\";s:5:\"Other\";s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:26:\"entity_translation_upgrade\";O:8:\"stdClass\":9:{s:8:\"filename\";s:97:\"sites/all/modules/entity_translation/entity_translation_upgrade/entity_translation_upgrade.module\";s:4:\"name\";s:26:\"entity_translation_upgrade\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7001\";s:6:\"weight\";s:1:\"0\";s:4:\"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:1537954994;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:5:\"field\";O:8:\"stdClass\":9:{s:8:\"filename\";s:26:\"modules/field/field.module\";s:4:\"name\";s:5:\"field\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7004\";s:6:\"weight\";s:1:\"0\";s:4:\"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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:17:\"field_sql_storage\";O:8:\"stdClass\":9:{s:8:\"filename\";s:64:\"modules/field/modules/field_sql_storage/field_sql_storage.module\";s:4:\"name\";s:17:\"field_sql_storage\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7002\";s:6:\"weight\";s:1:\"0\";s:4:\"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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:8:\"field_ui\";O:8:\"stdClass\":9:{s:8:\"filename\";s:32:\"modules/field_ui/field_ui.module\";s:4:\"name\";s:8:\"field_ui\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:4:\"file\";O:8:\"stdClass\":9:{s:8:\"filename\";s:24:\"modules/file/file.module\";s:4:\"name\";s:4:\"file\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:12:{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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:6:\"filter\";O:8:\"stdClass\":9:{s:8:\"filename\";s:28:\"modules/filter/filter.module\";s:4:\"name\";s:6:\"filter\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7010\";s:6:\"weight\";s:1:\"0\";s:4:\"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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:8:\"geocoder\";O:8:\"stdClass\":9:{s:8:\"filename\";s:42:\"sites/all/modules/geocoder/geocoder.module\";s:4:\"name\";s:8:\"geocoder\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7101\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:13:{s:4:\"name\";s:8:\"Geocoder\";s:11:\"description\";s:74:\"An API and widget to geocode various known data into other GIS data types.\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:4:{i:0;s:6:\"geophp\";i:1;s:16:\"geofield (>=1.x)\";i:2;s:6:\"ctools\";i:3;s:6:\"entity\";}s:9:\"configure\";s:29:\"admin/config/content/geocoder\";s:7:\"version\";s:7:\"7.x-1.4\";s:7:\"project\";s:8:\"geocoder\";s:9:\"datestamp\";s:10:\"1536073093\";s:5:\"mtime\";i:1537955055;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:8:\"geofield\";O:8:\"stdClass\":9:{s:8:\"filename\";s:42:\"sites/all/modules/geofield/geofield.module\";s:4:\"name\";s:8:\"geofield\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7202\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:14:{s:4:\"name\";s:8:\"Geofield\";s:11:\"description\";s:66:\"Stores geographic and location data (points, lines, and polygons).\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:2:{i:0;s:14:\"geophp (>=1.7)\";i:1;s:6:\"ctools\";}s:7:\"package\";s:6:\"Fields\";s:5:\"files\";a:21:{i:0;s:15:\"geofield.module\";i:1;s:16:\"geofield.install\";i:2;s:21:\"geofield.elements.inc\";i:3;s:20:\"geofield.widgets.inc\";i:4;s:23:\"geofield.formatters.inc\";i:5;s:23:\"geofield.openlayers.inc\";i:6;s:18:\"geofield.feeds.inc\";i:7;s:19:\"tests/geofield.test\";i:8;s:24:\"views/geofield.views.inc\";i:9;s:40:\"views/handlers/geofield_handler_sort.inc\";i:10;s:41:\"views/handlers/geofield_handler_field.inc\";i:11;s:42:\"views/handlers/geofield_handler_filter.inc\";i:12;s:54:\"views/handlers/geofield_handler_argument_proximity.inc\";i:13;s:49:\"views/proximity_plugins/geofieldProximityBase.inc\";i:14;s:51:\"views/proximity_plugins/geofieldProximityManual.inc\";i:15;s:53:\"views/proximity_plugins/geofieldProximityGeocoder.inc\";i:16;s:54:\"views/proximity_plugins/geofieldProximityEntityURL.inc\";i:17;s:58:\"views/proximity_plugins/geofieldProximityOtherGeofield.inc\";i:18;s:56:\"views/proximity_plugins/geofieldProximityCurrentUser.inc\";i:19;s:58:\"views/proximity_plugins/geofieldProximityExposedFilter.inc\";i:20;s:61:\"views/proximity_plugins/geofieldProximityContextualFilter.inc\";}s:7:\"version\";s:7:\"7.x-2.3\";s:7:\"project\";s:8:\"geofield\";s:9:\"datestamp\";s:10:\"1411337638\";s:5:\"mtime\";i:1412683023;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;s:8:\"required\";b:1;s:11:\"explanation\";s:76:\"Field type(s) in use - see <a href=\"/?q=admin/reports/fields\">Field list</a>\";}}s:6:\"geophp\";O:8:\"stdClass\":9:{s:8:\"filename\";s:38:\"sites/all/modules/geophp/geophp.module\";s:4:\"name\";s:6:\"geophp\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:12:{s:4:\"name\";s:6:\"geoPHP\";s:11:\"description\";s:61:\"Wraps the geoPHP library: advanced geometry operations in PHP\";s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:7:\"7.x-1.7\";s:7:\"project\";s:6:\"geophp\";s:9:\"datestamp\";s:10:\"1352084822\";s:5:\"mtime\";i:1412683092;s:12:\"dependencies\";a:0:{}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:4:\"gmap\";O:8:\"stdClass\":9:{s:8:\"filename\";s:34:\"sites/all/modules/gmap/gmap.module\";s:4:\"name\";s:4:\"gmap\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7202\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:13:{s:4:\"name\";s:4:\"GMap\";s:11:\"description\";s:48:\"Views plugins to show Google Maps from entities.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:8:\"Location\";s:9:\"configure\";s:26:\"admin/config/services/gmap\";s:5:\"files\";a:9:{i:0;s:26:\"gmap_plugin_style_gmap.inc\";i:1;s:34:\"gmap_plugin_style_gmapextended.inc\";i:2;s:15:\"tests/gmap.test\";i:3;s:23:\"tests/oopmigration.test\";i:4;s:32:\"lib/Drupal/gmap/GmapDefaults.php\";i:5;s:39:\"lib/Drupal/gmap/GmapPolylineToolbox.php\";i:6;s:36:\"lib/Drupal/gmap/GmapMacroToolbox.php\";i:7;s:27:\"tests/inc/gmap_polyutil.inc\";i:8;s:27:\"tests/inc/gmap_defaults.inc\";}s:7:\"version\";s:8:\"7.x-2.11\";s:7:\"project\";s:4:\"gmap\";s:9:\"datestamp\";s:10:\"1457698170\";s:5:\"mtime\";i:1537955055;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:13:\"gmap_location\";O:8:\"stdClass\":9:{s:8:\"filename\";s:43:\"sites/all/modules/gmap/gmap_location.module\";s:4:\"name\";s:13:\"gmap_location\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"5102\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:13:{s:4:\"name\";s:13:\"GMap Location\";s:11:\"description\";s:50:\"Display location.module information on Google Maps\";s:7:\"package\";s:8:\"Location\";s:4:\"core\";s:3:\"7.x\";s:9:\"configure\";s:35:\"admin/config/services/gmap_location\";s:5:\"files\";a:1:{i:0;s:20:\"gmap_location.module\";}s:12:\"dependencies\";a:2:{i:0;s:4:\"gmap\";i:1;s:8:\"location\";}s:7:\"version\";s:8:\"7.x-2.11\";s:7:\"project\";s:4:\"gmap\";s:9:\"datestamp\";s:10:\"1457698170\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:4:\"help\";O:8:\"stdClass\":9:{s:8:\"filename\";s:24:\"modules/help/help.module\";s:4:\"name\";s:4:\"help\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:12:\"i18n_contact\";O:8:\"stdClass\":9:{s:8:\"filename\";s:55:\"sites/all/modules/i18n/i18n_contact/i18n_contact.module\";s:4:\"name\";s:12:\"i18n_contact\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"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.26\";s:7:\"project\";s:4:\"i18n\";s:9:\"datestamp\";s:10:\"1534531985\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}}s:10:\"i18n_field\";O:8:\"stdClass\":9:{s:8:\"filename\";s:51:\"sites/all/modules/i18n/i18n_field/i18n_field.module\";s:4:\"name\";s:10:\"i18n_field\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7000\";s:6:\"weight\";s:1:\"0\";s:4:\"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.26\";s:7:\"project\";s:4:\"i18n\";s:9:\"datestamp\";s:10:\"1534531985\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:9:\"i18n_node\";O:8:\"stdClass\":9:{s:8:\"filename\";s:49:\"sites/all/modules/i18n/i18n_node/i18n_node.module\";s:4:\"name\";s:9:\"i18n_node\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7000\";s:6:\"weight\";s:1:\"0\";s:4:\"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:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:13:\"i18n_redirect\";O:8:\"stdClass\":9:{s:8:\"filename\";s:57:\"sites/all/modules/i18n/i18n_redirect/i18n_redirect.module\";s:4:\"name\";s:13:\"i18n_redirect\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"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:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}}s:11:\"i18n_select\";O:8:\"stdClass\":9:{s:8:\"filename\";s:53:\"sites/all/modules/i18n/i18n_select/i18n_select.module\";s:4:\"name\";s:11:\"i18n_select\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"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.26\";s:7:\"project\";s:4:\"i18n\";s:9:\"datestamp\";s:10:\"1534531985\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:16:\"i18n_translation\";O:8:\"stdClass\":9:{s:8:\"filename\";s:63:\"sites/all/modules/i18n/i18n_translation/i18n_translation.module\";s:4:\"name\";s:16:\"i18n_translation\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"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.26\";s:7:\"project\";s:4:\"i18n\";s:9:\"datestamp\";s:10:\"1534531985\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:5:\"image\";O:8:\"stdClass\":9:{s:8:\"filename\";s:26:\"modules/image/image.module\";s:4:\"name\";s:5:\"image\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7005\";s:6:\"weight\";s:1:\"0\";s:4:\"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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;s:8:\"required\";b:1;s:11:\"explanation\";s:76:\"Field type(s) in use - see <a href=\"/?q=admin/reports/fields\">Field list</a>\";}}s:4:\"imce\";O:8:\"stdClass\":9:{s:8:\"filename\";s:34:\"sites/all/modules/imce/imce.module\";s:4:\"name\";s:4:\"imce\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7002\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:13:{s:4:\"name\";s:4:\"IMCE\";s:11:\"description\";s:82:\"An image/file uploader and browser supporting personal directories and user quota.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:5:\"Media\";s:9:\"configure\";s:23:\"admin/config/media/imce\";s:7:\"version\";s:8:\"7.x-1.11\";s:7:\"project\";s:4:\"imce\";s:9:\"datestamp\";s:10:\"1495890787\";s:5:\"mtime\";i:1537955055;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}}s:11:\"l10n_update\";O:8:\"stdClass\":9:{s:8:\"filename\";s:48:\"sites/all/modules/l10n_update/l10n_update.module\";s:4:\"name\";s:11:\"l10n_update\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7006\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:12:{s:4:\"name\";s:19:\"Localization update\";s:11:\"description\";s:58:\"Provides automatic downloads and updates for translations.\";s:12:\"dependencies\";a:1:{i:0;s:6:\"locale\";}s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:12:\"Multilingual\";s:5:\"files\";a:1:{i:0;s:22:\"l10n_update.parser.inc\";}s:7:\"version\";s:7:\"7.x-1.1\";s:7:\"project\";s:11:\"l10n_update\";s:9:\"datestamp\";s:10:\"1415605322\";s:5:\"mtime\";i:1422615722;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:13:\"languageicons\";O:8:\"stdClass\":9:{s:8:\"filename\";s:52:\"sites/all/modules/languageicons/languageicons.module\";s:4:\"name\";s:13:\"languageicons\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"6200\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:13:{s:4:\"name\";s:14:\"Language Icons\";s:11:\"description\";s:29:\"Adds icons to language links.\";s:12:\"dependencies\";a:1:{i:0;s:6:\"locale\";}s:7:\"package\";s:12:\"Multilingual\";s:4:\"core\";s:3:\"7.x\";s:9:\"configure\";s:36:\"admin/config/regional/language/icons\";s:7:\"version\";s:7:\"7.x-1.1\";s:7:\"project\";s:13:\"languageicons\";s:9:\"datestamp\";s:10:\"1399825730\";s:5:\"mtime\";i:1428585380;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}}s:9:\"libraries\";O:8:\"stdClass\":9:{s:8:\"filename\";s:44:\"sites/all/modules/libraries/libraries.module\";s:4:\"name\";s:9:\"libraries\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7202\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:12:{s:4:\"name\";s:9:\"Libraries\";s:11:\"description\";s:64:\"Allows version-dependent and shared usage of external libraries.\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:15:\"system (>=7.11)\";}s:5:\"files\";a:4:{i:0;s:32:\"tests/LibrariesAdminWebTest.test\";i:1;s:31:\"tests/LibrariesLoadWebTest.test\";i:2;s:28:\"tests/LibrariesUnitTest.test\";i:3;s:31:\"tests/LibrariesWebTestBase.test\";}s:7:\"version\";s:7:\"7.x-2.4\";s:7:\"project\";s:9:\"libraries\";s:9:\"datestamp\";s:10:\"1536581584\";s:5:\"mtime\";i:1537955055;s:7:\"package\";s:5:\"Other\";s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:4:\"list\";O:8:\"stdClass\":9:{s:8:\"filename\";s:38:\"modules/field/modules/list/list.module\";s:4:\"name\";s:4:\"list\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7002\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:12:{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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:6:\"locale\";O:8:\"stdClass\":9:{s:8:\"filename\";s:28:\"modules/locale/locale.module\";s:4:\"name\";s:6:\"locale\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7005\";s:6:\"weight\";s:1:\"0\";s:4:\"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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:8:\"location\";O:8:\"stdClass\":9:{s:8:\"filename\";s:42:\"sites/all/modules/location/location.module\";s:4:\"name\";s:8:\"location\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7302\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:13:{s:4:\"name\";s:8:\"Location\";s:7:\"package\";s:8:\"Location\";s:11:\"description\";s:213:\"The location module allows you to associate a geographic location with content and users. Users can do proximity searches by postal code.  This is useful for organizing communities that have a geographic presence.\";s:4:\"core\";s:3:\"7.x\";s:9:\"configure\";s:29:\"admin/config/content/location\";s:5:\"files\";a:32:{i:0;s:18:\"location.admin.inc\";i:1;s:19:\"location.georss.inc\";i:2;s:12:\"location.inc\";i:3;s:18:\"location.token.inc\";i:4;s:18:\"location.views.inc\";i:5;s:26:\"location.views_default.inc\";i:6;s:20:\"location.migrate.inc\";i:7;s:28:\"tests/location_testcase.test\";i:8;s:14:\"tests/cow.test\";i:9;s:16:\"tests/earth.test\";i:10;s:26:\"tests/google_geocoder.test\";i:11;s:23:\"tests/location_cck.test\";i:12;s:24:\"tests/location_cck2.test\";i:13;s:55:\"handlers/location_handler_argument_location_country.inc\";i:14;s:56:\"handlers/location_handler_argument_location_province.inc\";i:15;s:57:\"handlers/location_handler_argument_location_proximity.inc\";i:16;s:55:\"handlers/location_handler_field_location_additional.inc\";i:17;s:52:\"handlers/location_handler_field_location_address.inc\";i:18;s:52:\"handlers/location_handler_field_location_country.inc\";i:19;s:53:\"handlers/location_handler_field_location_distance.inc\";i:20;s:53:\"handlers/location_handler_field_location_province.inc\";i:21;s:51:\"handlers/location_handler_field_location_street.inc\";i:22;s:53:\"handlers/location_handler_filter_location_country.inc\";i:23;s:54:\"handlers/location_handler_filter_location_province.inc\";i:24;s:51:\"handlers/location_handler_sort_location_country.inc\";i:25;s:52:\"handlers/location_handler_sort_location_distance.inc\";i:26;s:53:\"handlers/location_views_handler_field_coordinates.inc\";i:27;s:50:\"handlers/location_views_handler_field_latitude.inc\";i:28;s:51:\"handlers/location_views_handler_field_longitude.inc\";i:29;s:52:\"handlers/location_views_handler_filter_proximity.inc\";i:30;s:29:\"plugins/contexts/location.inc\";i:31;s:44:\"plugins/relationships/location_from_node.inc\";}s:7:\"version\";s:7:\"7.x-3.7\";s:7:\"project\";s:8:\"location\";s:9:\"datestamp\";s:10:\"1438695672\";s:5:\"mtime\";i:1537955055;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:12:\"location_cck\";O:8:\"stdClass\":9:{s:8:\"filename\";s:67:\"sites/all/modules/location/contrib/location_cck/location_cck.module\";s:4:\"name\";s:12:\"location_cck\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"6301\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:12:{s:4:\"name\";s:12:\"Location CCK\";s:11:\"description\";s:30:\"Defines a Location field type.\";s:12:\"dependencies\";a:1:{i:0;s:8:\"location\";}s:7:\"package\";s:6:\"Fields\";s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:7:\"7.x-3.7\";s:7:\"project\";s:8:\"location\";s:9:\"datestamp\";s:10:\"1438695672\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}}s:26:\"location_gmap_find_address\";O:8:\"stdClass\":9:{s:8:\"filename\";s:83:\"sites/all/modules/gmap/location_gmap_find_address/location_gmap_find_address.module\";s:4:\"name\";s:26:\"location_gmap_find_address\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:12:{s:4:\"name\";s:37:\"Location + Gmap \'Find Address\' button\";s:11:\"description\";s:65:\"Adds a \'Find Address\' button to all location fields that use gmap\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:8:\"Location\";s:12:\"dependencies\";a:3:{i:0;s:12:\"location_cck\";i:1;s:8:\"location\";i:2;s:4:\"gmap\";}s:7:\"version\";s:8:\"7.x-2.11\";s:7:\"project\";s:4:\"gmap\";s:9:\"datestamp\";s:10:\"1457698170\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}}s:13:\"location_node\";O:8:\"stdClass\":9:{s:8:\"filename\";s:47:\"sites/all/modules/location/location_node.module\";s:4:\"name\";s:13:\"location_node\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:12:{s:4:\"name\";s:14:\"Node Locations\";s:11:\"description\";s:31:\"Associate locations with nodes.\";s:12:\"dependencies\";a:1:{i:0;s:8:\"location\";}s:7:\"package\";s:8:\"Location\";s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:7:\"7.x-3.7\";s:7:\"project\";s:8:\"location\";s:9:\"datestamp\";s:10:\"1438695672\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}}s:4:\"menu\";O:8:\"stdClass\":9:{s:8:\"filename\";s:24:\"modules/menu/menu.module\";s:4:\"name\";s:4:\"menu\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7003\";s:6:\"weight\";s:1:\"0\";s:4:\"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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:4:\"node\";O:8:\"stdClass\":9:{s:8:\"filename\";s:24:\"modules/node/node.module\";s:4:\"name\";s:4:\"node\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7016\";s:6:\"weight\";s:1:\"0\";s:4:\"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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:6:\"number\";O:8:\"stdClass\":9:{s:8:\"filename\";s:42:\"modules/field/modules/number/number.module\";s:4:\"name\";s:6:\"number\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:12:{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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:7:\"options\";O:8:\"stdClass\":9:{s:8:\"filename\";s:44:\"modules/field/modules/options/options.module\";s:4:\"name\";s:7:\"options\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:7:\"overlay\";O:8:\"stdClass\":9:{s:8:\"filename\";s:30:\"modules/overlay/overlay.module\";s:4:\"name\";s:7:\"overlay\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"1\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"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.59\";s:4:\"core\";s:3:\"7.x\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}}s:4:\"path\";O:8:\"stdClass\":9:{s:8:\"filename\";s:24:\"modules/path/path.module\";s:4:\"name\";s:4:\"path\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:6:\"photos\";O:8:\"stdClass\":9:{s:8:\"filename\";s:38:\"sites/all/modules/photos/photos.module\";s:4:\"name\";s:6:\"photos\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7303\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:13:{s:4:\"name\";s:12:\"Album photos\";s:11:\"description\";s:25:\"Picture Management Module\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:12:\"album photos\";s:12:\"dependencies\";a:2:{i:0;s:4:\"file\";i:1;s:5:\"image\";}s:9:\"configure\";s:25:\"admin/config/media/photos\";s:5:\"files\";a:2:{i:0;s:56:\"inc/views/handlers/photos_handler_field_photos_image.inc\";i:1;s:62:\"inc/views/handlers/photos_handler_field_photos_album_cover.inc\";}s:7:\"version\";s:11:\"7.x-3.0-rc4\";s:7:\"project\";s:6:\"photos\";s:9:\"datestamp\";s:10:\"1465340041\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:13:\"photos_access\";O:8:\"stdClass\":9:{s:8:\"filename\";s:59:\"sites/all/modules/photos/photos_access/photos_access.module\";s:4:\"name\";s:13:\"photos_access\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7301\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:12:{s:4:\"name\";s:13:\"Photos access\";s:11:\"description\";s:43:\"Advanced photo access and privacy settings.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:12:\"album photos\";s:7:\"version\";s:11:\"7.x-3.0-rc4\";s:7:\"project\";s:6:\"photos\";s:9:\"datestamp\";s:10:\"1465340041\";s:5:\"mtime\";i:1537955055;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}}s:3:\"php\";O:8:\"stdClass\":9:{s:8:\"filename\";s:22:\"modules/php/php.module\";s:4:\"name\";s:3:\"php\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:7:\"proj4js\";O:8:\"stdClass\":9:{s:8:\"filename\";s:40:\"sites/all/modules/proj4js/proj4js.module\";s:4:\"name\";s:7:\"proj4js\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:12:{s:4:\"name\";s:7:\"Proj4JS\";s:11:\"description\";s:23:\"Proj4JS library loader.\";s:7:\"version\";s:7:\"7.x-1.2\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:9:\"libraries\";}s:7:\"project\";s:7:\"proj4js\";s:9:\"datestamp\";s:10:\"1363209312\";s:5:\"mtime\";i:1412682890;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:3:\"rdf\";O:8:\"stdClass\":9:{s:8:\"filename\";s:22:\"modules/rdf/rdf.module\";s:4:\"name\";s:3:\"rdf\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:8:\"shortcut\";O:8:\"stdClass\":9:{s:8:\"filename\";s:32:\"modules/shortcut/shortcut.module\";s:4:\"name\";s:8:\"shortcut\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:6:\"system\";O:8:\"stdClass\":9:{s:8:\"filename\";s:28:\"modules/system/system.module\";s:4:\"name\";s:6:\"system\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7081\";s:6:\"weight\";s:1:\"0\";s:4:\"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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:8:\"taxonomy\";O:8:\"stdClass\":9:{s:8:\"filename\";s:32:\"modules/taxonomy/taxonomy.module\";s:4:\"name\";s:8:\"taxonomy\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7011\";s:6:\"weight\";s:1:\"0\";s:4:\"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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;s:8:\"required\";b:1;s:11:\"explanation\";s:76:\"Field type(s) in use - see <a href=\"/?q=admin/reports/fields\">Field list</a>\";}}s:4:\"text\";O:8:\"stdClass\":9:{s:8:\"filename\";s:38:\"modules/field/modules/text/text.module\";s:4:\"name\";s:4:\"text\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7000\";s:6:\"weight\";s:1:\"0\";s:4:\"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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;s:11:\"explanation\";s:76:\"Field type(s) in use - see <a href=\"/?q=admin/reports/fields\">Field list</a>\";}}s:7:\"toolbar\";O:8:\"stdClass\":9:{s:8:\"filename\";s:30:\"modules/toolbar/toolbar.module\";s:4:\"name\";s:7:\"toolbar\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"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.59\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}}s:11:\"translation\";O:8:\"stdClass\":9:{s:8:\"filename\";s:38:\"modules/translation/translation.module\";s:4:\"name\";s:11:\"translation\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:6:\"update\";O:8:\"stdClass\":9:{s:8:\"filename\";s:28:\"modules/update/update.module\";s:4:\"name\";s:6:\"update\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7001\";s:6:\"weight\";s:1:\"0\";s:4:\"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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:4:\"user\";O:8:\"stdClass\":9:{s:8:\"filename\";s:24:\"modules/user/user.module\";s:4:\"name\";s:4:\"user\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7019\";s:6:\"weight\";s:1:\"0\";s:4:\"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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:8:\"variable\";O:8:\"stdClass\":9:{s:8:\"filename\";s:42:\"sites/all/modules/variable/variable.module\";s:4:\"name\";s:8:\"variable\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"1\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"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:1410352904;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:8:\"views_ui\";O:8:\"stdClass\":9:{s:8:\"filename\";s:39:\"sites/all/modules/views/views_ui.module\";s:4:\"name\";s:8:\"views_ui\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:14:{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:34:\"# @codingStandardsIgnoreLine\nfiles\";a:1:{i:0;s:15:\"views_ui.module\";}s:5:\"files\";a:1:{i:0;s:57:\"plugins/views_wizard/views_ui_base_views_wizard.class.php\";}s:7:\"version\";s:8:\"7.x-3.24\";s:7:\"project\";s:5:\"views\";s:9:\"datestamp\";s:10:\"1583615732\";s:5:\"mtime\";i:1593684437;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:5:\"forum\";O:8:\"stdClass\":9:{s:8:\"filename\";s:26:\"modules/forum/forum.module\";s:4:\"name\";s:5:\"forum\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7012\";s:6:\"weight\";s:1:\"1\";s:4:\"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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:9:\"i18n_menu\";O:8:\"stdClass\":9:{s:8:\"filename\";s:49:\"sites/all/modules/i18n/i18n_menu/i18n_menu.module\";s:4:\"name\";s:9:\"i18n_menu\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7001\";s:6:\"weight\";s:1:\"5\";s:4:\"info\";a:12:{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:7:\"version\";s:8:\"7.x-1.26\";s:7:\"project\";s:4:\"i18n\";s:9:\"datestamp\";s:10:\"1534531985\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:9:\"i18n_path\";O:8:\"stdClass\":9:{s:8:\"filename\";s:49:\"sites/all/modules/i18n/i18n_path/i18n_path.module\";s:4:\"name\";s:9:\"i18n_path\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7000\";s:6:\"weight\";s:1:\"5\";s:4:\"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:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:13:\"i18n_taxonomy\";O:8:\"stdClass\":9:{s:8:\"filename\";s:57:\"sites/all/modules/i18n/i18n_taxonomy/i18n_taxonomy.module\";s:4:\"name\";s:13:\"i18n_taxonomy\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7004\";s:6:\"weight\";s:1:\"5\";s:4:\"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.26\";s:7:\"project\";s:4:\"i18n\";s:9:\"datestamp\";s:10:\"1534531985\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:4:\"i18n\";O:8:\"stdClass\":9:{s:8:\"filename\";s:34:\"sites/all/modules/i18n/i18n.module\";s:4:\"name\";s:4:\"i18n\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7001\";s:6:\"weight\";s:2:\"10\";s:4:\"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:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:10:\"i18n_forum\";O:8:\"stdClass\":9:{s:8:\"filename\";s:51:\"sites/all/modules/i18n/i18n_forum/i18n_forum.module\";s:4:\"name\";s:10:\"i18n_forum\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:4:\"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:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:11:\"i18n_string\";O:8:\"stdClass\":9:{s:8:\"filename\";s:53:\"sites/all/modules/i18n/i18n_string/i18n_string.module\";s:4:\"name\";s:11:\"i18n_string\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7004\";s:6:\"weight\";s:2:\"10\";s:4:\"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.26\";s:7:\"project\";s:4:\"i18n\";s:9:\"datestamp\";s:10:\"1534531985\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:5:\"views\";O:8:\"stdClass\":9:{s:8:\"filename\";s:36:\"sites/all/modules/views/views.module\";s:4:\"name\";s:5:\"views\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7302\";s:6:\"weight\";s:2:\"10\";s:4:\"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: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:316:{i:0;s:31:\"handlers/views_handler_area.inc\";i:1;s:40:\"handlers/views_handler_area_messages.inc\";i:2;s:38:\"handlers/views_handler_area_result.inc\";i:3;s:36:\"handlers/views_handler_area_text.inc\";i:4;s:43:\"handlers/views_handler_area_text_custom.inc\";i:5;s:36:\"handlers/views_handler_area_view.inc\";i:6;s:35:\"handlers/views_handler_argument.inc\";i:7;s:40:\"handlers/views_handler_argument_date.inc\";i:8;s:43:\"handlers/views_handler_argument_formula.inc\";i:9;s:47:\"handlers/views_handler_argument_many_to_one.inc\";i:10;s:40:\"handlers/views_handler_argument_null.inc\";i:11;s:43:\"handlers/views_handler_argument_numeric.inc\";i:12;s:42:\"handlers/views_handler_argument_string.inc\";i:13;s:52:\"handlers/views_handler_argument_group_by_numeric.inc\";i:14;s:32:\"handlers/views_handler_field.inc\";i:15;s:40:\"handlers/views_handler_field_counter.inc\";i:16;s:40:\"handlers/views_handler_field_boolean.inc\";i:17;s:49:\"handlers/views_handler_field_contextual_links.inc\";i:18;s:48:\"handlers/views_handler_field_ctools_dropdown.inc\";i:19;s:39:\"handlers/views_handler_field_custom.inc\";i:20;s:37:\"handlers/views_handler_field_date.inc\";i:21;s:39:\"handlers/views_handler_field_entity.inc\";i:22;s:38:\"handlers/views_handler_field_links.inc\";i:23;s:39:\"handlers/views_handler_field_markup.inc\";i:24;s:37:\"handlers/views_handler_field_math.inc\";i:25;s:40:\"handlers/views_handler_field_numeric.inc\";i:26;s:47:\"handlers/views_handler_field_prerender_list.inc\";i:27;s:46:\"handlers/views_handler_field_time_interval.inc\";i:28;s:43:\"handlers/views_handler_field_serialized.inc\";i:29;s:45:\"handlers/views_handler_field_machine_name.inc\";i:30;s:36:\"handlers/views_handler_field_url.inc\";i:31;s:33:\"handlers/views_handler_filter.inc\";i:32;s:50:\"handlers/views_handler_filter_boolean_operator.inc\";i:33;s:57:\"handlers/views_handler_filter_boolean_operator_string.inc\";i:34;s:41:\"handlers/views_handler_filter_combine.inc\";i:35;s:38:\"handlers/views_handler_filter_date.inc\";i:36;s:42:\"handlers/views_handler_filter_equality.inc\";i:37;s:47:\"handlers/views_handler_filter_entity_bundle.inc\";i:38;s:50:\"handlers/views_handler_filter_group_by_numeric.inc\";i:39;s:45:\"handlers/views_handler_filter_in_operator.inc\";i:40;s:45:\"handlers/views_handler_filter_many_to_one.inc\";i:41;s:41:\"handlers/views_handler_filter_numeric.inc\";i:42;s:40:\"handlers/views_handler_filter_string.inc\";i:43;s:48:\"handlers/views_handler_filter_fields_compare.inc\";i:44;s:39:\"handlers/views_handler_relationship.inc\";i:45;s:53:\"handlers/views_handler_relationship_groupwise_max.inc\";i:46;s:31:\"handlers/views_handler_sort.inc\";i:47;s:36:\"handlers/views_handler_sort_date.inc\";i:48;s:39:\"handlers/views_handler_sort_formula.inc\";i:49;s:48:\"handlers/views_handler_sort_group_by_numeric.inc\";i:50;s:46:\"handlers/views_handler_sort_menu_hierarchy.inc\";i:51;s:38:\"handlers/views_handler_sort_random.inc\";i:52;s:17:\"includes/base.inc\";i:53;s:21:\"includes/handlers.inc\";i:54;s:20:\"includes/plugins.inc\";i:55;s:17:\"includes/view.inc\";i:56;s:60:\"modules/aggregator/views_handler_argument_aggregator_fid.inc\";i:57;s:60:\"modules/aggregator/views_handler_argument_aggregator_iid.inc\";i:58;s:69:\"modules/aggregator/views_handler_argument_aggregator_category_cid.inc\";i:59;s:64:\"modules/aggregator/views_handler_field_aggregator_title_link.inc\";i:60;s:62:\"modules/aggregator/views_handler_field_aggregator_category.inc\";i:61;s:70:\"modules/aggregator/views_handler_field_aggregator_item_description.inc\";i:62;s:57:\"modules/aggregator/views_handler_field_aggregator_xss.inc\";i:63;s:67:\"modules/aggregator/views_handler_filter_aggregator_category_cid.inc\";i:64;s:54:\"modules/aggregator/views_plugin_row_aggregator_rss.inc\";i:65;s:56:\"modules/book/views_plugin_argument_default_book_root.inc\";i:66;s:59:\"modules/comment/views_handler_argument_comment_user_uid.inc\";i:67;s:47:\"modules/comment/views_handler_field_comment.inc\";i:68;s:53:\"modules/comment/views_handler_field_comment_depth.inc\";i:69;s:52:\"modules/comment/views_handler_field_comment_link.inc\";i:70;s:60:\"modules/comment/views_handler_field_comment_link_approve.inc\";i:71;s:59:\"modules/comment/views_handler_field_comment_link_delete.inc\";i:72;s:57:\"modules/comment/views_handler_field_comment_link_edit.inc\";i:73;s:58:\"modules/comment/views_handler_field_comment_link_reply.inc\";i:74;s:57:\"modules/comment/views_handler_field_comment_node_link.inc\";i:75;s:56:\"modules/comment/views_handler_field_comment_username.inc\";i:76;s:61:\"modules/comment/views_handler_field_ncs_last_comment_name.inc\";i:77;s:56:\"modules/comment/views_handler_field_ncs_last_updated.inc\";i:78;s:52:\"modules/comment/views_handler_field_node_comment.inc\";i:79;s:57:\"modules/comment/views_handler_field_node_new_comments.inc\";i:80;s:62:\"modules/comment/views_handler_field_last_comment_timestamp.inc\";i:81;s:57:\"modules/comment/views_handler_filter_comment_user_uid.inc\";i:82;s:57:\"modules/comment/views_handler_filter_ncs_last_updated.inc\";i:83;s:53:\"modules/comment/views_handler_filter_node_comment.inc\";i:84;s:53:\"modules/comment/views_handler_sort_comment_thread.inc\";i:85;s:60:\"modules/comment/views_handler_sort_ncs_last_comment_name.inc\";i:86;s:55:\"modules/comment/views_handler_sort_ncs_last_updated.inc\";i:87;s:48:\"modules/comment/views_plugin_row_comment_rss.inc\";i:88;s:49:\"modules/comment/views_plugin_row_comment_view.inc\";i:89;s:52:\"modules/contact/views_handler_field_contact_link.inc\";i:90;s:43:\"modules/field/views_handler_field_field.inc\";i:91;s:59:\"modules/field/views_handler_relationship_entity_reverse.inc\";i:92;s:51:\"modules/field/views_handler_argument_field_list.inc\";i:93;s:57:\"modules/field/views_handler_filter_field_list_boolean.inc\";i:94;s:58:\"modules/field/views_handler_argument_field_list_string.inc\";i:95;s:49:\"modules/field/views_handler_filter_field_list.inc\";i:96;s:57:\"modules/filter/views_handler_field_filter_format_name.inc\";i:97;s:52:\"modules/locale/views_handler_field_node_language.inc\";i:98;s:53:\"modules/locale/views_handler_filter_node_language.inc\";i:99;s:54:\"modules/locale/views_handler_argument_locale_group.inc\";i:100;s:57:\"modules/locale/views_handler_argument_locale_language.inc\";i:101;s:51:\"modules/locale/views_handler_field_locale_group.inc\";i:102;s:54:\"modules/locale/views_handler_field_locale_language.inc\";i:103;s:55:\"modules/locale/views_handler_field_locale_link_edit.inc\";i:104;s:52:\"modules/locale/views_handler_filter_locale_group.inc\";i:105;s:55:\"modules/locale/views_handler_filter_locale_language.inc\";i:106;s:54:\"modules/locale/views_handler_filter_locale_version.inc\";i:107;s:51:\"modules/locale/views_handler_sort_node_language.inc\";i:108;s:53:\"modules/node/views_handler_argument_dates_various.inc\";i:109;s:53:\"modules/node/views_handler_argument_node_language.inc\";i:110;s:48:\"modules/node/views_handler_argument_node_nid.inc\";i:111;s:49:\"modules/node/views_handler_argument_node_type.inc\";i:112;s:48:\"modules/node/views_handler_argument_node_vid.inc\";i:113;s:57:\"modules/node/views_handler_argument_node_uid_revision.inc\";i:114;s:59:\"modules/node/views_handler_field_history_user_timestamp.inc\";i:115;s:41:\"modules/node/views_handler_field_node.inc\";i:116;s:46:\"modules/node/views_handler_field_node_link.inc\";i:117;s:53:\"modules/node/views_handler_field_node_link_delete.inc\";i:118;s:51:\"modules/node/views_handler_field_node_link_edit.inc\";i:119;s:50:\"modules/node/views_handler_field_node_revision.inc\";i:120;s:55:\"modules/node/views_handler_field_node_revision_link.inc\";i:121;s:62:\"modules/node/views_handler_field_node_revision_link_delete.inc\";i:122;s:62:\"modules/node/views_handler_field_node_revision_link_revert.inc\";i:123;s:46:\"modules/node/views_handler_field_node_path.inc\";i:124;s:46:\"modules/node/views_handler_field_node_type.inc\";i:125;s:55:\"modules/node/views_handler_field_node_version_count.inc\";i:126;s:60:\"modules/node/views_handler_filter_history_user_timestamp.inc\";i:127;s:49:\"modules/node/views_handler_filter_node_access.inc\";i:128;s:49:\"modules/node/views_handler_filter_node_status.inc\";i:129;s:47:\"modules/node/views_handler_filter_node_type.inc\";i:130;s:55:\"modules/node/views_handler_filter_node_uid_revision.inc\";i:131;s:56:\"modules/node/views_handler_filter_node_version_count.inc\";i:132;s:54:\"modules/node/views_handler_sort_node_version_count.inc\";i:133;s:51:\"modules/node/views_plugin_argument_default_node.inc\";i:134;s:52:\"modules/node/views_plugin_argument_validate_node.inc\";i:135;s:42:\"modules/node/views_plugin_row_node_rss.inc\";i:136;s:43:\"modules/node/views_plugin_row_node_view.inc\";i:137;s:52:\"modules/profile/views_handler_field_profile_date.inc\";i:138;s:52:\"modules/profile/views_handler_field_profile_list.inc\";i:139;s:58:\"modules/profile/views_handler_filter_profile_selection.inc\";i:140;s:48:\"modules/search/views_handler_argument_search.inc\";i:141;s:51:\"modules/search/views_handler_field_search_score.inc\";i:142;s:46:\"modules/search/views_handler_filter_search.inc\";i:143;s:50:\"modules/search/views_handler_sort_search_score.inc\";i:144;s:47:\"modules/search/views_plugin_row_search_view.inc\";i:145;s:57:\"modules/statistics/views_handler_field_accesslog_path.inc\";i:146;s:65:\"modules/statistics/views_handler_field_node_counter_timestamp.inc\";i:147;s:61:\"modules/statistics/views_handler_field_statistics_numeric.inc\";i:148;s:50:\"modules/system/views_handler_argument_file_fid.inc\";i:149;s:43:\"modules/system/views_handler_field_file.inc\";i:150;s:53:\"modules/system/views_handler_field_file_extension.inc\";i:151;s:52:\"modules/system/views_handler_field_file_filemime.inc\";i:152;s:47:\"modules/system/views_handler_field_file_uri.inc\";i:153;s:50:\"modules/system/views_handler_field_file_status.inc\";i:154;s:51:\"modules/system/views_handler_filter_file_status.inc\";i:155;s:52:\"modules/taxonomy/views_handler_argument_taxonomy.inc\";i:156;s:57:\"modules/taxonomy/views_handler_argument_term_node_tid.inc\";i:157;s:63:\"modules/taxonomy/views_handler_argument_term_node_tid_depth.inc\";i:158;s:68:\"modules/taxonomy/views_handler_argument_term_node_tid_depth_join.inc\";i:159;s:72:\"modules/taxonomy/views_handler_argument_term_node_tid_depth_modifier.inc\";i:160;s:58:\"modules/taxonomy/views_handler_argument_vocabulary_vid.inc\";i:161;s:67:\"modules/taxonomy/views_handler_argument_vocabulary_machine_name.inc\";i:162;s:49:\"modules/taxonomy/views_handler_field_taxonomy.inc\";i:163;s:54:\"modules/taxonomy/views_handler_field_term_node_tid.inc\";i:164;s:55:\"modules/taxonomy/views_handler_field_term_link_edit.inc\";i:165;s:55:\"modules/taxonomy/views_handler_filter_term_node_tid.inc\";i:166;s:61:\"modules/taxonomy/views_handler_filter_term_node_tid_depth.inc\";i:167;s:66:\"modules/taxonomy/views_handler_filter_term_node_tid_depth_join.inc\";i:168;s:56:\"modules/taxonomy/views_handler_filter_vocabulary_vid.inc\";i:169;s:65:\"modules/taxonomy/views_handler_filter_vocabulary_machine_name.inc\";i:170;s:62:\"modules/taxonomy/views_handler_relationship_node_term_data.inc\";i:171;s:65:\"modules/taxonomy/views_plugin_argument_validate_taxonomy_term.inc\";i:172;s:63:\"modules/taxonomy/views_plugin_argument_default_taxonomy_tid.inc\";i:173;s:67:\"modules/tracker/views_handler_argument_tracker_comment_user_uid.inc\";i:174;s:65:\"modules/tracker/views_handler_filter_tracker_comment_user_uid.inc\";i:175;s:65:\"modules/tracker/views_handler_filter_tracker_boolean_operator.inc\";i:176;s:51:\"modules/system/views_handler_filter_system_type.inc\";i:177;s:56:\"modules/translation/views_handler_argument_node_tnid.inc\";i:178;s:63:\"modules/translation/views_handler_field_node_link_translate.inc\";i:179;s:65:\"modules/translation/views_handler_field_node_translation_link.inc\";i:180;s:54:\"modules/translation/views_handler_filter_node_tnid.inc\";i:181;s:60:\"modules/translation/views_handler_filter_node_tnid_child.inc\";i:182;s:62:\"modules/translation/views_handler_relationship_translation.inc\";i:183;s:48:\"modules/user/views_handler_argument_user_uid.inc\";i:184;s:55:\"modules/user/views_handler_argument_users_roles_rid.inc\";i:185;s:41:\"modules/user/views_handler_field_user.inc\";i:186;s:50:\"modules/user/views_handler_field_user_language.inc\";i:187;s:46:\"modules/user/views_handler_field_user_link.inc\";i:188;s:53:\"modules/user/views_handler_field_user_link_cancel.inc\";i:189;s:51:\"modules/user/views_handler_field_user_link_edit.inc\";i:190;s:46:\"modules/user/views_handler_field_user_mail.inc\";i:191;s:46:\"modules/user/views_handler_field_user_name.inc\";i:192;s:53:\"modules/user/views_handler_field_user_permissions.inc\";i:193;s:49:\"modules/user/views_handler_field_user_picture.inc\";i:194;s:47:\"modules/user/views_handler_field_user_roles.inc\";i:195;s:50:\"modules/user/views_handler_filter_user_current.inc\";i:196;s:47:\"modules/user/views_handler_filter_user_name.inc\";i:197;s:54:\"modules/user/views_handler_filter_user_permissions.inc\";i:198;s:48:\"modules/user/views_handler_filter_user_roles.inc\";i:199;s:59:\"modules/user/views_plugin_argument_default_current_user.inc\";i:200;s:51:\"modules/user/views_plugin_argument_default_user.inc\";i:201;s:52:\"modules/user/views_plugin_argument_validate_user.inc\";i:202;s:43:\"modules/user/views_plugin_row_user_view.inc\";i:203;s:31:\"plugins/views_plugin_access.inc\";i:204;s:36:\"plugins/views_plugin_access_none.inc\";i:205;s:36:\"plugins/views_plugin_access_perm.inc\";i:206;s:36:\"plugins/views_plugin_access_role.inc\";i:207;s:41:\"plugins/views_plugin_argument_default.inc\";i:208;s:45:\"plugins/views_plugin_argument_default_php.inc\";i:209;s:47:\"plugins/views_plugin_argument_default_fixed.inc\";i:210;s:45:\"plugins/views_plugin_argument_default_raw.inc\";i:211;s:42:\"plugins/views_plugin_argument_validate.inc\";i:212;s:50:\"plugins/views_plugin_argument_validate_numeric.inc\";i:213;s:46:\"plugins/views_plugin_argument_validate_php.inc\";i:214;s:30:\"plugins/views_plugin_cache.inc\";i:215;s:35:\"plugins/views_plugin_cache_none.inc\";i:216;s:35:\"plugins/views_plugin_cache_time.inc\";i:217;s:32:\"plugins/views_plugin_display.inc\";i:218;s:43:\"plugins/views_plugin_display_attachment.inc\";i:219;s:38:\"plugins/views_plugin_display_block.inc\";i:220;s:40:\"plugins/views_plugin_display_default.inc\";i:221;s:38:\"plugins/views_plugin_display_embed.inc\";i:222;s:41:\"plugins/views_plugin_display_extender.inc\";i:223;s:37:\"plugins/views_plugin_display_feed.inc\";i:224;s:37:\"plugins/views_plugin_display_page.inc\";i:225;s:43:\"plugins/views_plugin_exposed_form_basic.inc\";i:226;s:37:\"plugins/views_plugin_exposed_form.inc\";i:227;s:52:\"plugins/views_plugin_exposed_form_input_required.inc\";i:228;s:42:\"plugins/views_plugin_localization_core.inc\";i:229;s:37:\"plugins/views_plugin_localization.inc\";i:230;s:42:\"plugins/views_plugin_localization_none.inc\";i:231;s:30:\"plugins/views_plugin_pager.inc\";i:232;s:35:\"plugins/views_plugin_pager_full.inc\";i:233;s:35:\"plugins/views_plugin_pager_mini.inc\";i:234;s:35:\"plugins/views_plugin_pager_none.inc\";i:235;s:35:\"plugins/views_plugin_pager_some.inc\";i:236;s:30:\"plugins/views_plugin_query.inc\";i:237;s:38:\"plugins/views_plugin_query_default.inc\";i:238;s:28:\"plugins/views_plugin_row.inc\";i:239;s:35:\"plugins/views_plugin_row_fields.inc\";i:240;s:39:\"plugins/views_plugin_row_rss_fields.inc\";i:241;s:30:\"plugins/views_plugin_style.inc\";i:242;s:38:\"plugins/views_plugin_style_default.inc\";i:243;s:35:\"plugins/views_plugin_style_grid.inc\";i:244;s:35:\"plugins/views_plugin_style_list.inc\";i:245;s:40:\"plugins/views_plugin_style_jump_menu.inc\";i:246;s:38:\"plugins/views_plugin_style_mapping.inc\";i:247;s:34:\"plugins/views_plugin_style_rss.inc\";i:248;s:38:\"plugins/views_plugin_style_summary.inc\";i:249;s:48:\"plugins/views_plugin_style_summary_jump_menu.inc\";i:250;s:50:\"plugins/views_plugin_style_summary_unformatted.inc\";i:251;s:36:\"plugins/views_plugin_style_table.inc\";i:252;s:34:\"tests/handlers/views_handlers.test\";i:253;s:43:\"tests/handlers/views_handler_area_text.test\";i:254;s:47:\"tests/handlers/views_handler_argument_null.test\";i:255;s:39:\"tests/handlers/views_handler_field.test\";i:256;s:47:\"tests/handlers/views_handler_field_boolean.test\";i:257;s:46:\"tests/handlers/views_handler_field_custom.test\";i:258;s:47:\"tests/handlers/views_handler_field_counter.test\";i:259;s:44:\"tests/handlers/views_handler_field_date.test\";i:260;s:54:\"tests/handlers/views_handler_field_file_extension.test\";i:261;s:49:\"tests/handlers/views_handler_field_file_size.test\";i:262;s:44:\"tests/handlers/views_handler_field_math.test\";i:263;s:43:\"tests/handlers/views_handler_field_url.test\";i:264;s:43:\"tests/handlers/views_handler_field_xss.test\";i:265;s:48:\"tests/handlers/views_handler_filter_combine.test\";i:266;s:45:\"tests/handlers/views_handler_filter_date.test\";i:267;s:49:\"tests/handlers/views_handler_filter_equality.test\";i:268;s:52:\"tests/handlers/views_handler_filter_in_operator.test\";i:269;s:48:\"tests/handlers/views_handler_filter_numeric.test\";i:270;s:47:\"tests/handlers/views_handler_filter_string.test\";i:271;s:43:\"tests/handlers/views_handler_manytoone.test\";i:272;s:45:\"tests/handlers/views_handler_sort_random.test\";i:273;s:43:\"tests/handlers/views_handler_sort_date.test\";i:274;s:38:\"tests/handlers/views_handler_sort.test\";i:275;s:46:\"tests/test_handlers/views_test_area_access.inc\";i:276;s:60:\"tests/test_plugins/views_test_plugin_access_test_dynamic.inc\";i:277;s:59:\"tests/test_plugins/views_test_plugin_access_test_static.inc\";i:278;s:59:\"tests/test_plugins/views_test_plugin_style_test_mapping.inc\";i:279;s:39:\"tests/plugins/views_plugin_display.test\";i:280;s:46:\"tests/styles/views_plugin_style_jump_menu.test\";i:281;s:36:\"tests/styles/views_plugin_style.test\";i:282;s:41:\"tests/styles/views_plugin_style_base.test\";i:283;s:44:\"tests/styles/views_plugin_style_mapping.test\";i:284;s:48:\"tests/styles/views_plugin_style_unformatted.test\";i:285;s:23:\"tests/views_access.test\";i:286;s:24:\"tests/views_analyze.test\";i:287;s:22:\"tests/views_basic.test\";i:288;s:21:\"tests/views_ajax.test\";i:289;s:33:\"tests/views_argument_default.test\";i:290;s:35:\"tests/views_argument_validator.test\";i:291;s:29:\"tests/views_exposed_form.test\";i:292;s:31:\"tests/field/views_fieldapi.test\";i:293;s:25:\"tests/views_glossary.test\";i:294;s:24:\"tests/views_groupby.test\";i:295;s:31:\"tests/views_handler_filter.test\";i:296;s:25:\"tests/views_handlers.test\";i:297;s:23:\"tests/views_module.test\";i:298;s:22:\"tests/views_pager.test\";i:299;s:40:\"tests/views_plugin_localization_test.inc\";i:300;s:29:\"tests/views_translatable.test\";i:301;s:22:\"tests/views_query.test\";i:302;s:24:\"tests/views_upgrade.test\";i:303;s:34:\"tests/views_test.views_default.inc\";i:304;s:58:\"tests/comment/views_handler_argument_comment_user_uid.test\";i:305;s:56:\"tests/comment/views_handler_filter_comment_user_uid.test\";i:306;s:45:\"tests/node/views_node_revision_relations.test\";i:307;s:61:\"tests/taxonomy/views_handler_relationship_node_term_data.test\";i:308;s:45:\"tests/user/views_handler_field_user_name.test\";i:309;s:43:\"tests/user/views_user_argument_default.test\";i:310;s:44:\"tests/user/views_user_argument_validate.test\";i:311;s:26:\"tests/user/views_user.test\";i:312;s:22:\"tests/views_cache.test\";i:313;s:22:\"tests/views_clone.test\";i:314;s:21:\"tests/views_view.test\";i:315;s:19:\"tests/views_ui.test\";}s:7:\"version\";s:8:\"7.x-3.24\";s:7:\"project\";s:5:\"views\";s:9:\"datestamp\";s:10:\"1583615732\";s:5:\"mtime\";i:1593684437;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:18:\"entity_translation\";O:8:\"stdClass\":9:{s:8:\"filename\";s:62:\"sites/all/modules/entity_translation/entity_translation.module\";s:4:\"name\";s:18:\"entity_translation\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7009\";s:6:\"weight\";s:2:\"11\";s:4:\"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:1537954994;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:8:\"features\";O:8:\"stdClass\":9:{s:8:\"filename\";s:42:\"sites/all/modules/features/features.module\";s:4:\"name\";s:8:\"features\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7200\";s:6:\"weight\";s:2:\"20\";s:4:\"info\";a:14:{s:4:\"name\";s:8:\"Features\";s:11:\"description\";s:39:\"Provides feature management for Drupal.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:8:\"Features\";s:5:\"files\";a:1:{i:0;s:19:\"tests/features.test\";}s:17:\"test_dependencies\";a:4:{i:0;s:5:\"image\";i:1;s:9:\"strongarm\";i:2;s:8:\"taxonomy\";i:3;s:5:\"views\";}s:9:\"configure\";s:33:\"admin/structure/features/settings\";s:7:\"version\";s:8:\"7.x-2.10\";s:7:\"project\";s:8:\"features\";s:9:\"datestamp\";s:10:\"1461011641\";s:5:\"mtime\";i:1537954873;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:10:\"i18n_block\";O:8:\"stdClass\":9:{s:8:\"filename\";s:51:\"sites/all/modules/i18n/i18n_block/i18n_block.module\";s:4:\"name\";s:10:\"i18n_block\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7001\";s:6:\"weight\";s:3:\"100\";s:4:\"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.26\";s:7:\"project\";s:4:\"i18n\";s:9:\"datestamp\";s:10:\"1534531985\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:9:\"i18n_sync\";O:8:\"stdClass\":9:{s:8:\"filename\";s:49:\"sites/all/modules/i18n/i18n_sync/i18n_sync.module\";s:4:\"name\";s:9:\"i18n_sync\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7000\";s:6:\"weight\";s:3:\"100\";s:4:\"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.26\";s:7:\"project\";s:4:\"i18n\";s:9:\"datestamp\";s:10:\"1534531985\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:5:\"title\";O:8:\"stdClass\":9:{s:8:\"filename\";s:36:\"sites/all/modules/title/title.module\";s:4:\"name\";s:5:\"title\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7002\";s:6:\"weight\";s:3:\"100\";s:4:\"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:1537954754;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}}s:8:\"standard\";O:8:\"stdClass\":9:{s:8:\"filename\";s:34:\"profiles/standard/standard.profile\";s:4:\"name\";s:8:\"standard\";s:4:\"type\";s:6:\"module\";s:5:\"owner\";s:0:\"\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:4:\"1000\";s:4:\"info\";a:15:{s:4:\"name\";s:8:\"Standard\";s:11:\"description\";s:51:\"Install with commonly used features pre-configured.\";s:7:\"version\";s:4:\"7.59\";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:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;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\";}}}s:5:\"theme\";a:7:{s:22:\"alpha_responsive_theme\";O:8:\"stdClass\":10:{s:8:\"filename\";s:67:\"sites/all/themes/alpha_responsive_theme/alpha_responsive_theme.info\";s:4:\"name\";s:22:\"alpha_responsive_theme\";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:22:\"Alpha Responsive Theme\";s:11:\"description\";s:178:\"Designed & Developed by <a href=http://www.zymphonies.com>Zymphonies</a><br/>Contact us for any kind of Drupal services <a href=mailto:info@zymphonies.com>info@zymphonies.com</a>\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:3:{s:20:\"css/font-awesome.css\";s:60:\"sites/all/themes/alpha_responsive_theme/css/font-awesome.css\";s:13:\"css/style.css\";s:53:\"sites/all/themes/alpha_responsive_theme/css/style.css\";s:13:\"css/media.css\";s:53:\"sites/all/themes/alpha_responsive_theme/css/media.css\";}}s:7:\"scripts\";a:1:{s:12:\"js/custom.js\";s:52:\"sites/all/themes/alpha_responsive_theme/js/custom.js\";}s:7:\"regions\";a:23:{s:6:\"search\";s:13:\"Search widget\";s:9:\"user_menu\";s:16:\"User menu widget\";s:9:\"slideshow\";s:16:\"Slideshow widget\";s:13:\"front_welcome\";s:20:\"Front welcome widget\";s:9:\"top_first\";s:16:\"First top widget\";s:10:\"top_second\";s:17:\"Second top widget\";s:9:\"top_third\";s:16:\"Third top widget\";s:13:\"sidebar_first\";s:13:\"First sidebar\";s:14:\"sidebar_second\";s:14:\"Second sidebar\";s:7:\"content\";s:7:\"Content\";s:10:\"highlights\";s:17:\"Highlights widget\";s:15:\"bottom_widget_1\";s:19:\"Bottom first widget\";s:15:\"bottom_widget_2\";s:20:\"Bottom second widget\";s:15:\"bottom_widget_3\";s:19:\"Bottom third widget\";s:12:\"footer_first\";s:19:\"First bottom widget\";s:13:\"footer_second\";s:20:\"Second bottom widget\";s:12:\"footer_third\";s:19:\"Third bottom widget\";s:12:\"footer_forth\";s:19:\"Forth bottom widget\";s:8:\"page_top\";s:8:\"Page top\";s:11:\"page_bottom\";s:11:\"Page bottom\";s:14:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:4:\"name\";i:2;s:6:\"slogan\";i:3;s:17:\"node_user_picture\";i:4;s:20:\"comment_user_picture\";i:5;s:25:\"comment_user_verification\";i:6;s:7:\"favicon\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:8:\"settings\";a:8:{s:11:\"breadcrumbs\";s:1:\"1\";s:12:\"social_links\";s:1:\"1\";s:11:\"twitter_url\";s:30:\"https://twitter.com/zymphonies\";s:12:\"facebook_url\";s:35:\"https://www.facebook.com/zymphonies\";s:17:\"gplus_profile_url\";s:52:\"https://plus.google.com/u/1/+ZymphoniesTechnologies/\";s:20:\"linkedin_profile_url\";s:43:\"https://www.linkedin.com/company/zymphonies\";s:21:\"pinterest_profile_url\";s:36:\"http://www.pinterest.com/zymphonies/\";s:19:\"youtube_profile_url\";s:22:\"http://www.youtube.com\";}s:7:\"version\";s:7:\"7.x-1.4\";s:7:\"project\";s:22:\"alpha_responsive_theme\";s:9:\"datestamp\";s:10:\"1511889487\";s:10:\"screenshot\";s:54:\"sites/all/themes/alpha_responsive_theme/screenshot.png\";s:3:\"php\";s:5:\"5.2.4\";s:5:\"mtime\";i:1537955055;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}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:6:\"bartik\";O:8:\"stdClass\":10:{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:19:{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.59\";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:20:{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:14:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"settings\";a:1:{s:20:\"shortcut_module_link\";s:1:\"0\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";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:1538750217;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}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:7:\"garland\";O:8:\"stdClass\":10:{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:19:{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.59\";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:\"1524673284\";s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:12:{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:14:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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:1538750217;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}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:12:\"multipurpose\";O:8:\"stdClass\":10:{s:8:\"filename\";s:47:\"sites/all/themes/multipurpose/multipurpose.info\";s:4:\"name\";s:12:\"multipurpose\";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:18:\"Multipurpose Theme\";s:11:\"description\";s:112:\"Multipurpose Theme is a premium Drupal 7 theme. Developed by <a href=\"http://www.devsaran.com\">Devsaran.com</a>.\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:2:{s:9:\"style.css\";s:39:\"sites/all/themes/multipurpose/style.css\";s:18:\"css/responsive.css\";s:48:\"sites/all/themes/multipurpose/css/responsive.css\";}}s:7:\"scripts\";a:3:{s:12:\"js/retina.js\";s:42:\"sites/all/themes/multipurpose/js/retina.js\";s:13:\"js/plugins.js\";s:43:\"sites/all/themes/multipurpose/js/plugins.js\";s:12:\"js/global.js\";s:42:\"sites/all/themes/multipurpose/js/global.js\";}s:7:\"regions\";a:15:{s:13:\"sidebar_first\";s:13:\"First Sidebar\";s:6:\"header\";s:6:\"Header\";s:13:\"preface_first\";s:13:\"Preface First\";s:14:\"preface_middle\";s:14:\"Preface Middle\";s:12:\"preface_last\";s:12:\"Preface Last\";s:11:\"content_top\";s:11:\"Content Top\";s:7:\"content\";s:7:\"Content\";s:4:\"help\";s:4:\"Help\";s:6:\"footer\";s:6:\"Footer\";s:12:\"footer_first\";s:12:\"First Bottom\";s:13:\"footer_second\";s:13:\"Second Bottom\";s:12:\"footer_third\";s:12:\"Third Bottom\";s:14:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:4:\"name\";i:2;s:6:\"slogan\";i:3;s:17:\"node_user_picture\";i:4;s:20:\"comment_user_picture\";i:5;s:25:\"comment_user_verification\";i:6;s:7:\"favicon\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:8:\"settings\";a:8:{s:17:\"slideshow_display\";s:1:\"1\";s:11:\"breadcrumbs\";s:1:\"1\";s:10:\"image_logo\";s:1:\"0\";s:18:\"socialicon_display\";s:1:\"1\";s:12:\"facebook_url\";s:39:\"http://www.facebook.com/devsaran.drupal\";s:11:\"twitter_url\";s:34:\"http://www.twitter.com/saranquardz\";s:15:\"google_plus_url\";s:49:\"https://plus.google.com/u/0/109064032428497406718\";s:13:\"pinterest_url\";s:20:\"http://pinterest.com\";}s:7:\"version\";s:7:\"7.x-1.0\";s:7:\"project\";s:12:\"multipurpose\";s:9:\"datestamp\";s:10:\"1409600329\";s:10:\"screenshot\";s:44:\"sites/all/themes/multipurpose/screenshot.png\";s:3:\"php\";s:5:\"5.2.4\";s:5:\"mtime\";i:1413461100;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}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:5:\"seven\";O:8:\"stdClass\":10:{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:19:{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.59\";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:8:{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:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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:\"1524673284\";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:1538750217;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}s:6:\"prefix\";s:11:\"phptemplate\";}s:5:\"stark\";O:8:\"stdClass\":10:{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:18:{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.59\";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:\"1524673284\";s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:12:{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:14:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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:1538750217;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}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:13:\"venture_theme\";O:8:\"stdClass\":10:{s:8:\"filename\";s:49:\"sites/all/themes/venture_theme/venture_theme.info\";s:4:\"name\";s:13:\"venture_theme\";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:13:\"Venture Theme\";s:11:\"description\";s:107:\"Venture Theme is a premium Drupal 7 theme. Developed by <a href=\"http://www.devsaran.com\">Devsaran.com</a>.\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:2:{s:9:\"style.css\";s:40:\"sites/all/themes/venture_theme/style.css\";s:18:\"css/responsive.css\";s:49:\"sites/all/themes/venture_theme/css/responsive.css\";}}s:7:\"scripts\";a:3:{s:12:\"js/retina.js\";s:43:\"sites/all/themes/venture_theme/js/retina.js\";s:13:\"js/plugins.js\";s:44:\"sites/all/themes/venture_theme/js/plugins.js\";s:12:\"js/global.js\";s:43:\"sites/all/themes/venture_theme/js/global.js\";}s:7:\"regions\";a:15:{s:13:\"sidebar_first\";s:13:\"First Sidebar\";s:6:\"header\";s:6:\"Header\";s:13:\"preface_first\";s:13:\"Preface First\";s:14:\"preface_middle\";s:14:\"Preface Middle\";s:12:\"preface_last\";s:12:\"Preface Last\";s:11:\"content_top\";s:11:\"Content Top\";s:7:\"content\";s:7:\"Content\";s:4:\"help\";s:4:\"Help\";s:6:\"footer\";s:6:\"Footer\";s:12:\"footer_first\";s:12:\"First Bottom\";s:13:\"footer_second\";s:13:\"Second Bottom\";s:12:\"footer_third\";s:12:\"Third Bottom\";s:14:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:4:\"name\";i:2;s:6:\"slogan\";i:3;s:17:\"node_user_picture\";i:4;s:20:\"comment_user_picture\";i:5;s:25:\"comment_user_verification\";i:6;s:7:\"favicon\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:8:\"settings\";a:12:{s:17:\"slideshow_display\";s:1:\"1\";s:11:\"breadcrumbs\";s:1:\"1\";s:10:\"image_logo\";s:1:\"0\";s:11:\"slide1_head\";s:14:\"Sample product\";s:11:\"slide2_head\";s:14:\"Sample service\";s:11:\"slide3_head\";s:10:\"Contact us\";s:11:\"slide1_desc\";s:40:\"Sed do eiusmod tempor incididunt elit...\";s:11:\"slide2_desc\";s:42:\"Lorem ipsum dolor sit amet, consectetur...\";s:11:\"slide3_desc\";s:41:\"Duis aute irure dolor in reprehenderit...\";s:10:\"slide1_url\";s:6:\"node/1\";s:10:\"slide2_url\";s:6:\"node/2\";s:10:\"slide3_url\";s:6:\"node/3\";}s:7:\"version\";s:7:\"7.x-1.1\";s:7:\"project\";s:13:\"venture_theme\";s:9:\"datestamp\";s:10:\"1402425233\";s:10:\"screenshot\";s:45:\"sites/all/themes/venture_theme/screenshot.png\";s:3:\"php\";s:5:\"5.2.4\";s:5:\"mtime\";i:1411558912;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}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:9:\"filepaths\";a:85:{i:0;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:9:\"i18n_user\";s:8:\"filepath\";s:49:\"sites/all/modules/i18n/i18n_user/i18n_user.module\";}i:1;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:14:\"variable_realm\";s:8:\"filepath\";s:63:\"sites/all/modules/variable/variable_realm/variable_realm.module\";}i:2;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:14:\"variable_store\";s:8:\"filepath\";s:63:\"sites/all/modules/variable/variable_store/variable_store.module\";}i:3;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:13:\"i18n_variable\";s:8:\"filepath\";s:57:\"sites/all/modules/i18n/i18n_variable/i18n_variable.module\";}i:4;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:5:\"block\";s:8:\"filepath\";s:26:\"modules/block/block.module\";}i:5;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:12:\"addressfield\";s:8:\"filepath\";s:50:\"sites/all/modules/addressfield/addressfield.module\";}i:6;a:3:{s:4:\"type\";s:5:\"theme\";s:4:\"name\";s:22:\"alpha_responsive_theme\";s:8:\"filepath\";s:67:\"sites/all/themes/alpha_responsive_theme/alpha_responsive_theme.info\";}i:7;a:3:{s:4:\"type\";s:5:\"theme\";s:4:\"name\";s:6:\"bartik\";s:8:\"filepath\";s:25:\"themes/bartik/bartik.info\";}i:8;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:11:\"chartModule\";s:8:\"filepath\";s:52:\"sites/default/modules/chartModule/chartModule.module\";}i:9;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:5:\"color\";s:8:\"filepath\";s:26:\"modules/color/color.module\";}i:10;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:7:\"comment\";s:8:\"filepath\";s:30:\"modules/comment/comment.module\";}i:11;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:7:\"contact\";s:8:\"filepath\";s:30:\"modules/contact/contact.module\";}i:12;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:10:\"contextual\";s:8:\"filepath\";s:36:\"modules/contextual/contextual.module\";}i:13;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:6:\"ctools\";s:8:\"filepath\";s:38:\"sites/all/modules/ctools/ctools.module\";}i:14;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:9:\"dashboard\";s:8:\"filepath\";s:34:\"modules/dashboard/dashboard.module\";}i:15;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:5:\"dblog\";s:8:\"filepath\";s:26:\"modules/dblog/dblog.module\";}i:16;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:6:\"entity\";s:8:\"filepath\";s:38:\"sites/all/modules/entity/entity.module\";}i:17;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:12:\"entity_token\";s:8:\"filepath\";s:44:\"sites/all/modules/entity/entity_token.module\";}i:18;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:26:\"entity_translation_upgrade\";s:8:\"filepath\";s:97:\"sites/all/modules/entity_translation/entity_translation_upgrade/entity_translation_upgrade.module\";}i:19;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:5:\"field\";s:8:\"filepath\";s:26:\"modules/field/field.module\";}i:20;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:17:\"field_sql_storage\";s:8:\"filepath\";s:64:\"modules/field/modules/field_sql_storage/field_sql_storage.module\";}i:21;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:8:\"field_ui\";s:8:\"filepath\";s:32:\"modules/field_ui/field_ui.module\";}i:22;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:4:\"file\";s:8:\"filepath\";s:24:\"modules/file/file.module\";}i:23;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:6:\"filter\";s:8:\"filepath\";s:28:\"modules/filter/filter.module\";}i:24;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:8:\"geocoder\";s:8:\"filepath\";s:42:\"sites/all/modules/geocoder/geocoder.module\";}i:25;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:8:\"geofield\";s:8:\"filepath\";s:42:\"sites/all/modules/geofield/geofield.module\";}i:26;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:6:\"geophp\";s:8:\"filepath\";s:38:\"sites/all/modules/geophp/geophp.module\";}i:27;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:4:\"gmap\";s:8:\"filepath\";s:34:\"sites/all/modules/gmap/gmap.module\";}i:28;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:13:\"gmap_location\";s:8:\"filepath\";s:43:\"sites/all/modules/gmap/gmap_location.module\";}i:29;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:4:\"help\";s:8:\"filepath\";s:24:\"modules/help/help.module\";}i:30;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:12:\"i18n_contact\";s:8:\"filepath\";s:55:\"sites/all/modules/i18n/i18n_contact/i18n_contact.module\";}i:31;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:10:\"i18n_field\";s:8:\"filepath\";s:51:\"sites/all/modules/i18n/i18n_field/i18n_field.module\";}i:32;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:9:\"i18n_node\";s:8:\"filepath\";s:49:\"sites/all/modules/i18n/i18n_node/i18n_node.module\";}i:33;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:13:\"i18n_redirect\";s:8:\"filepath\";s:57:\"sites/all/modules/i18n/i18n_redirect/i18n_redirect.module\";}i:34;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:11:\"i18n_select\";s:8:\"filepath\";s:53:\"sites/all/modules/i18n/i18n_select/i18n_select.module\";}i:35;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:16:\"i18n_translation\";s:8:\"filepath\";s:63:\"sites/all/modules/i18n/i18n_translation/i18n_translation.module\";}i:36;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:5:\"image\";s:8:\"filepath\";s:26:\"modules/image/image.module\";}i:37;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:4:\"imce\";s:8:\"filepath\";s:34:\"sites/all/modules/imce/imce.module\";}i:38;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:11:\"l10n_update\";s:8:\"filepath\";s:48:\"sites/all/modules/l10n_update/l10n_update.module\";}i:39;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:13:\"languageicons\";s:8:\"filepath\";s:52:\"sites/all/modules/languageicons/languageicons.module\";}i:40;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:9:\"libraries\";s:8:\"filepath\";s:44:\"sites/all/modules/libraries/libraries.module\";}i:41;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:4:\"list\";s:8:\"filepath\";s:38:\"modules/field/modules/list/list.module\";}i:42;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:6:\"locale\";s:8:\"filepath\";s:28:\"modules/locale/locale.module\";}i:43;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:8:\"location\";s:8:\"filepath\";s:42:\"sites/all/modules/location/location.module\";}i:44;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:12:\"location_cck\";s:8:\"filepath\";s:67:\"sites/all/modules/location/contrib/location_cck/location_cck.module\";}i:45;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:26:\"location_gmap_find_address\";s:8:\"filepath\";s:83:\"sites/all/modules/gmap/location_gmap_find_address/location_gmap_find_address.module\";}i:46;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:13:\"location_node\";s:8:\"filepath\";s:47:\"sites/all/modules/location/location_node.module\";}i:47;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:4:\"menu\";s:8:\"filepath\";s:24:\"modules/menu/menu.module\";}i:48;a:3:{s:4:\"type\";s:5:\"theme\";s:4:\"name\";s:12:\"multipurpose\";s:8:\"filepath\";s:47:\"sites/all/themes/multipurpose/multipurpose.info\";}i:49;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:4:\"node\";s:8:\"filepath\";s:24:\"modules/node/node.module\";}i:50;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:6:\"number\";s:8:\"filepath\";s:42:\"modules/field/modules/number/number.module\";}i:51;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:7:\"options\";s:8:\"filepath\";s:44:\"modules/field/modules/options/options.module\";}i:52;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:7:\"overlay\";s:8:\"filepath\";s:30:\"modules/overlay/overlay.module\";}i:53;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:4:\"path\";s:8:\"filepath\";s:24:\"modules/path/path.module\";}i:54;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:6:\"photos\";s:8:\"filepath\";s:38:\"sites/all/modules/photos/photos.module\";}i:55;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:13:\"photos_access\";s:8:\"filepath\";s:59:\"sites/all/modules/photos/photos_access/photos_access.module\";}i:56;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:3:\"php\";s:8:\"filepath\";s:22:\"modules/php/php.module\";}i:57;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:7:\"proj4js\";s:8:\"filepath\";s:40:\"sites/all/modules/proj4js/proj4js.module\";}i:58;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:3:\"rdf\";s:8:\"filepath\";s:22:\"modules/rdf/rdf.module\";}i:59;a:3:{s:4:\"type\";s:5:\"theme\";s:4:\"name\";s:5:\"seven\";s:8:\"filepath\";s:23:\"themes/seven/seven.info\";}i:60;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:8:\"shortcut\";s:8:\"filepath\";s:32:\"modules/shortcut/shortcut.module\";}i:61;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:6:\"system\";s:8:\"filepath\";s:28:\"modules/system/system.module\";}i:62;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:8:\"taxonomy\";s:8:\"filepath\";s:32:\"modules/taxonomy/taxonomy.module\";}i:63;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:4:\"text\";s:8:\"filepath\";s:38:\"modules/field/modules/text/text.module\";}i:64;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:7:\"toolbar\";s:8:\"filepath\";s:30:\"modules/toolbar/toolbar.module\";}i:65;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:11:\"translation\";s:8:\"filepath\";s:38:\"modules/translation/translation.module\";}i:66;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:6:\"update\";s:8:\"filepath\";s:28:\"modules/update/update.module\";}i:67;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:4:\"user\";s:8:\"filepath\";s:24:\"modules/user/user.module\";}i:68;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:8:\"variable\";s:8:\"filepath\";s:42:\"sites/all/modules/variable/variable.module\";}i:69;a:3:{s:4:\"type\";s:5:\"theme\";s:4:\"name\";s:13:\"venture_theme\";s:8:\"filepath\";s:49:\"sites/all/themes/venture_theme/venture_theme.info\";}i:70;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:8:\"views_ui\";s:8:\"filepath\";s:39:\"sites/all/modules/views/views_ui.module\";}i:71;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:5:\"forum\";s:8:\"filepath\";s:26:\"modules/forum/forum.module\";}i:72;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:9:\"i18n_menu\";s:8:\"filepath\";s:49:\"sites/all/modules/i18n/i18n_menu/i18n_menu.module\";}i:73;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:9:\"i18n_path\";s:8:\"filepath\";s:49:\"sites/all/modules/i18n/i18n_path/i18n_path.module\";}i:74;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:13:\"i18n_taxonomy\";s:8:\"filepath\";s:57:\"sites/all/modules/i18n/i18n_taxonomy/i18n_taxonomy.module\";}i:75;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:4:\"i18n\";s:8:\"filepath\";s:34:\"sites/all/modules/i18n/i18n.module\";}i:76;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:10:\"i18n_forum\";s:8:\"filepath\";s:51:\"sites/all/modules/i18n/i18n_forum/i18n_forum.module\";}i:77;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:11:\"i18n_string\";s:8:\"filepath\";s:53:\"sites/all/modules/i18n/i18n_string/i18n_string.module\";}i:78;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:5:\"views\";s:8:\"filepath\";s:36:\"sites/all/modules/views/views.module\";}i:79;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:18:\"entity_translation\";s:8:\"filepath\";s:62:\"sites/all/modules/entity_translation/entity_translation.module\";}i:80;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:8:\"features\";s:8:\"filepath\";s:42:\"sites/all/modules/features/features.module\";}i:81;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:10:\"i18n_block\";s:8:\"filepath\";s:51:\"sites/all/modules/i18n/i18n_block/i18n_block.module\";}i:82;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:9:\"i18n_sync\";s:8:\"filepath\";s:49:\"sites/all/modules/i18n/i18n_sync/i18n_sync.module\";}i:83;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:5:\"title\";s:8:\"filepath\";s:36:\"sites/all/modules/title/title.module\";}i:84;a:3:{s:4:\"type\";s:6:\"module\";s:4:\"name\";s:8:\"standard\";s:8:\"filepath\";s:34:\"profiles/standard/standard.profile\";}}}',0,1652171442,1),('variable:language:en','a:2:{s:9:\"site_name\";s:7:\" MORSea\";s:11:\"site_slogan\";s:34:\"Marine Observatory in the Ross Sea\";}',0,1538750673,1),('variable:language:it','a:2:{s:9:\"site_name\";s:7:\" MORSea\";s:11:\"site_slogan\";s:34:\"Marine Observatory in the Ross Sea\";}',0,1538750988,1),('variables','a:512:{s:39:\"additional_settings__active_tab_article\";s:9:\"edit-i18n\";s:37:\"additional_settings__active_tab_forum\";s:9:\"edit-i18n\";s:39:\"additional_settings__active_tab_gallery\";s:15:\"edit-submission\";s:40:\"additional_settings__active_tab_location\";s:15:\"edit-submission\";s:36:\"additional_settings__active_tab_maps\";s:11:\"edit-photos\";s:39:\"additional_settings__active_tab_mooring\";s:9:\"edit-i18n\";s:58:\"additional_settings__active_tab_openlayers_example_content\";s:9:\"edit-i18n\";s:36:\"additional_settings__active_tab_page\";s:13:\"edit-workflow\";s:38:\"additional_settings__active_tab_photos\";s:9:\"edit-i18n\";s:51:\"additional_settings__active_tab_photo_moorings_2010\";s:22:\"edit-location-settings\";s:51:\"additional_settings__active_tab_photo_moorings_2012\";s:9:\"edit-i18n\";s:51:\"additional_settings__active_tab_photo_moorings_2014\";s:9:\"edit-i18n\";s:11:\"admin_theme\";s:5:\"seven\";s:9:\"anonymous\";s:9:\"Anonymous\";s:46:\"authorize_filetransfer_connection_settings_ftp\";a:2:{s:8:\"username\";s:8:\"antartic\";s:8:\"advanced\";a:2:{s:8:\"hostname\";s:9:\"localhost\";s:4:\"port\";s:2:\"21\";}}s:30:\"authorize_filetransfer_default\";s:3:\"ftp\";s:11:\"block_cache\";b:0;s:5:\"cache\";i:0;s:28:\"cache_class_cache_ctools_css\";s:14:\"CToolsCssCache\";s:14:\"cache_lifetime\";s:1:\"0\";s:9:\"clean_url\";s:1:\"0\";s:21:\"colorbox_caption_trim\";s:1:\"0\";s:28:\"colorbox_caption_trim_length\";s:2:\"75\";s:25:\"colorbox_compression_type\";s:8:\"minified\";s:33:\"colorbox_custom_settings_activate\";s:1:\"0\";s:14:\"colorbox_fixed\";i:1;s:22:\"colorbox_initialheight\";s:3:\"250\";s:21:\"colorbox_initialwidth\";s:3:\"300\";s:15:\"colorbox_inline\";i:0;s:13:\"colorbox_load\";i:1;s:18:\"colorbox_maxheight\";s:3:\"98%\";s:17:\"colorbox_maxwidth\";s:3:\"98%\";s:22:\"colorbox_mobile_detect\";s:1:\"1\";s:28:\"colorbox_mobile_device_width\";s:5:\"480px\";s:16:\"colorbox_opacity\";s:4:\"0.85\";s:21:\"colorbox_overlayclose\";i:1;s:14:\"colorbox_pages\";s:115:\"admin*\r\nimagebrowser*\r\nimg_assist*\r\nimce*\r\nnode/add/*\r\nnode/*/edit\r\nprint/*\r\nprintpdf/*\r\nsystem/ajax\r\nsystem/ajax/*\";s:18:\"colorbox_scrolling\";s:1:\"1\";s:18:\"colorbox_slideshow\";s:1:\"0\";s:22:\"colorbox_slideshowauto\";i:1;s:23:\"colorbox_slideshowspeed\";s:4:\"2500\";s:14:\"colorbox_style\";s:7:\"default\";s:19:\"colorbox_text_close\";s:5:\"Close\";s:21:\"colorbox_text_current\";s:20:\"{current} of {total}\";s:18:\"colorbox_text_next\";s:7:\"Next »\";s:22:\"colorbox_text_previous\";s:7:\"« Prev\";s:19:\"colorbox_text_start\";s:15:\"start slideshow\";s:18:\"colorbox_text_stop\";s:14:\"stop slideshow\";s:25:\"colorbox_transition_speed\";s:3:\"350\";s:24:\"colorbox_transition_type\";s:7:\"elastic\";s:19:\"colorbox_visibility\";s:1:\"0\";s:25:\"comment_anonymous_article\";i:0;s:23:\"comment_anonymous_forum\";i:0;s:25:\"comment_anonymous_mooring\";i:0;s:44:\"comment_anonymous_openlayers_example_content\";i:0;s:22:\"comment_anonymous_page\";i:0;s:24:\"comment_anonymous_photos\";i:0;s:37:\"comment_anonymous_photo_moorings_2010\";i:0;s:37:\"comment_anonymous_photo_moorings_2012\";i:0;s:37:\"comment_anonymous_photo_moorings_2014\";i:0;s:15:\"comment_article\";s:1:\"2\";s:28:\"comment_default_mode_article\";i:1;s:26:\"comment_default_mode_forum\";i:1;s:28:\"comment_default_mode_mooring\";i:1;s:47:\"comment_default_mode_openlayers_example_content\";i:1;s:25:\"comment_default_mode_page\";i:1;s:27:\"comment_default_mode_photos\";i:0;s:40:\"comment_default_mode_photo_moorings_2010\";i:0;s:40:\"comment_default_mode_photo_moorings_2012\";i:1;s:40:\"comment_default_mode_photo_moorings_2014\";i:1;s:32:\"comment_default_per_page_article\";s:2:\"50\";s:30:\"comment_default_per_page_forum\";s:2:\"50\";s:32:\"comment_default_per_page_mooring\";s:2:\"50\";s:51:\"comment_default_per_page_openlayers_example_content\";s:2:\"50\";s:29:\"comment_default_per_page_page\";s:2:\"50\";s:31:\"comment_default_per_page_photos\";s:2:\"50\";s:44:\"comment_default_per_page_photo_moorings_2010\";s:2:\"50\";s:44:\"comment_default_per_page_photo_moorings_2012\";s:2:\"50\";s:44:\"comment_default_per_page_photo_moorings_2014\";s:2:\"50\";s:29:\"comment_form_location_article\";i:1;s:27:\"comment_form_location_forum\";i:1;s:29:\"comment_form_location_mooring\";i:1;s:48:\"comment_form_location_openlayers_example_content\";i:1;s:26:\"comment_form_location_page\";i:1;s:28:\"comment_form_location_photos\";i:0;s:41:\"comment_form_location_photo_moorings_2010\";i:0;s:41:\"comment_form_location_photo_moorings_2012\";i:1;s:41:\"comment_form_location_photo_moorings_2014\";i:1;s:13:\"comment_forum\";s:1:\"2\";s:15:\"comment_mooring\";s:1:\"1\";s:34:\"comment_openlayers_example_content\";s:1:\"2\";s:12:\"comment_page\";s:1:\"0\";s:14:\"comment_photos\";s:1:\"1\";s:27:\"comment_photo_moorings_2010\";s:1:\"1\";s:27:\"comment_photo_moorings_2012\";s:1:\"1\";s:27:\"comment_photo_moorings_2014\";s:1:\"1\";s:23:\"comment_preview_article\";s:1:\"1\";s:21:\"comment_preview_forum\";s:1:\"1\";s:23:\"comment_preview_mooring\";s:1:\"1\";s:42:\"comment_preview_openlayers_example_content\";s:1:\"1\";s:20:\"comment_preview_page\";s:1:\"1\";s:22:\"comment_preview_photos\";s:1:\"1\";s:35:\"comment_preview_photo_moorings_2010\";s:1:\"0\";s:35:\"comment_preview_photo_moorings_2012\";s:1:\"0\";s:35:\"comment_preview_photo_moorings_2014\";s:1:\"1\";s:29:\"comment_subject_field_article\";i:1;s:27:\"comment_subject_field_forum\";i:1;s:29:\"comment_subject_field_mooring\";i:1;s:48:\"comment_subject_field_openlayers_example_content\";i:1;s:26:\"comment_subject_field_page\";i:1;s:28:\"comment_subject_field_photos\";i:0;s:41:\"comment_subject_field_photo_moorings_2010\";i:0;s:41:\"comment_subject_field_photo_moorings_2012\";i:1;s:41:\"comment_subject_field_photo_moorings_2014\";i:1;s:8:\"cron_key\";s:43:\"LsdCIkz6hLGESUQcU_Z9QDWiKMA6uCJVfJSTwdJdDZg\";s:9:\"cron_last\";i:1557935826;s:19:\"css_js_query_string\";s:6:\"pg4rm6\";s:16:\"ctools_last_cron\";i:1652102742;s:21:\"date_default_timezone\";s:13:\"Europe/Berlin\";s:18:\"default_nodes_main\";s:2:\"10\";s:25:\"drupal_http_request_fails\";b:0;s:18:\"drupal_private_key\";s:43:\"IusWfQ1bYp4KIRwAFn-DermrffO9386JuAzGBZzPyHA\";s:17:\"email__active_tab\";s:24:\"edit-email-admin-created\";s:41:\"entity_translation_comment_filter_article\";i:0;s:39:\"entity_translation_comment_filter_forum\";i:0;s:41:\"entity_translation_comment_filter_mooring\";i:0;s:60:\"entity_translation_comment_filter_openlayers_example_content\";i:0;s:38:\"entity_translation_comment_filter_page\";i:0;s:40:\"entity_translation_comment_filter_photos\";i:0;s:53:\"entity_translation_comment_filter_photo_moorings_2010\";i:0;s:53:\"entity_translation_comment_filter_photo_moorings_2012\";i:0;s:53:\"entity_translation_comment_filter_photo_moorings_2014\";i:0;s:31:\"entity_translation_entity_types\";a:1:{s:4:\"node\";s:4:\"node\";}s:49:\"entity_translation_hide_translation_links_article\";i:0;s:47:\"entity_translation_hide_translation_links_forum\";i:0;s:49:\"entity_translation_hide_translation_links_mooring\";i:0;s:68:\"entity_translation_hide_translation_links_openlayers_example_content\";i:0;s:46:\"entity_translation_hide_translation_links_page\";i:0;s:48:\"entity_translation_hide_translation_links_photos\";i:0;s:61:\"entity_translation_hide_translation_links_photo_moorings_2010\";i:0;s:61:\"entity_translation_hide_translation_links_photo_moorings_2012\";i:0;s:61:\"entity_translation_hide_translation_links_photo_moorings_2014\";i:0;s:40:\"entity_translation_node_metadata_article\";s:1:\"0\";s:38:\"entity_translation_node_metadata_forum\";s:1:\"0\";s:40:\"entity_translation_node_metadata_mooring\";s:1:\"0\";s:59:\"entity_translation_node_metadata_openlayers_example_content\";s:1:\"0\";s:37:\"entity_translation_node_metadata_page\";s:1:\"0\";s:39:\"entity_translation_node_metadata_photos\";s:1:\"0\";s:52:\"entity_translation_node_metadata_photo_moorings_2010\";s:1:\"0\";s:52:\"entity_translation_node_metadata_photo_moorings_2012\";s:1:\"0\";s:52:\"entity_translation_node_metadata_photo_moorings_2014\";s:1:\"0\";s:35:\"entity_translation_revision_enabled\";b:1;s:18:\"features_codecache\";a:1:{s:31:\"openlayers_test_example_feature\";a:2:{s:5:\"field\";s:32:\"10a3228c50dde96b89f8068880e4055b\";s:12:\"dependencies\";s:32:\"de3d6b8255f4510c34093f212c7cbf4a\";}}s:24:\"features_ignored_orphans\";a:0:{}s:18:\"features_semaphore\";a:0:{}s:63:\"field_bundle_settings_comment__comment_node_photo_moorings_2010\";a:2:{s:10:\"view_modes\";a:1:{s:4:\"full\";a:1:{s:15:\"custom_settings\";b:0;}}s:12:\"extra_fields\";a:2:{s:4:\"form\";a:0:{}s:7:\"display\";a:0:{}}}s:63:\"field_bundle_settings_comment__comment_node_photo_moorings_2014\";a:0:{}s:35:\"field_bundle_settings_node__article\";a:2:{s:10:\"view_modes\";a:0:{}s:12:\"extra_fields\";a:2:{s:4:\"form\";a:3:{s:8:\"language\";a:1:{s:6:\"weight\";s:1:\"0\";}s:9:\"locations\";a:1:{s:6:\"weight\";s:2:\"30\";}s:5:\"title\";a:1:{s:6:\"weight\";s:2:\"-5\";}}s:7:\"display\";a:0:{}}}s:33:\"field_bundle_settings_node__forum\";a:2:{s:10:\"view_modes\";a:0:{}s:12:\"extra_fields\";a:2:{s:4:\"form\";a:2:{s:8:\"language\";a:1:{s:6:\"weight\";s:1:\"0\";}s:9:\"locations\";a:1:{s:6:\"weight\";s:2:\"30\";}}s:7:\"display\";a:0:{}}}s:35:\"field_bundle_settings_node__mooring\";a:2:{s:10:\"view_modes\";a:0:{}s:12:\"extra_fields\";a:2:{s:4:\"form\";a:3:{s:9:\"locations\";a:1:{s:6:\"weight\";s:1:\"3\";}s:5:\"title\";a:1:{s:6:\"weight\";s:1:\"0\";}s:8:\"language\";a:1:{s:6:\"weight\";s:1:\"0\";}}s:7:\"display\";a:0:{}}}s:54:\"field_bundle_settings_node__openlayers_example_content\";a:2:{s:10:\"view_modes\";a:0:{}s:12:\"extra_fields\";a:2:{s:4:\"form\";a:2:{s:8:\"language\";a:1:{s:6:\"weight\";s:1:\"0\";}s:9:\"locations\";a:1:{s:6:\"weight\";s:2:\"30\";}}s:7:\"display\";a:0:{}}}s:32:\"field_bundle_settings_node__page\";a:2:{s:10:\"view_modes\";a:3:{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:\"extra_fields\";a:2:{s:4:\"form\";a:3:{s:8:\"language\";a:1:{s:6:\"weight\";s:1:\"1\";}s:9:\"locations\";a:1:{s:6:\"weight\";s:1:\"3\";}s:5:\"title\";a:1:{s:6:\"weight\";s:1:\"0\";}}s:7:\"display\";a:1:{s:8:\"language\";a:1:{s:7:\"default\";a:2:{s:6:\"weight\";s:1:\"0\";s:7:\"visible\";b:0;}}}}}s:34:\"field_bundle_settings_node__photos\";a:2:{s:10:\"view_modes\";a:3:{s:6:\"teaser\";a:1:{s:15:\"custom_settings\";b:1;}s:4:\"full\";a:1:{s:15:\"custom_settings\";b:1;}s:3:\"rss\";a:1:{s:15:\"custom_settings\";b:0;}}s:12:\"extra_fields\";a:2:{s:4:\"form\";a:2:{s:8:\"language\";a:1:{s:6:\"weight\";s:1:\"0\";}s:9:\"locations\";a:1:{s:6:\"weight\";s:2:\"30\";}}s:7:\"display\";a:0:{}}}s:47:\"field_bundle_settings_node__photo_moorings_2010\";a:2:{s:10:\"view_modes\";a:0:{}s:12:\"extra_fields\";a:2:{s:4:\"form\";a:2:{s:9:\"locations\";a:1:{s:6:\"weight\";s:2:\"30\";}s:5:\"title\";a:1:{s:6:\"weight\";s:2:\"-5\";}}s:7:\"display\";a:0:{}}}s:47:\"field_bundle_settings_node__photo_moorings_2012\";a:2:{s:10:\"view_modes\";a:3:{s:4:\"full\";a:1:{s:15:\"custom_settings\";b:1;}s:6:\"teaser\";a:1:{s:15:\"custom_settings\";b:1;}s:3:\"rss\";a:1:{s:15:\"custom_settings\";b:0;}}s:12:\"extra_fields\";a:2:{s:4:\"form\";a:2:{s:9:\"locations\";a:1:{s:6:\"weight\";s:2:\"30\";}s:5:\"title\";a:1:{s:6:\"weight\";s:2:\"-5\";}}s:7:\"display\";a:0:{}}}s:47:\"field_bundle_settings_node__photo_moorings_2014\";a:2:{s:10:\"view_modes\";a:3:{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:\"extra_fields\";a:2:{s:4:\"form\";a:3:{s:9:\"locations\";a:1:{s:6:\"weight\";s:2:\"30\";}s:5:\"title\";a:1:{s:6:\"weight\";s:2:\"-5\";}s:8:\"language\";a:1:{s:6:\"weight\";s:1:\"0\";}}s:7:\"display\";a:0:{}}}s:19:\"file_temporary_path\";s:4:\"/tmp\";s:22:\"filter_fallback_format\";s:10:\"plain_text\";s:20:\"forum_nav_vocabulary\";s:1:\"2\";s:12:\"gmap_api_key\";s:0:\"\";s:18:\"gmap_bubble_styles\";a:2:{s:19:\"enable_bubble_style\";i:0;s:20:\"style_bubble_options\";s:0:\"\";}s:12:\"gmap_default\";a:15:{s:5:\"width\";s:5:\"300px\";s:6:\"height\";s:5:\"200px\";s:7:\"latlong\";s:4:\"40,0\";s:4:\"zoom\";s:1:\"3\";s:7:\"maxzoom\";s:2:\"14\";s:6:\"styles\";a:3:{s:12:\"line_default\";a:5:{i:0;s:6:\"0000ff\";i:1;s:1:\"5\";i:2;s:2:\"45\";i:3;s:0:\"\";i:4;s:0:\"\";}s:12:\"poly_default\";a:5:{i:0;s:6:\"000000\";i:1;s:1:\"3\";i:2;s:2:\"25\";i:3;s:6:\"ff0000\";i:4;s:2:\"45\";}s:15:\"highlight_color\";s:6:\"ff0000\";}s:11:\"controltype\";s:5:\"Small\";s:10:\"pancontrol\";i:1;s:17:\"streetviewcontrol\";i:0;s:3:\"mtc\";s:8:\"standard\";s:7:\"maptype\";s:3:\"Map\";s:10:\"baselayers\";a:4:{s:3:\"Map\";i:1;s:9:\"Satellite\";i:1;s:6:\"Hybrid\";i:1;s:8:\"Physical\";i:0;}s:8:\"behavior\";a:13:{s:7:\"locpick\";b:0;s:6:\"nodrag\";i:0;s:10:\"nokeyboard\";i:1;s:11:\"nomousezoom\";i:0;s:10:\"nocontzoom\";i:0;s:8:\"autozoom\";i:0;s:10:\"dynmarkers\";i:0;s:8:\"overview\";i:0;s:12:\"collapsehack\";i:0;s:5:\"scale\";i:0;s:17:\"extramarkerevents\";b:0;s:15:\"clickableshapes\";b:0;s:9:\"highlight\";i:0;}s:10:\"markermode\";s:1:\"0\";s:11:\"line_colors\";a:3:{i:0;s:7:\"#00cc00\";i:1;s:7:\"#ff0000\";i:2;s:7:\"#0000ff\";}}s:18:\"gmap_markermanager\";a:4:{s:13:\"markermanager\";a:6:{s:8:\"filename\";s:23:\"markermanager_packed.js\";s:13:\"borderPadding\";s:3:\"256\";s:7:\"maxZoom\";s:1:\"4\";s:12:\"trackMarkers\";i:0;s:13:\"markerMinZoom\";s:1:\"4\";s:13:\"markerMaxZoom\";s:1:\"0\";}s:15:\"markerclusterer\";a:4:{s:8:\"filename\";s:25:\"markerclusterer_packed.js\";s:8:\"gridSize\";i:60;s:7:\"maxZoom\";i:17;s:6:\"styles\";a:0:{}}s:9:\"clusterer\";a:6:{s:8:\"filename\";s:13:\"Clusterer2.js\";s:6:\"marker\";s:7:\"cluster\";s:13:\"max_nocluster\";s:3:\"150\";s:11:\"cluster_min\";s:1:\"5\";s:9:\"max_lines\";s:2:\"10\";s:10:\"popup_mode\";s:4:\"orig\";}s:13:\"clustermarker\";a:7:{s:8:\"filename\";s:16:\"ClusterMarker.js\";s:13:\"borderPadding\";s:3:\"256\";s:17:\"clusteringEnabled\";i:1;s:17:\"clusterMarkerIcon\";s:0:\"\";s:18:\"clusterMarkerTitle\";s:0:\"\";s:13:\"fitMapMaxZoom\";s:1:\"0\";s:16:\"intersectPadding\";s:1:\"0\";}}s:16:\"gmap_marker_file\";s:1:\"9\";s:12:\"gmap_mm_type\";s:4:\"gmap\";s:13:\"gmap_node_map\";a:4:{s:5:\"macro\";s:61:\"[gmap |id=nodemap|center=40,0|zoom=3|width=100%|height=400px]\";s:6:\"header\";s:130:\"This map illustrates the locations of the nodes on this website. Each marker indicates a node associated with a specific location.\";s:6:\"footer\";s:0:\"\";s:10:\"markermode\";s:1:\"1\";}s:17:\"gmap_node_markers\";a:3:{s:6:\"photos\";s:6:\"drupal\";s:7:\"article\";s:6:\"drupal\";s:4:\"page\";s:6:\"drupal\";}s:17:\"gmap_role_markers\";a:3:{i:2;s:6:\"drupal\";i:3;s:6:\"drupal\";i:4;s:6:\"drupal\";}s:13:\"gmap_user_map\";a:4:{s:5:\"macro\";s:61:\"[gmap |id=usermap|center=40,0|zoom=3|width=100%|height=400px]\";s:6:\"header\";s:120:\"This map illustrates the extent of users of this website. Each marker indicates a user that has entered their locations.\";s:6:\"footer\";s:0:\"\";s:10:\"markermode\";s:1:\"1\";}s:27:\"i18n_hide_translation_links\";i:0;s:18:\"i18n_language_list\";s:1:\"1\";s:31:\"i18n_node_default_language_none\";s:1:\"1\";s:26:\"i18n_node_extended_article\";s:1:\"1\";s:24:\"i18n_node_extended_forum\";s:1:\"1\";s:26:\"i18n_node_extended_mooring\";s:1:\"1\";s:45:\"i18n_node_extended_openlayers_example_content\";s:1:\"1\";s:23:\"i18n_node_extended_page\";s:1:\"1\";s:25:\"i18n_node_extended_photos\";s:1:\"1\";s:38:\"i18n_node_extended_photo_moorings_2010\";s:1:\"1\";s:38:\"i18n_node_extended_photo_moorings_2012\";s:1:\"1\";s:38:\"i18n_node_extended_photo_moorings_2014\";s:1:\"1\";s:25:\"i18n_node_options_article\";a:1:{i:0;s:8:\"required\";}s:23:\"i18n_node_options_forum\";a:1:{i:0;s:8:\"required\";}s:25:\"i18n_node_options_mooring\";a:1:{i:0;s:8:\"required\";}s:44:\"i18n_node_options_openlayers_example_content\";a:1:{i:0;s:8:\"required\";}s:22:\"i18n_node_options_page\";a:1:{i:0;s:8:\"required\";}s:24:\"i18n_node_options_photos\";a:1:{i:0;s:8:\"required\";}s:37:\"i18n_node_options_photo_moorings_2010\";a:0:{}s:37:\"i18n_node_options_photo_moorings_2012\";a:1:{i:0;s:8:\"required\";}s:37:\"i18n_node_options_photo_moorings_2014\";a:1:{i:0;s:8:\"required\";}s:27:\"i18n_string_allowed_formats\";a:3:{s:13:\"filtered_html\";s:13:\"filtered_html\";s:9:\"full_html\";s:9:\"full_html\";s:10:\"plain_text\";s:10:\"plain_text\";}s:27:\"i18n_string_source_language\";s:2:\"en\";s:27:\"i18n_sync_node_type_article\";a:0:{}s:25:\"i18n_sync_node_type_forum\";a:0:{}s:27:\"i18n_sync_node_type_mooring\";a:0:{}s:46:\"i18n_sync_node_type_openlayers_example_content\";a:0:{}s:24:\"i18n_sync_node_type_page\";a:0:{}s:26:\"i18n_sync_node_type_photos\";a:0:{}s:39:\"i18n_sync_node_type_photo_moorings_2010\";a:0:{}s:39:\"i18n_sync_node_type_photo_moorings_2012\";a:0:{}s:39:\"i18n_sync_node_type_photo_moorings_2014\";a:0:{}s:13:\"image_toolkit\";s:2:\"gd\";s:13:\"imce_profiles\";a:2:{i:1;a:10:{s:4:\"name\";s:6:\"User-1\";s:7:\"usertab\";i:1;s:8:\"filesize\";i:0;s:5:\"quota\";i:0;s:7:\"tuquota\";i:0;s:10:\"extensions\";s:1:\"*\";s:10:\"dimensions\";s:9:\"1200x1200\";s:7:\"filenum\";i:0;s:11:\"directories\";a:1:{i:0;a:7:{s:4:\"name\";s:1:\".\";s:6:\"subnav\";i:1;s:6:\"browse\";i:1;s:6:\"upload\";i:1;s:5:\"thumb\";i:1;s:6:\"delete\";i:1;s:6:\"resize\";i:1;}}s:10:\"thumbnails\";a:3:{i:0;a:4:{s:4:\"name\";s:5:\"Small\";s:10:\"dimensions\";s:5:\"90x90\";s:6:\"prefix\";s:6:\"small_\";s:6:\"suffix\";s:0:\"\";}i:1;a:4:{s:4:\"name\";s:6:\"Medium\";s:10:\"dimensions\";s:7:\"120x120\";s:6:\"prefix\";s:7:\"medium_\";s:6:\"suffix\";s:0:\"\";}i:2;a:4:{s:4:\"name\";s:5:\"Large\";s:10:\"dimensions\";s:7:\"180x180\";s:6:\"prefix\";s:6:\"large_\";s:6:\"suffix\";s:0:\"\";}}}i:2;a:10:{s:4:\"name\";s:14:\"Sample profile\";s:7:\"usertab\";i:1;s:8:\"filesize\";i:1;s:5:\"quota\";i:2;s:7:\"tuquota\";i:0;s:10:\"extensions\";s:16:\"gif png jpg jpeg\";s:10:\"dimensions\";s:7:\"800x600\";s:7:\"filenum\";i:1;s:11:\"directories\";a:1:{i:0;a:7:{s:4:\"name\";s:5:\"u%uid\";s:6:\"subnav\";i:0;s:6:\"browse\";i:1;s:6:\"upload\";i:1;s:5:\"thumb\";i:1;s:6:\"delete\";i:0;s:6:\"resize\";i:0;}}s:10:\"thumbnails\";a:1:{i:0;a:4:{s:4:\"name\";s:5:\"Thumb\";s:10:\"dimensions\";s:5:\"90x90\";s:6:\"prefix\";s:6:\"thumb_\";s:6:\"suffix\";s:0:\"\";}}}}s:19:\"imce_roles_profiles\";a:4:{i:4;a:2:{s:6:\"weight\";s:1:\"0\";s:10:\"public_pid\";s:1:\"1\";}i:3;a:2:{s:6:\"weight\";s:1:\"0\";s:10:\"public_pid\";s:1:\"1\";}i:2;a:2:{s:6:\"weight\";i:11;s:10:\"public_pid\";i:0;}i:1;a:2:{s:6:\"weight\";i:12;s:10:\"public_pid\";i:0;}}s:21:\"imce_settings_absurls\";i:0;s:29:\"imce_settings_disable_private\";i:1;s:21:\"imce_settings_replace\";s:1:\"0\";s:22:\"imce_settings_textarea\";s:0:\"\";s:26:\"imce_settings_thumb_method\";s:14:\"scale_and_crop\";s:15:\"install_profile\";s:8:\"standard\";s:12:\"install_task\";s:4:\"done\";s:12:\"install_time\";i:1409923698;s:17:\"javascript_parsed\";a:55:{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/overlay/overlay-child.js\";i:4;s:45:\"sites/all/modules/photos/js/min/photos.min.js\";i:5;s:55:\"sites/all/modules/photos/photos_access/photos_access.js\";i:6;s:24:\"modules/system/system.js\";i:7;s:12:\"misc/form.js\";s:10:\"refresh:it\";s:7:\"waiting\";i:8;s:42:\"sites/all/themes/multipurpose/js/retina.js\";i:9;s:43:\"sites/all/themes/multipurpose/js/plugins.js\";i:10;s:42:\"sites/all/themes/multipurpose/js/global.js\";i:11;s:29:\"misc/ui/jquery.ui.core.min.js\";i:12;s:21:\"misc/jquery.ba-bbq.js\";i:13;s:33:\"modules/overlay/overlay-parent.js\";i:14;s:32:\"modules/contextual/contextual.js\";i:15;s:21:\"misc/jquery.cookie.js\";i:16;s:26:\"modules/toolbar/toolbar.js\";i:17;s:35:\"misc/ui/jquery.ui.datepicker.min.js\";i:18;s:35:\"modules/locale/locale.datepicker.js\";i:19;s:47:\"sites/default/modules/chartModule/js/general.js\";i:20;s:52:\"sites/default/modules/chartModule/js/canvasjs.min.js\";i:21;s:16:\"misc/textarea.js\";i:22;s:20:\"modules/user/user.js\";i:23;s:16:\"misc/collapse.js\";i:24;s:14:\"misc/states.js\";i:25;s:21:\"misc/vertical-tabs.js\";i:26;s:19:\"misc/tableheader.js\";i:27;s:19:\"misc/jquery.form.js\";i:28;s:16:\"misc/progress.js\";i:29;s:12:\"misc/ajax.js\";i:30;s:28:\"modules/field_ui/field_ui.js\";i:31;s:17:\"misc/tabledrag.js\";i:32;s:19:\"misc/tableselect.js\";i:33;s:31:\"misc/ui/jquery.ui.widget.min.js\";i:34;s:30:\"misc/ui/jquery.ui.mouse.min.js\";i:35;s:33:\"misc/ui/jquery.ui.sortable.min.js\";i:36;s:30:\"modules/dashboard/dashboard.js\";i:37;s:34:\"modules/field/modules/text/text.js\";i:38;s:24:\"modules/filter/filter.js\";i:39;s:33:\"sites/all/modules/gmap/js/gmap.js\";i:40;s:33:\"sites/all/modules/gmap/js/icon.js\";i:41;s:35:\"sites/all/modules/gmap/js/marker.js\";i:42;s:38:\"sites/all/modules/gmap/js/highlight.js\";i:43;s:33:\"sites/all/modules/gmap/js/poly.js\";i:44;s:36:\"sites/all/modules/gmap/js/locpick.js\";i:45;s:40:\"sites/all/modules/gmap/js/gmap_marker.js\";i:46;s:20:\"modules/menu/menu.js\";i:47;s:20:\"modules/node/node.js\";i:48;s:36:\"modules/comment/comment-node-form.js\";i:49;s:20:\"modules/path/path.js\";i:50;s:20:\"misc/autocomplete.js\";i:51;s:47:\"sites/all/modules/i18n/i18n_block/i18n_block.js\";i:52;s:22:\"modules/block/block.js\";i:53;s:20:\"modules/file/file.js\";}s:28:\"juicebox_apply_markup_filter\";i:1;s:20:\"juicebox_enable_cors\";i:0;s:17:\"juicebox_js_scope\";s:6:\"header\";s:24:\"juicebox_multisize_large\";s:14:\"juicebox_large\";s:25:\"juicebox_multisize_medium\";s:15:\"juicebox_medium\";s:24:\"juicebox_multisize_small\";s:14:\"juicebox_small\";s:36:\"juicebox_translate_base_languagelist\";s:85:\"Show Thumbnails|Hide Thumbnails|Expand Gallery|Close Gallery|Open Image in New Window\";s:28:\"juicebox_translate_interface\";i:0;s:26:\"l10n_update_check_disabled\";i:1;s:27:\"l10n_update_check_frequency\";s:1:\"7\";s:22:\"l10n_update_check_mode\";s:1:\"3\";s:26:\"l10n_update_download_store\";s:0:\"\";s:23:\"l10n_update_import_mode\";s:1:\"1\";s:22:\"l10n_update_last_check\";i:1651663083;s:18:\"languageicons_path\";s:43:\"sites/all/modules/languageicons/flags/*.png\";s:23:\"languageicons_placement\";s:6:\"before\";s:24:\"languageicons_show_block\";i:1;s:23:\"languageicons_show_node\";i:1;s:18:\"languageicons_size\";s:5:\"16x12\";s:29:\"language_content_type_article\";s:1:\"2\";s:27:\"language_content_type_forum\";s:1:\"2\";s:29:\"language_content_type_gallery\";s:1:\"0\";s:30:\"language_content_type_location\";s:1:\"0\";s:26:\"language_content_type_maps\";s:1:\"0\";s:29:\"language_content_type_mooring\";s:1:\"2\";s:48:\"language_content_type_openlayers_example_content\";s:1:\"2\";s:26:\"language_content_type_page\";s:1:\"2\";s:28:\"language_content_type_photos\";s:1:\"2\";s:41:\"language_content_type_photo_moorings_2010\";s:1:\"2\";s:41:\"language_content_type_photo_moorings_2012\";s:1:\"2\";s:41:\"language_content_type_photo_moorings_2014\";s:1:\"2\";s:14:\"language_count\";i:2;s:16:\"language_default\";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:\"\";}s:29:\"language_negotiation_language\";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:16:\"language-default\";a:1:{s:9:\"callbacks\";a:1:{s:8:\"language\";s:21:\"language_from_default\";}}}s:37:\"language_negotiation_language_content\";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:16:\"language-default\";a:1:{s:9:\"callbacks\";a:1:{s:8:\"language\";s:21:\"language_from_default\";}}}s:33:\"language_negotiation_language_url\";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\";}}s:14:\"language_types\";a:3:{s:8:\"language\";b:1;s:16:\"language_content\";b:1;s:12:\"language_url\";b:0;}s:41:\"locale_language_providers_weight_language\";a:5:{s:10:\"locale-url\";s:2:\"-8\";s:14:\"locale-session\";s:2:\"-6\";s:11:\"locale-user\";s:2:\"-4\";s:14:\"locale-browser\";s:2:\"-2\";s:16:\"language-default\";s:2:\"10\";}s:49:\"locale_language_providers_weight_language_content\";a:6:{s:10:\"locale-url\";s:2:\"-8\";s:14:\"locale-session\";s:2:\"-6\";s:11:\"locale-user\";s:2:\"-4\";s:14:\"locale-browser\";s:2:\"-2\";s:16:\"locale-interface\";s:1:\"8\";s:16:\"language-default\";s:2:\"10\";}s:19:\"locationmap_address\";s:8:\"Polo Sud\";s:16:\"locationmap_body\";a:2:{s:5:\"value\";s:0:\"\";s:6:\"format\";s:13:\"filtered_html\";}s:18:\"locationmap_footer\";a:2:{s:5:\"value\";s:0:\"\";s:6:\"format\";s:13:\"filtered_html\";}s:18:\"locationmap_height\";s:3:\"500\";s:16:\"locationmap_info\";a:2:{s:5:\"value\";s:0:\"\";s:6:\"format\";s:13:\"filtered_html\";}s:15:\"locationmap_lat\";d:18.2156701;s:15:\"locationmap_lng\";d:-73.7594239;s:17:\"locationmap_title\";s:9:\"Antartica\";s:16:\"locationmap_type\";s:31:\"google.maps.MapTypeId.SATELLITE\";s:17:\"locationmap_width\";s:3:\"500\";s:16:\"locationmap_zoom\";s:2:\"15\";s:27:\"location_defaultnum_article\";s:1:\"1\";s:25:\"location_defaultnum_forum\";s:1:\"1\";s:27:\"location_defaultnum_mooring\";s:1:\"1\";s:46:\"location_defaultnum_openlayers_example_content\";s:1:\"1\";s:24:\"location_defaultnum_page\";s:1:\"1\";s:26:\"location_defaultnum_photos\";s:1:\"1\";s:39:\"location_defaultnum_photo_moorings_2010\";s:1:\"0\";s:39:\"location_defaultnum_photo_moorings_2012\";s:1:\"1\";s:39:\"location_defaultnum_photo_moorings_2014\";s:1:\"1\";s:24:\"location_default_country\";s:2:\"aq\";s:25:\"location_display_location\";s:1:\"0\";s:22:\"location_jit_geocoding\";i:0;s:22:\"location_locpick_macro\";s:6:\"[gmap]\";s:25:\"location_maplink_external\";i:0;s:32:\"location_maplink_external_method\";s:15:\"target=\"_blank\"\";s:23:\"location_maxnum_article\";s:1:\"1\";s:21:\"location_maxnum_forum\";s:1:\"1\";s:23:\"location_maxnum_mooring\";s:1:\"1\";s:42:\"location_maxnum_openlayers_example_content\";s:1:\"1\";s:20:\"location_maxnum_page\";s:1:\"1\";s:22:\"location_maxnum_photos\";s:1:\"1\";s:35:\"location_maxnum_photo_moorings_2010\";s:1:\"0\";s:35:\"location_maxnum_photo_moorings_2012\";s:1:\"1\";s:35:\"location_maxnum_photo_moorings_2014\";s:1:\"1\";s:30:\"location_settings_node_article\";a:4:{s:8:\"multiple\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:1:\"1\";s:3:\"add\";s:1:\"1\";}s:4:\"form\";a:4:{s:6:\"weight\";s:1:\"0\";s:11:\"collapsible\";i:1;s:9:\"collapsed\";i:1;s:6:\"fields\";a:8:{s:4:\"name\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"2\";}s:6:\"street\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"4\";}s:10:\"additional\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"6\";}s:4:\"city\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"8\";}s:8:\"province\";a:4:{s:7:\"collect\";s:1:\"0\";s:6:\"widget\";s:12:\"autocomplete\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:2:\"10\";}s:11:\"postal_code\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:2:\"12\";}s:7:\"country\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:2:\"aq\";s:6:\"weight\";s:2:\"14\";}s:7:\"locpick\";a:2:{s:7:\"collect\";s:1:\"1\";s:6:\"weight\";s:2:\"20\";}}}s:7:\"display\";a:4:{s:6:\"weight\";s:1:\"0\";s:4:\"hide\";a:12:{s:4:\"name\";i:0;s:6:\"street\";i:0;s:10:\"additional\";i:0;s:4:\"city\";i:0;s:8:\"province\";i:0;s:11:\"postal_code\";i:0;s:7:\"country\";i:0;s:7:\"locpick\";i:0;s:13:\"province_name\";i:0;s:12:\"country_name\";i:0;s:8:\"map_link\";i:0;s:6:\"coords\";i:0;}s:6:\"teaser\";i:1;s:4:\"full\";i:1;}s:3:\"rss\";a:1:{s:4:\"mode\";s:6:\"simple\";}}s:28:\"location_settings_node_forum\";a:4:{s:8:\"multiple\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:1:\"1\";s:3:\"add\";s:1:\"1\";}s:4:\"form\";a:4:{s:6:\"weight\";s:1:\"0\";s:11:\"collapsible\";i:1;s:9:\"collapsed\";i:1;s:6:\"fields\";a:8:{s:4:\"name\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"2\";}s:6:\"street\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"4\";}s:10:\"additional\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"6\";}s:4:\"city\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"8\";}s:8:\"province\";a:4:{s:7:\"collect\";s:1:\"0\";s:6:\"widget\";s:12:\"autocomplete\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:2:\"10\";}s:11:\"postal_code\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:2:\"12\";}s:7:\"country\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:2:\"aq\";s:6:\"weight\";s:2:\"14\";}s:7:\"locpick\";a:2:{s:7:\"collect\";s:1:\"1\";s:6:\"weight\";s:2:\"20\";}}}s:7:\"display\";a:4:{s:6:\"weight\";s:1:\"0\";s:4:\"hide\";a:12:{s:4:\"name\";i:0;s:6:\"street\";i:0;s:10:\"additional\";i:0;s:4:\"city\";i:0;s:8:\"province\";i:0;s:11:\"postal_code\";i:0;s:7:\"country\";i:0;s:7:\"locpick\";i:0;s:13:\"province_name\";i:0;s:12:\"country_name\";i:0;s:8:\"map_link\";i:0;s:6:\"coords\";i:0;}s:6:\"teaser\";i:1;s:4:\"full\";i:1;}s:3:\"rss\";a:1:{s:4:\"mode\";s:6:\"simple\";}}s:30:\"location_settings_node_mooring\";a:4:{s:8:\"multiple\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:1:\"1\";s:3:\"add\";s:1:\"1\";}s:4:\"form\";a:4:{s:6:\"weight\";s:1:\"0\";s:11:\"collapsible\";i:1;s:9:\"collapsed\";i:1;s:6:\"fields\";a:8:{s:4:\"name\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"2\";}s:6:\"street\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"4\";}s:10:\"additional\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"6\";}s:4:\"city\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"8\";}s:8:\"province\";a:4:{s:7:\"collect\";s:1:\"0\";s:6:\"widget\";s:12:\"autocomplete\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:2:\"10\";}s:11:\"postal_code\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:2:\"12\";}s:7:\"country\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:2:\"aq\";s:6:\"weight\";s:2:\"14\";}s:7:\"locpick\";a:2:{s:7:\"collect\";s:1:\"1\";s:6:\"weight\";s:2:\"20\";}}}s:7:\"display\";a:4:{s:6:\"weight\";s:1:\"0\";s:4:\"hide\";a:12:{s:4:\"name\";i:0;s:6:\"street\";i:0;s:10:\"additional\";i:0;s:4:\"city\";i:0;s:8:\"province\";i:0;s:11:\"postal_code\";i:0;s:7:\"country\";i:0;s:7:\"locpick\";i:0;s:13:\"province_name\";i:0;s:12:\"country_name\";i:0;s:8:\"map_link\";i:0;s:6:\"coords\";i:0;}s:6:\"teaser\";i:1;s:4:\"full\";i:1;}s:3:\"rss\";a:1:{s:4:\"mode\";s:6:\"simple\";}}s:49:\"location_settings_node_openlayers_example_content\";a:4:{s:8:\"multiple\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:1:\"1\";s:3:\"add\";s:1:\"1\";}s:4:\"form\";a:4:{s:6:\"weight\";s:1:\"0\";s:11:\"collapsible\";i:1;s:9:\"collapsed\";i:1;s:6:\"fields\";a:8:{s:4:\"name\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"2\";}s:6:\"street\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"4\";}s:10:\"additional\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"6\";}s:4:\"city\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"8\";}s:8:\"province\";a:4:{s:7:\"collect\";s:1:\"0\";s:6:\"widget\";s:12:\"autocomplete\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:2:\"10\";}s:11:\"postal_code\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:2:\"12\";}s:7:\"country\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:2:\"aq\";s:6:\"weight\";s:2:\"14\";}s:7:\"locpick\";a:2:{s:7:\"collect\";s:1:\"1\";s:6:\"weight\";s:2:\"20\";}}}s:7:\"display\";a:4:{s:6:\"weight\";s:1:\"0\";s:4:\"hide\";a:12:{s:4:\"name\";i:0;s:6:\"street\";i:0;s:10:\"additional\";i:0;s:4:\"city\";i:0;s:8:\"province\";i:0;s:11:\"postal_code\";i:0;s:7:\"country\";i:0;s:7:\"locpick\";i:0;s:13:\"province_name\";i:0;s:12:\"country_name\";i:0;s:8:\"map_link\";i:0;s:6:\"coords\";i:0;}s:6:\"teaser\";i:1;s:4:\"full\";i:1;}s:3:\"rss\";a:1:{s:4:\"mode\";s:6:\"simple\";}}s:27:\"location_settings_node_page\";a:4:{s:8:\"multiple\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:1:\"1\";s:3:\"add\";s:1:\"1\";}s:4:\"form\";a:4:{s:6:\"weight\";s:1:\"0\";s:11:\"collapsible\";i:1;s:9:\"collapsed\";i:1;s:6:\"fields\";a:8:{s:4:\"name\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"2\";}s:6:\"street\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"4\";}s:10:\"additional\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"6\";}s:4:\"city\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"8\";}s:8:\"province\";a:4:{s:7:\"collect\";s:1:\"0\";s:6:\"widget\";s:12:\"autocomplete\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:2:\"10\";}s:11:\"postal_code\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:2:\"12\";}s:7:\"country\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:2:\"aq\";s:6:\"weight\";s:2:\"14\";}s:7:\"locpick\";a:2:{s:7:\"collect\";s:1:\"1\";s:6:\"weight\";s:2:\"20\";}}}s:7:\"display\";a:4:{s:6:\"weight\";s:1:\"0\";s:4:\"hide\";a:12:{s:4:\"name\";i:0;s:6:\"street\";i:0;s:10:\"additional\";i:0;s:4:\"city\";i:0;s:8:\"province\";i:0;s:11:\"postal_code\";i:0;s:7:\"country\";i:0;s:7:\"locpick\";i:0;s:13:\"province_name\";i:0;s:12:\"country_name\";i:0;s:8:\"map_link\";i:0;s:6:\"coords\";i:0;}s:6:\"teaser\";i:1;s:4:\"full\";i:1;}s:3:\"rss\";a:1:{s:4:\"mode\";s:6:\"simple\";}}s:29:\"location_settings_node_photos\";a:4:{s:8:\"multiple\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:1:\"1\";s:3:\"add\";s:1:\"1\";}s:4:\"form\";a:4:{s:6:\"weight\";s:1:\"0\";s:11:\"collapsible\";i:1;s:9:\"collapsed\";i:1;s:6:\"fields\";a:8:{s:4:\"name\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"2\";}s:6:\"street\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"4\";}s:10:\"additional\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"6\";}s:4:\"city\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"8\";}s:8:\"province\";a:4:{s:7:\"collect\";s:1:\"0\";s:6:\"widget\";s:12:\"autocomplete\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:2:\"10\";}s:11:\"postal_code\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:2:\"12\";}s:7:\"country\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:2:\"aq\";s:6:\"weight\";s:2:\"14\";}s:7:\"locpick\";a:2:{s:7:\"collect\";s:1:\"1\";s:6:\"weight\";s:2:\"20\";}}}s:7:\"display\";a:4:{s:6:\"weight\";s:1:\"0\";s:4:\"hide\";a:12:{s:4:\"name\";i:0;s:6:\"street\";i:0;s:10:\"additional\";i:0;s:4:\"city\";i:0;s:8:\"province\";i:0;s:11:\"postal_code\";i:0;s:7:\"country\";i:0;s:7:\"locpick\";i:0;s:13:\"province_name\";i:0;s:12:\"country_name\";i:0;s:8:\"map_link\";i:0;s:6:\"coords\";i:0;}s:6:\"teaser\";i:1;s:4:\"full\";i:1;}s:3:\"rss\";a:1:{s:4:\"mode\";s:6:\"simple\";}}s:42:\"location_settings_node_photo_moorings_2010\";a:4:{s:8:\"multiple\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:1:\"0\";s:3:\"add\";s:1:\"0\";}s:4:\"form\";a:4:{s:6:\"weight\";s:1:\"0\";s:11:\"collapsible\";i:0;s:9:\"collapsed\";i:0;s:6:\"fields\";a:8:{s:4:\"name\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"2\";}s:6:\"street\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"4\";}s:10:\"additional\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"6\";}s:4:\"city\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"8\";}s:8:\"province\";a:4:{s:7:\"collect\";s:1:\"0\";s:6:\"widget\";s:12:\"autocomplete\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:2:\"10\";}s:11:\"postal_code\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:2:\"12\";}s:7:\"country\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:2:\"aq\";s:6:\"weight\";s:2:\"14\";}s:7:\"locpick\";a:2:{s:7:\"collect\";s:1:\"0\";s:6:\"weight\";s:2:\"20\";}}}s:7:\"display\";a:4:{s:6:\"weight\";s:1:\"0\";s:4:\"hide\";a:12:{s:4:\"name\";i:0;s:6:\"street\";i:0;s:10:\"additional\";i:0;s:4:\"city\";i:0;s:8:\"province\";i:0;s:11:\"postal_code\";i:0;s:7:\"country\";i:0;s:7:\"locpick\";i:0;s:13:\"province_name\";i:0;s:12:\"country_name\";i:0;s:8:\"map_link\";i:0;s:6:\"coords\";i:0;}s:6:\"teaser\";i:0;s:4:\"full\";i:0;}s:3:\"rss\";a:1:{s:4:\"mode\";s:6:\"simple\";}}s:42:\"location_settings_node_photo_moorings_2012\";a:4:{s:8:\"multiple\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:1:\"1\";s:3:\"add\";s:1:\"1\";}s:4:\"form\";a:4:{s:6:\"weight\";s:1:\"0\";s:11:\"collapsible\";i:1;s:9:\"collapsed\";i:1;s:6:\"fields\";a:8:{s:4:\"name\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"2\";}s:6:\"street\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"4\";}s:10:\"additional\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"6\";}s:4:\"city\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"8\";}s:8:\"province\";a:4:{s:7:\"collect\";s:1:\"0\";s:6:\"widget\";s:12:\"autocomplete\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:2:\"10\";}s:11:\"postal_code\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:2:\"12\";}s:7:\"country\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:2:\"aq\";s:6:\"weight\";s:2:\"14\";}s:7:\"locpick\";a:2:{s:7:\"collect\";s:1:\"1\";s:6:\"weight\";s:2:\"20\";}}}s:7:\"display\";a:4:{s:6:\"weight\";s:1:\"0\";s:4:\"hide\";a:12:{s:4:\"name\";i:0;s:6:\"street\";i:0;s:10:\"additional\";i:0;s:4:\"city\";i:0;s:8:\"province\";i:0;s:11:\"postal_code\";i:0;s:7:\"country\";i:0;s:7:\"locpick\";i:0;s:13:\"province_name\";i:0;s:12:\"country_name\";i:0;s:8:\"map_link\";i:0;s:6:\"coords\";i:0;}s:6:\"teaser\";i:1;s:4:\"full\";i:1;}s:3:\"rss\";a:1:{s:4:\"mode\";s:6:\"simple\";}}s:42:\"location_settings_node_photo_moorings_2014\";a:4:{s:8:\"multiple\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:1:\"1\";s:3:\"add\";s:1:\"1\";}s:4:\"form\";a:4:{s:6:\"weight\";s:1:\"0\";s:11:\"collapsible\";i:1;s:9:\"collapsed\";i:1;s:6:\"fields\";a:8:{s:4:\"name\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"2\";}s:6:\"street\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"4\";}s:10:\"additional\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"6\";}s:4:\"city\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"8\";}s:8:\"province\";a:4:{s:7:\"collect\";s:1:\"0\";s:6:\"widget\";s:12:\"autocomplete\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:2:\"10\";}s:11:\"postal_code\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:2:\"12\";}s:7:\"country\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:2:\"aq\";s:6:\"weight\";s:2:\"14\";}s:7:\"locpick\";a:2:{s:7:\"collect\";s:1:\"1\";s:6:\"weight\";s:2:\"20\";}}}s:7:\"display\";a:4:{s:6:\"weight\";s:1:\"0\";s:4:\"hide\";a:12:{s:4:\"name\";i:0;s:6:\"street\";i:0;s:10:\"additional\";i:0;s:4:\"city\";i:0;s:8:\"province\";i:0;s:11:\"postal_code\";i:0;s:7:\"country\";i:0;s:7:\"locpick\";i:0;s:13:\"province_name\";i:0;s:12:\"country_name\";i:0;s:8:\"map_link\";i:0;s:6:\"coords\";i:0;}s:6:\"teaser\";i:1;s:4:\"full\";i:1;}s:3:\"rss\";a:1:{s:4:\"mode\";s:6:\"simple\";}}s:16:\"location_usegmap\";i:1;s:34:\"location_use_province_abbreviation\";s:1:\"1\";s:16:\"maintenance_mode\";i:1;s:24:\"maintenance_mode_message\";s:95:\" MORSea is currently under maintenance. We should be back shortly. Thank you for your patience.\";s:25:\"menu_default_active_menus\";a:4:{i:0;s:9:\"main-menu\";i:1;s:10:\"management\";i:2;s:10:\"navigation\";i:4;s:9:\"user-menu\";}s:13:\"menu_expanded\";a:1:{i:0;s:9:\"main-menu\";}s:10:\"menu_masks\";a:47:{i:0;i:501;i:1;i:494;i:2;i:493;i:3;i:490;i:4;i:250;i:5;i:247;i:6;i:246;i:7;i:245;i:8;i:242;i:9;i:238;i:10;i:234;i:11;i:126;i:12;i:125;i:13;i:124;i:14;i:123;i:15;i:122;i:16;i:121;i:17;i:119;i:18;i:118;i:19;i:117;i:20;i:63;i:21;i:62;i:22;i:61;i:23;i:60;i:24;i:59;i:25;i:58;i:26;i:44;i:27;i:31;i:28;i:30;i:29;i:29;i:30;i:28;i:31;i:26;i:32;i:24;i:33;i:22;i:34;i:21;i:35;i:15;i:36;i:14;i:37;i:13;i:38;i:12;i:39;i:11;i:40;i:10;i:41;i:7;i:42;i:6;i:43;i:5;i:44;i:3;i:45;i:2;i:46;i:1;}s:20:\"menu_options_article\";a:1:{i:0;s:9:\"main-menu\";}s:18:\"menu_options_forum\";a:1:{i:0;s:9:\"main-menu\";}s:20:\"menu_options_gallery\";a:1:{i:0;s:9:\"main-menu\";}s:21:\"menu_options_location\";a:1:{i:0;s:9:\"main-menu\";}s:17:\"menu_options_maps\";a:1:{i:0;s:9:\"main-menu\";}s:20:\"menu_options_mooring\";a:1:{i:0;s:9:\"main-menu\";}s:39:\"menu_options_openlayers_example_content\";a:1:{i:0;s:9:\"main-menu\";}s:17:\"menu_options_page\";a:1:{i:0;s:9:\"main-menu\";}s:19:\"menu_options_photos\";a:1:{i:0;s:9:\"main-menu\";}s:32:\"menu_options_photo_moorings_2010\";a:1:{i:0;s:9:\"main-menu\";}s:32:\"menu_options_photo_moorings_2012\";a:1:{i:0;s:9:\"main-menu\";}s:32:\"menu_options_photo_moorings_2014\";a:1:{i:0;s:9:\"main-menu\";}s:19:\"menu_parent_article\";s:11:\"main-menu:0\";s:17:\"menu_parent_forum\";s:11:\"main-menu:0\";s:19:\"menu_parent_gallery\";s:11:\"main-menu:0\";s:20:\"menu_parent_location\";s:11:\"main-menu:0\";s:16:\"menu_parent_maps\";s:11:\"main-menu:0\";s:19:\"menu_parent_mooring\";s:11:\"main-menu:0\";s:38:\"menu_parent_openlayers_example_content\";s:11:\"main-menu:0\";s:16:\"menu_parent_page\";s:11:\"main-menu:0\";s:18:\"menu_parent_photos\";s:11:\"main-menu:0\";s:31:\"menu_parent_photo_moorings_2010\";s:11:\"main-menu:0\";s:31:\"menu_parent_photo_moorings_2012\";s:11:\"main-menu:0\";s:31:\"menu_parent_photo_moorings_2014\";s:11:\"main-menu:0\";s:16:\"node_admin_theme\";s:1:\"1\";s:14:\"node_cron_last\";s:10:\"1412082460\";s:20:\"node_options_article\";a:2:{i:0;s:6:\"status\";i:1;s:7:\"promote\";}s:18:\"node_options_forum\";a:1:{i:0;s:6:\"status\";}s:20:\"node_options_gallery\";a:2:{i:0;s:6:\"status\";i:1;s:7:\"promote\";}s:21:\"node_options_location\";a:2:{i:0;s:6:\"status\";i:1;s:7:\"promote\";}s:17:\"node_options_maps\";a:2:{i:0;s:6:\"status\";i:1;s:7:\"promote\";}s:20:\"node_options_mooring\";a:2:{i:0;s:6:\"status\";i:1;s:7:\"promote\";}s:39:\"node_options_openlayers_example_content\";a:2:{i:0;s:6:\"status\";i:1;s:7:\"promote\";}s:17:\"node_options_page\";a:1:{i:0;s:6:\"status\";}s:19:\"node_options_photos\";a:2:{i:0;s:6:\"status\";i:1;s:7:\"promote\";}s:32:\"node_options_photo_moorings_2010\";a:2:{i:0;s:6:\"status\";i:1;s:7:\"promote\";}s:32:\"node_options_photo_moorings_2012\";a:2:{i:0;s:6:\"status\";i:1;s:7:\"promote\";}s:32:\"node_options_photo_moorings_2014\";a:2:{i:0;s:6:\"status\";i:1;s:7:\"promote\";}s:20:\"node_preview_article\";s:1:\"1\";s:18:\"node_preview_forum\";s:1:\"1\";s:20:\"node_preview_mooring\";s:1:\"1\";s:39:\"node_preview_openlayers_example_content\";s:1:\"1\";s:17:\"node_preview_page\";s:1:\"1\";s:19:\"node_preview_photos\";s:1:\"1\";s:32:\"node_preview_photo_moorings_2010\";s:1:\"1\";s:32:\"node_preview_photo_moorings_2012\";s:1:\"1\";s:32:\"node_preview_photo_moorings_2014\";s:1:\"1\";s:22:\"node_submitted_article\";i:1;s:20:\"node_submitted_forum\";i:1;s:22:\"node_submitted_gallery\";i:1;s:23:\"node_submitted_location\";i:1;s:19:\"node_submitted_maps\";i:1;s:22:\"node_submitted_mooring\";i:1;s:41:\"node_submitted_openlayers_example_content\";i:1;s:19:\"node_submitted_page\";i:0;s:21:\"node_submitted_photos\";i:0;s:34:\"node_submitted_photo_moorings_2010\";i:0;s:34:\"node_submitted_photo_moorings_2012\";i:0;s:34:\"node_submitted_photo_moorings_2014\";i:0;s:22:\"openlayers_default_map\";s:7:\"default\";s:26:\"openlayers_source_external\";s:44:\"http://openlayers.org/api/2.13/OpenLayers.js\";s:34:\"openlayers_source_internal_variant\";s:8:\"original\";s:22:\"openlayers_source_type\";s:8:\"external\";s:25:\"openlayers_ui_preview_map\";i:0;s:27:\"openlayers_ui_version_check\";s:12:\"Release 2.13\";s:22:\"page_cache_maximum_age\";s:1:\"0\";s:16:\"page_compression\";i:1;s:20:\"path_alias_whitelist\";a:0:{}s:20:\"photos_access_photos\";s:1:\"0\";s:23:\"photos_additional_sizes\";i:5;s:30:\"photos_block_num_random_images\";s:2:\"10\";s:14:\"photos_comment\";s:1:\"0\";s:22:\"photos_cover_imagesize\";s:5:\"large\";s:29:\"photos_display_full_imagesize\";s:6:\"medium\";s:27:\"photos_display_full_viewnum\";s:2:\"50\";s:25:\"photos_display_imageorder\";s:14:\"timestamp|desc\";s:29:\"photos_display_list_imagesize\";s:6:\"medium\";s:27:\"photos_display_page_display\";s:1:\"0\";s:24:\"photos_display_page_user\";s:1:\"0\";s:29:\"photos_display_teaser_display\";s:1:\"0\";s:31:\"photos_display_teaser_imagesize\";s:5:\"large\";s:26:\"photos_display_teaser_user\";s:1:\"0\";s:29:\"photos_display_teaser_viewnum\";s:2:\"10\";s:19:\"photos_display_user\";s:1:\"0\";s:24:\"photos_display_viewpager\";s:2:\"50\";s:29:\"photos_display_view_imagesize\";s:5:\"large\";s:11:\"photos_exif\";s:1:\"0\";s:17:\"photos_exif_cache\";s:1:\"1\";s:18:\"photos_image_count\";s:1:\"1\";s:13:\"photos_name_0\";s:5:\"Thumb\";s:13:\"photos_name_1\";s:6:\"Medium\";s:13:\"photos_name_2\";s:5:\"Large\";s:13:\"photos_name_3\";s:0:\"\";s:13:\"photos_name_4\";s:0:\"\";s:13:\"photos_name_5\";s:0:\"\";s:19:\"photos_node_article\";s:1:\"0\";s:17:\"photos_node_forum\";s:1:\"0\";s:19:\"photos_node_mooring\";s:1:\"0\";s:38:\"photos_node_openlayers_example_content\";s:1:\"0\";s:16:\"photos_node_page\";s:1:\"0\";s:18:\"photos_node_photos\";s:1:\"0\";s:31:\"photos_node_photo_moorings_2010\";s:1:\"0\";s:31:\"photos_node_photo_moorings_2012\";s:1:\"0\";s:31:\"photos_node_photo_moorings_2014\";s:1:\"0\";s:10:\"photos_num\";s:1:\"1\";s:22:\"photos_pager_imagesize\";s:5:\"large\";s:11:\"photos_path\";s:18:\"photos/image_%uid?\";s:22:\"photos_plupload_status\";i:0;s:13:\"photos_pnum_2\";s:2:\"20\";s:13:\"photos_pnum_3\";s:2:\"20\";s:13:\"photos_pnum_4\";s:2:\"20\";s:18:\"photos_print_sizes\";s:1:\"0\";s:12:\"photos_rname\";s:1:\"0\";s:20:\"photos_share_article\";s:1:\"0\";s:18:\"photos_share_forum\";s:1:\"0\";s:20:\"photos_share_mooring\";s:1:\"0\";s:39:\"photos_share_openlayers_example_content\";s:1:\"0\";s:17:\"photos_share_page\";s:1:\"0\";s:19:\"photos_share_photos\";s:1:\"0\";s:32:\"photos_share_photo_moorings_2010\";s:1:\"0\";s:32:\"photos_share_photo_moorings_2012\";s:1:\"0\";s:32:\"photos_share_photo_moorings_2014\";s:1:\"0\";s:11:\"photos_size\";a:3:{i:0;a:2:{s:5:\"style\";s:9:\"thumbnail\";s:4:\"name\";s:5:\"Thumb\";}i:1;a:2:{s:5:\"style\";s:6:\"medium\";s:4:\"name\";s:6:\"Medium\";}i:2;a:2:{s:5:\"style\";s:5:\"large\";s:4:\"name\";s:5:\"Large\";}}s:13:\"photos_size_0\";s:9:\"thumbnail\";s:13:\"photos_size_1\";s:6:\"medium\";s:13:\"photos_size_2\";s:5:\"large\";s:13:\"photos_size_3\";s:0:\"\";s:13:\"photos_size_4\";s:0:\"\";s:13:\"photos_size_5\";s:0:\"\";s:15:\"photos_size_max\";s:0:\"\";s:15:\"photos_swfu_num\";s:1:\"1\";s:18:\"photos_thumb_count\";s:1:\"6\";s:22:\"photos_thumb_imagesize\";s:9:\"thumbnail\";s:12:\"photos_upzip\";s:1:\"0\";s:22:\"photos_user_count_cron\";s:1:\"1\";s:11:\"photos_vote\";i:0;s:14:\"preprocess_css\";i:0;s:13:\"preprocess_js\";i:0;s:21:\"radius_client_server1\";a:5:{s:7:\"address\";s:24:\"radius2.uniparthenope.it\";s:4:\"port\";s:4:\"1812\";s:6:\"secret\";s:10:\"sebeto2012\";s:7:\"timeout\";s:1:\"5\";s:10:\"maxretries\";s:1:\"3\";}s:21:\"radius_client_server2\";a:5:{s:7:\"address\";s:0:\"\";s:4:\"port\";s:0:\"\";s:6:\"secret\";s:0:\"\";s:7:\"timeout\";s:0:\"\";s:10:\"maxretries\";s:0:\"\";}s:22:\"radius_dictionary_path\";s:21:\"/etc/raddb/dictionary\";s:21:\"save_continue_gallery\";s:19:\"Save and add fields\";s:22:\"save_continue_location\";s:19:\"Save and add fields\";s:18:\"save_continue_maps\";s:19:\"Save and add fields\";s:21:\"save_continue_mooring\";s:19:\"Save and add fields\";s:19:\"save_continue_photo\";s:19:\"Save and add fields\";s:33:\"save_continue_photo_moorings_2010\";s:19:\"Save and add fields\";s:33:\"save_continue_photo_moorings_2012\";s:19:\"Save and add fields\";s:8:\"site_403\";s:0:\"\";s:8:\"site_404\";s:0:\"\";s:20:\"site_default_country\";s:2:\"IT\";s:14:\"site_frontpage\";s:4:\"node\";s:9:\"site_mail\";s:33:\"raffaele.montella@uniparhenope.it\";s:9:\"site_name\";s:7:\" MORSea\";s:11:\"site_slogan\";s:34:\"Marine Observatory in the Ross Sea\";s:37:\"theme_alpha_responsive_theme_settings\";a:22:{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:22:\"public://logo_PNRA.GIF\";s:15:\"default_favicon\";i:1;s:12:\"favicon_path\";s:0:\"\";s:14:\"favicon_upload\";s:0:\"\";s:11:\"breadcrumbs\";i:1;s:12:\"social_links\";i:1;s:19:\"twitter_profile_url\";s:0:\"\";s:20:\"facebook_profile_url\";s:0:\"\";s:17:\"gplus_profile_url\";s:50:\"https://plus.google.com/u/0/115285675336265767735/\";s:20:\"linkedin_profile_url\";s:43:\"https://www.linkedin.com/company/zymphonies\";s:21:\"pinterest_profile_url\";s:34:\"http://www.pinterest.com/shanidkv/\";s:19:\"youtube_profile_url\";s:22:\"http://www.youtube.com\";}s:21:\"theme_bartik_settings\";a:19:{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:20:\"public://Logo300.jpg\";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: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\";}}s:13:\"theme_default\";s:12:\"multipurpose\";s:27:\"theme_multipurpose_settings\";a:23:{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:1;s:9:\"logo_path\";s:23:\"public://LogoItaAnt.jpg\";s:11:\"logo_upload\";s:0:\"\";s:15:\"default_favicon\";i:0;s:12:\"favicon_path\";s:25:\"public://LogoItaAnt_0.jpg\";s:11:\"breadcrumbs\";i:0;s:10:\"image_logo\";i:1;s:17:\"slideshow_display\";i:0;s:18:\"socialicon_display\";i:1;s:11:\"twitter_url\";s:3:\"xxx\";s:12:\"facebook_url\";s:3:\"xxx\";s:15:\"google_plus_url\";s:3:\"xxx\";s:13:\"pinterest_url\";s:3:\"xxx\";s:16:\"favicon_mimetype\";s:10:\"image/jpeg\";}s:14:\"theme_settings\";a:14:{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:26:\"public://logo_utmeater.gif\";s:15:\"default_favicon\";i:1;s:12:\"favicon_path\";s:0:\"\";s:14:\"favicon_upload\";s:0:\"\";}s:28:\"theme_venture_theme_settings\";a:27:{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:24:\"public://logo_pnra_0.png\";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:11:\"breadcrumbs\";i:1;s:10:\"image_logo\";i:1;s:17:\"slideshow_display\";i:1;s:11:\"slide1_head\";s:6:\"Foto 1\";s:11:\"slide1_desc\";s:4:\"xxx1\";s:10:\"slide1_url\";s:6:\"node/1\";s:11:\"slide2_head\";s:3:\"Fll\";s:11:\"slide2_desc\";s:42:\"Lorem ipsum dolor sit amet, consectetur...\";s:10:\"slide2_url\";s:6:\"node/2\";s:11:\"slide3_head\";s:3:\"ddd\";s:11:\"slide3_desc\";s:41:\"Duis aute irure dolor in reprehenderit...\";s:10:\"slide3_url\";s:6:\"node/3\";}s:25:\"translation_language_type\";s:16:\"language_content\";s:17:\"update_last_check\";i:1557863791;s:30:\"update_last_email_notification\";i:1557863788;s:20:\"update_notify_emails\";a:1:{i:0;s:33:\"raffaele.montella@uniparhenope.it\";}s:15:\"user_admin_role\";s:1:\"3\";s:18:\"user_cancel_method\";s:18:\"user_cancel_delete\";s:23:\"user_email_verification\";i:1;s:29:\"user_mail_cancel_confirm_body\";s:381:\"[user:name],\r\n\r\nA request to cancel your account has been made at [site:name].\r\n\r\nYou may now cancel your account on [site:url-brief] by clicking this link or copying and pasting it into your browser:\r\n\r\n[user:cancel-url]\r\n\r\nNOTE: The cancellation of your account is not reversible.\r\n\r\nThis link expires in one day and nothing will happen if it is not used.\r\n\r\n--  [site:name] team\";s:32:\"user_mail_cancel_confirm_subject\";s:59:\"Account cancellation request for [user:name] at [site:name]\";s:29:\"user_mail_password_reset_body\";s:407:\"[user:name],\r\n\r\nA request to reset the password for your account has been made at [site:name].\r\n\r\nYou may now log in by clicking this link or copying and pasting it to your browser:\r\n\r\n[user:one-time-login-url]\r\n\r\nThis link can only be used once to log in and will lead you to a page where you can set your password. It expires after one day and nothing will happen if it\'s not used.\r\n\r\n--  [site:name] team\";s:32:\"user_mail_password_reset_subject\";s:60:\"Replacement login information for [user:name] at [site:name]\";s:37:\"user_mail_register_admin_created_body\";s:476:\"[user:name],\r\n\r\nA site administrator at [site:name] has created an account for you. You may now log in by clicking this link or copying and pasting it to your browser:\r\n\r\n[user:one-time-login-url]\r\n\r\nThis link can only be used once to log in and will lead you to a page where you can set your password.\r\n\r\nAfter setting your password, you will be able to log in at [site:login-url] in the future using:\r\n\r\nusername: [user:name]\r\npassword: Your password\r\n\r\n--  [site:name] team\";s:40:\"user_mail_register_admin_created_subject\";s:58:\"An administrator created an account for you at [site:name]\";s:44:\"user_mail_register_no_approval_required_body\";s:450:\"[user:name],\r\n\r\nThank you for registering at [site:name]. You may now log in by clicking this link or copying and pasting it to your browser:\r\n\r\n[user:one-time-login-url]\r\n\r\nThis link can only be used once to log in and will lead you to a page where you can set your password.\r\n\r\nAfter setting your password, you will be able to log in at [site:login-url] in the future using:\r\n\r\nusername: [user:name]\r\npassword: Your password\r\n\r\n--  [site:name] team\";s:47:\"user_mail_register_no_approval_required_subject\";s:46:\"Account details for [user:name] at [site:name]\";s:40:\"user_mail_register_pending_approval_body\";s:287:\"[user:name],\r\n\r\nThank you for registering at [site:name]. Your application for an account is currently pending approval. Once it has been approved, you will receive another e-mail containing information about how to log in, set your password, and other details.\r\n\r\n\r\n--  [site:name] team\";s:43:\"user_mail_register_pending_approval_subject\";s:71:\"Account details for [user:name] at [site:name] (pending admin approval)\";s:31:\"user_mail_status_activated_body\";s:461:\"[user:name],\r\n\r\nYour account at [site:name] has been activated.\r\n\r\nYou may now log in by clicking this link or copying and pasting it into your browser:\r\n\r\n[user:one-time-login-url]\r\n\r\nThis link can only be used once to log in and will lead you to a page where you can set your password.\r\n\r\nAfter setting your password, you will be able to log in at [site:login-url] in the future using:\r\n\r\nusername: [user:name]\r\npassword: Your password\r\n\r\n--  [site:name] team\";s:33:\"user_mail_status_activated_notify\";i:1;s:34:\"user_mail_status_activated_subject\";s:57:\"Account details for [user:name] at [site:name] (approved)\";s:29:\"user_mail_status_blocked_body\";s:85:\"[user:name],\r\n\r\nYour account on [site:name] has been blocked.\r\n\r\n--  [site:name] team\";s:31:\"user_mail_status_blocked_notify\";i:0;s:32:\"user_mail_status_blocked_subject\";s:56:\"Account details for [user:name] at [site:name] (blocked)\";s:30:\"user_mail_status_canceled_body\";s:86:\"[user:name],\r\n\r\nYour account on [site:name] has been canceled.\r\n\r\n--  [site:name] team\";s:32:\"user_mail_status_canceled_notify\";i:0;s:33:\"user_mail_status_canceled_subject\";s:57:\"Account details for [user:name] at [site:name] (canceled)\";s:13:\"user_pictures\";i:1;s:20:\"user_picture_default\";s:0:\"\";s:23:\"user_picture_dimensions\";s:9:\"1024x1024\";s:22:\"user_picture_file_size\";s:3:\"800\";s:23:\"user_picture_guidelines\";s:0:\"\";s:17:\"user_picture_path\";s:8:\"pictures\";s:18:\"user_picture_style\";s:9:\"thumbnail\";s:13:\"user_register\";s:1:\"0\";s:15:\"user_signatures\";i:0;s:20:\"variable_module_list\";a:3:{s:4:\"i18n\";a:1:{i:0;s:18:\"i18n_language_list\";}s:11:\"i18n_string\";a:5:{i:0;s:33:\"i18n_string_translate_langcode_en\";i:1;s:33:\"i18n_string_translate_langcode_it\";i:2;s:27:\"i18n_string_allowed_formats\";i:3;s:27:\"i18n_string_source_language\";i:4;s:17:\"i18n_string_debug\";}s:9:\"i18n_node\";a:6:{i:0;s:27:\"i18n_hide_translation_links\";i:1;s:31:\"i18n_node_default_language_none\";i:2;s:25:\"i18n_node_options_article\";i:3;s:22:\"i18n_node_options_page\";i:4;s:26:\"i18n_node_extended_article\";i:5;s:23:\"i18n_node_extended_page\";}}s:28:\"variable_realm_list_language\";a:2:{i:0;s:9:\"site_name\";i:1;s:11:\"site_slogan\";}s:14:\"views_defaults\";a:3:{s:14:\"location_table\";b:1;s:18:\"location_directory\";b:1;s:13:\"photo_gallery\";b:1;}}',0,1652171435,1);
/*!40000 ALTER TABLE `cache_bootstrap` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cache_features`
--

DROP TABLE IF EXISTS `cache_features`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cache_features` (
  `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
  `data` longblob DEFAULT NULL COMMENT 'A collection of data to cache.',
  `expire` int(11) NOT NULL DEFAULT 0 COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
  `created` int(11) NOT NULL DEFAULT 0 COMMENT 'A Unix timestamp indicating when the cache entry was created.',
  `serialized` smallint(6) NOT NULL DEFAULT 0 COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
  PRIMARY KEY (`cid`),
  KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Generic cache table for caching things not separated out...';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cache_features`
--

LOCK TABLES `cache_features` WRITE;
/*!40000 ALTER TABLE `cache_features` DISABLE KEYS */;
INSERT INTO `cache_features` VALUES ('features_api','a:18:{s:14:\"variable_realm\";a:6:{s:4:\"name\";s:15:\"Realm variables\";s:12:\"default_hook\";s:32:\"variable_realm_default_variables\";s:12:\"default_file\";i:2;s:16:\"default_filename\";s:8:\"variable\";s:15:\"features_source\";b:1;s:4:\"file\";s:69:\"sites/all/modules/variable/variable_realm/variable_realm.features.inc\";}s:18:\"contact_categories\";a:4:{s:4:\"name\";s:18:\"Contact categories\";s:14:\"feature_source\";b:1;s:12:\"default_hook\";s:27:\"contact_categories_defaults\";s:12:\"default_file\";i:1;}s:6:\"ctools\";a:3:{s:4:\"name\";s:17:\"CTools export API\";s:14:\"feature_source\";b:1;s:10:\"duplicates\";i:1;}s:5:\"field\";a:4:{s:4:\"name\";s:5:\"Campi\";s:12:\"default_hook\";s:20:\"field_default_fields\";s:12:\"default_file\";i:1;s:14:\"feature_source\";b:0;}s:10:\"field_base\";a:5:{s:4:\"name\";s:11:\"Field Bases\";s:12:\"default_hook\";s:25:\"field_default_field_bases\";s:12:\"default_file\";i:1;s:14:\"feature_source\";b:1;s:10:\"supersedes\";s:5:\"field\";}s:14:\"field_instance\";a:5:{s:4:\"name\";s:15:\"Field Instances\";s:12:\"default_hook\";s:29:\"field_default_field_instances\";s:12:\"default_file\";i:1;s:14:\"feature_source\";b:1;s:10:\"supersedes\";s:5:\"field\";}s:6:\"filter\";a:4:{s:4:\"name\";s:17:\"Formati del testo\";s:12:\"default_hook\";s:22:\"filter_default_formats\";s:12:\"default_file\";i:1;s:14:\"feature_source\";b:1;}s:5:\"image\";a:4:{s:4:\"name\";s:21:\"Stili per le immagini\";s:14:\"feature_source\";b:1;s:12:\"default_hook\";s:20:\"image_default_styles\";s:10:\"alter_hook\";s:12:\"image_styles\";}s:8:\"language\";a:4:{s:4:\"name\";s:6:\"Lingue\";s:12:\"default_hook\";s:24:\"locale_default_languages\";s:14:\"feature_source\";b:1;s:12:\"default_file\";i:1;}s:11:\"menu_custom\";a:4:{s:4:\"name\";s:5:\"Menù\";s:12:\"default_hook\";s:24:\"menu_default_menu_custom\";s:14:\"feature_source\";b:1;s:12:\"default_file\";i:1;}s:10:\"menu_links\";a:4:{s:4:\"name\";s:12:\"Voci di menu\";s:12:\"default_hook\";s:23:\"menu_default_menu_links\";s:14:\"feature_source\";b:1;s:12:\"default_file\";i:1;}s:4:\"menu\";a:4:{s:4:\"name\";s:16:\"Elementi di menu\";s:12:\"default_hook\";s:18:\"menu_default_items\";s:12:\"default_file\";i:1;s:14:\"feature_source\";b:0;}s:4:\"node\";a:4:{s:4:\"name\";s:17:\"Tipi di contenuto\";s:14:\"feature_source\";b:1;s:12:\"default_hook\";s:9:\"node_info\";s:10:\"alter_type\";s:6:\"inline\";}s:8:\"taxonomy\";a:4:{s:4:\"name\";s:10:\"Tassonomia\";s:14:\"feature_source\";b:1;s:12:\"default_hook\";s:29:\"taxonomy_default_vocabularies\";s:12:\"default_file\";i:1;}s:9:\"user_role\";a:4:{s:4:\"name\";s:5:\"Ruoli\";s:14:\"feature_source\";b:1;s:12:\"default_hook\";s:18:\"user_default_roles\";s:12:\"default_file\";i:1;}s:15:\"user_permission\";a:4:{s:4:\"name\";s:8:\"Permessi\";s:14:\"feature_source\";b:1;s:12:\"default_hook\";s:24:\"user_default_permissions\";s:12:\"default_file\";i:1;}s:10:\"views_view\";a:8:{s:4:\"name\";s:5:\"Views\";s:12:\"default_hook\";s:19:\"views_default_views\";s:12:\"default_file\";i:2;s:6:\"module\";s:5:\"views\";s:14:\"feature_source\";b:1;s:3:\"api\";s:13:\"views_default\";s:16:\"default_filename\";s:13:\"views_default\";s:15:\"current_version\";s:3:\"3.0\";}s:12:\"dependencies\";a:3:{s:4:\"name\";s:12:\"Dependencies\";s:14:\"feature_source\";b:1;s:10:\"duplicates\";i:1;}}',0,1538756379,1),('features_module_info','a:2:{s:7:\"feature\";a:3:{s:13:\"features_test\";O:8:\"stdClass\":12:{s:3:\"uri\";s:67:\"sites/all/modules/features/tests/features_test/features_test.module\";s:8:\"filename\";s:67:\"sites/all/modules/features/tests/features_test/features_test.module\";s:4:\"name\";s:13:\"features_test\";s:4:\"info\";a:12:{s:4:\"name\";s:14:\"Features Tests\";s:11:\"description\";s:33:\"Test module for Features testing.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:7:\"Testing\";s:12:\"dependencies\";a:5:{i:0;s:8:\"features\";i:1;s:5:\"image\";i:2;s:9:\"strongarm\";i:3;s:8:\"taxonomy\";i:4;s:5:\"views\";}s:8:\"features\";a:10:{s:6:\"ctools\";a:2:{i:0;s:21:\"strongarm:strongarm:1\";i:1;s:23:\"views:views_default:3.0\";}s:12:\"features_api\";a:1:{i:0;s:5:\"api:2\";}s:10:\"field_base\";a:1:{i:0;s:19:\"field_features_test\";}s:14:\"field_instance\";a:1:{i:0;s:38:\"node-features_test-field_features_test\";}s:6:\"filter\";a:1:{i:0;s:13:\"features_test\";}s:5:\"image\";a:1:{i:0;s:13:\"features_test\";}s:4:\"node\";a:1:{i:0;s:13:\"features_test\";}s:8:\"taxonomy\";a:1:{i:0;s:22:\"taxonomy_features_test\";}s:15:\"user_permission\";a:1:{i:0;s:28:\"create features_test content\";}s:10:\"views_view\";a:1:{i:0;s:13:\"features_test\";}}s:6:\"hidden\";s:1:\"1\";s:7:\"version\";s:8:\"7.x-2.10\";s:7:\"project\";s:8:\"features\";s:9:\"datestamp\";s:10:\"1461011641\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:10:{s:8:\"features\";a:1:{s:4:\"name\";s:8:\"features\";}s:5:\"image\";a:1:{s:4:\"name\";s:5:\"image\";}s:4:\"file\";a:1:{s:4:\"name\";s:4:\"file\";}s:5:\"field\";a:1:{s:4:\"name\";s:5:\"field\";}s:17:\"field_sql_storage\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}s:9:\"strongarm\";a:1:{s:4:\"name\";s:9:\"strongarm\";}s:8:\"taxonomy\";a:1:{s:4:\"name\";s:8:\"taxonomy\";}s:7:\"options\";a:1:{s:4:\"name\";s:7:\"options\";}s:5:\"views\";a:1:{s:4:\"name\";s:5:\"views\";}s:6:\"ctools\";a:1:{s:4:\"name\";s:6:\"ctools\";}}s:4:\"sort\";i:-46;s:10:\"components\";a:11:{i:0;s:6:\"ctools\";i:1;s:12:\"features_api\";i:2;s:10:\"field_base\";i:3;s:14:\"field_instance\";i:4;s:6:\"filter\";i:5;s:5:\"image\";i:6;s:4:\"node\";i:7;s:8:\"taxonomy\";i:8;s:15:\"user_permission\";i:9;s:10:\"views_view\";i:10;s:12:\"dependencies\";}}s:9:\"gmap_test\";O:8:\"stdClass\":12:{s:3:\"uri\";s:49:\"sites/all/modules/gmap/gmap_test/gmap_test.module\";s:8:\"filename\";s:49:\"sites/all/modules/gmap/gmap_test/gmap_test.module\";s:4:\"name\";s:9:\"gmap_test\";s:4:\"info\";a:12:{s:4:\"name\";s:9:\"GMap test\";s:11:\"description\";s:41:\"Some Content types and Views to test GMap\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:8:\"Features\";s:7:\"version\";s:8:\"7.x-2.11\";s:7:\"project\";s:4:\"gmap\";s:6:\"hidden\";b:1;s:12:\"dependencies\";a:13:{i:0;s:12:\"addressfield\";i:1;s:6:\"ctools\";i:2;s:15:\"entityreference\";i:3;s:8:\"features\";i:4;s:17:\"field_sql_storage\";i:5;s:8:\"geofield\";i:6;s:6:\"geophp\";i:7;s:4:\"node\";i:8;s:7:\"options\";i:9;s:4:\"text\";i:10;s:5:\"views\";i:11;s:8:\"views_ui\";i:12;s:4:\"gmap\";}s:8:\"features\";a:5:{s:6:\"ctools\";a:1:{i:0;s:23:\"views:views_default:3.0\";}s:12:\"features_api\";a:1:{i:0;s:5:\"api:1\";}s:5:\"field\";a:6:{i:0;s:33:\"node-gmap_person-field_mylocation\";i:1;s:19:\"node-gmapplace-body\";i:2;s:30:\"node-gmapplace-field_myaddress\";i:3;s:31:\"node-gmapplace-field_mygeofield\";i:4;s:31:\"node-gmapplace-field_mylatitude\";i:5;s:32:\"node-gmapplace-field_mylongitude\";}s:4:\"node\";a:2:{i:0;s:11:\"gmap_person\";i:1;s:9:\"gmapplace\";}s:10:\"views_view\";a:1:{i:0;s:16:\"gmap_test_places\";}}s:5:\"files\";a:4:{i:0;s:28:\"gmap_test.features.field.inc\";i:1;s:22:\"gmap_test.features.inc\";i:2;s:27:\"gmap_test.views_default.inc\";i:3;s:20:\"tests/gmap_test.test\";}s:9:\"datestamp\";s:10:\"1457698170\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:14:{s:12:\"addressfield\";a:1:{s:4:\"name\";s:12:\"addressfield\";}s:6:\"ctools\";a:1:{s:4:\"name\";s:6:\"ctools\";}s:15:\"entityreference\";a:1:{s:4:\"name\";s:15:\"entityreference\";}s:8:\"features\";a:1:{s:4:\"name\";s:8:\"features\";}s:17:\"field_sql_storage\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}s:5:\"field\";a:1:{s:4:\"name\";s:5:\"field\";}s:8:\"geofield\";a:1:{s:4:\"name\";s:8:\"geofield\";}s:6:\"geophp\";a:1:{s:4:\"name\";s:6:\"geophp\";}s:4:\"node\";a:1:{s:4:\"name\";s:4:\"node\";}s:7:\"options\";a:1:{s:4:\"name\";s:7:\"options\";}s:4:\"text\";a:1:{s:4:\"name\";s:4:\"text\";}s:5:\"views\";a:1:{s:4:\"name\";s:5:\"views\";}s:8:\"views_ui\";a:1:{s:4:\"name\";s:8:\"views_ui\";}s:4:\"gmap\";a:1:{s:4:\"name\";s:4:\"gmap\";}}s:4:\"sort\";i:-64;s:10:\"components\";a:6:{i:0;s:6:\"ctools\";i:1;s:12:\"features_api\";i:2;s:5:\"field\";i:3;s:4:\"node\";i:4;s:10:\"views_view\";i:5;s:12:\"dependencies\";}}s:18:\"gmap_test_extended\";O:8:\"stdClass\":12:{s:3:\"uri\";s:67:\"sites/all/modules/gmap/gmap_test_extended/gmap_test_extended.module\";s:8:\"filename\";s:67:\"sites/all/modules/gmap/gmap_test_extended/gmap_test_extended.module\";s:4:\"name\";s:18:\"gmap_test_extended\";s:4:\"info\";a:12:{s:4:\"name\";s:18:\"GMap test extended\";s:11:\"description\";s:50:\"Some Content types and Views to test GMap Extended\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:8:\"Features\";s:7:\"version\";s:8:\"7.x-2.11\";s:7:\"project\";s:4:\"gmap\";s:6:\"hidden\";b:1;s:12:\"dependencies\";a:13:{i:0;s:12:\"addressfield\";i:1;s:6:\"ctools\";i:2;s:15:\"entityreference\";i:3;s:8:\"features\";i:4;s:17:\"field_sql_storage\";i:5;s:8:\"geofield\";i:6;s:6:\"geophp\";i:7;s:4:\"node\";i:8;s:7:\"options\";i:9;s:4:\"text\";i:10;s:5:\"views\";i:11;s:8:\"views_ui\";i:12;s:4:\"gmap\";}s:8:\"features\";a:5:{s:6:\"ctools\";a:1:{i:0;s:23:\"views:views_default:3.0\";}s:12:\"features_api\";a:1:{i:0;s:5:\"api:1\";}s:5:\"field\";a:6:{i:0;s:33:\"node-gmap_person-field_mylocation\";i:1;s:19:\"node-gmapplace-body\";i:2;s:30:\"node-gmapplace-field_myaddress\";i:3;s:31:\"node-gmapplace-field_mygeofield\";i:4;s:31:\"node-gmapplace-field_mylatitude\";i:5;s:32:\"node-gmapplace-field_mylongitude\";}s:4:\"node\";a:2:{i:0;s:11:\"gmap_person\";i:1;s:9:\"gmapplace\";}s:10:\"views_view\";a:1:{i:0;s:25:\"gmap_test_extended_places\";}}s:5:\"files\";a:4:{i:0;s:37:\"gmap_test_extended.features.field.inc\";i:1;s:31:\"gmap_test_extended.features.inc\";i:2;s:36:\"gmap_test_extended.views_default.inc\";i:3;s:29:\"tests/gmap_test_extended.test\";}s:9:\"datestamp\";s:10:\"1457698170\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:14:{s:12:\"addressfield\";a:1:{s:4:\"name\";s:12:\"addressfield\";}s:6:\"ctools\";a:1:{s:4:\"name\";s:6:\"ctools\";}s:15:\"entityreference\";a:1:{s:4:\"name\";s:15:\"entityreference\";}s:8:\"features\";a:1:{s:4:\"name\";s:8:\"features\";}s:17:\"field_sql_storage\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}s:5:\"field\";a:1:{s:4:\"name\";s:5:\"field\";}s:8:\"geofield\";a:1:{s:4:\"name\";s:8:\"geofield\";}s:6:\"geophp\";a:1:{s:4:\"name\";s:6:\"geophp\";}s:4:\"node\";a:1:{s:4:\"name\";s:4:\"node\";}s:7:\"options\";a:1:{s:4:\"name\";s:7:\"options\";}s:4:\"text\";a:1:{s:4:\"name\";s:4:\"text\";}s:5:\"views\";a:1:{s:4:\"name\";s:5:\"views\";}s:8:\"views_ui\";a:1:{s:4:\"name\";s:8:\"views_ui\";}s:4:\"gmap\";a:1:{s:4:\"name\";s:4:\"gmap\";}}s:4:\"sort\";i:-65;s:10:\"components\";a:6:{i:0;s:6:\"ctools\";i:1;s:12:\"features_api\";i:2;s:5:\"field\";i:3;s:4:\"node\";i:4;s:10:\"views_view\";i:5;s:12:\"dependencies\";}}}s:6:\"module\";a:211:{s:15:\"aaa_update_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:43:\"modules/update/tests/aaa_update_test.module\";s:8:\"filename\";s:43:\"modules/update/tests/aaa_update_test.module\";s:4:\"name\";s:15:\"aaa_update_test\";s:4:\"info\";a:11:{s:4:\"name\";s:15:\"AAA Update test\";s:11:\"description\";s:41:\"Support module for update module testing.\";s:7:\"package\";s:7:\"Testing\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"version\";s:4:\"7.59\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:17:\"actions_loop_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:49:\"modules/simpletest/tests/actions_loop_test.module\";s:8:\"filename\";s:49:\"modules/simpletest/tests/actions_loop_test.module\";s:4:\"name\";s:17:\"actions_loop_test\";s:4:\"info\";a:11:{s:4:\"name\";s:17:\"Actions loop test\";s:11:\"description\";s:39:\"Support module for action loop testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:12:\"addressfield\";O:8:\"stdClass\":11:{s:3:\"uri\";s:50:\"sites/all/modules/addressfield/addressfield.module\";s:8:\"filename\";s:50:\"sites/all/modules/addressfield/addressfield.module\";s:4:\"name\";s:12:\"addressfield\";s:4:\"info\";a:10:{s:4:\"name\";s:13:\"Address Field\";s:11:\"description\";s:64:\"Manage a flexible address field, implementing the xNAL standard.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:6:\"Fields\";s:12:\"dependencies\";a:1:{i:0;s:6:\"ctools\";}s:5:\"files\";a:4:{i:0;s:24:\"addressfield.migrate.inc\";i:1;s:62:\"views/addressfield_views_handler_field_administrative_area.inc\";i:2;s:50:\"views/addressfield_views_handler_field_country.inc\";i:3;s:51:\"views/addressfield_views_handler_filter_country.inc\";}s:7:\"version\";s:7:\"7.x-1.2\";s:7:\"project\";s:12:\"addressfield\";s:9:\"datestamp\";s:10:\"1444254070\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7001\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:3:{s:20:\"addressfield_example\";a:1:{s:4:\"name\";s:12:\"addressfield\";}s:9:\"gmap_test\";a:1:{s:4:\"name\";s:12:\"addressfield\";}s:18:\"gmap_test_extended\";a:1:{s:4:\"name\";s:12:\"addressfield\";}}s:8:\"requires\";a:1:{s:6:\"ctools\";a:1:{s:4:\"name\";s:6:\"ctools\";}}s:4:\"sort\";i:-1;}s:20:\"addressfield_example\";O:8:\"stdClass\":11:{s:3:\"uri\";s:66:\"sites/all/modules/addressfield/example/addressfield_example.module\";s:8:\"filename\";s:66:\"sites/all/modules/addressfield/example/addressfield_example.module\";s:4:\"name\";s:20:\"addressfield_example\";s:4:\"info\";a:11:{s:4:\"name\";s:21:\"Address Field Example\";s:11:\"description\";s:67:\"Example module for how to implement an addressfield format handler.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:6:\"Fields\";s:6:\"hidden\";b:1;s:12:\"dependencies\";a:2:{i:0;s:6:\"ctools\";i:1;s:12:\"addressfield\";}s:7:\"version\";s:7:\"7.x-1.2\";s:7:\"project\";s:12:\"addressfield\";s:9:\"datestamp\";s:10:\"1444254070\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:2:{s:6:\"ctools\";a:1:{s:4:\"name\";s:6:\"ctools\";}s:12:\"addressfield\";a:1:{s:4:\"name\";s:12:\"addressfield\";}}s:4:\"sort\";i:-2;}s:10:\"aggregator\";O:8:\"stdClass\":11:{s:3:\"uri\";s:36:\"modules/aggregator/aggregator.module\";s:8:\"filename\";s:36:\"modules/aggregator/aggregator.module\";s:4:\"name\";s:10:\"aggregator\";s:4:\"info\";a:12:{s:4:\"name\";s:10:\"Aggregator\";s:11:\"description\";s:57:\"Aggregates syndicated content (RSS, RDF, and Atom feeds).\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:12:\"dependencies\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:15:\"aggregator_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:47:\"modules/aggregator/tests/aggregator_test.module\";s:8:\"filename\";s:47:\"modules/aggregator/tests/aggregator_test.module\";s:4:\"name\";s:15:\"aggregator_test\";s:4:\"info\";a:11:{s:4:\"name\";s:23:\"Aggregator module tests\";s:11:\"description\";s:46:\"Support module for aggregator related testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:15:\"ajax_forms_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:47:\"modules/simpletest/tests/ajax_forms_test.module\";s:8:\"filename\";s:47:\"modules/simpletest/tests/ajax_forms_test.module\";s:4:\"name\";s:15:\"ajax_forms_test\";s:4:\"info\";a:11:{s:4:\"name\";s:26:\"AJAX form test mock module\";s:11:\"description\";s:25:\"Test for AJAX form calls.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:9:\"ajax_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:41:\"modules/simpletest/tests/ajax_test.module\";s:8:\"filename\";s:41:\"modules/simpletest/tests/ajax_test.module\";s:4:\"name\";s:9:\"ajax_test\";s:4:\"info\";a:11:{s:4:\"name\";s:9:\"AJAX Test\";s:11:\"description\";s:40:\"Support module for AJAX framework tests.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:10:\"batch_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:42:\"modules/simpletest/tests/batch_test.module\";s:8:\"filename\";s:42:\"modules/simpletest/tests/batch_test.module\";s:4:\"name\";s:10:\"batch_test\";s:4:\"info\";a:11:{s:4:\"name\";s:14:\"Batch API test\";s:11:\"description\";s:35:\"Support module for Batch API tests.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:15:\"bbb_update_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:43:\"modules/update/tests/bbb_update_test.module\";s:8:\"filename\";s:43:\"modules/update/tests/bbb_update_test.module\";s:4:\"name\";s:15:\"bbb_update_test\";s:4:\"info\";a:11:{s:4:\"name\";s:15:\"BBB Update test\";s:11:\"description\";s:41:\"Support module for update module testing.\";s:7:\"package\";s:7:\"Testing\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"version\";s:4:\"7.59\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:5:\"block\";O:8:\"stdClass\":11:{s:3:\"uri\";s:26:\"modules/block/block.module\";s:8:\"filename\";s:26:\"modules/block/block.module\";s:4:\"name\";s:5:\"block\";s:4:\"info\";a:11:{s:4:\"name\";s:5:\"Block\";s:11:\"description\";s:140:\"Controls the visual building blocks a page is constructed with. Blocks are boxes of content rendered into an area, or region, of a web page.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:12:\"dependencies\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7009\";s:6:\"weight\";s:2:\"-5\";s:11:\"required_by\";a:3:{s:9:\"dashboard\";a:1:{s:4:\"name\";s:5:\"block\";}s:10:\"i18n_block\";a:1:{s:4:\"name\";s:5:\"block\";}s:8:\"standard\";a:1:{s:4:\"name\";s:5:\"block\";}}s:8:\"requires\";a:0:{}s:4:\"sort\";i:-3;}s:10:\"block_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:37:\"modules/block/tests/block_test.module\";s:8:\"filename\";s:37:\"modules/block/tests/block_test.module\";s:4:\"name\";s:10:\"block_test\";s:4:\"info\";a:11:{s:4:\"name\";s:10:\"Block test\";s:11:\"description\";s:21:\"Provides test blocks.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:4:\"blog\";O:8:\"stdClass\":11:{s:3:\"uri\";s:24:\"modules/blog/blog.module\";s:8:\"filename\";s:24:\"modules/blog/blog.module\";s:4:\"name\";s:4:\"blog\";s:4:\"info\";a:10:{s:4:\"name\";s:4:\"Blog\";s:11:\"description\";s:25:\"Enables multi-user blogs.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:12:\"dependencies\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:1:{s:8:\"rdf_test\";a:1:{s:4:\"name\";s:4:\"blog\";}}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:4:\"book\";O:8:\"stdClass\":11:{s:3:\"uri\";s:24:\"modules/book/book.module\";s:8:\"filename\";s:24:\"modules/book/book.module\";s:4:\"name\";s:4:\"book\";s:4:\"info\";a:12:{s:4:\"name\";s:4:\"Book\";s:11:\"description\";s:66:\"Allows users to create and organize related content in an outline.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:12:\"dependencies\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:11:\"boot_test_1\";O:8:\"stdClass\":11:{s:3:\"uri\";s:43:\"modules/simpletest/tests/boot_test_1.module\";s:8:\"filename\";s:43:\"modules/simpletest/tests/boot_test_1.module\";s:4:\"name\";s:11:\"boot_test_1\";s:4:\"info\";a:11:{s:4:\"name\";s:21:\"Early bootstrap tests\";s:11:\"description\";s:39:\"A support module for hook_boot testing.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:11:\"boot_test_2\";O:8:\"stdClass\":11:{s:3:\"uri\";s:43:\"modules/simpletest/tests/boot_test_2.module\";s:8:\"filename\";s:43:\"modules/simpletest/tests/boot_test_2.module\";s:4:\"name\";s:11:\"boot_test_2\";s:4:\"info\";a:11:{s:4:\"name\";s:21:\"Early bootstrap tests\";s:11:\"description\";s:44:\"A support module for hook_boot hook testing.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:11:\"bulk_export\";O:8:\"stdClass\":11:{s:3:\"uri\";s:55:\"sites/all/modules/ctools/bulk_export/bulk_export.module\";s:8:\"filename\";s:55:\"sites/all/modules/ctools/bulk_export/bulk_export.module\";s:4:\"name\";s:11:\"bulk_export\";s:4:\"info\";a:10:{s:4:\"name\";s:11:\"Bulk Export\";s:11:\"description\";s:67:\"Performs bulk exporting of data objects known about by Chaos tools.\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:6:\"ctools\";}s:7:\"package\";s:16:\"Chaos tool suite\";s:7:\"version\";s:8:\"7.x-1.14\";s:7:\"project\";s:6:\"ctools\";s:9:\"datestamp\";s:10:\"1519455788\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:1:{s:6:\"ctools\";a:1:{s:4:\"name\";s:6:\"ctools\";}}s:4:\"sort\";i:-4;}s:15:\"ccc_update_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:43:\"modules/update/tests/ccc_update_test.module\";s:8:\"filename\";s:43:\"modules/update/tests/ccc_update_test.module\";s:4:\"name\";s:15:\"ccc_update_test\";s:4:\"info\";a:11:{s:4:\"name\";s:15:\"CCC Update test\";s:11:\"description\";s:41:\"Support module for update module testing.\";s:7:\"package\";s:7:\"Testing\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"version\";s:4:\"7.59\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:11:\"chartModule\";O:8:\"stdClass\":11:{s:3:\"uri\";s:52:\"sites/default/modules/chartModule/chartModule.module\";s:8:\"filename\";s:52:\"sites/default/modules/chartModule/chartModule.module\";s:4:\"name\";s:11:\"chartModule\";s:4:\"info\";a:9:{s:4:\"name\";s:11:\"chartModule\";s:11:\"description\";s:32:\"weather forecast in chart format\";s:4:\"core\";s:3:\"7.x\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:15:\"css/general.css\";s:49:\"sites/default/modules/chartModule/css/general.css\";}}s:7:\"package\";s:22:\"Meteo at Uniparthenope\";s:12:\"dependencies\";a:0:{}s:7:\"version\";N;s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:5:\"color\";O:8:\"stdClass\":11:{s:3:\"uri\";s:26:\"modules/color/color.module\";s:8:\"filename\";s:26:\"modules/color/color.module\";s:4:\"name\";s:5:\"color\";s:4:\"info\";a:10:{s:4:\"name\";s:5:\"Color\";s:11:\"description\";s:70:\"Allows administrators to change the color scheme of compatible themes.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:12:\"dependencies\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7001\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:2:{s:8:\"standard\";a:1:{s:4:\"name\";s:5:\"color\";}s:8:\"stylizer\";a:1:{s:4:\"name\";s:5:\"color\";}}s:8:\"requires\";a:0:{}s:4:\"sort\";i:-5;}s:8:\"colorbox\";O:8:\"stdClass\":11:{s:3:\"uri\";s:42:\"sites/all/modules/colorbox/colorbox.module\";s:8:\"filename\";s:42:\"sites/all/modules/colorbox/colorbox.module\";s:4:\"name\";s:8:\"colorbox\";s:4:\"info\";a:11:{s:4:\"name\";s:8:\"Colorbox\";s:11:\"description\";s:63:\"A light-weight, customizable lightbox plugin for jQuery 1.4.3+.\";s:12:\"dependencies\";a:1:{i:0;s:15:\"libraries (2.x)\";}s:4:\"core\";s:3:\"7.x\";s:9:\"configure\";s:27:\"admin/config/media/colorbox\";s:5:\"files\";a:1:{i:0;s:41:\"views/colorbox_handler_field_colorbox.inc\";}s:7:\"version\";s:7:\"7.x-2.8\";s:7:\"project\";s:8:\"colorbox\";s:9:\"datestamp\";s:10:\"1410514129\";s:7:\"package\";s:5:\"Other\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7202\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:2:{s:9:\"libraries\";a:3:{s:4:\"name\";s:9:\"libraries\";s:16:\"original_version\";s:6:\" (2.x)\";s:8:\"versions\";a:2:{i:0;a:2:{s:2:\"op\";s:1:\"<\";s:7:\"version\";s:3:\"3.x\";}i:1;a:2:{s:2:\"op\";s:2:\">=\";s:7:\"version\";s:3:\"2.x\";}}}s:6:\"system\";a:3:{s:4:\"name\";s:6:\"system\";s:16:\"original_version\";s:9:\" (>=7.11)\";s:8:\"versions\";a:1:{i:0;a:2:{s:2:\"op\";s:2:\">=\";s:7:\"version\";s:4:\"7.11\";}}}}s:4:\"sort\";i:-8;}s:7:\"comment\";O:8:\"stdClass\":11:{s:3:\"uri\";s:30:\"modules/comment/comment.module\";s:8:\"filename\";s:30:\"modules/comment/comment.module\";s:4:\"name\";s:7:\"comment\";s:4:\"info\";a:12:{s:4:\"name\";s:7:\"Comment\";s:11:\"description\";s:57:\"Allows users to comment on and discuss published content.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7009\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:5:{s:5:\"forum\";a:1:{s:4:\"name\";s:7:\"comment\";}s:10:\"i18n_forum\";a:1:{s:4:\"name\";s:7:\"comment\";}s:18:\"requirements2_test\";a:1:{s:4:\"name\";s:7:\"comment\";}s:8:\"standard\";a:1:{s:4:\"name\";s:7:\"comment\";}s:7:\"tracker\";a:1:{s:4:\"name\";s:7:\"comment\";}}s:8:\"requires\";a:3:{s:4:\"text\";a:1:{s:4:\"name\";s:4:\"text\";}s:5:\"field\";a:1:{s:4:\"name\";s:5:\"field\";}s:17:\"field_sql_storage\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}}s:4:\"sort\";i:-12;}s:11:\"common_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:43:\"modules/simpletest/tests/common_test.module\";s:8:\"filename\";s:43:\"modules/simpletest/tests/common_test.module\";s:4:\"name\";s:11:\"common_test\";s:4:\"info\";a:12:{s:4:\"name\";s:11:\"Common Test\";s:11:\"description\";s:32:\"Support module for Common tests.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:23:\"common_test_cron_helper\";O:8:\"stdClass\":11:{s:3:\"uri\";s:55:\"modules/simpletest/tests/common_test_cron_helper.module\";s:8:\"filename\";s:55:\"modules/simpletest/tests/common_test_cron_helper.module\";s:4:\"name\";s:23:\"common_test_cron_helper\";s:4:\"info\";a:11:{s:4:\"name\";s:23:\"Common Test Cron Helper\";s:11:\"description\";s:56:\"Helper module for CronRunTestCase::testCronExceptions().\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:7:\"contact\";O:8:\"stdClass\":11:{s:3:\"uri\";s:30:\"modules/contact/contact.module\";s:8:\"filename\";s:30:\"modules/contact/contact.module\";s:4:\"name\";s:7:\"contact\";s:4:\"info\";a:11:{s:4:\"name\";s:7:\"Contact\";s:11:\"description\";s:61:\"Enables the use of both personal and site-wide contact forms.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:12:\"dependencies\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7003\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:1:{s:12:\"i18n_contact\";a:1:{s:4:\"name\";s:7:\"contact\";}}s:8:\"requires\";a:0:{}s:4:\"sort\";i:-13;}s:10:\"contextual\";O:8:\"stdClass\":11:{s:3:\"uri\";s:36:\"modules/contextual/contextual.module\";s:8:\"filename\";s:36:\"modules/contextual/contextual.module\";s:4:\"name\";s:10:\"contextual\";s:4:\"info\";a:10:{s:4:\"name\";s:16:\"Contextual links\";s:11:\"description\";s:75:\"Provides contextual links to perform actions related to elements on a page.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:12:\"dependencies\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:1:{s:8:\"standard\";a:1:{s:4:\"name\";s:10:\"contextual\";}}s:8:\"requires\";a:0:{}s:4:\"sort\";i:-14;}s:15:\"cron_queue_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:43:\"modules/system/tests/cron_queue_test.module\";s:8:\"filename\";s:43:\"modules/system/tests/cron_queue_test.module\";s:4:\"name\";s:15:\"cron_queue_test\";s:4:\"info\";a:11:{s:4:\"name\";s:15:\"Cron Queue test\";s:11:\"description\";s:41:\"Support module for the cron queue runner.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:6:\"ctools\";O:8:\"stdClass\":11:{s:3:\"uri\";s:38:\"sites/all/modules/ctools/ctools.module\";s:8:\"filename\";s:38:\"sites/all/modules/ctools/ctools.module\";s:4:\"name\";s:6:\"ctools\";s:4:\"info\";a:10:{s:4:\"name\";s:11:\"Chaos tools\";s:11:\"description\";s:46:\"A library of helpful tools by Merlin of Chaos.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:16:\"Chaos tool suite\";s:5:\"files\";a:14:{i:0;s:20:\"includes/context.inc\";i:1;s:22:\"includes/css-cache.inc\";i:2;s:22:\"includes/math-expr.inc\";i:3;s:21:\"includes/stylizer.inc\";i:4;s:18:\"tests/context.test\";i:5;s:14:\"tests/css.test\";i:6;s:20:\"tests/css_cache.test\";i:7;s:25:\"tests/ctools.plugins.test\";i:8;s:17:\"tests/ctools.test\";i:9;s:26:\"tests/math_expression.test\";i:10;s:32:\"tests/math_expression_stack.test\";i:11;s:23:\"tests/object_cache.test\";i:12;s:28:\"tests/object_cache_unit.test\";i:13;s:22:\"tests/page_tokens.test\";}s:7:\"version\";s:8:\"7.x-1.14\";s:7:\"project\";s:6:\"ctools\";s:9:\"datestamp\";s:10:\"1519455788\";s:12:\"dependencies\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7003\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:27:{s:12:\"addressfield\";a:1:{s:4:\"name\";s:6:\"ctools\";}s:20:\"addressfield_example\";a:1:{s:4:\"name\";s:6:\"ctools\";}s:11:\"bulk_export\";a:1:{s:4:\"name\";s:6:\"ctools\";}s:21:\"ctools_access_ruleset\";a:1:{s:4:\"name\";s:6:\"ctools\";}s:18:\"ctools_ajax_sample\";a:1:{s:4:\"name\";s:6:\"ctools\";}s:21:\"ctools_custom_content\";a:1:{s:4:\"name\";s:6:\"ctools\";}s:18:\"ctools_export_test\";a:1:{s:4:\"name\";s:6:\"ctools\";}s:12:\"page_manager\";a:1:{s:4:\"name\";s:6:\"ctools\";}s:21:\"ctools_plugin_example\";a:1:{s:4:\"name\";s:6:\"ctools\";}s:18:\"ctools_plugin_test\";a:1:{s:4:\"name\";s:6:\"ctools\";}s:5:\"views\";a:1:{s:4:\"name\";s:6:\"ctools\";}s:13:\"features_test\";a:1:{s:4:\"name\";s:6:\"ctools\";}s:8:\"geofield\";a:1:{s:4:\"name\";s:6:\"ctools\";}s:8:\"geocoder\";a:1:{s:4:\"name\";s:6:\"ctools\";}s:12:\"geofield_map\";a:1:{s:4:\"name\";s:6:\"ctools\";}s:24:\"geofield_openlayers_test\";a:1:{s:4:\"name\";s:6:\"ctools\";}s:13:\"geofield_test\";a:1:{s:4:\"name\";s:6:\"ctools\";}s:8:\"views_ui\";a:1:{s:4:\"name\";s:6:\"ctools\";}s:9:\"gmap_test\";a:1:{s:4:\"name\";s:6:\"ctools\";}s:18:\"gmap_test_extended\";a:1:{s:4:\"name\";s:6:\"ctools\";}s:19:\"juicebox_views_test\";a:1:{s:4:\"name\";s:6:\"ctools\";}s:8:\"stylizer\";a:1:{s:4:\"name\";s:6:\"ctools\";}s:10:\"term_depth\";a:1:{s:4:\"name\";s:6:\"ctools\";}s:14:\"variable_views\";a:1:{s:4:\"name\";s:6:\"ctools\";}s:13:\"views_content\";a:1:{s:4:\"name\";s:6:\"ctools\";}s:14:\"views_stylizer\";a:1:{s:4:\"name\";s:6:\"ctools\";}s:10:\"views_test\";a:1:{s:4:\"name\";s:6:\"ctools\";}}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:21:\"ctools_access_ruleset\";O:8:\"stdClass\":11:{s:3:\"uri\";s:75:\"sites/all/modules/ctools/ctools_access_ruleset/ctools_access_ruleset.module\";s:8:\"filename\";s:75:\"sites/all/modules/ctools/ctools_access_ruleset/ctools_access_ruleset.module\";s:4:\"name\";s:21:\"ctools_access_ruleset\";s:4:\"info\";a:10:{s:4:\"name\";s:15:\"Custom rulesets\";s:11:\"description\";s:81:\"Create custom, exportable, reusable access rulesets for applications like Panels.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:16:\"Chaos tool suite\";s:7:\"version\";s:8:\"7.x-1.14\";s:12:\"dependencies\";a:1:{i:0;s:6:\"ctools\";}s:7:\"project\";s:6:\"ctools\";s:9:\"datestamp\";s:10:\"1519455788\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:1:{s:6:\"ctools\";a:1:{s:4:\"name\";s:6:\"ctools\";}}s:4:\"sort\";i:-15;}s:18:\"ctools_ajax_sample\";O:8:\"stdClass\":11:{s:3:\"uri\";s:69:\"sites/all/modules/ctools/ctools_ajax_sample/ctools_ajax_sample.module\";s:8:\"filename\";s:69:\"sites/all/modules/ctools/ctools_ajax_sample/ctools_ajax_sample.module\";s:4:\"name\";s:18:\"ctools_ajax_sample\";s:4:\"info\";a:10:{s:4:\"name\";s:33:\"Chaos Tools (CTools) AJAX Example\";s:11:\"description\";s:41:\"Shows how to use the power of Chaos AJAX.\";s:7:\"package\";s:16:\"Chaos tool suite\";s:7:\"version\";s:8:\"7.x-1.14\";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:\"1519455788\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:1:{s:6:\"ctools\";a:1:{s:4:\"name\";s:6:\"ctools\";}}s:4:\"sort\";i:-16;}s:21:\"ctools_custom_content\";O:8:\"stdClass\":11:{s:3:\"uri\";s:75:\"sites/all/modules/ctools/ctools_custom_content/ctools_custom_content.module\";s:8:\"filename\";s:75:\"sites/all/modules/ctools/ctools_custom_content/ctools_custom_content.module\";s:4:\"name\";s:21:\"ctools_custom_content\";s:4:\"info\";a:10:{s:4:\"name\";s:20:\"Custom content panes\";s:11:\"description\";s:79:\"Create custom, exportable, reusable content panes for applications like Panels.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:16:\"Chaos tool suite\";s:7:\"version\";s:8:\"7.x-1.14\";s:12:\"dependencies\";a:1:{i:0;s:6:\"ctools\";}s:7:\"project\";s:6:\"ctools\";s:9:\"datestamp\";s:10:\"1519455788\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:1:{s:6:\"ctools\";a:1:{s:4:\"name\";s:6:\"ctools\";}}s:4:\"sort\";i:-17;}s:18:\"ctools_export_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:75:\"sites/all/modules/ctools/tests/ctools_export_test/ctools_export_test.module\";s:8:\"filename\";s:75:\"sites/all/modules/ctools/tests/ctools_export_test/ctools_export_test.module\";s:4:\"name\";s:18:\"ctools_export_test\";s:4:\"info\";a:11:{s:4:\"name\";s:18:\"CTools export test\";s:11:\"description\";s:25:\"CTools export test module\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:16:\"Chaos tool suite\";s:7:\"version\";s:8:\"7.x-1.14\";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:\"1519455788\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:1:{s:6:\"ctools\";a:1:{s:4:\"name\";s:6:\"ctools\";}}s:4:\"sort\";i:-18;}s:21:\"ctools_plugin_example\";O:8:\"stdClass\":11:{s:3:\"uri\";s:75:\"sites/all/modules/ctools/ctools_plugin_example/ctools_plugin_example.module\";s:8:\"filename\";s:75:\"sites/all/modules/ctools/ctools_plugin_example/ctools_plugin_example.module\";s:4:\"name\";s:21:\"ctools_plugin_example\";s:4:\"info\";a:10:{s:4:\"name\";s:35:\"Chaos Tools (CTools) Plugin Example\";s:11:\"description\";s:75:\"Shows how an external module can provide ctools plugins (for Panels, etc.).\";s:7:\"package\";s:16:\"Chaos tool suite\";s:7:\"version\";s:8:\"7.x-1.14\";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:\"1519455788\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:4:{s:6:\"ctools\";a:1:{s:4:\"name\";s:6:\"ctools\";}s:6:\"panels\";a:1:{s:4:\"name\";s:6:\"panels\";}s:12:\"page_manager\";a:1:{s:4:\"name\";s:12:\"page_manager\";}s:13:\"advanced_help\";a:1:{s:4:\"name\";s:13:\"advanced_help\";}}s:4:\"sort\";i:-20;}s:18:\"ctools_plugin_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:56:\"sites/all/modules/ctools/tests/ctools_plugin_test.module\";s:8:\"filename\";s:56:\"sites/all/modules/ctools/tests/ctools_plugin_test.module\";s:4:\"name\";s:18:\"ctools_plugin_test\";s:4:\"info\";a:11:{s:4:\"name\";s:24:\"Chaos tools plugins test\";s:11:\"description\";s:42:\"Provides hooks for testing ctools plugins.\";s:7:\"package\";s:16:\"Chaos tool suite\";s:7:\"version\";s:8:\"7.x-1.14\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:6:\"ctools\";}s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"ctools\";s:9:\"datestamp\";s:10:\"1519455788\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:1:{s:6:\"ctools\";a:1:{s:4:\"name\";s:6:\"ctools\";}}s:4:\"sort\";i:-21;}s:9:\"dashboard\";O:8:\"stdClass\":11:{s:3:\"uri\";s:34:\"modules/dashboard/dashboard.module\";s:8:\"filename\";s:34:\"modules/dashboard/dashboard.module\";s:4:\"name\";s:9:\"dashboard\";s:4:\"info\";a:11:{s:4:\"name\";s:9:\"Dashboard\";s:11:\"description\";s:136:\"Provides a dashboard page in the administrative interface for organizing administrative tasks and tracking information within your site.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:1:{s:8:\"standard\";a:1:{s:4:\"name\";s:9:\"dashboard\";}}s:8:\"requires\";a:1:{s:5:\"block\";a:1:{s:4:\"name\";s:5:\"block\";}}s:4:\"sort\";i:-22;}s:13:\"database_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:45:\"modules/simpletest/tests/database_test.module\";s:8:\"filename\";s:45:\"modules/simpletest/tests/database_test.module\";s:4:\"name\";s:13:\"database_test\";s:4:\"info\";a:11:{s:4:\"name\";s:13:\"Database Test\";s:11:\"description\";s:40:\"Support module for Database layer tests.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:5:\"dblog\";O:8:\"stdClass\":11:{s:3:\"uri\";s:26:\"modules/dblog/dblog.module\";s:8:\"filename\";s:26:\"modules/dblog/dblog.module\";s:4:\"name\";s:5:\"dblog\";s:4:\"info\";a:10:{s:4:\"name\";s:16:\"Database logging\";s:11:\"description\";s:47:\"Logs and records system events to the database.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:12:\"dependencies\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7003\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:1:{s:8:\"standard\";a:1:{s:4:\"name\";s:5:\"dblog\";}}s:8:\"requires\";a:0:{}s:4:\"sort\";i:-23;}s:20:\"drupal_autoload_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:73:\"modules/simpletest/tests/drupal_autoload_test/drupal_autoload_test.module\";s:8:\"filename\";s:73:\"modules/simpletest/tests/drupal_autoload_test/drupal_autoload_test.module\";s:4:\"name\";s:20:\"drupal_autoload_test\";s:4:\"info\";a:11:{s:4:\"name\";s:25:\"Drupal code registry test\";s:11:\"description\";s:45:\"Support module for testing the code registry.\";s:5:\"files\";a:2:{i:0;s:34:\"drupal_autoload_test_interface.inc\";i:1;s:30:\"drupal_autoload_test_class.inc\";}s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:37:\"drupal_system_listing_compatible_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:107:\"modules/simpletest/tests/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.module\";s:8:\"filename\";s:107:\"modules/simpletest/tests/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.module\";s:4:\"name\";s:37:\"drupal_system_listing_compatible_test\";s:4:\"info\";a:11:{s:4:\"name\";s:37:\"Drupal system listing compatible test\";s:11:\"description\";s:62:\"Support module for testing the drupal_system_listing function.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:39:\"drupal_system_listing_incompatible_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:111:\"modules/simpletest/tests/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.module\";s:8:\"filename\";s:111:\"modules/simpletest/tests/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.module\";s:4:\"name\";s:39:\"drupal_system_listing_incompatible_test\";s:4:\"info\";a:11:{s:4:\"name\";s:39:\"Drupal system listing incompatible test\";s:11:\"description\";s:62:\"Support module for testing the drupal_system_listing function.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:6:\"entity\";O:8:\"stdClass\":11:{s:3:\"uri\";s:38:\"sites/all/modules/entity/entity.module\";s:8:\"filename\";s:38:\"sites/all/modules/entity/entity.module\";s:4:\"name\";s:6:\"entity\";s:4:\"info\";a:10:{s:4:\"name\";s:10:\"Entity API\";s:11:\"description\";s:69:\"Enables modules to work with any entity type and to provide entities.\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:24:{i:0;s:19:\"entity.features.inc\";i:1;s:15:\"entity.i18n.inc\";i:2;s:15:\"entity.info.inc\";i:3;s:16:\"entity.rules.inc\";i:4;s:11:\"entity.test\";i:5;s:19:\"includes/entity.inc\";i:6;s:30:\"includes/entity.controller.inc\";i:7;s:22:\"includes/entity.ui.inc\";i:8;s:27:\"includes/entity.wrapper.inc\";i:9;s:22:\"views/entity.views.inc\";i:10;s:52:\"views/handlers/entity_views_field_handler_helper.inc\";i:11;s:51:\"views/handlers/entity_views_handler_area_entity.inc\";i:12;s:53:\"views/handlers/entity_views_handler_field_boolean.inc\";i:13;s:50:\"views/handlers/entity_views_handler_field_date.inc\";i:14;s:54:\"views/handlers/entity_views_handler_field_duration.inc\";i:15;s:52:\"views/handlers/entity_views_handler_field_entity.inc\";i:16;s:51:\"views/handlers/entity_views_handler_field_field.inc\";i:17;s:53:\"views/handlers/entity_views_handler_field_numeric.inc\";i:18;s:53:\"views/handlers/entity_views_handler_field_options.inc\";i:19;s:50:\"views/handlers/entity_views_handler_field_text.inc\";i:20;s:49:\"views/handlers/entity_views_handler_field_uri.inc\";i:21;s:62:\"views/handlers/entity_views_handler_relationship_by_bundle.inc\";i:22;s:52:\"views/handlers/entity_views_handler_relationship.inc\";i:23;s:53:\"views/plugins/entity_views_plugin_row_entity_view.inc\";}s:7:\"version\";s:7:\"7.x-1.9\";s:7:\"project\";s:6:\"entity\";s:9:\"datestamp\";s:10:\"1518620551\";s:12:\"dependencies\";a:0:{}s:7:\"package\";s:5:\"Other\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7003\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:7:{s:11:\"entity_test\";a:1:{s:4:\"name\";s:6:\"entity\";}s:14:\"entity_feature\";a:1:{s:4:\"name\";s:6:\"entity\";}s:16:\"entity_test_i18n\";a:1:{s:4:\"name\";s:6:\"entity\";}s:12:\"entity_token\";a:1:{s:4:\"name\";s:6:\"entity\";}s:8:\"geocoder\";a:1:{s:4:\"name\";s:6:\"entity\";}s:13:\"geofield_test\";a:1:{s:4:\"name\";s:6:\"entity\";}s:10:\"title_test\";a:1:{s:4:\"name\";s:6:\"entity\";}}s:8:\"requires\";a:0:{}s:4:\"sort\";i:-24;}s:17:\"entity_cache_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:49:\"modules/simpletest/tests/entity_cache_test.module\";s:8:\"filename\";s:49:\"modules/simpletest/tests/entity_cache_test.module\";s:4:\"name\";s:17:\"entity_cache_test\";s:4:\"info\";a:11:{s:4:\"name\";s:17:\"Entity cache test\";s:11:\"description\";s:40:\"Support module for testing entity cache.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:1:{s:28:\"entity_cache_test_dependency\";a:1:{s:4:\"name\";s:28:\"entity_cache_test_dependency\";}}s:4:\"sort\";i:-1;}s:28:\"entity_cache_test_dependency\";O:8:\"stdClass\":11:{s:3:\"uri\";s:60:\"modules/simpletest/tests/entity_cache_test_dependency.module\";s:8:\"filename\";s:60:\"modules/simpletest/tests/entity_cache_test_dependency.module\";s:4:\"name\";s:28:\"entity_cache_test_dependency\";s:4:\"info\";a:11:{s:4:\"name\";s:28:\"Entity cache test dependency\";s:11:\"description\";s:51:\"Support dependency module for testing entity cache.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:1:{s:17:\"entity_cache_test\";a:1:{s:4:\"name\";s:28:\"entity_cache_test_dependency\";}}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:21:\"entity_crud_hook_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:53:\"modules/simpletest/tests/entity_crud_hook_test.module\";s:8:\"filename\";s:53:\"modules/simpletest/tests/entity_crud_hook_test.module\";s:4:\"name\";s:21:\"entity_crud_hook_test\";s:4:\"info\";a:11:{s:4:\"name\";s:22:\"Entity CRUD Hooks Test\";s:11:\"description\";s:35:\"Support module for CRUD hook tests.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:14:\"entity_feature\";O:8:\"stdClass\":11:{s:3:\"uri\";s:52:\"sites/all/modules/entity/tests/entity_feature.module\";s:8:\"filename\";s:52:\"sites/all/modules/entity/tests/entity_feature.module\";s:4:\"name\";s:14:\"entity_feature\";s:4:\"info\";a:11:{s:4:\"name\";s:21:\"Entity feature module\";s:11:\"description\";s:31:\"Provides some entities in code.\";s:7:\"version\";s:7:\"7.x-1.9\";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:\"1518620551\";s:7:\"package\";s:5:\"Other\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:2:{s:11:\"entity_test\";a:1:{s:4:\"name\";s:11:\"entity_test\";}s:6:\"entity\";a:1:{s:4:\"name\";s:6:\"entity\";}}s:4:\"sort\";i:-26;}s:24:\"entity_query_access_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:56:\"modules/simpletest/tests/entity_query_access_test.module\";s:8:\"filename\";s:56:\"modules/simpletest/tests/entity_query_access_test.module\";s:4:\"name\";s:24:\"entity_query_access_test\";s:4:\"info\";a:11:{s:4:\"name\";s:24:\"Entity query access test\";s:11:\"description\";s:49:\"Support module for checking entity query results.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:11:\"entity_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:49:\"sites/all/modules/entity/tests/entity_test.module\";s:8:\"filename\";s:49:\"sites/all/modules/entity/tests/entity_test.module\";s:4:\"name\";s:11:\"entity_test\";s:4:\"info\";a:11:{s:4:\"name\";s:23:\"Entity CRUD test module\";s:11:\"description\";s:46:\"Provides entity types based upon the CRUD API.\";s:7:\"version\";s:7:\"7.x-1.9\";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:\"1518620551\";s:7:\"package\";s:5:\"Other\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:2:{s:14:\"entity_feature\";a:1:{s:4:\"name\";s:11:\"entity_test\";}s:16:\"entity_test_i18n\";a:1:{s:4:\"name\";s:11:\"entity_test\";}}s:8:\"requires\";a:1:{s:6:\"entity\";a:1:{s:4:\"name\";s:6:\"entity\";}}s:4:\"sort\";i:-25;}s:16:\"entity_test_i18n\";O:8:\"stdClass\":11:{s:3:\"uri\";s:54:\"sites/all/modules/entity/tests/entity_test_i18n.module\";s:8:\"filename\";s:54:\"sites/all/modules/entity/tests/entity_test_i18n.module\";s:4:\"name\";s:16:\"entity_test_i18n\";s:4:\"info\";a:11:{s:4:\"name\";s:28:\"Entity-test type translation\";s:11:\"description\";s:37:\"Allows translating entity-test types.\";s:12:\"dependencies\";a:2:{i:0;s:11:\"entity_test\";i:1;s:11:\"i18n_string\";}s:7:\"package\";s:35:\"Multilingual - Internationalization\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"version\";s:7:\"7.x-1.9\";s:7:\"project\";s:6:\"entity\";s:9:\"datestamp\";s:10:\"1518620551\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:6:{s:11:\"entity_test\";a:1:{s:4:\"name\";s:11:\"entity_test\";}s:6:\"entity\";a:1:{s:4:\"name\";s:6:\"entity\";}s:11:\"i18n_string\";a:1:{s:4:\"name\";s:11:\"i18n_string\";}s:6:\"locale\";a:1:{s:4:\"name\";s:6:\"locale\";}s:4:\"i18n\";a:1:{s:4:\"name\";s:4:\"i18n\";}s:8:\"variable\";a:1:{s:4:\"name\";s:8:\"variable\";}}s:4:\"sort\";i:-31;}s:12:\"entity_token\";O:8:\"stdClass\":11:{s:3:\"uri\";s:44:\"sites/all/modules/entity/entity_token.module\";s:8:\"filename\";s:44:\"sites/all/modules/entity/entity_token.module\";s:4:\"name\";s:12:\"entity_token\";s:4:\"info\";a:10:{s:4:\"name\";s:13:\"Entity tokens\";s:11:\"description\";s:99:\"Provides token replacements for all properties that have no tokens and are known to the entity API.\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:2:{i:0;s:23:\"entity_token.tokens.inc\";i:1;s:19:\"entity_token.module\";}s:12:\"dependencies\";a:1:{i:0;s:6:\"entity\";}s:7:\"version\";s:7:\"7.x-1.9\";s:7:\"project\";s:6:\"entity\";s:9:\"datestamp\";s:10:\"1518620551\";s:7:\"package\";s:5:\"Other\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:1:{s:6:\"entity\";a:1:{s:4:\"name\";s:6:\"entity\";}}s:4:\"sort\";i:-32;}s:18:\"entity_translation\";O:8:\"stdClass\":11:{s:3:\"uri\";s:62:\"sites/all/modules/entity_translation/entity_translation.module\";s:8:\"filename\";s:62:\"sites/all/modules/entity_translation/entity_translation.module\";s:4:\"name\";s:18:\"entity_translation\";s:4:\"info\";a:12:{s:4:\"name\";s:18:\"Entity Translation\";s:11:\"description\";s:58:\"Allows entities to be translated into different languages.\";s:7:\"package\";s:33:\"Multilingual - Entity Translation\";s:4:\"core\";s:3:\"7.x\";s:9:\"configure\";s:40:\"admin/config/regional/entity_translation\";s:12:\"dependencies\";a:1:{i:0;s:14:\"locale (>7.14)\";}s:17:\"test_dependencies\";a:2:{i:0;s:17:\"pathauto:pathauto\";i:1;s: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:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7009\";s:6:\"weight\";s:2:\"11\";s:11:\"required_by\";a:4:{s:28:\"entity_translation_i18n_menu\";a:1:{s:4:\"name\";s:18:\"entity_translation\";}s:23:\"entity_translation_test\";a:1:{s:4:\"name\";s:18:\"entity_translation\";}s:26:\"entity_translation_upgrade\";a:1:{s:4:\"name\";s:18:\"entity_translation\";}s:10:\"title_test\";a:1:{s:4:\"name\";s:18:\"entity_translation\";}}s:8:\"requires\";a:1:{s:6:\"locale\";a:3:{s:4:\"name\";s:6:\"locale\";s:16:\"original_version\";s:8:\" (>7.14)\";s:8:\"versions\";a:1:{i:0;a:2:{s:2:\"op\";s:1:\">\";s:7:\"version\";s:4:\"7.14\";}}}}s:4:\"sort\";i:-33;}s:28:\"entity_translation_i18n_menu\";O:8:\"stdClass\":11:{s:3:\"uri\";s:101:\"sites/all/modules/entity_translation/entity_translation_i18n_menu/entity_translation_i18n_menu.module\";s:8:\"filename\";s:101:\"sites/all/modules/entity_translation/entity_translation_i18n_menu/entity_translation_i18n_menu.module\";s:4:\"name\";s:28:\"entity_translation_i18n_menu\";s:4:\"info\";a:10:{s:4:\"name\";s:23:\"Entity Translation Menu\";s:11:\"description\";s:54:\"Allows menu items to be translated on the entity form.\";s:7:\"package\";s:33:\"Multilingual - Entity Translation\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:3:{i:0;s:18:\"entity_translation\";i:1;s:4:\"i18n\";i:2;s:9:\"i18n_menu\";}s:5:\"files\";a:1:{i:0;s:33:\"entity_translation_i18n_menu.test\";}s:7:\"version\";s:7:\"7.x-1.0\";s:7:\"project\";s:18:\"entity_translation\";s:9:\"datestamp\";s:10:\"1522600694\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:8:{s:18:\"entity_translation\";a:1:{s:4:\"name\";s:18:\"entity_translation\";}s:6:\"locale\";a:3:{s:4:\"name\";s:6:\"locale\";s:16:\"original_version\";s:8:\" (>7.14)\";s:8:\"versions\";a:1:{i:0;a:2:{s:2:\"op\";s:1:\">\";s:7:\"version\";s:4:\"7.14\";}}}s:4:\"i18n\";a:1:{s:4:\"name\";s:4:\"i18n\";}s:8:\"variable\";a:1:{s:4:\"name\";s:8:\"variable\";}s:9:\"i18n_menu\";a:1:{s:4:\"name\";s:9:\"i18n_menu\";}s:4:\"menu\";a:1:{s:4:\"name\";s:4:\"menu\";}s:11:\"i18n_string\";a:1:{s:4:\"name\";s:11:\"i18n_string\";}s:16:\"i18n_translation\";a:1:{s:4:\"name\";s:16:\"i18n_translation\";}}s:4:\"sort\";i:-37;}s:23:\"entity_translation_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:73:\"sites/all/modules/entity_translation/tests/entity_translation_test.module\";s:8:\"filename\";s:73:\"sites/all/modules/entity_translation/tests/entity_translation_test.module\";s:4:\"name\";s:23:\"entity_translation_test\";s:4:\"info\";a:11:{s:4:\"name\";s:26:\"Entity Translation testing\";s:11:\"description\";s:61:\"Tests Entity Translation module functionality. Do not enable.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:7:\"Testing\";s:6:\"hidden\";b:1;s:12:\"dependencies\";a:1:{i:0;s:18:\"entity_translation\";}s:5:\"files\";a:1:{i:0;s:30:\"entity_translation_test.module\";}s:7:\"version\";s:7:\"7.x-1.0\";s:7:\"project\";s:18:\"entity_translation\";s:9:\"datestamp\";s:10:\"1522600694\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:2:{s:18:\"entity_translation\";a:1:{s:4:\"name\";s:18:\"entity_translation\";}s:6:\"locale\";a:3:{s:4:\"name\";s:6:\"locale\";s:16:\"original_version\";s:8:\" (>7.14)\";s:8:\"versions\";a:1:{i:0;a:2:{s:2:\"op\";s:1:\">\";s:7:\"version\";s:4:\"7.14\";}}}}s:4:\"sort\";i:-38;}s:26:\"entity_translation_upgrade\";O:8:\"stdClass\":11:{s:3:\"uri\";s:97:\"sites/all/modules/entity_translation/entity_translation_upgrade/entity_translation_upgrade.module\";s:8:\"filename\";s:97:\"sites/all/modules/entity_translation/entity_translation_upgrade/entity_translation_upgrade.module\";s:4:\"name\";s:26:\"entity_translation_upgrade\";s:4:\"info\";a:10:{s:4:\"name\";s:26:\"Entity Translation Upgrade\";s:11:\"description\";s:80:\"Provides an upgrade path from node-based translation to field-based translation.\";s:7:\"package\";s:33:\"Multilingual - Entity Translation\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:18:\"entity_translation\";}s:5:\"files\";a:1:{i:0;s:31:\"entity_translation_upgrade.test\";}s:7:\"version\";s:7:\"7.x-1.0\";s:7:\"project\";s:18:\"entity_translation\";s:9:\"datestamp\";s:10:\"1522600694\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7001\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:2:{s:18:\"entity_translation\";a:1:{s:4:\"name\";s:18:\"entity_translation\";}s:6:\"locale\";a:3:{s:4:\"name\";s:6:\"locale\";s:16:\"original_version\";s:8:\" (>7.14)\";s:8:\"versions\";a:1:{i:0;a:2:{s:2:\"op\";s:1:\">\";s:7:\"version\";s:4:\"7.14\";}}}}s:4:\"sort\";i:-39;}s:10:\"error_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:42:\"modules/simpletest/tests/error_test.module\";s:8:\"filename\";s:42:\"modules/simpletest/tests/error_test.module\";s:4:\"name\";s:10:\"error_test\";s:4:\"info\";a:11:{s:4:\"name\";s:10:\"Error test\";s:11:\"description\";s:47:\"Support module for error and exception testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:8:\"features\";O:8:\"stdClass\":11:{s:3:\"uri\";s:42:\"sites/all/modules/features/features.module\";s:8:\"filename\";s:42:\"sites/all/modules/features/features.module\";s:4:\"name\";s:8:\"features\";s:4:\"info\";a:12:{s:4:\"name\";s:8:\"Features\";s:11:\"description\";s:39:\"Provides feature management for Drupal.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:8:\"Features\";s:5:\"files\";a:1:{i:0;s:19:\"tests/features.test\";}s:17:\"test_dependencies\";a:4:{i:0;s:5:\"image\";i:1;s:9:\"strongarm\";i:2;s:8:\"taxonomy\";i:3;s:5:\"views\";}s:9:\"configure\";s:33:\"admin/structure/features/settings\";s:7:\"version\";s:8:\"7.x-2.10\";s:7:\"project\";s:8:\"features\";s:9:\"datestamp\";s:10:\"1461011641\";s:12:\"dependencies\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7200\";s:6:\"weight\";s:2:\"20\";s:11:\"required_by\";a:3:{s:13:\"features_test\";a:1:{s:4:\"name\";s:8:\"features\";}s:9:\"gmap_test\";a:1:{s:4:\"name\";s:8:\"features\";}s:18:\"gmap_test_extended\";a:1:{s:4:\"name\";s:8:\"features\";}}s:8:\"requires\";a:0:{}s:4:\"sort\";i:-40;}s:13:\"features_test\";r:3;s:5:\"field\";O:8:\"stdClass\":11:{s:3:\"uri\";s:26:\"modules/field/field.module\";s:8:\"filename\";s:26:\"modules/field/field.module\";s:4:\"name\";s:5:\"field\";s:4:\"info\";a:12:{s:4:\"name\";s:5:\"Field\";s:11:\"description\";s:57:\"Field API to add fields to entities like nodes and users.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7004\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:29:{s:17:\"field_sql_storage\";a:1:{s:4:\"name\";s:5:\"field\";}s:5:\"field\";a:1:{s:4:\"name\";s:5:\"field\";}s:4:\"text\";a:1:{s:4:\"name\";s:5:\"field\";}s:7:\"comment\";a:1:{s:4:\"name\";s:5:\"field\";}s:4:\"file\";a:1:{s:4:\"name\";s:5:\"field\";}s:5:\"image\";a:1:{s:4:\"name\";s:5:\"field\";}s:7:\"options\";a:1:{s:4:\"name\";s:5:\"field\";}s:8:\"taxonomy\";a:1:{s:4:\"name\";s:5:\"field\";}s:13:\"features_test\";a:1:{s:4:\"name\";s:5:\"field\";}s:8:\"field_ui\";a:1:{s:4:\"name\";s:5:\"field\";}s:5:\"forum\";a:1:{s:4:\"name\";s:5:\"field\";}s:11:\"gmap_fields\";a:1:{s:4:\"name\";s:5:\"field\";}s:13:\"gmap_taxonomy\";a:1:{s:4:\"name\";s:5:\"field\";}s:9:\"gmap_test\";a:1:{s:4:\"name\";s:5:\"field\";}s:18:\"gmap_test_extended\";a:1:{s:4:\"name\";s:5:\"field\";}s:10:\"i18n_field\";a:1:{s:4:\"name\";s:5:\"field\";}s:13:\"i18n_taxonomy\";a:1:{s:4:\"name\";s:5:\"field\";}s:10:\"i18n_forum\";a:1:{s:4:\"name\";s:5:\"field\";}s:8:\"juicebox\";a:1:{s:4:\"name\";s:5:\"field\";}s:19:\"juicebox_views_test\";a:1:{s:4:\"name\";s:5:\"field\";}s:4:\"list\";a:1:{s:4:\"name\";s:5:\"field\";}s:17:\"location_taxonomy\";a:1:{s:4:\"name\";s:5:\"field\";}s:6:\"number\";a:1:{s:4:\"name\";s:5:\"field\";}s:6:\"photos\";a:1:{s:4:\"name\";s:5:\"field\";}s:11:\"photos_swfu\";a:1:{s:4:\"name\";s:5:\"field\";}s:18:\"requirements2_test\";a:1:{s:4:\"name\";s:5:\"field\";}s:8:\"standard\";a:1:{s:4:\"name\";s:5:\"field\";}s:13:\"taxonomy_test\";a:1:{s:4:\"name\";s:5:\"field\";}s:7:\"tracker\";a:1:{s:4:\"name\";s:5:\"field\";}}s:8:\"requires\";a:2:{s:17:\"field_sql_storage\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}s:5:\"field\";a:1:{s:4:\"name\";s:5:\"field\";}}s:4:\"sort\";i:-10;}s:17:\"field_sql_storage\";O:8:\"stdClass\":11:{s:3:\"uri\";s:64:\"modules/field/modules/field_sql_storage/field_sql_storage.module\";s:8:\"filename\";s:64:\"modules/field/modules/field_sql_storage/field_sql_storage.module\";s:4:\"name\";s:17:\"field_sql_storage\";s:4:\"info\";a:11:{s:4:\"name\";s:17:\"Field SQL storage\";s:11:\"description\";s:37:\"Stores field data in an SQL database.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7002\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:29:{s:17:\"field_sql_storage\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}s:5:\"field\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}s:4:\"text\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}s:7:\"comment\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}s:4:\"file\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}s:5:\"image\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}s:7:\"options\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}s:8:\"taxonomy\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}s:13:\"features_test\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}s:8:\"field_ui\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}s:5:\"forum\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}s:11:\"gmap_fields\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}s:13:\"gmap_taxonomy\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}s:9:\"gmap_test\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}s:18:\"gmap_test_extended\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}s:10:\"i18n_field\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}s:13:\"i18n_taxonomy\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}s:10:\"i18n_forum\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}s:8:\"juicebox\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}s:19:\"juicebox_views_test\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}s:4:\"list\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}s:17:\"location_taxonomy\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}s:6:\"number\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}s:6:\"photos\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}s:11:\"photos_swfu\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}s:18:\"requirements2_test\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}s:8:\"standard\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}s:13:\"taxonomy_test\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}s:7:\"tracker\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}}s:8:\"requires\";a:2:{s:5:\"field\";a:1:{s:4:\"name\";s:5:\"field\";}s:17:\"field_sql_storage\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}}s:4:\"sort\";i:-9;}s:10:\"field_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:37:\"modules/field/tests/field_test.module\";s:8:\"filename\";s:37:\"modules/field/tests/field_test.module\";s:4:\"name\";s:10:\"field_test\";s:4:\"info\";a:11:{s:4:\"name\";s:14:\"Field API Test\";s:11:\"description\";s:39:\"Support module for the Field API tests.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:7:\"Testing\";s:5:\"files\";a:1:{i:0;s:21:\"field_test.entity.inc\";}s:7:\"version\";s:4:\"7.59\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:8:\"field_ui\";O:8:\"stdClass\":11:{s:3:\"uri\";s:32:\"modules/field_ui/field_ui.module\";s:8:\"filename\";s:32:\"modules/field_ui/field_ui.module\";s:4:\"name\";s:8:\"field_ui\";s:4:\"info\";a:10:{s:4:\"name\";s:8:\"Field UI\";s:11:\"description\";s:33:\"User interface for the Field API.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:1:{s:8:\"standard\";a:1:{s:4:\"name\";s:8:\"field_ui\";}}s:8:\"requires\";a:2:{s:5:\"field\";a:1:{s:4:\"name\";s:5:\"field\";}s:17:\"field_sql_storage\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}}s:4:\"sort\";i:-47;}s:4:\"file\";O:8:\"stdClass\":11:{s:3:\"uri\";s:24:\"modules/file/file.module\";s:8:\"filename\";s:24:\"modules/file/file.module\";s:4:\"name\";s:4:\"file\";s:4:\"info\";a:10:{s:4:\"name\";s:4:\"File\";s:11:\"description\";s:26:\"Defines a file field type.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:7:{s:5:\"image\";a:1:{s:4:\"name\";s:4:\"file\";}s:13:\"features_test\";a:1:{s:4:\"name\";s:4:\"file\";}s:8:\"juicebox\";a:1:{s:4:\"name\";s:4:\"file\";}s:19:\"juicebox_views_test\";a:1:{s:4:\"name\";s:4:\"file\";}s:6:\"photos\";a:1:{s:4:\"name\";s:4:\"file\";}s:11:\"photos_swfu\";a:1:{s:4:\"name\";s:4:\"file\";}s:8:\"standard\";a:1:{s:4:\"name\";s:4:\"file\";}}s:8:\"requires\";a:2:{s:5:\"field\";a:1:{s:4:\"name\";s:5:\"field\";}s:17:\"field_sql_storage\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}}s:4:\"sort\";i:-41;}s:16:\"file_module_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:42:\"modules/file/tests/file_module_test.module\";s:8:\"filename\";s:42:\"modules/file/tests/file_module_test.module\";s:4:\"name\";s:16:\"file_module_test\";s:4:\"info\";a:11:{s:4:\"name\";s:9:\"File test\";s:11:\"description\";s:53:\"Provides hooks for testing File module functionality.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:9:\"file_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:41:\"modules/simpletest/tests/file_test.module\";s:8:\"filename\";s:41:\"modules/simpletest/tests/file_test.module\";s:4:\"name\";s:9:\"file_test\";s:4:\"info\";a:11:{s:4:\"name\";s:9:\"File test\";s:11:\"description\";s:39:\"Support module for file handling tests.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:12:\"dependencies\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:6:\"filter\";O:8:\"stdClass\":11:{s:3:\"uri\";s:28:\"modules/filter/filter.module\";s:8:\"filename\";s:28:\"modules/filter/filter.module\";s:4:\"name\";s:6:\"filter\";s:4:\"info\";a:12:{s:4:\"name\";s:6:\"Filter\";s:11:\"description\";s:43:\"Filters content in preparation for display.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:12:\"dependencies\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7010\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:1:{s:29:\"system_project_namespace_test\";a:2:{s:7:\"project\";s:6:\"drupal\";s:4:\"name\";s:6:\"filter\";}}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:11:\"filter_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:43:\"modules/simpletest/tests/filter_test.module\";s:8:\"filename\";s:43:\"modules/simpletest/tests/filter_test.module\";s:4:\"name\";s:11:\"filter_test\";s:4:\"info\";a:11:{s:4:\"name\";s:18:\"Filter test module\";s:11:\"description\";s:33:\"Tests filter hooks and functions.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:9:\"form_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:41:\"modules/simpletest/tests/form_test.module\";s:8:\"filename\";s:41:\"modules/simpletest/tests/form_test.module\";s:4:\"name\";s:9:\"form_test\";s:4:\"info\";a:11:{s:4:\"name\";s:12:\"FormAPI Test\";s:11:\"description\";s:34:\"Support module for Form API tests.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:5:\"forum\";O:8:\"stdClass\":11:{s:3:\"uri\";s:26:\"modules/forum/forum.module\";s:8:\"filename\";s:26:\"modules/forum/forum.module\";s:4:\"name\";s:5:\"forum\";s:4:\"info\";a:12:{s:4:\"name\";s:5:\"Forum\";s:11:\"description\";s:27:\"Provides discussion forums.\";s:12:\"dependencies\";a:2:{i:0;s:8:\"taxonomy\";i:1;s:7:\"comment\";}s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7012\";s:6:\"weight\";s:1:\"1\";s:11:\"required_by\";a:1:{s:10:\"i18n_forum\";a:1:{s:4:\"name\";s:5:\"forum\";}}s:8:\"requires\";a:6:{s:8:\"taxonomy\";a:1:{s:4:\"name\";s:8:\"taxonomy\";}s:7:\"options\";a:1:{s:4:\"name\";s:7:\"options\";}s:5:\"field\";a:1:{s:4:\"name\";s:5:\"field\";}s:17:\"field_sql_storage\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}s:7:\"comment\";a:1:{s:4:\"name\";s:7:\"comment\";}s:4:\"text\";a:1:{s:4:\"name\";s:4:\"text\";}}s:4:\"sort\";i:-48;}s:8:\"geocoder\";O:8:\"stdClass\":11:{s:3:\"uri\";s:42:\"sites/all/modules/geocoder/geocoder.module\";s:8:\"filename\";s:42:\"sites/all/modules/geocoder/geocoder.module\";s:4:\"name\";s:8:\"geocoder\";s:4:\"info\";a:11:{s:4:\"name\";s:8:\"Geocoder\";s:11:\"description\";s:74:\"An API and widget to geocode various known data into other GIS data types.\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:4:{i:0;s:6:\"geophp\";i:1;s:16:\"geofield (>=1.x)\";i:2;s:6:\"ctools\";i:3;s:6:\"entity\";}s:9:\"configure\";s:29:\"admin/config/content/geocoder\";s:7:\"version\";s:7:\"7.x-1.4\";s:7:\"project\";s:8:\"geocoder\";s:9:\"datestamp\";s:10:\"1536073093\";s:7:\"package\";s:5:\"Other\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7101\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:1:{s:13:\"geofield_test\";a:1:{s:4:\"name\";s:8:\"geocoder\";}}s:8:\"requires\";a:4:{s:6:\"geophp\";a:1:{s:4:\"name\";s:6:\"geophp\";}s:8:\"geofield\";a:3:{s:4:\"name\";s:8:\"geofield\";s:16:\"original_version\";s:8:\" (>=1.x)\";s:8:\"versions\";a:1:{i:0;a:2:{s:2:\"op\";s:2:\">=\";s:7:\"version\";s:3:\"1.x\";}}}s:6:\"ctools\";a:1:{s:4:\"name\";s:6:\"ctools\";}s:6:\"entity\";a:1:{s:4:\"name\";s:6:\"entity\";}}s:4:\"sort\";i:-51;}s:8:\"geofield\";O:8:\"stdClass\":11:{s:3:\"uri\";s:42:\"sites/all/modules/geofield/geofield.module\";s:8:\"filename\";s:42:\"sites/all/modules/geofield/geofield.module\";s:4:\"name\";s:8:\"geofield\";s:4:\"info\";a:12:{s:4:\"name\";s:8:\"Geofield\";s:11:\"description\";s:66:\"Stores geographic and location data (points, lines, and polygons).\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:2:{i:0;s:14:\"geophp (>=1.7)\";i:1;s:6:\"ctools\";}s:7:\"package\";s:6:\"Fields\";s:5:\"files\";a:21:{i:0;s:15:\"geofield.module\";i:1;s:16:\"geofield.install\";i:2;s:21:\"geofield.elements.inc\";i:3;s:20:\"geofield.widgets.inc\";i:4;s:23:\"geofield.formatters.inc\";i:5;s:23:\"geofield.openlayers.inc\";i:6;s:18:\"geofield.feeds.inc\";i:7;s:19:\"tests/geofield.test\";i:8;s:24:\"views/geofield.views.inc\";i:9;s:40:\"views/handlers/geofield_handler_sort.inc\";i:10;s:41:\"views/handlers/geofield_handler_field.inc\";i:11;s:42:\"views/handlers/geofield_handler_filter.inc\";i:12;s:54:\"views/handlers/geofield_handler_argument_proximity.inc\";i:13;s:49:\"views/proximity_plugins/geofieldProximityBase.inc\";i:14;s:51:\"views/proximity_plugins/geofieldProximityManual.inc\";i:15;s:53:\"views/proximity_plugins/geofieldProximityGeocoder.inc\";i:16;s:54:\"views/proximity_plugins/geofieldProximityEntityURL.inc\";i:17;s:58:\"views/proximity_plugins/geofieldProximityOtherGeofield.inc\";i:18;s:56:\"views/proximity_plugins/geofieldProximityCurrentUser.inc\";i:19;s:58:\"views/proximity_plugins/geofieldProximityExposedFilter.inc\";i:20;s:61:\"views/proximity_plugins/geofieldProximityContextualFilter.inc\";}s:7:\"version\";s:7:\"7.x-2.3\";s:7:\"project\";s:8:\"geofield\";s:9:\"datestamp\";s:10:\"1411337638\";s:9:\"bootstrap\";i:0;s:8:\"required\";b:1;s:11:\"explanation\";s:96:\"Tipi di campo attualmente in uso - vedere <a href=\"/?q=it/admin/reports/fields\">Elenco campi</a>\";}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7202\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:6:{s:8:\"geocoder\";a:3:{s:4:\"name\";s:8:\"geofield\";s:16:\"original_version\";s:8:\" (>=1.x)\";s:8:\"versions\";a:1:{i:0;a:2:{s:2:\"op\";s:2:\">=\";s:7:\"version\";s:3:\"1.x\";}}}s:12:\"geofield_map\";a:1:{s:4:\"name\";s:8:\"geofield\";}s:24:\"geofield_openlayers_test\";a:1:{s:4:\"name\";s:8:\"geofield\";}s:13:\"geofield_test\";a:1:{s:4:\"name\";s:8:\"geofield\";}s:9:\"gmap_test\";a:1:{s:4:\"name\";s:8:\"geofield\";}s:18:\"gmap_test_extended\";a:1:{s:4:\"name\";s:8:\"geofield\";}}s:8:\"requires\";a:2:{s:6:\"geophp\";a:3:{s:4:\"name\";s:6:\"geophp\";s:16:\"original_version\";s:8:\" (>=1.7)\";s:8:\"versions\";a:1:{i:0;a:2:{s:2:\"op\";s:2:\">=\";s:7:\"version\";s:3:\"1.7\";}}}s:6:\"ctools\";a:1:{s:4:\"name\";s:6:\"ctools\";}}s:4:\"sort\";i:-50;}s:12:\"geofield_map\";O:8:\"stdClass\":11:{s:3:\"uri\";s:67:\"sites/all/modules/geofield/modules/geofield_map/geofield_map.module\";s:8:\"filename\";s:67:\"sites/all/modules/geofield/modules/geofield_map/geofield_map.module\";s:4:\"name\";s:12:\"geofield_map\";s:4:\"info\";a:10:{s:4:\"name\";s:12:\"Geofield Map\";s:11:\"description\";s:49:\"Provides a basic mapping interface for Geofields.\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:8:\"geofield\";}s:5:\"files\";a:2:{i:0;s:31:\"includes/geofield_map.views.inc\";i:1;s:42:\"includes/geofield_map_plugin_style_map.inc\";}s:7:\"version\";s:7:\"7.x-2.3\";s:7:\"project\";s:8:\"geofield\";s:9:\"datestamp\";s:10:\"1411337638\";s:7:\"package\";s:5:\"Other\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:3:{s:8:\"geofield\";a:1:{s:4:\"name\";s:8:\"geofield\";}s:6:\"geophp\";a:3:{s:4:\"name\";s:6:\"geophp\";s:16:\"original_version\";s:8:\" (>=1.7)\";s:8:\"versions\";a:1:{i:0;a:2:{s:2:\"op\";s:2:\">=\";s:7:\"version\";s:3:\"1.7\";}}}s:6:\"ctools\";a:1:{s:4:\"name\";s:6:\"ctools\";}}s:4:\"sort\";i:-52;}s:24:\"geofield_openlayers_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:64:\"sites/all/modules/geofield/tests/geofield_openlayers_test.module\";s:8:\"filename\";s:64:\"sites/all/modules/geofield/tests/geofield_openlayers_test.module\";s:4:\"name\";s:24:\"geofield_openlayers_test\";s:4:\"info\";a:11:{s:4:\"name\";s:37:\"Geofield/Openlayers Integration tests\";s:11:\"description\";s:45:\"Integration tests for Geofield and Openlayers\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"package\";s:7:\"Testing\";s:12:\"dependencies\";a:2:{i:0;s:8:\"geofield\";i:1;s:10:\"openlayers\";}s:5:\"files\";a:1:{i:0;s:24:\"geofield_openlayers.test\";}s:7:\"version\";s:7:\"7.x-2.3\";s:7:\"project\";s:8:\"geofield\";s:9:\"datestamp\";s:10:\"1411337638\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:4:{s:8:\"geofield\";a:1:{s:4:\"name\";s:8:\"geofield\";}s:6:\"geophp\";a:3:{s:4:\"name\";s:6:\"geophp\";s:16:\"original_version\";s:8:\" (>=1.7)\";s:8:\"versions\";a:1:{i:0;a:2:{s:2:\"op\";s:2:\">=\";s:7:\"version\";s:3:\"1.7\";}}}s:6:\"ctools\";a:1:{s:4:\"name\";s:6:\"ctools\";}s:10:\"openlayers\";a:1:{s:4:\"name\";s:10:\"openlayers\";}}s:4:\"sort\";i:-53;}s:13:\"geofield_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:53:\"sites/all/modules/geofield/tests/geofield_test.module\";s:8:\"filename\";s:53:\"sites/all/modules/geofield/tests/geofield_test.module\";s:4:\"name\";s:13:\"geofield_test\";s:4:\"info\";a:11:{s:4:\"name\";s:13:\"Geofield test\";s:11:\"description\";s:38:\"Support module for the Geofield tests.\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"package\";s:7:\"Testing\";s:12:\"dependencies\";a:2:{i:0;s:8:\"geocoder\";i:1;s:8:\"geofield\";}s:7:\"version\";s:7:\"7.x-2.3\";s:7:\"project\";s:8:\"geofield\";s:9:\"datestamp\";s:10:\"1411337638\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:5:{s:8:\"geocoder\";a:1:{s:4:\"name\";s:8:\"geocoder\";}s:6:\"geophp\";a:1:{s:4:\"name\";s:6:\"geophp\";}s:8:\"geofield\";a:1:{s:4:\"name\";s:8:\"geofield\";}s:6:\"ctools\";a:1:{s:4:\"name\";s:6:\"ctools\";}s:6:\"entity\";a:1:{s:4:\"name\";s:6:\"entity\";}}s:4:\"sort\";i:-54;}s:6:\"geophp\";O:8:\"stdClass\":11:{s:3:\"uri\";s:38:\"sites/all/modules/geophp/geophp.module\";s:8:\"filename\";s:38:\"sites/all/modules/geophp/geophp.module\";s:4:\"name\";s:6:\"geophp\";s:4:\"info\";a:10:{s:4:\"name\";s:6:\"geoPHP\";s:11:\"description\";s:61:\"Wraps the geoPHP library: advanced geometry operations in PHP\";s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:7:\"7.x-1.7\";s:7:\"project\";s:6:\"geophp\";s:9:\"datestamp\";s:10:\"1352084822\";s:12:\"dependencies\";a:0:{}s:7:\"package\";s:5:\"Other\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:7:{s:8:\"geofield\";a:3:{s:4:\"name\";s:6:\"geophp\";s:16:\"original_version\";s:8:\" (>=1.7)\";s:8:\"versions\";a:1:{i:0;a:2:{s:2:\"op\";s:2:\">=\";s:7:\"version\";s:3:\"1.7\";}}}s:8:\"geocoder\";a:1:{s:4:\"name\";s:6:\"geophp\";}s:12:\"geofield_map\";a:3:{s:4:\"name\";s:6:\"geophp\";s:16:\"original_version\";s:8:\" (>=1.7)\";s:8:\"versions\";a:1:{i:0;a:2:{s:2:\"op\";s:2:\">=\";s:7:\"version\";s:3:\"1.7\";}}}s:24:\"geofield_openlayers_test\";a:3:{s:4:\"name\";s:6:\"geophp\";s:16:\"original_version\";s:8:\" (>=1.7)\";s:8:\"versions\";a:1:{i:0;a:2:{s:2:\"op\";s:2:\">=\";s:7:\"version\";s:3:\"1.7\";}}}s:13:\"geofield_test\";a:1:{s:4:\"name\";s:6:\"geophp\";}s:9:\"gmap_test\";a:1:{s:4:\"name\";s:6:\"geophp\";}s:18:\"gmap_test_extended\";a:1:{s:4:\"name\";s:6:\"geophp\";}}s:8:\"requires\";a:0:{}s:4:\"sort\";i:-49;}s:4:\"gmap\";O:8:\"stdClass\":11:{s:3:\"uri\";s:34:\"sites/all/modules/gmap/gmap.module\";s:8:\"filename\";s:34:\"sites/all/modules/gmap/gmap.module\";s:4:\"name\";s:4:\"gmap\";s:4:\"info\";a:11:{s:4:\"name\";s:4:\"GMap\";s:11:\"description\";s:48:\"Views plugins to show Google Maps from entities.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:8:\"Location\";s:9:\"configure\";s:26:\"admin/config/services/gmap\";s:5:\"files\";a:9:{i:0;s:26:\"gmap_plugin_style_gmap.inc\";i:1;s:34:\"gmap_plugin_style_gmapextended.inc\";i:2;s:15:\"tests/gmap.test\";i:3;s:23:\"tests/oopmigration.test\";i:4;s:32:\"lib/Drupal/gmap/GmapDefaults.php\";i:5;s:39:\"lib/Drupal/gmap/GmapPolylineToolbox.php\";i:6;s:36:\"lib/Drupal/gmap/GmapMacroToolbox.php\";i:7;s:27:\"tests/inc/gmap_polyutil.inc\";i:8;s:27:\"tests/inc/gmap_defaults.inc\";}s:7:\"version\";s:8:\"7.x-2.11\";s:7:\"project\";s:4:\"gmap\";s:9:\"datestamp\";s:10:\"1457698170\";s:12:\"dependencies\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7202\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:8:{s:11:\"gmap_fields\";a:1:{s:4:\"name\";s:4:\"gmap\";}s:13:\"gmap_location\";a:1:{s:4:\"name\";s:4:\"gmap\";}s:18:\"gmap_macro_builder\";a:1:{s:4:\"name\";s:4:\"gmap\";}s:18:\"gmap_style_bubbles\";a:1:{s:4:\"name\";s:4:\"gmap\";}s:13:\"gmap_taxonomy\";a:1:{s:4:\"name\";s:4:\"gmap\";}s:9:\"gmap_test\";a:1:{s:4:\"name\";s:4:\"gmap\";}s:18:\"gmap_test_extended\";a:1:{s:4:\"name\";s:4:\"gmap\";}s:26:\"location_gmap_find_address\";a:1:{s:4:\"name\";s:4:\"gmap\";}}s:8:\"requires\";a:0:{}s:4:\"sort\";i:-55;}s:11:\"gmap_fields\";O:8:\"stdClass\":11:{s:3:\"uri\";s:53:\"sites/all/modules/gmap/gmap_fields/gmap_fields.module\";s:8:\"filename\";s:53:\"sites/all/modules/gmap/gmap_fields/gmap_fields.module\";s:4:\"name\";s:11:\"gmap_fields\";s:4:\"info\";a:10:{s:4:\"name\";s:11:\"GMap Fields\";s:11:\"description\";s:48:\"GMap field types, currently only a marker field.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:8:\"Location\";s:12:\"dependencies\";a:3:{i:0;s:5:\"field\";i:1;s:4:\"gmap\";i:2;s:7:\"options\";}s:7:\"version\";s:8:\"7.x-2.11\";s:7:\"project\";s:4:\"gmap\";s:9:\"datestamp\";s:10:\"1457698170\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:4:{s:5:\"field\";a:1:{s:4:\"name\";s:5:\"field\";}s:17:\"field_sql_storage\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}s:4:\"gmap\";a:1:{s:4:\"name\";s:4:\"gmap\";}s:7:\"options\";a:1:{s:4:\"name\";s:7:\"options\";}}s:4:\"sort\";i:-56;}s:13:\"gmap_location\";O:8:\"stdClass\":11:{s:3:\"uri\";s:43:\"sites/all/modules/gmap/gmap_location.module\";s:8:\"filename\";s:43:\"sites/all/modules/gmap/gmap_location.module\";s:4:\"name\";s:13:\"gmap_location\";s:4:\"info\";a:11:{s:4:\"name\";s:13:\"GMap Location\";s:11:\"description\";s:50:\"Display location.module information on Google Maps\";s:7:\"package\";s:8:\"Location\";s:4:\"core\";s:3:\"7.x\";s:9:\"configure\";s:35:\"admin/config/services/gmap_location\";s:5:\"files\";a:1:{i:0;s:20:\"gmap_location.module\";}s:12:\"dependencies\";a:2:{i:0;s:4:\"gmap\";i:1;s:8:\"location\";}s:7:\"version\";s:8:\"7.x-2.11\";s:7:\"project\";s:4:\"gmap\";s:9:\"datestamp\";s:10:\"1457698170\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"5102\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:2:{s:4:\"gmap\";a:1:{s:4:\"name\";s:4:\"gmap\";}s:8:\"location\";a:1:{s:4:\"name\";s:8:\"location\";}}s:4:\"sort\";i:-58;}s:18:\"gmap_macro_builder\";O:8:\"stdClass\":11:{s:3:\"uri\";s:48:\"sites/all/modules/gmap/gmap_macro_builder.module\";s:8:\"filename\";s:48:\"sites/all/modules/gmap/gmap_macro_builder.module\";s:4:\"name\";s:18:\"gmap_macro_builder\";s:4:\"info\";a:10:{s:4:\"name\";s:18:\"GMap Macro Builder\";s:11:\"description\";s:28:\"UI for building GMap macros.\";s:7:\"package\";s:8:\"Location\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:4:\"gmap\";}s:5:\"files\";a:1:{i:0;s:25:\"gmap_macro_builder.module\";}s:7:\"version\";s:8:\"7.x-2.11\";s:7:\"project\";s:4:\"gmap\";s:9:\"datestamp\";s:10:\"1457698170\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:4:\"6100\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:1:{s:4:\"gmap\";a:1:{s:4:\"name\";s:4:\"gmap\";}}s:4:\"sort\";i:-59;}s:18:\"gmap_style_bubbles\";O:8:\"stdClass\":11:{s:3:\"uri\";s:67:\"sites/all/modules/gmap/gmap_style_bubbles/gmap_style_bubbles.module\";s:8:\"filename\";s:67:\"sites/all/modules/gmap/gmap_style_bubbles/gmap_style_bubbles.module\";s:4:\"name\";s:18:\"gmap_style_bubbles\";s:4:\"info\";a:10:{s:4:\"name\";s:18:\"Gmap Style Bubbles\";s:11:\"description\";s:66:\"A module that lets you add more styles to your gmap popup bubbles.\";s:7:\"package\";s:8:\"Location\";s:4:\"core\";s:3:\"7.x\";s:7:\"project\";s:4:\"gmap\";s:12:\"dependencies\";a:2:{i:0;s:4:\"gmap\";i:1;s:15:\"libraries (2.x)\";}s:7:\"version\";s:8:\"7.x-2.11\";s:9:\"datestamp\";s:10:\"1457698170\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:3:{s:4:\"gmap\";a:1:{s:4:\"name\";s:4:\"gmap\";}s:9:\"libraries\";a:3:{s:4:\"name\";s:9:\"libraries\";s:16:\"original_version\";s:6:\" (2.x)\";s:8:\"versions\";a:2:{i:0;a:2:{s:2:\"op\";s:1:\"<\";s:7:\"version\";s:3:\"3.x\";}i:1;a:2:{s:2:\"op\";s:2:\">=\";s:7:\"version\";s:3:\"2.x\";}}}s:6:\"system\";a:3:{s:4:\"name\";s:6:\"system\";s:16:\"original_version\";s:9:\" (>=7.11)\";s:8:\"versions\";a:1:{i:0;a:2:{s:2:\"op\";s:2:\">=\";s:7:\"version\";s:4:\"7.11\";}}}}s:4:\"sort\";i:-60;}s:13:\"gmap_taxonomy\";O:8:\"stdClass\":11:{s:3:\"uri\";s:43:\"sites/all/modules/gmap/gmap_taxonomy.module\";s:8:\"filename\";s:43:\"sites/all/modules/gmap/gmap_taxonomy.module\";s:4:\"name\";s:13:\"gmap_taxonomy\";s:4:\"info\";a:10:{s:4:\"name\";s:21:\"GMap Taxonomy Markers\";s:11:\"description\";s:22:\"Taxonomy based markers\";s:7:\"package\";s:8:\"Location\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:2:{i:0;s:8:\"taxonomy\";i:1;s:4:\"gmap\";}s:5:\"files\";a:2:{i:0;s:20:\"gmap_taxonomy.module\";i:1;s:23:\"gmap_taxonomy.views.inc\";}s:7:\"version\";s:8:\"7.x-2.11\";s:7:\"project\";s:4:\"gmap\";s:9:\"datestamp\";s:10:\"1457698170\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7202\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:5:{s:8:\"taxonomy\";a:1:{s:4:\"name\";s:8:\"taxonomy\";}s:7:\"options\";a:1:{s:4:\"name\";s:7:\"options\";}s:5:\"field\";a:1:{s:4:\"name\";s:5:\"field\";}s:17:\"field_sql_storage\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}s:4:\"gmap\";a:1:{s:4:\"name\";s:4:\"gmap\";}}s:4:\"sort\";i:-61;}s:9:\"gmap_test\";r:85;s:18:\"gmap_test_extended\";r:177;s:4:\"help\";O:8:\"stdClass\":11:{s:3:\"uri\";s:24:\"modules/help/help.module\";s:8:\"filename\";s:24:\"modules/help/help.module\";s:4:\"name\";s:4:\"help\";s:4:\"info\";a:10:{s:4:\"name\";s:4:\"Help\";s:11:\"description\";s:35:\"Manages the display of online help.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:12:\"dependencies\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:1:{s:8:\"standard\";a:1:{s:4:\"name\";s:4:\"help\";}}s:8:\"requires\";a:0:{}s:4:\"sort\";i:-66;}s:4:\"i18n\";O:8:\"stdClass\":11:{s:3:\"uri\";s:34:\"sites/all/modules/i18n/i18n.module\";s:8:\"filename\";s:34:\"sites/all/modules/i18n/i18n.module\";s:4:\"name\";s:4:\"i18n\";s:4:\"info\";a:11:{s:4:\"name\";s:20:\"Internationalization\";s:11:\"description\";s:49:\"Extends Drupal support for multilingual features.\";s:12:\"dependencies\";a:2:{i:0;s:6:\"locale\";i:1;s:8:\"variable\";}s:7:\"package\";s:35:\"Multilingual - Internationalization\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:2:{i:0;s:15:\"i18n_object.inc\";i:1;s:9:\"i18n.test\";}s:9:\"configure\";s:26:\"admin/config/regional/i18n\";s:7:\"version\";s:8:\"7.x-1.26\";s:7:\"project\";s:4:\"i18n\";s:9:\"datestamp\";s:10:\"1534531985\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7001\";s:6:\"weight\";s:2:\"10\";s:11:\"required_by\";a:18:{s:11:\"i18n_string\";a:1:{s:4:\"name\";s:4:\"i18n\";}s:16:\"entity_test_i18n\";a:1:{s:4:\"name\";s:4:\"i18n\";}s:16:\"i18n_translation\";a:1:{s:4:\"name\";s:4:\"i18n\";}s:9:\"i18n_menu\";a:1:{s:4:\"name\";s:4:\"i18n\";}s:28:\"entity_translation_i18n_menu\";a:1:{s:4:\"name\";s:4:\"i18n\";}s:10:\"i18n_block\";a:1:{s:4:\"name\";s:4:\"i18n\";}s:12:\"i18n_contact\";a:1:{s:4:\"name\";s:4:\"i18n\";}s:10:\"i18n_field\";a:1:{s:4:\"name\";s:4:\"i18n\";}s:13:\"i18n_taxonomy\";a:1:{s:4:\"name\";s:4:\"i18n\";}s:9:\"i18n_node\";a:1:{s:4:\"name\";s:4:\"i18n\";}s:10:\"i18n_forum\";a:1:{s:4:\"name\";s:4:\"i18n\";}s:9:\"i18n_path\";a:1:{s:4:\"name\";s:4:\"i18n\";}s:13:\"i18n_redirect\";a:1:{s:4:\"name\";s:4:\"i18n\";}s:11:\"i18n_select\";a:1:{s:4:\"name\";s:4:\"i18n\";}s:9:\"i18n_sync\";a:1:{s:4:\"name\";s:4:\"i18n\";}s:9:\"i18n_test\";a:1:{s:4:\"name\";s:4:\"i18n\";}s:13:\"i18n_variable\";a:1:{s:4:\"name\";s:4:\"i18n\";}s:9:\"i18n_user\";a:1:{s:4:\"name\";s:4:\"i18n\";}}s:8:\"requires\";a:2:{s:6:\"locale\";a:1:{s:4:\"name\";s:6:\"locale\";}s:8:\"variable\";a:1:{s:4:\"name\";s:8:\"variable\";}}s:4:\"sort\";i:-29;}s:10:\"i18n_block\";O:8:\"stdClass\":11:{s:3:\"uri\";s:51:\"sites/all/modules/i18n/i18n_block/i18n_block.module\";s:8:\"filename\";s:51:\"sites/all/modules/i18n/i18n_block/i18n_block.module\";s:4:\"name\";s:10:\"i18n_block\";s:4:\"info\";a:10:{s:4:\"name\";s:15:\"Block languages\";s:11:\"description\";s:68:\"Enables language selector for blocks and optional block translation.\";s:12:\"dependencies\";a:2:{i:0;s:5:\"block\";i:1;s:11:\"i18n_string\";}s:7:\"package\";s:35:\"Multilingual - Internationalization\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:2:{i:0;s:14:\"i18n_block.inc\";i:1;s:15:\"i18n_block.test\";}s:7:\"version\";s:8:\"7.x-1.26\";s:7:\"project\";s:4:\"i18n\";s:9:\"datestamp\";s:10:\"1534531985\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7001\";s:6:\"weight\";s:3:\"100\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:5:{s:5:\"block\";a:1:{s:4:\"name\";s:5:\"block\";}s:11:\"i18n_string\";a:1:{s:4:\"name\";s:11:\"i18n_string\";}s:6:\"locale\";a:1:{s:4:\"name\";s:6:\"locale\";}s:4:\"i18n\";a:1:{s:4:\"name\";s:4:\"i18n\";}s:8:\"variable\";a:1:{s:4:\"name\";s:8:\"variable\";}}s:4:\"sort\";i:-67;}s:12:\"i18n_contact\";O:8:\"stdClass\":11:{s:3:\"uri\";s:55:\"sites/all/modules/i18n/i18n_contact/i18n_contact.module\";s:8:\"filename\";s:55:\"sites/all/modules/i18n/i18n_contact/i18n_contact.module\";s:4:\"name\";s:12:\"i18n_contact\";s:4:\"info\";a:10:{s:4:\"name\";s:19:\"Contact translation\";s:11:\"description\";s:63:\"Makes contact categories and replies available for translation.\";s:12:\"dependencies\";a:2:{i:0;s:7:\"contact\";i:1;s:11:\"i18n_string\";}s:7:\"package\";s:35:\"Multilingual - Internationalization\";s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:8:\"7.x-1.26\";s:7:\"project\";s:4:\"i18n\";s:9:\"datestamp\";s:10:\"1534531985\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:5:{s:7:\"contact\";a:1:{s:4:\"name\";s:7:\"contact\";}s:11:\"i18n_string\";a:1:{s:4:\"name\";s:11:\"i18n_string\";}s:6:\"locale\";a:1:{s:4:\"name\";s:6:\"locale\";}s:4:\"i18n\";a:1:{s:4:\"name\";s:4:\"i18n\";}s:8:\"variable\";a:1:{s:4:\"name\";s:8:\"variable\";}}s:4:\"sort\";i:-68;}s:10:\"i18n_field\";O:8:\"stdClass\":11:{s:3:\"uri\";s:51:\"sites/all/modules/i18n/i18n_field/i18n_field.module\";s:8:\"filename\";s:51:\"sites/all/modules/i18n/i18n_field/i18n_field.module\";s:4:\"name\";s:10:\"i18n_field\";s:4:\"info\";a:10:{s:4:\"name\";s:17:\"Field translation\";s:11:\"description\";s:26:\"Translate field properties\";s:12:\"dependencies\";a:2:{i:0;s:5:\"field\";i:1;s:11:\"i18n_string\";}s:7:\"package\";s:35:\"Multilingual - Internationalization\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:2:{i:0;s:14:\"i18n_field.inc\";i:1;s:15:\"i18n_field.test\";}s:7:\"version\";s:8:\"7.x-1.26\";s:7:\"project\";s:4:\"i18n\";s:9:\"datestamp\";s:10:\"1534531985\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7000\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:6:{s:5:\"field\";a:1:{s:4:\"name\";s:5:\"field\";}s:17:\"field_sql_storage\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}s:11:\"i18n_string\";a:1:{s:4:\"name\";s:11:\"i18n_string\";}s:6:\"locale\";a:1:{s:4:\"name\";s:6:\"locale\";}s:4:\"i18n\";a:1:{s:4:\"name\";s:4:\"i18n\";}s:8:\"variable\";a:1:{s:4:\"name\";s:8:\"variable\";}}s:4:\"sort\";i:-69;}s:10:\"i18n_forum\";O:8:\"stdClass\":11:{s:3:\"uri\";s:51:\"sites/all/modules/i18n/i18n_forum/i18n_forum.module\";s:8:\"filename\";s:51:\"sites/all/modules/i18n/i18n_forum/i18n_forum.module\";s:4:\"name\";s:10:\"i18n_forum\";s:4:\"info\";a:10:{s:4:\"name\";s:18:\"Multilingual forum\";s:11:\"description\";s:60:\"Enables multilingual forum, translates names and containers.\";s:12:\"dependencies\";a:3:{i:0;s:5:\"forum\";i:1;s:13:\"i18n_taxonomy\";i:2;s:9:\"i18n_node\";}s:7:\"package\";s:35:\"Multilingual - Internationalization\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:15:\"i18n_forum.test\";}s:7:\"version\";s:8:\"7.x-1.26\";s:7:\"project\";s:4:\"i18n\";s:9:\"datestamp\";s:10:\"1534531985\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:15:{s:5:\"forum\";a:1:{s:4:\"name\";s:5:\"forum\";}s:8:\"taxonomy\";a:1:{s:4:\"name\";s:8:\"taxonomy\";}s:7:\"options\";a:1:{s:4:\"name\";s:7:\"options\";}s:5:\"field\";a:1:{s:4:\"name\";s:5:\"field\";}s:17:\"field_sql_storage\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}s:7:\"comment\";a:1:{s:4:\"name\";s:7:\"comment\";}s:4:\"text\";a:1:{s:4:\"name\";s:4:\"text\";}s:13:\"i18n_taxonomy\";a:1:{s:4:\"name\";s:13:\"i18n_taxonomy\";}s:11:\"i18n_string\";a:1:{s:4:\"name\";s:11:\"i18n_string\";}s:6:\"locale\";a:1:{s:4:\"name\";s:6:\"locale\";}s:4:\"i18n\";a:1:{s:4:\"name\";s:4:\"i18n\";}s:8:\"variable\";a:1:{s:4:\"name\";s:8:\"variable\";}s:16:\"i18n_translation\";a:1:{s:4:\"name\";s:16:\"i18n_translation\";}s:9:\"i18n_node\";a:1:{s:4:\"name\";s:9:\"i18n_node\";}s:11:\"translation\";a:1:{s:4:\"name\";s:11:\"translation\";}}s:4:\"sort\";i:-73;}s:9:\"i18n_menu\";O:8:\"stdClass\":11:{s:3:\"uri\";s:49:\"sites/all/modules/i18n/i18n_menu/i18n_menu.module\";s:8:\"filename\";s:49:\"sites/all/modules/i18n/i18n_menu/i18n_menu.module\";s:4:\"name\";s:9:\"i18n_menu\";s:4:\"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:7:\"version\";s:8:\"7.x-1.26\";s:7:\"project\";s:4:\"i18n\";s:9:\"datestamp\";s:10:\"1534531985\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7001\";s:6:\"weight\";s:1:\"5\";s:11:\"required_by\";a:1:{s:28:\"entity_translation_i18n_menu\";a:1:{s:4:\"name\";s:9:\"i18n_menu\";}}s:8:\"requires\";a:6:{s:4:\"i18n\";a:1:{s:4:\"name\";s:4:\"i18n\";}s:6:\"locale\";a:1:{s:4:\"name\";s:6:\"locale\";}s:8:\"variable\";a:1:{s:4:\"name\";s:8:\"variable\";}s:4:\"menu\";a:1:{s:4:\"name\";s:4:\"menu\";}s:11:\"i18n_string\";a:1:{s:4:\"name\";s:11:\"i18n_string\";}s:16:\"i18n_translation\";a:1:{s:4:\"name\";s:16:\"i18n_translation\";}}s:4:\"sort\";i:-36;}s:9:\"i18n_node\";O:8:\"stdClass\":11:{s:3:\"uri\";s:49:\"sites/all/modules/i18n/i18n_node/i18n_node.module\";s:8:\"filename\";s:49:\"sites/all/modules/i18n/i18n_node/i18n_node.module\";s:4:\"name\";s:9:\"i18n_node\";s:4:\"info\";a:11:{s:4:\"name\";s:20:\"Multilingual content\";s:11:\"description\";s:46:\"Extended node options for multilingual content\";s:12:\"dependencies\";a:3:{i:0;s:11:\"translation\";i:1;s:4:\"i18n\";i:2;s:11:\"i18n_string\";}s:7:\"package\";s:35:\"Multilingual - Internationalization\";s:4:\"core\";s:3:\"7.x\";s:9:\"configure\";s:31:\"admin/config/regional/i18n/node\";s:5:\"files\";a:2:{i:0;s:14:\"i18n_node.test\";i:1;s:22:\"i18n_node.variable.inc\";}s:7:\"version\";s:8:\"7.x-1.26\";s:7:\"project\";s:4:\"i18n\";s:9:\"datestamp\";s:10:\"1534531985\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7000\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:1:{s:10:\"i18n_forum\";a:1:{s:4:\"name\";s:9:\"i18n_node\";}}s:8:\"requires\";a:5:{s:11:\"translation\";a:1:{s:4:\"name\";s:11:\"translation\";}s:6:\"locale\";a:1:{s:4:\"name\";s:6:\"locale\";}s:4:\"i18n\";a:1:{s:4:\"name\";s:4:\"i18n\";}s:8:\"variable\";a:1:{s:4:\"name\";s:8:\"variable\";}s:11:\"i18n_string\";a:1:{s:4:\"name\";s:11:\"i18n_string\";}}s:4:\"sort\";i:-72;}s:9:\"i18n_path\";O:8:\"stdClass\":11:{s:3:\"uri\";s:49:\"sites/all/modules/i18n/i18n_path/i18n_path.module\";s:8:\"filename\";s:49:\"sites/all/modules/i18n/i18n_path/i18n_path.module\";s:4:\"name\";s:9:\"i18n_path\";s:4:\"info\";a:10:{s:4:\"name\";s:16:\"Path translation\";s:11:\"description\";s:37:\"Define translations for generic paths\";s:12:\"dependencies\";a:1:{i:0;s:16:\"i18n_translation\";}s:7:\"package\";s:35:\"Multilingual - Internationalization\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:2:{i:0;s:13:\"i18n_path.inc\";i:1;s:14:\"i18n_path.test\";}s:7:\"version\";s:8:\"7.x-1.26\";s:7:\"project\";s:4:\"i18n\";s:9:\"datestamp\";s:10:\"1534531985\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7000\";s:6:\"weight\";s:1:\"5\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:4:{s:16:\"i18n_translation\";a:1:{s:4:\"name\";s:16:\"i18n_translation\";}s:4:\"i18n\";a:1:{s:4:\"name\";s:4:\"i18n\";}s:6:\"locale\";a:1:{s:4:\"name\";s:6:\"locale\";}s:8:\"variable\";a:1:{s:4:\"name\";s:8:\"variable\";}}s:4:\"sort\";i:-74;}s:13:\"i18n_redirect\";O:8:\"stdClass\":11:{s:3:\"uri\";s:57:\"sites/all/modules/i18n/i18n_redirect/i18n_redirect.module\";s:8:\"filename\";s:57:\"sites/all/modules/i18n/i18n_redirect/i18n_redirect.module\";s:4:\"name\";s:13:\"i18n_redirect\";s:4:\"info\";a:10:{s:4:\"name\";s:20:\"Translation redirect\";s:11:\"description\";s:71:\"Redirect to translated page when available. SEO for multilingual sites.\";s:12:\"dependencies\";a:1:{i:0;s:4:\"i18n\";}s:7:\"package\";s:35:\"Multilingual - Internationalization\";s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:8:\"7.x-1.26\";s:7:\"project\";s:4:\"i18n\";s:9:\"datestamp\";s:10:\"1534531985\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:3:{s:4:\"i18n\";a:1:{s:4:\"name\";s:4:\"i18n\";}s:6:\"locale\";a:1:{s:4:\"name\";s:6:\"locale\";}s:8:\"variable\";a:1:{s:4:\"name\";s:8:\"variable\";}}s:4:\"sort\";i:-75;}s:11:\"i18n_select\";O:8:\"stdClass\":11:{s:3:\"uri\";s:53:\"sites/all/modules/i18n/i18n_select/i18n_select.module\";s:8:\"filename\";s:53:\"sites/all/modules/i18n/i18n_select/i18n_select.module\";s:4:\"name\";s:11:\"i18n_select\";s:4:\"info\";a:11:{s:4:\"name\";s:19:\"Multilingual select\";s:11:\"description\";s:45:\"API module for multilingual content selection\";s:12:\"dependencies\";a:1:{i:0;s:4:\"i18n\";}s:7:\"package\";s:35:\"Multilingual - Internationalization\";s:4:\"core\";s:3:\"7.x\";s:9:\"configure\";s:33:\"admin/config/regional/i18n/select\";s:5:\"files\";a:1:{i:0;s:16:\"i18n_select.test\";}s:7:\"version\";s:8:\"7.x-1.26\";s:7:\"project\";s:4:\"i18n\";s:9:\"datestamp\";s:10:\"1534531985\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:3:{s:4:\"i18n\";a:1:{s:4:\"name\";s:4:\"i18n\";}s:6:\"locale\";a:1:{s:4:\"name\";s:6:\"locale\";}s:8:\"variable\";a:1:{s:4:\"name\";s:8:\"variable\";}}s:4:\"sort\";i:-76;}s:11:\"i18n_string\";O:8:\"stdClass\":11:{s:3:\"uri\";s:53:\"sites/all/modules/i18n/i18n_string/i18n_string.module\";s:8:\"filename\";s:53:\"sites/all/modules/i18n/i18n_string/i18n_string.module\";s:4:\"name\";s:11:\"i18n_string\";s:4:\"info\";a:11:{s:4:\"name\";s:18:\"String translation\";s:11:\"description\";s:57:\"Provides support for translation of user defined strings.\";s:12:\"dependencies\";a:2:{i:0;s:6:\"locale\";i:1;s:4:\"i18n\";}s:7:\"package\";s:35:\"Multilingual - Internationalization\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:3:{i:0;s:21:\"i18n_string.admin.inc\";i:1;s:15:\"i18n_string.inc\";i:2;s:16:\"i18n_string.test\";}s:9:\"configure\";s:34:\"admin/config/regional/i18n/strings\";s:7:\"version\";s:8:\"7.x-1.26\";s:7:\"project\";s:4:\"i18n\";s:9:\"datestamp\";s:10:\"1534531985\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7004\";s:6:\"weight\";s:2:\"10\";s:11:\"required_by\";a:9:{s:16:\"entity_test_i18n\";a:1:{s:4:\"name\";s:11:\"i18n_string\";}s:9:\"i18n_menu\";a:1:{s:4:\"name\";s:11:\"i18n_string\";}s:28:\"entity_translation_i18n_menu\";a:1:{s:4:\"name\";s:11:\"i18n_string\";}s:10:\"i18n_block\";a:1:{s:4:\"name\";s:11:\"i18n_string\";}s:12:\"i18n_contact\";a:1:{s:4:\"name\";s:11:\"i18n_string\";}s:10:\"i18n_field\";a:1:{s:4:\"name\";s:11:\"i18n_string\";}s:13:\"i18n_taxonomy\";a:1:{s:4:\"name\";s:11:\"i18n_string\";}s:9:\"i18n_node\";a:1:{s:4:\"name\";s:11:\"i18n_string\";}s:10:\"i18n_forum\";a:1:{s:4:\"name\";s:11:\"i18n_string\";}}s:8:\"requires\";a:3:{s:6:\"locale\";a:1:{s:4:\"name\";s:6:\"locale\";}s:4:\"i18n\";a:1:{s:4:\"name\";s:4:\"i18n\";}s:8:\"variable\";a:1:{s:4:\"name\";s:8:\"variable\";}}s:4:\"sort\";i:-30;}s:9:\"i18n_sync\";O:8:\"stdClass\":11:{s:3:\"uri\";s:49:\"sites/all/modules/i18n/i18n_sync/i18n_sync.module\";s:8:\"filename\";s:49:\"sites/all/modules/i18n/i18n_sync/i18n_sync.module\";s:4:\"name\";s:9:\"i18n_sync\";s:4:\"info\";a:10:{s:4:\"name\";s:24:\"Synchronize translations\";s:11:\"description\";s:73:\"Synchronizes taxonomy and fields across translations of the same content.\";s:12:\"dependencies\";a:2:{i:0;s:4:\"i18n\";i:1;s:11:\"translation\";}s:7:\"package\";s:35:\"Multilingual - Internationalization\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:5:{i:0;s:16:\"i18n_sync.module\";i:1;s:17:\"i18n_sync.install\";i:2;s:20:\"i18n_sync.module.inc\";i:3;s:18:\"i18n_sync.node.inc\";i:4;s:14:\"i18n_sync.test\";}s:7:\"version\";s:8:\"7.x-1.26\";s:7:\"project\";s:4:\"i18n\";s:9:\"datestamp\";s:10:\"1534531985\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7000\";s:6:\"weight\";s:3:\"100\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:4:{s:4:\"i18n\";a:1:{s:4:\"name\";s:4:\"i18n\";}s:6:\"locale\";a:1:{s:4:\"name\";s:6:\"locale\";}s:8:\"variable\";a:1:{s:4:\"name\";s:8:\"variable\";}s:11:\"translation\";a:1:{s:4:\"name\";s:11:\"translation\";}}s:4:\"sort\";i:-77;}s:13:\"i18n_taxonomy\";O:8:\"stdClass\":11:{s:3:\"uri\";s:57:\"sites/all/modules/i18n/i18n_taxonomy/i18n_taxonomy.module\";s:8:\"filename\";s:57:\"sites/all/modules/i18n/i18n_taxonomy/i18n_taxonomy.module\";s:4:\"name\";s:13:\"i18n_taxonomy\";s:4:\"info\";a:10:{s:4:\"name\";s:20:\"Taxonomy translation\";s:11:\"description\";s:30:\"Enables multilingual taxonomy.\";s:12:\"dependencies\";a:3:{i:0;s:8:\"taxonomy\";i:1;s:11:\"i18n_string\";i:2;s:16:\"i18n_translation\";}s:7:\"package\";s:35:\"Multilingual - Internationalization\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:4:{i:0;s:17:\"i18n_taxonomy.inc\";i:1;s:23:\"i18n_taxonomy.pages.inc\";i:2;s:23:\"i18n_taxonomy.admin.inc\";i:3;s:18:\"i18n_taxonomy.test\";}s:7:\"version\";s:8:\"7.x-1.26\";s:7:\"project\";s:4:\"i18n\";s:9:\"datestamp\";s:10:\"1534531985\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7004\";s:6:\"weight\";s:1:\"5\";s:11:\"required_by\";a:1:{s:10:\"i18n_forum\";a:1:{s:4:\"name\";s:13:\"i18n_taxonomy\";}}s:8:\"requires\";a:9:{s:8:\"taxonomy\";a:1:{s:4:\"name\";s:8:\"taxonomy\";}s:7:\"options\";a:1:{s:4:\"name\";s:7:\"options\";}s:5:\"field\";a:1:{s:4:\"name\";s:5:\"field\";}s:17:\"field_sql_storage\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}s:11:\"i18n_string\";a:1:{s:4:\"name\";s:11:\"i18n_string\";}s:6:\"locale\";a:1:{s:4:\"name\";s:6:\"locale\";}s:4:\"i18n\";a:1:{s:4:\"name\";s:4:\"i18n\";}s:8:\"variable\";a:1:{s:4:\"name\";s:8:\"variable\";}s:16:\"i18n_translation\";a:1:{s:4:\"name\";s:16:\"i18n_translation\";}}s:4:\"sort\";i:-70;}s:9:\"i18n_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:45:\"sites/all/modules/i18n/tests/i18n_test.module\";s:8:\"filename\";s:45:\"sites/all/modules/i18n/tests/i18n_test.module\";s:4:\"name\";s:9:\"i18n_test\";s:4:\"info\";a:11:{s:4:\"name\";s:26:\"Internationalization tests\";s:11:\"description\";s:55:\"Helper module for testing i18n (do not enable manually)\";s:12:\"dependencies\";a:3:{i:0;s:6:\"locale\";i:1;s:11:\"translation\";i:2;s:4:\"i18n\";}s:7:\"package\";s:7:\"Testing\";s:4:\"core\";s:3:\"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:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:4:{s:6:\"locale\";a:1:{s:4:\"name\";s:6:\"locale\";}s:11:\"translation\";a:1:{s:4:\"name\";s:11:\"translation\";}s:4:\"i18n\";a:1:{s:4:\"name\";s:4:\"i18n\";}s:8:\"variable\";a:1:{s:4:\"name\";s:8:\"variable\";}}s:4:\"sort\";i:-78;}s:16:\"i18n_translation\";O:8:\"stdClass\":11:{s:3:\"uri\";s:63:\"sites/all/modules/i18n/i18n_translation/i18n_translation.module\";s:8:\"filename\";s:63:\"sites/all/modules/i18n/i18n_translation/i18n_translation.module\";s:4:\"name\";s:16:\"i18n_translation\";s:4:\"info\";a:10:{s:4:\"name\";s:16:\"Translation sets\";s:11:\"description\";s:47:\"Simple translation sets API for generic objects\";s:12:\"dependencies\";a:1:{i:0;s:4:\"i18n\";}s:7:\"package\";s:35:\"Multilingual - Internationalization\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:20:\"i18n_translation.inc\";}s:7:\"version\";s:8:\"7.x-1.26\";s:7:\"project\";s:4:\"i18n\";s:9:\"datestamp\";s:10:\"1534531985\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:5:{s:9:\"i18n_menu\";a:1:{s:4:\"name\";s:16:\"i18n_translation\";}s:28:\"entity_translation_i18n_menu\";a:1:{s:4:\"name\";s:16:\"i18n_translation\";}s:13:\"i18n_taxonomy\";a:1:{s:4:\"name\";s:16:\"i18n_translation\";}s:10:\"i18n_forum\";a:1:{s:4:\"name\";s:16:\"i18n_translation\";}s:9:\"i18n_path\";a:1:{s:4:\"name\";s:16:\"i18n_translation\";}}s:8:\"requires\";a:3:{s:4:\"i18n\";a:1:{s:4:\"name\";s:4:\"i18n\";}s:6:\"locale\";a:1:{s:4:\"name\";s:6:\"locale\";}s:8:\"variable\";a:1:{s:4:\"name\";s:8:\"variable\";}}s:4:\"sort\";i:-35;}s:9:\"i18n_user\";O:8:\"stdClass\":11:{s:3:\"uri\";s:49:\"sites/all/modules/i18n/i18n_user/i18n_user.module\";s:8:\"filename\";s:49:\"sites/all/modules/i18n/i18n_user/i18n_user.module\";s:4:\"name\";s:9:\"i18n_user\";s:4:\"info\";a:10:{s:4:\"name\";s:21:\"User mail translation\";s:11:\"description\";s:43:\"Translate emails sent from the User module.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:35:\"Multilingual - Internationalization\";s:12:\"dependencies\";a:1:{i:0;s:13:\"i18n_variable\";}s:7:\"version\";s:8:\"7.x-1.26\";s:7:\"project\";s:4:\"i18n\";s:9:\"datestamp\";s:10:\"1534531985\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:6:\"-10000\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:6:{s:13:\"i18n_variable\";a:1:{s:4:\"name\";s:13:\"i18n_variable\";}s:4:\"i18n\";a:1:{s:4:\"name\";s:4:\"i18n\";}s:6:\"locale\";a:1:{s:4:\"name\";s:6:\"locale\";}s:8:\"variable\";a:1:{s:4:\"name\";s:8:\"variable\";}s:14:\"variable_store\";a:3:{s:4:\"name\";s:14:\"variable_store\";s:16:\"original_version\";s:10:\" (7.x-2.x)\";s:8:\"versions\";a:2:{i:0;a:2:{s:2:\"op\";s:1:\"<\";s:7:\"version\";s:3:\"3.x\";}i:1;a:2:{s:2:\"op\";s:2:\">=\";s:7:\"version\";s:3:\"2.x\";}}}s:14:\"variable_realm\";a:3:{s:4:\"name\";s:14:\"variable_realm\";s:16:\"original_version\";s:10:\" (7.x-2.x)\";s:8:\"versions\";a:2:{i:0;a:2:{s:2:\"op\";s:1:\"<\";s:7:\"version\";s:3:\"3.x\";}i:1;a:2:{s:2:\"op\";s:2:\">=\";s:7:\"version\";s:3:\"2.x\";}}}}s:4:\"sort\";i:-82;}s:13:\"i18n_variable\";O:8:\"stdClass\":11:{s:3:\"uri\";s:57:\"sites/all/modules/i18n/i18n_variable/i18n_variable.module\";s:8:\"filename\";s:57:\"sites/all/modules/i18n/i18n_variable/i18n_variable.module\";s:4:\"name\";s:13:\"i18n_variable\";s:4:\"info\";a:11:{s:4:\"name\";s:20:\"Variable translation\";s:11:\"description\";s:71:\"Multilingual variables that switch language depending on page language.\";s:12:\"dependencies\";a:3:{i:0;s:4:\"i18n\";i:1;s:24:\"variable_store (7.x-2.x)\";i:2;s:24:\"variable_realm (7.x-2.x)\";}s:7:\"package\";s:35:\"Multilingual - Internationalization\";s:4:\"core\";s:3:\"7.x\";s:9:\"configure\";s:35:\"admin/config/regional/i18n/variable\";s:5:\"files\";a:2:{i:0;s:23:\"i18n_variable.class.inc\";i:1;s:18:\"i18n_variable.test\";}s:7:\"version\";s:8:\"7.x-1.26\";s:7:\"project\";s:4:\"i18n\";s:9:\"datestamp\";s:10:\"1534531985\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7004\";s:6:\"weight\";s:4:\"-900\";s:11:\"required_by\";a:1:{s:9:\"i18n_user\";a:1:{s:4:\"name\";s:13:\"i18n_variable\";}}s:8:\"requires\";a:5:{s:4:\"i18n\";a:1:{s:4:\"name\";s:4:\"i18n\";}s:6:\"locale\";a:1:{s:4:\"name\";s:6:\"locale\";}s:8:\"variable\";a:1:{s:4:\"name\";s:8:\"variable\";}s:14:\"variable_store\";a:3:{s:4:\"name\";s:14:\"variable_store\";s:16:\"original_version\";s:10:\" (7.x-2.x)\";s:8:\"versions\";a:2:{i:0;a:2:{s:2:\"op\";s:1:\"<\";s:7:\"version\";s:3:\"3.x\";}i:1;a:2:{s:2:\"op\";s:2:\">=\";s:7:\"version\";s:3:\"2.x\";}}}s:14:\"variable_realm\";a:3:{s:4:\"name\";s:14:\"variable_realm\";s:16:\"original_version\";s:10:\" (7.x-2.x)\";s:8:\"versions\";a:2:{i:0;a:2:{s:2:\"op\";s:1:\"<\";s:7:\"version\";s:3:\"3.x\";}i:1;a:2:{s:2:\"op\";s:2:\">=\";s:7:\"version\";s:3:\"2.x\";}}}}s:4:\"sort\";i:-81;}s:5:\"image\";O:8:\"stdClass\":11:{s:3:\"uri\";s:26:\"modules/image/image.module\";s:8:\"filename\";s:26:\"modules/image/image.module\";s:4:\"name\";s:5:\"image\";s:4:\"info\";a:13:{s:4:\"name\";s:5:\"Image\";s:11:\"description\";s:34:\"Provides image manipulation tools.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:9:\"bootstrap\";i:0;s:8:\"required\";b:1;s:11:\"explanation\";s:96:\"Tipi di campo attualmente in uso - vedere <a href=\"/?q=it/admin/reports/fields\">Elenco campi</a>\";}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7005\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:6:{s:13:\"features_test\";a:1:{s:4:\"name\";s:5:\"image\";}s:8:\"juicebox\";a:1:{s:4:\"name\";s:5:\"image\";}s:19:\"juicebox_views_test\";a:1:{s:4:\"name\";s:5:\"image\";}s:6:\"photos\";a:1:{s:4:\"name\";s:5:\"image\";}s:11:\"photos_swfu\";a:1:{s:4:\"name\";s:5:\"image\";}s:8:\"standard\";a:1:{s:4:\"name\";s:5:\"image\";}}s:8:\"requires\";a:3:{s:4:\"file\";a:1:{s:4:\"name\";s:4:\"file\";}s:5:\"field\";a:1:{s:4:\"name\";s:5:\"field\";}s:17:\"field_sql_storage\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}}s:4:\"sort\";i:-42;}s:17:\"image_module_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:44:\"modules/image/tests/image_module_test.module\";s:8:\"filename\";s:44:\"modules/image/tests/image_module_test.module\";s:4:\"name\";s:17:\"image_module_test\";s:4:\"info\";a:11:{s:4:\"name\";s:10:\"Image test\";s:11:\"description\";s:69:\"Provides hook implementations for testing Image module functionality.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:12:\"dependencies\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:10:\"image_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:42:\"modules/simpletest/tests/image_test.module\";s:8:\"filename\";s:42:\"modules/simpletest/tests/image_test.module\";s:4:\"name\";s:10:\"image_test\";s:4:\"info\";a:11:{s:4:\"name\";s:10:\"Image test\";s:11:\"description\";s:39:\"Support module for image toolkit tests.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:4:\"imce\";O:8:\"stdClass\":11:{s:3:\"uri\";s:34:\"sites/all/modules/imce/imce.module\";s:8:\"filename\";s:34:\"sites/all/modules/imce/imce.module\";s:4:\"name\";s:4:\"imce\";s:4:\"info\";a:11:{s:4:\"name\";s:4:\"IMCE\";s:11:\"description\";s:82:\"An image/file uploader and browser supporting personal directories and user quota.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:5:\"Media\";s:9:\"configure\";s:23:\"admin/config/media/imce\";s:7:\"version\";s:8:\"7.x-1.11\";s:7:\"project\";s:4:\"imce\";s:9:\"datestamp\";s:10:\"1495890787\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7002\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:8:\"juicebox\";O:8:\"stdClass\":11:{s:3:\"uri\";s:42:\"sites/all/modules/juicebox/juicebox.module\";s:8:\"filename\";s:42:\"sites/all/modules/juicebox/juicebox.module\";s:4:\"name\";s:8:\"juicebox\";s:4:\"info\";a:12:{s:4:\"name\";s:8:\"Juicebox\";s:11:\"description\";s:89:\"Provides an integration between the Juicebox HTML5 responsive gallery library and Drupal.\";s:7:\"package\";s:5:\"Media\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:2:{i:0;s:5:\"image\";i:1;s:16:\"libraries (>1.0)\";}s:9:\"configure\";s:27:\"admin/config/media/juicebox\";s:5:\"files\";a:16:{i:0;s:37:\"includes/JuiceboxGalleryInterface.inc\";i:1;s:28:\"includes/JuiceboxGallery.inc\";i:2;s:37:\"includes/JuiceboxGalleryDecorator.inc\";i:3;s:43:\"includes/JuiceboxGalleryDrupalInterface.inc\";i:4;s:34:\"includes/JuiceboxGalleryDrupal.inc\";i:5;s:32:\"plugins/JuiceboxXmlInterface.inc\";i:6;s:28:\"plugins/JuiceboxXmlField.inc\";i:7;s:33:\"plugins/JuiceboxXmlViewsStyle.inc\";i:8;s:39:\"plugins/JuiceboxFormatterViewsStyle.inc\";i:9;s:27:\"tests/JuiceboxBaseCase.test\";i:10;s:37:\"tests/JuiceboxFieldFormatterCase.test\";i:11;s:27:\"tests/JuiceboxFileCase.test\";i:12;s:33:\"tests/JuiceboxFileEntityCase.test\";i:13;s:27:\"tests/JuiceboxConfCase.test\";i:14;s:33:\"tests/JuiceboxConfGlobalCase.test\";i:15;s:28:\"tests/JuiceboxViewsCase.test\";}s:17:\"test_dependencies\";a:2:{i:0;s:5:\"views\";i:1;s:11:\"file_entity\";}s:7:\"version\";s:7:\"7.x-2.0\";s:7:\"project\";s:8:\"juicebox\";s:9:\"datestamp\";s:10:\"1405309428\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7201\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:1:{s:19:\"juicebox_views_test\";a:1:{s:4:\"name\";s:8:\"juicebox\";}}s:8:\"requires\";a:6:{s:5:\"image\";a:1:{s:4:\"name\";s:5:\"image\";}s:4:\"file\";a:1:{s:4:\"name\";s:4:\"file\";}s:5:\"field\";a:1:{s:4:\"name\";s:5:\"field\";}s:17:\"field_sql_storage\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}s:9:\"libraries\";a:3:{s:4:\"name\";s:9:\"libraries\";s:16:\"original_version\";s:7:\" (>1.0)\";s:8:\"versions\";a:1:{i:0;a:2:{s:2:\"op\";s:1:\">\";s:7:\"version\";s:3:\"1.0\";}}}s:6:\"system\";a:3:{s:4:\"name\";s:6:\"system\";s:16:\"original_version\";s:9:\" (>=7.11)\";s:8:\"versions\";a:1:{i:0;a:2:{s:2:\"op\";s:2:\">=\";s:7:\"version\";s:4:\"7.11\";}}}}s:4:\"sort\";i:-83;}s:19:\"juicebox_views_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:65:\"sites/all/modules/juicebox/tests/views/juicebox_views_test.module\";s:8:\"filename\";s:65:\"sites/all/modules/juicebox/tests/views/juicebox_views_test.module\";s:4:\"name\";s:19:\"juicebox_views_test\";s:4:\"info\";a:11:{s:4:\"name\";s:20:\"Juicebox Views Tests\";s:11:\"description\";s:69:\"Provides hook implementations for testing Juicebox views integration.\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:2:{i:0;s:8:\"juicebox\";i:1;s:5:\"views\";}s:6:\"hidden\";b:1;s:7:\"version\";s:7:\"7.x-2.0\";s:7:\"project\";s:8:\"juicebox\";s:9:\"datestamp\";s:10:\"1405309428\";s:7:\"package\";s:5:\"Other\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:9:{s:8:\"juicebox\";a:1:{s:4:\"name\";s:8:\"juicebox\";}s:5:\"image\";a:1:{s:4:\"name\";s:5:\"image\";}s:4:\"file\";a:1:{s:4:\"name\";s:4:\"file\";}s:5:\"field\";a:1:{s:4:\"name\";s:5:\"field\";}s:17:\"field_sql_storage\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}s:9:\"libraries\";a:3:{s:4:\"name\";s:9:\"libraries\";s:16:\"original_version\";s:7:\" (>1.0)\";s:8:\"versions\";a:1:{i:0;a:2:{s:2:\"op\";s:1:\">\";s:7:\"version\";s:3:\"1.0\";}}}s:6:\"system\";a:3:{s:4:\"name\";s:6:\"system\";s:16:\"original_version\";s:9:\" (>=7.11)\";s:8:\"versions\";a:1:{i:0;a:2:{s:2:\"op\";s:2:\">=\";s:7:\"version\";s:4:\"7.11\";}}}s:5:\"views\";a:1:{s:4:\"name\";s:5:\"views\";}s:6:\"ctools\";a:1:{s:4:\"name\";s:6:\"ctools\";}}s:4:\"sort\";i:-84;}s:11:\"l10n_update\";O:8:\"stdClass\":11:{s:3:\"uri\";s:48:\"sites/all/modules/l10n_update/l10n_update.module\";s:8:\"filename\";s:48:\"sites/all/modules/l10n_update/l10n_update.module\";s:4:\"name\";s:11:\"l10n_update\";s:4:\"info\";a:10:{s:4:\"name\";s:19:\"Localization update\";s:11:\"description\";s:58:\"Provides automatic downloads and updates for translations.\";s:12:\"dependencies\";a:1:{i:0;s:6:\"locale\";}s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:12:\"Multilingual\";s:5:\"files\";a:1:{i:0;s:22:\"l10n_update.parser.inc\";}s:7:\"version\";s:7:\"7.x-1.1\";s:7:\"project\";s:11:\"l10n_update\";s:9:\"datestamp\";s:10:\"1415605322\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7006\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:1:{s:6:\"locale\";a:1:{s:4:\"name\";s:6:\"locale\";}}s:4:\"sort\";i:-85;}s:2:\"la\";O:8:\"stdClass\":11:{s:3:\"uri\";s:62:\"sites/all/modules/location/contrib/location_autofill/la.module\";s:8:\"filename\";s:62:\"sites/all/modules/location/contrib/location_autofill/la.module\";s:4:\"name\";s:2:\"la\";s:4:\"info\";a:11:{s:4:\"name\";s:17:\"Location autofill\";s:11:\"description\";s:39:\"Fill up all locations with lat&lon data\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:8:\"Location\";s:9:\"configure\";s:24:\"admin/config/services/la\";s:12:\"dependencies\";a:1:{i:0;s:8:\"location\";}s:7:\"version\";s:7:\"7.x-3.7\";s:7:\"project\";s:8:\"location\";s:9:\"datestamp\";s:10:\"1438695672\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:1:{s:8:\"location\";a:1:{s:4:\"name\";s:8:\"location\";}}s:4:\"sort\";i:-86;}s:13:\"languageicons\";O:8:\"stdClass\":11:{s:3:\"uri\";s:52:\"sites/all/modules/languageicons/languageicons.module\";s:8:\"filename\";s:52:\"sites/all/modules/languageicons/languageicons.module\";s:4:\"name\";s:13:\"languageicons\";s:4:\"info\";a:11:{s:4:\"name\";s:14:\"Language Icons\";s:11:\"description\";s:29:\"Adds icons to language links.\";s:12:\"dependencies\";a:1:{i:0;s:6:\"locale\";}s:7:\"package\";s:12:\"Multilingual\";s:4:\"core\";s:3:\"7.x\";s:9:\"configure\";s:36:\"admin/config/regional/language/icons\";s:7:\"version\";s:7:\"7.x-1.1\";s:7:\"project\";s:13:\"languageicons\";s:9:\"datestamp\";s:10:\"1399825730\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"6200\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:1:{s:6:\"locale\";a:1:{s:4:\"name\";s:6:\"locale\";}}s:4:\"sort\";i:-87;}s:9:\"libraries\";O:8:\"stdClass\":11:{s:3:\"uri\";s:44:\"sites/all/modules/libraries/libraries.module\";s:8:\"filename\";s:44:\"sites/all/modules/libraries/libraries.module\";s:4:\"name\";s:9:\"libraries\";s:4:\"info\";a:10:{s:4:\"name\";s:9:\"Libraries\";s:11:\"description\";s:64:\"Allows version-dependent and shared usage of external libraries.\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:15:\"system (>=7.11)\";}s:5:\"files\";a:4:{i:0;s:32:\"tests/LibrariesAdminWebTest.test\";i:1;s:31:\"tests/LibrariesLoadWebTest.test\";i:2;s:28:\"tests/LibrariesUnitTest.test\";i:3;s:31:\"tests/LibrariesWebTestBase.test\";}s:7:\"version\";s:7:\"7.x-2.4\";s:7:\"project\";s:9:\"libraries\";s:9:\"datestamp\";s:10:\"1536581584\";s:7:\"package\";s:5:\"Other\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7202\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:7:{s:8:\"colorbox\";a:3:{s:4:\"name\";s:9:\"libraries\";s:16:\"original_version\";s:6:\" (2.x)\";s:8:\"versions\";a:2:{i:0;a:2:{s:2:\"op\";s:1:\"<\";s:7:\"version\";s:3:\"3.x\";}i:1;a:2:{s:2:\"op\";s:2:\">=\";s:7:\"version\";s:3:\"2.x\";}}}s:18:\"gmap_style_bubbles\";a:3:{s:4:\"name\";s:9:\"libraries\";s:16:\"original_version\";s:6:\" (2.x)\";s:8:\"versions\";a:2:{i:0;a:2:{s:2:\"op\";s:1:\"<\";s:7:\"version\";s:3:\"3.x\";}i:1;a:2:{s:2:\"op\";s:2:\">=\";s:7:\"version\";s:3:\"2.x\";}}}s:8:\"juicebox\";a:3:{s:4:\"name\";s:9:\"libraries\";s:16:\"original_version\";s:7:\" (>1.0)\";s:8:\"versions\";a:1:{i:0;a:2:{s:2:\"op\";s:1:\">\";s:7:\"version\";s:3:\"1.0\";}}}s:19:\"juicebox_views_test\";a:3:{s:4:\"name\";s:9:\"libraries\";s:16:\"original_version\";s:7:\" (>1.0)\";s:8:\"versions\";a:1:{i:0;a:2:{s:2:\"op\";s:1:\">\";s:7:\"version\";s:3:\"1.0\";}}}s:21:\"libraries_test_module\";a:1:{s:4:\"name\";s:9:\"libraries\";}s:11:\"photos_swfu\";a:3:{s:4:\"name\";s:9:\"libraries\";s:16:\"original_version\";s:8:\" (>=2.x)\";s:8:\"versions\";a:1:{i:0;a:2:{s:2:\"op\";s:2:\">=\";s:7:\"version\";s:3:\"2.x\";}}}s:7:\"proj4js\";a:1:{s:4:\"name\";s:9:\"libraries\";}}s:8:\"requires\";a:1:{s:6:\"system\";a:3:{s:4:\"name\";s:6:\"system\";s:16:\"original_version\";s:9:\" (>=7.11)\";s:8:\"versions\";a:1:{i:0;a:2:{s:2:\"op\";s:2:\">=\";s:7:\"version\";s:4:\"7.11\";}}}}s:4:\"sort\";i:-7;}s:21:\"libraries_test_module\";O:8:\"stdClass\":11:{s:3:\"uri\";s:92:\"sites/all/modules/libraries/tests/modules/libraries_test_module/libraries_test_module.module\";s:8:\"filename\";s:92:\"sites/all/modules/libraries/tests/modules/libraries_test_module/libraries_test_module.module\";s:4:\"name\";s:21:\"libraries_test_module\";s:4:\"info\";a:11:{s:4:\"name\";s:21:\"Libraries test module\";s:11:\"description\";s:36:\"Tests library detection and loading.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:7:\"Testing\";s:12:\"dependencies\";a:1:{i:0;s:9:\"libraries\";}s:6:\"hidden\";b:1;s:7:\"version\";s:7:\"7.x-2.4\";s:7:\"project\";s:9:\"libraries\";s:9:\"datestamp\";s:10:\"1536581584\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:2:{s:9:\"libraries\";a:1:{s:4:\"name\";s:9:\"libraries\";}s:6:\"system\";a:3:{s:4:\"name\";s:6:\"system\";s:16:\"original_version\";s:9:\" (>=7.11)\";s:8:\"versions\";a:1:{i:0;a:2:{s:2:\"op\";s:2:\">=\";s:7:\"version\";s:4:\"7.11\";}}}}s:4:\"sort\";i:-88;}s:4:\"list\";O:8:\"stdClass\":11:{s:3:\"uri\";s:38:\"modules/field/modules/list/list.module\";s:8:\"filename\";s:38:\"modules/field/modules/list/list.module\";s:4:\"name\";s:4:\"list\";s:4:\"info\";a:10:{s:4:\"name\";s:4:\"List\";s:11:\"description\";s:69:\"Defines list field types. Use with Options to create selection lists.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7002\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:1:{s:8:\"standard\";a:1:{s:4:\"name\";s:4:\"list\";}}s:8:\"requires\";a:3:{s:5:\"field\";a:1:{s:4:\"name\";s:5:\"field\";}s:17:\"field_sql_storage\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}s:7:\"options\";a:1:{s:4:\"name\";s:7:\"options\";}}s:4:\"sort\";i:-89;}s:9:\"list_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:49:\"modules/field/modules/list/tests/list_test.module\";s:8:\"filename\";s:49:\"modules/field/modules/list/tests/list_test.module\";s:4:\"name\";s:9:\"list_test\";s:4:\"info\";a:11:{s:4:\"name\";s:9:\"List test\";s:11:\"description\";s:41:\"Support module for the List module tests.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:6:\"locale\";O:8:\"stdClass\":11:{s:3:\"uri\";s:28:\"modules/locale/locale.module\";s:8:\"filename\";s:28:\"modules/locale/locale.module\";s:4:\"name\";s:6:\"locale\";s:4:\"info\";a:11:{s:4:\"name\";s:6:\"Locale\";s:11:\"description\";s:119:\"Adds language handling functionality and enables the translation of the user interface to languages other than English.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:12:\"dependencies\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7005\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:26:{s:4:\"i18n\";a:1:{s:4:\"name\";s:6:\"locale\";}s:11:\"i18n_string\";a:1:{s:4:\"name\";s:6:\"locale\";}s:16:\"entity_test_i18n\";a:1:{s:4:\"name\";s:6:\"locale\";}s:18:\"entity_translation\";a:3:{s:4:\"name\";s:6:\"locale\";s:16:\"original_version\";s:8:\" (>7.14)\";s:8:\"versions\";a:1:{i:0;a:2:{s:2:\"op\";s:1:\">\";s:7:\"version\";s:4:\"7.14\";}}}s:16:\"i18n_translation\";a:1:{s:4:\"name\";s:6:\"locale\";}s:9:\"i18n_menu\";a:1:{s:4:\"name\";s:6:\"locale\";}s:28:\"entity_translation_i18n_menu\";a:3:{s:4:\"name\";s:6:\"locale\";s:16:\"original_version\";s:8:\" (>7.14)\";s:8:\"versions\";a:1:{i:0;a:2:{s:2:\"op\";s:1:\">\";s:7:\"version\";s:4:\"7.14\";}}}s:23:\"entity_translation_test\";a:3:{s:4:\"name\";s:6:\"locale\";s:16:\"original_version\";s:8:\" (>7.14)\";s:8:\"versions\";a:1:{i:0;a:2:{s:2:\"op\";s:1:\">\";s:7:\"version\";s:4:\"7.14\";}}}s:26:\"entity_translation_upgrade\";a:3:{s:4:\"name\";s:6:\"locale\";s:16:\"original_version\";s:8:\" (>7.14)\";s:8:\"versions\";a:1:{i:0;a:2:{s:2:\"op\";s:1:\">\";s:7:\"version\";s:4:\"7.14\";}}}s:10:\"i18n_block\";a:1:{s:4:\"name\";s:6:\"locale\";}s:12:\"i18n_contact\";a:1:{s:4:\"name\";s:6:\"locale\";}s:10:\"i18n_field\";a:1:{s:4:\"name\";s:6:\"locale\";}s:13:\"i18n_taxonomy\";a:1:{s:4:\"name\";s:6:\"locale\";}s:11:\"translation\";a:1:{s:4:\"name\";s:6:\"locale\";}s:9:\"i18n_node\";a:1:{s:4:\"name\";s:6:\"locale\";}s:10:\"i18n_forum\";a:1:{s:4:\"name\";s:6:\"locale\";}s:9:\"i18n_path\";a:1:{s:4:\"name\";s:6:\"locale\";}s:13:\"i18n_redirect\";a:1:{s:4:\"name\";s:6:\"locale\";}s:11:\"i18n_select\";a:1:{s:4:\"name\";s:6:\"locale\";}s:9:\"i18n_sync\";a:1:{s:4:\"name\";s:6:\"locale\";}s:9:\"i18n_test\";a:1:{s:4:\"name\";s:6:\"locale\";}s:13:\"i18n_variable\";a:1:{s:4:\"name\";s:6:\"locale\";}s:9:\"i18n_user\";a:1:{s:4:\"name\";s:6:\"locale\";}s:11:\"l10n_update\";a:1:{s:4:\"name\";s:6:\"locale\";}s:13:\"languageicons\";a:1:{s:4:\"name\";s:6:\"locale\";}s:10:\"title_test\";a:3:{s:4:\"name\";s:6:\"locale\";s:16:\"original_version\";s:8:\" (>7.14)\";s:8:\"versions\";a:1:{i:0;a:2:{s:2:\"op\";s:1:\">\";s:7:\"version\";s:4:\"7.14\";}}}}s:8:\"requires\";a:0:{}s:4:\"sort\";i:-27;}s:11:\"locale_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:39:\"modules/locale/tests/locale_test.module\";s:8:\"filename\";s:39:\"modules/locale/tests/locale_test.module\";s:4:\"name\";s:11:\"locale_test\";s:4:\"info\";a:11:{s:4:\"name\";s:11:\"Locale Test\";s:11:\"description\";s:42:\"Support module for the locale layer tests.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:8:\"location\";O:8:\"stdClass\":11:{s:3:\"uri\";s:42:\"sites/all/modules/location/location.module\";s:8:\"filename\";s:42:\"sites/all/modules/location/location.module\";s:4:\"name\";s:8:\"location\";s:4:\"info\";a:11:{s:4:\"name\";s:8:\"Location\";s:7:\"package\";s:8:\"Location\";s:11:\"description\";s:213:\"The location module allows you to associate a geographic location with content and users. Users can do proximity searches by postal code.  This is useful for organizing communities that have a geographic presence.\";s:4:\"core\";s:3:\"7.x\";s:9:\"configure\";s:29:\"admin/config/content/location\";s:5:\"files\";a:32:{i:0;s:18:\"location.admin.inc\";i:1;s:19:\"location.georss.inc\";i:2;s:12:\"location.inc\";i:3;s:18:\"location.token.inc\";i:4;s:18:\"location.views.inc\";i:5;s:26:\"location.views_default.inc\";i:6;s:20:\"location.migrate.inc\";i:7;s:28:\"tests/location_testcase.test\";i:8;s:14:\"tests/cow.test\";i:9;s:16:\"tests/earth.test\";i:10;s:26:\"tests/google_geocoder.test\";i:11;s:23:\"tests/location_cck.test\";i:12;s:24:\"tests/location_cck2.test\";i:13;s:55:\"handlers/location_handler_argument_location_country.inc\";i:14;s:56:\"handlers/location_handler_argument_location_province.inc\";i:15;s:57:\"handlers/location_handler_argument_location_proximity.inc\";i:16;s:55:\"handlers/location_handler_field_location_additional.inc\";i:17;s:52:\"handlers/location_handler_field_location_address.inc\";i:18;s:52:\"handlers/location_handler_field_location_country.inc\";i:19;s:53:\"handlers/location_handler_field_location_distance.inc\";i:20;s:53:\"handlers/location_handler_field_location_province.inc\";i:21;s:51:\"handlers/location_handler_field_location_street.inc\";i:22;s:53:\"handlers/location_handler_filter_location_country.inc\";i:23;s:54:\"handlers/location_handler_filter_location_province.inc\";i:24;s:51:\"handlers/location_handler_sort_location_country.inc\";i:25;s:52:\"handlers/location_handler_sort_location_distance.inc\";i:26;s:53:\"handlers/location_views_handler_field_coordinates.inc\";i:27;s:50:\"handlers/location_views_handler_field_latitude.inc\";i:28;s:51:\"handlers/location_views_handler_field_longitude.inc\";i:29;s:52:\"handlers/location_views_handler_filter_proximity.inc\";i:30;s:29:\"plugins/contexts/location.inc\";i:31;s:44:\"plugins/relationships/location_from_node.inc\";}s:7:\"version\";s:7:\"7.x-3.7\";s:7:\"project\";s:8:\"location\";s:9:\"datestamp\";s:10:\"1438695672\";s:12:\"dependencies\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7302\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:15:{s:13:\"gmap_location\";a:1:{s:4:\"name\";s:8:\"location\";}s:2:\"la\";a:1:{s:4:\"name\";s:8:\"location\";}s:13:\"location_node\";a:1:{s:4:\"name\";s:8:\"location\";}s:19:\"location_addanother\";a:1:{s:4:\"name\";s:8:\"location\";}s:12:\"location_cck\";a:1:{s:4:\"name\";s:8:\"location\";}s:14:\"location_email\";a:1:{s:4:\"name\";s:8:\"location\";}s:15:\"location_entity\";a:1:{s:4:\"name\";s:8:\"location\";}s:12:\"location_fax\";a:1:{s:4:\"name\";s:8:\"location\";}s:17:\"location_generate\";a:1:{s:4:\"name\";s:8:\"location\";}s:26:\"location_gmap_find_address\";a:1:{s:4:\"name\";s:8:\"location\";}s:14:\"location_phone\";a:1:{s:4:\"name\";s:8:\"location\";}s:15:\"location_search\";a:1:{s:4:\"name\";s:8:\"location\";}s:17:\"location_taxonomy\";a:1:{s:4:\"name\";s:8:\"location\";}s:13:\"location_user\";a:1:{s:4:\"name\";s:8:\"location\";}s:12:\"location_www\";a:1:{s:4:\"name\";s:8:\"location\";}}s:8:\"requires\";a:0:{}s:4:\"sort\";i:-57;}s:19:\"location_addanother\";O:8:\"stdClass\":11:{s:3:\"uri\";s:81:\"sites/all/modules/location/contrib/location_addanother/location_addanother.module\";s:8:\"filename\";s:81:\"sites/all/modules/location/contrib/location_addanother/location_addanother.module\";s:4:\"name\";s:19:\"location_addanother\";s:4:\"info\";a:10:{s:4:\"name\";s:20:\"Location Add Another\";s:11:\"description\";s:94:\"Allows you to quickly add locations directly from a node without having to click \'edit\' first.\";s:12:\"dependencies\";a:2:{i:0;s:8:\"location\";i:1;s:13:\"location_node\";}s:7:\"package\";s:8:\"Location\";s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:7:\"7.x-3.7\";s:7:\"project\";s:8:\"location\";s:9:\"datestamp\";s:10:\"1438695672\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"1\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:2:{s:8:\"location\";a:1:{s:4:\"name\";s:8:\"location\";}s:13:\"location_node\";a:1:{s:4:\"name\";s:13:\"location_node\";}}s:4:\"sort\";i:-91;}s:12:\"location_cck\";O:8:\"stdClass\":11:{s:3:\"uri\";s:67:\"sites/all/modules/location/contrib/location_cck/location_cck.module\";s:8:\"filename\";s:67:\"sites/all/modules/location/contrib/location_cck/location_cck.module\";s:4:\"name\";s:12:\"location_cck\";s:4:\"info\";a:10:{s:4:\"name\";s:12:\"Location CCK\";s:11:\"description\";s:30:\"Defines a Location field type.\";s:12:\"dependencies\";a:1:{i:0;s:8:\"location\";}s:7:\"package\";s:6:\"Fields\";s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:7:\"7.x-3.7\";s:7:\"project\";s:8:\"location\";s:9:\"datestamp\";s:10:\"1438695672\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"6301\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:1:{s:26:\"location_gmap_find_address\";a:1:{s:4:\"name\";s:12:\"location_cck\";}}s:8:\"requires\";a:1:{s:8:\"location\";a:1:{s:4:\"name\";s:8:\"location\";}}s:4:\"sort\";i:-92;}s:14:\"location_email\";O:8:\"stdClass\":11:{s:3:\"uri\";s:71:\"sites/all/modules/location/contrib/location_email/location_email.module\";s:8:\"filename\";s:71:\"sites/all/modules/location/contrib/location_email/location_email.module\";s:4:\"name\";s:14:\"location_email\";s:4:\"info\";a:10:{s:4:\"name\";s:14:\"Location Email\";s:7:\"package\";s:8:\"Location\";s:11:\"description\";s:49:\"Allows you to add an email address to a location.\";s:12:\"dependencies\";a:1:{i:0;s:8:\"location\";}s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:24:\"location_email.views.inc\";}s:7:\"version\";s:7:\"7.x-3.7\";s:7:\"project\";s:8:\"location\";s:9:\"datestamp\";s:10:\"1438695672\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"1\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:1:{s:8:\"location\";a:1:{s:4:\"name\";s:8:\"location\";}}s:4:\"sort\";i:-93;}s:15:\"location_entity\";O:8:\"stdClass\":11:{s:3:\"uri\";s:73:\"sites/all/modules/location/contrib/location_entity/location_entity.module\";s:8:\"filename\";s:73:\"sites/all/modules/location/contrib/location_entity/location_entity.module\";s:4:\"name\";s:15:\"location_entity\";s:4:\"info\";a:10:{s:4:\"name\";s:15:\"Location Entity\";s:11:\"description\";s:58:\"Provide information about Location field to Entity module.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:8:\"Location\";s:12:\"dependencies\";a:1:{i:0;s:8:\"location\";}s:7:\"version\";s:7:\"7.x-3.7\";s:7:\"project\";s:8:\"location\";s:9:\"datestamp\";s:10:\"1438695672\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:1:{s:8:\"location\";a:1:{s:4:\"name\";s:8:\"location\";}}s:4:\"sort\";i:-94;}s:12:\"location_fax\";O:8:\"stdClass\":11:{s:3:\"uri\";s:67:\"sites/all/modules/location/contrib/location_fax/location_fax.module\";s:8:\"filename\";s:67:\"sites/all/modules/location/contrib/location_fax/location_fax.module\";s:4:\"name\";s:12:\"location_fax\";s:4:\"info\";a:10:{s:4:\"name\";s:12:\"Location Fax\";s:7:\"package\";s:8:\"Location\";s:11:\"description\";s:45:\"Allows you to add a fax number to a location.\";s:12:\"dependencies\";a:1:{i:0;s:8:\"location\";}s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:22:\"location_fax.views.inc\";}s:7:\"version\";s:7:\"7.x-3.7\";s:7:\"project\";s:8:\"location\";s:9:\"datestamp\";s:10:\"1438695672\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:4:\"6301\";s:6:\"weight\";s:1:\"1\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:1:{s:8:\"location\";a:1:{s:4:\"name\";s:8:\"location\";}}s:4:\"sort\";i:-95;}s:17:\"location_generate\";O:8:\"stdClass\":11:{s:3:\"uri\";s:77:\"sites/all/modules/location/contrib/location_generate/location_generate.module\";s:8:\"filename\";s:77:\"sites/all/modules/location/contrib/location_generate/location_generate.module\";s:4:\"name\";s:17:\"location_generate\";s:4:\"info\";a:10:{s:4:\"name\";s:17:\"Location Generate\";s:11:\"description\";s:52:\"Bulk assign random latitude and longitudes to nodes.\";s:7:\"package\";s:11:\"Development\";s:12:\"dependencies\";a:2:{i:0;s:14:\"devel_generate\";i:1;s:8:\"location\";}s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:7:\"7.x-3.7\";s:7:\"project\";s:8:\"location\";s:9:\"datestamp\";s:10:\"1438695672\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:2:{s:14:\"devel_generate\";a:1:{s:4:\"name\";s:14:\"devel_generate\";}s:8:\"location\";a:1:{s:4:\"name\";s:8:\"location\";}}s:4:\"sort\";i:-96;}s:26:\"location_gmap_find_address\";O:8:\"stdClass\":11:{s:3:\"uri\";s:83:\"sites/all/modules/gmap/location_gmap_find_address/location_gmap_find_address.module\";s:8:\"filename\";s:83:\"sites/all/modules/gmap/location_gmap_find_address/location_gmap_find_address.module\";s:4:\"name\";s:26:\"location_gmap_find_address\";s:4:\"info\";a:10:{s:4:\"name\";s:37:\"Location + Gmap \'Find Address\' button\";s:11:\"description\";s:65:\"Adds a \'Find Address\' button to all location fields that use gmap\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:8:\"Location\";s:12:\"dependencies\";a:3:{i:0;s:12:\"location_cck\";i:1;s:8:\"location\";i:2;s:4:\"gmap\";}s:7:\"version\";s:8:\"7.x-2.11\";s:7:\"project\";s:4:\"gmap\";s:9:\"datestamp\";s:10:\"1457698170\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:3:{s:12:\"location_cck\";a:1:{s:4:\"name\";s:12:\"location_cck\";}s:8:\"location\";a:1:{s:4:\"name\";s:8:\"location\";}s:4:\"gmap\";a:1:{s:4:\"name\";s:4:\"gmap\";}}s:4:\"sort\";i:-97;}s:13:\"location_node\";O:8:\"stdClass\":11:{s:3:\"uri\";s:47:\"sites/all/modules/location/location_node.module\";s:8:\"filename\";s:47:\"sites/all/modules/location/location_node.module\";s:4:\"name\";s:13:\"location_node\";s:4:\"info\";a:10:{s:4:\"name\";s:14:\"Node Locations\";s:11:\"description\";s:31:\"Associate locations with nodes.\";s:12:\"dependencies\";a:1:{i:0;s:8:\"location\";}s:7:\"package\";s:8:\"Location\";s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:7:\"7.x-3.7\";s:7:\"project\";s:8:\"location\";s:9:\"datestamp\";s:10:\"1438695672\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:1:{s:19:\"location_addanother\";a:1:{s:4:\"name\";s:13:\"location_node\";}}s:8:\"requires\";a:1:{s:8:\"location\";a:1:{s:4:\"name\";s:8:\"location\";}}s:4:\"sort\";i:-90;}s:14:\"location_phone\";O:8:\"stdClass\":11:{s:3:\"uri\";s:71:\"sites/all/modules/location/contrib/location_phone/location_phone.module\";s:8:\"filename\";s:71:\"sites/all/modules/location/contrib/location_phone/location_phone.module\";s:4:\"name\";s:14:\"location_phone\";s:4:\"info\";a:10:{s:4:\"name\";s:14:\"Location Phone\";s:7:\"package\";s:8:\"Location\";s:11:\"description\";s:47:\"Allows you to add a phone number to a location.\";s:12:\"dependencies\";a:1:{i:0;s:8:\"location\";}s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:24:\"location_phone.views.inc\";}s:7:\"version\";s:7:\"7.x-3.7\";s:7:\"project\";s:8:\"location\";s:9:\"datestamp\";s:10:\"1438695672\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:4:\"6301\";s:6:\"weight\";s:1:\"1\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:1:{s:8:\"location\";a:1:{s:4:\"name\";s:8:\"location\";}}s:4:\"sort\";i:-98;}s:15:\"location_search\";O:8:\"stdClass\":11:{s:3:\"uri\";s:73:\"sites/all/modules/location/contrib/location_search/location_search.module\";s:8:\"filename\";s:73:\"sites/all/modules/location/contrib/location_search/location_search.module\";s:4:\"name\";s:15:\"location_search\";s:4:\"info\";a:11:{s:4:\"name\";s:15:\"Location Search\";s:7:\"package\";s:8:\"Location\";s:11:\"description\";s:35:\"Advanced search page for locations.\";s:9:\"configure\";s:36:\"admin/config/content/location/search\";s:12:\"dependencies\";a:2:{i:0;s:6:\"search\";i:1;s:8:\"location\";}s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:25:\"location_search.admin.inc\";}s:7:\"version\";s:7:\"7.x-3.7\";s:7:\"project\";s:8:\"location\";s:9:\"datestamp\";s:10:\"1438695672\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:4:\"5300\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:2:{s:6:\"search\";a:1:{s:4:\"name\";s:6:\"search\";}s:8:\"location\";a:1:{s:4:\"name\";s:8:\"location\";}}s:4:\"sort\";i:-100;}s:17:\"location_taxonomy\";O:8:\"stdClass\":11:{s:3:\"uri\";s:77:\"sites/all/modules/location/contrib/location_taxonomy/location_taxonomy.module\";s:8:\"filename\";s:77:\"sites/all/modules/location/contrib/location_taxonomy/location_taxonomy.module\";s:4:\"name\";s:17:\"location_taxonomy\";s:4:\"info\";a:10:{s:4:\"name\";s:17:\"Location Taxonomy\";s:11:\"description\";s:40:\"Associate locations with taxonomy terms.\";s:12:\"dependencies\";a:2:{i:0;s:8:\"location\";i:1;s:8:\"taxonomy\";}s:7:\"package\";s:8:\"Location\";s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:7:\"7.x-3.7\";s:7:\"project\";s:8:\"location\";s:9:\"datestamp\";s:10:\"1438695672\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:5:{s:8:\"location\";a:1:{s:4:\"name\";s:8:\"location\";}s:8:\"taxonomy\";a:1:{s:4:\"name\";s:8:\"taxonomy\";}s:7:\"options\";a:1:{s:4:\"name\";s:7:\"options\";}s:5:\"field\";a:1:{s:4:\"name\";s:5:\"field\";}s:17:\"field_sql_storage\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}}s:4:\"sort\";i:-101;}s:13:\"location_user\";O:8:\"stdClass\":11:{s:3:\"uri\";s:47:\"sites/all/modules/location/location_user.module\";s:8:\"filename\";s:47:\"sites/all/modules/location/location_user.module\";s:4:\"name\";s:13:\"location_user\";s:4:\"info\";a:11:{s:4:\"name\";s:14:\"User Locations\";s:11:\"description\";s:31:\"Associate locations with users.\";s:12:\"dependencies\";a:1:{i:0;s:8:\"location\";}s:7:\"package\";s:8:\"Location\";s:4:\"core\";s:3:\"7.x\";s:9:\"configure\";s:28:\"admin/config/people/accounts\";s:7:\"version\";s:7:\"7.x-3.7\";s:7:\"project\";s:8:\"location\";s:9:\"datestamp\";s:10:\"1438695672\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:1:{s:8:\"location\";a:1:{s:4:\"name\";s:8:\"location\";}}s:4:\"sort\";i:-102;}s:12:\"location_www\";O:8:\"stdClass\":11:{s:3:\"uri\";s:67:\"sites/all/modules/location/contrib/location_www/location_www.module\";s:8:\"filename\";s:67:\"sites/all/modules/location/contrib/location_www/location_www.module\";s:4:\"name\";s:12:\"location_www\";s:4:\"info\";a:10:{s:4:\"name\";s:12:\"Location www\";s:7:\"package\";s:8:\"Location\";s:11:\"description\";s:45:\"Allows you to add a www adress to a location.\";s:12:\"dependencies\";a:1:{i:0;s:8:\"location\";}s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:7:\"7.x-3.7\";s:7:\"project\";s:8:\"location\";s:9:\"datestamp\";s:10:\"1438695672\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:1:{s:8:\"location\";a:1:{s:4:\"name\";s:8:\"location\";}}s:4:\"sort\";i:-103;}s:11:\"locationmap\";O:8:\"stdClass\":11:{s:3:\"uri\";s:48:\"sites/all/modules/locationmap/locationmap.module\";s:8:\"filename\";s:48:\"sites/all/modules/locationmap/locationmap.module\";s:4:\"name\";s:11:\"locationmap\";s:4:\"info\";a:11:{s:4:\"name\";s:12:\"Location Map\";s:11:\"description\";s:50:\"Display one geographical location via Google Maps.\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:5:{i:0;s:19:\"locationmap.install\";i:1;s:18:\"locationmap.module\";i:2;s:12:\"potx-cli.php\";i:3;s:8:\"potx.inc\";i:4;s:22:\"tests/locationmap.test\";}s:9:\"configure\";s:32:\"admin/config/content/locationmap\";s:7:\"version\";s:7:\"7.x-2.3\";s:7:\"project\";s:11:\"locationmap\";s:9:\"datestamp\";s:10:\"1400942328\";s:12:\"dependencies\";a:0:{}s:7:\"package\";s:5:\"Other\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:3:\"106\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:4:\"menu\";O:8:\"stdClass\":11:{s:3:\"uri\";s:24:\"modules/menu/menu.module\";s:8:\"filename\";s:24:\"modules/menu/menu.module\";s:4:\"name\";s:4:\"menu\";s:4:\"info\";a:11:{s:4:\"name\";s:4:\"Menu\";s:11:\"description\";s:60:\"Allows administrators to customize the site navigation menu.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:12:\"dependencies\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7003\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:3:{s:9:\"i18n_menu\";a:1:{s:4:\"name\";s:4:\"menu\";}s:28:\"entity_translation_i18n_menu\";a:1:{s:4:\"name\";s:4:\"menu\";}s:8:\"standard\";a:1:{s:4:\"name\";s:4:\"menu\";}}s:8:\"requires\";a:0:{}s:4:\"sort\";i:-34;}s:9:\"menu_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:41:\"modules/simpletest/tests/menu_test.module\";s:8:\"filename\";s:41:\"modules/simpletest/tests/menu_test.module\";s:4:\"name\";s:9:\"menu_test\";s:4:\"info\";a:11:{s:4:\"name\";s:15:\"Hook menu tests\";s:11:\"description\";s:37:\"Support module for menu hook testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:11:\"module_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:43:\"modules/simpletest/tests/module_test.module\";s:8:\"filename\";s:43:\"modules/simpletest/tests/module_test.module\";s:4:\"name\";s:11:\"module_test\";s:4:\"info\";a:11:{s:4:\"name\";s:11:\"Module test\";s:11:\"description\";s:41:\"Support module for module system testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:4:\"node\";O:8:\"stdClass\":11:{s:3:\"uri\";s:24:\"modules/node/node.module\";s:8:\"filename\";s:24:\"modules/node/node.module\";s:4:\"name\";s:4:\"node\";s:4:\"info\";a:13:{s:4:\"name\";s:4:\"Node\";s:11:\"description\";s:66:\"Allows content to be submitted to the site and displayed on pages.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:12:\"dependencies\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7016\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:2:{s:9:\"gmap_test\";a:1:{s:4:\"name\";s:4:\"node\";}s:18:\"gmap_test_extended\";a:1:{s:4:\"name\";s:4:\"node\";}}s:8:\"requires\";a:0:{}s:4:\"sort\";i:-62;}s:16:\"node_access_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:42:\"modules/node/tests/node_access_test.module\";s:8:\"filename\";s:42:\"modules/node/tests/node_access_test.module\";s:4:\"name\";s:16:\"node_access_test\";s:4:\"info\";a:11:{s:4:\"name\";s:24:\"Node module access tests\";s:11:\"description\";s:43:\"Support module for node permission testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:9:\"node_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:35:\"modules/node/tests/node_test.module\";s:8:\"filename\";s:35:\"modules/node/tests/node_test.module\";s:4:\"name\";s:9:\"node_test\";s:4:\"info\";a:11:{s:4:\"name\";s:17:\"Node module tests\";s:11:\"description\";s:40:\"Support module for node related testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:19:\"node_test_exception\";O:8:\"stdClass\":11:{s:3:\"uri\";s:45:\"modules/node/tests/node_test_exception.module\";s:8:\"filename\";s:45:\"modules/node/tests/node_test_exception.module\";s:4:\"name\";s:19:\"node_test_exception\";s:4:\"info\";a:11:{s:4:\"name\";s:27:\"Node module exception tests\";s:11:\"description\";s:50:\"Support module for node related exception testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:6:\"number\";O:8:\"stdClass\":11:{s:3:\"uri\";s:42:\"modules/field/modules/number/number.module\";s:8:\"filename\";s:42:\"modules/field/modules/number/number.module\";s:4:\"name\";s:6:\"number\";s:4:\"info\";a:10:{s:4:\"name\";s:6:\"Number\";s:11:\"description\";s:28:\"Defines numeric field types.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:1:{s:8:\"standard\";a:1:{s:4:\"name\";s:6:\"number\";}}s:8:\"requires\";a:2:{s:5:\"field\";a:1:{s:4:\"name\";s:5:\"field\";}s:17:\"field_sql_storage\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}}s:4:\"sort\";i:-104;}s:6:\"openid\";O:8:\"stdClass\":11:{s:3:\"uri\";s:28:\"modules/openid/openid.module\";s:8:\"filename\";s:28:\"modules/openid/openid.module\";s:4:\"name\";s:6:\"openid\";s:4:\"info\";a:10:{s:4:\"name\";s:6:\"OpenID\";s:11:\"description\";s:48:\"Allows users to log into your site using OpenID.\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:12:\"dependencies\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:1:{s:11:\"openid_test\";a:1:{s:4:\"name\";s:6:\"openid\";}}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:11:\"openid_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:39:\"modules/openid/tests/openid_test.module\";s:8:\"filename\";s:39:\"modules/openid/tests/openid_test.module\";s:4:\"name\";s:11:\"openid_test\";s:4:\"info\";a:11:{s:4:\"name\";s:21:\"OpenID dummy provider\";s:11:\"description\";s:33:\"OpenID provider used for testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:1:{s:6:\"openid\";a:1:{s:4:\"name\";s:6:\"openid\";}}s:4:\"sort\";i:-1;}s:7:\"options\";O:8:\"stdClass\":11:{s:3:\"uri\";s:44:\"modules/field/modules/options/options.module\";s:8:\"filename\";s:44:\"modules/field/modules/options/options.module\";s:4:\"name\";s:7:\"options\";s:4:\"info\";a:10:{s:4:\"name\";s:7:\"Options\";s:11:\"description\";s:82:\"Defines selection, check box and radio button widgets for text and numeric fields.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:13:{s:8:\"taxonomy\";a:1:{s:4:\"name\";s:7:\"options\";}s:13:\"features_test\";a:1:{s:4:\"name\";s:7:\"options\";}s:5:\"forum\";a:1:{s:4:\"name\";s:7:\"options\";}s:11:\"gmap_fields\";a:1:{s:4:\"name\";s:7:\"options\";}s:13:\"gmap_taxonomy\";a:1:{s:4:\"name\";s:7:\"options\";}s:9:\"gmap_test\";a:1:{s:4:\"name\";s:7:\"options\";}s:18:\"gmap_test_extended\";a:1:{s:4:\"name\";s:7:\"options\";}s:13:\"i18n_taxonomy\";a:1:{s:4:\"name\";s:7:\"options\";}s:10:\"i18n_forum\";a:1:{s:4:\"name\";s:7:\"options\";}s:4:\"list\";a:1:{s:4:\"name\";s:7:\"options\";}s:17:\"location_taxonomy\";a:1:{s:4:\"name\";s:7:\"options\";}s:8:\"standard\";a:1:{s:4:\"name\";s:7:\"options\";}s:13:\"taxonomy_test\";a:1:{s:4:\"name\";s:7:\"options\";}}s:8:\"requires\";a:2:{s:5:\"field\";a:1:{s:4:\"name\";s:5:\"field\";}s:17:\"field_sql_storage\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}}s:4:\"sort\";i:-43;}s:7:\"overlay\";O:8:\"stdClass\":11:{s:3:\"uri\";s:30:\"modules/overlay/overlay.module\";s:8:\"filename\";s:30:\"modules/overlay/overlay.module\";s:4:\"name\";s:7:\"overlay\";s:4:\"info\";a:10:{s:4:\"name\";s:7:\"Overlay\";s:11:\"description\";s:59:\"Displays the Drupal administration interface in an overlay.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.59\";s:4:\"core\";s:3:\"7.x\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:1:{s:8:\"standard\";a:1:{s:4:\"name\";s:7:\"overlay\";}}s:8:\"requires\";a:0:{}s:4:\"sort\";i:-105;}s:12:\"page_manager\";O:8:\"stdClass\":11:{s:3:\"uri\";s:57:\"sites/all/modules/ctools/page_manager/page_manager.module\";s:8:\"filename\";s:57:\"sites/all/modules/ctools/page_manager/page_manager.module\";s:4:\"name\";s:12:\"page_manager\";s:4:\"info\";a:10:{s:4:\"name\";s:12:\"Page manager\";s:11:\"description\";s:54:\"Provides a UI and API to manage pages within the site.\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:6:\"ctools\";}s:7:\"package\";s:16:\"Chaos tool suite\";s:7:\"version\";s:8:\"7.x-1.14\";s:5:\"files\";a:1:{i:0;s:21:\"tests/head_links.test\";}s:7:\"project\";s:6:\"ctools\";s:9:\"datestamp\";s:10:\"1519455788\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:1:{s:21:\"ctools_plugin_example\";a:1:{s:4:\"name\";s:12:\"page_manager\";}}s:8:\"requires\";a:1:{s:6:\"ctools\";a:1:{s:4:\"name\";s:6:\"ctools\";}}s:4:\"sort\";i:-19;}s:4:\"path\";O:8:\"stdClass\":11:{s:3:\"uri\";s:24:\"modules/path/path.module\";s:8:\"filename\";s:24:\"modules/path/path.module\";s:4:\"name\";s:4:\"path\";s:4:\"info\";a:11:{s:4:\"name\";s:4:\"Path\";s:11:\"description\";s:28:\"Allows users to rename URLs.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:12:\"dependencies\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:1:{s:8:\"standard\";a:1:{s:4:\"name\";s:4:\"path\";}}s:8:\"requires\";a:0:{}s:4:\"sort\";i:-106;}s:9:\"path_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:41:\"modules/simpletest/tests/path_test.module\";s:8:\"filename\";s:41:\"modules/simpletest/tests/path_test.module\";s:4:\"name\";s:9:\"path_test\";s:4:\"info\";a:11:{s:4:\"name\";s:15:\"Hook path tests\";s:11:\"description\";s:37:\"Support module for path hook testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:6:\"photos\";O:8:\"stdClass\":11:{s:3:\"uri\";s:38:\"sites/all/modules/photos/photos.module\";s:8:\"filename\";s:38:\"sites/all/modules/photos/photos.module\";s:4:\"name\";s:6:\"photos\";s:4:\"info\";a:11:{s:4:\"name\";s:12:\"Album photos\";s:11:\"description\";s:25:\"Picture Management Module\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:12:\"album photos\";s:12:\"dependencies\";a:2:{i:0;s:4:\"file\";i:1;s:5:\"image\";}s:9:\"configure\";s:25:\"admin/config/media/photos\";s:5:\"files\";a:2:{i:0;s:56:\"inc/views/handlers/photos_handler_field_photos_image.inc\";i:1;s:62:\"inc/views/handlers/photos_handler_field_photos_album_cover.inc\";}s:7:\"version\";s:11:\"7.x-3.0-rc4\";s:7:\"project\";s:6:\"photos\";s:9:\"datestamp\";s:10:\"1465340041\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7303\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:1:{s:11:\"photos_swfu\";a:1:{s:4:\"name\";s:6:\"photos\";}}s:8:\"requires\";a:4:{s:4:\"file\";a:1:{s:4:\"name\";s:4:\"file\";}s:5:\"field\";a:1:{s:4:\"name\";s:5:\"field\";}s:17:\"field_sql_storage\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}s:5:\"image\";a:1:{s:4:\"name\";s:5:\"image\";}}s:4:\"sort\";i:-107;}s:13:\"photos_access\";O:8:\"stdClass\":11:{s:3:\"uri\";s:59:\"sites/all/modules/photos/photos_access/photos_access.module\";s:8:\"filename\";s:59:\"sites/all/modules/photos/photos_access/photos_access.module\";s:4:\"name\";s:13:\"photos_access\";s:4:\"info\";a:10:{s:4:\"name\";s:13:\"Photos access\";s:11:\"description\";s:43:\"Advanced photo access and privacy settings.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:12:\"album photos\";s:7:\"version\";s:11:\"7.x-3.0-rc4\";s:7:\"project\";s:6:\"photos\";s:9:\"datestamp\";s:10:\"1465340041\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7301\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:11:\"photos_swfu\";O:8:\"stdClass\":11:{s:3:\"uri\";s:55:\"sites/all/modules/photos/photos_swfu/photos_swfu.module\";s:8:\"filename\";s:55:\"sites/all/modules/photos/photos_swfu/photos_swfu.module\";s:4:\"name\";s:11:\"photos_swfu\";s:4:\"info\";a:10:{s:4:\"name\";s:16:\"Photos SWFUpload\";s:11:\"description\";s:58:\"SWFUpload flash utility to upload multiple images at once.\";s:7:\"package\";s:12:\"album photos\";s:12:\"dependencies\";a:2:{i:0;s:6:\"photos\";i:1;s:17:\"libraries (>=2.x)\";}s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:11:\"7.x-3.0-rc4\";s:7:\"project\";s:6:\"photos\";s:9:\"datestamp\";s:10:\"1465340041\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:7:{s:6:\"photos\";a:1:{s:4:\"name\";s:6:\"photos\";}s:4:\"file\";a:1:{s:4:\"name\";s:4:\"file\";}s:5:\"field\";a:1:{s:4:\"name\";s:5:\"field\";}s:17:\"field_sql_storage\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}s:5:\"image\";a:1:{s:4:\"name\";s:5:\"image\";}s:9:\"libraries\";a:3:{s:4:\"name\";s:9:\"libraries\";s:16:\"original_version\";s:8:\" (>=2.x)\";s:8:\"versions\";a:1:{i:0;a:2:{s:2:\"op\";s:2:\">=\";s:7:\"version\";s:3:\"2.x\";}}}s:6:\"system\";a:3:{s:4:\"name\";s:6:\"system\";s:16:\"original_version\";s:9:\" (>=7.11)\";s:8:\"versions\";a:1:{i:0;a:2:{s:2:\"op\";s:2:\">=\";s:7:\"version\";s:4:\"7.11\";}}}}s:4:\"sort\";i:-108;}s:3:\"php\";O:8:\"stdClass\":11:{s:3:\"uri\";s:22:\"modules/php/php.module\";s:8:\"filename\";s:22:\"modules/php/php.module\";s:4:\"name\";s:3:\"php\";s:4:\"info\";a:10:{s:4:\"name\";s:10:\"PHP filter\";s:11:\"description\";s:50:\"Allows embedded PHP code/snippets to be evaluated.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:12:\"dependencies\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:4:\"poll\";O:8:\"stdClass\":11:{s:3:\"uri\";s:24:\"modules/poll/poll.module\";s:8:\"filename\";s:24:\"modules/poll/poll.module\";s:4:\"name\";s:4:\"poll\";s:4:\"info\";a:11:{s:4:\"name\";s:4:\"Poll\";s:11:\"description\";s:95:\"Allows your site to capture votes on different topics in the form of multiple choice questions.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:12:\"dependencies\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:7:\"profile\";O:8:\"stdClass\":11:{s:3:\"uri\";s:30:\"modules/profile/profile.module\";s:8:\"filename\";s:30:\"modules/profile/profile.module\";s:4:\"name\";s:7:\"profile\";s:4:\"info\";a:12:{s:4:\"name\";s:7:\"Profile\";s:11:\"description\";s:36:\"Supports configurable user profiles.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:12:\"dependencies\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:7:\"proj4js\";O:8:\"stdClass\":11:{s:3:\"uri\";s:40:\"sites/all/modules/proj4js/proj4js.module\";s:8:\"filename\";s:40:\"sites/all/modules/proj4js/proj4js.module\";s:4:\"name\";s:7:\"proj4js\";s:4:\"info\";a:10:{s:4:\"name\";s:7:\"Proj4JS\";s:11:\"description\";s:23:\"Proj4JS library loader.\";s:7:\"version\";s:7:\"7.x-1.2\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:9:\"libraries\";}s:7:\"project\";s:7:\"proj4js\";s:9:\"datestamp\";s:10:\"1363209312\";s:7:\"package\";s:5:\"Other\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:2:{s:9:\"libraries\";a:1:{s:4:\"name\";s:9:\"libraries\";}s:6:\"system\";a:3:{s:4:\"name\";s:6:\"system\";s:16:\"original_version\";s:9:\" (>=7.11)\";s:8:\"versions\";a:1:{i:0;a:2:{s:2:\"op\";s:2:\">=\";s:7:\"version\";s:4:\"7.11\";}}}}s:4:\"sort\";i:-109;}s:10:\"psr_0_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:53:\"modules/simpletest/tests/psr_0_test/psr_0_test.module\";s:8:\"filename\";s:53:\"modules/simpletest/tests/psr_0_test/psr_0_test.module\";s:4:\"name\";s:10:\"psr_0_test\";s:4:\"info\";a:11:{s:4:\"name\";s:16:\"PSR-0 Test cases\";s:11:\"description\";s:44:\"Test classes to be discovered by simpletest.\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:10:\"psr_4_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:53:\"modules/simpletest/tests/psr_4_test/psr_4_test.module\";s:8:\"filename\";s:53:\"modules/simpletest/tests/psr_4_test/psr_4_test.module\";s:4:\"name\";s:10:\"psr_4_test\";s:4:\"info\";a:11:{s:4:\"name\";s:16:\"PSR-4 Test cases\";s:11:\"description\";s:44:\"Test classes to be discovered by simpletest.\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:3:\"rdf\";O:8:\"stdClass\":11:{s:3:\"uri\";s:22:\"modules/rdf/rdf.module\";s:8:\"filename\";s:22:\"modules/rdf/rdf.module\";s:4:\"name\";s:3:\"rdf\";s:4:\"info\";a:10:{s:4:\"name\";s:3:\"RDF\";s:11:\"description\";s:148:\"Enriches your content with metadata to let other applications (e.g. search engines, aggregators) better understand its relationships and attributes.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:12:\"dependencies\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:1:{s:8:\"standard\";a:1:{s:4:\"name\";s:3:\"rdf\";}}s:8:\"requires\";a:0:{}s:4:\"sort\";i:-110;}s:8:\"rdf_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:33:\"modules/rdf/tests/rdf_test.module\";s:8:\"filename\";s:33:\"modules/rdf/tests/rdf_test.module\";s:4:\"name\";s:8:\"rdf_test\";s:4:\"info\";a:11:{s:4:\"name\";s:16:\"RDF module tests\";s:11:\"description\";s:38:\"Support module for RDF module testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:12:\"dependencies\";a:1:{i:0;s:4:\"blog\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:1:{s:4:\"blog\";a:1:{s:4:\"name\";s:4:\"blog\";}}s:4:\"sort\";i:-1;}s:18:\"requirements1_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:50:\"modules/simpletest/tests/requirements1_test.module\";s:8:\"filename\";s:50:\"modules/simpletest/tests/requirements1_test.module\";s:4:\"name\";s:18:\"requirements1_test\";s:4:\"info\";a:11:{s:4:\"name\";s:19:\"Requirements 1 Test\";s:11:\"description\";s:80:\"Tests that a module is not installed when it fails hook_requirements(\'install\').\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:1:{s:18:\"requirements2_test\";a:1:{s:4:\"name\";s:18:\"requirements1_test\";}}s:8:\"requires\";a:0:{}s:4:\"sort\";i:-111;}s:18:\"requirements2_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:50:\"modules/simpletest/tests/requirements2_test.module\";s:8:\"filename\";s:50:\"modules/simpletest/tests/requirements2_test.module\";s:4:\"name\";s:18:\"requirements2_test\";s:4:\"info\";a:11:{s:4:\"name\";s:19:\"Requirements 2 Test\";s:11:\"description\";s:98:\"Tests that a module is not installed when the one it depends on fails hook_requirements(\'install).\";s:12:\"dependencies\";a:2:{i:0;s:18:\"requirements1_test\";i:1;s:7:\"comment\";}s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:5:{s:18:\"requirements1_test\";a:1:{s:4:\"name\";s:18:\"requirements1_test\";}s:7:\"comment\";a:1:{s:4:\"name\";s:7:\"comment\";}s:4:\"text\";a:1:{s:4:\"name\";s:4:\"text\";}s:5:\"field\";a:1:{s:4:\"name\";s:5:\"field\";}s:17:\"field_sql_storage\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}}s:4:\"sort\";i:-112;}s:6:\"search\";O:8:\"stdClass\":11:{s:3:\"uri\";s:28:\"modules/search/search.module\";s:8:\"filename\";s:28:\"modules/search/search.module\";s:4:\"name\";s:6:\"search\";s:4:\"info\";a:12:{s:4:\"name\";s:6:\"Search\";s:11:\"description\";s:36:\"Enables site-wide keyword searching.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:12:\"dependencies\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:4:\"7000\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:2:{s:15:\"location_search\";a:1:{s:4:\"name\";s:6:\"search\";}s:8:\"standard\";a:1:{s:4:\"name\";s:6:\"search\";}}s:8:\"requires\";a:0:{}s:4:\"sort\";i:-99;}s:20:\"search_embedded_form\";O:8:\"stdClass\":11:{s:3:\"uri\";s:48:\"modules/search/tests/search_embedded_form.module\";s:8:\"filename\";s:48:\"modules/search/tests/search_embedded_form.module\";s:4:\"name\";s:20:\"search_embedded_form\";s:4:\"info\";a:11:{s:4:\"name\";s:20:\"Search embedded form\";s:11:\"description\";s:59:\"Support module for search module testing of embedded forms.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:17:\"search_extra_type\";O:8:\"stdClass\":11:{s:3:\"uri\";s:45:\"modules/search/tests/search_extra_type.module\";s:8:\"filename\";s:45:\"modules/search/tests/search_extra_type.module\";s:4:\"name\";s:17:\"search_extra_type\";s:4:\"info\";a:11:{s:4:\"name\";s:16:\"Test search type\";s:11:\"description\";s:41:\"Support module for search module testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:16:\"search_node_tags\";O:8:\"stdClass\":11:{s:3:\"uri\";s:44:\"modules/search/tests/search_node_tags.module\";s:8:\"filename\";s:44:\"modules/search/tests/search_node_tags.module\";s:4:\"name\";s:16:\"search_node_tags\";s:4:\"info\";a:11:{s:4:\"name\";s:21:\"Test search node tags\";s:11:\"description\";s:44:\"Support module for Node search tags testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:12:\"session_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:44:\"modules/simpletest/tests/session_test.module\";s:8:\"filename\";s:44:\"modules/simpletest/tests/session_test.module\";s:4:\"name\";s:12:\"session_test\";s:4:\"info\";a:11:{s:4:\"name\";s:12:\"Session test\";s:11:\"description\";s:40:\"Support module for session data testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:8:\"shortcut\";O:8:\"stdClass\":11:{s:3:\"uri\";s:32:\"modules/shortcut/shortcut.module\";s:8:\"filename\";s:32:\"modules/shortcut/shortcut.module\";s:4:\"name\";s:8:\"shortcut\";s:4:\"info\";a:11:{s:4:\"name\";s:8:\"Shortcut\";s:11:\"description\";s:60:\"Allows users to manage customizable lists of shortcut links.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:12:\"dependencies\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:1:{s:8:\"standard\";a:1:{s:4:\"name\";s:8:\"shortcut\";}}s:8:\"requires\";a:0:{}s:4:\"sort\";i:-113;}s:10:\"simpletest\";O:8:\"stdClass\":11:{s:3:\"uri\";s:36:\"modules/simpletest/simpletest.module\";s:8:\"filename\";s:36:\"modules/simpletest/simpletest.module\";s:4:\"name\";s:10:\"simpletest\";s:4:\"info\";a:11:{s:4:\"name\";s:7:\"Testing\";s:11:\"description\";s:53:\"Provides a framework for unit and functional testing.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:12:\"dependencies\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:8:\"standard\";O:8:\"stdClass\":11:{s:4:\"name\";s:8:\"standard\";s:3:\"uri\";s:34:\"profiles/standard/standard.profile\";s:8:\"filename\";s:34:\"profiles/standard/standard.profile\";s:6:\"weight\";i:1000;s:4:\"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.59\";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:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:7:\"package\";s:5:\"Other\";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\";}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:24:{s:5:\"block\";a:1:{s:4:\"name\";s:5:\"block\";}s:5:\"color\";a:1:{s:4:\"name\";s:5:\"color\";}s:7:\"comment\";a:1:{s:4:\"name\";s:7:\"comment\";}s:4:\"text\";a:1:{s:4:\"name\";s:4:\"text\";}s:5:\"field\";a:1:{s:4:\"name\";s:5:\"field\";}s:17:\"field_sql_storage\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}s:10:\"contextual\";a:1:{s:4:\"name\";s:10:\"contextual\";}s:9:\"dashboard\";a:1:{s:4:\"name\";s:9:\"dashboard\";}s:4:\"help\";a:1:{s:4:\"name\";s:4:\"help\";}s:5:\"image\";a:1:{s:4:\"name\";s:5:\"image\";}s:4:\"file\";a:1:{s:4:\"name\";s:4:\"file\";}s:4:\"list\";a:1:{s:4:\"name\";s:4:\"list\";}s:7:\"options\";a:1:{s:4:\"name\";s:7:\"options\";}s:4:\"menu\";a:1:{s:4:\"name\";s:4:\"menu\";}s:6:\"number\";a:1:{s:4:\"name\";s:6:\"number\";}s:4:\"path\";a:1:{s:4:\"name\";s:4:\"path\";}s:8:\"taxonomy\";a:1:{s:4:\"name\";s:8:\"taxonomy\";}s:5:\"dblog\";a:1:{s:4:\"name\";s:5:\"dblog\";}s:6:\"search\";a:1:{s:4:\"name\";s:6:\"search\";}s:8:\"shortcut\";a:1:{s:4:\"name\";s:8:\"shortcut\";}s:7:\"toolbar\";a:1:{s:4:\"name\";s:7:\"toolbar\";}s:7:\"overlay\";a:1:{s:4:\"name\";s:7:\"overlay\";}s:8:\"field_ui\";a:1:{s:4:\"name\";s:8:\"field_ui\";}s:3:\"rdf\";a:1:{s:4:\"name\";s:3:\"rdf\";}}s:4:\"sort\";i:-115;}s:10:\"statistics\";O:8:\"stdClass\":11:{s:3:\"uri\";s:36:\"modules/statistics/statistics.module\";s:8:\"filename\";s:36:\"modules/statistics/statistics.module\";s:4:\"name\";s:10:\"statistics\";s:4:\"info\";a:11:{s:4:\"name\";s:10:\"Statistics\";s:11:\"description\";s:37:\"Logs access statistics for your site.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:12:\"dependencies\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:8:\"stylizer\";O:8:\"stdClass\":11:{s:3:\"uri\";s:49:\"sites/all/modules/ctools/stylizer/stylizer.module\";s:8:\"filename\";s:49:\"sites/all/modules/ctools/stylizer/stylizer.module\";s:4:\"name\";s:8:\"stylizer\";s:4:\"info\";a:10:{s:4:\"name\";s:8:\"Stylizer\";s:11:\"description\";s:53:\"Create custom styles for applications such as Panels.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:16:\"Chaos tool suite\";s:7:\"version\";s:8:\"7.x-1.14\";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:\"1519455788\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:2:{s:6:\"ctools\";a:1:{s:4:\"name\";s:6:\"ctools\";}s:5:\"color\";a:1:{s:4:\"name\";s:5:\"color\";}}s:4:\"sort\";i:-116;}s:6:\"syslog\";O:8:\"stdClass\":11:{s:3:\"uri\";s:28:\"modules/syslog/syslog.module\";s:8:\"filename\";s:28:\"modules/syslog/syslog.module\";s:4:\"name\";s:6:\"syslog\";s:4:\"info\";a:11:{s:4:\"name\";s:6:\"Syslog\";s:11:\"description\";s:41:\"Logs and records system events to syslog.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:12:\"dependencies\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:6:\"system\";O:8:\"stdClass\":11:{s:3:\"uri\";s:28:\"modules/system/system.module\";s:8:\"filename\";s:28:\"modules/system/system.module\";s:4:\"name\";s:6:\"system\";s:4:\"info\";a:12:{s:4:\"name\";s:6:\"System\";s:11:\"description\";s:54:\"Handles general site configuration for administrators.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:12:\"dependencies\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7081\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:10:{s:9:\"libraries\";a:3:{s:4:\"name\";s:6:\"system\";s:16:\"original_version\";s:9:\" (>=7.11)\";s:8:\"versions\";a:1:{i:0;a:2:{s:2:\"op\";s:2:\">=\";s:7:\"version\";s:4:\"7.11\";}}}s:8:\"colorbox\";a:3:{s:4:\"name\";s:6:\"system\";s:16:\"original_version\";s:9:\" (>=7.11)\";s:8:\"versions\";a:1:{i:0;a:2:{s:2:\"op\";s:2:\">=\";s:7:\"version\";s:4:\"7.11\";}}}s:18:\"gmap_style_bubbles\";a:3:{s:4:\"name\";s:6:\"system\";s:16:\"original_version\";s:9:\" (>=7.11)\";s:8:\"versions\";a:1:{i:0;a:2:{s:2:\"op\";s:2:\">=\";s:7:\"version\";s:4:\"7.11\";}}}s:8:\"juicebox\";a:3:{s:4:\"name\";s:6:\"system\";s:16:\"original_version\";s:9:\" (>=7.11)\";s:8:\"versions\";a:1:{i:0;a:2:{s:2:\"op\";s:2:\">=\";s:7:\"version\";s:4:\"7.11\";}}}s:19:\"juicebox_views_test\";a:3:{s:4:\"name\";s:6:\"system\";s:16:\"original_version\";s:9:\" (>=7.11)\";s:8:\"versions\";a:1:{i:0;a:2:{s:2:\"op\";s:2:\">=\";s:7:\"version\";s:4:\"7.11\";}}}s:21:\"libraries_test_module\";a:3:{s:4:\"name\";s:6:\"system\";s:16:\"original_version\";s:9:\" (>=7.11)\";s:8:\"versions\";a:1:{i:0;a:2:{s:2:\"op\";s:2:\">=\";s:7:\"version\";s:4:\"7.11\";}}}s:11:\"photos_swfu\";a:3:{s:4:\"name\";s:6:\"system\";s:16:\"original_version\";s:9:\" (>=7.11)\";s:8:\"versions\";a:1:{i:0;a:2:{s:2:\"op\";s:2:\">=\";s:7:\"version\";s:4:\"7.11\";}}}s:7:\"proj4js\";a:3:{s:4:\"name\";s:6:\"system\";s:16:\"original_version\";s:9:\" (>=7.11)\";s:8:\"versions\";a:1:{i:0;a:2:{s:2:\"op\";s:2:\">=\";s:7:\"version\";s:4:\"7.11\";}}}s:5:\"title\";a:3:{s:4:\"name\";s:6:\"system\";s:16:\"original_version\";s:8:\" (>7.14)\";s:8:\"versions\";a:1:{i:0;a:2:{s:2:\"op\";s:1:\">\";s:7:\"version\";s:4:\"7.14\";}}}s:10:\"title_test\";a:3:{s:4:\"name\";s:6:\"system\";s:16:\"original_version\";s:8:\" (>7.14)\";s:8:\"versions\";a:1:{i:0;a:2:{s:2:\"op\";s:1:\">\";s:7:\"version\";s:4:\"7.14\";}}}}s:8:\"requires\";a:0:{}s:4:\"sort\";i:-6;}s:16:\"system_cron_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:44:\"modules/system/tests/system_cron_test.module\";s:8:\"filename\";s:44:\"modules/system/tests/system_cron_test.module\";s:4:\"name\";s:16:\"system_cron_test\";s:4:\"info\";a:11:{s:4:\"name\";s:16:\"System Cron Test\";s:11:\"description\";s:45:\"Support module for testing the system_cron().\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:24:\"system_dependencies_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:56:\"modules/simpletest/tests/system_dependencies_test.module\";s:8:\"filename\";s:56:\"modules/simpletest/tests/system_dependencies_test.module\";s:4:\"name\";s:24:\"system_dependencies_test\";s:4:\"info\";a:11:{s:4:\"name\";s:22:\"System dependency test\";s:11:\"description\";s:47:\"Support module for testing system dependencies.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:1:{s:19:\"_missing_dependency\";a:1:{s:4:\"name\";s:19:\"_missing_dependency\";}}s:4:\"sort\";i:0;}s:50:\"system_incompatible_core_version_dependencies_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:82:\"modules/simpletest/tests/system_incompatible_core_version_dependencies_test.module\";s:8:\"filename\";s:82:\"modules/simpletest/tests/system_incompatible_core_version_dependencies_test.module\";s:4:\"name\";s:50:\"system_incompatible_core_version_dependencies_test\";s:4:\"info\";a:11:{s:4:\"name\";s:50:\"System incompatible core version dependencies test\";s:11:\"description\";s:47:\"Support module for testing system dependencies.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:1:{s:37:\"system_incompatible_core_version_test\";a:1:{s:4:\"name\";s:37:\"system_incompatible_core_version_test\";}}s:4:\"sort\";i:-1;}s:37:\"system_incompatible_core_version_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:69:\"modules/simpletest/tests/system_incompatible_core_version_test.module\";s:8:\"filename\";s:69:\"modules/simpletest/tests/system_incompatible_core_version_test.module\";s:4:\"name\";s:37:\"system_incompatible_core_version_test\";s:4:\"info\";a:11:{s:4:\"name\";s:37:\"System incompatible core version test\";s:11:\"description\";s:47:\"Support module for testing system dependencies.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:4:\"core\";s:3:\"5.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:1:{s:50:\"system_incompatible_core_version_dependencies_test\";a:1:{s:4:\"name\";s:37:\"system_incompatible_core_version_test\";}}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:52:\"system_incompatible_module_version_dependencies_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:84:\"modules/simpletest/tests/system_incompatible_module_version_dependencies_test.module\";s:8:\"filename\";s:84:\"modules/simpletest/tests/system_incompatible_module_version_dependencies_test.module\";s:4:\"name\";s:52:\"system_incompatible_module_version_dependencies_test\";s:4:\"info\";a:11:{s:4:\"name\";s:52:\"System incompatible module version dependencies test\";s:11:\"description\";s:47:\"Support module for testing system dependencies.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:1:{s:39:\"system_incompatible_module_version_test\";a:3:{s:4:\"name\";s:39:\"system_incompatible_module_version_test\";s:16:\"original_version\";s:7:\" (>2.0)\";s:8:\"versions\";a:1:{i:0;a:2:{s:2:\"op\";s:1:\">\";s:7:\"version\";s:3:\"2.0\";}}}}s:4:\"sort\";i:-1;}s:39:\"system_incompatible_module_version_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:71:\"modules/simpletest/tests/system_incompatible_module_version_test.module\";s:8:\"filename\";s:71:\"modules/simpletest/tests/system_incompatible_module_version_test.module\";s:4:\"name\";s:39:\"system_incompatible_module_version_test\";s:4:\"info\";a:11:{s:4:\"name\";s:39:\"System incompatible module version test\";s:11:\"description\";s:47:\"Support module for testing system dependencies.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:1:{s:52:\"system_incompatible_module_version_dependencies_test\";a:3:{s:4:\"name\";s:39:\"system_incompatible_module_version_test\";s:16:\"original_version\";s:7:\" (>2.0)\";s:8:\"versions\";a:1:{i:0;a:2:{s:2:\"op\";s:1:\">\";s:7:\"version\";s:3:\"2.0\";}}}}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:29:\"system_project_namespace_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:61:\"modules/simpletest/tests/system_project_namespace_test.module\";s:8:\"filename\";s:61:\"modules/simpletest/tests/system_project_namespace_test.module\";s:4:\"name\";s:29:\"system_project_namespace_test\";s:4:\"info\";a:11:{s:4:\"name\";s:29:\"System project namespace test\";s:11:\"description\";s:58:\"Support module for testing project namespace dependencies.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:1:{s:6:\"filter\";a:2:{s:7:\"project\";s:6:\"drupal\";s:4:\"name\";s:6:\"filter\";}}s:4:\"sort\";i:-1;}s:11:\"system_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:43:\"modules/simpletest/tests/system_test.module\";s:8:\"filename\";s:43:\"modules/simpletest/tests/system_test.module\";s:4:\"name\";s:11:\"system_test\";s:4:\"info\";a:11:{s:4:\"name\";s:11:\"System test\";s:11:\"description\";s:34:\"Support module for system testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:12:\"dependencies\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:8:\"taxonomy\";O:8:\"stdClass\":11:{s:3:\"uri\";s:32:\"modules/taxonomy/taxonomy.module\";s:8:\"filename\";s:32:\"modules/taxonomy/taxonomy.module\";s:4:\"name\";s:8:\"taxonomy\";s:4:\"info\";a:13:{s:4:\"name\";s:8:\"Taxonomy\";s:11:\"description\";s:38:\"Enables the categorization of content.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:9:\"bootstrap\";i:0;s:8:\"required\";b:1;s:11:\"explanation\";s:96:\"Tipi di campo attualmente in uso - vedere <a href=\"/?q=it/admin/reports/fields\">Elenco campi</a>\";}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7011\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:8:{s:13:\"features_test\";a:1:{s:4:\"name\";s:8:\"taxonomy\";}s:5:\"forum\";a:1:{s:4:\"name\";s:8:\"taxonomy\";}s:13:\"gmap_taxonomy\";a:1:{s:4:\"name\";s:8:\"taxonomy\";}s:13:\"i18n_taxonomy\";a:1:{s:4:\"name\";s:8:\"taxonomy\";}s:10:\"i18n_forum\";a:1:{s:4:\"name\";s:8:\"taxonomy\";}s:17:\"location_taxonomy\";a:1:{s:4:\"name\";s:8:\"taxonomy\";}s:8:\"standard\";a:1:{s:4:\"name\";s:8:\"taxonomy\";}s:13:\"taxonomy_test\";a:1:{s:4:\"name\";s:8:\"taxonomy\";}}s:8:\"requires\";a:3:{s:7:\"options\";a:1:{s:4:\"name\";s:7:\"options\";}s:5:\"field\";a:1:{s:4:\"name\";s:5:\"field\";}s:17:\"field_sql_storage\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}}s:4:\"sort\";i:-44;}s:13:\"taxonomy_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:45:\"modules/simpletest/tests/taxonomy_test.module\";s:8:\"filename\";s:45:\"modules/simpletest/tests/taxonomy_test.module\";s:4:\"name\";s:13:\"taxonomy_test\";s:4:\"info\";a:11:{s:4:\"name\";s:20:\"Taxonomy test module\";s:11:\"description\";s:45:\"\"Tests functions and hooks not used in core\".\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:4:{s:8:\"taxonomy\";a:1:{s:4:\"name\";s:8:\"taxonomy\";}s:7:\"options\";a:1:{s:4:\"name\";s:7:\"options\";}s:5:\"field\";a:1:{s:4:\"name\";s:5:\"field\";}s:17:\"field_sql_storage\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}}s:4:\"sort\";i:-117;}s:10:\"term_depth\";O:8:\"stdClass\":11:{s:3:\"uri\";s:53:\"sites/all/modules/ctools/term_depth/term_depth.module\";s:8:\"filename\";s:53:\"sites/all/modules/ctools/term_depth/term_depth.module\";s:4:\"name\";s:10:\"term_depth\";s:4:\"info\";a:10:{s:4:\"name\";s:17:\"Term Depth access\";s:11:\"description\";s:48:\"Controls access to context based upon term depth\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:6:\"ctools\";}s:7:\"package\";s:16:\"Chaos tool suite\";s:7:\"version\";s:8:\"7.x-1.14\";s:7:\"project\";s:6:\"ctools\";s:9:\"datestamp\";s:10:\"1519455788\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:1:{s:6:\"ctools\";a:1:{s:4:\"name\";s:6:\"ctools\";}}s:4:\"sort\";i:-118;}s:4:\"text\";O:8:\"stdClass\":11:{s:3:\"uri\";s:38:\"modules/field/modules/text/text.module\";s:8:\"filename\";s:38:\"modules/field/modules/text/text.module\";s:4:\"name\";s:4:\"text\";s:4:\"info\";a:12:{s:4:\"name\";s:4:\"Text\";s:11:\"description\";s:32:\"Defines simple text field types.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:9:\"bootstrap\";i:0;s:11:\"explanation\";s:96:\"Tipi di campo attualmente in uso - vedere <a href=\"/?q=it/admin/reports/fields\">Elenco campi</a>\";}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7000\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:8:{s:7:\"comment\";a:1:{s:4:\"name\";s:4:\"text\";}s:5:\"forum\";a:1:{s:4:\"name\";s:4:\"text\";}s:9:\"gmap_test\";a:1:{s:4:\"name\";s:4:\"text\";}s:18:\"gmap_test_extended\";a:1:{s:4:\"name\";s:4:\"text\";}s:10:\"i18n_forum\";a:1:{s:4:\"name\";s:4:\"text\";}s:18:\"requirements2_test\";a:1:{s:4:\"name\";s:4:\"text\";}s:8:\"standard\";a:1:{s:4:\"name\";s:4:\"text\";}s:7:\"tracker\";a:1:{s:4:\"name\";s:4:\"text\";}}s:8:\"requires\";a:2:{s:5:\"field\";a:1:{s:4:\"name\";s:5:\"field\";}s:17:\"field_sql_storage\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}}s:4:\"sort\";i:-11;}s:10:\"theme_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:42:\"modules/simpletest/tests/theme_test.module\";s:8:\"filename\";s:42:\"modules/simpletest/tests/theme_test.module\";s:4:\"name\";s:10:\"theme_test\";s:4:\"info\";a:11:{s:4:\"name\";s:10:\"Theme test\";s:11:\"description\";s:40:\"Support module for theme system testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:5:\"title\";O:8:\"stdClass\":11:{s:3:\"uri\";s:36:\"sites/all/modules/title/title.module\";s:8:\"filename\";s:36:\"sites/all/modules/title/title.module\";s:4:\"name\";s:5:\"title\";s:4:\"info\";a:11:{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:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7002\";s:6:\"weight\";s:3:\"100\";s:11:\"required_by\";a:1:{s:10:\"title_test\";a:1:{s:4:\"name\";s:5:\"title\";}}s:8:\"requires\";a:1:{s:6:\"system\";a:3:{s:4:\"name\";s:6:\"system\";s:16:\"original_version\";s:8:\" (>7.14)\";s:8:\"versions\";a:1:{i:0;a:2:{s:2:\"op\";s:1:\">\";s:7:\"version\";s:4:\"7.14\";}}}}s:4:\"sort\";i:-119;}s:10:\"title_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:47:\"sites/all/modules/title/tests/title_test.module\";s:8:\"filename\";s:47:\"sites/all/modules/title/tests/title_test.module\";s:4:\"name\";s:10:\"title_test\";s:4:\"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:3:{i:0;s:5:\"title\";i:1;s:6:\"entity\";i:2;s:18:\"entity_translation\";}s:7:\"version\";s:14:\"7.x-1.0-alpha9\";s:7:\"project\";s:5:\"title\";s:9:\"datestamp\";s:10:\"1484302985\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:5:{s:5:\"title\";a:1:{s:4:\"name\";s:5:\"title\";}s:6:\"system\";a:3:{s:4:\"name\";s:6:\"system\";s:16:\"original_version\";s:8:\" (>7.14)\";s:8:\"versions\";a:1:{i:0;a:2:{s:2:\"op\";s:1:\">\";s:7:\"version\";s:4:\"7.14\";}}}s:6:\"entity\";a:1:{s:4:\"name\";s:6:\"entity\";}s:18:\"entity_translation\";a:1:{s:4:\"name\";s:18:\"entity_translation\";}s:6:\"locale\";a:3:{s:4:\"name\";s:6:\"locale\";s:16:\"original_version\";s:8:\" (>7.14)\";s:8:\"versions\";a:1:{i:0;a:2:{s:2:\"op\";s:1:\">\";s:7:\"version\";s:4:\"7.14\";}}}}s:4:\"sort\";i:-120;}s:7:\"toolbar\";O:8:\"stdClass\":11:{s:3:\"uri\";s:30:\"modules/toolbar/toolbar.module\";s:8:\"filename\";s:30:\"modules/toolbar/toolbar.module\";s:4:\"name\";s:7:\"toolbar\";s:4:\"info\";a:10:{s:4:\"name\";s:7:\"Toolbar\";s:11:\"description\";s:99:\"Provides a toolbar that shows the top-level administration menu items and links from other modules.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.59\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:1:{s:8:\"standard\";a:1:{s:4:\"name\";s:7:\"toolbar\";}}s:8:\"requires\";a:0:{}s:4:\"sort\";i:-114;}s:7:\"tracker\";O:8:\"stdClass\":11:{s:3:\"uri\";s:30:\"modules/tracker/tracker.module\";s:8:\"filename\";s:30:\"modules/tracker/tracker.module\";s:4:\"name\";s:7:\"tracker\";s:4:\"info\";a:10:{s:4:\"name\";s:7:\"Tracker\";s:11:\"description\";s:45:\"Enables tracking of recent content for users.\";s:12:\"dependencies\";a:1:{i:0;s:7:\"comment\";}s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:4:{s:7:\"comment\";a:1:{s:4:\"name\";s:7:\"comment\";}s:4:\"text\";a:1:{s:4:\"name\";s:4:\"text\";}s:5:\"field\";a:1:{s:4:\"name\";s:5:\"field\";}s:17:\"field_sql_storage\";a:1:{s:4:\"name\";s:17:\"field_sql_storage\";}}s:4:\"sort\";i:-121;}s:11:\"translation\";O:8:\"stdClass\":11:{s:3:\"uri\";s:38:\"modules/translation/translation.module\";s:8:\"filename\";s:38:\"modules/translation/translation.module\";s:4:\"name\";s:11:\"translation\";s:4:\"info\";a:10:{s:4:\"name\";s:19:\"Content translation\";s:11:\"description\";s:57:\"Allows content to be translated into different languages.\";s:12:\"dependencies\";a:1:{i:0;s:6:\"locale\";}s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:4:{s:9:\"i18n_node\";a:1:{s:4:\"name\";s:11:\"translation\";}s:10:\"i18n_forum\";a:1:{s:4:\"name\";s:11:\"translation\";}s:9:\"i18n_sync\";a:1:{s:4:\"name\";s:11:\"translation\";}s:9:\"i18n_test\";a:1:{s:4:\"name\";s:11:\"translation\";}}s:8:\"requires\";a:1:{s:6:\"locale\";a:1:{s:4:\"name\";s:6:\"locale\";}}s:4:\"sort\";i:-71;}s:16:\"translation_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:49:\"modules/translation/tests/translation_test.module\";s:8:\"filename\";s:49:\"modules/translation/tests/translation_test.module\";s:4:\"name\";s:16:\"translation_test\";s:4:\"info\";a:11:{s:4:\"name\";s:24:\"Content Translation Test\";s:11:\"description\";s:49:\"Support module for the content translation tests.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:7:\"trigger\";O:8:\"stdClass\":11:{s:3:\"uri\";s:30:\"modules/trigger/trigger.module\";s:8:\"filename\";s:30:\"modules/trigger/trigger.module\";s:4:\"name\";s:7:\"trigger\";s:4:\"info\";a:11:{s:4:\"name\";s:7:\"Trigger\";s:11:\"description\";s:90:\"Enables actions to be fired on certain system events, such as when new content is created.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:12:\"dependencies\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:12:\"trigger_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:41:\"modules/trigger/tests/trigger_test.module\";s:8:\"filename\";s:41:\"modules/trigger/tests/trigger_test.module\";s:4:\"name\";s:12:\"trigger_test\";s:4:\"info\";a:11:{s:4:\"name\";s:12:\"Trigger Test\";s:11:\"description\";s:33:\"Support module for Trigger tests.\";s:7:\"package\";s:7:\"Testing\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"version\";s:4:\"7.59\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:6:\"update\";O:8:\"stdClass\":11:{s:3:\"uri\";s:28:\"modules/update/update.module\";s:8:\"filename\";s:28:\"modules/update/update.module\";s:4:\"name\";s:6:\"update\";s:4:\"info\";a:11:{s:4:\"name\";s:14:\"Update manager\";s:11:\"description\";s:104:\"Checks for available updates, and can securely install or update modules and themes via a web interface.\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:12:\"dependencies\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7001\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:18:\"update_script_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:50:\"modules/simpletest/tests/update_script_test.module\";s:8:\"filename\";s:50:\"modules/simpletest/tests/update_script_test.module\";s:4:\"name\";s:18:\"update_script_test\";s:4:\"info\";a:11:{s:4:\"name\";s:18:\"Update script test\";s:11:\"description\";s:41:\"Support module for update script testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:11:\"update_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:39:\"modules/update/tests/update_test.module\";s:8:\"filename\";s:39:\"modules/update/tests/update_test.module\";s:4:\"name\";s:11:\"update_test\";s:4:\"info\";a:11:{s:4:\"name\";s:11:\"Update test\";s:11:\"description\";s:41:\"Support module for update module testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:13:\"update_test_1\";O:8:\"stdClass\":11:{s:3:\"uri\";s:45:\"modules/simpletest/tests/update_test_1.module\";s:8:\"filename\";s:45:\"modules/simpletest/tests/update_test_1.module\";s:4:\"name\";s:13:\"update_test_1\";s:4:\"info\";a:11:{s:4:\"name\";s:11:\"Update test\";s:11:\"description\";s:34:\"Support module for update testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:13:\"update_test_2\";O:8:\"stdClass\":11:{s:3:\"uri\";s:45:\"modules/simpletest/tests/update_test_2.module\";s:8:\"filename\";s:45:\"modules/simpletest/tests/update_test_2.module\";s:4:\"name\";s:13:\"update_test_2\";s:4:\"info\";a:11:{s:4:\"name\";s:11:\"Update test\";s:11:\"description\";s:34:\"Support module for update testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:13:\"update_test_3\";O:8:\"stdClass\":11:{s:3:\"uri\";s:45:\"modules/simpletest/tests/update_test_3.module\";s:8:\"filename\";s:45:\"modules/simpletest/tests/update_test_3.module\";s:4:\"name\";s:13:\"update_test_3\";s:4:\"info\";a:11:{s:4:\"name\";s:11:\"Update test\";s:11:\"description\";s:34:\"Support module for update testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:14:\"url_alter_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:46:\"modules/simpletest/tests/url_alter_test.module\";s:8:\"filename\";s:46:\"modules/simpletest/tests/url_alter_test.module\";s:4:\"name\";s:14:\"url_alter_test\";s:4:\"info\";a:11:{s:4:\"name\";s:15:\"Url_alter tests\";s:11:\"description\";s:45:\"A support modules for url_alter hook testing.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:4:\"user\";O:8:\"stdClass\":11:{s:3:\"uri\";s:24:\"modules/user/user.module\";s:8:\"filename\";s:24:\"modules/user/user.module\";s:4:\"name\";s:4:\"user\";s:4:\"info\";a:13:{s:4:\"name\";s:4:\"User\";s:11:\"description\";s:47:\"Manages the user registration and login system.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.59\";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:\"1524673284\";s:12:\"dependencies\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7019\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:14:\"user_form_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:40:\"modules/user/tests/user_form_test.module\";s:8:\"filename\";s:40:\"modules/user/tests/user_form_test.module\";s:4:\"name\";s:14:\"user_form_test\";s:4:\"info\";a:11:{s:4:\"name\";s:22:\"User module form tests\";s:11:\"description\";s:37:\"Support module for user form testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:8:\"variable\";O:8:\"stdClass\":11:{s:3:\"uri\";s:42:\"sites/all/modules/variable/variable.module\";s:8:\"filename\";s:42:\"sites/all/modules/variable/variable.module\";s:4:\"name\";s:8:\"variable\";s:4:\"info\";a:10:{s:4:\"name\";s:8:\"Variable\";s:11:\"description\";s:43:\"Variable Information and basic variable API\";s:7:\"package\";s:8:\"Variable\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:9:{i:0;s:27:\"includes/forum.variable.inc\";i:1;s:28:\"includes/locale.variable.inc\";i:2;s:26:\"includes/menu.variable.inc\";i:3;s:26:\"includes/node.variable.inc\";i:4;s:28:\"includes/system.variable.inc\";i:5;s:30:\"includes/taxonomy.variable.inc\";i:6;s:33:\"includes/translation.variable.inc\";i:7;s:26:\"includes/user.variable.inc\";i:8;s:13:\"variable.test\";}s:7:\"version\";s:7:\"7.x-2.5\";s:7:\"project\";s:8:\"variable\";s:9:\"datestamp\";s:10:\"1398250128\";s:12:\"dependencies\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:24:{s:4:\"i18n\";a:1:{s:4:\"name\";s:8:\"variable\";}s:11:\"i18n_string\";a:1:{s:4:\"name\";s:8:\"variable\";}s:16:\"entity_test_i18n\";a:1:{s:4:\"name\";s:8:\"variable\";}s:16:\"i18n_translation\";a:1:{s:4:\"name\";s:8:\"variable\";}s:9:\"i18n_menu\";a:1:{s:4:\"name\";s:8:\"variable\";}s:28:\"entity_translation_i18n_menu\";a:1:{s:4:\"name\";s:8:\"variable\";}s:10:\"i18n_block\";a:1:{s:4:\"name\";s:8:\"variable\";}s:12:\"i18n_contact\";a:1:{s:4:\"name\";s:8:\"variable\";}s:10:\"i18n_field\";a:1:{s:4:\"name\";s:8:\"variable\";}s:13:\"i18n_taxonomy\";a:1:{s:4:\"name\";s:8:\"variable\";}s:9:\"i18n_node\";a:1:{s:4:\"name\";s:8:\"variable\";}s:10:\"i18n_forum\";a:1:{s:4:\"name\";s:8:\"variable\";}s:9:\"i18n_path\";a:1:{s:4:\"name\";s:8:\"variable\";}s:13:\"i18n_redirect\";a:1:{s:4:\"name\";s:8:\"variable\";}s:11:\"i18n_select\";a:1:{s:4:\"name\";s:8:\"variable\";}s:9:\"i18n_sync\";a:1:{s:4:\"name\";s:8:\"variable\";}s:9:\"i18n_test\";a:1:{s:4:\"name\";s:8:\"variable\";}s:14:\"variable_store\";a:1:{s:4:\"name\";s:8:\"variable\";}s:14:\"variable_realm\";a:1:{s:4:\"name\";s:8:\"variable\";}s:13:\"i18n_variable\";a:1:{s:4:\"name\";s:8:\"variable\";}s:9:\"i18n_user\";a:1:{s:4:\"name\";s:8:\"variable\";}s:14:\"variable_admin\";a:1:{s:4:\"name\";s:8:\"variable\";}s:16:\"variable_example\";a:1:{s:4:\"name\";s:8:\"variable\";}s:14:\"variable_views\";a:1:{s:4:\"name\";s:8:\"variable\";}}s:8:\"requires\";a:0:{}s:4:\"sort\";i:-28;}s:14:\"variable_admin\";O:8:\"stdClass\":11:{s:3:\"uri\";s:63:\"sites/all/modules/variable/variable_admin/variable_admin.module\";s:8:\"filename\";s:63:\"sites/all/modules/variable/variable_admin/variable_admin.module\";s:4:\"name\";s:14:\"variable_admin\";s:4:\"info\";a:10:{s:4:\"name\";s:14:\"Variable admin\";s:11:\"description\";s:26:\"Variable Administration UI\";s:12:\"dependencies\";a:1:{i:0;s:8:\"variable\";}s:7:\"package\";s:8:\"Variable\";s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:7:\"7.x-2.5\";s:7:\"project\";s:8:\"variable\";s:9:\"datestamp\";s:10:\"1398250128\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:1:{s:8:\"variable\";a:1:{s:4:\"name\";s:8:\"variable\";}}s:4:\"sort\";i:-122;}s:16:\"variable_example\";O:8:\"stdClass\":11:{s:3:\"uri\";s:67:\"sites/all/modules/variable/variable_example/variable_example.module\";s:8:\"filename\";s:67:\"sites/all/modules/variable/variable_example/variable_example.module\";s:4:\"name\";s:16:\"variable_example\";s:4:\"info\";a:10:{s:4:\"name\";s:16:\"Variable example\";s:11:\"description\";s:83:\"An example module showing how to use the Variable API and providing some variables.\";s:12:\"dependencies\";a:2:{i:0;s:8:\"variable\";i:1;s:14:\"variable_store\";}s:7:\"package\";s:15:\"Example modules\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:29:\"variable_example.variable.inc\";}s:7:\"version\";s:7:\"7.x-2.5\";s:7:\"project\";s:8:\"variable\";s:9:\"datestamp\";s:10:\"1398250128\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:2:{s:8:\"variable\";a:1:{s:4:\"name\";s:8:\"variable\";}s:14:\"variable_store\";a:1:{s:4:\"name\";s:14:\"variable_store\";}}s:4:\"sort\";i:-123;}s:14:\"variable_realm\";O:8:\"stdClass\":11:{s:3:\"uri\";s:63:\"sites/all/modules/variable/variable_realm/variable_realm.module\";s:8:\"filename\";s:63:\"sites/all/modules/variable/variable_realm/variable_realm.module\";s:4:\"name\";s:14:\"variable_realm\";s:4:\"info\";a:10:{s:4:\"name\";s:14:\"Variable realm\";s:11:\"description\";s:49:\"API to use variable realms from different modules\";s:12:\"dependencies\";a:1:{i:0;s:8:\"variable\";}s:7:\"package\";s:8:\"Variable\";s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:7:\"7.x-2.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:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7000\";s:6:\"weight\";s:5:\"-1000\";s:11:\"required_by\";a:2:{s:13:\"i18n_variable\";a:3:{s:4:\"name\";s:14:\"variable_realm\";s:16:\"original_version\";s:10:\" (7.x-2.x)\";s:8:\"versions\";a:2:{i:0;a:2:{s:2:\"op\";s:1:\"<\";s:7:\"version\";s:3:\"3.x\";}i:1;a:2:{s:2:\"op\";s:2:\">=\";s:7:\"version\";s:3:\"2.x\";}}}s:9:\"i18n_user\";a:3:{s:4:\"name\";s:14:\"variable_realm\";s:16:\"original_version\";s:10:\" (7.x-2.x)\";s:8:\"versions\";a:2:{i:0;a:2:{s:2:\"op\";s:1:\"<\";s:7:\"version\";s:3:\"3.x\";}i:1;a:2:{s:2:\"op\";s:2:\">=\";s:7:\"version\";s:3:\"2.x\";}}}}s:8:\"requires\";a:1:{s:8:\"variable\";a:1:{s:4:\"name\";s:8:\"variable\";}}s:4:\"sort\";i:-80;}s:14:\"variable_store\";O:8:\"stdClass\":11:{s:3:\"uri\";s:63:\"sites/all/modules/variable/variable_store/variable_store.module\";s:8:\"filename\";s:63:\"sites/all/modules/variable/variable_store/variable_store.module\";s:4:\"name\";s:14:\"variable_store\";s:4:\"info\";a:10:{s:4:\"name\";s:14:\"Variable store\";s:11:\"description\";s:60:\"Database storage for variable realms. This is an API module.\";s:12:\"dependencies\";a:1:{i:0;s:8:\"variable\";}s:7:\"package\";s:8:\"Variable\";s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:7:\"7.x-2.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:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7000\";s:6:\"weight\";s:5:\"-1000\";s:11:\"required_by\";a:3:{s:13:\"i18n_variable\";a:3:{s:4:\"name\";s:14:\"variable_store\";s:16:\"original_version\";s:10:\" (7.x-2.x)\";s:8:\"versions\";a:2:{i:0;a:2:{s:2:\"op\";s:1:\"<\";s:7:\"version\";s:3:\"3.x\";}i:1;a:2:{s:2:\"op\";s:2:\">=\";s:7:\"version\";s:3:\"2.x\";}}}s:9:\"i18n_user\";a:3:{s:4:\"name\";s:14:\"variable_store\";s:16:\"original_version\";s:10:\" (7.x-2.x)\";s:8:\"versions\";a:2:{i:0;a:2:{s:2:\"op\";s:1:\"<\";s:7:\"version\";s:3:\"3.x\";}i:1;a:2:{s:2:\"op\";s:2:\">=\";s:7:\"version\";s:3:\"2.x\";}}}s:16:\"variable_example\";a:1:{s:4:\"name\";s:14:\"variable_store\";}}s:8:\"requires\";a:1:{s:8:\"variable\";a:1:{s:4:\"name\";s:8:\"variable\";}}s:4:\"sort\";i:-79;}s:14:\"variable_views\";O:8:\"stdClass\":11:{s:3:\"uri\";s:63:\"sites/all/modules/variable/variable_views/variable_views.module\";s:8:\"filename\";s:63:\"sites/all/modules/variable/variable_views/variable_views.module\";s:4:\"name\";s:14:\"variable_views\";s:4:\"info\";a:10:{s:4:\"name\";s:14:\"Variable views\";s:11:\"description\";s:78:\"Provides views integration for variable, included a default variable argument.\";s:12:\"dependencies\";a:2:{i:0;s:8:\"variable\";i:1;s:5:\"views\";}s:7:\"package\";s:8:\"Variable\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:3:{i:0;s:51:\"includes/views_plugin_argument_default_variable.inc\";i:1;s:47:\"includes/views_handler_field_variable_title.inc\";i:2;s:47:\"includes/views_handler_field_variable_value.inc\";}s:7:\"version\";s:7:\"7.x-2.5\";s:7:\"project\";s:8:\"variable\";s:9:\"datestamp\";s:10:\"1398250128\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:3:{s:8:\"variable\";a:1:{s:4:\"name\";s:8:\"variable\";}s:5:\"views\";a:1:{s:4:\"name\";s:5:\"views\";}s:6:\"ctools\";a:1:{s:4:\"name\";s:6:\"ctools\";}}s:4:\"sort\";i:-124;}s:5:\"views\";O:8:\"stdClass\":11:{s:3:\"uri\";s:36:\"sites/all/modules/views/views.module\";s:8:\"filename\";s:36:\"sites/all/modules/views/views.module\";s:4:\"name\";s:5:\"views\";s:4:\"info\";a:11:{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: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:314:{i:0;s:31:\"handlers/views_handler_area.inc\";i:1;s:40:\"handlers/views_handler_area_messages.inc\";i:2;s:38:\"handlers/views_handler_area_result.inc\";i:3;s:36:\"handlers/views_handler_area_text.inc\";i:4;s:43:\"handlers/views_handler_area_text_custom.inc\";i:5;s:36:\"handlers/views_handler_area_view.inc\";i:6;s:35:\"handlers/views_handler_argument.inc\";i:7;s:40:\"handlers/views_handler_argument_date.inc\";i:8;s:43:\"handlers/views_handler_argument_formula.inc\";i:9;s:47:\"handlers/views_handler_argument_many_to_one.inc\";i:10;s:40:\"handlers/views_handler_argument_null.inc\";i:11;s:43:\"handlers/views_handler_argument_numeric.inc\";i:12;s:42:\"handlers/views_handler_argument_string.inc\";i:13;s:52:\"handlers/views_handler_argument_group_by_numeric.inc\";i:14;s:32:\"handlers/views_handler_field.inc\";i:15;s:40:\"handlers/views_handler_field_counter.inc\";i:16;s:40:\"handlers/views_handler_field_boolean.inc\";i:17;s:49:\"handlers/views_handler_field_contextual_links.inc\";i:18;s:48:\"handlers/views_handler_field_ctools_dropdown.inc\";i:19;s:39:\"handlers/views_handler_field_custom.inc\";i:20;s:37:\"handlers/views_handler_field_date.inc\";i:21;s:39:\"handlers/views_handler_field_entity.inc\";i:22;s:38:\"handlers/views_handler_field_links.inc\";i:23;s:39:\"handlers/views_handler_field_markup.inc\";i:24;s:37:\"handlers/views_handler_field_math.inc\";i:25;s:40:\"handlers/views_handler_field_numeric.inc\";i:26;s:47:\"handlers/views_handler_field_prerender_list.inc\";i:27;s:46:\"handlers/views_handler_field_time_interval.inc\";i:28;s:43:\"handlers/views_handler_field_serialized.inc\";i:29;s:45:\"handlers/views_handler_field_machine_name.inc\";i:30;s:36:\"handlers/views_handler_field_url.inc\";i:31;s:33:\"handlers/views_handler_filter.inc\";i:32;s:50:\"handlers/views_handler_filter_boolean_operator.inc\";i:33;s:57:\"handlers/views_handler_filter_boolean_operator_string.inc\";i:34;s:41:\"handlers/views_handler_filter_combine.inc\";i:35;s:38:\"handlers/views_handler_filter_date.inc\";i:36;s:42:\"handlers/views_handler_filter_equality.inc\";i:37;s:47:\"handlers/views_handler_filter_entity_bundle.inc\";i:38;s:50:\"handlers/views_handler_filter_group_by_numeric.inc\";i:39;s:45:\"handlers/views_handler_filter_in_operator.inc\";i:40;s:45:\"handlers/views_handler_filter_many_to_one.inc\";i:41;s:41:\"handlers/views_handler_filter_numeric.inc\";i:42;s:40:\"handlers/views_handler_filter_string.inc\";i:43;s:48:\"handlers/views_handler_filter_fields_compare.inc\";i:44;s:39:\"handlers/views_handler_relationship.inc\";i:45;s:53:\"handlers/views_handler_relationship_groupwise_max.inc\";i:46;s:31:\"handlers/views_handler_sort.inc\";i:47;s:36:\"handlers/views_handler_sort_date.inc\";i:48;s:39:\"handlers/views_handler_sort_formula.inc\";i:49;s:48:\"handlers/views_handler_sort_group_by_numeric.inc\";i:50;s:46:\"handlers/views_handler_sort_menu_hierarchy.inc\";i:51;s:38:\"handlers/views_handler_sort_random.inc\";i:52;s:17:\"includes/base.inc\";i:53;s:21:\"includes/handlers.inc\";i:54;s:20:\"includes/plugins.inc\";i:55;s:17:\"includes/view.inc\";i:56;s:60:\"modules/aggregator/views_handler_argument_aggregator_fid.inc\";i:57;s:60:\"modules/aggregator/views_handler_argument_aggregator_iid.inc\";i:58;s:69:\"modules/aggregator/views_handler_argument_aggregator_category_cid.inc\";i:59;s:64:\"modules/aggregator/views_handler_field_aggregator_title_link.inc\";i:60;s:62:\"modules/aggregator/views_handler_field_aggregator_category.inc\";i:61;s:70:\"modules/aggregator/views_handler_field_aggregator_item_description.inc\";i:62;s:57:\"modules/aggregator/views_handler_field_aggregator_xss.inc\";i:63;s:67:\"modules/aggregator/views_handler_filter_aggregator_category_cid.inc\";i:64;s:54:\"modules/aggregator/views_plugin_row_aggregator_rss.inc\";i:65;s:56:\"modules/book/views_plugin_argument_default_book_root.inc\";i:66;s:59:\"modules/comment/views_handler_argument_comment_user_uid.inc\";i:67;s:47:\"modules/comment/views_handler_field_comment.inc\";i:68;s:53:\"modules/comment/views_handler_field_comment_depth.inc\";i:69;s:52:\"modules/comment/views_handler_field_comment_link.inc\";i:70;s:60:\"modules/comment/views_handler_field_comment_link_approve.inc\";i:71;s:59:\"modules/comment/views_handler_field_comment_link_delete.inc\";i:72;s:57:\"modules/comment/views_handler_field_comment_link_edit.inc\";i:73;s:58:\"modules/comment/views_handler_field_comment_link_reply.inc\";i:74;s:57:\"modules/comment/views_handler_field_comment_node_link.inc\";i:75;s:56:\"modules/comment/views_handler_field_comment_username.inc\";i:76;s:61:\"modules/comment/views_handler_field_ncs_last_comment_name.inc\";i:77;s:56:\"modules/comment/views_handler_field_ncs_last_updated.inc\";i:78;s:52:\"modules/comment/views_handler_field_node_comment.inc\";i:79;s:57:\"modules/comment/views_handler_field_node_new_comments.inc\";i:80;s:62:\"modules/comment/views_handler_field_last_comment_timestamp.inc\";i:81;s:57:\"modules/comment/views_handler_filter_comment_user_uid.inc\";i:82;s:57:\"modules/comment/views_handler_filter_ncs_last_updated.inc\";i:83;s:53:\"modules/comment/views_handler_filter_node_comment.inc\";i:84;s:53:\"modules/comment/views_handler_sort_comment_thread.inc\";i:85;s:60:\"modules/comment/views_handler_sort_ncs_last_comment_name.inc\";i:86;s:55:\"modules/comment/views_handler_sort_ncs_last_updated.inc\";i:87;s:48:\"modules/comment/views_plugin_row_comment_rss.inc\";i:88;s:49:\"modules/comment/views_plugin_row_comment_view.inc\";i:89;s:52:\"modules/contact/views_handler_field_contact_link.inc\";i:90;s:43:\"modules/field/views_handler_field_field.inc\";i:91;s:59:\"modules/field/views_handler_relationship_entity_reverse.inc\";i:92;s:51:\"modules/field/views_handler_argument_field_list.inc\";i:93;s:57:\"modules/field/views_handler_filter_field_list_boolean.inc\";i:94;s:58:\"modules/field/views_handler_argument_field_list_string.inc\";i:95;s:49:\"modules/field/views_handler_filter_field_list.inc\";i:96;s:57:\"modules/filter/views_handler_field_filter_format_name.inc\";i:97;s:52:\"modules/locale/views_handler_field_node_language.inc\";i:98;s:53:\"modules/locale/views_handler_filter_node_language.inc\";i:99;s:54:\"modules/locale/views_handler_argument_locale_group.inc\";i:100;s:57:\"modules/locale/views_handler_argument_locale_language.inc\";i:101;s:51:\"modules/locale/views_handler_field_locale_group.inc\";i:102;s:54:\"modules/locale/views_handler_field_locale_language.inc\";i:103;s:55:\"modules/locale/views_handler_field_locale_link_edit.inc\";i:104;s:52:\"modules/locale/views_handler_filter_locale_group.inc\";i:105;s:55:\"modules/locale/views_handler_filter_locale_language.inc\";i:106;s:54:\"modules/locale/views_handler_filter_locale_version.inc\";i:107;s:51:\"modules/locale/views_handler_sort_node_language.inc\";i:108;s:53:\"modules/node/views_handler_argument_dates_various.inc\";i:109;s:53:\"modules/node/views_handler_argument_node_language.inc\";i:110;s:48:\"modules/node/views_handler_argument_node_nid.inc\";i:111;s:49:\"modules/node/views_handler_argument_node_type.inc\";i:112;s:48:\"modules/node/views_handler_argument_node_vid.inc\";i:113;s:57:\"modules/node/views_handler_argument_node_uid_revision.inc\";i:114;s:59:\"modules/node/views_handler_field_history_user_timestamp.inc\";i:115;s:41:\"modules/node/views_handler_field_node.inc\";i:116;s:46:\"modules/node/views_handler_field_node_link.inc\";i:117;s:53:\"modules/node/views_handler_field_node_link_delete.inc\";i:118;s:51:\"modules/node/views_handler_field_node_link_edit.inc\";i:119;s:50:\"modules/node/views_handler_field_node_revision.inc\";i:120;s:55:\"modules/node/views_handler_field_node_revision_link.inc\";i:121;s:62:\"modules/node/views_handler_field_node_revision_link_delete.inc\";i:122;s:62:\"modules/node/views_handler_field_node_revision_link_revert.inc\";i:123;s:46:\"modules/node/views_handler_field_node_path.inc\";i:124;s:46:\"modules/node/views_handler_field_node_type.inc\";i:125;s:55:\"modules/node/views_handler_field_node_version_count.inc\";i:126;s:60:\"modules/node/views_handler_filter_history_user_timestamp.inc\";i:127;s:49:\"modules/node/views_handler_filter_node_access.inc\";i:128;s:49:\"modules/node/views_handler_filter_node_status.inc\";i:129;s:47:\"modules/node/views_handler_filter_node_type.inc\";i:130;s:55:\"modules/node/views_handler_filter_node_uid_revision.inc\";i:131;s:56:\"modules/node/views_handler_filter_node_version_count.inc\";i:132;s:54:\"modules/node/views_handler_sort_node_version_count.inc\";i:133;s:51:\"modules/node/views_plugin_argument_default_node.inc\";i:134;s:52:\"modules/node/views_plugin_argument_validate_node.inc\";i:135;s:42:\"modules/node/views_plugin_row_node_rss.inc\";i:136;s:43:\"modules/node/views_plugin_row_node_view.inc\";i:137;s:52:\"modules/profile/views_handler_field_profile_date.inc\";i:138;s:52:\"modules/profile/views_handler_field_profile_list.inc\";i:139;s:58:\"modules/profile/views_handler_filter_profile_selection.inc\";i:140;s:48:\"modules/search/views_handler_argument_search.inc\";i:141;s:51:\"modules/search/views_handler_field_search_score.inc\";i:142;s:46:\"modules/search/views_handler_filter_search.inc\";i:143;s:50:\"modules/search/views_handler_sort_search_score.inc\";i:144;s:47:\"modules/search/views_plugin_row_search_view.inc\";i:145;s:57:\"modules/statistics/views_handler_field_accesslog_path.inc\";i:146;s:65:\"modules/statistics/views_handler_field_node_counter_timestamp.inc\";i:147;s:61:\"modules/statistics/views_handler_field_statistics_numeric.inc\";i:148;s:50:\"modules/system/views_handler_argument_file_fid.inc\";i:149;s:43:\"modules/system/views_handler_field_file.inc\";i:150;s:53:\"modules/system/views_handler_field_file_extension.inc\";i:151;s:52:\"modules/system/views_handler_field_file_filemime.inc\";i:152;s:47:\"modules/system/views_handler_field_file_uri.inc\";i:153;s:50:\"modules/system/views_handler_field_file_status.inc\";i:154;s:51:\"modules/system/views_handler_filter_file_status.inc\";i:155;s:52:\"modules/taxonomy/views_handler_argument_taxonomy.inc\";i:156;s:57:\"modules/taxonomy/views_handler_argument_term_node_tid.inc\";i:157;s:63:\"modules/taxonomy/views_handler_argument_term_node_tid_depth.inc\";i:158;s:68:\"modules/taxonomy/views_handler_argument_term_node_tid_depth_join.inc\";i:159;s:72:\"modules/taxonomy/views_handler_argument_term_node_tid_depth_modifier.inc\";i:160;s:58:\"modules/taxonomy/views_handler_argument_vocabulary_vid.inc\";i:161;s:67:\"modules/taxonomy/views_handler_argument_vocabulary_machine_name.inc\";i:162;s:49:\"modules/taxonomy/views_handler_field_taxonomy.inc\";i:163;s:54:\"modules/taxonomy/views_handler_field_term_node_tid.inc\";i:164;s:55:\"modules/taxonomy/views_handler_field_term_link_edit.inc\";i:165;s:55:\"modules/taxonomy/views_handler_filter_term_node_tid.inc\";i:166;s:61:\"modules/taxonomy/views_handler_filter_term_node_tid_depth.inc\";i:167;s:66:\"modules/taxonomy/views_handler_filter_term_node_tid_depth_join.inc\";i:168;s:56:\"modules/taxonomy/views_handler_filter_vocabulary_vid.inc\";i:169;s:65:\"modules/taxonomy/views_handler_filter_vocabulary_machine_name.inc\";i:170;s:62:\"modules/taxonomy/views_handler_relationship_node_term_data.inc\";i:171;s:65:\"modules/taxonomy/views_plugin_argument_validate_taxonomy_term.inc\";i:172;s:63:\"modules/taxonomy/views_plugin_argument_default_taxonomy_tid.inc\";i:173;s:67:\"modules/tracker/views_handler_argument_tracker_comment_user_uid.inc\";i:174;s:65:\"modules/tracker/views_handler_filter_tracker_comment_user_uid.inc\";i:175;s:65:\"modules/tracker/views_handler_filter_tracker_boolean_operator.inc\";i:176;s:51:\"modules/system/views_handler_filter_system_type.inc\";i:177;s:56:\"modules/translation/views_handler_argument_node_tnid.inc\";i:178;s:63:\"modules/translation/views_handler_field_node_link_translate.inc\";i:179;s:65:\"modules/translation/views_handler_field_node_translation_link.inc\";i:180;s:54:\"modules/translation/views_handler_filter_node_tnid.inc\";i:181;s:60:\"modules/translation/views_handler_filter_node_tnid_child.inc\";i:182;s:62:\"modules/translation/views_handler_relationship_translation.inc\";i:183;s:48:\"modules/user/views_handler_argument_user_uid.inc\";i:184;s:55:\"modules/user/views_handler_argument_users_roles_rid.inc\";i:185;s:41:\"modules/user/views_handler_field_user.inc\";i:186;s:50:\"modules/user/views_handler_field_user_language.inc\";i:187;s:46:\"modules/user/views_handler_field_user_link.inc\";i:188;s:53:\"modules/user/views_handler_field_user_link_cancel.inc\";i:189;s:51:\"modules/user/views_handler_field_user_link_edit.inc\";i:190;s:46:\"modules/user/views_handler_field_user_mail.inc\";i:191;s:46:\"modules/user/views_handler_field_user_name.inc\";i:192;s:53:\"modules/user/views_handler_field_user_permissions.inc\";i:193;s:49:\"modules/user/views_handler_field_user_picture.inc\";i:194;s:47:\"modules/user/views_handler_field_user_roles.inc\";i:195;s:50:\"modules/user/views_handler_filter_user_current.inc\";i:196;s:47:\"modules/user/views_handler_filter_user_name.inc\";i:197;s:54:\"modules/user/views_handler_filter_user_permissions.inc\";i:198;s:48:\"modules/user/views_handler_filter_user_roles.inc\";i:199;s:59:\"modules/user/views_plugin_argument_default_current_user.inc\";i:200;s:51:\"modules/user/views_plugin_argument_default_user.inc\";i:201;s:52:\"modules/user/views_plugin_argument_validate_user.inc\";i:202;s:43:\"modules/user/views_plugin_row_user_view.inc\";i:203;s:31:\"plugins/views_plugin_access.inc\";i:204;s:36:\"plugins/views_plugin_access_none.inc\";i:205;s:36:\"plugins/views_plugin_access_perm.inc\";i:206;s:36:\"plugins/views_plugin_access_role.inc\";i:207;s:41:\"plugins/views_plugin_argument_default.inc\";i:208;s:45:\"plugins/views_plugin_argument_default_php.inc\";i:209;s:47:\"plugins/views_plugin_argument_default_fixed.inc\";i:210;s:45:\"plugins/views_plugin_argument_default_raw.inc\";i:211;s:42:\"plugins/views_plugin_argument_validate.inc\";i:212;s:50:\"plugins/views_plugin_argument_validate_numeric.inc\";i:213;s:46:\"plugins/views_plugin_argument_validate_php.inc\";i:214;s:30:\"plugins/views_plugin_cache.inc\";i:215;s:35:\"plugins/views_plugin_cache_none.inc\";i:216;s:35:\"plugins/views_plugin_cache_time.inc\";i:217;s:32:\"plugins/views_plugin_display.inc\";i:218;s:43:\"plugins/views_plugin_display_attachment.inc\";i:219;s:38:\"plugins/views_plugin_display_block.inc\";i:220;s:40:\"plugins/views_plugin_display_default.inc\";i:221;s:38:\"plugins/views_plugin_display_embed.inc\";i:222;s:41:\"plugins/views_plugin_display_extender.inc\";i:223;s:37:\"plugins/views_plugin_display_feed.inc\";i:224;s:37:\"plugins/views_plugin_display_page.inc\";i:225;s:43:\"plugins/views_plugin_exposed_form_basic.inc\";i:226;s:37:\"plugins/views_plugin_exposed_form.inc\";i:227;s:52:\"plugins/views_plugin_exposed_form_input_required.inc\";i:228;s:42:\"plugins/views_plugin_localization_core.inc\";i:229;s:37:\"plugins/views_plugin_localization.inc\";i:230;s:42:\"plugins/views_plugin_localization_none.inc\";i:231;s:30:\"plugins/views_plugin_pager.inc\";i:232;s:35:\"plugins/views_plugin_pager_full.inc\";i:233;s:35:\"plugins/views_plugin_pager_mini.inc\";i:234;s:35:\"plugins/views_plugin_pager_none.inc\";i:235;s:35:\"plugins/views_plugin_pager_some.inc\";i:236;s:30:\"plugins/views_plugin_query.inc\";i:237;s:38:\"plugins/views_plugin_query_default.inc\";i:238;s:28:\"plugins/views_plugin_row.inc\";i:239;s:35:\"plugins/views_plugin_row_fields.inc\";i:240;s:39:\"plugins/views_plugin_row_rss_fields.inc\";i:241;s:30:\"plugins/views_plugin_style.inc\";i:242;s:38:\"plugins/views_plugin_style_default.inc\";i:243;s:35:\"plugins/views_plugin_style_grid.inc\";i:244;s:35:\"plugins/views_plugin_style_list.inc\";i:245;s:40:\"plugins/views_plugin_style_jump_menu.inc\";i:246;s:38:\"plugins/views_plugin_style_mapping.inc\";i:247;s:34:\"plugins/views_plugin_style_rss.inc\";i:248;s:38:\"plugins/views_plugin_style_summary.inc\";i:249;s:48:\"plugins/views_plugin_style_summary_jump_menu.inc\";i:250;s:50:\"plugins/views_plugin_style_summary_unformatted.inc\";i:251;s:36:\"plugins/views_plugin_style_table.inc\";i:252;s:34:\"tests/handlers/views_handlers.test\";i:253;s:43:\"tests/handlers/views_handler_area_text.test\";i:254;s:47:\"tests/handlers/views_handler_argument_null.test\";i:255;s:49:\"tests/handlers/views_handler_argument_string.test\";i:256;s:39:\"tests/handlers/views_handler_field.test\";i:257;s:47:\"tests/handlers/views_handler_field_boolean.test\";i:258;s:46:\"tests/handlers/views_handler_field_custom.test\";i:259;s:47:\"tests/handlers/views_handler_field_counter.test\";i:260;s:44:\"tests/handlers/views_handler_field_date.test\";i:261;s:54:\"tests/handlers/views_handler_field_file_extension.test\";i:262;s:49:\"tests/handlers/views_handler_field_file_size.test\";i:263;s:44:\"tests/handlers/views_handler_field_math.test\";i:264;s:43:\"tests/handlers/views_handler_field_url.test\";i:265;s:43:\"tests/handlers/views_handler_field_xss.test\";i:266;s:48:\"tests/handlers/views_handler_filter_combine.test\";i:267;s:45:\"tests/handlers/views_handler_filter_date.test\";i:268;s:49:\"tests/handlers/views_handler_filter_equality.test\";i:269;s:52:\"tests/handlers/views_handler_filter_in_operator.test\";i:270;s:48:\"tests/handlers/views_handler_filter_numeric.test\";i:271;s:47:\"tests/handlers/views_handler_filter_string.test\";i:272;s:45:\"tests/handlers/views_handler_sort_random.test\";i:273;s:43:\"tests/handlers/views_handler_sort_date.test\";i:274;s:38:\"tests/handlers/views_handler_sort.test\";i:275;s:46:\"tests/test_handlers/views_test_area_access.inc\";i:276;s:60:\"tests/test_plugins/views_test_plugin_access_test_dynamic.inc\";i:277;s:59:\"tests/test_plugins/views_test_plugin_access_test_static.inc\";i:278;s:59:\"tests/test_plugins/views_test_plugin_style_test_mapping.inc\";i:279;s:39:\"tests/plugins/views_plugin_display.test\";i:280;s:46:\"tests/styles/views_plugin_style_jump_menu.test\";i:281;s:36:\"tests/styles/views_plugin_style.test\";i:282;s:41:\"tests/styles/views_plugin_style_base.test\";i:283;s:44:\"tests/styles/views_plugin_style_mapping.test\";i:284;s:48:\"tests/styles/views_plugin_style_unformatted.test\";i:285;s:23:\"tests/views_access.test\";i:286;s:24:\"tests/views_analyze.test\";i:287;s:22:\"tests/views_basic.test\";i:288;s:21:\"tests/views_ajax.test\";i:289;s:33:\"tests/views_argument_default.test\";i:290;s:35:\"tests/views_argument_validator.test\";i:291;s:29:\"tests/views_exposed_form.test\";i:292;s:31:\"tests/field/views_fieldapi.test\";i:293;s:25:\"tests/views_glossary.test\";i:294;s:24:\"tests/views_groupby.test\";i:295;s:25:\"tests/views_handlers.test\";i:296;s:23:\"tests/views_module.test\";i:297;s:22:\"tests/views_pager.test\";i:298;s:40:\"tests/views_plugin_localization_test.inc\";i:299;s:29:\"tests/views_translatable.test\";i:300;s:22:\"tests/views_query.test\";i:301;s:24:\"tests/views_upgrade.test\";i:302;s:34:\"tests/views_test.views_default.inc\";i:303;s:58:\"tests/comment/views_handler_argument_comment_user_uid.test\";i:304;s:56:\"tests/comment/views_handler_filter_comment_user_uid.test\";i:305;s:45:\"tests/node/views_node_revision_relations.test\";i:306;s:61:\"tests/taxonomy/views_handler_relationship_node_term_data.test\";i:307;s:45:\"tests/user/views_handler_field_user_name.test\";i:308;s:43:\"tests/user/views_user_argument_default.test\";i:309;s:44:\"tests/user/views_user_argument_validate.test\";i:310;s:26:\"tests/user/views_user.test\";i:311;s:22:\"tests/views_cache.test\";i:312;s:21:\"tests/views_view.test\";i:313;s:19:\"tests/views_ui.test\";}s:7:\"version\";s:8:\"7.x-3.20\";s:7:\"project\";s:5:\"views\";s:9:\"datestamp\";s:10:\"1523668093\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:4:\"7302\";s:6:\"weight\";s:2:\"10\";s:11:\"required_by\";a:9:{s:13:\"features_test\";a:1:{s:4:\"name\";s:5:\"views\";}s:8:\"views_ui\";a:1:{s:4:\"name\";s:5:\"views\";}s:9:\"gmap_test\";a:1:{s:4:\"name\";s:5:\"views\";}s:18:\"gmap_test_extended\";a:1:{s:4:\"name\";s:5:\"views\";}s:19:\"juicebox_views_test\";a:1:{s:4:\"name\";s:5:\"views\";}s:14:\"variable_views\";a:1:{s:4:\"name\";s:5:\"views\";}s:13:\"views_content\";a:1:{s:4:\"name\";s:5:\"views\";}s:14:\"views_stylizer\";a:1:{s:4:\"name\";s:5:\"views\";}s:10:\"views_test\";a:1:{s:4:\"name\";s:5:\"views\";}}s:8:\"requires\";a:1:{s:6:\"ctools\";a:1:{s:4:\"name\";s:6:\"ctools\";}}s:4:\"sort\";i:-45;}s:13:\"views_content\";O:8:\"stdClass\":11:{s:3:\"uri\";s:59:\"sites/all/modules/ctools/views_content/views_content.module\";s:8:\"filename\";s:59:\"sites/all/modules/ctools/views_content/views_content.module\";s:4:\"name\";s:13:\"views_content\";s:4:\"info\";a:10:{s:4:\"name\";s:19:\"Views content panes\";s:11:\"description\";s:104:\"Allows Views content to be used in Panels, Dashboard and other modules which use the CTools Content API.\";s:7:\"package\";s:16:\"Chaos tool suite\";s:12:\"dependencies\";a:2:{i:0;s:6:\"ctools\";i:1;s:5:\"views\";}s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:8:\"7.x-1.14\";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:\"1519455788\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:2:{s:6:\"ctools\";a:1:{s:4:\"name\";s:6:\"ctools\";}s:5:\"views\";a:1:{s:4:\"name\";s:5:\"views\";}}s:4:\"sort\";i:-125;}s:14:\"views_stylizer\";O:8:\"stdClass\":11:{s:3:\"uri\";s:54:\"sites/all/modules/views_stylizer/views_stylizer.module\";s:8:\"filename\";s:54:\"sites/all/modules/views_stylizer/views_stylizer.module\";s:4:\"name\";s:14:\"views_stylizer\";s:4:\"info\";a:11:{s:4:\"name\";s:14:\"Views Stylizer\";s:11:\"description\";s:55:\"Allows custom HTML widgets to be applied as Views Style\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:5:\"Sauce\";s:12:\"dependencies\";a:2:{i:0;s:5:\"views\";i:1;s:25:\"dynamic_fieldable_content\";}s:9:\"configure\";s:27:\"default-views-stylizer-view\";s:5:\"files\";a:1:{i:0;s:45:\"plugins/views_plugin_style_views_stylizer.inc\";}s:7:\"version\";s:7:\"7.x-1.3\";s:7:\"project\";s:14:\"views_stylizer\";s:9:\"datestamp\";s:10:\"1397840028\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:3:{s:5:\"views\";a:1:{s:4:\"name\";s:5:\"views\";}s:6:\"ctools\";a:1:{s:4:\"name\";s:6:\"ctools\";}s:25:\"dynamic_fieldable_content\";a:1:{s:4:\"name\";s:25:\"dynamic_fieldable_content\";}}s:4:\"sort\";i:-126;}s:10:\"views_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:47:\"sites/all/modules/views/tests/views_test.module\";s:8:\"filename\";s:47:\"sites/all/modules/views/tests/views_test.module\";s:4:\"name\";s:10:\"views_test\";s:4:\"info\";a:11:{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:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:2:{s:5:\"views\";a:1:{s:4:\"name\";s:5:\"views\";}s:6:\"ctools\";a:1:{s:4:\"name\";s:6:\"ctools\";}}s:4:\"sort\";i:-127;}s:8:\"views_ui\";O:8:\"stdClass\":11:{s:3:\"uri\";s:39:\"sites/all/modules/views/views_ui.module\";s:8:\"filename\";s:39:\"sites/all/modules/views/views_ui.module\";s:4:\"name\";s:8:\"views_ui\";s:4:\"info\";a:12:{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:34:\"# @codingStandardsIgnoreLine\nfiles\";a:1:{i:0;s:15:\"views_ui.module\";}s:5:\"files\";a:1:{i:0;s:57:\"plugins/views_wizard/views_ui_base_views_wizard.class.php\";}s:7:\"version\";s:8:\"7.x-3.20\";s:7:\"project\";s:5:\"views\";s:9:\"datestamp\";s:10:\"1523668093\";s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"1\";s:14:\"schema_version\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:2:{s:9:\"gmap_test\";a:1:{s:4:\"name\";s:8:\"views_ui\";}s:18:\"gmap_test_extended\";a:1:{s:4:\"name\";s:8:\"views_ui\";}}s:8:\"requires\";a:2:{s:5:\"views\";a:1:{s:4:\"name\";s:5:\"views\";}s:6:\"ctools\";a:1:{s:4:\"name\";s:6:\"ctools\";}}s:4:\"sort\";i:-63;}s:11:\"xmlrpc_test\";O:8:\"stdClass\":11:{s:3:\"uri\";s:43:\"modules/simpletest/tests/xmlrpc_test.module\";s:8:\"filename\";s:43:\"modules/simpletest/tests/xmlrpc_test.module\";s:4:\"name\";s:11:\"xmlrpc_test\";s:4:\"info\";a:11:{s:4:\"name\";s:12:\"XML-RPC Test\";s:11:\"description\";s:75:\"Support module for XML-RPC tests according to the validator1 specification.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:12:\"dependencies\";a:0:{}s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}s:4:\"type\";s:6:\"module\";s:6:\"status\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}}}',0,1538756379,1);
/*!40000 ALTER TABLE `cache_features` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cache_field`
--

DROP TABLE IF EXISTS `cache_field`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cache_field` (
  `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
  `data` longblob DEFAULT NULL COMMENT 'A collection of data to cache.',
  `expire` int(11) NOT NULL DEFAULT 0 COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
  `created` int(11) NOT NULL DEFAULT 0 COMMENT 'A Unix timestamp indicating when the cache entry was created.',
  `serialized` smallint(6) NOT NULL DEFAULT 0 COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
  PRIMARY KEY (`cid`),
  KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Generic cache table for caching things not separated out...';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cache_field`
--

LOCK TABLES `cache_field` WRITE;
/*!40000 ALTER TABLE `cache_field` DISABLE KEYS */;
INSERT INTO `cache_field` VALUES ('field:node:1','a:2:{s:4:\"body\";a:1:{s:3:\"und\";a:1:{i:0;a:5:{s:5:\"value\";s:2:\"\r\n\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:0:\"\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:3:\"und\";a:1:{i:0;a:3:{s:5:\"value\";s:14:\"MORSea Gallery\";s:6:\"format\";N;s:10:\"safe_value\";s:14:\"MORSea Gallery\";}}}}',0,1550775912,1),('field:node:108','a:2:{s:4:\"body\";a:1:{s:2:\"en\";a:1:{i:0;a:5:{s:5:\"value\";s:1514:\"<h1 align= \"center\"><strong>HOW FLOATS WORK</strong></h1>\r\n</br>\r\n<p align=\"justify\">The idea beneath the oceanographic use of deriving platform to sample the water column is to overpass limitation in sampling due to ship costs, sea-weather conditions, geographical limitations and ultimately the use of human resources. Nowadays floats offer the most cost-effective solution to this needs. The oceanographic data are collected by battery-powered autonomous floats that spend most of their life drifting at depth where they are stabilized by being neutrally buoyant at the \"parking depth\" pressure by having a density equal to the ambient pressure and a compressibility that is less than that of sea water.</p>\r\n<div align=\"center\"><img alt=\"\" src=\"/sites/default/files/argo_2.png\"/></div>\r\n<p align=\"center\"><strong>Figure 2. Scheme of the operation of the floats in the sea.</b></strong>\r\n<p align=\"justify\">At present there are several models of profiling float. All work in a similar fashion but differ somewhat in their design characteristics. At typically 10-day intervals, the floats pump fluid into an external bladder and rise to the surface over about 6 hours while measuring temperature and salinity. Satellites or GPS determine the position of the floats when they surface, and the floats transmit their data to the satellites. The bladder then deflates and the float returns to its original density and sinks to drift until the cycle is repeated. Floats are designed to make about 150 such cycles.</p>\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:1512:\"<h1 align=\"center\"><strong>HOW FLOATS WORK</strong></h1>\n<p></p>\n<p align=\"justify\">The idea beneath the oceanographic use of deriving platform to sample the water column is to overpass limitation in sampling due to ship costs, sea-weather conditions, geographical limitations and ultimately the use of human resources. Nowadays floats offer the most cost-effective solution to this needs. The oceanographic data are collected by battery-powered autonomous floats that spend most of their life drifting at depth where they are stabilized by being neutrally buoyant at the \"parking depth\" pressure by having a density equal to the ambient pressure and a compressibility that is less than that of sea water.</p>\n<div align=\"center\"><img alt=\"\" src=\"/sites/default/files/argo_2.png\" /></div>\n<p align=\"center\"><strong>Figure 2. Scheme of the operation of the floats in the sea.</strong></p>\n<p align=\"justify\">At present there are several models of profiling float. All work in a similar fashion but differ somewhat in their design characteristics. At typically 10-day intervals, the floats pump fluid into an external bladder and rise to the surface over about 6 hours while measuring temperature and salinity. Satellites or GPS determine the position of the floats when they surface, and the floats transmit their data to the satellites. The bladder then deflates and the float returns to its original density and sinks to drift until the cycle is repeated. Floats are designed to make about 150 such cycles.</p>\n\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:2:\"en\";a:1:{i:0;a:3:{s:5:\"value\";s:16:\"ARGO functioning\";s:6:\"format\";N;s:10:\"safe_value\";s:16:\"ARGO functioning\";}}}}',0,1538946684,1),('field:node:109','a:2:{s:4:\"body\";a:1:{s:2:\"en\";a:1:{i:0;a:5:{s:5:\"value\";s:2389:\"<h1 align= \"center\"><strong>ARGO</strong></h1>\r\n</br>\r\n<p align=\"justify\">The origins of ARGO (Array for Real-time Geostrophic Oceanography) can be found in the 1990-1997 World Ocean Circulation Experiment (WOCE). WOCE is part of the World Climate Research Programme (WCRP) and set out to collect an unprecedented set of observations.</p>\r\n<p align=\"justify\">The research program is based on the use of profiling floats that are battery-powered autonomous floats that spend most of their life drifting at depth. At typically 10-day intervals the floats pump rise to the surface while measuring temperature and salinity data that are then transmitted via satellite.</p>\r\n<p align=\"justify\">Float reliability has improved almost every year and the float lifetime has been extended. ARGO has developed a large user community in universities, government labs and meteorological/climate analysis/forecasting centers. The need for global ARGO observations will continue indefinitely into the future, though the technologies and design of the array will evolve as better instruments are built, models are improved, and more is learned about ocean variability.</p>\r\n<p align=\"justify\">ARGO deployments began in 2000 and by November 2007 the millionth profile was collected. Today, even with more than 3600 active floats, there are still some areas of the ocean that are over-populated while others have gaps that need to be filled with additional floats. Today\'s (July 2015) tally of floats is shown in the figure below. To maintain the ARGO array, national programs need to provide about 800 floats per year.</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/argo_1.png\"/></div>\r\n<p align=\"center\"><strong>Figure 1. Positions of the floats that have delivered data within the last 30 days.</b></strong>\r\n<p align=\"justify\">With over 3200 floats reporting free, ARGO provides a relevant, global ocean data set. The temperature, salinity and velocity data from ARGO can teach everything from basic concepts, like the temperature of the ocean and how to read graphs, to more complicated ones like analyzing ocean data over time and climate change issues.</p>\r\n<p align=\"justify\">More details can be found on the official ARGO web site: <a href=\"http://nettuno.ogs.trieste.it/sire/medargo/active/it_table_out.php?live=*\">http://nettuno.ogs.trieste.it/sire/medargo/active/it_table_out.php?live=*</a></p>\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:2383:\"<h1 align=\"center\"><strong>ARGO</strong></h1>\n<p></p>\n<p align=\"justify\">The origins of ARGO (Array for Real-time Geostrophic Oceanography) can be found in the 1990-1997 World Ocean Circulation Experiment (WOCE). WOCE is part of the World Climate Research Programme (WCRP) and set out to collect an unprecedented set of observations.</p>\n<p align=\"justify\">The research program is based on the use of profiling floats that are battery-powered autonomous floats that spend most of their life drifting at depth. At typically 10-day intervals the floats pump rise to the surface while measuring temperature and salinity data that are then transmitted via satellite.</p>\n<p align=\"justify\">Float reliability has improved almost every year and the float lifetime has been extended. ARGO has developed a large user community in universities, government labs and meteorological/climate analysis/forecasting centers. The need for global ARGO observations will continue indefinitely into the future, though the technologies and design of the array will evolve as better instruments are built, models are improved, and more is learned about ocean variability.</p>\n<p align=\"justify\">ARGO deployments began in 2000 and by November 2007 the millionth profile was collected. Today, even with more than 3600 active floats, there are still some areas of the ocean that are over-populated while others have gaps that need to be filled with additional floats. Today\'s (July 2015) tally of floats is shown in the figure below. To maintain the ARGO array, national programs need to provide about 800 floats per year.</p>\n<div><img alt=\"\" src=\"/sites/default/files/argo_1.png\" /></div>\n<p align=\"center\"><strong>Figure 1. Positions of the floats that have delivered data within the last 30 days.</strong></p>\n<p align=\"justify\">With over 3200 floats reporting free, ARGO provides a relevant, global ocean data set. The temperature, salinity and velocity data from ARGO can teach everything from basic concepts, like the temperature of the ocean and how to read graphs, to more complicated ones like analyzing ocean data over time and climate change issues.</p>\n<p align=\"justify\">More details can be found on the official ARGO web site: <a href=\"http://nettuno.ogs.trieste.it/sire/medargo/active/it_table_out.php?live=*\">http://nettuno.ogs.trieste.it/sire/medargo/active/it_table_out.php?live=*</a></p>\n\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:2:\"en\";a:1:{i:0;a:3:{s:5:\"value\";s:4:\"ARGO\";s:6:\"format\";N;s:10:\"safe_value\";s:4:\"ARGO\";}}}}',0,1539007815,1),('field:node:110','a:2:{s:4:\"body\";a:1:{s:2:\"en\";a:1:{i:0;a:5:{s:5:\"value\";s:5182:\"<h1 align= \"center\"><strong>ARGO float activities in 2013</strong></h1>\r\n</br>\r\n<p align=\"justify\">The total effort of the 2013 consists in the deployment of 3 floats.</p>\r\n<p align=\"justify\">An Italian profiling float was deployed in the Ross Sea on 6 January 2013 from R/V Araon (South Korea). This float is an Arvor-I instrument manufactured by NKE in France. It is anchored and cycles between the surface and 1000 dbar every 1 day It measures temperature and salinity at each ascent, and transmits data to the Iridium satellite system when at surface where it is localized by GPS. This deployment in ice-free coastal Ross Sea in winter 2013 is part of the T-Rex experiment in collaboration with the KOPRI (Korea Polar Research Institute), and SOChIC (SouthernOcean ObservingSystem and ChokePoints: Italian Contribution).</p>\r\n<p align=\"justify\">The aim is to extend the time series of observations in the polynya using for the first time one ARGO Float anchored to 1100 m in depth (see diagram in figure 3) in such a way that have a profile per day of salinity and temperature of the entire water column from 1000 m depth to surface with a resolution of 20 m from 1000 to 500 m, 10 m from 500 to 250 m and 5 m from 250 m to surface.</p>\r\n<div align=\"center\"><img alt=\"\" src=\"/sites/default/files/argo_5.png\"/></div>\r\n<p align=\"center\"><strong>Figure 3. Diagram of float anchored at Terra Nova Bay.</b></strong>\r\n<p align=\"justify\">Unfortunately after 1 cycle this float encountered functioning problems and stopped transmitting data and only 29 profiles were obtained. In general, the reasons for theses failures are still unknown. They will be investigated in collaboration with the manufacturer NKE.</p>\r\n<p align=\"justify\">Two Italian profiling floats were deployed in the SO on 10 January 2013 from R/V Araon (South Korea).</p>\r\n<p align=\"justify\">The launch position established will allow ARGO Float to follow the path of the Antarctic Circumpolar Current and characterize the thermohaline structure, obviously as long as they will be working and will send data.</p>\r\n<p align=\"justify\">These floats are Arvor-I instruments manufactured by NKE in France. They cycle between the surface and 2000 dbar every 10 days and drift at the parking depth of 1000 dbar. They measure temperature and salinity at each ascent, and transmit data to the Iridium satellite system when at surface where it is localized by GPS. </p>\r\n<table align=\"center\">\r\n	<tbody>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Float model</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; text-align:center; font-weight: bold;\">Float WMO</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Deploy Date</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Lat</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Lon</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Arvor I - 2</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901813</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">06-Jan-2013 19:20</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-75.09</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">164.88</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Arvor I - 2</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901814</p>\r\n			</td> \r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">10-Jan-2013 07:55</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-61.5</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">178.67</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Arvor I - 2</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901815</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">10-Jan-2013 15:24</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-60</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">178.26</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n<p align=\"center\"><strong>Table 2 Status information for the 3 Italian floats in the SO during 2013. Updated positions, status and cycles number are available at  <a href=\"http://nettuno.ogs.trieste.it/sire/medargo/active/it_table_out.php?live=*\">http://nettuno.ogs.trieste.it/sire/medargo/active/it_table_out.php?live=*</a></b></strong></p>\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:4643:\"<h1 align=\"center\"><strong>ARGO float activities in 2013</strong></h1>\n<p></p>\n<p align=\"justify\">The total effort of the 2013 consists in the deployment of 3 floats.</p>\n<p align=\"justify\">An Italian profiling float was deployed in the Ross Sea on 6 January 2013 from R/V Araon (South Korea). This float is an Arvor-I instrument manufactured by NKE in France. It is anchored and cycles between the surface and 1000 dbar every 1 day It measures temperature and salinity at each ascent, and transmits data to the Iridium satellite system when at surface where it is localized by GPS. This deployment in ice-free coastal Ross Sea in winter 2013 is part of the T-Rex experiment in collaboration with the KOPRI (Korea Polar Research Institute), and SOChIC (SouthernOcean ObservingSystem and ChokePoints: Italian Contribution).</p>\n<p align=\"justify\">The aim is to extend the time series of observations in the polynya using for the first time one ARGO Float anchored to 1100 m in depth (see diagram in figure 3) in such a way that have a profile per day of salinity and temperature of the entire water column from 1000 m depth to surface with a resolution of 20 m from 1000 to 500 m, 10 m from 500 to 250 m and 5 m from 250 m to surface.</p>\n<div align=\"center\"><img alt=\"\" src=\"/sites/default/files/argo_5.png\" /></div>\n<p align=\"center\"><strong>Figure 3. Diagram of float anchored at Terra Nova Bay.</strong></p>\n<p align=\"justify\">Unfortunately after 1 cycle this float encountered functioning problems and stopped transmitting data and only 29 profiles were obtained. In general, the reasons for theses failures are still unknown. They will be investigated in collaboration with the manufacturer NKE.</p>\n<p align=\"justify\">Two Italian profiling floats were deployed in the SO on 10 January 2013 from R/V Araon (South Korea).</p>\n<p align=\"justify\">The launch position established will allow ARGO Float to follow the path of the Antarctic Circumpolar Current and characterize the thermohaline structure, obviously as long as they will be working and will send data.</p>\n<p align=\"justify\">These floats are Arvor-I instruments manufactured by NKE in France. They cycle between the surface and 2000 dbar every 10 days and drift at the parking depth of 1000 dbar. They measure temperature and salinity at each ascent, and transmit data to the Iridium satellite system when at surface where it is localized by GPS. </p>\n<table align=\"center\"><tbody><tr><td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Float model</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center; text-align:center; font-weight: bold;\">Float WMO</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Deploy Date</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Lat</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Lon</p>\n</td>\n</tr><tr><td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Arvor I - 2</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901813</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">06-Jan-2013 19:20</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-75.09</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">164.88</p>\n</td>\n</tr><tr><td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Arvor I - 2</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901814</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">10-Jan-2013 07:55</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-61.5</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">178.67</p>\n</td>\n</tr><tr><td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Arvor I - 2</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901815</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">10-Jan-2013 15:24</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-60</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">178.26</p>\n</td>\n</tr></tbody></table><p align=\"center\"><strong>Table 2 Status information for the 3 Italian floats in the SO during 2013. Updated positions, status and cycles number are available at  <a href=\"http://nettuno.ogs.trieste.it/sire/medargo/active/it_table_out.php?live=*\">http://nettuno.ogs.trieste.it/sire/medargo/active/it_table_out.php?live=*</a></strong></p>\n\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:2:\"en\";a:1:{i:0;a:3:{s:5:\"value\";s:9:\"ARGO 2013\";s:6:\"format\";N;s:10:\"safe_value\";s:9:\"ARGO 2013\";}}}}',0,1539007824,1),('field:node:111','a:2:{s:4:\"body\";a:1:{s:2:\"en\";a:1:{i:0;a:5:{s:5:\"value\";s:7900:\"<h1 align= \"center\"><strong>ARGO float activities in 2014</strong></h1>\r\n</br>\r\n<p align=\"justify\">During 2014, 7 floats were deployed by ARGO -ITALY in the SO.</p>\r\n<p align=\"justify\">Five Italian profiling floats were deployed in the SO between 30 December 2013 and 3 January 2014 from R/V Italica in order to sample water column characteristics in the Antarctic circumpolar Current.</p>\r\n<p align=\"justify\">These floats are Apex instruments manufactured by Teledyne Webb Research in the USA. They cycle between the surface and 2000 dbar every 10 days and drift at the parking depth of 1000 dbar. They measure temperature and salinity at each ascent, and transmit data to the ARGO’s satellite system when at surface. Their position is also estimated by the ARGO’s system. Unfortunately, two of the floats did not function properly due to a software problem.</p>\r\n<p align=\"justify\">One float was deployed in the Ross Sea on 11 January 2014 from R/V Italica. This float is an Arvor-L instrument manufactured by NKE in France which measures temperature and salinity at each ascent, and transmits data to the ARGO’s satellite system when at surface. Its position is also estimated by the ARGO’s system. This float was anchored and was supposed to cycle between the surface and 1000 dbar every 1 day . This deployment in ice-free coastal Ross Sea in winter 2014 is part of the T-Rex experiment. Unfortunately, the float stopped transmitting just after deployment.</p>\r\n<p align=\"justify\">An additional profiling float was deployed in correspondence of the ACC streamlines on 15 February 2014 from R/V Italica . This float is an Provor-CTS2 instrument manufactured by NKE in France which measures temperature and salinity at each ascent, and transmits data to the ARGO’s satellite system when at surface. Its position is also estimated by the ARGO’s system. Unfortunately, this float malfunctioned and drifted at the surface without executing profiles.</p>\r\n<table align=\"center\">\r\n	<tbody>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Float model</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; text-align:center; font-weight: bold;\">WMO</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Deploy Date</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Lat</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Lon</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Apex</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901856</p>\r\n			</td>\r\n                       <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">30-Dec-2013 18:48</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-51</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">175.74</p>\r\n			</td> \r\n		</tr>\r\n\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Apex</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901850</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">01-Jan-2014 19:24</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-60.98</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-177.6</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Apex</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901849</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">02-Jan-2014 07:59</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-62.98</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-176.01</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Apex</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901855</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">02-Jan-2014 21:33</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-65</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-176.08</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Apex</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901857</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">02-Jan-2014 22:55</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-58.95</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-178.9</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Arvor L</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901853</p>\r\n			</td> \r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">11-Jan-2014 00:50</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-75.16</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-164.46</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Provor</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901854</p>\r\n			</td> \r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">15-Feb-2014 06:30</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-67.52</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">178.99</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n<p align=\"center\"><strong>Table 3 Status information for the 7 Italian floats deployed in the SO and Ross Sea during 2014. Updated positions, status and cycles number are available at  <a href=\"http://nettuno.ogs.trieste.it/sire/medargo/active/it_table_out.php?live=* \">http://nettuno.ogs.trieste.it/sire/medargo/active/it_table_out.php?live=* </a></b></strong></p>\r\n<p align=\"justify\">In the SO, the Apex floats WMO 6901849 and WMO 6901855 were incorrectly programmed and did not stay at the surface enough time to transmit their data via the ARGO’s satellite system. As a result, float WMO 6901849 provided only 19 incomplete profiles (out of 37 cycles) and no data were obtained from float WMO 6901855. The problem was discussed with Teledyne Webb Research but there was nothing that we could do to solve the problem since the floats were at sea and ARGO’s telemetry does not allow downlink commands.</p>\r\n<p align=\"justify\">The Provor CTS 2 WMO 6901854 which was refurbished by NKE apparently went into “end of mission” mode just after deployment and stayed at surface without profiling until 11 May 2014.</p>\r\n<p align=\"justify\">Unfortunately, float WMO 6901853, which was tethered to act as a virtual mooring in Ross Sea had transmission/floatation problems and never transmitted data.</p>\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:6842:\"<h1 align=\"center\"><strong>ARGO float activities in 2014</strong></h1>\n<p></p>\n<p align=\"justify\">During 2014, 7 floats were deployed by ARGO -ITALY in the SO.</p>\n<p align=\"justify\">Five Italian profiling floats were deployed in the SO between 30 December 2013 and 3 January 2014 from R/V Italica in order to sample water column characteristics in the Antarctic circumpolar Current.</p>\n<p align=\"justify\">These floats are Apex instruments manufactured by Teledyne Webb Research in the USA. They cycle between the surface and 2000 dbar every 10 days and drift at the parking depth of 1000 dbar. They measure temperature and salinity at each ascent, and transmit data to the ARGO’s satellite system when at surface. Their position is also estimated by the ARGO’s system. Unfortunately, two of the floats did not function properly due to a software problem.</p>\n<p align=\"justify\">One float was deployed in the Ross Sea on 11 January 2014 from R/V Italica. This float is an Arvor-L instrument manufactured by NKE in France which measures temperature and salinity at each ascent, and transmits data to the ARGO’s satellite system when at surface. Its position is also estimated by the ARGO’s system. This float was anchored and was supposed to cycle between the surface and 1000 dbar every 1 day . This deployment in ice-free coastal Ross Sea in winter 2014 is part of the T-Rex experiment. Unfortunately, the float stopped transmitting just after deployment.</p>\n<p align=\"justify\">An additional profiling float was deployed in correspondence of the ACC streamlines on 15 February 2014 from R/V Italica . This float is an Provor-CTS2 instrument manufactured by NKE in France which measures temperature and salinity at each ascent, and transmits data to the ARGO’s satellite system when at surface. Its position is also estimated by the ARGO’s system. Unfortunately, this float malfunctioned and drifted at the surface without executing profiles.</p>\n<table align=\"center\"><tbody><tr><td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Float model</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center; text-align:center; font-weight: bold;\">WMO</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Deploy Date</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Lat</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Lon</p>\n</td>\n</tr><tr><td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Apex</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901856</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">30-Dec-2013 18:48</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-51</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">175.74</p>\n</td>\n</tr><tr><td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Apex</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901850</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">01-Jan-2014 19:24</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-60.98</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-177.6</p>\n</td>\n</tr><tr><td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Apex</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901849</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">02-Jan-2014 07:59</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-62.98</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-176.01</p>\n</td>\n</tr><tr><td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Apex</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901855</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">02-Jan-2014 21:33</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-65</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-176.08</p>\n</td>\n</tr><tr><td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Apex</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901857</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">02-Jan-2014 22:55</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-58.95</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-178.9</p>\n</td>\n</tr><tr><td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Arvor L</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901853</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">11-Jan-2014 00:50</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-75.16</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-164.46</p>\n</td>\n</tr><tr><td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Provor</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901854</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">15-Feb-2014 06:30</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-67.52</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">178.99</p>\n</td>\n</tr></tbody></table><p align=\"center\"><strong>Table 3 Status information for the 7 Italian floats deployed in the SO and Ross Sea during 2014. Updated positions, status and cycles number are available at  <a href=\"http://nettuno.ogs.trieste.it/sire/medargo/active/it_table_out.php?live=* \">http://nettuno.ogs.trieste.it/sire/medargo/active/it_table_out.php?live=* </a></strong></p>\n<p align=\"justify\">In the SO, the Apex floats WMO 6901849 and WMO 6901855 were incorrectly programmed and did not stay at the surface enough time to transmit their data via the ARGO’s satellite system. As a result, float WMO 6901849 provided only 19 incomplete profiles (out of 37 cycles) and no data were obtained from float WMO 6901855. The problem was discussed with Teledyne Webb Research but there was nothing that we could do to solve the problem since the floats were at sea and ARGO’s telemetry does not allow downlink commands.</p>\n<p align=\"justify\">The Provor CTS 2 WMO 6901854 which was refurbished by NKE apparently went into “end of mission” mode just after deployment and stayed at surface without profiling until 11 May 2014.</p>\n<p align=\"justify\">Unfortunately, float WMO 6901853, which was tethered to act as a virtual mooring in Ross Sea had transmission/floatation problems and never transmitted data.</p>\n\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:2:\"en\";a:1:{i:0;a:3:{s:5:\"value\";s:9:\"ARGO 2014\";s:6:\"format\";N;s:10:\"safe_value\";s:9:\"ARGO 2014\";}}}}',0,1538846535,1),('field:node:112','a:2:{s:4:\"body\";a:1:{s:2:\"en\";a:1:{i:0;a:5:{s:5:\"value\";s:10935:\"<h1 align= \"center\"><strong>ARGO float activities in 2015</strong></h1>\r\n</br>\r\n<p align=\"justify\">During 2015, 10 floats and 10 drifters were deployed by ARGO -ITALY in the SO.</p>\r\n<p align=\"justify\">The program of the launches along the route of the ship Araon from Cristhchurch to Terra Nova Bay, in correspondence with the main fronts of the ACC, predicted launching simultaneously a float and a drifter. Five Apex and five Arvor-I floats were deployed in the SO from the polar R/V Araon in the period 3-6 January 2015. </p>\r\n<table align=\"center\">\r\n	<tbody>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Float model</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; text-align:center; font-weight: bold;\">Float WMO</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Drifter model</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Drifter WMO</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Deploy Date</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Lat</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Lon</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Apex</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901875</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">SVP</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">300234061363990</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">03-Jan-2015 02:27</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-51.01</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">163.01</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Arvor</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901843</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">SVP</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">300234062818740</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">03-Jan-2015 06:50</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-52.01</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">163.18</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Arvor</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901841</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">SVP</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">300234062831810</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">03-Jan-2015 11:05</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-53.01</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">163.05</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Arvor</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901840</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">SVP</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">300234061396460</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">03-Jan-2015 20:50</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-55</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">162.85</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Apex</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901871</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">SVP</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">300234062831750</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">04-Jan-2015 00:00</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-56</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">162.79</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Apex</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901872</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">SVP</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">300234062830780</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">04-Jan-2015 09:29</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-58.01</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">162.69</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Apex</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901873</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">SVP</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">300234061399590</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">04-Jan-2015 19:47</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-60.01</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">162.59</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Apex</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901874</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">SVP</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">300234062832730</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">06-Jan-2015 01:14</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-61.01</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">157.31</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Arvor</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901842</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">SVP</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">300234062832740</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">06-Jan-2015 09:42</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-62</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">158.48</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Arvor</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901838</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">SVP</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">300234062832780</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">06-Jan-2015 18:16</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-63</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">159.69</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n<p align=\"center\"><strong>Status information for the 10 Italian floats an drifters deployed in the SO and Ross Sea during 2015. Updated positions, status and cycles number are available at <a href=\"http://nettuno.ogs.trieste.it/sire/medargo/active/it_table_out.php?live=*\">http://nettuno.ogs.trieste.it/sire/medargo/active/it_table_out.php?live=*</a> for floats and <a href=\"http://nettuno.ogs.trieste.it/sire/drifter_italy.php?active=0\">http://nettuno.ogs.trieste.it/sire/drifter_italy.php?active=0</a> for drifters</b></strong></p>\r\n<p align=\"justify\">The 10 floats are programmed to cycle every 10 days with parking depth at 1000 dbar. They measure temperature and salinity at each ascent, and transmit data to the ARGO’s or Iridium satellite system when at surface.</p>\r\n<p align=\"justify\">Currently for the reference site of ARGO-ITALY, the floats and drifters made during the last Antarctic campaign are given to the following locations:</p>\r\n<div align=\"center\"><img alt=\"\" src=\"/sites/default/files/argo_4.png\"/></div>\r\n<p align=\"center\"><strong>Position  of drifters deployed during last campaign. Actual position available at http://nettuno.ogs.trieste.it/jungo/argoitaly/floats.html</b></strong>\r\n<div align=\"center\"><img alt=\"\" src=\"/sites/default/files/argo_3.png\"/></div>\r\n<p align=\"center\"><strong>Position  of floats deployed during last campaign. Actual position available at http://nettuno.ogs.trieste.it/jungo/argoitaly/drifters.html</b></strong>\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:8916:\"<h1 align=\"center\"><strong>ARGO float activities in 2015</strong></h1>\n<p></p>\n<p align=\"justify\">During 2015, 10 floats and 10 drifters were deployed by ARGO -ITALY in the SO.</p>\n<p align=\"justify\">The program of the launches along the route of the ship Araon from Cristhchurch to Terra Nova Bay, in correspondence with the main fronts of the ACC, predicted launching simultaneously a float and a drifter. Five Apex and five Arvor-I floats were deployed in the SO from the polar R/V Araon in the period 3-6 January 2015. </p>\n<table align=\"center\"><tbody><tr><td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Float model</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center; text-align:center; font-weight: bold;\">Float WMO</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Drifter model</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Drifter WMO</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Deploy Date</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Lat</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Lon</p>\n</td>\n</tr><tr><td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Apex</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901875</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">SVP</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">300234061363990</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">03-Jan-2015 02:27</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-51.01</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">163.01</p>\n</td>\n</tr><tr><td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Arvor</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901843</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">SVP</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">300234062818740</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">03-Jan-2015 06:50</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-52.01</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">163.18</p>\n</td>\n</tr><tr><td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Arvor</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901841</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">SVP</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">300234062831810</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">03-Jan-2015 11:05</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-53.01</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">163.05</p>\n</td>\n</tr><tr><td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Arvor</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901840</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">SVP</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">300234061396460</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">03-Jan-2015 20:50</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-55</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">162.85</p>\n</td>\n</tr><tr><td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Apex</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901871</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">SVP</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">300234062831750</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">04-Jan-2015 00:00</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-56</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">162.79</p>\n</td>\n</tr><tr><td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Apex</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901872</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">SVP</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">300234062830780</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">04-Jan-2015 09:29</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-58.01</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">162.69</p>\n</td>\n</tr><tr><td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Apex</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901873</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">SVP</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">300234061399590</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">04-Jan-2015 19:47</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-60.01</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">162.59</p>\n</td>\n</tr><tr><td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Apex</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901874</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">SVP</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">300234062832730</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">06-Jan-2015 01:14</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-61.01</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">157.31</p>\n</td>\n</tr><tr><td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Arvor</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901842</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">SVP</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">300234062832740</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">06-Jan-2015 09:42</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-62</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">158.48</p>\n</td>\n</tr><tr><td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Arvor</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901838</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">SVP</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">300234062832780</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">06-Jan-2015 18:16</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-63</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">159.69</p>\n</td>\n</tr></tbody></table><p align=\"center\"><strong>Status information for the 10 Italian floats an drifters deployed in the SO and Ross Sea during 2015. Updated positions, status and cycles number are available at <a href=\"http://nettuno.ogs.trieste.it/sire/medargo/active/it_table_out.php?live=*\">http://nettuno.ogs.trieste.it/sire/medargo/active/it_table_out.php?live=*</a> for floats and <a href=\"http://nettuno.ogs.trieste.it/sire/drifter_italy.php?active=0\">http://nettuno.ogs.trieste.it/sire/drifter_italy.php?active=0</a> for drifters</strong></p>\n<p align=\"justify\">The 10 floats are programmed to cycle every 10 days with parking depth at 1000 dbar. They measure temperature and salinity at each ascent, and transmit data to the ARGO’s or Iridium satellite system when at surface.</p>\n<p align=\"justify\">Currently for the reference site of ARGO-ITALY, the floats and drifters made during the last Antarctic campaign are given to the following locations:</p>\n<div align=\"center\"><img alt=\"\" src=\"/sites/default/files/argo_4.png\" /></div>\n<p align=\"center\"><strong>Position  of drifters deployed during last campaign. Actual position available at <a href=\"http://nettuno.ogs.trieste.it/jungo/argoitaly/floats.html\">http://nettuno.ogs.trieste.it/jungo/argoitaly/floats.html</a></strong></p>\n<div align=\"center\"><img alt=\"\" src=\"/sites/default/files/argo_3.png\" /></div>\n<p align=\"center\"><strong>Position  of floats deployed during last campaign. Actual position available at <a href=\"http://nettuno.ogs.trieste.it/jungo/argoitaly/drifters.html\">http://nettuno.ogs.trieste.it/jungo/argoitaly/drifters.html</a></strong></p>\n\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:2:\"en\";a:1:{i:0;a:3:{s:5:\"value\";s:9:\"ARGO 2015\";s:6:\"format\";N;s:10:\"safe_value\";s:9:\"ARGO 2015\";}}}}',0,1539007848,1),('field:node:113','a:2:{s:4:\"body\";a:1:{s:2:\"it\";a:1:{i:0;a:5:{s:5:\"value\";s:652:\"<form method=\"post\" action=\"/sites/all/themes/multipurpose/mooring.php\">\r\n<fieldset>\r\n <legend>Seleziona il mooring</legend>\r\n <input type=\"checkbox\" name=\"mooring\" value=\"L\"> mooring L\r\n</br>\r\n<input type=\"checkbox\" name=\"mooring\" value=\"G\"> mooring G\r\n</br>\r\n<input type=\"checkbox\" name=\"mooring\" value=\"D\"> mooring D\r\n</br>\r\n<input type=\"checkbox\" name=\"mooring\" value=\"B\"> mooring B\r\n</fieldset>\r\n<fieldset>\r\n <legend>Seleziona il periodo</legend>\r\n <input type=\"checkbox\" name=\"anno\" value=\"2012\"> 2010-2012\r\n</br>\r\n<input type=\"checkbox\" name=\"anno\" value=\"2014\"> 2012-2014\r\n</fieldset>\r\n<input type=\"submit\" name=\"submit\" value=\"invia\">\r\n</form>\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:710:\"<form method=\"post\" action=\"/sites/all/themes/multipurpose/mooring.php\">\n<fieldset><br /><legend>Seleziona il mooring</legend><br /><input type=\"checkbox\" name=\"mooring\" value=\"L\" /> mooring L<br /><br /><input type=\"checkbox\" name=\"mooring\" value=\"G\" /> mooring G<br /><br /><input type=\"checkbox\" name=\"mooring\" value=\"D\" /> mooring D<br /><br /><input type=\"checkbox\" name=\"mooring\" value=\"B\" /> mooring B<br /></fieldset><br /><fieldset><br /><legend>Seleziona il periodo</legend><br /><input type=\"checkbox\" name=\"anno\" value=\"2012\" /> 2010-2012<br /><br /><input type=\"checkbox\" name=\"anno\" value=\"2014\" /> 2012-2014<br /></fieldset><br /><input type=\"submit\" name=\"submit\" value=\"invia\" /><br /></form>\n\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:2:\"it\";a:1:{i:0;a:3:{s:5:\"value\";s:8:\"Metadati\";s:6:\"format\";N;s:10:\"safe_value\";s:8:\"Metadati\";}}}}',0,1539009730,1),('field:node:115','a:2:{s:4:\"body\";a:0:{}s:25:\"field_photo_moorings_2010\";a:1:{s:3:\"und\";a:1:{i:0;a:13:{s:3:\"fid\";s:2:\"40\";s:3:\"uid\";s:1:\"1\";s:8:\"filename\";s:20:\"Mooring _L _2010.png\";s:3:\"uri\";s:29:\"public://Mooring _L _2010.png\";s:8:\"filemime\";s:9:\"image/png\";s:8:\"filesize\";s:5:\"92403\";s:6:\"status\";s:1:\"1\";s:9:\"timestamp\";s:10:\"1442135396\";s:11:\"rdf_mapping\";a:0:{}s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:5:\"width\";s:3:\"705\";s:6:\"height\";s:3:\"697\";}}}}',0,1539006802,1),('field:node:116','a:2:{s:4:\"body\";a:0:{}s:25:\"field_photo_moorings_2010\";a:1:{s:3:\"und\";a:1:{i:0;a:13:{s:3:\"fid\";s:2:\"41\";s:3:\"uid\";s:1:\"1\";s:8:\"filename\";s:20:\"Mooring _B _2010.png\";s:3:\"uri\";s:29:\"public://Mooring _B _2010.png\";s:8:\"filemime\";s:9:\"image/png\";s:8:\"filesize\";s:6:\"117402\";s:6:\"status\";s:1:\"1\";s:9:\"timestamp\";s:10:\"1442135650\";s:11:\"rdf_mapping\";a:0:{}s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:5:\"width\";s:3:\"557\";s:6:\"height\";s:3:\"724\";}}}}',0,1539006813,1),('field:node:117','a:2:{s:4:\"body\";a:0:{}s:25:\"field_photo_moorings_2010\";a:1:{s:3:\"und\";a:1:{i:0;a:13:{s:3:\"fid\";s:2:\"42\";s:3:\"uid\";s:1:\"1\";s:8:\"filename\";s:19:\"Mooring _G_2010.png\";s:3:\"uri\";s:28:\"public://Mooring _G_2010.png\";s:8:\"filemime\";s:9:\"image/png\";s:8:\"filesize\";s:6:\"148968\";s:6:\"status\";s:1:\"1\";s:9:\"timestamp\";s:10:\"1442135697\";s:11:\"rdf_mapping\";a:0:{}s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:5:\"width\";s:3:\"591\";s:6:\"height\";s:3:\"695\";}}}}',0,1539006824,1),('field:node:118','a:2:{s:4:\"body\";a:0:{}s:25:\"field_photo_moorings_2010\";a:1:{s:3:\"und\";a:1:{i:0;a:13:{s:3:\"fid\";s:2:\"43\";s:3:\"uid\";s:1:\"1\";s:8:\"filename\";s:19:\"Mooring _D_2010.png\";s:3:\"uri\";s:28:\"public://Mooring _D_2010.png\";s:8:\"filemime\";s:9:\"image/png\";s:8:\"filesize\";s:6:\"115968\";s:6:\"status\";s:1:\"1\";s:9:\"timestamp\";s:10:\"1442135746\";s:11:\"rdf_mapping\";a:0:{}s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:5:\"width\";s:3:\"595\";s:6:\"height\";s:3:\"838\";}}}}',0,1539007858,1),('field:node:119','a:2:{s:4:\"body\";a:1:{s:2:\"it\";a:1:{i:0;a:5:{s:5:\"value\";s:2171:\"<h1 align=\"center\">Moorings 2014-2016 (Deployed 2014)</h1>\r\n<table align=\"center\">\r\n	<tbody>\r\n<tr>			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/22\" target=\"_blank\">Mooring L</a></td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/23\" target=\"_blank\">Mooring G</a></td>\r\n\r\n		</tr>\r\n<tr>			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/24\" target=\"_blank\">Mooring D</a></td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/21\" target=\"_blank\">Mooring B</a></td>\r\n\r\n		</tr>\r\n\r\n	</tbody>\r\n</table>\r\n<h1 align=\"center\">Moorings 2012-2014 (Deployed 2012)</h1>\r\n<table align=\"center\">\r\n	<tbody>\r\n<tr>			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/26\" target=\"_blank\">Mooring L</a></td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/36\" target=\"_blank\">Mooring G</a></td>\r\n\r\n		</tr>\r\n<tr>			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/35\" target=\"_blank\">Mooring D</a></td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/34\" target=\"_blank\">Mooring B</a></td>\r\n\r\n		</tr>\r\n\r\n	</tbody>\r\n</table>\r\n<h1 align=\"center\">Moorings 2010-2012 (Deployed 2010)</h1>\r\n<table align=\"center\">\r\n	<tbody>\r\n<tr>			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/115\" target=\"_blank\">Mooring L</a></td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/117\" target=\"_blank\">Mooring G</a></td>\r\n\r\n		</tr>\r\n<tr>			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/118\" target=\"_blank\">Mooring D</a></td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/116\" target=\"_blank\">Mooring B</a></td>\r\n\r\n		</tr>\r\n\r\n	</tbody>\r\n</table>\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:2050:\"<h1 align=\"center\">Moorings 2014-2016 (Deployed 2014)</h1>\n<table align=\"center\"><tbody><tr><td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/22\" target=\"_blank\">Mooring L</a></td>\n<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/23\" target=\"_blank\">Mooring G</a></td>\n</tr><tr><td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/24\" target=\"_blank\">Mooring D</a></td>\n<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/21\" target=\"_blank\">Mooring B</a></td>\n</tr></tbody></table><h1 align=\"center\">Moorings 2012-2014 (Deployed 2012)</h1>\n<table align=\"center\"><tbody><tr><td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/26\" target=\"_blank\">Mooring L</a></td>\n<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/36\" target=\"_blank\">Mooring G</a></td>\n</tr><tr><td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/35\" target=\"_blank\">Mooring D</a></td>\n<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/34\" target=\"_blank\">Mooring B</a></td>\n</tr></tbody></table><h1 align=\"center\">Moorings 2010-2012 (Deployed 2010)</h1>\n<table align=\"center\"><tbody><tr><td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/115\" target=\"_blank\">Mooring L</a></td>\n<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/117\" target=\"_blank\">Mooring G</a></td>\n</tr><tr><td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/118\" target=\"_blank\">Mooring D</a></td>\n<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/116\" target=\"_blank\">Mooring B</a></td>\n</tr></tbody></table>\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:2:\"it\";a:1:{i:0;a:3:{s:5:\"value\";s:21:\"Dettagli dei Moorings\";s:6:\"format\";N;s:10:\"safe_value\";s:21:\"Dettagli dei Moorings\";}}}}',0,1538960681,1),('field:node:12','a:2:{s:4:\"body\";a:1:{s:2:\"en\";a:1:{i:0;a:5:{s:5:\"value\";s:732:\"<p>During the Italian XXIX Antarctic Expedition (Austral Summer 2013-14) all moorings included into the \"MORSea\" project were recovered, serviced and deployed.\r\nThe following map and links show the location of moorings in the Ross Sea and their composition together with basic information.</p>\r\n<div><strong><a href=\"http://morsea.uniparthenope.it/?q=node/28\">Click here to have more information about the moorings configuration</a></strong></div>\r\n<div><strong><a href=\"https://www.google.com/maps/d/edit?mid=zbQQmJ6-SKww.kXWDxKLMktvM\">Click here to have the moorings location map</a></strong></div>\r\n<div>&nbsp;</div>\r\n<div><img alt=\"\" src=\"/sites/default/files/MooringRossSea2014.png\" style=\"height:495px; width:660px\" /></div>\r\n\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:728:\"<p>During the Italian XXIX Antarctic Expedition (Austral Summer 2013-14) all moorings included into the \"MORSea\" project were recovered, serviced and deployed.<br />\nThe following map and links show the location of moorings in the Ross Sea and their composition together with basic information.</p>\n<div><strong><a href=\"http://morsea.uniparthenope.it/?q=node/28\">Click here to have more information about the moorings configuration</a></strong></div>\n<div><strong><a href=\"https://www.google.com/maps/d/edit?mid=zbQQmJ6-SKww.kXWDxKLMktvM\">Click here to have the moorings location map</a></strong></div>\n<div> </div>\n<div><img alt=\"\" src=\"/sites/default/files/MooringRossSea2014.png\" style=\"height:495px; width:660px\" /></div>\n\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:2:\"en\";a:1:{i:0;a:3:{s:5:\"value\";s:12:\"The Moorings\";s:6:\"format\";N;s:10:\"safe_value\";s:12:\"The Moorings\";}}}}',0,1538751349,1),('field:node:120','a:3:{s:4:\"body\";a:0:{}s:25:\"field_photo_moorings_2012\";a:1:{s:2:\"it\";a:1:{i:0;a:13:{s:3:\"fid\";s:2:\"34\";s:3:\"uid\";s:1:\"1\";s:8:\"filename\";s:18:\"Mooring_L_2012.png\";s:3:\"uri\";s:29:\"public://Mooring_L_2012_0.png\";s:8:\"filemime\";s:9:\"image/png\";s:8:\"filesize\";s:6:\"265613\";s:6:\"status\";s:1:\"1\";s:9:\"timestamp\";s:10:\"1415042521\";s:11:\"rdf_mapping\";a:0:{}s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:5:\"width\";s:3:\"720\";s:6:\"height\";s:3:\"960\";}}}s:11:\"title_field\";a:1:{s:2:\"it\";a:1:{i:0;a:3:{s:5:\"value\";s:9:\"Mooring L\";s:6:\"format\";N;s:10:\"safe_value\";s:9:\"Mooring L\";}}}}',0,1538751395,1),('field:node:121','a:2:{s:4:\"body\";a:0:{}s:25:\"field_photo_moorings_2010\";a:1:{s:3:\"und\";a:1:{i:0;a:13:{s:3:\"fid\";s:2:\"40\";s:3:\"uid\";s:1:\"1\";s:8:\"filename\";s:20:\"Mooring _L _2010.png\";s:3:\"uri\";s:29:\"public://Mooring _L _2010.png\";s:8:\"filemime\";s:9:\"image/png\";s:8:\"filesize\";s:5:\"92403\";s:6:\"status\";s:1:\"1\";s:9:\"timestamp\";s:10:\"1442135396\";s:11:\"rdf_mapping\";a:0:{}s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:5:\"width\";s:3:\"705\";s:6:\"height\";s:3:\"697\";}}}}',0,1538751395,1),('field:node:122','a:2:{s:4:\"body\";a:0:{}s:25:\"field_photo_moorings_2010\";a:1:{s:3:\"und\";a:1:{i:0;a:13:{s:3:\"fid\";s:2:\"42\";s:3:\"uid\";s:1:\"1\";s:8:\"filename\";s:19:\"Mooring _G_2010.png\";s:3:\"uri\";s:28:\"public://Mooring _G_2010.png\";s:8:\"filemime\";s:9:\"image/png\";s:8:\"filesize\";s:6:\"148968\";s:6:\"status\";s:1:\"1\";s:9:\"timestamp\";s:10:\"1442135697\";s:11:\"rdf_mapping\";a:0:{}s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:5:\"width\";s:3:\"591\";s:6:\"height\";s:3:\"695\";}}}}',0,1538751395,1),('field:node:123','a:2:{s:4:\"body\";a:0:{}s:25:\"field_photo_moorings_2010\";a:1:{s:3:\"und\";a:1:{i:0;a:13:{s:3:\"fid\";s:2:\"41\";s:3:\"uid\";s:1:\"1\";s:8:\"filename\";s:20:\"Mooring _B _2010.png\";s:3:\"uri\";s:29:\"public://Mooring _B _2010.png\";s:8:\"filemime\";s:9:\"image/png\";s:8:\"filesize\";s:6:\"117402\";s:6:\"status\";s:1:\"1\";s:9:\"timestamp\";s:10:\"1442135650\";s:11:\"rdf_mapping\";a:0:{}s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:5:\"width\";s:3:\"557\";s:6:\"height\";s:3:\"724\";}}}}',0,1538751395,1),('field:node:124','a:2:{s:4:\"body\";a:1:{s:2:\"en\";a:1:{i:0;a:5:{s:5:\"value\";s:10940:\"<h1 align= \"center\"><strong>Rapporto sulla Campagna Antartica (estratto)</strong></h1>\r\n\r\n<h2 align=\"center\"><strong>Estate Australe 2015-2016</strong></h2>\r\n\r\n<h3 align=\"center\"><strong>Trentunesima Spedizione (PNRA XXXI)</strong></h3>\r\n\r\n<p align=\"center\"><strong>Progetto 2009/B.09: Osservatorio Marino Nel Mare di Ross ( MORSea)</strong><br />\r\n<em>G. Budillon, A. De Alteris, G. Zambardino</em></p>\r\n\r\n<p align=\"justify\">Le attività a bordo (descritte nel seguito in Universal Time Coordinated - UTC) del progetto MORSea (http://morsea.uniparthenope.it) sono state principalmente focalizzate al mantenimento della rete di osservazioni marine attualmente esistente nel Mare di Ross. L’obiettivo primario dell’osservatorio è quello di fornire un sostanziale contributo al monitoraggio della variabilità interannuale delle caratteristiche fisiche e geochimiche delle acque di shelf nel settore occidentale del Mare di Ross.\r\nL’osservatorio è attualmente costituito da 4 catene correntometriche (mooring) contrassegnate dalle lettere “B”, “D”, “G” e “L”.\r\nA queste attività si sono aggiunte anche le misure di “ship of opportunity” effettuate senza interferire con i tempi di navigazione della M/N Italica. In particolare quest’anno sono state eseguite misure di temperatura e salinità superficiale del mare (SST e SSS rispettivamente), lanci di XBT per la misura della struttura subsuperficiale dell’Oceano Meridionale; lanci di drifter e float (nell’ambito della collaborazione con il progetto ARGOItaly). Queste attività, svolte in passato da progetti non più attivi del PNRA (CLIMA e SOChIC), sono state condotte al fine di non interrompere le preziose serie temporali acquisite dal 1994 considerata la valenza ormai “climatica” di queste informazioni.\r\nAnche quest’anno non è stato possibile acquisire nuova strumentazione, fatta eccezione per un nuovo correntometro Aanderaa Seaguard ed una sonda SBE SMP ODO, per cui i sensori riposizionati sono stati sostanzialmente quelli degli anni precedenti che, in diversi casi, risalgono a oltre 20 anni fa. Il materiale di consumo e di ricambio per le trappole di sedimento è stato fornito: dal dott. M. Capello (Univ. di Genova) per i mooring “D” e “L” (2 trappole), dal dott. L. Langone (CNR – ISMAR) per il mooring “B” (1 trappola). Le attività di recupero, ricondizionamento, scarico dei dati e rimessa a mare sono state effettuate in simbiosi con il gruppo di Oceanografia Fisica (Dr. P.Falco e M. De Stefano).\r\nIn occasione della sosta in base del 4 febbraio (UTC) si è provveduto anche a recuperare la catena correntometrica posizionato dalla NIWA su un fondale di 516 m a circa 3 miglia a est di MZS.\r\nCome tradizione, sono state effettuate calate di CTD/LADCP - per la verifica e taratura dei sensori posizionati sulle catene correntometriche - prima del loro recupero e dopo il loro posizionamento.\r\nNel seguito vengono descritte le attività svolte su ogni catena correntometrica ed in tabella TM1 viene riportato la scheda riassuntiva dei periodi di funzionamento di ogni strumento.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “B”</strong><br />\r\nIl mooring “B” è stato recuperato il 24 gennaio e rimesso in mare il 27 gennaio 2016.\r\nIl recupero del mooring secondo la normale procedura di sgancio ha dato esito negativo, nonostante entrambi gli sganciatori avessero confermato l’avvenuto sgancio e la loro posizione verticale.\r\nGrazie alla collaborazione del gruppo EchoSurvey, è stato effettuato un passaggio sulla posizione del mooring rilevando tutta la struttura, sia nella parte di fondo sia superiore, avendo conferma in questo modo della sua effettiva integrità e posizione verticale.\r\nIn analogia con quanto effettuato nella XXIX spedizione, il mooring è stato recuperato filando da poppa una coppia di divergenti sostenuti da circa 500 metri di cavo d’acciaio e collegati tra loro da cime di kevlar di circa 250 metri, appesantite da una catena. Al primo tentativo il mooring è stato incocciato e recuperato a bordo senza eccessivi problemi.\r\nDopo la manutenzione del caso, la catena correntometrica è stata riposizionata nella configurazione riportata in figura M1, sostanzialmente analoga al precedente periodo ma aumentando la spinta di galleggiamento.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “G”</strong><br />\r\nIl mooring “G” è stato recuperato il 28 gennaio e rimesso in mare il 30 gennaio 2016.\r\nEntrambe le operazioni si svolte senza particolari problemi: il recupero con ottime condizioni meteo mentre il riposizionamento con mare forza 4-5.\r\nLa configurazione del mooring riposizionato è stata modificata inserendo una nuova quota di misura a circa 250 me di profondità (v. figura M3) costituita da un correntometro e una sonda SBE per la misura di T&C.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “D”</strong><br />\r\nIl mooring “D” è stato recuperato il 31 gennaio e rimesso in mare il 6 febbraio 2016.\r\nEffettuata l’ordinaria manutenzione della strumentazione, il mooring “D” è stato rimesso in posizione nella configurazione illustrata in figura M2, rispetto alla precedente risultano: 1) aggiunta al fondo una sonda SBE per la misura di T&C dotata di sensore di ossigeno, 2) eliminata una trappola per sedimenti a causa della rottura di un motore.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “L”</strong><br />\r\nIl mooring “L” è stato recuperato il 1° febbraio e rimesso in mare il 9 febbraio 2016.\r\nLa configurazione del mooring riposizionato è riportata in figura M4.\r\nIn tabella TM1 vengono elencate le informazioni principali sul funzionamento della strumentazione alloggiata sui mooring nel periodo 2014-16, tenendo conto che:\r\n- le profondità [m] si riferiscono agli schemi della campagna 2013-2014;\r\n- gli intervalli riportati si riferiscono al periodo effettivo di misura valida in acqua e alla profondità indicata nella prima colonna.</p>\r\n\r\n<p align=\"justify\"><strong>Misure in continuo di temperatura e salinità superficiale</strong><br />\r\nDurante tutta la campagna è stata misurata la temperatura e salinità superficiale del mare (SST –Sea Surface Temperature; SSS – Sea Surface Salinity) utilizzando la presa d’acqua a circa 4 metri di profondità. L’attività è stata condotta in stretta simbiosi con il gruppo di Oceanografia Fisica.\r\nL’attività di misura in continuo è iniziata il 17 gennaio 2016 ed è continuata sino al ritorno in Nuova Zelanda (22 febbraio 2016). Per queste misure sono stati impiegati tre sensori (due di temperatura ed uno di conducibilità) gestiti dal sistema SBE-21 ed un GPS Garmin, l’intervallo di acquisizione è stato di 30”. I dati hanno subìto un primo processamento a bordo per l’eliminazione dei picchi dovuti sostanzialmente al rollio della nave e alla presenza di ghiacci.\r\nDi particolare interesse sono i dati acquisiti durante le due traversate oceaniche (andata e ritorno) tra Nuova Zelanda e Mare di Ross, i dati acquisiti hanno permesso di determinare le posizioni dei fronti termoalini che in questa zona separano aree a dinamica diversa. In fase di analisi del data set saranno valutate eventuali possibilità di utilizzo dei dati acquisiti per cal/val di misure satellitari.\r\nLe misure di SST e SSS rappresentano quelle osservazioni ricorrenti della Antarctic Circumpolar Current sollecitate e regolate dal SOOS (Southern Ocean Observing System, http://www.soos.aq/).\r\n\r\n<p align=\"justify\"><strong>Misure XBT</strong><br />\r\nI lanci di sonde XBT (SIPPICAN mod.T7, prof. max 760 m) sono iniziati il 17 gennaio alla latitudine 48°S e sono terminati il 21 gennaio latitudine di 70°S; l\'intervallo di campionamento è stato, come in passato, di 15 miglia nautiche e sono state utilizzate 89 sonde durante il viaggio tra la Nuova Zelanda e il Mare di Ross; solo una piccolissima percentuale delle sonde utilizzate ha mostrato problemi di funzionamento dovuti quasi esclusivamente al contatto del cavo conduttore in rame con lo scafo della nave.\r\nI dati hanno subìto un primo processamento a bordo per eliminare valori spuri, i primi metri influenzati dall’inerzia termica del sensore e gli eventuali dati affetti dalla presenza del fondo. In figura 3 è riportata la sezione in temperatura dello strato sub-superficiale fino alla profondità massima di 700 m.\r\nTali indagini, iniziate nel 1994, sono state portate avanti nell’ambito di diversi progetti PNRA e hanno oramai una valenza climatologica rilevante sia per il lungo periodo che coprono, sia per le possibili inter-connessioni con fenomeni a scala planetaria. Le misure XBT rappresentano quelle osservazioni ricorrenti della Antarctic Circumpolar Current sollecitate e regolate dal SOOS (Southern Ocean Observing System).\r\nUna breve sezione XBT è stata effettuata anche in corrispondenza del mooring G in occasione di una linea condotta dall’echosurvey ed in concomitanza con il recupero del mooring stesso. In Figura 4 è rappresentata la sezione verticale ottenuta aggiungendo alle misure XBT, il profilo di temperatura misurato prima del recupero del mooring G.\r\n<p ALIGN=\"center\"><a href=\" \"><img alt=\"\" src=\"/sites/all/themes/multipurpose/images/fig_XXXI.png\" width=\"600px\" /></a></p>\r\n<p align=\"justify\"><strong>Figura 1. Sezione verticale della distribuzione della temperatura misurata dal 17 al 21 gennaio 2016 (raw data).</strong></p>\r\n\r\n<p align=\"justify\"><strong>Floats</strong><br />\r\nDurante il viaggio di andata sono stati rilasciati in mare 10 floats e 10 drifters. Queste attività rientrano nella collaborazione con il progetto ARGOItaly che ha fornito le sonde utilizzate (http://nettuno.ogs.trieste.it/jungo/argoitaly/floats.html) che rappresenta il contributo italiano ad un più ampio programma di monitoraggio globale degli oceani.\r\nI floats sono sonde automatizzate che, rilasciate in mare, si muovono in maniera “lagrangiana” (trasportata dalle correnti marine) ad una profondità predeterminata. Ad intervalli regolari la sonda sale in superficie misurando le proprietà termoaline che poi vengono trasmesse via satellite al centro di raccolta dati. Il ciclo tipico dei float utilizzati in questa occasione prevede una “parking depth” a 1000 metri, ad intervalli di 10 giorni il float è programmato per immergersi sino a 2000 metri e poi di risalire in superficie per eseguire il profilo di temperatura e salinità e per la trasmissione dei dati acquisiti. I float utilizzati nel progetto, in particolare, hanno un sistema di comunicazione satellitare bi-direzionale (Iridium, per i modelli APEX e Argos per i modelli Arvor e Provor) per poter modificare a distanza i parametri di missione.\r\nI drifters sono sonde che rimangono in superficie e anche esse si muovono in maniera “lagrangiana” trasmettendo in tempo reale le posizioni ed il valore di temperatura superficiale. I lanci dei drifters e dei float è avvenuto sostanzialmente in simultanea.\r\n\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:11190:\"<h1 align=\"center\"><strong>Rapporto sulla Campagna Antartica (estratto)</strong></h1>\n<h2 align=\"center\"><strong>Estate Australe 2015-2016</strong></h2>\n<h3 align=\"center\"><strong>Trentunesima Spedizione (PNRA XXXI)</strong></h3>\n<p align=\"center\"><strong>Progetto 2009/B.09: Osservatorio Marino Nel Mare di Ross ( MORSea)</strong><br /><em>G. Budillon, A. De Alteris, G. Zambardino</em></p>\n<p align=\"justify\">Le attività a bordo (descritte nel seguito in Universal Time Coordinated - UTC) del progetto MORSea (<a href=\"http://morsea.uniparthenope.it\">http://morsea.uniparthenope.it</a>) sono state principalmente focalizzate al mantenimento della rete di osservazioni marine attualmente esistente nel Mare di Ross. L’obiettivo primario dell’osservatorio è quello di fornire un sostanziale contributo al monitoraggio della variabilità interannuale delle caratteristiche fisiche e geochimiche delle acque di shelf nel settore occidentale del Mare di Ross.<br />\nL’osservatorio è attualmente costituito da 4 catene correntometriche (mooring) contrassegnate dalle lettere “B”, “D”, “G” e “L”.<br />\nA queste attività si sono aggiunte anche le misure di “ship of opportunity” effettuate senza interferire con i tempi di navigazione della M/N Italica. In particolare quest’anno sono state eseguite misure di temperatura e salinità superficiale del mare (SST e SSS rispettivamente), lanci di XBT per la misura della struttura subsuperficiale dell’Oceano Meridionale; lanci di drifter e float (nell’ambito della collaborazione con il progetto ARGOItaly). Queste attività, svolte in passato da progetti non più attivi del PNRA (CLIMA e SOChIC), sono state condotte al fine di non interrompere le preziose serie temporali acquisite dal 1994 considerata la valenza ormai “climatica” di queste informazioni.<br />\nAnche quest’anno non è stato possibile acquisire nuova strumentazione, fatta eccezione per un nuovo correntometro Aanderaa Seaguard ed una sonda SBE SMP ODO, per cui i sensori riposizionati sono stati sostanzialmente quelli degli anni precedenti che, in diversi casi, risalgono a oltre 20 anni fa. Il materiale di consumo e di ricambio per le trappole di sedimento è stato fornito: dal dott. M. Capello (Univ. di Genova) per i mooring “D” e “L” (2 trappole), dal dott. L. Langone (CNR – ISMAR) per il mooring “B” (1 trappola). Le attività di recupero, ricondizionamento, scarico dei dati e rimessa a mare sono state effettuate in simbiosi con il gruppo di Oceanografia Fisica (Dr. P.Falco e M. De Stefano).<br />\nIn occasione della sosta in base del 4 febbraio (UTC) si è provveduto anche a recuperare la catena correntometrica posizionato dalla NIWA su un fondale di 516 m a circa 3 miglia a est di MZS.<br />\nCome tradizione, sono state effettuate calate di CTD/LADCP - per la verifica e taratura dei sensori posizionati sulle catene correntometriche - prima del loro recupero e dopo il loro posizionamento.<br />\nNel seguito vengono descritte le attività svolte su ogni catena correntometrica ed in tabella TM1 viene riportato la scheda riassuntiva dei periodi di funzionamento di ogni strumento.</p>\n<p align=\"justify\"><strong>Mooring “B”</strong><br />\nIl mooring “B” è stato recuperato il 24 gennaio e rimesso in mare il 27 gennaio 2016.<br />\nIl recupero del mooring secondo la normale procedura di sgancio ha dato esito negativo, nonostante entrambi gli sganciatori avessero confermato l’avvenuto sgancio e la loro posizione verticale.<br />\nGrazie alla collaborazione del gruppo EchoSurvey, è stato effettuato un passaggio sulla posizione del mooring rilevando tutta la struttura, sia nella parte di fondo sia superiore, avendo conferma in questo modo della sua effettiva integrità e posizione verticale.<br />\nIn analogia con quanto effettuato nella XXIX spedizione, il mooring è stato recuperato filando da poppa una coppia di divergenti sostenuti da circa 500 metri di cavo d’acciaio e collegati tra loro da cime di kevlar di circa 250 metri, appesantite da una catena. Al primo tentativo il mooring è stato incocciato e recuperato a bordo senza eccessivi problemi.<br />\nDopo la manutenzione del caso, la catena correntometrica è stata riposizionata nella configurazione riportata in figura M1, sostanzialmente analoga al precedente periodo ma aumentando la spinta di galleggiamento.</p>\n<p align=\"justify\"><strong>Mooring “G”</strong><br />\nIl mooring “G” è stato recuperato il 28 gennaio e rimesso in mare il 30 gennaio 2016.<br />\nEntrambe le operazioni si svolte senza particolari problemi: il recupero con ottime condizioni meteo mentre il riposizionamento con mare forza 4-5.<br />\nLa configurazione del mooring riposizionato è stata modificata inserendo una nuova quota di misura a circa 250 me di profondità (v. figura M3) costituita da un correntometro e una sonda SBE per la misura di T&amp;C.</p>\n<p align=\"justify\"><strong>Mooring “D”</strong><br />\nIl mooring “D” è stato recuperato il 31 gennaio e rimesso in mare il 6 febbraio 2016.<br />\nEffettuata l’ordinaria manutenzione della strumentazione, il mooring “D” è stato rimesso in posizione nella configurazione illustrata in figura M2, rispetto alla precedente risultano: 1) aggiunta al fondo una sonda SBE per la misura di T&amp;C dotata di sensore di ossigeno, 2) eliminata una trappola per sedimenti a causa della rottura di un motore.</p>\n<p align=\"justify\"><strong>Mooring “L”</strong><br />\nIl mooring “L” è stato recuperato il 1° febbraio e rimesso in mare il 9 febbraio 2016.<br />\nLa configurazione del mooring riposizionato è riportata in figura M4.<br />\nIn tabella TM1 vengono elencate le informazioni principali sul funzionamento della strumentazione alloggiata sui mooring nel periodo 2014-16, tenendo conto che:<br />\n- le profondità [m] si riferiscono agli schemi della campagna 2013-2014;<br />\n- gli intervalli riportati si riferiscono al periodo effettivo di misura valida in acqua e alla profondità indicata nella prima colonna.</p>\n<p align=\"justify\"><strong>Misure in continuo di temperatura e salinità superficiale</strong><br />\nDurante tutta la campagna è stata misurata la temperatura e salinità superficiale del mare (SST –Sea Surface Temperature; SSS – Sea Surface Salinity) utilizzando la presa d’acqua a circa 4 metri di profondità. L’attività è stata condotta in stretta simbiosi con il gruppo di Oceanografia Fisica.<br />\nL’attività di misura in continuo è iniziata il 17 gennaio 2016 ed è continuata sino al ritorno in Nuova Zelanda (22 febbraio 2016). Per queste misure sono stati impiegati tre sensori (due di temperatura ed uno di conducibilità) gestiti dal sistema SBE-21 ed un GPS Garmin, l’intervallo di acquisizione è stato di 30”. I dati hanno subìto un primo processamento a bordo per l’eliminazione dei picchi dovuti sostanzialmente al rollio della nave e alla presenza di ghiacci.<br />\nDi particolare interesse sono i dati acquisiti durante le due traversate oceaniche (andata e ritorno) tra Nuova Zelanda e Mare di Ross, i dati acquisiti hanno permesso di determinare le posizioni dei fronti termoalini che in questa zona separano aree a dinamica diversa. In fase di analisi del data set saranno valutate eventuali possibilità di utilizzo dei dati acquisiti per cal/val di misure satellitari.<br />\nLe misure di SST e SSS rappresentano quelle osservazioni ricorrenti della Antarctic Circumpolar Current sollecitate e regolate dal SOOS (Southern Ocean Observing System, <a href=\"http://www.soos.aq/\">http://www.soos.aq/</a>).</p>\n<p align=\"justify\"><strong>Misure XBT</strong><br />\nI lanci di sonde XBT (SIPPICAN mod.T7, prof. max 760 m) sono iniziati il 17 gennaio alla latitudine 48°S e sono terminati il 21 gennaio latitudine di 70°S; l\'intervallo di campionamento è stato, come in passato, di 15 miglia nautiche e sono state utilizzate 89 sonde durante il viaggio tra la Nuova Zelanda e il Mare di Ross; solo una piccolissima percentuale delle sonde utilizzate ha mostrato problemi di funzionamento dovuti quasi esclusivamente al contatto del cavo conduttore in rame con lo scafo della nave.<br />\nI dati hanno subìto un primo processamento a bordo per eliminare valori spuri, i primi metri influenzati dall’inerzia termica del sensore e gli eventuali dati affetti dalla presenza del fondo. In figura 3 è riportata la sezione in temperatura dello strato sub-superficiale fino alla profondità massima di 700 m.<br />\nTali indagini, iniziate nel 1994, sono state portate avanti nell’ambito di diversi progetti PNRA e hanno oramai una valenza climatologica rilevante sia per il lungo periodo che coprono, sia per le possibili inter-connessioni con fenomeni a scala planetaria. Le misure XBT rappresentano quelle osservazioni ricorrenti della Antarctic Circumpolar Current sollecitate e regolate dal SOOS (Southern Ocean Observing System).<br />\nUna breve sezione XBT è stata effettuata anche in corrispondenza del mooring G in occasione di una linea condotta dall’echosurvey ed in concomitanza con il recupero del mooring stesso. In Figura 4 è rappresentata la sezione verticale ottenuta aggiungendo alle misure XBT, il profilo di temperatura misurato prima del recupero del mooring G.</p>\n<p align=\"center\"><a href=\" \"><img alt=\"\" src=\"/sites/all/themes/multipurpose/images/fig_XXXI.png\" width=\"600px\" /></a></p>\n<p align=\"justify\"><strong>Figura 1. Sezione verticale della distribuzione della temperatura misurata dal 17 al 21 gennaio 2016 (raw data).</strong></p>\n<p align=\"justify\"><strong>Floats</strong><br />\nDurante il viaggio di andata sono stati rilasciati in mare 10 floats e 10 drifters. Queste attività rientrano nella collaborazione con il progetto ARGOItaly che ha fornito le sonde utilizzate (<a href=\"http://nettuno.ogs.trieste.it/jungo/argoitaly/floats.html\">http://nettuno.ogs.trieste.it/jungo/argoitaly/floats.html</a>) che rappresenta il contributo italiano ad un più ampio programma di monitoraggio globale degli oceani.<br />\nI floats sono sonde automatizzate che, rilasciate in mare, si muovono in maniera “lagrangiana” (trasportata dalle correnti marine) ad una profondità predeterminata. Ad intervalli regolari la sonda sale in superficie misurando le proprietà termoaline che poi vengono trasmesse via satellite al centro di raccolta dati. Il ciclo tipico dei float utilizzati in questa occasione prevede una “parking depth” a 1000 metri, ad intervalli di 10 giorni il float è programmato per immergersi sino a 2000 metri e poi di risalire in superficie per eseguire il profilo di temperatura e salinità e per la trasmissione dei dati acquisiti. I float utilizzati nel progetto, in particolare, hanno un sistema di comunicazione satellitare bi-direzionale (Iridium, per i modelli APEX e Argos per i modelli Arvor e Provor) per poter modificare a distanza i parametri di missione.<br />\nI drifters sono sonde che rimangono in superficie e anche esse si muovono in maniera “lagrangiana” trasmettendo in tempo reale le posizioni ed il valore di temperatura superficiale. I lanci dei drifters e dei float è avvenuto sostanzialmente in simultanea.</p>\n\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:2:\"en\";a:1:{i:0;a:3:{s:5:\"value\";s:19:\"2015/16 - PNRA XXXI\";s:6:\"format\";N;s:10:\"safe_value\";s:19:\"2015/16 - PNRA XXXI\";}}}}',0,1539133215,1),('field:node:125','a:2:{s:4:\"body\";a:1:{s:2:\"it\";a:1:{i:0;a:5:{s:5:\"value\";s:10890:\"<h1 align=\"center\"><strong>Rapporto sulla Campagna Antartica (estratto)</strong></h1>\r\n\r\n<h2 align=\"center\"><strong>Estate Australe 2013-2014</strong></h2>\r\n\r\n<h3 align=\"center\"><strong>Ventinovesima Spedizione (PNRA XXIX)</strong></h3>\r\n\r\n<p align=\"center\"><strong>Progetto 2009/B.09: Osservatorio Marino nel Mare di Ross. Resp. G. Spezie</strong><br />\r\n<em>G. Budillon, P. Falco, P. Penna</em></p>\r\n\r\n<p align=\"justify\">Il Progetto MORSea è sostanzialmente relativo alla attività di mantenimento della rete di osservazioni marine attualmente esistente nel Mare di Ross. L’obiettivo primario dell’osservatorio è quello di fornire un sostanziale contributo al monitoraggio della variabilità interannuale delle caratteristiche fisiche e geochimiche delle acque di shelf nel settore occidentale del Mare di Ross.\r\nL’osservatorio è attualmente costituito da 4 catene correntometriche (mooring) contrassegnate dalle lettere “B”, “D”, “G” e “L”. Il Progetto si occupa del mantenimento dei mooring esistenti e, possibilmente, di potenziare la strumentazione attualmente alloggiata sulla base anche di accordi e collaborazioni con progetti italiani e stranieri.\r\nA queste attività si sono aggiunte anche le misure di ship of opportunity effettuate senza interferire con i tempi di navigazione della nave Italica. In particolare quest’anno sono state eseguite misure di temperatura e salinità superficiale del mare (SST e SSS rispettivamente), lanci di XBT per la misura della struttura subsuperficiale dell’Oceano Meridionale e lanci di float (questi ultimi nell’ambito della collaborazione con il progetto ARGOItaly). Queste attività, svolte in passato da progetti non più attivi del PNRA (CLIMA e SOChIC), sono state condotte al fine di non interrompere le preziose serie temporali acquisite dal 1994, considerata la valenza ormai “climatica” di queste informazioni.\r\nIn attesa della attribuzione dei fondi per le attività di progetto, anche quest’anno le indispensabili acquisizioni di materiale di consumo (zinchi, batterie, …), marinaresco (boe di spinta, cavi, maniglioni, …) sono state eseguite anticipando le spese su dotazioni economiche non PNRA. In questo contesto non è stato possibile quindi acquisire nuovi strumenti per questa spedizione e, in buona sostanza, la strumentazione rimessa a mare è stata la stessa di quella degli anni precedenti che, in alcuni casi, risale a oltre 15 anni fa. Il materiale di consumo e di ricambio per le trappole di sedimento è stato fornito: dal dott. M. Capello (Univ. di Genova) per i mooring “D” e “L” (3 trappole), dal dott. L. Langone (CNR – ISMAR) per il mooring “B” (1 trappola). Quest’ultimo ha inoltre curato a bordo la conservazione dei campioni acquisiti, la programmazione dei motori, ed in generale il ricondizionamento delle trappole di sedimento per il successivo riposizionamento in mare.\r\nCome specificato nel seguito (se non specificato diversamente gli orari e le date sono in tempo locale – LT), il recupero di due mooring (“B” e “L”) ha visto la preziosa collaborazione del gruppo EchoSurvey (CNR-ISMAR, Ancona) che ha messo a disposizione la strumentazione da pesca (divergenti) e ha partecipato attivamente alle operazioni.\r\nCome tradizione, sono state effettuate calate di CTD/LADCP - per la verifica e taratura dei sensori posizionati sulle catene correntometriche - prima e dopo il loro recupero e posizionamento; le misure sono state eseguite in collaborazione con l’U.O. “Idrologia” del progetto RoME.\r\nNel seguito vengono descritte le attività svolte su ogni catena correntometrica e in tabella I viene riportato la scheda riassuntiva.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “B”</strong><br />\r\nIl mooring “B” è stato recuperato il 29 gennaio e rimesso in mare il 31 gennaio 2014.\r\nUn primo tentativo di recupero è stato effettuato il 6 gennaio 2014 durante l’avvicinamento della nave Italica verso la Base MZS in considerazione delle buone condizioni meteo marine. Nonostante tutte le operazioni fossero state eseguite con successo, sia quelle propedeutiche allo sgancio (wake up dello sganciatore, calcolo della distanza), sia lo sgancio stesso (con la regolare ricezione del segnale di conferma di avvenuto sgancio e posizione verticale di entrambi gli sganciatori), il mooring non è risalito in superficie. Dopo alcune ore di ulteriori tentativi e prove, constatata l’impossibilità di poter effettuare altre operazioni e la urgenza di raggiungere MZS, è stato deciso di abbandonare la zona posticipando altri tentativi di recupero. Grazie alla collaborazione del gruppo EchoSurvey, è stato effettuato un passaggio sulla posizione del mooring rilevando tutta la struttura, sia nella parte di fondo sia superiore, avendo conferma in questo modo della sua effettiva integrità e posizione verticale.\r\nUn secondo tentativo è stato effettuato il giorno 12 gennaio 2014. Ritornati sul posto è stata verificata nuovamente la piena funzionalità di entrambi gli sganciatori che rispondevano regolarmente alle interrogazioni con il segnale di avvenuto sgancio e posizione verticale, nonostante ciò il mooring non risaliva in superficie. Al fine di tentare il recupero del mooring è stata messa in mare una struttura a “U” composta alle due estremità verticali da una boa superficiale sostenente una cima di circa 150 metri appesantita da una catena, entrambe collegate in profondità da una cima orizzontale di circa 250 metri. Questa struttura è stata filata in mare dalla nave Italica a monte della corrente predominante ed è stato atteso il tempo necessario a far derivare la struttura sulla posizione del mooring. Al secondo tentativo il mooring è stato infatti “incocciato”: le boe superficiali, distanti tra loro circa 250 metri, hanno modificato la traiettoria di deriva avvicinandosi tra loro. Dopo circa mezz’ora la nave ha quindi operato per rampinare entrambe le boe e ha iniziato il recupero da poppa. Purtroppo durante questa fase si è notato che le cime andavano in bando testimoniando la perdita di aggancio con il mooring. Non è stato possibile ripetere ulteriori prove per le condizioni del mare; verificata ancora una volta la posizione del mooring, è stato deciso di rimandare nuovamente un ulteriore tentativo di recupero.\r\nIl mooring è stato recuperato il 29 gennaio 2014 operando in stretta collaborazione con il gruppo EchoSurvey presente a bordo (Giovanni Canduci e Giordano Giuliani) che ha messo a disposizione i divergenti e la propria professionalità. Verificata ancora una volta la posizione del mooring, sono stati filati da poppa i divergenti sostenuti da circa 500 metri di cavo d’acciaio e collegati tra loro da cime di kevlar di circa 500 metri, appesantite da una catena. Al secondo tentativo il mooring è stato incocciato e recuperato a bordo senza eccessivi problemi.\r\nL’esame della strumentazione recuperata ha evidenziato una anomala presenza di fouling sulla strumentazione profonda (e non su quella più superficiale) che risultava particolarmente intensa sugli sganciatori e ne aveva impedito lo sgancio, nonostante il meccanismo di svincolo avesse perfettamente funzionato.\r\nDopo la manutenzione del caso, la catena correntometrica è stata riposizionata.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “D”</strong><br />\r\nIl mooring “D” è stato recuperato il 12 gennaio e rimesso in mare il 21 gennaio 2014.\r\nDurante la XXVIII (2011-12) Spedizione il mooring era stato posizionato in mare incrementando il payload e prolungando la sua estensione sino a circa 124 m dalla superficie con la strumentazione fornita dal progetto “2010/A4.01” (sensori termoalini e un profilatore acustico). Per evitare possibili perdite di tutto il mooring, era stato deciso di collegare la parte inferiore con quella superiore (aggiunta per il progetto “2010/A4.01”) mediante un anello debole che avrebbe ceduto in caso di impatto con iceberg.\r\nIl recupero del mooring è stato effettuato in ottime condizioni meteo marine senza però rinvenire la parte superiore relativa al progetto “2010/A4.01”.\r\nA differenza di quanto evidenziato per il mooring “B”, non sono state rinvenute presenze anomale di fouling.\r\nEffettuata l’ordinaria manutenzione della strumentazione, il mooring “D” è stato rimesso in posizione.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “G”</strong><br />\r\nIl mooring “G” è stato recuperato il 23 gennaio e rimesso in mare il 26 gennaio 2014.\r\nEntrambe le operazioni si svolte senza particolari problemi in condizioni meteo marine accettabili. La configurazione del mooring riposizionato.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “L”</strong><br />\r\nIl mooring “L” è stato recuperato il 5 febbraio e rimesso in mare l’8 febbraio 2014.\r\nUn primo tentativo di recupero è stato effettuato l’11 gennaio, durante le operazioni di sbarco del materiale presso MZS, a bordo dell’Icebjorn. La risposta dello sganciatore alle interrogazioni con il modulo di sgancio a bordo dell’Icebjorn è sempre stata frammentaria e poco intellegibile. Analogo risultato si è ottenuto con il modulo di sgancio di rispetto a bordo della Italica. L’Italica ha quindi effettuato un passaggio sul punto teorico per rilevarlo con gli ecoscandagli del gruppo EchoSurvey, in questa indagine è stata identificata solo la strumentazione in prossimità del fondo.\r\nDurante le attività marine in Base, il battello Malippo ha effettuato un passaggio sulla posizione del mooring rilevandolo con l’ecoscandaglio di bordo e verificandone la posizione verticale.\r\nIn seguito a questa informazione è stato deciso di effettuare il recupero secondo le modalità già sperimentate in occasione del recupero del mooring “B” in collaborazione con il gruppo EchoSurvey. Il mooring è stato “incocciato” al primo tentativo l’8 febbraio ed è stato recuperato completamente integro.</p>\r\n\r\n<p align=\"justify\"><strong>Ringraziamenti:</strong><br />\r\nE’ doveroso un sentito ringraziamento:<br />\r\n- al gruppo EchoSurvey (CNR-ISMAR, Ancona) per la entusiastica collaborazione in fase di programmazione e di esecuzione delle operazioni di recupero dei mooring “B” e “L”, nonché per aver messo a disposizione parte della attrezzatura propria;<br />\r\n- al dott. Capello per l’assistenza in Italia e al dott. Langone per l’assistenza in Italia e a bordo nella manutenzione delle trappole di sedimento;<br />\r\n- a tutti coloro che hanno collaborato ai lanci degli XBT (G. Bruzzone, D. Cotterle, M. De Stefano, R. Geletti, G. Zambardino).<br />\r\n- al personale di bordo e del PNRA per l’assistenza continua e per aver coadiuvato con grande professionalità nelle operazioni marinaresche a poppa in occasione del recupero e messa a mare delle catene correntometriche, anche in condizioni meteo marine non facili.</p>\r\n\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:10946:\"<h1 align=\"center\"><strong>Rapporto sulla Campagna Antartica (estratto)</strong></h1>\n<h2 align=\"center\"><strong>Estate Australe 2013-2014</strong></h2>\n<h3 align=\"center\"><strong>Ventinovesima Spedizione (PNRA XXIX)</strong></h3>\n<p align=\"center\"><strong>Progetto 2009/B.09: Osservatorio Marino nel Mare di Ross. Resp. G. Spezie</strong><br /><em>G. Budillon, P. Falco, P. Penna</em></p>\n<p align=\"justify\">Il Progetto MORSea è sostanzialmente relativo alla attività di mantenimento della rete di osservazioni marine attualmente esistente nel Mare di Ross. L’obiettivo primario dell’osservatorio è quello di fornire un sostanziale contributo al monitoraggio della variabilità interannuale delle caratteristiche fisiche e geochimiche delle acque di shelf nel settore occidentale del Mare di Ross.<br />\nL’osservatorio è attualmente costituito da 4 catene correntometriche (mooring) contrassegnate dalle lettere “B”, “D”, “G” e “L”. Il Progetto si occupa del mantenimento dei mooring esistenti e, possibilmente, di potenziare la strumentazione attualmente alloggiata sulla base anche di accordi e collaborazioni con progetti italiani e stranieri.<br />\nA queste attività si sono aggiunte anche le misure di ship of opportunity effettuate senza interferire con i tempi di navigazione della nave Italica. In particolare quest’anno sono state eseguite misure di temperatura e salinità superficiale del mare (SST e SSS rispettivamente), lanci di XBT per la misura della struttura subsuperficiale dell’Oceano Meridionale e lanci di float (questi ultimi nell’ambito della collaborazione con il progetto ARGOItaly). Queste attività, svolte in passato da progetti non più attivi del PNRA (CLIMA e SOChIC), sono state condotte al fine di non interrompere le preziose serie temporali acquisite dal 1994, considerata la valenza ormai “climatica” di queste informazioni.<br />\nIn attesa della attribuzione dei fondi per le attività di progetto, anche quest’anno le indispensabili acquisizioni di materiale di consumo (zinchi, batterie, …), marinaresco (boe di spinta, cavi, maniglioni, …) sono state eseguite anticipando le spese su dotazioni economiche non PNRA. In questo contesto non è stato possibile quindi acquisire nuovi strumenti per questa spedizione e, in buona sostanza, la strumentazione rimessa a mare è stata la stessa di quella degli anni precedenti che, in alcuni casi, risale a oltre 15 anni fa. Il materiale di consumo e di ricambio per le trappole di sedimento è stato fornito: dal dott. M. Capello (Univ. di Genova) per i mooring “D” e “L” (3 trappole), dal dott. L. Langone (CNR – ISMAR) per il mooring “B” (1 trappola). Quest’ultimo ha inoltre curato a bordo la conservazione dei campioni acquisiti, la programmazione dei motori, ed in generale il ricondizionamento delle trappole di sedimento per il successivo riposizionamento in mare.<br />\nCome specificato nel seguito (se non specificato diversamente gli orari e le date sono in tempo locale – LT), il recupero di due mooring (“B” e “L”) ha visto la preziosa collaborazione del gruppo EchoSurvey (CNR-ISMAR, Ancona) che ha messo a disposizione la strumentazione da pesca (divergenti) e ha partecipato attivamente alle operazioni.<br />\nCome tradizione, sono state effettuate calate di CTD/LADCP - per la verifica e taratura dei sensori posizionati sulle catene correntometriche - prima e dopo il loro recupero e posizionamento; le misure sono state eseguite in collaborazione con l’U.O. “Idrologia” del progetto RoME.<br />\nNel seguito vengono descritte le attività svolte su ogni catena correntometrica e in tabella I viene riportato la scheda riassuntiva.</p>\n<p align=\"justify\"><strong>Mooring “B”</strong><br />\nIl mooring “B” è stato recuperato il 29 gennaio e rimesso in mare il 31 gennaio 2014.<br />\nUn primo tentativo di recupero è stato effettuato il 6 gennaio 2014 durante l’avvicinamento della nave Italica verso la Base MZS in considerazione delle buone condizioni meteo marine. Nonostante tutte le operazioni fossero state eseguite con successo, sia quelle propedeutiche allo sgancio (wake up dello sganciatore, calcolo della distanza), sia lo sgancio stesso (con la regolare ricezione del segnale di conferma di avvenuto sgancio e posizione verticale di entrambi gli sganciatori), il mooring non è risalito in superficie. Dopo alcune ore di ulteriori tentativi e prove, constatata l’impossibilità di poter effettuare altre operazioni e la urgenza di raggiungere MZS, è stato deciso di abbandonare la zona posticipando altri tentativi di recupero. Grazie alla collaborazione del gruppo EchoSurvey, è stato effettuato un passaggio sulla posizione del mooring rilevando tutta la struttura, sia nella parte di fondo sia superiore, avendo conferma in questo modo della sua effettiva integrità e posizione verticale.<br />\nUn secondo tentativo è stato effettuato il giorno 12 gennaio 2014. Ritornati sul posto è stata verificata nuovamente la piena funzionalità di entrambi gli sganciatori che rispondevano regolarmente alle interrogazioni con il segnale di avvenuto sgancio e posizione verticale, nonostante ciò il mooring non risaliva in superficie. Al fine di tentare il recupero del mooring è stata messa in mare una struttura a “U” composta alle due estremità verticali da una boa superficiale sostenente una cima di circa 150 metri appesantita da una catena, entrambe collegate in profondità da una cima orizzontale di circa 250 metri. Questa struttura è stata filata in mare dalla nave Italica a monte della corrente predominante ed è stato atteso il tempo necessario a far derivare la struttura sulla posizione del mooring. Al secondo tentativo il mooring è stato infatti “incocciato”: le boe superficiali, distanti tra loro circa 250 metri, hanno modificato la traiettoria di deriva avvicinandosi tra loro. Dopo circa mezz’ora la nave ha quindi operato per rampinare entrambe le boe e ha iniziato il recupero da poppa. Purtroppo durante questa fase si è notato che le cime andavano in bando testimoniando la perdita di aggancio con il mooring. Non è stato possibile ripetere ulteriori prove per le condizioni del mare; verificata ancora una volta la posizione del mooring, è stato deciso di rimandare nuovamente un ulteriore tentativo di recupero.<br />\nIl mooring è stato recuperato il 29 gennaio 2014 operando in stretta collaborazione con il gruppo EchoSurvey presente a bordo (Giovanni Canduci e Giordano Giuliani) che ha messo a disposizione i divergenti e la propria professionalità. Verificata ancora una volta la posizione del mooring, sono stati filati da poppa i divergenti sostenuti da circa 500 metri di cavo d’acciaio e collegati tra loro da cime di kevlar di circa 500 metri, appesantite da una catena. Al secondo tentativo il mooring è stato incocciato e recuperato a bordo senza eccessivi problemi.<br />\nL’esame della strumentazione recuperata ha evidenziato una anomala presenza di fouling sulla strumentazione profonda (e non su quella più superficiale) che risultava particolarmente intensa sugli sganciatori e ne aveva impedito lo sgancio, nonostante il meccanismo di svincolo avesse perfettamente funzionato.<br />\nDopo la manutenzione del caso, la catena correntometrica è stata riposizionata.</p>\n<p align=\"justify\"><strong>Mooring “D”</strong><br />\nIl mooring “D” è stato recuperato il 12 gennaio e rimesso in mare il 21 gennaio 2014.<br />\nDurante la XXVIII (2011-12) Spedizione il mooring era stato posizionato in mare incrementando il payload e prolungando la sua estensione sino a circa 124 m dalla superficie con la strumentazione fornita dal progetto “2010/A4.01” (sensori termoalini e un profilatore acustico). Per evitare possibili perdite di tutto il mooring, era stato deciso di collegare la parte inferiore con quella superiore (aggiunta per il progetto “2010/A4.01”) mediante un anello debole che avrebbe ceduto in caso di impatto con iceberg.<br />\nIl recupero del mooring è stato effettuato in ottime condizioni meteo marine senza però rinvenire la parte superiore relativa al progetto “2010/A4.01”.<br />\nA differenza di quanto evidenziato per il mooring “B”, non sono state rinvenute presenze anomale di fouling.<br />\nEffettuata l’ordinaria manutenzione della strumentazione, il mooring “D” è stato rimesso in posizione.</p>\n<p align=\"justify\"><strong>Mooring “G”</strong><br />\nIl mooring “G” è stato recuperato il 23 gennaio e rimesso in mare il 26 gennaio 2014.<br />\nEntrambe le operazioni si svolte senza particolari problemi in condizioni meteo marine accettabili. La configurazione del mooring riposizionato.</p>\n<p align=\"justify\"><strong>Mooring “L”</strong><br />\nIl mooring “L” è stato recuperato il 5 febbraio e rimesso in mare l’8 febbraio 2014.<br />\nUn primo tentativo di recupero è stato effettuato l’11 gennaio, durante le operazioni di sbarco del materiale presso MZS, a bordo dell’Icebjorn. La risposta dello sganciatore alle interrogazioni con il modulo di sgancio a bordo dell’Icebjorn è sempre stata frammentaria e poco intellegibile. Analogo risultato si è ottenuto con il modulo di sgancio di rispetto a bordo della Italica. L’Italica ha quindi effettuato un passaggio sul punto teorico per rilevarlo con gli ecoscandagli del gruppo EchoSurvey, in questa indagine è stata identificata solo la strumentazione in prossimità del fondo.<br />\nDurante le attività marine in Base, il battello Malippo ha effettuato un passaggio sulla posizione del mooring rilevandolo con l’ecoscandaglio di bordo e verificandone la posizione verticale.<br />\nIn seguito a questa informazione è stato deciso di effettuare il recupero secondo le modalità già sperimentate in occasione del recupero del mooring “B” in collaborazione con il gruppo EchoSurvey. Il mooring è stato “incocciato” al primo tentativo l’8 febbraio ed è stato recuperato completamente integro.</p>\n<p align=\"justify\"><strong>Ringraziamenti:</strong><br />\nE’ doveroso un sentito ringraziamento:<br />\n- al gruppo EchoSurvey (CNR-ISMAR, Ancona) per la entusiastica collaborazione in fase di programmazione e di esecuzione delle operazioni di recupero dei mooring “B” e “L”, nonché per aver messo a disposizione parte della attrezzatura propria;<br />\n- al dott. Capello per l’assistenza in Italia e al dott. Langone per l’assistenza in Italia e a bordo nella manutenzione delle trappole di sedimento;<br />\n- a tutti coloro che hanno collaborato ai lanci degli XBT (G. Bruzzone, D. Cotterle, M. De Stefano, R. Geletti, G. Zambardino).<br />\n- al personale di bordo e del PNRA per l’assistenza continua e per aver coadiuvato con grande professionalità nelle operazioni marinaresche a poppa in occasione del recupero e messa a mare delle catene correntometriche, anche in condizioni meteo marine non facili.</p>\n\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:2:\"it\";a:1:{i:0;a:3:{s:5:\"value\";s:19:\"2013/14 - PNRA XXIX\";s:6:\"format\";N;s:10:\"safe_value\";s:19:\"2013/14 - PNRA XXIX\";}}}}',0,1539006574,1),('field:node:126','a:2:{s:4:\"body\";a:1:{s:2:\"it\";a:1:{i:0;a:5:{s:5:\"value\";s:7937:\"<h1 align= \"center\"><strong>Rapporto sulla Campagna Antartica (estratto)</strong></h1>\r\n\r\n<h2 align=\"center\"><strong>Estate Australe 2011-2012</strong></h2>\r\n\r\n<h3 align=\"center\"><strong>Ventisettesima Spedizione (PNRA XXVII)</strong></h3>\r\n\r\n<p align=\"center\"><strong>Progetto 2009/B.09: Osservatorio Marino Nel Mare di Ross ( MORSea)</strong><br />\r\n<em>E. Paschini, P. Penna, G. Spezie</em></p>\r\n\r\n<p align=\"justify\">Il Progetto MORSea è relativo alla sola attività di mantenimento della rete di osservazioni marine attualmente esistente nel Mare di Ross. L’obiettivo primario della rete è quello di fornire un sostanziale contributo al monitoraggio della variabilità interannuale delle caratteristiche termoaline delle acque di shelf nel settore occidentale del Mare di Ross.\r\nL’osservatorio è costituito da 4 mooring contrassegnati dalle lettere B, D, G e L. Il Progetto si occupa del mantenimento dei mooring esistenti e, possibilmente, di potenziare la strumentazione attualmente alloggiata sulla base anche di accordi e collaborazioni con progetti italiani e stranieri.\r\nPer la Campagna 2011-12 la responsabilità delle operazioni è stata affidata a Elio Paschini del CNR – ISMAR Sezione di Ancona, coadiuvato da Pierluigi Penna dello stesso Istituto e in collaborazione con G. Budillon e P.P. Falco del Progetto T-REx, presenti a bordo.\r\nSi riporta, di seguito, la sintesi delle attività svolte, redatta da Elio Paschini.\r\nLa preparazione alla crociera é stata affrettata e senza finanziamenti. Siamo stati invitati a partecipare alla 27a Spedizione alla fine dell’estate 2011 ed avvertiti che bisognava far fronte alle spese vive anticipando con fondi propri.\r\nSono stati subito presi contatti con l’Istituto NURC della Nato di La Spezia per avere un certo numero di correntometri uguali a quelli in uso in Antartide. Questo, allo scopo di avere degli strumenti di riserva e soprattutto per abbreviare i tempi tra il recupero ed il successivo lancio dei mooring. Il NURC ci ha gentilmente prestato 6 correntometri Aanderaa RCM7, tutti dotati di sensore di pressione da 1000psi (600 metri di range) e 3 memorie da 64K byte. Tali strumenti sono stati testati in laboratorio e sottoposti ad una prova di durata, facendoli funzionare con un intervallo di misura di 5 minuti durante il viaggio dell’Italica. dall’Italia alla NZ. Alla fine solo 5 sono stati considerati validi e 4 di questi sono ora in uso nel Mare di Ross. .\r\nInutile ricordare che un rinnovo del parco strumenti é necessario. Stiamo utilizzando gli scarti degli istituti di ricerca ricchi per le ricerche (povere) in Antartide.\r\nPrima della partenza dei materiali, é stata fatta riparare e testare da un laboratorio elettronico di nostra fiducia, l’unità di sgancio EG&G mod 8011B dichiarata irriparabile dall’importatore. Nell’occasione é stato allungato il cavo del trasduttore di circa 20 m, constatando che il segnale veniva degradato soltanto del 10%.\r\nAl nostro arrivo in Nuova Zelanda abbiamo apprezzato il giorno e mezzo trascorso in porto, per approntare il laboratorio e predisporre la nostra attrezzatura per un pronto intervento.\r\nDurante questa campagna sono state usate le seguenti innovazioni rispetto al passato:\r\n<ol>\r\n<li align=\"justify\">Il trasduttore é stato posto in un V-fin, che ha permesso di eseguire le operazioni di avvicinamento e sgancio anche con nave in manovra a bassa velocità: fino a 5-6 nodi. Questa innovazione sarebbe risultata ancor più utile se si fosse dovuto eseguire una ricerca/inseguimento di un mooring vagante. Dato che il cavo ora é lungo 30 metri: l’unità di sgancio é stata portata in plancia, e da lì sono state effettuate le operazioni in stretta interazione con il comando della nave ed al caldo del ponte.</li>\r\n<li align=\"justify\">In fase di recupero si é fatto largo uso della bozza cortissima (due metri) e nodo Prusik direttamente sul cavo di ormeggio. Questo ha permesso maggiore sicurezza e velocità nelle operazioni. Molti sbirri da un metro sono stati recuperati e riposizionati in posti più utili.</li>\r\n<li align=\"justify\">Nel rilascio della zavorra é stato finalmente usato un congegno acquistato per questo scopo almeno 10 anni fà. Il nuovo sistema ha convinto tutti per semplicità e sicurezza. Lo stesso attrezzo é stato usato per la messa a mare dei componenti pesanti (trappole e coppie di sgancia tori).</li>\r\n<li align=\"justify\">Dove é stato possibile, sono state eliminate tutte le parti metalliche. Le boe di vetro OCEANO sono ora legate ad uno spezzone di kevlar, che ne facilita il trasporto ed elimina la corrosione. Con lo stesso sistema sono state collegate a coppia le boe NAUTILUS.</li>\r\n</ol>\r\n</p>\r\n<p align=\"justify\">Nella riunione preparatoria della campagna, tenutasi a Roma presso la sede ENEA, si era deciso che gli strumenti del Progetto Picco sarebbero stati aggiunti in cima al mooring D con un punto debole di circa 300kg di rottura. Questo per non compromettere tutto il mooring in caso di collisione con un iceberg nella parte superficiale della catena di strumenti. Durante le operazioni di lancio il punto debole é stato elevato a 500kg per la possibilità di strappi nella fase di lancio.\r\nLa U.O. ha prestato assistenza preziosa alla campagna. Il CTD utilizzato durante tutta la campagna é stato quello PNRA assegnato a questa U.O. e portato come riserva. Come pure il convertitore USB a quattro porte seriali ed un altro convertitore USB-seriale, usato per il lanciatore XBT. Un convertitore USB per dischi SATA é stato prestato al servizio informatico della nave. É stato fornito il segnale GPS al lanciatore XBT e Penna é entrato nei turni di lancio delle sonde XBT. Il controllo del funzionamento della misura automatica di CO2 ed il prelievo di 9 campioni di aria per la U.O. Ori é stato curato da questa U.O..\r\nLa U.O. stà compilando un modulo di crociera internazionale standardizzato (CSR) contenente i metadati di tutte le U.O. coinvolte direttamente o indirettamente nella campagna, che sarà inviato alla banca dati europea SEA-DATA-NET.\r\nEntrambi i correntometri Aanderaa RCM9 hanno mostrato di non essere adatti a temperature così fredde per tempi così prolungati in acqua: entrambi sono risultati allagati. Il modello RCM7 sebbene più vecchio si é dimostrato più robusto. La perdita di dati nel secondo anno di misura, riscontrata in ogni strumento é dovuto alla infelice scelta di lasciare l’intervallo di campionamento a mezzora, invece di spostarlo ad un ora.</p>\r\n\r\n<p align=\"justify\"><strong>Tentativo di recupero del Mooring L vecchio (2008)</strong>\r\nÉ stato possibile effettuare tentativi di recupero in tre giorni distinti, ma nonostante questo il mooring é ancora lì. Sappiamo solo che é ancora integro e conosciamo più precisamente la sua posizione. Ovviamente abbiamo interrogato lo sganciatore, che non ha mai risposto. Sarebbe lungo descrivere dettagliatamente tutti i tentativi effettuati e le tecniche utilizzate. Possiamo dire che il metodo di incoccio con una una barra di cavo in kevlar posta a 60 metri di profondità e lunga 160, trascinata dalla corrente verso il mooring é risultata la più efficace. Ha incocciato il cavo del mooring 4 volte su 5 tentativi. Purtroppo non avevamo esperienza con mooring dotati di trappole.\r\nGuardando lo schema del mooring si capisce che incocciamo il cavo sotto alla trappola per sedimenti, che non rappresenta un buon punto di aggancio come per esempio il correntometro RCM7. Se il correntometro fosse stato sotto la trappola, come negli altri mooring il recupero era cosa fatta.\r\nCi auguriamo che durante la prossima spedizione, il personale della Base, opportunamente istruito, sia in grado di tentare il recupero. Ormai dopo 4-5 anni di permanenza in mare, la corrosione ha già intaccato la struttura della trappola che é il punto più debole del mooring. Ogni anno in più diminuisce la probabilità di recuperarlo.</p>\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:7988:\"<h1 align=\"center\"><strong>Rapporto sulla Campagna Antartica (estratto)</strong></h1>\n<h2 align=\"center\"><strong>Estate Australe 2011-2012</strong></h2>\n<h3 align=\"center\"><strong>Ventisettesima Spedizione (PNRA XXVII)</strong></h3>\n<p align=\"center\"><strong>Progetto 2009/B.09: Osservatorio Marino Nel Mare di Ross ( MORSea)</strong><br /><em>E. Paschini, P. Penna, G. Spezie</em></p>\n<p align=\"justify\">Il Progetto MORSea è relativo alla sola attività di mantenimento della rete di osservazioni marine attualmente esistente nel Mare di Ross. L’obiettivo primario della rete è quello di fornire un sostanziale contributo al monitoraggio della variabilità interannuale delle caratteristiche termoaline delle acque di shelf nel settore occidentale del Mare di Ross.<br />\nL’osservatorio è costituito da 4 mooring contrassegnati dalle lettere B, D, G e L. Il Progetto si occupa del mantenimento dei mooring esistenti e, possibilmente, di potenziare la strumentazione attualmente alloggiata sulla base anche di accordi e collaborazioni con progetti italiani e stranieri.<br />\nPer la Campagna 2011-12 la responsabilità delle operazioni è stata affidata a Elio Paschini del CNR – ISMAR Sezione di Ancona, coadiuvato da Pierluigi Penna dello stesso Istituto e in collaborazione con G. Budillon e P.P. Falco del Progetto T-REx, presenti a bordo.<br />\nSi riporta, di seguito, la sintesi delle attività svolte, redatta da Elio Paschini.<br />\nLa preparazione alla crociera é stata affrettata e senza finanziamenti. Siamo stati invitati a partecipare alla 27a Spedizione alla fine dell’estate 2011 ed avvertiti che bisognava far fronte alle spese vive anticipando con fondi propri.<br />\nSono stati subito presi contatti con l’Istituto NURC della Nato di La Spezia per avere un certo numero di correntometri uguali a quelli in uso in Antartide. Questo, allo scopo di avere degli strumenti di riserva e soprattutto per abbreviare i tempi tra il recupero ed il successivo lancio dei mooring. Il NURC ci ha gentilmente prestato 6 correntometri Aanderaa RCM7, tutti dotati di sensore di pressione da 1000psi (600 metri di range) e 3 memorie da 64K byte. Tali strumenti sono stati testati in laboratorio e sottoposti ad una prova di durata, facendoli funzionare con un intervallo di misura di 5 minuti durante il viaggio dell’Italica. dall’Italia alla NZ. Alla fine solo 5 sono stati considerati validi e 4 di questi sono ora in uso nel Mare di Ross. .<br />\nInutile ricordare che un rinnovo del parco strumenti é necessario. Stiamo utilizzando gli scarti degli istituti di ricerca ricchi per le ricerche (povere) in Antartide.<br />\nPrima della partenza dei materiali, é stata fatta riparare e testare da un laboratorio elettronico di nostra fiducia, l’unità di sgancio EG&amp;G mod 8011B dichiarata irriparabile dall’importatore. Nell’occasione é stato allungato il cavo del trasduttore di circa 20 m, constatando che il segnale veniva degradato soltanto del 10%.<br />\nAl nostro arrivo in Nuova Zelanda abbiamo apprezzato il giorno e mezzo trascorso in porto, per approntare il laboratorio e predisporre la nostra attrezzatura per un pronto intervento.<br />\nDurante questa campagna sono state usate le seguenti innovazioni rispetto al passato:</p>\n<ol><li align=\"justify\">Il trasduttore é stato posto in un V-fin, che ha permesso di eseguire le operazioni di avvicinamento e sgancio anche con nave in manovra a bassa velocità: fino a 5-6 nodi. Questa innovazione sarebbe risultata ancor più utile se si fosse dovuto eseguire una ricerca/inseguimento di un mooring vagante. Dato che il cavo ora é lungo 30 metri: l’unità di sgancio é stata portata in plancia, e da lì sono state effettuate le operazioni in stretta interazione con il comando della nave ed al caldo del ponte.</li>\n<li align=\"justify\">In fase di recupero si é fatto largo uso della bozza cortissima (due metri) e nodo Prusik direttamente sul cavo di ormeggio. Questo ha permesso maggiore sicurezza e velocità nelle operazioni. Molti sbirri da un metro sono stati recuperati e riposizionati in posti più utili.</li>\n<li align=\"justify\">Nel rilascio della zavorra é stato finalmente usato un congegno acquistato per questo scopo almeno 10 anni fà. Il nuovo sistema ha convinto tutti per semplicità e sicurezza. Lo stesso attrezzo é stato usato per la messa a mare dei componenti pesanti (trappole e coppie di sgancia tori).</li>\n<li align=\"justify\">Dove é stato possibile, sono state eliminate tutte le parti metalliche. Le boe di vetro OCEANO sono ora legate ad uno spezzone di kevlar, che ne facilita il trasporto ed elimina la corrosione. Con lo stesso sistema sono state collegate a coppia le boe NAUTILUS.</li>\n</ol><p align=\"justify\">Nella riunione preparatoria della campagna, tenutasi a Roma presso la sede ENEA, si era deciso che gli strumenti del Progetto Picco sarebbero stati aggiunti in cima al mooring D con un punto debole di circa 300kg di rottura. Questo per non compromettere tutto il mooring in caso di collisione con un iceberg nella parte superficiale della catena di strumenti. Durante le operazioni di lancio il punto debole é stato elevato a 500kg per la possibilità di strappi nella fase di lancio.<br />\nLa U.O. ha prestato assistenza preziosa alla campagna. Il CTD utilizzato durante tutta la campagna é stato quello PNRA assegnato a questa U.O. e portato come riserva. Come pure il convertitore USB a quattro porte seriali ed un altro convertitore USB-seriale, usato per il lanciatore XBT. Un convertitore USB per dischi SATA é stato prestato al servizio informatico della nave. É stato fornito il segnale GPS al lanciatore XBT e Penna é entrato nei turni di lancio delle sonde XBT. Il controllo del funzionamento della misura automatica di CO2 ed il prelievo di 9 campioni di aria per la U.O. Ori é stato curato da questa U.O..<br />\nLa U.O. stà compilando un modulo di crociera internazionale standardizzato (CSR) contenente i metadati di tutte le U.O. coinvolte direttamente o indirettamente nella campagna, che sarà inviato alla banca dati europea SEA-DATA-NET.<br />\nEntrambi i correntometri Aanderaa RCM9 hanno mostrato di non essere adatti a temperature così fredde per tempi così prolungati in acqua: entrambi sono risultati allagati. Il modello RCM7 sebbene più vecchio si é dimostrato più robusto. La perdita di dati nel secondo anno di misura, riscontrata in ogni strumento é dovuto alla infelice scelta di lasciare l’intervallo di campionamento a mezzora, invece di spostarlo ad un ora.</p>\n<p align=\"justify\"><strong>Tentativo di recupero del Mooring L vecchio (2008)</strong><br />\nÉ stato possibile effettuare tentativi di recupero in tre giorni distinti, ma nonostante questo il mooring é ancora lì. Sappiamo solo che é ancora integro e conosciamo più precisamente la sua posizione. Ovviamente abbiamo interrogato lo sganciatore, che non ha mai risposto. Sarebbe lungo descrivere dettagliatamente tutti i tentativi effettuati e le tecniche utilizzate. Possiamo dire che il metodo di incoccio con una una barra di cavo in kevlar posta a 60 metri di profondità e lunga 160, trascinata dalla corrente verso il mooring é risultata la più efficace. Ha incocciato il cavo del mooring 4 volte su 5 tentativi. Purtroppo non avevamo esperienza con mooring dotati di trappole.<br />\nGuardando lo schema del mooring si capisce che incocciamo il cavo sotto alla trappola per sedimenti, che non rappresenta un buon punto di aggancio come per esempio il correntometro RCM7. Se il correntometro fosse stato sotto la trappola, come negli altri mooring il recupero era cosa fatta.<br />\nCi auguriamo che durante la prossima spedizione, il personale della Base, opportunamente istruito, sia in grado di tentare il recupero. Ormai dopo 4-5 anni di permanenza in mare, la corrosione ha già intaccato la struttura della trappola che é il punto più debole del mooring. Ogni anno in più diminuisce la probabilità di recuperarlo.</p>\n\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:2:\"it\";a:1:{i:0;a:3:{s:5:\"value\";s:20:\"2011/12 - PNRA XXVII\";s:6:\"format\";N;s:10:\"safe_value\";s:20:\"2011/12 - PNRA XXVII\";}}}}',0,1538911468,1),('field:node:127','a:2:{s:4:\"body\";a:1:{s:2:\"it\";a:1:{i:0;a:5:{s:5:\"value\";s:5392:\"<h1 align= \"center\"><strong>Italian field activities in the Pacific Sector of the ACC</strong></h1>\r\n<h2 align=\"center\"><strong>Austral Summer 2014-2015</strong></h2>\r\n<h3 align=\"center\"><strong>30th Italian Expedition in Antarctica (PNRA XXX)</strong></h3>\r\n</br>\r\n<p align=\"justify\">The absence of continental barriers across the latitude band of Drake Passage permits an Antarctic Circumpolar Current (ACC) to flow and act as the primary driver for inter-basin exchanges. Due to its important climate impact, the ACC band is an area of high interest, especially since global ocean temperatures have been shown to increase in the last. Hydrographic observations are thus important as they aid the description and understanding of the processes which occur within the Southern Ocean and across the ACC. \r\nThe oceanographic Italian field activities in the Southern Ocean during Austral summer 2014-15 will be carried on in the framework of the MORSea project (http://morsea.uniparthenope.it/, founded by the Italian PNRA - National Program for Antarctic Research) and they will be focused on the in situ monitoring of the Pacific Sector of the ACC - between New Zealand and the Ross Sea - by means of XBT, floats, and drifters. Two Italian scientists of University of Napoli “Parthenope” will be host onboard of the South Korean R/V Araon in the framework of the collaboration between Italian PNRA and KOPRI (Korea Polar Research Institute).</p>\r\nThree main actions will be undertaken during the cruise:\r\n•	collection of in situ temperature data in the layer 0-800m;\r\n•	release of 10 SVP2 surface drifters;\r\n•	deployment of 10 ARVOR and PROVOR floats.\r\n<p align=\"justify\">Main focus of the cruise is the continuation of the about twenty year-long time series of temperature data along the endurance line New Zealand - Antarctica. Since 1994 in situ temperature data of the surface layer of the southern ocean have been collected in the framework of the Italian CLIMA and SOChIC projects. Up to 2013, 25 transects between New Zealand and the Ross Sea have been realized by the R/V Italica mainly in January and February (figure 1) collecting SST, SSS, XBT and XCTD data.\r\nDuring Austral summer 2014/2015 field activities will increase and preserve the importance of the large dataset collected since 1994 and will represent also a significant contribution to the Italian deployment of lagrangian platforms in the latitude band of the ACC with a grand total of 20 drifting platforms (10 floats and 10 surface drifters) provided by the ARGO-Italy program (http://argoitaly.ogs.trieste.it/).</p>\r\n<p ALIGN=\"center\"><a href=\" \"><img alt=\"\" src=\"/sites/all/themes/multipurpose/images/fig1.png\" width=\"500px\" /></a></p>\r\n \r\n<p align=\"justify\"><strong>Figure 1. Transects of XBT casts relating to the CLIMA/SOChIC/MORSea programmes (black dots) from 1994 to 2013. Underlying bathymetry (meters below sea level) is indicated by color shading.</b></strong>\r\n\r\n<p align=\"justify\">Temperature data are usually collected using Sippican T7 probes providing temperature profiles with a vertical resolution of 65 cm and a maximum nominal depth of 760 m. A regular 20 km sampling rate is adopted with increased sampling frequency over the main frontal regions of the ACC. Transects are usually performed in 5 days providing a synoptic picture of the thermal structure of the upper SO in this sector.\r\nSurface data related to temperature, salinity, chlorophyll and – more recently – other bio-geochemical tracers, as well as atmospheric data and CO2 atmospheric partial pressure, are usually collected by the R/V Italica along the entire transect while drifters and floats are released in correspondence of the main ACC fronts.\r\nSince 2009 the location of ACC fronts in this sector is also monitored on the basis of satellite altimetry data (SSH), in order to provide indications to sea-going staff on the position of fronts and also to study the variability of ACC fronts during the entire year and observe their modification during any eventual eddy shedding event.\r\nIn our data set the Polar Front (PF) positions (figure 2) are characterized by the minimum (northest position) value of 60.2°S reached during November 1994. The mean position of the PF is slightly southern (61.7°S) than previous estimation (61.5°S) from Budillon and Rintoul [2003], while the standard deviation (0.9°) remains unchanged. Figure 2 also shows the presence of isolated latitude band associated to the PF_SSH values not linked to any in situ front position. These isolated signals, often characterized by a very small latitudinal extension, can be due to the presence of water masses with the same physical properties of PF water in an unusual northern position. The explanation for the northern migration of water with PF characteristics can be linked to the presence of eddies detaching from the PF and moving northward to the Sub Antarctic Front.</p>\r\n <p ALIGN=\"center\"><a href=\" \"><img alt=\"\" src=\"/sites/all/themes/multipurpose/images/fig2.png\" width=\"500px\" /></a></p>\r\n<p align=\"justify\"><strong>Figure 2. Positions of the PF during the CLIMA/SOChIC/MORSea cruises from 1994 to 2010. Black line represents the mean latitude of front from in situ data, gray vertical bars represent the along track-latitude bands where fronts are detected using altimetry values (from Cotroneo et al. 2013).</strong></p>\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:5516:\"<h1 align=\"center\"><strong>Italian field activities in the Pacific Sector of the ACC</strong></h1>\n<h2 align=\"center\"><strong>Austral Summer 2014-2015</strong></h2>\n<h3 align=\"center\"><strong>30th Italian Expedition in Antarctica (PNRA XXX)</strong></h3>\n<p></p>\n<p align=\"justify\">The absence of continental barriers across the latitude band of Drake Passage permits an Antarctic Circumpolar Current (ACC) to flow and act as the primary driver for inter-basin exchanges. Due to its important climate impact, the ACC band is an area of high interest, especially since global ocean temperatures have been shown to increase in the last. Hydrographic observations are thus important as they aid the description and understanding of the processes which occur within the Southern Ocean and across the ACC.<br />\nThe oceanographic Italian field activities in the Southern Ocean during Austral summer 2014-15 will be carried on in the framework of the MORSea project (<a href=\"http://morsea.uniparthenope.it/\">http://morsea.uniparthenope.it/</a>, founded by the Italian PNRA - National Program for Antarctic Research) and they will be focused on the in situ monitoring of the Pacific Sector of the ACC - between New Zealand and the Ross Sea - by means of XBT, floats, and drifters. Two Italian scientists of University of Napoli “Parthenope” will be host onboard of the South Korean R/V Araon in the framework of the collaboration between Italian PNRA and KOPRI (Korea Polar Research Institute).</p>\n<p>Three main actions will be undertaken during the cruise:<br />\n•	collection of in situ temperature data in the layer 0-800m;<br />\n•	release of 10 SVP2 surface drifters;<br />\n•	deployment of 10 ARVOR and PROVOR floats.</p>\n<p align=\"justify\">Main focus of the cruise is the continuation of the about twenty year-long time series of temperature data along the endurance line New Zealand - Antarctica. Since 1994 in situ temperature data of the surface layer of the southern ocean have been collected in the framework of the Italian CLIMA and SOChIC projects. Up to 2013, 25 transects between New Zealand and the Ross Sea have been realized by the R/V Italica mainly in January and February (figure 1) collecting SST, SSS, XBT and XCTD data.<br />\nDuring Austral summer 2014/2015 field activities will increase and preserve the importance of the large dataset collected since 1994 and will represent also a significant contribution to the Italian deployment of lagrangian platforms in the latitude band of the ACC with a grand total of 20 drifting platforms (10 floats and 10 surface drifters) provided by the ARGO-Italy program (<a href=\"http://argoitaly.ogs.trieste.it/\">http://argoitaly.ogs.trieste.it/</a>).</p>\n<p align=\"center\"><a href=\" \"><img alt=\"\" src=\"/sites/all/themes/multipurpose/images/fig1.png\" width=\"500px\" /></a></p>\n<p align=\"justify\"><strong>Figure 1. Transects of XBT casts relating to the CLIMA/SOChIC/MORSea programmes (black dots) from 1994 to 2013. Underlying bathymetry (meters below sea level) is indicated by color shading.</strong></p>\n<p align=\"justify\">Temperature data are usually collected using Sippican T7 probes providing temperature profiles with a vertical resolution of 65 cm and a maximum nominal depth of 760 m. A regular 20 km sampling rate is adopted with increased sampling frequency over the main frontal regions of the ACC. Transects are usually performed in 5 days providing a synoptic picture of the thermal structure of the upper SO in this sector.<br />\nSurface data related to temperature, salinity, chlorophyll and – more recently – other bio-geochemical tracers, as well as atmospheric data and CO2 atmospheric partial pressure, are usually collected by the R/V Italica along the entire transect while drifters and floats are released in correspondence of the main ACC fronts.<br />\nSince 2009 the location of ACC fronts in this sector is also monitored on the basis of satellite altimetry data (SSH), in order to provide indications to sea-going staff on the position of fronts and also to study the variability of ACC fronts during the entire year and observe their modification during any eventual eddy shedding event.<br />\nIn our data set the Polar Front (PF) positions (figure 2) are characterized by the minimum (northest position) value of 60.2°S reached during November 1994. The mean position of the PF is slightly southern (61.7°S) than previous estimation (61.5°S) from Budillon and Rintoul [2003], while the standard deviation (0.9°) remains unchanged. Figure 2 also shows the presence of isolated latitude band associated to the PF_SSH values not linked to any in situ front position. These isolated signals, often characterized by a very small latitudinal extension, can be due to the presence of water masses with the same physical properties of PF water in an unusual northern position. The explanation for the northern migration of water with PF characteristics can be linked to the presence of eddies detaching from the PF and moving northward to the Sub Antarctic Front.</p>\n<p align=\"center\"><a href=\" \"><img alt=\"\" src=\"/sites/all/themes/multipurpose/images/fig2.png\" width=\"500px\" /></a></p>\n<p align=\"justify\"><strong>Figure 2. Positions of the PF during the CLIMA/SOChIC/MORSea cruises from 1994 to 2010. Black line represents the mean latitude of front from in situ data, gray vertical bars represent the along track-latitude bands where fronts are detected using altimetry values (from Cotroneo et al. 2013).</strong></p>\n\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:2:\"it\";a:1:{i:0;a:3:{s:5:\"value\";s:18:\"2014/15 - PNRA XXX\";s:6:\"format\";N;s:10:\"safe_value\";s:18:\"2014/15 - PNRA XXX\";}}}}',0,1539006670,1),('field:node:128','a:2:{s:4:\"body\";a:1:{s:2:\"it\";a:1:{i:0;a:5:{s:5:\"value\";s:9396:\"<h1 align= \"center\"><strong>Rapporto sulla Campagna Antartica (estratto)</strong></h1>\r\n\r\n<h2 align=\"center\"><strong>Estate Australe 2015-2016</strong></h2>\r\n\r\n<h3 align=\"center\"><strong>Trentunesima Spedizione (PNRA XXXI)</strong></h3>\r\n\r\n<p align=\"center\"><strong>Progetto 2009/B.09: Osservatorio Marino Nel Mare di Ross ( MORSea)</strong><br />\r\n<em>G. Budillon, A. De Alteris, G. Zambardino</em></p>\r\n\r\n<p align=\"justify\">Le attività a bordo (descritte nel seguito in Universal Time Coordinated - UTC) del progetto MORSea (http://morsea.uniparthenope.it) sono state principalmente focalizzate al mantenimento della rete di osservazioni marine attualmente esistente nel Mare di Ross. L’obiettivo primario dell’osservatorio è quello di fornire un sostanziale contributo al monitoraggio della variabilità interannuale delle caratteristiche fisiche e geochimiche delle acque di shelf nel settore occidentale del Mare di Ross.\r\nL’osservatorio è attualmente costituito da 4 catene correntometriche (mooring) contrassegnate dalle lettere “B”, “D”, “G” e “L”.\r\nA queste attività si sono aggiunte anche le misure di “ship of opportunity” effettuate senza interferire con i tempi di navigazione della M/N Italica. In particolare quest’anno sono state eseguite misure di temperatura e salinità superficiale del mare (SST e SSS rispettivamente), lanci di XBT per la misura della struttura subsuperficiale dell’Oceano Meridionale; lanci di drifter e float (nell’ambito della collaborazione con il progetto ARGOItaly). Queste attività, svolte in passato da progetti non più attivi del PNRA (CLIMA e SOChIC), sono state condotte al fine di non interrompere le preziose serie temporali acquisite dal 1994 considerata la valenza ormai “climatica” di queste informazioni.\r\nAnche quest’anno non è stato possibile acquisire nuova strumentazione, fatta eccezione per un nuovo correntometro Aanderaa Seaguard ed una sonda SBE SMP ODO, per cui i sensori riposizionati sono stati sostanzialmente quelli degli anni precedenti che, in diversi casi, risalgono a oltre 20 anni fa. Il materiale di consumo e di ricambio per le trappole di sedimento è stato fornito: dal dott. M. Capello (Univ. di Genova) per i mooring “D” e “L” (2 trappole), dal dott. L. Langone (CNR – ISMAR) per il mooring “B” (1 trappola). Le attività di recupero, ricondizionamento, scarico dei dati e rimessa a mare sono state effettuate in simbiosi con il gruppo di Oceanografia Fisica (Dr. P.Falco e M. De Stefano).\r\nIn occasione della sosta in base del 4 febbraio (UTC) si è provveduto anche a recuperare la catena correntometrica posizionato dalla NIWA su un fondale di 516 m a circa 3 miglia a est di MZS.\r\nCome tradizione, sono state effettuate calate di CTD/LADCP - per la verifica e taratura dei sensori posizionati sulle catene correntometriche - prima del loro recupero e dopo il loro posizionamento.\r\nNel seguito vengono descritte le attività svolte su ogni catena correntometrica ed in tabella TM1 viene riportato la scheda riassuntiva dei periodi di funzionamento di ogni strumento.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “B”</strong><br />\r\nIl mooring “B” è stato recuperato il 24 gennaio e rimesso in mare il 27 gennaio 2016.\r\nIl recupero del mooring secondo la normale procedura di sgancio ha dato esito negativo, nonostante entrambi gli sganciatori avessero confermato l’avvenuto sgancio e la loro posizione verticale.\r\nGrazie alla collaborazione del gruppo EchoSurvey, è stato effettuato un passaggio sulla posizione del mooring rilevando tutta la struttura, sia nella parte di fondo sia superiore, avendo conferma in questo modo della sua effettiva integrità e posizione verticale.\r\nIn analogia con quanto effettuato nella XXIX spedizione, il mooring è stato recuperato filando da poppa una coppia di divergenti sostenuti da circa 500 metri di cavo d’acciaio e collegati tra loro da cime di kevlar di circa 250 metri, appesantite da una catena. Al primo tentativo il mooring è stato incocciato e recuperato a bordo senza eccessivi problemi.\r\nDopo la manutenzione del caso, la catena correntometrica è stata riposizionata nella configurazione riportata in figura M1, sostanzialmente analoga al precedente periodo ma aumentando la spinta di galleggiamento.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “G”</strong><br />\r\nIl mooring “G” è stato recuperato il 28 gennaio e rimesso in mare il 30 gennaio 2016.\r\nEntrambe le operazioni si svolte senza particolari problemi: il recupero con ottime condizioni meteo mentre il riposizionamento con mare forza 4-5.\r\nLa configurazione del mooring riposizionato è stata modificata inserendo una nuova quota di misura a circa 250 me di profondità (v. figura M3) costituita da un correntometro e una sonda SBE per la misura di T&C.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “D”</strong><br />\r\nIl mooring “D” è stato recuperato il 31 gennaio e rimesso in mare il 6 febbraio 2016.\r\nEffettuata l’ordinaria manutenzione della strumentazione, il mooring “D” è stato rimesso in posizione nella configurazione illustrata in figura M2, rispetto alla precedente risultano: 1) aggiunta al fondo una sonda SBE per la misura di T&C dotata di sensore di ossigeno, 2) eliminata una trappola per sedimenti a causa della rottura di un motore.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “L”</strong><br />\r\nIl mooring “L” è stato recuperato il 1° febbraio e rimesso in mare il 9 febbraio 2016.\r\nLa configurazione del mooring riposizionato è riportata in figura M4.\r\nIn tabella TM1 vengono elencate le informazioni principali sul funzionamento della strumentazione alloggiata sui mooring nel periodo 2014-16, tenendo conto che:\r\n- le profondità [m] si riferiscono agli schemi della campagna 2013-2014;\r\n- gli intervalli riportati si riferiscono al periodo effettivo di misura valida in acqua e alla profondità indicata nella prima colonna.</p>\r\n\r\n<p align=\"justify\"><strong>Misure in continuo di temperatura e salinità superficiale</strong><br />\r\nDurante tutta la campagna è stata misurata la temperatura e salinità superficiale del mare (SST –Sea Surface Temperature; SSS – Sea Surface Salinity) utilizzando la presa d’acqua a circa 4 metri di profondità. L’attività è stata condotta in stretta simbiosi con il gruppo di Oceanografia Fisica.\r\nL’attività di misura in continuo è iniziata il 17 gennaio 2016 ed è continuata sino al ritorno in Nuova Zelanda (22 febbraio 2016). Per queste misure sono stati impiegati tre sensori (due di temperatura ed uno di conducibilità) gestiti dal sistema SBE-21 ed un GPS Garmin, l’intervallo di acquisizione è stato di 30”. I dati hanno subìto un primo processamento a bordo per l’eliminazione dei picchi dovuti sostanzialmente al rollio della nave e alla presenza di ghiacci.\r\nDi particolare interesse sono i dati acquisiti durante le due traversate oceaniche (andata e ritorno) tra Nuova Zelanda e Mare di Ross, i dati acquisiti hanno permesso di determinare le posizioni dei fronti termoalini che in questa zona separano aree a dinamica diversa. In fase di analisi del data set saranno valutate eventuali possibilità di utilizzo dei dati acquisiti per cal/val di misure satellitari.\r\nLe misure di SST e SSS rappresentano quelle osservazioni ricorrenti della Antarctic Circumpolar Current sollecitate e regolate dal SOOS (Southern Ocean Observing System, http://www.soos.aq/).\r\n\r\n<p align=\"justify\"><strong>Misure XBT</strong><br />\r\nI lanci di sonde XBT (SIPPICAN mod.T7, prof. max 760 m) sono iniziati il 17 gennaio alla latitudine 48°S e sono terminati il 21 gennaio latitudine di 70°S; l\'intervallo di campionamento è stato, come in passato, di 15 miglia nautiche e sono state utilizzate 89 sonde durante il viaggio tra la Nuova Zelanda e il Mare di Ross; solo una piccolissima percentuale delle sonde utilizzate ha mostrato problemi di funzionamento dovuti quasi esclusivamente al contatto del cavo conduttore in rame con lo scafo della nave.\r\nI dati hanno subìto un primo processamento a bordo per eliminare valori spuri, i primi metri influenzati dall’inerzia termica del sensore e gli eventuali dati affetti dalla presenza del fondo. In figura 3 è riportata la sezione in temperatura dello strato sub-superficiale fino alla profondità massima di 700 m.\r\nTali indagini, iniziate nel 1994, sono state portate avanti nell’ambito di diversi progetti PNRA e hanno oramai una valenza climatologica rilevante sia per il lungo periodo che coprono, sia per le possibili inter-connessioni con fenomeni a scala planetaria. Le misure XBT rappresentano quelle osservazioni ricorrenti della Antarctic Circumpolar Current sollecitate e regolate dal SOOS (Southern Ocean Observing System).\r\nUna breve sezione XBT è stata effettuata anche in corrispondenza del mooring G in occasione di una linea condotta dall’echosurvey ed in concomitanza con il recupero del mooring stesso. In Figura 4 è rappresentata la sezione verticale ottenuta aggiungendo alle misure XBT, il profilo di temperatura misurato prima del recupero del mooring G.\r\n<p ALIGN=\"center\"><a href=\" \"><img alt=\"\" src=\"/sites/all/themes/multipurpose/images/fig_XXXI.png\" width=\"600px\" /></a></p>\r\n<p align=\"justify\"><strong>Figura 1. Sezione verticale della distribuzione della temperatura misurata dal 17 al 21 gennaio 2016 (raw data).</strong></p>\r\n\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:9564:\"<h1 align=\"center\"><strong>Rapporto sulla Campagna Antartica (estratto)</strong></h1>\n<h2 align=\"center\"><strong>Estate Australe 2015-2016</strong></h2>\n<h3 align=\"center\"><strong>Trentunesima Spedizione (PNRA XXXI)</strong></h3>\n<p align=\"center\"><strong>Progetto 2009/B.09: Osservatorio Marino Nel Mare di Ross ( MORSea)</strong><br /><em>G. Budillon, A. De Alteris, G. Zambardino</em></p>\n<p align=\"justify\">Le attività a bordo (descritte nel seguito in Universal Time Coordinated - UTC) del progetto MORSea (<a href=\"http://morsea.uniparthenope.it\">http://morsea.uniparthenope.it</a>) sono state principalmente focalizzate al mantenimento della rete di osservazioni marine attualmente esistente nel Mare di Ross. L’obiettivo primario dell’osservatorio è quello di fornire un sostanziale contributo al monitoraggio della variabilità interannuale delle caratteristiche fisiche e geochimiche delle acque di shelf nel settore occidentale del Mare di Ross.<br />\nL’osservatorio è attualmente costituito da 4 catene correntometriche (mooring) contrassegnate dalle lettere “B”, “D”, “G” e “L”.<br />\nA queste attività si sono aggiunte anche le misure di “ship of opportunity” effettuate senza interferire con i tempi di navigazione della M/N Italica. In particolare quest’anno sono state eseguite misure di temperatura e salinità superficiale del mare (SST e SSS rispettivamente), lanci di XBT per la misura della struttura subsuperficiale dell’Oceano Meridionale; lanci di drifter e float (nell’ambito della collaborazione con il progetto ARGOItaly). Queste attività, svolte in passato da progetti non più attivi del PNRA (CLIMA e SOChIC), sono state condotte al fine di non interrompere le preziose serie temporali acquisite dal 1994 considerata la valenza ormai “climatica” di queste informazioni.<br />\nAnche quest’anno non è stato possibile acquisire nuova strumentazione, fatta eccezione per un nuovo correntometro Aanderaa Seaguard ed una sonda SBE SMP ODO, per cui i sensori riposizionati sono stati sostanzialmente quelli degli anni precedenti che, in diversi casi, risalgono a oltre 20 anni fa. Il materiale di consumo e di ricambio per le trappole di sedimento è stato fornito: dal dott. M. Capello (Univ. di Genova) per i mooring “D” e “L” (2 trappole), dal dott. L. Langone (CNR – ISMAR) per il mooring “B” (1 trappola). Le attività di recupero, ricondizionamento, scarico dei dati e rimessa a mare sono state effettuate in simbiosi con il gruppo di Oceanografia Fisica (Dr. P.Falco e M. De Stefano).<br />\nIn occasione della sosta in base del 4 febbraio (UTC) si è provveduto anche a recuperare la catena correntometrica posizionato dalla NIWA su un fondale di 516 m a circa 3 miglia a est di MZS.<br />\nCome tradizione, sono state effettuate calate di CTD/LADCP - per la verifica e taratura dei sensori posizionati sulle catene correntometriche - prima del loro recupero e dopo il loro posizionamento.<br />\nNel seguito vengono descritte le attività svolte su ogni catena correntometrica ed in tabella TM1 viene riportato la scheda riassuntiva dei periodi di funzionamento di ogni strumento.</p>\n<p align=\"justify\"><strong>Mooring “B”</strong><br />\nIl mooring “B” è stato recuperato il 24 gennaio e rimesso in mare il 27 gennaio 2016.<br />\nIl recupero del mooring secondo la normale procedura di sgancio ha dato esito negativo, nonostante entrambi gli sganciatori avessero confermato l’avvenuto sgancio e la loro posizione verticale.<br />\nGrazie alla collaborazione del gruppo EchoSurvey, è stato effettuato un passaggio sulla posizione del mooring rilevando tutta la struttura, sia nella parte di fondo sia superiore, avendo conferma in questo modo della sua effettiva integrità e posizione verticale.<br />\nIn analogia con quanto effettuato nella XXIX spedizione, il mooring è stato recuperato filando da poppa una coppia di divergenti sostenuti da circa 500 metri di cavo d’acciaio e collegati tra loro da cime di kevlar di circa 250 metri, appesantite da una catena. Al primo tentativo il mooring è stato incocciato e recuperato a bordo senza eccessivi problemi.<br />\nDopo la manutenzione del caso, la catena correntometrica è stata riposizionata nella configurazione riportata in figura M1, sostanzialmente analoga al precedente periodo ma aumentando la spinta di galleggiamento.</p>\n<p align=\"justify\"><strong>Mooring “G”</strong><br />\nIl mooring “G” è stato recuperato il 28 gennaio e rimesso in mare il 30 gennaio 2016.<br />\nEntrambe le operazioni si svolte senza particolari problemi: il recupero con ottime condizioni meteo mentre il riposizionamento con mare forza 4-5.<br />\nLa configurazione del mooring riposizionato è stata modificata inserendo una nuova quota di misura a circa 250 me di profondità (v. figura M3) costituita da un correntometro e una sonda SBE per la misura di T&amp;C.</p>\n<p align=\"justify\"><strong>Mooring “D”</strong><br />\nIl mooring “D” è stato recuperato il 31 gennaio e rimesso in mare il 6 febbraio 2016.<br />\nEffettuata l’ordinaria manutenzione della strumentazione, il mooring “D” è stato rimesso in posizione nella configurazione illustrata in figura M2, rispetto alla precedente risultano: 1) aggiunta al fondo una sonda SBE per la misura di T&amp;C dotata di sensore di ossigeno, 2) eliminata una trappola per sedimenti a causa della rottura di un motore.</p>\n<p align=\"justify\"><strong>Mooring “L”</strong><br />\nIl mooring “L” è stato recuperato il 1° febbraio e rimesso in mare il 9 febbraio 2016.<br />\nLa configurazione del mooring riposizionato è riportata in figura M4.<br />\nIn tabella TM1 vengono elencate le informazioni principali sul funzionamento della strumentazione alloggiata sui mooring nel periodo 2014-16, tenendo conto che:<br />\n- le profondità [m] si riferiscono agli schemi della campagna 2013-2014;<br />\n- gli intervalli riportati si riferiscono al periodo effettivo di misura valida in acqua e alla profondità indicata nella prima colonna.</p>\n<p align=\"justify\"><strong>Misure in continuo di temperatura e salinità superficiale</strong><br />\nDurante tutta la campagna è stata misurata la temperatura e salinità superficiale del mare (SST –Sea Surface Temperature; SSS – Sea Surface Salinity) utilizzando la presa d’acqua a circa 4 metri di profondità. L’attività è stata condotta in stretta simbiosi con il gruppo di Oceanografia Fisica.<br />\nL’attività di misura in continuo è iniziata il 17 gennaio 2016 ed è continuata sino al ritorno in Nuova Zelanda (22 febbraio 2016). Per queste misure sono stati impiegati tre sensori (due di temperatura ed uno di conducibilità) gestiti dal sistema SBE-21 ed un GPS Garmin, l’intervallo di acquisizione è stato di 30”. I dati hanno subìto un primo processamento a bordo per l’eliminazione dei picchi dovuti sostanzialmente al rollio della nave e alla presenza di ghiacci.<br />\nDi particolare interesse sono i dati acquisiti durante le due traversate oceaniche (andata e ritorno) tra Nuova Zelanda e Mare di Ross, i dati acquisiti hanno permesso di determinare le posizioni dei fronti termoalini che in questa zona separano aree a dinamica diversa. In fase di analisi del data set saranno valutate eventuali possibilità di utilizzo dei dati acquisiti per cal/val di misure satellitari.<br />\nLe misure di SST e SSS rappresentano quelle osservazioni ricorrenti della Antarctic Circumpolar Current sollecitate e regolate dal SOOS (Southern Ocean Observing System, <a href=\"http://www.soos.aq/\">http://www.soos.aq/</a>).</p>\n<p align=\"justify\"><strong>Misure XBT</strong><br />\nI lanci di sonde XBT (SIPPICAN mod.T7, prof. max 760 m) sono iniziati il 17 gennaio alla latitudine 48°S e sono terminati il 21 gennaio latitudine di 70°S; l\'intervallo di campionamento è stato, come in passato, di 15 miglia nautiche e sono state utilizzate 89 sonde durante il viaggio tra la Nuova Zelanda e il Mare di Ross; solo una piccolissima percentuale delle sonde utilizzate ha mostrato problemi di funzionamento dovuti quasi esclusivamente al contatto del cavo conduttore in rame con lo scafo della nave.<br />\nI dati hanno subìto un primo processamento a bordo per eliminare valori spuri, i primi metri influenzati dall’inerzia termica del sensore e gli eventuali dati affetti dalla presenza del fondo. In figura 3 è riportata la sezione in temperatura dello strato sub-superficiale fino alla profondità massima di 700 m.<br />\nTali indagini, iniziate nel 1994, sono state portate avanti nell’ambito di diversi progetti PNRA e hanno oramai una valenza climatologica rilevante sia per il lungo periodo che coprono, sia per le possibili inter-connessioni con fenomeni a scala planetaria. Le misure XBT rappresentano quelle osservazioni ricorrenti della Antarctic Circumpolar Current sollecitate e regolate dal SOOS (Southern Ocean Observing System).<br />\nUna breve sezione XBT è stata effettuata anche in corrispondenza del mooring G in occasione di una linea condotta dall’echosurvey ed in concomitanza con il recupero del mooring stesso. In Figura 4 è rappresentata la sezione verticale ottenuta aggiungendo alle misure XBT, il profilo di temperatura misurato prima del recupero del mooring G.</p>\n<p align=\"center\"><a href=\" \"><img alt=\"\" src=\"/sites/all/themes/multipurpose/images/fig_XXXI.png\" width=\"600px\" /></a></p>\n<p align=\"justify\"><strong>Figura 1. Sezione verticale della distribuzione della temperatura misurata dal 17 al 21 gennaio 2016 (raw data).</strong></p>\n\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:2:\"it\";a:1:{i:0;a:3:{s:5:\"value\";s:19:\"2015/16 - PNRA XXXI\";s:6:\"format\";N;s:10:\"safe_value\";s:19:\"2015/16 - PNRA XXXI\";}}}}',0,1539156643,1),('field:node:129','a:2:{s:4:\"body\";a:1:{s:2:\"en\";a:1:{i:0;a:5:{s:5:\"value\";s:15899:\"<h1 align= \"center\"><strong>Rapporto sulla Campagna Antartica (estratto)</strong></h1>\r\n\r\n<h2 align=\"center\"><strong>Estate Australe 2016-2017</strong></h2>\r\n\r\n<h3 align=\"center\"><strong>Trentduesima Spedizione (PNRA XXXII)</strong></h3>\r\n\r\n<p align=\"center\"><strong>Progetto 2009/B.09: Osservatorio Marino Nel Mare di Ross ( MORSea)</strong><br />\r\n<em>A. De Alteris, P. Falco, F. Grilli, G. Zambardino</em></p>\r\n\r\n<p align=\"justify\">Il progetto MORSea (http://morsea.uniparthenope.it) prevede la gestione e la manutenzione della rete di osservazioni marine attualmente esistente nel Mare di Ross. L’osservatorio è costituito da 4 catene correntometriche (mooring) contrassegnate dalle lettere “B”, “D”, “G” e “L”. Ogni punto di misura ha degli obiettivi specifici legati alla circolazione delle masse d’acqua che si generano sulla piattaforma e a quelle entranti attraverso il limite della scarpata continentale. In generale però l’obiettivo primario dell’osservatorio è quello di studiare la variabilità interannuale delle caratteristiche fisiche e geochimiche delle acque di shelf nel settore occidentale del Mare di Ross.\r\nA queste attività, negli ultimi anni si sono aggiunte delle misure di “ship of opportunity” effettuate quindi non impiegando tempo di navigazione della M/N Italica. Anche quest’anno infatti sono state eseguite misure di temperatura e salinità superficiale del mare (SST e SSS rispettivamente), lanci di XBT per la misura della struttura subsuperficiale dell’Oceano Meridionale; lanci di drifter e float (nell’ambito della collaborazione con il progetto ARGOItaly). In particolare le misure XBT hanno lo scopo essenziale di proseguire la serie storica di osservazioni, condotte durante la traversata dalla Nuova Zelanda fino al mare di Ross, realizzate al fine di caratterizzare la struttura della colonna d’acqua, fino alla profondità di 700 m, della Corrente Circumpolare Antartica (ACC), misure acquisite sin dal 1994.\r\nRelativamente all’attività dei mooring è da sottolineare che quest’anno è stato fatto un primo tentativo di svecchiamento della strumentazione utilizzata per le misure. In particolare, per quanto riguarda il mooring D, sono stati acquistati due nuovi sganciatori IXBLUE OCEANO 2500 che hanno sostituito i due precedenti ormai in cattive condizioni, è stato sostituito un vecchio correntometro RCM 7 con un nuovo correntometro Aanderaa Seaguard e aggiunta una sonda SBE 37 SMP al posto di un vecchio misuratore di temperatura SBE 39.\r\nInoltre, sul mooring G è stata aggiunta una sonda SBE 37 SMP ODO sul fondo. Ad ogni modo la percentuale di strumenti che, in diversi casi, risalgono a oltre 20 anni fa, è ancora decisamente prevalente per cui è auspicabile, quanto necessario, che questo primo tentativo di rinnovamento della strumentazione continui in futuro.\r\nIl materiale di consumo e di ricambio per le trappole di sedimento è stato fornito: dal dott. M. Capello (Univ. di Genova) per i mooring “D” e “L” (2 trappole), dal dott. L. Langone (CNR – ISMAR) per il mooring “B” (1 trappola). Sfortunatamente, il motore della trappola del mooring L ha mostrato malfunzionamenti non risolvibili a bordo per cui, non disponendo di un motore sostitutivo, è stato impossibile rimetterla in mare.\r\nLe attività di recupero e rimessa a mare sono state effettuate in simbiosi con il gruppo di Oceanografia Fisica (Dr. P. Castango e M. De Stefano) e con il contributo del Dr. L. Langone.\r\nDa prassi ormai consolidata, sono state effettuate calate di CTD/LADCP - per la verifica e taratura dei sensori posizionati sulle catene correntometriche - prima del loro recupero e dopo il loro posizionamento. Proprio durante la stazione di calibrazione avvenuta prima del recupero del mooring G, a causa di un violento urto del frame contenente la sensoristica per le misure, alcuni sensori, compresa la sonda principale SBE 9 plus, hanno riportato danni che hanno impedito il loro utilizzo nel prosieguo della campagna. Oltre alla sonda, anche il sensore di O2 e due sensori di temperatura e uno di conducibiltà della sonda MicroRider 1000 (anch’essa montata sul frame) sono risultati non funzionanti ed è stata necessaria la sostituzione con i sensori di rispetto.\r\nNel seguito vengono descritte le attività svolte su ogni catena correntometrica ed in tabella TM1 viene riportata la scheda riassuntiva dei periodi di funzionamento di ogni strumento. Tutti le date e gli orari sono riportati in UTC.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “D”</strong><br />\r\nIl mooring “D” è stato recuperato l’8 gennaio 2017 e rimesso in mare il giorno 11 febbraio 2017. Il comportamento degli sganciatori è risultato anomalo. Gli strumenti funzionano, sono cioè in grado di operare lo sgancio, ma non hanno dato alcuna informazione riguardo il loro stato e non rispondono ai codici di enable e disable. Tale comportamento era già stato evidenziato durante il precedente recupero. Considerando l’età degli strumenti e l’importanza del mooring si è deciso di acquistare due nuovi sganciatori e di sostituire quindi i vecchi.\r\nL’ordinaria manutenzione della strumentazione presente non ha mostrato particolari criticità se non nel caso della sonda di SBE37 SMP ODO acquistata pochi mesi prima della XXXI campagna e aggiunta al mooring. La sonda ha interrotto l’acquisizione dopo circa 5 mesi dal posizionamento per cause non bene chiarite nemmeno dalla casa costruttrice contattata tramite il rappresentante italiano. Dopo vari test di funzionamento svolti a bordo e d’accordo con la casa costruttrice, si è deciso di utilizzarla nuovamente.\r\nIl mooring “D” è stato rimesso in posizione nella configurazione illustrata in figura M2. Rispetto alla precedente configurazione, è stato sostituito un correntometro Aanderaa RCM 7 alla quota di circa 880 m con un Aanderaa SeaGuard e al posto di una sonda SBE 39 è stato usato un SBE 37 SMP, quindi con misura anche di pressione e salinità alla quota di circa 750 m. Infine è stata sostituita la coppia di sganciatori per i quali è necessaria una manutenzione prima di un eventuale riutilizzo, e al loro posto è stata montata una coppia di sganciatori nuovi della IXBLUE.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “L”</strong><br />\r\nIl mooring “L” è stato recuperato il 10 gennaio 2017 e rimesso in mare il 22 gennaio successivo.\r\nDurante la manutenzione della trappola di sedimento si sono riscontrate anomalie di funzionamento del motore che regola lo scorrimento delle bottigliette che raccolgono il sedimento. Non è stato possibile intervenire per riparare il guasto e tanto meno sostituire il motore in quando non disponibile uno di ricambio. Si è pertanto dovuto optare per la rimozione momentanea dal mooring della trappola. I problemi di recupero manifestati durante le spedizioni del 2013/14 e 2015/16, sono stati superati dall’aggiunta (eseguita la scorsa campagna oceanografica) di ulteriori boe di spinta che hanno consentito un risalita corretta di tutta la struttura. La configurazione del mooring riposizionato è riportata in figura M4.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “B”</strong><br />\r\nIl mooring “B” è stato recuperato il 17 gennaio e rimesso in mare il 30 gennaio 2017.\r\nIl recupero di questo mooring, che nelle ultime due spedizioni era risultato particolarmente complicato, quest’anno è avvenuto in modo regolare. Anche in questo caso l’aggiunta di ulteriori spinte decise durante la campagna della XXXI spedizione, è risultata determinante al fine di un corretto recupero. Rimangono perplessità riguardo alle cause che non hanno consentito a tutta la struttura di venire a galla spontaneamente nelle precedenti occasioni di recupero. Per verificare l’efficacia delle spinte sono state eseguite prove di galleggiabilità di tutti i gruppi boa presenti sul mooring, applicando un peso pari alla spinta nominale della boa e filando in acqua tutto per verificarne il comportamento. In tutti i casi le boe hanno sostenuto il peso dimostrando di essere ancora efficienti.\r\nAd ogni modo, onde evitare problemi in futuro, si è deciso di applicare un’ulteriore boa di spinta da 25 kg (tipo Vitrovex) nel settore immediatamente superiore alla trappola di sedimento presente alla quota di 460 metri. Dopo la manutenzione del caso, la catena correntometrica è stata riposizionata nella configurazione riportata in figura M1, sostanzialmente analoga al precedente periodo, ma aumentando la spinta di galleggiamento.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “G”</strong><br />\r\nIl mooring “G” è stato recuperato il 06 febbraio e rimesso in mare 09/02/2016.\r\nL’operazione di recupero, anche se condotta con mare 4/5, è stata eseguita in modo rapido e corretto (inizio ascolto ore 00:47 del 6/02, sganciatore a bordo ore 01:53 del 6/02). La manutenzione della strumentazione (come per i mooring precedenti) non ha messo in evidenza alcuna criticità sia dal punto di vista dell’integrità della strumentazione che del processo di acquisizione dati.\r\nAl fine di ottenere informazioni più mirate riguardo il transito della HSSW sul fondo nella zona di G, è stata aggiunta al mooring, nel suo settore più profondo, una sonda SBE 37 SMP ODO. Da riscontri fatti in rapporti di attività precedenti, si è rilevato che già in passato era presente una sonda simile e quindi si è pensato di ripristinare questa importante quota di misura dei parametri di T ed S aggiungendo però il parametro O2.\r\nLa configurazione del mooring riposizionato è riportata in figura M3.\r\nIn tabella TM1 vengono elencate le informazioni principali sul funzionamento della strumentazione alloggiata sui mooring nel periodo 2016-17, tenendo conto che:\r\n- le profondità [m] si riferiscono agli schemi della campagna 2015-2016;\r\n- gli intervalli riportati si riferiscono al periodo effettivo di misura valida in acqua e alla profondità indicata nella prima colonna.</p>\r\n\r\n<p align=\"justify\"><strong>Misure in continuo di temperatura e salinità superficiale</strong><br />\r\nDurante tutta la campagna si sono misurate la temperatura e la salinità superficiale del mare (SST – Sea Surface Temperature; SSS – Sea Surface Salinity) utilizzando la presa d’acqua a circa 4 metri di profondità. L’attività è stata condotta con il gruppo di Oceanografia Fisica.\r\nL’attività di misura in continuo è iniziata il 30 dicembre 2016, appena lasciato il fiordo di Lyttleton, ed è continuata sino al ritorno in Nuova Zelanda. Per queste misure sono stati impiegati tre sensori (due di temperatura e uno di conducibilità) gestiti dal sistema SBE-21 e un GPS Garmin; l’intervallo di acquisizione è stato di 30”. I dati hanno subìto un primo processamento a bordo per l’eliminazione dei picchi dovuti sostanzialmente al rollio della nave e alla presenza di ghiacci.\r\nDi particolare interesse sono i dati acquisiti durante le due traversate oceaniche tra Nuova Zelanda e Mare di Ross (andata e ritorno, non mostrati) in quanto permetteranno di determinare le posizioni dei fronti termoalini in superficie che in questa zona separano le zone a dinamica diversa della ACC. Questi dati risultano molto utili se integrati con i dati XBT e inoltre rappresentano la verità mare per validazioni di modelli e misure satellitari.\r\nAnche le misure di SST e SSS, come quelle con gli XBT, rappresentano quelle osservazioni ricorrenti della Antarctic Circumpolar Current sollecitate e regolate dal SOOS (Southern Ocean Observing System, http://www.soos.aq/).</p>\r\n\r\n<p align=\"justify\"><strong>Misure XBT</strong><br />\r\nI lanci di sonde XBT (SIPPICAN mod.T7, prof. max 760 m) sono iniziati il 31 dicembre 2016 alla latitudine 48°S e sono terminati il 05 gennaio 2017 alla latitudine di 68°46’S; la distanza tra ogni punto di campionamento è statao, come in passato, di 15 miglia nautiche e sono state utilizzate 90 sonde lungo la rotta seguita per entrare nel Mare di Ross; solo 3 di 90 sonde hanno mostrato problemi di funzionamento dovuti quasi esclusivamente al contatto del cavo conduttore in rame con lo scafo della nave.\r\nI dati hanno subìto un primo processamento a bordo per eliminare i valori spuri, i primi metri influenzati dall’inerzia termica del sensore e gli eventuali dati affetti dalla presenza del fondo. In figura 3 è riportata la sezione in temperatura dello strato sub-superficiale fino alla profondità massima di 700 m.\r\nLe misure XBT rappresentano quelle osservazioni ricorrenti della Antarctic Circumpolar Current sollecitate e regolate dal SOOS (Southern Ocean Observing System). Considerando che tali indagini sono iniziate nel 1994, portate avanti nell’ambito di diversi progetti PNRA, si può ritenere assodata la valenza a scala climatologica dato il lungo periodo che coprono.\r\nDurante il viaggio di ritorno, avendo disponibili ancora 6 sonde XBT, si è pensato di eseguire lanci a 15’ di latitudine di distanza per cercare di osservare il limite meridionale di intrusione di MCDW lungo la costa occidentale del mare di Ross. La latitudine di partenza dei lanci è stata 73°30’S e si è giunti fino a 72°15’S. I lanci sono cominciati il 14/02/2017 alle ore 23.30 circa e terminati il giorno 15/02/2017 alle ore 5.00 circa.\r\n<p ALIGN=\"center\"><a href=\" \"><img alt=\"\" src=\"/sites/all/themes/multipurpose/images/fig_XXXII.png\" width=\"600px\" /></a></p>\r\n<p align=\"justify\"><strong>Figura 1. Sezione verticale della distribuzione della temperatura misurata dal 31/12/2016 al 05/01/2017 (raw data).</strong></p>\r\n\r\n<p align=\"justify\"><strong>Floats</strong><br />\r\nOltre agli XBT, durante il trasferimento verso il mare di Ross, sono stati rilasciati in mare 10 float e 10 drifter. Queste misure rientrano nella collaborazione con il progetto ARGOItaly, che ha fornito gli strumenti (http://nettuno.ogs.trieste.it/jungo/argoitaly/floats.html), attività volta a fornire un contributo italiano all’interno del più ampio programma di osservazione, a scala globale, degli oceani denominato ARGO.\r\nI float sono strumenti autonomi lagrangiani ovvero, una volta rilasciati in mare, sono trasportati dalle correnti marine a una profondità predeterminata. A intervalli regolari la sonda sale in superficie misurando le proprietà termoaline che poi vengono trasmesse via satellite al centro di raccolta dati.\r\nIl ciclo tipico dei float utilizzato è quello standard stabilito nel programma ARGO, ovvero la cosiddetta “parking depth” (ovvero la profondità alla quale il float arresta la discesa ed è trasportato passivamente dalle correnti) è a 1000 metri; al termine di un intervallo di 10 giorni il float è programmato per immergersi sino a 2000 metri e poi di risalire in superficie (dove rimane per 6 ore) per eseguire il profilo di temperatura e salinità e per la trasmissione dei dati acquisiti.\r\nI float utilizzati nel progetto, in particolare, hanno un sistema di comunicazione satellitare bi-direzionale (Iridium) per poter modificare a distanza i parametri di missione. Quest’anno tra i float disponibili sono strati resi disponibili tre con inserito l’algoritmo per il rilevamento del ghiaccio in superficie. Questa tipologia di float potrebbe consentire un monitoraggio delle fasce polari dove la formazione di ghiaccio marino durante l’inverno impedisce l’affioramento dei float in superficie e spesso causa anche il loro danneggiamento.\r\nI drifter sono sempre strumenti lagrangiani, ma rimangono in superficie trasmettendo in tempo reale le posizioni e il valore di temperatura superficiale. Anche quest’anno sono stati rilasciati drifter del tipo Surface Velocity Programme (SVP) particolarmente adatti a misure di corrente superficiale in oceano aperto. I lanci dei drifter e dei float sono avvenuti simultaneamente e sono cominciati il giorno 02/01/2017 a circa 55°S, terminati il giorno successivo a 63°S.\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:16154:\"<h1 align=\"center\"><strong>Rapporto sulla Campagna Antartica (estratto)</strong></h1>\n<h2 align=\"center\"><strong>Estate Australe 2016-2017</strong></h2>\n<h3 align=\"center\"><strong>Trentduesima Spedizione (PNRA XXXII)</strong></h3>\n<p align=\"center\"><strong>Progetto 2009/B.09: Osservatorio Marino Nel Mare di Ross ( MORSea)</strong><br /><em>A. De Alteris, P. Falco, F. Grilli, G. Zambardino</em></p>\n<p align=\"justify\">Il progetto MORSea (<a href=\"http://morsea.uniparthenope.it\">http://morsea.uniparthenope.it</a>) prevede la gestione e la manutenzione della rete di osservazioni marine attualmente esistente nel Mare di Ross. L’osservatorio è costituito da 4 catene correntometriche (mooring) contrassegnate dalle lettere “B”, “D”, “G” e “L”. Ogni punto di misura ha degli obiettivi specifici legati alla circolazione delle masse d’acqua che si generano sulla piattaforma e a quelle entranti attraverso il limite della scarpata continentale. In generale però l’obiettivo primario dell’osservatorio è quello di studiare la variabilità interannuale delle caratteristiche fisiche e geochimiche delle acque di shelf nel settore occidentale del Mare di Ross.<br />\nA queste attività, negli ultimi anni si sono aggiunte delle misure di “ship of opportunity” effettuate quindi non impiegando tempo di navigazione della M/N Italica. Anche quest’anno infatti sono state eseguite misure di temperatura e salinità superficiale del mare (SST e SSS rispettivamente), lanci di XBT per la misura della struttura subsuperficiale dell’Oceano Meridionale; lanci di drifter e float (nell’ambito della collaborazione con il progetto ARGOItaly). In particolare le misure XBT hanno lo scopo essenziale di proseguire la serie storica di osservazioni, condotte durante la traversata dalla Nuova Zelanda fino al mare di Ross, realizzate al fine di caratterizzare la struttura della colonna d’acqua, fino alla profondità di 700 m, della Corrente Circumpolare Antartica (ACC), misure acquisite sin dal 1994.<br />\nRelativamente all’attività dei mooring è da sottolineare che quest’anno è stato fatto un primo tentativo di svecchiamento della strumentazione utilizzata per le misure. In particolare, per quanto riguarda il mooring D, sono stati acquistati due nuovi sganciatori IXBLUE OCEANO 2500 che hanno sostituito i due precedenti ormai in cattive condizioni, è stato sostituito un vecchio correntometro RCM 7 con un nuovo correntometro Aanderaa Seaguard e aggiunta una sonda SBE 37 SMP al posto di un vecchio misuratore di temperatura SBE 39.<br />\nInoltre, sul mooring G è stata aggiunta una sonda SBE 37 SMP ODO sul fondo. Ad ogni modo la percentuale di strumenti che, in diversi casi, risalgono a oltre 20 anni fa, è ancora decisamente prevalente per cui è auspicabile, quanto necessario, che questo primo tentativo di rinnovamento della strumentazione continui in futuro.<br />\nIl materiale di consumo e di ricambio per le trappole di sedimento è stato fornito: dal dott. M. Capello (Univ. di Genova) per i mooring “D” e “L” (2 trappole), dal dott. L. Langone (CNR – ISMAR) per il mooring “B” (1 trappola). Sfortunatamente, il motore della trappola del mooring L ha mostrato malfunzionamenti non risolvibili a bordo per cui, non disponendo di un motore sostitutivo, è stato impossibile rimetterla in mare.<br />\nLe attività di recupero e rimessa a mare sono state effettuate in simbiosi con il gruppo di Oceanografia Fisica (Dr. P. Castango e M. De Stefano) e con il contributo del Dr. L. Langone.<br />\nDa prassi ormai consolidata, sono state effettuate calate di CTD/LADCP - per la verifica e taratura dei sensori posizionati sulle catene correntometriche - prima del loro recupero e dopo il loro posizionamento. Proprio durante la stazione di calibrazione avvenuta prima del recupero del mooring G, a causa di un violento urto del frame contenente la sensoristica per le misure, alcuni sensori, compresa la sonda principale SBE 9 plus, hanno riportato danni che hanno impedito il loro utilizzo nel prosieguo della campagna. Oltre alla sonda, anche il sensore di O2 e due sensori di temperatura e uno di conducibiltà della sonda MicroRider 1000 (anch’essa montata sul frame) sono risultati non funzionanti ed è stata necessaria la sostituzione con i sensori di rispetto.<br />\nNel seguito vengono descritte le attività svolte su ogni catena correntometrica ed in tabella TM1 viene riportata la scheda riassuntiva dei periodi di funzionamento di ogni strumento. Tutti le date e gli orari sono riportati in UTC.</p>\n<p align=\"justify\"><strong>Mooring “D”</strong><br />\nIl mooring “D” è stato recuperato l’8 gennaio 2017 e rimesso in mare il giorno 11 febbraio 2017. Il comportamento degli sganciatori è risultato anomalo. Gli strumenti funzionano, sono cioè in grado di operare lo sgancio, ma non hanno dato alcuna informazione riguardo il loro stato e non rispondono ai codici di enable e disable. Tale comportamento era già stato evidenziato durante il precedente recupero. Considerando l’età degli strumenti e l’importanza del mooring si è deciso di acquistare due nuovi sganciatori e di sostituire quindi i vecchi.<br />\nL’ordinaria manutenzione della strumentazione presente non ha mostrato particolari criticità se non nel caso della sonda di SBE37 SMP ODO acquistata pochi mesi prima della XXXI campagna e aggiunta al mooring. La sonda ha interrotto l’acquisizione dopo circa 5 mesi dal posizionamento per cause non bene chiarite nemmeno dalla casa costruttrice contattata tramite il rappresentante italiano. Dopo vari test di funzionamento svolti a bordo e d’accordo con la casa costruttrice, si è deciso di utilizzarla nuovamente.<br />\nIl mooring “D” è stato rimesso in posizione nella configurazione illustrata in figura M2. Rispetto alla precedente configurazione, è stato sostituito un correntometro Aanderaa RCM 7 alla quota di circa 880 m con un Aanderaa SeaGuard e al posto di una sonda SBE 39 è stato usato un SBE 37 SMP, quindi con misura anche di pressione e salinità alla quota di circa 750 m. Infine è stata sostituita la coppia di sganciatori per i quali è necessaria una manutenzione prima di un eventuale riutilizzo, e al loro posto è stata montata una coppia di sganciatori nuovi della IXBLUE.</p>\n<p align=\"justify\"><strong>Mooring “L”</strong><br />\nIl mooring “L” è stato recuperato il 10 gennaio 2017 e rimesso in mare il 22 gennaio successivo.<br />\nDurante la manutenzione della trappola di sedimento si sono riscontrate anomalie di funzionamento del motore che regola lo scorrimento delle bottigliette che raccolgono il sedimento. Non è stato possibile intervenire per riparare il guasto e tanto meno sostituire il motore in quando non disponibile uno di ricambio. Si è pertanto dovuto optare per la rimozione momentanea dal mooring della trappola. I problemi di recupero manifestati durante le spedizioni del 2013/14 e 2015/16, sono stati superati dall’aggiunta (eseguita la scorsa campagna oceanografica) di ulteriori boe di spinta che hanno consentito un risalita corretta di tutta la struttura. La configurazione del mooring riposizionato è riportata in figura M4.</p>\n<p align=\"justify\"><strong>Mooring “B”</strong><br />\nIl mooring “B” è stato recuperato il 17 gennaio e rimesso in mare il 30 gennaio 2017.<br />\nIl recupero di questo mooring, che nelle ultime due spedizioni era risultato particolarmente complicato, quest’anno è avvenuto in modo regolare. Anche in questo caso l’aggiunta di ulteriori spinte decise durante la campagna della XXXI spedizione, è risultata determinante al fine di un corretto recupero. Rimangono perplessità riguardo alle cause che non hanno consentito a tutta la struttura di venire a galla spontaneamente nelle precedenti occasioni di recupero. Per verificare l’efficacia delle spinte sono state eseguite prove di galleggiabilità di tutti i gruppi boa presenti sul mooring, applicando un peso pari alla spinta nominale della boa e filando in acqua tutto per verificarne il comportamento. In tutti i casi le boe hanno sostenuto il peso dimostrando di essere ancora efficienti.<br />\nAd ogni modo, onde evitare problemi in futuro, si è deciso di applicare un’ulteriore boa di spinta da 25 kg (tipo Vitrovex) nel settore immediatamente superiore alla trappola di sedimento presente alla quota di 460 metri. Dopo la manutenzione del caso, la catena correntometrica è stata riposizionata nella configurazione riportata in figura M1, sostanzialmente analoga al precedente periodo, ma aumentando la spinta di galleggiamento.</p>\n<p align=\"justify\"><strong>Mooring “G”</strong><br />\nIl mooring “G” è stato recuperato il 06 febbraio e rimesso in mare 09/02/2016.<br />\nL’operazione di recupero, anche se condotta con mare 4/5, è stata eseguita in modo rapido e corretto (inizio ascolto ore 00:47 del 6/02, sganciatore a bordo ore 01:53 del 6/02). La manutenzione della strumentazione (come per i mooring precedenti) non ha messo in evidenza alcuna criticità sia dal punto di vista dell’integrità della strumentazione che del processo di acquisizione dati.<br />\nAl fine di ottenere informazioni più mirate riguardo il transito della HSSW sul fondo nella zona di G, è stata aggiunta al mooring, nel suo settore più profondo, una sonda SBE 37 SMP ODO. Da riscontri fatti in rapporti di attività precedenti, si è rilevato che già in passato era presente una sonda simile e quindi si è pensato di ripristinare questa importante quota di misura dei parametri di T ed S aggiungendo però il parametro O2.<br />\nLa configurazione del mooring riposizionato è riportata in figura M3.<br />\nIn tabella TM1 vengono elencate le informazioni principali sul funzionamento della strumentazione alloggiata sui mooring nel periodo 2016-17, tenendo conto che:<br />\n- le profondità [m] si riferiscono agli schemi della campagna 2015-2016;<br />\n- gli intervalli riportati si riferiscono al periodo effettivo di misura valida in acqua e alla profondità indicata nella prima colonna.</p>\n<p align=\"justify\"><strong>Misure in continuo di temperatura e salinità superficiale</strong><br />\nDurante tutta la campagna si sono misurate la temperatura e la salinità superficiale del mare (SST – Sea Surface Temperature; SSS – Sea Surface Salinity) utilizzando la presa d’acqua a circa 4 metri di profondità. L’attività è stata condotta con il gruppo di Oceanografia Fisica.<br />\nL’attività di misura in continuo è iniziata il 30 dicembre 2016, appena lasciato il fiordo di Lyttleton, ed è continuata sino al ritorno in Nuova Zelanda. Per queste misure sono stati impiegati tre sensori (due di temperatura e uno di conducibilità) gestiti dal sistema SBE-21 e un GPS Garmin; l’intervallo di acquisizione è stato di 30”. I dati hanno subìto un primo processamento a bordo per l’eliminazione dei picchi dovuti sostanzialmente al rollio della nave e alla presenza di ghiacci.<br />\nDi particolare interesse sono i dati acquisiti durante le due traversate oceaniche tra Nuova Zelanda e Mare di Ross (andata e ritorno, non mostrati) in quanto permetteranno di determinare le posizioni dei fronti termoalini in superficie che in questa zona separano le zone a dinamica diversa della ACC. Questi dati risultano molto utili se integrati con i dati XBT e inoltre rappresentano la verità mare per validazioni di modelli e misure satellitari.<br />\nAnche le misure di SST e SSS, come quelle con gli XBT, rappresentano quelle osservazioni ricorrenti della Antarctic Circumpolar Current sollecitate e regolate dal SOOS (Southern Ocean Observing System, <a href=\"http://www.soos.aq/\">http://www.soos.aq/</a>).</p>\n<p align=\"justify\"><strong>Misure XBT</strong><br />\nI lanci di sonde XBT (SIPPICAN mod.T7, prof. max 760 m) sono iniziati il 31 dicembre 2016 alla latitudine 48°S e sono terminati il 05 gennaio 2017 alla latitudine di 68°46’S; la distanza tra ogni punto di campionamento è statao, come in passato, di 15 miglia nautiche e sono state utilizzate 90 sonde lungo la rotta seguita per entrare nel Mare di Ross; solo 3 di 90 sonde hanno mostrato problemi di funzionamento dovuti quasi esclusivamente al contatto del cavo conduttore in rame con lo scafo della nave.<br />\nI dati hanno subìto un primo processamento a bordo per eliminare i valori spuri, i primi metri influenzati dall’inerzia termica del sensore e gli eventuali dati affetti dalla presenza del fondo. In figura 3 è riportata la sezione in temperatura dello strato sub-superficiale fino alla profondità massima di 700 m.<br />\nLe misure XBT rappresentano quelle osservazioni ricorrenti della Antarctic Circumpolar Current sollecitate e regolate dal SOOS (Southern Ocean Observing System). Considerando che tali indagini sono iniziate nel 1994, portate avanti nell’ambito di diversi progetti PNRA, si può ritenere assodata la valenza a scala climatologica dato il lungo periodo che coprono.<br />\nDurante il viaggio di ritorno, avendo disponibili ancora 6 sonde XBT, si è pensato di eseguire lanci a 15’ di latitudine di distanza per cercare di osservare il limite meridionale di intrusione di MCDW lungo la costa occidentale del mare di Ross. La latitudine di partenza dei lanci è stata 73°30’S e si è giunti fino a 72°15’S. I lanci sono cominciati il 14/02/2017 alle ore 23.30 circa e terminati il giorno 15/02/2017 alle ore 5.00 circa.</p>\n<p align=\"center\"><a href=\" \"><img alt=\"\" src=\"/sites/all/themes/multipurpose/images/fig_XXXII.png\" width=\"600px\" /></a></p>\n<p align=\"justify\"><strong>Figura 1. Sezione verticale della distribuzione della temperatura misurata dal 31/12/2016 al 05/01/2017 (raw data).</strong></p>\n<p align=\"justify\"><strong>Floats</strong><br />\nOltre agli XBT, durante il trasferimento verso il mare di Ross, sono stati rilasciati in mare 10 float e 10 drifter. Queste misure rientrano nella collaborazione con il progetto ARGOItaly, che ha fornito gli strumenti (<a href=\"http://nettuno.ogs.trieste.it/jungo/argoitaly/floats.html\">http://nettuno.ogs.trieste.it/jungo/argoitaly/floats.html</a>), attività volta a fornire un contributo italiano all’interno del più ampio programma di osservazione, a scala globale, degli oceani denominato ARGO.<br />\nI float sono strumenti autonomi lagrangiani ovvero, una volta rilasciati in mare, sono trasportati dalle correnti marine a una profondità predeterminata. A intervalli regolari la sonda sale in superficie misurando le proprietà termoaline che poi vengono trasmesse via satellite al centro di raccolta dati.<br />\nIl ciclo tipico dei float utilizzato è quello standard stabilito nel programma ARGO, ovvero la cosiddetta “parking depth” (ovvero la profondità alla quale il float arresta la discesa ed è trasportato passivamente dalle correnti) è a 1000 metri; al termine di un intervallo di 10 giorni il float è programmato per immergersi sino a 2000 metri e poi di risalire in superficie (dove rimane per 6 ore) per eseguire il profilo di temperatura e salinità e per la trasmissione dei dati acquisiti.<br />\nI float utilizzati nel progetto, in particolare, hanno un sistema di comunicazione satellitare bi-direzionale (Iridium) per poter modificare a distanza i parametri di missione. Quest’anno tra i float disponibili sono strati resi disponibili tre con inserito l’algoritmo per il rilevamento del ghiaccio in superficie. Questa tipologia di float potrebbe consentire un monitoraggio delle fasce polari dove la formazione di ghiaccio marino durante l’inverno impedisce l’affioramento dei float in superficie e spesso causa anche il loro danneggiamento.<br />\nI drifter sono sempre strumenti lagrangiani, ma rimangono in superficie trasmettendo in tempo reale le posizioni e il valore di temperatura superficiale. Anche quest’anno sono stati rilasciati drifter del tipo Surface Velocity Programme (SVP) particolarmente adatti a misure di corrente superficiale in oceano aperto. I lanci dei drifter e dei float sono avvenuti simultaneamente e sono cominciati il giorno 02/01/2017 a circa 55°S, terminati il giorno successivo a 63°S.</p>\n\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:2:\"en\";a:1:{i:0;a:3:{s:5:\"value\";s:20:\"2016/17 - PNRA XXXII\";s:6:\"format\";N;s:10:\"safe_value\";s:20:\"2016/17 - PNRA XXXII\";}}}}',0,1539156650,1),('field:node:13','a:2:{s:4:\"body\";a:1:{s:2:\"en\";a:1:{i:0;a:5:{s:5:\"value\";s:7937:\"<h1 align= \"center\"><strong>Rapporto sulla Campagna Antartica (estratto)</strong></h1>\r\n\r\n<h2 align=\"center\"><strong>Estate Australe 2011-2012</strong></h2>\r\n\r\n<h3 align=\"center\"><strong>Ventisettesima Spedizione (PNRA XXVII)</strong></h3>\r\n\r\n<p align=\"center\"><strong>Progetto 2009/B.09: Osservatorio Marino Nel Mare di Ross ( MORSea)</strong><br />\r\n<em>E. Paschini, P. Penna, G. Spezie</em></p>\r\n\r\n<p align=\"justify\">Il Progetto MORSea è relativo alla sola attività di mantenimento della rete di osservazioni marine attualmente esistente nel Mare di Ross. L’obiettivo primario della rete è quello di fornire un sostanziale contributo al monitoraggio della variabilità interannuale delle caratteristiche termoaline delle acque di shelf nel settore occidentale del Mare di Ross.\r\nL’osservatorio è costituito da 4 mooring contrassegnati dalle lettere B, D, G e L. Il Progetto si occupa del mantenimento dei mooring esistenti e, possibilmente, di potenziare la strumentazione attualmente alloggiata sulla base anche di accordi e collaborazioni con progetti italiani e stranieri.\r\nPer la Campagna 2011-12 la responsabilità delle operazioni è stata affidata a Elio Paschini del CNR – ISMAR Sezione di Ancona, coadiuvato da Pierluigi Penna dello stesso Istituto e in collaborazione con G. Budillon e P.P. Falco del Progetto T-REx, presenti a bordo.\r\nSi riporta, di seguito, la sintesi delle attività svolte, redatta da Elio Paschini.\r\nLa preparazione alla crociera é stata affrettata e senza finanziamenti. Siamo stati invitati a partecipare alla 27a Spedizione alla fine dell’estate 2011 ed avvertiti che bisognava far fronte alle spese vive anticipando con fondi propri.\r\nSono stati subito presi contatti con l’Istituto NURC della Nato di La Spezia per avere un certo numero di correntometri uguali a quelli in uso in Antartide. Questo, allo scopo di avere degli strumenti di riserva e soprattutto per abbreviare i tempi tra il recupero ed il successivo lancio dei mooring. Il NURC ci ha gentilmente prestato 6 correntometri Aanderaa RCM7, tutti dotati di sensore di pressione da 1000psi (600 metri di range) e 3 memorie da 64K byte. Tali strumenti sono stati testati in laboratorio e sottoposti ad una prova di durata, facendoli funzionare con un intervallo di misura di 5 minuti durante il viaggio dell’Italica. dall’Italia alla NZ. Alla fine solo 5 sono stati considerati validi e 4 di questi sono ora in uso nel Mare di Ross. .\r\nInutile ricordare che un rinnovo del parco strumenti é necessario. Stiamo utilizzando gli scarti degli istituti di ricerca ricchi per le ricerche (povere) in Antartide.\r\nPrima della partenza dei materiali, é stata fatta riparare e testare da un laboratorio elettronico di nostra fiducia, l’unità di sgancio EG&G mod 8011B dichiarata irriparabile dall’importatore. Nell’occasione é stato allungato il cavo del trasduttore di circa 20 m, constatando che il segnale veniva degradato soltanto del 10%.\r\nAl nostro arrivo in Nuova Zelanda abbiamo apprezzato il giorno e mezzo trascorso in porto, per approntare il laboratorio e predisporre la nostra attrezzatura per un pronto intervento.\r\nDurante questa campagna sono state usate le seguenti innovazioni rispetto al passato:\r\n<ol>\r\n<li align=\"justify\">Il trasduttore é stato posto in un V-fin, che ha permesso di eseguire le operazioni di avvicinamento e sgancio anche con nave in manovra a bassa velocità: fino a 5-6 nodi. Questa innovazione sarebbe risultata ancor più utile se si fosse dovuto eseguire una ricerca/inseguimento di un mooring vagante. Dato che il cavo ora é lungo 30 metri: l’unità di sgancio é stata portata in plancia, e da lì sono state effettuate le operazioni in stretta interazione con il comando della nave ed al caldo del ponte.</li>\r\n<li align=\"justify\">In fase di recupero si é fatto largo uso della bozza cortissima (due metri) e nodo Prusik direttamente sul cavo di ormeggio. Questo ha permesso maggiore sicurezza e velocità nelle operazioni. Molti sbirri da un metro sono stati recuperati e riposizionati in posti più utili.</li>\r\n<li align=\"justify\">Nel rilascio della zavorra é stato finalmente usato un congegno acquistato per questo scopo almeno 10 anni fà. Il nuovo sistema ha convinto tutti per semplicità e sicurezza. Lo stesso attrezzo é stato usato per la messa a mare dei componenti pesanti (trappole e coppie di sgancia tori).</li>\r\n<li align=\"justify\">Dove é stato possibile, sono state eliminate tutte le parti metalliche. Le boe di vetro OCEANO sono ora legate ad uno spezzone di kevlar, che ne facilita il trasporto ed elimina la corrosione. Con lo stesso sistema sono state collegate a coppia le boe NAUTILUS.</li>\r\n</ol>\r\n</p>\r\n<p align=\"justify\">Nella riunione preparatoria della campagna, tenutasi a Roma presso la sede ENEA, si era deciso che gli strumenti del Progetto Picco sarebbero stati aggiunti in cima al mooring D con un punto debole di circa 300kg di rottura. Questo per non compromettere tutto il mooring in caso di collisione con un iceberg nella parte superficiale della catena di strumenti. Durante le operazioni di lancio il punto debole é stato elevato a 500kg per la possibilità di strappi nella fase di lancio.\r\nLa U.O. ha prestato assistenza preziosa alla campagna. Il CTD utilizzato durante tutta la campagna é stato quello PNRA assegnato a questa U.O. e portato come riserva. Come pure il convertitore USB a quattro porte seriali ed un altro convertitore USB-seriale, usato per il lanciatore XBT. Un convertitore USB per dischi SATA é stato prestato al servizio informatico della nave. É stato fornito il segnale GPS al lanciatore XBT e Penna é entrato nei turni di lancio delle sonde XBT. Il controllo del funzionamento della misura automatica di CO2 ed il prelievo di 9 campioni di aria per la U.O. Ori é stato curato da questa U.O..\r\nLa U.O. stà compilando un modulo di crociera internazionale standardizzato (CSR) contenente i metadati di tutte le U.O. coinvolte direttamente o indirettamente nella campagna, che sarà inviato alla banca dati europea SEA-DATA-NET.\r\nEntrambi i correntometri Aanderaa RCM9 hanno mostrato di non essere adatti a temperature così fredde per tempi così prolungati in acqua: entrambi sono risultati allagati. Il modello RCM7 sebbene più vecchio si é dimostrato più robusto. La perdita di dati nel secondo anno di misura, riscontrata in ogni strumento é dovuto alla infelice scelta di lasciare l’intervallo di campionamento a mezzora, invece di spostarlo ad un ora.</p>\r\n\r\n<p align=\"justify\"><strong>Tentativo di recupero del Mooring L vecchio (2008)</strong>\r\nÉ stato possibile effettuare tentativi di recupero in tre giorni distinti, ma nonostante questo il mooring é ancora lì. Sappiamo solo che é ancora integro e conosciamo più precisamente la sua posizione. Ovviamente abbiamo interrogato lo sganciatore, che non ha mai risposto. Sarebbe lungo descrivere dettagliatamente tutti i tentativi effettuati e le tecniche utilizzate. Possiamo dire che il metodo di incoccio con una una barra di cavo in kevlar posta a 60 metri di profondità e lunga 160, trascinata dalla corrente verso il mooring é risultata la più efficace. Ha incocciato il cavo del mooring 4 volte su 5 tentativi. Purtroppo non avevamo esperienza con mooring dotati di trappole.\r\nGuardando lo schema del mooring si capisce che incocciamo il cavo sotto alla trappola per sedimenti, che non rappresenta un buon punto di aggancio come per esempio il correntometro RCM7. Se il correntometro fosse stato sotto la trappola, come negli altri mooring il recupero era cosa fatta.\r\nCi auguriamo che durante la prossima spedizione, il personale della Base, opportunamente istruito, sia in grado di tentare il recupero. Ormai dopo 4-5 anni di permanenza in mare, la corrosione ha già intaccato la struttura della trappola che é il punto più debole del mooring. Ogni anno in più diminuisce la probabilità di recuperarlo.</p>\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:7988:\"<h1 align=\"center\"><strong>Rapporto sulla Campagna Antartica (estratto)</strong></h1>\n<h2 align=\"center\"><strong>Estate Australe 2011-2012</strong></h2>\n<h3 align=\"center\"><strong>Ventisettesima Spedizione (PNRA XXVII)</strong></h3>\n<p align=\"center\"><strong>Progetto 2009/B.09: Osservatorio Marino Nel Mare di Ross ( MORSea)</strong><br /><em>E. Paschini, P. Penna, G. Spezie</em></p>\n<p align=\"justify\">Il Progetto MORSea è relativo alla sola attività di mantenimento della rete di osservazioni marine attualmente esistente nel Mare di Ross. L’obiettivo primario della rete è quello di fornire un sostanziale contributo al monitoraggio della variabilità interannuale delle caratteristiche termoaline delle acque di shelf nel settore occidentale del Mare di Ross.<br />\nL’osservatorio è costituito da 4 mooring contrassegnati dalle lettere B, D, G e L. Il Progetto si occupa del mantenimento dei mooring esistenti e, possibilmente, di potenziare la strumentazione attualmente alloggiata sulla base anche di accordi e collaborazioni con progetti italiani e stranieri.<br />\nPer la Campagna 2011-12 la responsabilità delle operazioni è stata affidata a Elio Paschini del CNR – ISMAR Sezione di Ancona, coadiuvato da Pierluigi Penna dello stesso Istituto e in collaborazione con G. Budillon e P.P. Falco del Progetto T-REx, presenti a bordo.<br />\nSi riporta, di seguito, la sintesi delle attività svolte, redatta da Elio Paschini.<br />\nLa preparazione alla crociera é stata affrettata e senza finanziamenti. Siamo stati invitati a partecipare alla 27a Spedizione alla fine dell’estate 2011 ed avvertiti che bisognava far fronte alle spese vive anticipando con fondi propri.<br />\nSono stati subito presi contatti con l’Istituto NURC della Nato di La Spezia per avere un certo numero di correntometri uguali a quelli in uso in Antartide. Questo, allo scopo di avere degli strumenti di riserva e soprattutto per abbreviare i tempi tra il recupero ed il successivo lancio dei mooring. Il NURC ci ha gentilmente prestato 6 correntometri Aanderaa RCM7, tutti dotati di sensore di pressione da 1000psi (600 metri di range) e 3 memorie da 64K byte. Tali strumenti sono stati testati in laboratorio e sottoposti ad una prova di durata, facendoli funzionare con un intervallo di misura di 5 minuti durante il viaggio dell’Italica. dall’Italia alla NZ. Alla fine solo 5 sono stati considerati validi e 4 di questi sono ora in uso nel Mare di Ross. .<br />\nInutile ricordare che un rinnovo del parco strumenti é necessario. Stiamo utilizzando gli scarti degli istituti di ricerca ricchi per le ricerche (povere) in Antartide.<br />\nPrima della partenza dei materiali, é stata fatta riparare e testare da un laboratorio elettronico di nostra fiducia, l’unità di sgancio EG&amp;G mod 8011B dichiarata irriparabile dall’importatore. Nell’occasione é stato allungato il cavo del trasduttore di circa 20 m, constatando che il segnale veniva degradato soltanto del 10%.<br />\nAl nostro arrivo in Nuova Zelanda abbiamo apprezzato il giorno e mezzo trascorso in porto, per approntare il laboratorio e predisporre la nostra attrezzatura per un pronto intervento.<br />\nDurante questa campagna sono state usate le seguenti innovazioni rispetto al passato:</p>\n<ol><li align=\"justify\">Il trasduttore é stato posto in un V-fin, che ha permesso di eseguire le operazioni di avvicinamento e sgancio anche con nave in manovra a bassa velocità: fino a 5-6 nodi. Questa innovazione sarebbe risultata ancor più utile se si fosse dovuto eseguire una ricerca/inseguimento di un mooring vagante. Dato che il cavo ora é lungo 30 metri: l’unità di sgancio é stata portata in plancia, e da lì sono state effettuate le operazioni in stretta interazione con il comando della nave ed al caldo del ponte.</li>\n<li align=\"justify\">In fase di recupero si é fatto largo uso della bozza cortissima (due metri) e nodo Prusik direttamente sul cavo di ormeggio. Questo ha permesso maggiore sicurezza e velocità nelle operazioni. Molti sbirri da un metro sono stati recuperati e riposizionati in posti più utili.</li>\n<li align=\"justify\">Nel rilascio della zavorra é stato finalmente usato un congegno acquistato per questo scopo almeno 10 anni fà. Il nuovo sistema ha convinto tutti per semplicità e sicurezza. Lo stesso attrezzo é stato usato per la messa a mare dei componenti pesanti (trappole e coppie di sgancia tori).</li>\n<li align=\"justify\">Dove é stato possibile, sono state eliminate tutte le parti metalliche. Le boe di vetro OCEANO sono ora legate ad uno spezzone di kevlar, che ne facilita il trasporto ed elimina la corrosione. Con lo stesso sistema sono state collegate a coppia le boe NAUTILUS.</li>\n</ol><p align=\"justify\">Nella riunione preparatoria della campagna, tenutasi a Roma presso la sede ENEA, si era deciso che gli strumenti del Progetto Picco sarebbero stati aggiunti in cima al mooring D con un punto debole di circa 300kg di rottura. Questo per non compromettere tutto il mooring in caso di collisione con un iceberg nella parte superficiale della catena di strumenti. Durante le operazioni di lancio il punto debole é stato elevato a 500kg per la possibilità di strappi nella fase di lancio.<br />\nLa U.O. ha prestato assistenza preziosa alla campagna. Il CTD utilizzato durante tutta la campagna é stato quello PNRA assegnato a questa U.O. e portato come riserva. Come pure il convertitore USB a quattro porte seriali ed un altro convertitore USB-seriale, usato per il lanciatore XBT. Un convertitore USB per dischi SATA é stato prestato al servizio informatico della nave. É stato fornito il segnale GPS al lanciatore XBT e Penna é entrato nei turni di lancio delle sonde XBT. Il controllo del funzionamento della misura automatica di CO2 ed il prelievo di 9 campioni di aria per la U.O. Ori é stato curato da questa U.O..<br />\nLa U.O. stà compilando un modulo di crociera internazionale standardizzato (CSR) contenente i metadati di tutte le U.O. coinvolte direttamente o indirettamente nella campagna, che sarà inviato alla banca dati europea SEA-DATA-NET.<br />\nEntrambi i correntometri Aanderaa RCM9 hanno mostrato di non essere adatti a temperature così fredde per tempi così prolungati in acqua: entrambi sono risultati allagati. Il modello RCM7 sebbene più vecchio si é dimostrato più robusto. La perdita di dati nel secondo anno di misura, riscontrata in ogni strumento é dovuto alla infelice scelta di lasciare l’intervallo di campionamento a mezzora, invece di spostarlo ad un ora.</p>\n<p align=\"justify\"><strong>Tentativo di recupero del Mooring L vecchio (2008)</strong><br />\nÉ stato possibile effettuare tentativi di recupero in tre giorni distinti, ma nonostante questo il mooring é ancora lì. Sappiamo solo che é ancora integro e conosciamo più precisamente la sua posizione. Ovviamente abbiamo interrogato lo sganciatore, che non ha mai risposto. Sarebbe lungo descrivere dettagliatamente tutti i tentativi effettuati e le tecniche utilizzate. Possiamo dire che il metodo di incoccio con una una barra di cavo in kevlar posta a 60 metri di profondità e lunga 160, trascinata dalla corrente verso il mooring é risultata la più efficace. Ha incocciato il cavo del mooring 4 volte su 5 tentativi. Purtroppo non avevamo esperienza con mooring dotati di trappole.<br />\nGuardando lo schema del mooring si capisce che incocciamo il cavo sotto alla trappola per sedimenti, che non rappresenta un buon punto di aggancio come per esempio il correntometro RCM7. Se il correntometro fosse stato sotto la trappola, come negli altri mooring il recupero era cosa fatta.<br />\nCi auguriamo che durante la prossima spedizione, il personale della Base, opportunamente istruito, sia in grado di tentare il recupero. Ormai dopo 4-5 anni di permanenza in mare, la corrosione ha già intaccato la struttura della trappola che é il punto più debole del mooring. Ogni anno in più diminuisce la probabilità di recuperarlo.</p>\n\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:2:\"en\";a:1:{i:0;a:3:{s:5:\"value\";s:20:\"2011/12 - PNRA XXVII\";s:6:\"format\";N;s:10:\"safe_value\";s:20:\"2011/12 - PNRA XXVII\";}}}}',0,1539005959,1),('field:node:130','a:2:{s:4:\"body\";a:1:{s:2:\"en\";a:1:{i:0;a:5:{s:5:\"value\";s:5161:\"<h1 align= \"center\"><strong>Rapporto sulla Campagna Antartica (estratto)</strong></h1>\r\n\r\n<h2 align=\"center\"><strong>Estate Australe 2017-2018</strong></h2>\r\n\r\n<h3 align=\"center\"><strong>Trentduesima Spedizione (PNRA XXXIII)</strong></h3>\r\n\r\n<p align=\"center\"><strong>Progetto 2009/B.09: Osservatorio Marino Nel Mare di Ross ( MORSea)</strong><br />\r\n<em>Y. Cotroneo, L. Marziani</em></p>\r\n\r\n<p ALIGN=\"justify\">Lo scopo del progetto MOMA è lo studio della variabilità della corrente circumpolare antartica nella regione oceanica compresa tra Antartide e Sud Africa, nell’ambito delle attività scientifiche internazionali promosse dal Southern Ocean Observing System (SOOS) e dal First Antarctic and Southern Ocean Science Horizon Scan.\r\nMOMA si basa sulla raccolata e l’analisi di un dataset ad alta risoluzione, affiancato a simulazioni numeriche sviluppate e utilizzate nell’ambito del progetto.\r\nNell’ambito della XXXIII Spedizione in Antartide è stata effettuata la seconda campagna di misure del progetto attraverso la partecipazione di un ricercatore italiano alla campagna oceanografica del South African National Antarctic Programme (SANAP) dell’estate australe 2017/18.\r\nLa raccolta di dati mediante la strumentazione di bordo (CTD, XBT, ADCP, etc.) è stata integrata con un numero ridotto di float (3), poiché, per problemi relativi alle tempistiche d’imbarco, non è stato possibile acquisire e garantire la consegna di ulteriori boe/sonde. Consequenzialmente, anche il personale imbarcato del progetto MOMA è stato ridotto a una singola unità.\r\nSuccessivamente, grazie alla collaborazione con l’IFREMER e l’INOGS, prima della partenza della S/A Agulhas II da Città del Capo il 07/12/2017, è stato possibile integrare i float del progetto MOMA con 10 ARGO floats di un progetto di ricerca francese. L’unione dei dati provenienti dalle diverse sonde consentirà quindi una rappresentazione migliore dell’area di interesse.\r\nTali dispositivi, una volta rilasciati in mare, si muovono in maniera “lagrangiana” a una profondità predeterminata e a intervalli regolari risalgono in superficie misurando i dati relativi alle proprietà termoaline della colonna d’acqua. In particolare, a intervalli di 10 giorni, il float è programmato per immergersi sino a 2000 metri per poi risalire in superficie per eseguire il profilo di temperatura e salinità e trasmettere i dati acquisiti. Una volta effettuata la raccolta dati, il float ritorna a una “parking depth” di 1000 metri di profondità. Il periodo di vita massimo del singolo float è di circa 5 anni.\r\nI 3 Euro-Argo floats del progetto MOMA sono stati forniti dall’Istituto Nazionale di Oceanografia e di Geofisica Sperimentale (OGS) nell’ambito delle attività dell’Unità di Ricerca “3” – “Approvvigionamento, programmazione, messa a mare ed elaborazione dei dati di strumenti lagrangiani” coordinata dal Prof. Pierre Poulain, mentre l’integrazione con i 10 float francesi è il prodotto della collaborazione con Noé Poffa e Romain Cancouët dell’Institut français de recherche pour l\'exploitation de la mer - French Research Institute for Exploitation of the Sea (Ifremer).\r\nLe attività sul campo sono iniziate il giorno 15 gennaio 2018 con l’arrivo sul continente antartico del Dott. Luigi Marziani che ha raggiunto la base di ricerca Norvegese “Troll Station” con un volo Città del Capo – Antartide operato dalla Norwegian Antarctic Research Expeditionsed (NARE) ed è stato successivamente trasferito (16 gennaio), a bordo della nave di ricerca sudafricana S/A Agulhas II.\r\nUna volta verificata la condizione degli strumenti imbarcati alla partenza, l’attenzione si è spostata sulla raccolta dei dati acquisiti durante la navigazione verso sud, utili a una prima analisi per la conferma dei punti di messa a mare dei float sulla rotta di ritorno. Sulla base dei dati XBT raccolti durante il primo leg di navigazione, dei dati altimetrici e della bibliografia esistente, sono state identificate le posizioni dei principali fronti della ACC ed è stato quindi messo a punto il piano di messe a mare dei float.\r\n</p>\r\n\r\nLungo le due traversate Città del Capo – Antartide e viceversa sono state lanciate 227 sonde XBT alla risoluzione spaziale di circa 20 nm per la rilevazione dei dati di temperatura nello strato 0–900 metri dell’Oceano Meridionale (Figure 1 e 2).\r\n\r\n<p ALIGN=\"center\"><a href=\" \"><img alt=\"\" src=\"/sites/default/files/fig1_pnraXXXIII.png\" width=\"500px\" /></a></p>\r\n \r\n<p align=\"justify\"><strong>Figure 1. Sezione di temperatura nello strato 0–1000 m lungo la rotta Città del Capo – Antartide, nel periodo 07–20 dicembre 2017. La posizione dei principali fronti della ACC è indicata dalle linee rosse.</b></strong>\r\n\r\n<p ALIGN=\"center\"><a href=\" \"><img alt=\"\" src=\"/sites/default/files/fig2_pnraXXXIII.png\" width=\"500px\" /></a></p>\r\n \r\n<p align=\"justify\"><strong>Figure 2. Sezione di temperatura nello strato 0–1000 m lungo la rotta Antartide – Città del Capo, nel periodo 06-13 febbraio 2017. La posizione dei principali fronti della ACC è indicata dalle linee rosse.</b></strong>\r\n\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:5174:\"<h1 align=\"center\"><strong>Rapporto sulla Campagna Antartica (estratto)</strong></h1>\n<h2 align=\"center\"><strong>Estate Australe 2017-2018</strong></h2>\n<h3 align=\"center\"><strong>Trentduesima Spedizione (PNRA XXXIII)</strong></h3>\n<p align=\"center\"><strong>Progetto 2009/B.09: Osservatorio Marino Nel Mare di Ross ( MORSea)</strong><br /><em>Y. Cotroneo, L. Marziani</em></p>\n<p align=\"justify\">Lo scopo del progetto MOMA è lo studio della variabilità della corrente circumpolare antartica nella regione oceanica compresa tra Antartide e Sud Africa, nell’ambito delle attività scientifiche internazionali promosse dal Southern Ocean Observing System (SOOS) e dal First Antarctic and Southern Ocean Science Horizon Scan.<br />\nMOMA si basa sulla raccolata e l’analisi di un dataset ad alta risoluzione, affiancato a simulazioni numeriche sviluppate e utilizzate nell’ambito del progetto.<br />\nNell’ambito della XXXIII Spedizione in Antartide è stata effettuata la seconda campagna di misure del progetto attraverso la partecipazione di un ricercatore italiano alla campagna oceanografica del South African National Antarctic Programme (SANAP) dell’estate australe 2017/18.<br />\nLa raccolta di dati mediante la strumentazione di bordo (CTD, XBT, ADCP, etc.) è stata integrata con un numero ridotto di float (3), poiché, per problemi relativi alle tempistiche d’imbarco, non è stato possibile acquisire e garantire la consegna di ulteriori boe/sonde. Consequenzialmente, anche il personale imbarcato del progetto MOMA è stato ridotto a una singola unità.<br />\nSuccessivamente, grazie alla collaborazione con l’IFREMER e l’INOGS, prima della partenza della S/A Agulhas II da Città del Capo il 07/12/2017, è stato possibile integrare i float del progetto MOMA con 10 ARGO floats di un progetto di ricerca francese. L’unione dei dati provenienti dalle diverse sonde consentirà quindi una rappresentazione migliore dell’area di interesse.<br />\nTali dispositivi, una volta rilasciati in mare, si muovono in maniera “lagrangiana” a una profondità predeterminata e a intervalli regolari risalgono in superficie misurando i dati relativi alle proprietà termoaline della colonna d’acqua. In particolare, a intervalli di 10 giorni, il float è programmato per immergersi sino a 2000 metri per poi risalire in superficie per eseguire il profilo di temperatura e salinità e trasmettere i dati acquisiti. Una volta effettuata la raccolta dati, il float ritorna a una “parking depth” di 1000 metri di profondità. Il periodo di vita massimo del singolo float è di circa 5 anni.<br />\nI 3 Euro-Argo floats del progetto MOMA sono stati forniti dall’Istituto Nazionale di Oceanografia e di Geofisica Sperimentale (OGS) nell’ambito delle attività dell’Unità di Ricerca “3” – “Approvvigionamento, programmazione, messa a mare ed elaborazione dei dati di strumenti lagrangiani” coordinata dal Prof. Pierre Poulain, mentre l’integrazione con i 10 float francesi è il prodotto della collaborazione con Noé Poffa e Romain Cancouët dell’Institut français de recherche pour l\'exploitation de la mer - French Research Institute for Exploitation of the Sea (Ifremer).<br />\nLe attività sul campo sono iniziate il giorno 15 gennaio 2018 con l’arrivo sul continente antartico del Dott. Luigi Marziani che ha raggiunto la base di ricerca Norvegese “Troll Station” con un volo Città del Capo – Antartide operato dalla Norwegian Antarctic Research Expeditionsed (NARE) ed è stato successivamente trasferito (16 gennaio), a bordo della nave di ricerca sudafricana S/A Agulhas II.<br />\nUna volta verificata la condizione degli strumenti imbarcati alla partenza, l’attenzione si è spostata sulla raccolta dei dati acquisiti durante la navigazione verso sud, utili a una prima analisi per la conferma dei punti di messa a mare dei float sulla rotta di ritorno. Sulla base dei dati XBT raccolti durante il primo leg di navigazione, dei dati altimetrici e della bibliografia esistente, sono state identificate le posizioni dei principali fronti della ACC ed è stato quindi messo a punto il piano di messe a mare dei float.\n</p>\n<p>Lungo le due traversate Città del Capo – Antartide e viceversa sono state lanciate 227 sonde XBT alla risoluzione spaziale di circa 20 nm per la rilevazione dei dati di temperatura nello strato 0–900 metri dell’Oceano Meridionale (Figure 1 e 2).</p>\n<p align=\"center\"><a href=\" \"><img alt=\"\" src=\"/sites/default/files/fig1_pnraXXXIII.png\" width=\"500px\" /></a></p>\n<p align=\"justify\"><strong>Figure 1. Sezione di temperatura nello strato 0–1000 m lungo la rotta Città del Capo – Antartide, nel periodo 07–20 dicembre 2017. La posizione dei principali fronti della ACC è indicata dalle linee rosse.</strong></p>\n<p align=\"center\"><a href=\" \"><img alt=\"\" src=\"/sites/default/files/fig2_pnraXXXIII.png\" width=\"500px\" /></a></p>\n<p align=\"justify\"><strong>Figure 2. Sezione di temperatura nello strato 0–1000 m lungo la rotta Antartide – Città del Capo, nel periodo 06-13 febbraio 2017. La posizione dei principali fronti della ACC è indicata dalle linee rosse.</strong></p>\n\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:2:\"en\";a:1:{i:0;a:3:{s:5:\"value\";s:21:\"2017/18 - PNRA XXXIII\";s:6:\"format\";N;s:10:\"safe_value\";s:21:\"2017/18 - PNRA XXXIII\";}}}}',0,1538751274,1),('field:node:14','a:2:{s:4:\"body\";a:1:{s:2:\"en\";a:1:{i:0;a:5:{s:5:\"value\";s:10890:\"<h1 align=\"center\"><strong>Rapporto sulla Campagna Antartica (estratto)</strong></h1>\r\n\r\n<h2 align=\"center\"><strong>Estate Australe 2013-2014</strong></h2>\r\n\r\n<h3 align=\"center\"><strong>Ventinovesima Spedizione (PNRA XXIX)</strong></h3>\r\n\r\n<p align=\"center\"><strong>Progetto 2009/B.09: Osservatorio Marino nel Mare di Ross. Resp. G. Spezie</strong><br />\r\n<em>G. Budillon, P. Falco, P. Penna</em></p>\r\n\r\n<p align=\"justify\">Il Progetto MORSea è sostanzialmente relativo alla attività di mantenimento della rete di osservazioni marine attualmente esistente nel Mare di Ross. L’obiettivo primario dell’osservatorio è quello di fornire un sostanziale contributo al monitoraggio della variabilità interannuale delle caratteristiche fisiche e geochimiche delle acque di shelf nel settore occidentale del Mare di Ross.\r\nL’osservatorio è attualmente costituito da 4 catene correntometriche (mooring) contrassegnate dalle lettere “B”, “D”, “G” e “L”. Il Progetto si occupa del mantenimento dei mooring esistenti e, possibilmente, di potenziare la strumentazione attualmente alloggiata sulla base anche di accordi e collaborazioni con progetti italiani e stranieri.\r\nA queste attività si sono aggiunte anche le misure di ship of opportunity effettuate senza interferire con i tempi di navigazione della nave Italica. In particolare quest’anno sono state eseguite misure di temperatura e salinità superficiale del mare (SST e SSS rispettivamente), lanci di XBT per la misura della struttura subsuperficiale dell’Oceano Meridionale e lanci di float (questi ultimi nell’ambito della collaborazione con il progetto ARGOItaly). Queste attività, svolte in passato da progetti non più attivi del PNRA (CLIMA e SOChIC), sono state condotte al fine di non interrompere le preziose serie temporali acquisite dal 1994, considerata la valenza ormai “climatica” di queste informazioni.\r\nIn attesa della attribuzione dei fondi per le attività di progetto, anche quest’anno le indispensabili acquisizioni di materiale di consumo (zinchi, batterie, …), marinaresco (boe di spinta, cavi, maniglioni, …) sono state eseguite anticipando le spese su dotazioni economiche non PNRA. In questo contesto non è stato possibile quindi acquisire nuovi strumenti per questa spedizione e, in buona sostanza, la strumentazione rimessa a mare è stata la stessa di quella degli anni precedenti che, in alcuni casi, risale a oltre 15 anni fa. Il materiale di consumo e di ricambio per le trappole di sedimento è stato fornito: dal dott. M. Capello (Univ. di Genova) per i mooring “D” e “L” (3 trappole), dal dott. L. Langone (CNR – ISMAR) per il mooring “B” (1 trappola). Quest’ultimo ha inoltre curato a bordo la conservazione dei campioni acquisiti, la programmazione dei motori, ed in generale il ricondizionamento delle trappole di sedimento per il successivo riposizionamento in mare.\r\nCome specificato nel seguito (se non specificato diversamente gli orari e le date sono in tempo locale – LT), il recupero di due mooring (“B” e “L”) ha visto la preziosa collaborazione del gruppo EchoSurvey (CNR-ISMAR, Ancona) che ha messo a disposizione la strumentazione da pesca (divergenti) e ha partecipato attivamente alle operazioni.\r\nCome tradizione, sono state effettuate calate di CTD/LADCP - per la verifica e taratura dei sensori posizionati sulle catene correntometriche - prima e dopo il loro recupero e posizionamento; le misure sono state eseguite in collaborazione con l’U.O. “Idrologia” del progetto RoME.\r\nNel seguito vengono descritte le attività svolte su ogni catena correntometrica e in tabella I viene riportato la scheda riassuntiva.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “B”</strong><br />\r\nIl mooring “B” è stato recuperato il 29 gennaio e rimesso in mare il 31 gennaio 2014.\r\nUn primo tentativo di recupero è stato effettuato il 6 gennaio 2014 durante l’avvicinamento della nave Italica verso la Base MZS in considerazione delle buone condizioni meteo marine. Nonostante tutte le operazioni fossero state eseguite con successo, sia quelle propedeutiche allo sgancio (wake up dello sganciatore, calcolo della distanza), sia lo sgancio stesso (con la regolare ricezione del segnale di conferma di avvenuto sgancio e posizione verticale di entrambi gli sganciatori), il mooring non è risalito in superficie. Dopo alcune ore di ulteriori tentativi e prove, constatata l’impossibilità di poter effettuare altre operazioni e la urgenza di raggiungere MZS, è stato deciso di abbandonare la zona posticipando altri tentativi di recupero. Grazie alla collaborazione del gruppo EchoSurvey, è stato effettuato un passaggio sulla posizione del mooring rilevando tutta la struttura, sia nella parte di fondo sia superiore, avendo conferma in questo modo della sua effettiva integrità e posizione verticale.\r\nUn secondo tentativo è stato effettuato il giorno 12 gennaio 2014. Ritornati sul posto è stata verificata nuovamente la piena funzionalità di entrambi gli sganciatori che rispondevano regolarmente alle interrogazioni con il segnale di avvenuto sgancio e posizione verticale, nonostante ciò il mooring non risaliva in superficie. Al fine di tentare il recupero del mooring è stata messa in mare una struttura a “U” composta alle due estremità verticali da una boa superficiale sostenente una cima di circa 150 metri appesantita da una catena, entrambe collegate in profondità da una cima orizzontale di circa 250 metri. Questa struttura è stata filata in mare dalla nave Italica a monte della corrente predominante ed è stato atteso il tempo necessario a far derivare la struttura sulla posizione del mooring. Al secondo tentativo il mooring è stato infatti “incocciato”: le boe superficiali, distanti tra loro circa 250 metri, hanno modificato la traiettoria di deriva avvicinandosi tra loro. Dopo circa mezz’ora la nave ha quindi operato per rampinare entrambe le boe e ha iniziato il recupero da poppa. Purtroppo durante questa fase si è notato che le cime andavano in bando testimoniando la perdita di aggancio con il mooring. Non è stato possibile ripetere ulteriori prove per le condizioni del mare; verificata ancora una volta la posizione del mooring, è stato deciso di rimandare nuovamente un ulteriore tentativo di recupero.\r\nIl mooring è stato recuperato il 29 gennaio 2014 operando in stretta collaborazione con il gruppo EchoSurvey presente a bordo (Giovanni Canduci e Giordano Giuliani) che ha messo a disposizione i divergenti e la propria professionalità. Verificata ancora una volta la posizione del mooring, sono stati filati da poppa i divergenti sostenuti da circa 500 metri di cavo d’acciaio e collegati tra loro da cime di kevlar di circa 500 metri, appesantite da una catena. Al secondo tentativo il mooring è stato incocciato e recuperato a bordo senza eccessivi problemi.\r\nL’esame della strumentazione recuperata ha evidenziato una anomala presenza di fouling sulla strumentazione profonda (e non su quella più superficiale) che risultava particolarmente intensa sugli sganciatori e ne aveva impedito lo sgancio, nonostante il meccanismo di svincolo avesse perfettamente funzionato.\r\nDopo la manutenzione del caso, la catena correntometrica è stata riposizionata.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “D”</strong><br />\r\nIl mooring “D” è stato recuperato il 12 gennaio e rimesso in mare il 21 gennaio 2014.\r\nDurante la XXVIII (2011-12) Spedizione il mooring era stato posizionato in mare incrementando il payload e prolungando la sua estensione sino a circa 124 m dalla superficie con la strumentazione fornita dal progetto “2010/A4.01” (sensori termoalini e un profilatore acustico). Per evitare possibili perdite di tutto il mooring, era stato deciso di collegare la parte inferiore con quella superiore (aggiunta per il progetto “2010/A4.01”) mediante un anello debole che avrebbe ceduto in caso di impatto con iceberg.\r\nIl recupero del mooring è stato effettuato in ottime condizioni meteo marine senza però rinvenire la parte superiore relativa al progetto “2010/A4.01”.\r\nA differenza di quanto evidenziato per il mooring “B”, non sono state rinvenute presenze anomale di fouling.\r\nEffettuata l’ordinaria manutenzione della strumentazione, il mooring “D” è stato rimesso in posizione.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “G”</strong><br />\r\nIl mooring “G” è stato recuperato il 23 gennaio e rimesso in mare il 26 gennaio 2014.\r\nEntrambe le operazioni si svolte senza particolari problemi in condizioni meteo marine accettabili. La configurazione del mooring riposizionato.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “L”</strong><br />\r\nIl mooring “L” è stato recuperato il 5 febbraio e rimesso in mare l’8 febbraio 2014.\r\nUn primo tentativo di recupero è stato effettuato l’11 gennaio, durante le operazioni di sbarco del materiale presso MZS, a bordo dell’Icebjorn. La risposta dello sganciatore alle interrogazioni con il modulo di sgancio a bordo dell’Icebjorn è sempre stata frammentaria e poco intellegibile. Analogo risultato si è ottenuto con il modulo di sgancio di rispetto a bordo della Italica. L’Italica ha quindi effettuato un passaggio sul punto teorico per rilevarlo con gli ecoscandagli del gruppo EchoSurvey, in questa indagine è stata identificata solo la strumentazione in prossimità del fondo.\r\nDurante le attività marine in Base, il battello Malippo ha effettuato un passaggio sulla posizione del mooring rilevandolo con l’ecoscandaglio di bordo e verificandone la posizione verticale.\r\nIn seguito a questa informazione è stato deciso di effettuare il recupero secondo le modalità già sperimentate in occasione del recupero del mooring “B” in collaborazione con il gruppo EchoSurvey. Il mooring è stato “incocciato” al primo tentativo l’8 febbraio ed è stato recuperato completamente integro.</p>\r\n\r\n<p align=\"justify\"><strong>Ringraziamenti:</strong><br />\r\nE’ doveroso un sentito ringraziamento:<br />\r\n- al gruppo EchoSurvey (CNR-ISMAR, Ancona) per la entusiastica collaborazione in fase di programmazione e di esecuzione delle operazioni di recupero dei mooring “B” e “L”, nonché per aver messo a disposizione parte della attrezzatura propria;<br />\r\n- al dott. Capello per l’assistenza in Italia e al dott. Langone per l’assistenza in Italia e a bordo nella manutenzione delle trappole di sedimento;<br />\r\n- a tutti coloro che hanno collaborato ai lanci degli XBT (G. Bruzzone, D. Cotterle, M. De Stefano, R. Geletti, G. Zambardino).<br />\r\n- al personale di bordo e del PNRA per l’assistenza continua e per aver coadiuvato con grande professionalità nelle operazioni marinaresche a poppa in occasione del recupero e messa a mare delle catene correntometriche, anche in condizioni meteo marine non facili.</p>\r\n\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:10946:\"<h1 align=\"center\"><strong>Rapporto sulla Campagna Antartica (estratto)</strong></h1>\n<h2 align=\"center\"><strong>Estate Australe 2013-2014</strong></h2>\n<h3 align=\"center\"><strong>Ventinovesima Spedizione (PNRA XXIX)</strong></h3>\n<p align=\"center\"><strong>Progetto 2009/B.09: Osservatorio Marino nel Mare di Ross. Resp. G. Spezie</strong><br /><em>G. Budillon, P. Falco, P. Penna</em></p>\n<p align=\"justify\">Il Progetto MORSea è sostanzialmente relativo alla attività di mantenimento della rete di osservazioni marine attualmente esistente nel Mare di Ross. L’obiettivo primario dell’osservatorio è quello di fornire un sostanziale contributo al monitoraggio della variabilità interannuale delle caratteristiche fisiche e geochimiche delle acque di shelf nel settore occidentale del Mare di Ross.<br />\nL’osservatorio è attualmente costituito da 4 catene correntometriche (mooring) contrassegnate dalle lettere “B”, “D”, “G” e “L”. Il Progetto si occupa del mantenimento dei mooring esistenti e, possibilmente, di potenziare la strumentazione attualmente alloggiata sulla base anche di accordi e collaborazioni con progetti italiani e stranieri.<br />\nA queste attività si sono aggiunte anche le misure di ship of opportunity effettuate senza interferire con i tempi di navigazione della nave Italica. In particolare quest’anno sono state eseguite misure di temperatura e salinità superficiale del mare (SST e SSS rispettivamente), lanci di XBT per la misura della struttura subsuperficiale dell’Oceano Meridionale e lanci di float (questi ultimi nell’ambito della collaborazione con il progetto ARGOItaly). Queste attività, svolte in passato da progetti non più attivi del PNRA (CLIMA e SOChIC), sono state condotte al fine di non interrompere le preziose serie temporali acquisite dal 1994, considerata la valenza ormai “climatica” di queste informazioni.<br />\nIn attesa della attribuzione dei fondi per le attività di progetto, anche quest’anno le indispensabili acquisizioni di materiale di consumo (zinchi, batterie, …), marinaresco (boe di spinta, cavi, maniglioni, …) sono state eseguite anticipando le spese su dotazioni economiche non PNRA. In questo contesto non è stato possibile quindi acquisire nuovi strumenti per questa spedizione e, in buona sostanza, la strumentazione rimessa a mare è stata la stessa di quella degli anni precedenti che, in alcuni casi, risale a oltre 15 anni fa. Il materiale di consumo e di ricambio per le trappole di sedimento è stato fornito: dal dott. M. Capello (Univ. di Genova) per i mooring “D” e “L” (3 trappole), dal dott. L. Langone (CNR – ISMAR) per il mooring “B” (1 trappola). Quest’ultimo ha inoltre curato a bordo la conservazione dei campioni acquisiti, la programmazione dei motori, ed in generale il ricondizionamento delle trappole di sedimento per il successivo riposizionamento in mare.<br />\nCome specificato nel seguito (se non specificato diversamente gli orari e le date sono in tempo locale – LT), il recupero di due mooring (“B” e “L”) ha visto la preziosa collaborazione del gruppo EchoSurvey (CNR-ISMAR, Ancona) che ha messo a disposizione la strumentazione da pesca (divergenti) e ha partecipato attivamente alle operazioni.<br />\nCome tradizione, sono state effettuate calate di CTD/LADCP - per la verifica e taratura dei sensori posizionati sulle catene correntometriche - prima e dopo il loro recupero e posizionamento; le misure sono state eseguite in collaborazione con l’U.O. “Idrologia” del progetto RoME.<br />\nNel seguito vengono descritte le attività svolte su ogni catena correntometrica e in tabella I viene riportato la scheda riassuntiva.</p>\n<p align=\"justify\"><strong>Mooring “B”</strong><br />\nIl mooring “B” è stato recuperato il 29 gennaio e rimesso in mare il 31 gennaio 2014.<br />\nUn primo tentativo di recupero è stato effettuato il 6 gennaio 2014 durante l’avvicinamento della nave Italica verso la Base MZS in considerazione delle buone condizioni meteo marine. Nonostante tutte le operazioni fossero state eseguite con successo, sia quelle propedeutiche allo sgancio (wake up dello sganciatore, calcolo della distanza), sia lo sgancio stesso (con la regolare ricezione del segnale di conferma di avvenuto sgancio e posizione verticale di entrambi gli sganciatori), il mooring non è risalito in superficie. Dopo alcune ore di ulteriori tentativi e prove, constatata l’impossibilità di poter effettuare altre operazioni e la urgenza di raggiungere MZS, è stato deciso di abbandonare la zona posticipando altri tentativi di recupero. Grazie alla collaborazione del gruppo EchoSurvey, è stato effettuato un passaggio sulla posizione del mooring rilevando tutta la struttura, sia nella parte di fondo sia superiore, avendo conferma in questo modo della sua effettiva integrità e posizione verticale.<br />\nUn secondo tentativo è stato effettuato il giorno 12 gennaio 2014. Ritornati sul posto è stata verificata nuovamente la piena funzionalità di entrambi gli sganciatori che rispondevano regolarmente alle interrogazioni con il segnale di avvenuto sgancio e posizione verticale, nonostante ciò il mooring non risaliva in superficie. Al fine di tentare il recupero del mooring è stata messa in mare una struttura a “U” composta alle due estremità verticali da una boa superficiale sostenente una cima di circa 150 metri appesantita da una catena, entrambe collegate in profondità da una cima orizzontale di circa 250 metri. Questa struttura è stata filata in mare dalla nave Italica a monte della corrente predominante ed è stato atteso il tempo necessario a far derivare la struttura sulla posizione del mooring. Al secondo tentativo il mooring è stato infatti “incocciato”: le boe superficiali, distanti tra loro circa 250 metri, hanno modificato la traiettoria di deriva avvicinandosi tra loro. Dopo circa mezz’ora la nave ha quindi operato per rampinare entrambe le boe e ha iniziato il recupero da poppa. Purtroppo durante questa fase si è notato che le cime andavano in bando testimoniando la perdita di aggancio con il mooring. Non è stato possibile ripetere ulteriori prove per le condizioni del mare; verificata ancora una volta la posizione del mooring, è stato deciso di rimandare nuovamente un ulteriore tentativo di recupero.<br />\nIl mooring è stato recuperato il 29 gennaio 2014 operando in stretta collaborazione con il gruppo EchoSurvey presente a bordo (Giovanni Canduci e Giordano Giuliani) che ha messo a disposizione i divergenti e la propria professionalità. Verificata ancora una volta la posizione del mooring, sono stati filati da poppa i divergenti sostenuti da circa 500 metri di cavo d’acciaio e collegati tra loro da cime di kevlar di circa 500 metri, appesantite da una catena. Al secondo tentativo il mooring è stato incocciato e recuperato a bordo senza eccessivi problemi.<br />\nL’esame della strumentazione recuperata ha evidenziato una anomala presenza di fouling sulla strumentazione profonda (e non su quella più superficiale) che risultava particolarmente intensa sugli sganciatori e ne aveva impedito lo sgancio, nonostante il meccanismo di svincolo avesse perfettamente funzionato.<br />\nDopo la manutenzione del caso, la catena correntometrica è stata riposizionata.</p>\n<p align=\"justify\"><strong>Mooring “D”</strong><br />\nIl mooring “D” è stato recuperato il 12 gennaio e rimesso in mare il 21 gennaio 2014.<br />\nDurante la XXVIII (2011-12) Spedizione il mooring era stato posizionato in mare incrementando il payload e prolungando la sua estensione sino a circa 124 m dalla superficie con la strumentazione fornita dal progetto “2010/A4.01” (sensori termoalini e un profilatore acustico). Per evitare possibili perdite di tutto il mooring, era stato deciso di collegare la parte inferiore con quella superiore (aggiunta per il progetto “2010/A4.01”) mediante un anello debole che avrebbe ceduto in caso di impatto con iceberg.<br />\nIl recupero del mooring è stato effettuato in ottime condizioni meteo marine senza però rinvenire la parte superiore relativa al progetto “2010/A4.01”.<br />\nA differenza di quanto evidenziato per il mooring “B”, non sono state rinvenute presenze anomale di fouling.<br />\nEffettuata l’ordinaria manutenzione della strumentazione, il mooring “D” è stato rimesso in posizione.</p>\n<p align=\"justify\"><strong>Mooring “G”</strong><br />\nIl mooring “G” è stato recuperato il 23 gennaio e rimesso in mare il 26 gennaio 2014.<br />\nEntrambe le operazioni si svolte senza particolari problemi in condizioni meteo marine accettabili. La configurazione del mooring riposizionato.</p>\n<p align=\"justify\"><strong>Mooring “L”</strong><br />\nIl mooring “L” è stato recuperato il 5 febbraio e rimesso in mare l’8 febbraio 2014.<br />\nUn primo tentativo di recupero è stato effettuato l’11 gennaio, durante le operazioni di sbarco del materiale presso MZS, a bordo dell’Icebjorn. La risposta dello sganciatore alle interrogazioni con il modulo di sgancio a bordo dell’Icebjorn è sempre stata frammentaria e poco intellegibile. Analogo risultato si è ottenuto con il modulo di sgancio di rispetto a bordo della Italica. L’Italica ha quindi effettuato un passaggio sul punto teorico per rilevarlo con gli ecoscandagli del gruppo EchoSurvey, in questa indagine è stata identificata solo la strumentazione in prossimità del fondo.<br />\nDurante le attività marine in Base, il battello Malippo ha effettuato un passaggio sulla posizione del mooring rilevandolo con l’ecoscandaglio di bordo e verificandone la posizione verticale.<br />\nIn seguito a questa informazione è stato deciso di effettuare il recupero secondo le modalità già sperimentate in occasione del recupero del mooring “B” in collaborazione con il gruppo EchoSurvey. Il mooring è stato “incocciato” al primo tentativo l’8 febbraio ed è stato recuperato completamente integro.</p>\n<p align=\"justify\"><strong>Ringraziamenti:</strong><br />\nE’ doveroso un sentito ringraziamento:<br />\n- al gruppo EchoSurvey (CNR-ISMAR, Ancona) per la entusiastica collaborazione in fase di programmazione e di esecuzione delle operazioni di recupero dei mooring “B” e “L”, nonché per aver messo a disposizione parte della attrezzatura propria;<br />\n- al dott. Capello per l’assistenza in Italia e al dott. Langone per l’assistenza in Italia e a bordo nella manutenzione delle trappole di sedimento;<br />\n- a tutti coloro che hanno collaborato ai lanci degli XBT (G. Bruzzone, D. Cotterle, M. De Stefano, R. Geletti, G. Zambardino).<br />\n- al personale di bordo e del PNRA per l’assistenza continua e per aver coadiuvato con grande professionalità nelle operazioni marinaresche a poppa in occasione del recupero e messa a mare delle catene correntometriche, anche in condizioni meteo marine non facili.</p>\n\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:2:\"en\";a:1:{i:0;a:3:{s:5:\"value\";s:19:\"2013/14 - PNRA XXIX\";s:6:\"format\";N;s:10:\"safe_value\";s:19:\"2013/14 - PNRA XXIX\";}}}}',0,1539005969,1),('field:node:15','a:2:{s:4:\"body\";a:1:{s:2:\"en\";a:1:{i:0;a:5:{s:5:\"value\";s:13700:\"<h1 align=\"center\"><strong>Main Activities</strong></h1>\r\n<table align=\"center\">\r\n	<tbody>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">Williams M., Budillon G., Walker S., Ackley S., Blankenship D., Greenbaum J., Lee S., Lee W. S., 2015</p>\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Observation Activities in the Ross Sea - Current and Future National Contributions to the Southern Ocean Observing System</strong></u></em>”</p>\r\n			<p>SOOS Report Series, #1 (2015).</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/RossSeaReport2015.pdf\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">Rusciano E., Budillon G., Fusco G., Spezie G., 2013</p>\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Evidence of atmosphere–sea ice–ocean coupling in the Terra Nova Bay polynya (Ross Sea—Antarctica)</strong></u></em>”</p>\r\n			<p>Elsevier, Continental Shelf Research Vol. 61–62 (2013) 112–124.</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/Pub4.pdf\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">Budillon G., Castagno P., Aliani S., Spezie G., Padman L., 2011</p>\r\n\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Thermohaline variability and Antarctic bottom water formation at the Ross Sea shelf break</strong></u></em>”</p>\r\n\r\n			<p>Elsevier, Deep-Sea Research Vol. 58 (2011) 1002–1018.</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/Pub1.pdf\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">Catalano G., Budillon G., Aliani S., La Ferla R., Povero P., Ravaioli M., Saggiomo V., Accornero A., Azzaro M., Carrada G. C., Giglio F., Langone L., Mangoni O., Misic C., Modigh M., 2010</p>\r\n\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>The Ross Sea</strong></u></em>”</p>\r\n\r\n			<p>Carbon and Nutrient Fluxes in Continental Margins, Global Change. The IGBP Series. Vol. 6.3.</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/Pub2.pdf\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">Fusco G., Budillon G., Spezie G., 2009</p>\r\n\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Surface heat fluxes and thermohaline variability in the Ross Sea and in Terra Nova Bay polynya</strong></u></em>”</p>\r\n\r\n			<p>Elsevier, Continental Shelf Research Vol. 29 (2009) 1887–1895.</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/Pub3.pdf\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n<h1 align=\"center\"><strong>Ancillary Activities</strong></h1>\r\n<table align=\"center\">\r\n	<tbody>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">A. Russo, A. Artegiani, G. Budillon, E. Paschini, G. Spezie, 1999</p>\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Upper Ocean Thermal Structure and Fronts Between New Zealand and the Ross Sea (Austral Summer 1994-1995 and 1995-1996)</strong></u></em>”</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/......\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">E. Zambianchi, G. Budillon, P. Falco, G. Spezie, 1999</p>\r\n\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Observations of the Dynamics of the Antarctic Circumpolar Current in the Pacific Sector of the Southern Ocean</strong></u></em>”</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/........\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">G. Budillon, S.R. Rintoul, 2003</p>\r\n\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Fronts and upper ocean thermal variability south of New Zealand</strong></u></em>”</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/Budillon_rintoul_AS_2003.pdf\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">Y. Cotroneo, G. Budillon, G. Fusco, G. Spezie, 2013</p>\r\n\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Cold core eddies and fronts of the Antarctic Circumpolar Current south of New Zealand from in situ and satellite data</strong></u></em>”</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/jgrc20193.pdf\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Presentations by University of Naples Parthenope group at the 1st International Conference on The Oceanography of the Ross Sea Antarctica, Lerici (Sp), Italy 1997</strong></u></em>”</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/.........\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Presentations by University of Naples Parthenope group at the 2nd International Conference on the Oceanography of the Ross Sea Antarctica, Ischia (Na), Italy 2001</strong></u></em>”</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/.........\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Presentations by University of Naples Parthenope group at the 3nd International Conference on the Oceanography of the Ross Sea Antarctica, Venice (Ve), Italy 2005</strong></u></em>”</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/.........\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">Budillon G., Rintoul S. R., Hobart, Australia 2006</p>\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Fronts, temperature, and estimated transports variability in the upper ocean south of New Zealand</strong></u></em>”</p>\r\n			<p>Presentation at the conference “SCAR XXIX / COMNAP XVIII”</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/.......\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">Y. Cotroneo, G. Budillon, G. Fusco, G. Spezie, 2009</p>\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Identificazione di eddies a cuore freddo nella corrente circumpolare antartica da misure in situ e tele rilevate</strong></u></em>”</p>\r\n			<p>Presentation at the conference “Environment Including Global Change – Congresso Fai 2009” </p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/.......\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">Cotroneo Y., Swart S., Ansorge I., Budillon G., Fusco G., 2010</p>\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Quasi synoptical detection of the ACC fronts south of Africa and New Zealand from in situ data</strong></u></em>”</p>\r\n			<p>Presentation at the conference “Scar Conference 2010”</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/.......\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">Budillon G., Cotroneo Y., Swart S., Ansorge I., Fusco G., 2011</p>\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>The Italian SOChIC project in the framework of a global survey of the ACC fronts and mesoscale eddies</strong></u></em>”</p>\r\n			<p>Presentation at the conference “IUGG 2011”</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/.......\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">Cotroneo Y., Swart S., Ansorge I., Budillon G., Fusco G., 2012</p>\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>An international activity to synoptically monitor ACC fronts and mesoscale eddies</strong></u></em>”</p>\r\n			<p>Work presentation at the conference “IPY2012” </p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/.......\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">Cotroneo, Y., Budillon G., Fusco G., Spezie G., 2013</p>\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Cold core eddies and fronts of the Antarctic Circumpolar Current south of New Zealand from in situ and satellite altimetry data</strong></u></em>”</p>\r\n			<p>Presentation at the conference “IAHS – IAPSO – IASPEI Joint Assembly 2013”</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/.......\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">Cotroneo Y., Budillon G., Fusco G., Spezie G., 2013</p>\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Cold core eddies and fronts of the Antarctic Circumpolar Current south of New Zealand from in situ and satellite data</strong></u></em>”</p>\r\n			<p>Presentation at the conference “XXI Congresso dell’Associazione Italiana di Oceanologia e Limnologia, 2013” </p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/.......\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">Cerrone D., Fusco G., Cotroneo Y., Budillon G., 2013</p>\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>The Antarctic Circumpolar Wave scenario described as a combination of interannual signals</strong></u></em>”</p>\r\n			<p>Presentation at the conference “First Annual Conference of Società Italiana per le Scienze del Clima, 2013”</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/.......\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n	</tbody>\r\n</table>\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:13084:\"<h1 align=\"center\"><strong>Main Activities</strong></h1>\n<table align=\"center\"><tbody><tr><td>\n<p style=\"margin: 0; padding-top: 15px;\">Williams M., Budillon G., Walker S., Ackley S., Blankenship D., Greenbaum J., Lee S., Lee W. S., 2015</p>\n<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Observation Activities in the Ross Sea - Current and Future National Contributions to the Southern Ocean Observing System</strong></u></em>”</p>\n<p>SOOS Report Series, #1 (2015).</p>\n</td>\n<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/RossSeaReport2015.pdf\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\n</tr><tr><td>\n<p style=\"margin: 0; padding-top: 15px;\">Rusciano E., Budillon G., Fusco G., Spezie G., 2013</p>\n<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Evidence of atmosphere–sea ice–ocean coupling in the Terra Nova Bay polynya (Ross Sea—Antarctica)</strong></u></em>”</p>\n<p>Elsevier, Continental Shelf Research Vol. 61–62 (2013) 112–124.</p>\n</td>\n<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/Pub4.pdf\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\n</tr><tr><td>\n<p style=\"margin: 0; padding-top: 15px;\">Budillon G., Castagno P., Aliani S., Spezie G., Padman L., 2011</p>\n<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Thermohaline variability and Antarctic bottom water formation at the Ross Sea shelf break</strong></u></em>”</p>\n<p>Elsevier, Deep-Sea Research Vol. 58 (2011) 1002–1018.</p>\n</td>\n<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/Pub1.pdf\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\n</tr><tr><td>\n<p style=\"margin: 0; padding-top: 15px;\">Catalano G., Budillon G., Aliani S., La Ferla R., Povero P., Ravaioli M., Saggiomo V., Accornero A., Azzaro M., Carrada G. C., Giglio F., Langone L., Mangoni O., Misic C., Modigh M., 2010</p>\n<p style=\"margin: 0; text-align: center;\">“<em><u><strong>The Ross Sea</strong></u></em>”</p>\n<p>Carbon and Nutrient Fluxes in Continental Margins, Global Change. The IGBP Series. Vol. 6.3.</p>\n</td>\n<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/Pub2.pdf\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\n</tr><tr><td>\n<p style=\"margin: 0; padding-top: 15px;\">Fusco G., Budillon G., Spezie G., 2009</p>\n<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Surface heat fluxes and thermohaline variability in the Ross Sea and in Terra Nova Bay polynya</strong></u></em>”</p>\n<p>Elsevier, Continental Shelf Research Vol. 29 (2009) 1887–1895.</p>\n</td>\n<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/Pub3.pdf\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\n</tr></tbody></table><h1 align=\"center\"><strong>Ancillary Activities</strong></h1>\n<table align=\"center\"><tbody><tr><td>\n<p style=\"margin: 0; padding-top: 15px;\">A. Russo, A. Artegiani, G. Budillon, E. Paschini, G. Spezie, 1999</p>\n<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Upper Ocean Thermal Structure and Fronts Between New Zealand and the Ross Sea (Austral Summer 1994-1995 and 1995-1996)</strong></u></em>”</p>\n</td>\n<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/......\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\n</tr><tr><td>\n<p style=\"margin: 0; padding-top: 15px;\">E. Zambianchi, G. Budillon, P. Falco, G. Spezie, 1999</p>\n<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Observations of the Dynamics of the Antarctic Circumpolar Current in the Pacific Sector of the Southern Ocean</strong></u></em>”</p>\n</td>\n<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/........\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\n</tr><tr><td>\n<p style=\"margin: 0; padding-top: 15px;\">G. Budillon, S.R. Rintoul, 2003</p>\n<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Fronts and upper ocean thermal variability south of New Zealand</strong></u></em>”</p>\n</td>\n<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/Budillon_rintoul_AS_2003.pdf\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\n</tr><tr><td>\n<p style=\"margin: 0; padding-top: 15px;\">Y. Cotroneo, G. Budillon, G. Fusco, G. Spezie, 2013</p>\n<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Cold core eddies and fronts of the Antarctic Circumpolar Current south of New Zealand from in situ and satellite data</strong></u></em>”</p>\n</td>\n<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/jgrc20193.pdf\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\n</tr><tr><td>\n<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Presentations by University of Naples Parthenope group at the 1st International Conference on The Oceanography of the Ross Sea Antarctica, Lerici (Sp), Italy 1997</strong></u></em>”</p>\n</td>\n<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/.........\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\n</tr><tr><td>\n<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Presentations by University of Naples Parthenope group at the 2nd International Conference on the Oceanography of the Ross Sea Antarctica, Ischia (Na), Italy 2001</strong></u></em>”</p>\n</td>\n<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/.........\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\n</tr><tr><td>\n<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Presentations by University of Naples Parthenope group at the 3nd International Conference on the Oceanography of the Ross Sea Antarctica, Venice (Ve), Italy 2005</strong></u></em>”</p>\n</td>\n<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/.........\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\n</tr><tr><td>\n<p style=\"margin: 0; padding-top: 15px;\">Budillon G., Rintoul S. R., Hobart, Australia 2006</p>\n<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Fronts, temperature, and estimated transports variability in the upper ocean south of New Zealand</strong></u></em>”</p>\n<p>Presentation at the conference “SCAR XXIX / COMNAP XVIII”</p>\n</td>\n<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/.......\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\n</tr><tr><td>\n<p style=\"margin: 0; padding-top: 15px;\">Y. Cotroneo, G. Budillon, G. Fusco, G. Spezie, 2009</p>\n<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Identificazione di eddies a cuore freddo nella corrente circumpolare antartica da misure in situ e tele rilevate</strong></u></em>”</p>\n<p>Presentation at the conference “Environment Including Global Change – Congresso Fai 2009” </p>\n</td>\n<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/.......\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\n</tr><tr><td>\n<p style=\"margin: 0; padding-top: 15px;\">Cotroneo Y., Swart S., Ansorge I., Budillon G., Fusco G., 2010</p>\n<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Quasi synoptical detection of the ACC fronts south of Africa and New Zealand from in situ data</strong></u></em>”</p>\n<p>Presentation at the conference “Scar Conference 2010”</p>\n</td>\n<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/.......\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\n</tr><tr><td>\n<p style=\"margin: 0; padding-top: 15px;\">Budillon G., Cotroneo Y., Swart S., Ansorge I., Fusco G., 2011</p>\n<p style=\"margin: 0; text-align: center;\">“<em><u><strong>The Italian SOChIC project in the framework of a global survey of the ACC fronts and mesoscale eddies</strong></u></em>”</p>\n<p>Presentation at the conference “IUGG 2011”</p>\n</td>\n<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/.......\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\n</tr><tr><td>\n<p style=\"margin: 0; padding-top: 15px;\">Cotroneo Y., Swart S., Ansorge I., Budillon G., Fusco G., 2012</p>\n<p style=\"margin: 0; text-align: center;\">“<em><u><strong>An international activity to synoptically monitor ACC fronts and mesoscale eddies</strong></u></em>”</p>\n<p>Work presentation at the conference “IPY2012” </p>\n</td>\n<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/.......\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\n</tr><tr><td>\n<p style=\"margin: 0; padding-top: 15px;\">Cotroneo, Y., Budillon G., Fusco G., Spezie G., 2013</p>\n<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Cold core eddies and fronts of the Antarctic Circumpolar Current south of New Zealand from in situ and satellite altimetry data</strong></u></em>”</p>\n<p>Presentation at the conference “IAHS – IAPSO – IASPEI Joint Assembly 2013”</p>\n</td>\n<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/.......\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\n</tr><tr><td>\n<p style=\"margin: 0; padding-top: 15px;\">Cotroneo Y., Budillon G., Fusco G., Spezie G., 2013</p>\n<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Cold core eddies and fronts of the Antarctic Circumpolar Current south of New Zealand from in situ and satellite data</strong></u></em>”</p>\n<p>Presentation at the conference “XXI Congresso dell’Associazione Italiana di Oceanologia e Limnologia, 2013” </p>\n</td>\n<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/.......\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\n</tr><tr><td>\n<p style=\"margin: 0; padding-top: 15px;\">Cerrone D., Fusco G., Cotroneo Y., Budillon G., 2013</p>\n<p style=\"margin: 0; text-align: center;\">“<em><u><strong>The Antarctic Circumpolar Wave scenario described as a combination of interannual signals</strong></u></em>”</p>\n<p>Presentation at the conference “First Annual Conference of Società Italiana per le Scienze del Clima, 2013”</p>\n</td>\n<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/.......\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\n</tr></tbody></table>\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:2:\"en\";a:1:{i:0;a:3:{s:5:\"value\";s:13:\"Pubblications\";s:6:\"format\";N;s:10:\"safe_value\";s:13:\"Pubblications\";}}}}',0,1539005980,1),('field:node:2','a:2:{s:4:\"body\";a:1:{s:3:\"und\";a:1:{i:0;a:5:{s:5:\"value\";s:415:\"<p><em>Prof. Giancarlo Spezie (P.I.)&nbsp;- &nbsp;giancarlo.spezie@uniparthenope.it</em></p>\r\n\r\n<p><em>Prof. Giorgio Budillon - giorgio.budillon@uniparthenope.it</em></p>\r\n\r\n<h2><strong>Università degli Studi di Napoli \"Parthenope\"</strong></h2>\r\n\r\n<p>DiST - Dipartimento di Scienze e Tecnologie<br />\r\nCentro Direzionale, Isola C4. 80143 Napoli - ITALY<br />\r\nph. +39 081 5476584<br />\r\nfax. +39 081 5476515</p>\r\n\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:504:\"<p><em>Prof. Giancarlo Spezie (P.I.) -  <a href=\"mailto:giancarlo.spezie@uniparthenope.it\">giancarlo.spezie@uniparthenope.it</a></em></p>\n<p><em>Prof. Giorgio Budillon - <a href=\"mailto:giorgio.budillon@uniparthenope.it\">giorgio.budillon@uniparthenope.it</a></em></p>\n<h2><strong>Università degli Studi di Napoli \"Parthenope\"</strong></h2>\n<p>DiST - Dipartimento di Scienze e Tecnologie<br />\nCentro Direzionale, Isola C4. 80143 Napoli - ITALY<br />\nph. +39 081 5476584<br />\nfax. +39 081 5476515</p>\n\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:3:\"und\";a:1:{i:0;a:3:{s:5:\"value\";s:8:\"Contacts\";s:6:\"format\";N;s:10:\"safe_value\";s:8:\"Contacts\";}}}}',0,1539005997,1),('field:node:21','a:3:{s:4:\"body\";a:1:{s:2:\"en\";a:1:{i:0;a:5:{s:5:\"value\";s:0:\"\";s:7:\"summary\";s:34:\"<p>Descrizione del Mooring B</p>\r\n\";s:6:\"format\";s:13:\"filtered_html\";s:10:\"safe_value\";s:0:\"\";s:12:\"safe_summary\";s:33:\"<p>Descrizione del Mooring B</p>\n\";}}}s:11:\"field_photo\";a:1:{s:2:\"en\";a:1:{i:0;a:13:{s:3:\"fid\";s:2:\"10\";s:3:\"uid\";s:1:\"1\";s:8:\"filename\";s:18:\"Mooring B 2014.png\";s:3:\"uri\";s:29:\"public://Mooring B 2014_0.png\";s:8:\"filemime\";s:9:\"image/png\";s:8:\"filesize\";s:5:\"84190\";s:6:\"status\";s:1:\"1\";s:9:\"timestamp\";s:10:\"1412948575\";s:11:\"rdf_mapping\";a:0:{}s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:5:\"width\";s:3:\"720\";s:6:\"height\";s:3:\"960\";}}}s:11:\"title_field\";a:1:{s:2:\"en\";a:1:{i:0;a:3:{s:5:\"value\";s:9:\"Mooring B\";s:6:\"format\";N;s:10:\"safe_value\";s:9:\"Mooring B\";}}}}',0,1539007866,1),('field:node:22','a:3:{s:4:\"body\";a:0:{}s:11:\"field_photo\";a:1:{s:2:\"en\";a:1:{i:0;a:13:{s:3:\"fid\";s:2:\"11\";s:3:\"uid\";s:1:\"1\";s:8:\"filename\";s:18:\"Mooring L 2014.png\";s:3:\"uri\";s:29:\"public://Mooring L 2014_0.png\";s:8:\"filemime\";s:9:\"image/png\";s:8:\"filesize\";s:5:\"96653\";s:6:\"status\";s:1:\"1\";s:9:\"timestamp\";s:10:\"1412948676\";s:11:\"rdf_mapping\";a:0:{}s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:5:\"width\";s:3:\"720\";s:6:\"height\";s:3:\"960\";}}}s:11:\"title_field\";a:1:{s:2:\"en\";a:1:{i:0;a:3:{s:5:\"value\";s:9:\"Mooring L\";s:6:\"format\";N;s:10:\"safe_value\";s:9:\"Mooring L\";}}}}',0,1539007882,1),('field:node:23','a:3:{s:4:\"body\";a:0:{}s:11:\"field_photo\";a:1:{s:2:\"en\";a:1:{i:0;a:13:{s:3:\"fid\";s:2:\"12\";s:3:\"uid\";s:1:\"1\";s:8:\"filename\";s:18:\"Mooring G 2014.png\";s:3:\"uri\";s:27:\"public://Mooring G 2014.png\";s:8:\"filemime\";s:9:\"image/png\";s:8:\"filesize\";s:5:\"82803\";s:6:\"status\";s:1:\"1\";s:9:\"timestamp\";s:10:\"1412949488\";s:11:\"rdf_mapping\";a:0:{}s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:5:\"width\";s:3:\"720\";s:6:\"height\";s:3:\"960\";}}}s:11:\"title_field\";a:1:{s:2:\"en\";a:1:{i:0;a:3:{s:5:\"value\";s:9:\"Mooring G\";s:6:\"format\";N;s:10:\"safe_value\";s:9:\"Mooring G\";}}}}',0,1539007891,1),('field:node:24','a:3:{s:4:\"body\";a:0:{}s:11:\"field_photo\";a:1:{s:2:\"en\";a:1:{i:0;a:13:{s:3:\"fid\";s:2:\"15\";s:3:\"uid\";s:1:\"1\";s:8:\"filename\";s:18:\"Mooring_D_2014.png\";s:3:\"uri\";s:27:\"public://Mooring_D_2014.png\";s:8:\"filemime\";s:9:\"image/png\";s:8:\"filesize\";s:6:\"352066\";s:6:\"status\";s:1:\"1\";s:9:\"timestamp\";s:10:\"1413227395\";s:11:\"rdf_mapping\";a:0:{}s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:5:\"width\";s:4:\"1691\";s:6:\"height\";s:4:\"1127\";}}}s:11:\"title_field\";a:1:{s:2:\"en\";a:1:{i:0;a:3:{s:5:\"value\";s:9:\"Mooring D\";s:6:\"format\";N;s:10:\"safe_value\";s:9:\"Mooring D\";}}}}',0,1539007909,1),('field:node:26','a:3:{s:4:\"body\";a:0:{}s:25:\"field_photo_moorings_2012\";a:1:{s:2:\"en\";a:1:{i:0;a:13:{s:3:\"fid\";s:2:\"34\";s:3:\"uid\";s:1:\"1\";s:8:\"filename\";s:18:\"Mooring_L_2012.png\";s:3:\"uri\";s:29:\"public://Mooring_L_2012_0.png\";s:8:\"filemime\";s:9:\"image/png\";s:8:\"filesize\";s:6:\"265613\";s:6:\"status\";s:1:\"1\";s:9:\"timestamp\";s:10:\"1415042521\";s:11:\"rdf_mapping\";a:0:{}s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:5:\"width\";s:3:\"720\";s:6:\"height\";s:3:\"960\";}}}s:11:\"title_field\";a:1:{s:2:\"en\";a:1:{i:0;a:3:{s:5:\"value\";s:9:\"Mooring L\";s:6:\"format\";N;s:10:\"safe_value\";s:9:\"Mooring L\";}}}}',0,1538830894,1),('field:node:28','a:2:{s:4:\"body\";a:1:{s:2:\"en\";a:1:{i:0;a:5:{s:5:\"value\";s:2171:\"<h1 align=\"center\">Moorings 2014-2016 (Deployed 2014)</h1>\r\n<table align=\"center\">\r\n	<tbody>\r\n<tr>			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/22\" target=\"_blank\">Mooring L</a></td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/23\" target=\"_blank\">Mooring G</a></td>\r\n\r\n		</tr>\r\n<tr>			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/24\" target=\"_blank\">Mooring D</a></td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/21\" target=\"_blank\">Mooring B</a></td>\r\n\r\n		</tr>\r\n\r\n	</tbody>\r\n</table>\r\n<h1 align=\"center\">Moorings 2012-2014 (Deployed 2012)</h1>\r\n<table align=\"center\">\r\n	<tbody>\r\n<tr>			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/26\" target=\"_blank\">Mooring L</a></td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/36\" target=\"_blank\">Mooring G</a></td>\r\n\r\n		</tr>\r\n<tr>			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/35\" target=\"_blank\">Mooring D</a></td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/34\" target=\"_blank\">Mooring B</a></td>\r\n\r\n		</tr>\r\n\r\n	</tbody>\r\n</table>\r\n<h1 align=\"center\">Moorings 2010-2012 (Deployed 2010)</h1>\r\n<table align=\"center\">\r\n	<tbody>\r\n<tr>			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/115\" target=\"_blank\">Mooring L</a></td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/117\" target=\"_blank\">Mooring G</a></td>\r\n\r\n		</tr>\r\n<tr>			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/118\" target=\"_blank\">Mooring D</a></td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/116\" target=\"_blank\">Mooring B</a></td>\r\n\r\n		</tr>\r\n\r\n	</tbody>\r\n</table>\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:2050:\"<h1 align=\"center\">Moorings 2014-2016 (Deployed 2014)</h1>\n<table align=\"center\"><tbody><tr><td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/22\" target=\"_blank\">Mooring L</a></td>\n<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/23\" target=\"_blank\">Mooring G</a></td>\n</tr><tr><td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/24\" target=\"_blank\">Mooring D</a></td>\n<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/21\" target=\"_blank\">Mooring B</a></td>\n</tr></tbody></table><h1 align=\"center\">Moorings 2012-2014 (Deployed 2012)</h1>\n<table align=\"center\"><tbody><tr><td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/26\" target=\"_blank\">Mooring L</a></td>\n<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/36\" target=\"_blank\">Mooring G</a></td>\n</tr><tr><td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/35\" target=\"_blank\">Mooring D</a></td>\n<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/34\" target=\"_blank\">Mooring B</a></td>\n</tr></tbody></table><h1 align=\"center\">Moorings 2010-2012 (Deployed 2010)</h1>\n<table align=\"center\"><tbody><tr><td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/115\" target=\"_blank\">Mooring L</a></td>\n<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/117\" target=\"_blank\">Mooring G</a></td>\n</tr><tr><td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/118\" target=\"_blank\">Mooring D</a></td>\n<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/116\" target=\"_blank\">Mooring B</a></td>\n</tr></tbody></table>\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:2:\"en\";a:1:{i:0;a:3:{s:5:\"value\";s:15:\"Mooring details\";s:6:\"format\";N;s:10:\"safe_value\";s:15:\"Mooring details\";}}}}',0,1539006854,1),('field:node:29','a:2:{s:4:\"body\";a:0:{}s:11:\"title_field\";a:1:{s:2:\"en\";a:1:{i:0;a:3:{s:5:\"value\";s:6:\"Photos\";s:6:\"format\";N;s:10:\"safe_value\";s:6:\"Photos\";}}}}',0,1538783477,1),('field:node:3','a:2:{s:4:\"body\";a:1:{s:2:\"en\";a:1:{i:0;a:5:{s:5:\"value\";s:1550:\"<p>Le attività vengono svolte in collaborazione con:</p>\r\n\r\n<div id=\"logoISMAR\">\r\n    <div>\r\n          <img src=\"/sites/all/themes/multipurpose/images/logoISMAR.jpg\" style=\"float: left;\" width=\"100\" border=\"none\"/>\r\n    <div\r\n    <div style=\"padding-top: 25px;\">\r\n         <a href=\"http://www.ismar.cnr.it\" target=\"_blank\">Consiglio Nazionale delle Ricerche - ISMAR Ancona</a>\r\n        <br>\r\n       <a href=\"http://www.ismar.cnr.it\" target=\"_blank\">Consiglio Nazionale delle Ricerche - ISMAR Bologna</a>\r\n    </div>\r\n</div>\r\n<br>\r\n<div id=\"logoDistav\">\r\n    <div>\r\n        <img src=\"/sites/all/themes/multipurpose/images/logoDistavGenova.jpg\" style=\"float: left;\"  width=\"150\" border=\"none\"/>\r\n    </div>\r\n    <div style=\"padding-top: 25px;\">\r\n        <a href=\"http://www.distav.unige.it\" target=\"_blank\">Università degli Studi di Genova - DiSTAV</a>\r\n    </div>\r\n</div>\r\n<br>\r\n<div id=\"logoUnivCapo\">\r\n    <div>\r\n        <img src=\"/sites/all/themes/multipurpose/images/UCT_logocircless.gif\" style=\"float: left;\"  width=\"100\" border=\"none\"/>\r\n    </div>\r\n    <div style=\"padding-top: 50px;\">\r\n        <a href=\"http://www.uct.ac.za/\" target=\"_blank\">Università di Città del Capo</a>\r\n    </div>\r\n</div>\r\n<br>\r\n<br>\r\n<div id=\"logoSanap\">\r\n    <div>\r\n        <img src=\"/sites/all/themes/multipurpose/images/sanap.gif\" style=\"float: left;\"  width=\"100\" border=\"none\"/>\r\n    </div>\r\n    <div style=\"padding-top: 70px;\">\r\n        <a href=\"http://www.sanap.ac.za/\" target=\"_blank\">South African National Antarctic Programme - SANAP</a>\r\n  </div>\r\n</div>\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:1508:\"<p>Le attività vengono svolte in collaborazione con:</p>\n<div id=\"logoISMAR\">\n<div>\n          <img src=\"/sites/all/themes/multipurpose/images/logoISMAR.jpg\" style=\"float: left;\" width=\"100\" border=\"none\" /><div></div>\n    <div style=\"padding-top: 25px;\">\n         <a href=\"http://www.ismar.cnr.it\" target=\"_blank\">Consiglio Nazionale delle Ricerche - ISMAR Ancona</a><br /><br /><br /><a href=\"http://www.ismar.cnr.it\" target=\"_blank\">Consiglio Nazionale delle Ricerche - ISMAR Bologna</a>\n    </div>\n</div>\n<p><br /></p>\n<div id=\"logoDistav\">\n<div>\n        <img src=\"/sites/all/themes/multipurpose/images/logoDistavGenova.jpg\" style=\"float: left;\" width=\"150\" border=\"none\" /></div>\n<div style=\"padding-top: 25px;\">\n        <a href=\"http://www.distav.unige.it\" target=\"_blank\">Università degli Studi di Genova - DiSTAV</a>\n    </div>\n</div>\n<p><br /></p>\n<div id=\"logoUnivCapo\">\n<div>\n        <img src=\"/sites/all/themes/multipurpose/images/UCT_logocircless.gif\" style=\"float: left;\" width=\"100\" border=\"none\" /></div>\n<div style=\"padding-top: 50px;\">\n        <a href=\"http://www.uct.ac.za/\" target=\"_blank\">Università di Città del Capo</a>\n    </div>\n</div>\n<p><br /><br /><br /></p>\n<div id=\"logoSanap\">\n<div>\n        <img src=\"/sites/all/themes/multipurpose/images/sanap.gif\" style=\"float: left;\" width=\"100\" border=\"none\" /></div>\n<div style=\"padding-top: 70px;\">\n        <a href=\"http://www.sanap.ac.za/\" target=\"_blank\">South African National Antarctic Programme - SANAP</a>\n  </div>\n</div>\n</div>\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:2:\"en\";a:1:{i:0;a:3:{s:5:\"value\";s:12:\"Cooperations\";s:6:\"format\";N;s:10:\"safe_value\";s:12:\"Cooperations\";}}}}',0,1539006152,1),('field:node:30','a:2:{s:4:\"body\";a:1:{s:2:\"en\";a:1:{i:0;a:5:{s:5:\"value\";s:16271:\"<div><img alt=\"\" src=\"/sites/default/files/xbt_v2.png\" style=\"height:600px; width:610px;\" /></div>\r\n</br>\r\n<p align=\"center\"> <strong>XBT REPEATED OBSERVATION PROGRAMME </strong>\r\n<p align=\"justify\">\r\nSince 1994 The PNRA (Italian National Antarctic Research Program) funded several research programmes focused on the study of southern Ocean thermal properties across the Antarctic Circumpolar Current.\r\nThese project and their evolution represent today one of the Italian contribution to the Southern Ocean Observing System (SOOS).\r\nItalian monitoring of upper layer temperature characteristics of the SO started in the framework of the CLIMA (Climatic Long-term Interactions for the Mass Balance in Antarctica) project and lasted for about 15 years (1994-2017), white lines represent the mean position of ACC fronts in the area.\r\nIn more recent years monitoring activities have been developed in the framework of the SOCHiC (Southern Ocean observing CHokepoints: Italian Contribution), and MORSea (Marine Observatory in the Ross Sea) projects.\r\nIn situ eXpendable BathyTermograph (XBT) observations (see following paragraph for details), combined with continuous surface layer monitoring from ship, Argo temperature-salinity profiles and with satellite products, are used along the repeated transects to study the link between local wind forcing mechanisms and the long term variability and the dynamics of the ACC fronts south of South Africa, New Zealand and in the Drake Passage.\r\nThese projects have led to build various partnership between the University of Naples “Parthenope” and international research institutions such as the South Africans research centres involved in the SAMOC (South Atlantic’s branch of the Meridional Overturning Circulation) project and the Argentines Institution involved in the CANOPO (the Role of the Atlantic Sector of the Southern Ocean in CO2 Sequestration) project.\r\nMoreover the Italian research activities have been carried on using various foreign facilities and research vessels (i.e.: Irizar, Palmer, Agulhas, Agulhas II, Araon)\r\n</p>\r\n<p><a href=\"http://morsea.uniparthenope.it/?q=node/94\" target=\"_blank\">INTERNATIONAL BACKGROUND</a></p>\r\n<p><a href=\"http://morsea.uniparthenope.it/?q=node/95\" target=\"_blank\">INSTRUMENTATION</a></p>\r\n<p><a href=\"http://morsea.uniparthenope.it/?q=node/15\" target=\"_blank\">PUBBLICATIONS</a></p>\r\n\r\n<div>\r\n<table align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td align=\"center\"><strong>Austral Summer</strong></td>\r\n<td align=\"center\"><strong>South Atlantic</strong></td>\r\n<td align=\"center\"><strong>South Pacific</strong></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>1994/1995</strong></td>\r\n<td> </td>\r\n<td align=\"center\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>1995/1996</strong></td>\r\n<td> </td>\r\n<td align=\"center\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>1996/1997</strong></td>\r\n<td> </td>\r\n<td align=\"center\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>1997/1998</strong></td>\r\n<td> </td>\r\n<td align=\"center\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>1998/1999</strong></td>\r\n<td> </td>\r\n<td align=\"center\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>1999/2000</strong></td>\r\n<td> </td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/87\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>2000/2001</strong></td>\r\n<td> </td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/87\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>2001/2001</strong></td>\r\n<td> </td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/87\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>2002/2003</strong></td>\r\n<td> </td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/87\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>2003/2004</strong></td>\r\n<td> </td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/87\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>2004/2005</strong></td>\r\n<td> </td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/87\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>2006/2007</strong></td>\r\n<td> </td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/87\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>2007/2008</strong></td>\r\n<td> </td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/87\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>2009/2010</strong></td>\r\n<td> </td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/87\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>2011/2012</strong></td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/89\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/88\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>2012/2013</strong></td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/91\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/90\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>2013/2014</strong></td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/92\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n<td> </td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>2014/2015</strong></td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/93\" target=\"_blank\"><img href=\" \" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n<td> </td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>2015/2016</strong></td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/124\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/124\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></p></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>2016/2017</strong></td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/129\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/129\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n<p align=\"justify\">\r\nResearch activities along the South Africa – Antarctica have been possible thanks to the cooperation with the university of Cape Town (UCT) and the Council for Scientific and Industrial Research (CSIR). During each cruise an Italian scientist has been  hosted onboard of the R/Vs Agulhas or Agulahs II.\r\nCA 09-10	Agulhas	Dr. Yuri Cotroneo\r\nCA 10-11	Agulhas	Dr. Pasquale Castagno\r\nCA11-12	Agulhas	Dr. Yuri Cotroneo – Co-chief scientist\r\nCA12-13	Agulhas II	Dr. Giuseppe Aulicino\r\n</p>\r\n<p align=\"justify\">\r\nTo get access to XBT data please contact:\r\n<p><em>Prof. Giancarlo Spezie (P.I.)&nbsp;- &nbsp;giancarlo.spezie@uniparthenope.it</em></p>\r\n<p><em>Prof. Giorgio Budillon - giorgio.budillon@uniparthenope.it</em></p>\r\n</p>\r\n<p align=\"justify\">\r\nTo get access to SANAE XBT data please contact:\r\n<p><em>Prof. Isabelle Ansorge&nbsp;- &nbsp;isabelle.ansorge@utc.ac.za</em></p>\r\n</p>\r\n<p align=\"justify\">\r\nXBT data are being progressively added to the National Centers for Environmental Informations database of the NOAA (https://www.ncei.noaa.gov/).\r\n</p>\r\n\r\n<div>\r\n<table>\r\n<tr>\r\n<td align=\"center\"><strong>id</strong></td>\r\n<td align=\"center\"><strong>Title</strong></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">167834</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/167834\">Water temperature from XBT taken from research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 2012-01-13 to 2012-01-19 (NCEI Accession 0167834)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">167835</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/167835\">Water temperature data from XBT taken from research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 2010-01-25 to 2010-01-29 (NCEI Accession 0167835)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">170608</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/170608\">Water temperature data from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 1994-11-03 to 1995-01-01 (NCEI Accession 0170608)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">170765</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/170765\">Water temperature data from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 1995-01-06 to 1995-03-02 (NCEI Accession 0170765)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">171481</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/171481\">Water temperature from XBT taken from research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 1996-01-07 to 1996-02-18 (NCEI Accession 0171481)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">172042</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/172042\">Water temperature from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 1997-01-26 to 1997-02-19 (NCEI Accession 0172042)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">172859</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/172859\">Water temperature data from XBT collected from research vessel Italica in Southern Ocean and Southwest Pacific Ocean from 1997-11-23 to 1998-03-06 (NCEI Accession 0172859)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">173211</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/173211\">Water temperature from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 1999-01-05 to 1999-01-11 (NCEI Accession 0173211)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">173212</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/173212\">Water temperature from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 2000-01-07 to 2000-02-18 (NCEI Accession 0173212)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">173213</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/173213\">Water temperature from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 2001-01-06 to 2001-02-26 (NCEI Accession 0173213)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">173214</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/173214\">Water temperature from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 2001-12-24 to 2001-12-31 (NCEI Accession 0173214)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">173328</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/173328\">Water temperature from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 2003-12-24 to 2003-12-28 (NCEI Accession 0173328)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">173338</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/173338\">Water temperature from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 2003-01-06 to 2003-01-11 (NCEI Accession 0173338)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">173533</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/173533\">Water temperature from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 2005-01-01 to 2005-01-06 (NCEI Accession 0173533)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">174709</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/174709\">Water temperature from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 2007-02-05 to 2007-02-10 (NCEI Accession 0174709)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">174711</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/174711\">Water temperature from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 2008-01-16 to 2008-01-21 (NCEI Accession 0174711)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">174794</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/174794\">Water temperature from XBT taken from the research vessel Araon in the Southern Ocean and Southwest Pacific Ocean from 2013-01-24 to 2013-02-06 (NCEI Accession 0174794)</a></td>\r\n</tr>\r\n</table>\r\nXBT data are being progressively added to the National Centers for Environmental Informations database of the NOAA (https://www.ncei.noaa.gov/).\r\nToday 17 datasets/cruises are available and each of them is associated to a DOI.\r\nSee for example data belonging to the 2011/2012 cruise at the link https://data.nodc.noaa.gov/cgi-bin/iso?id=gov.noaa.nodc:0167834\r\n</div>\r\n\r\n\r\n\r\n<p align=\"center\"><strong>LINKS</strong></p> \r\n<p align=\"justify\">http://www.sippican.com</p>\r\n<p align=\"justify\">http://www.soos.aq</p>\r\n<p align=\"justify\">http://www.aoml.noaa.gov/phod/hdenxbt/index.php</p>\r\n<p align=\"justify\">http://en.wikipedia.org/wiki/S._A._Agulhas</p>\r\n<p align=\"justify\">http://en.wikipedia.org/wiki/S._A._Agulhas_II</p>\r\n<p align=\"justify\">http://en.wikipedia.org/wiki/RV_Araon</p>\r\n<p align=\"justify\">https://www.fleetmon.com/en/vessels/Italica_71874</p>\r\n<p align=\"justify\">http://en.wikipedia.org/wiki/Nathaniel_B._Palmer_%28icebreaker%29</p>\r\n<p align=\"justify\">http://it.wikipedia.org/wiki/ARA_Almirante_Irizar</p>\r\n\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:16794:\"<div><img alt=\"\" src=\"/sites/default/files/xbt_v2.png\" style=\"height:600px; width:610px;\" /></div>\n<p></p>\n<p align=\"center\"> <strong>XBT REPEATED OBSERVATION PROGRAMME </strong></p>\n<p align=\"justify\">\nSince 1994 The PNRA (Italian National Antarctic Research Program) funded several research programmes focused on the study of southern Ocean thermal properties across the Antarctic Circumpolar Current.<br />\nThese project and their evolution represent today one of the Italian contribution to the Southern Ocean Observing System (SOOS).<br />\nItalian monitoring of upper layer temperature characteristics of the SO started in the framework of the CLIMA (Climatic Long-term Interactions for the Mass Balance in Antarctica) project and lasted for about 15 years (1994-2017), white lines represent the mean position of ACC fronts in the area.<br />\nIn more recent years monitoring activities have been developed in the framework of the SOCHiC (Southern Ocean observing CHokepoints: Italian Contribution), and MORSea (Marine Observatory in the Ross Sea) projects.<br />\nIn situ eXpendable BathyTermograph (XBT) observations (see following paragraph for details), combined with continuous surface layer monitoring from ship, Argo temperature-salinity profiles and with satellite products, are used along the repeated transects to study the link between local wind forcing mechanisms and the long term variability and the dynamics of the ACC fronts south of South Africa, New Zealand and in the Drake Passage.<br />\nThese projects have led to build various partnership between the University of Naples “Parthenope” and international research institutions such as the South Africans research centres involved in the SAMOC (South Atlantic’s branch of the Meridional Overturning Circulation) project and the Argentines Institution involved in the CANOPO (the Role of the Atlantic Sector of the Southern Ocean in CO2 Sequestration) project.<br />\nMoreover the Italian research activities have been carried on using various foreign facilities and research vessels (i.e.: Irizar, Palmer, Agulhas, Agulhas II, Araon)\n</p>\n<p><a href=\"http://morsea.uniparthenope.it/?q=node/94\" target=\"_blank\">INTERNATIONAL BACKGROUND</a></p>\n<p><a href=\"http://morsea.uniparthenope.it/?q=node/95\" target=\"_blank\">INSTRUMENTATION</a></p>\n<p><a href=\"http://morsea.uniparthenope.it/?q=node/15\" target=\"_blank\">PUBBLICATIONS</a></p>\n<div>\n<table align=\"center\"><tbody><tr><td align=\"center\"><strong>Austral Summer</strong></td>\n<td align=\"center\"><strong>South Atlantic</strong></td>\n<td align=\"center\"><strong>South Pacific</strong></td>\n</tr><tr><td align=\"center\"><strong>1994/1995</strong></td>\n<td> </td>\n<td align=\"center\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\" /></td>\n</tr><tr><td align=\"center\"><strong>1995/1996</strong></td>\n<td> </td>\n<td align=\"center\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\" /></td>\n</tr><tr><td align=\"center\"><strong>1996/1997</strong></td>\n<td> </td>\n<td align=\"center\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\" /></td>\n</tr><tr><td align=\"center\"><strong>1997/1998</strong></td>\n<td> </td>\n<td align=\"center\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\" /></td>\n</tr><tr><td align=\"center\"><strong>1998/1999</strong></td>\n<td> </td>\n<td align=\"center\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\" /></td>\n</tr><tr><td align=\"center\"><strong>1999/2000</strong></td>\n<td> </td>\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/87\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\" /></a></td>\n</tr><tr><td align=\"center\"><strong>2000/2001</strong></td>\n<td> </td>\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/87\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\" /></a></td>\n</tr><tr><td align=\"center\"><strong>2001/2001</strong></td>\n<td> </td>\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/87\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\" /></a></td>\n</tr><tr><td align=\"center\"><strong>2002/2003</strong></td>\n<td> </td>\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/87\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\" /></a></td>\n</tr><tr><td align=\"center\"><strong>2003/2004</strong></td>\n<td> </td>\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/87\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\" /></a></td>\n</tr><tr><td align=\"center\"><strong>2004/2005</strong></td>\n<td> </td>\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/87\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\" /></a></td>\n</tr><tr><td align=\"center\"><strong>2006/2007</strong></td>\n<td> </td>\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/87\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\" /></a></td>\n</tr><tr><td align=\"center\"><strong>2007/2008</strong></td>\n<td> </td>\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/87\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\" /></a></td>\n</tr><tr><td align=\"center\"><strong>2009/2010</strong></td>\n<td> </td>\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/87\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\" /></a></td>\n</tr><tr><td align=\"center\"><strong>2011/2012</strong></td>\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/89\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\" /></a></td>\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/88\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\" /></a></td>\n</tr><tr><td align=\"center\"><strong>2012/2013</strong></td>\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/91\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\" /></a></td>\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/90\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\" /></a></td>\n</tr><tr><td align=\"center\"><strong>2013/2014</strong></td>\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/92\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\" /></a></td>\n<td> </td>\n</tr><tr><td align=\"center\"><strong>2014/2015</strong></td>\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/93\" target=\"_blank\"><img href=\" \" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\" /></a></td>\n<td> </td>\n</tr><tr><td align=\"center\"><strong>2015/2016</strong></td>\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/124\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\" /></a></td>\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/124\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\" /></a></td>\n</tr><tr><td align=\"center\"><strong>2016/2017</strong></td>\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/129\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\" /></a></td>\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/129\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\" /></a></td>\n</tr></tbody></table><p align=\"justify\">\nResearch activities along the South Africa – Antarctica have been possible thanks to the cooperation with the university of Cape Town (UCT) and the Council for Scientific and Industrial Research (CSIR). During each cruise an Italian scientist has been  hosted onboard of the R/Vs Agulhas or Agulahs II.<br />\nCA 09-10	Agulhas	Dr. Yuri Cotroneo<br />\nCA 10-11	Agulhas	Dr. Pasquale Castagno<br />\nCA11-12	Agulhas	Dr. Yuri Cotroneo – Co-chief scientist<br />\nCA12-13	Agulhas II	Dr. Giuseppe Aulicino\n</p>\n<p align=\"justify\">\nTo get access to XBT data please contact:</p>\n<p><em>Prof. Giancarlo Spezie (P.I.) -  <a href=\"mailto:giancarlo.spezie@uniparthenope.it\">giancarlo.spezie@uniparthenope.it</a></em></p>\n<p><em>Prof. Giorgio Budillon - <a href=\"mailto:giorgio.budillon@uniparthenope.it\">giorgio.budillon@uniparthenope.it</a></em></p>\n\n<p align=\"justify\">\nTo get access to SANAE XBT data please contact:</p>\n<p><em>Prof. Isabelle Ansorge -  <a href=\"mailto:isabelle.ansorge@utc.ac.za\">isabelle.ansorge@utc.ac.za</a></em></p>\n\n<p align=\"justify\">\nXBT data are being progressively added to the National Centers for Environmental Informations database of the NOAA (<a href=\"https://www.ncei.noaa.gov/\">https://www.ncei.noaa.gov/</a>).\n</p>\n<div>\n<table><tr><td align=\"center\"><strong>id</strong></td>\n<td align=\"center\"><strong>Title</strong></td>\n</tr><tr><td align=\"center\">167834</td>\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/167834\">Water temperature from XBT taken from research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 2012-01-13 to 2012-01-19 (NCEI Accession 0167834)</a></td>\n</tr><tr><td align=\"center\">167835</td>\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/167835\">Water temperature data from XBT taken from research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 2010-01-25 to 2010-01-29 (NCEI Accession 0167835)</a></td>\n</tr><tr><td align=\"center\">170608</td>\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/170608\">Water temperature data from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 1994-11-03 to 1995-01-01 (NCEI Accession 0170608)</a></td>\n</tr><tr><td align=\"center\">170765</td>\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/170765\">Water temperature data from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 1995-01-06 to 1995-03-02 (NCEI Accession 0170765)</a></td>\n</tr><tr><td align=\"center\">171481</td>\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/171481\">Water temperature from XBT taken from research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 1996-01-07 to 1996-02-18 (NCEI Accession 0171481)</a></td>\n</tr><tr><td align=\"center\">172042</td>\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/172042\">Water temperature from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 1997-01-26 to 1997-02-19 (NCEI Accession 0172042)</a></td>\n</tr><tr><td align=\"center\">172859</td>\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/172859\">Water temperature data from XBT collected from research vessel Italica in Southern Ocean and Southwest Pacific Ocean from 1997-11-23 to 1998-03-06 (NCEI Accession 0172859)</a></td>\n</tr><tr><td align=\"center\">173211</td>\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/173211\">Water temperature from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 1999-01-05 to 1999-01-11 (NCEI Accession 0173211)</a></td>\n</tr><tr><td align=\"center\">173212</td>\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/173212\">Water temperature from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 2000-01-07 to 2000-02-18 (NCEI Accession 0173212)</a></td>\n</tr><tr><td align=\"center\">173213</td>\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/173213\">Water temperature from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 2001-01-06 to 2001-02-26 (NCEI Accession 0173213)</a></td>\n</tr><tr><td align=\"center\">173214</td>\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/173214\">Water temperature from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 2001-12-24 to 2001-12-31 (NCEI Accession 0173214)</a></td>\n</tr><tr><td align=\"center\">173328</td>\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/173328\">Water temperature from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 2003-12-24 to 2003-12-28 (NCEI Accession 0173328)</a></td>\n</tr><tr><td align=\"center\">173338</td>\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/173338\">Water temperature from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 2003-01-06 to 2003-01-11 (NCEI Accession 0173338)</a></td>\n</tr><tr><td align=\"center\">173533</td>\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/173533\">Water temperature from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 2005-01-01 to 2005-01-06 (NCEI Accession 0173533)</a></td>\n</tr><tr><td align=\"center\">174709</td>\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/174709\">Water temperature from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 2007-02-05 to 2007-02-10 (NCEI Accession 0174709)</a></td>\n</tr><tr><td align=\"center\">174711</td>\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/174711\">Water temperature from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 2008-01-16 to 2008-01-21 (NCEI Accession 0174711)</a></td>\n</tr><tr><td align=\"center\">174794</td>\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/174794\">Water temperature from XBT taken from the research vessel Araon in the Southern Ocean and Southwest Pacific Ocean from 2013-01-24 to 2013-02-06 (NCEI Accession 0174794)</a></td>\n</tr></table><p>XBT data are being progressively added to the National Centers for Environmental Informations database of the NOAA (<a href=\"https://www.ncei.noaa.gov/\">https://www.ncei.noaa.gov/</a>).<br />\nToday 17 datasets/cruises are available and each of them is associated to a DOI.<br />\nSee for example data belonging to the 2011/2012 cruise at the link <a href=\"https://data.nodc.noaa.gov/cgi-bin/iso?id=gov.noaa.nodc:0167834\">https://data.nodc.noaa.gov/cgi-bin/iso?id=gov.noaa.nodc:0167834</a>\n</p></div>\n<p align=\"center\"><strong>LINKS</strong></p>\n<p align=\"justify\"><a href=\"http://www.sippican.com\">http://www.sippican.com</a></p>\n<p align=\"justify\"><a href=\"http://www.soos.aq\">http://www.soos.aq</a></p>\n<p align=\"justify\"><a href=\"http://www.aoml.noaa.gov/phod/hdenxbt/index.php\">http://www.aoml.noaa.gov/phod/hdenxbt/index.php</a></p>\n<p align=\"justify\"><a href=\"http://en.wikipedia.org/wiki/S._A._Agulhas\">http://en.wikipedia.org/wiki/S._A._Agulhas</a></p>\n<p align=\"justify\"><a href=\"http://en.wikipedia.org/wiki/S._A._Agulhas_II\">http://en.wikipedia.org/wiki/S._A._Agulhas_II</a></p>\n<p align=\"justify\"><a href=\"http://en.wikipedia.org/wiki/RV_Araon\">http://en.wikipedia.org/wiki/RV_Araon</a></p>\n<p align=\"justify\"><a href=\"https://www.fleetmon.com/en/vessels/Italica_71874\">https://www.fleetmon.com/en/vessels/Italica_71874</a></p>\n<p align=\"justify\"><a href=\"http://en.wikipedia.org/wiki/Nathaniel_B._Palmer_%28icebreaker%29\">http://en.wikipedia.org/wiki/Nathaniel_B._Palmer_%28icebreaker%29</a></p>\n<p align=\"justify\"><a href=\"http://it.wikipedia.org/wiki/ARA_Almirante_Irizar\">http://it.wikipedia.org/wiki/ARA_Almirante_Irizar</a></p>\n</div>\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:2:\"en\";a:1:{i:0;a:3:{s:5:\"value\";s:22:\"Ancillary Activities A\";s:6:\"format\";N;s:10:\"safe_value\";s:22:\"Ancillary Activities A\";}}}}',0,1539006865,1),('field:node:31','a:2:{s:4:\"body\";a:0:{}s:11:\"title_field\";a:1:{s:3:\"und\";a:1:{i:0;a:3:{s:5:\"value\";s:22:\"Ancillary Activities B\";s:6:\"format\";N;s:10:\"safe_value\";s:22:\"Ancillary Activities B\";}}}}',0,1539006874,1),('field:node:32','a:2:{s:4:\"body\";a:1:{s:2:\"en\";a:1:{i:0;a:5:{s:5:\"value\";s:10580:\"<h1 align= \"center\"><strong>FLOAT CONTRIBUTION IN THE SOUTHERN OCEAN OBSERVING SYSTEM</strong></h1>\r\n<div align=\"center\"><img alt=\"\" src=\"/sites/default/files/drifter_alive_italy_ANTA_traj_M.png\"/></div>\r\n<p align=\"center\"><strong>Position  of drifters deployed during last campaign. Actual position available at http://nettuno.ogs.trieste.it/jungo/argoitaly/floats.html</b></strong>\r\n<div align=\"center\"><img alt=\"\" src=\"/sites/default/files/float_italy_antartica_traj.png\"/></div>\r\n<p align=\"center\"><strong>Position  of floats deployed during last campaign. Actual position available at http://nettuno.ogs.trieste.it/jungo/argoitaly/drifters.html</b></strong>\r\n<p align=\"justify\">Research programs over the past 15 years have demonstrated that sustained observations of the SO (Southern Ocean) are feasible. For example, repeated hydrographic sections have been used to quantify the evolving ocean inventory of heat and carbon, to demonstrate that changes are occurring throughout the full depth of the SO, and to provide a platform for a wide suite of interdisciplinary observations. Satellites are providing circumpolar, year-round coverage of physical and biological variables and sea ice properties. Moorings are providing time-series information on velocities and water properties in critical regions. Bottom pressure recorders (often enhanced with inverted echo sounders) are routinely monitoring flows of the major current systems at key choke points like Drake Passage, whilst conventional tide gauges at coastal locations are useful in this context and also for a range of other applications, including long-term sea level variability and change studies.</p>\r\n<p align=\"justify\">Classical oceanographic data collected by ships (CTD casts, along track measurements, XBT/XCTD casts, etc…) in the SO are deeply affected by temporal and spatial limitations. Ice cover and sea-weather conditions, limit the sampling at the summer season and in some geographic areas. The development of autonomous profiling floats now allows broad-scale, year-round measurements of the interior of the SO (to 2 km depth) to be made for the first time. The ocean beneath the sea ice, inaccessible with traditional platforms, is being measured with special polar profiling floats and miniaturized oceanographic sensors attached to marine mammals. Moreover, ocean gliders now offer the possibility of making real-time multi-disciplinary measurements of the upper 1000 m of the water column, and have recently been deployed for the first time around Antarctica. Measurements of biological distributions and processes using net tows, continuous plankton recorders, and acoustics are providing new insights into the coupling of physical, biogeochemical and ecological processes. Autonomous underwater vehicles are exploring the ocean deep beneath ice shelves.</p>\r\n<p align=\"justify\">All of the key science challenges require sustained, broad-scale measurements of the ocean state, measurements that can only be obtained using autonomous platforms such as profiling floats. Basic principles of float functioning is described here (<a href=\"http://morsea.uniparthenope.it/?q=node/108\">Functioning</a>)</p>\r\n<p align=\"justify\">A sustained commitment to maintenance of a profiling float array in the SO is critical. One of the most important research projects dedicated to float implementation and data collection also in the SO is the ARGO (Array for Real-time Geostrophic Oceanography) programme. A short summary of the ARGO programme is offered at this link (<a href=\"http://morsea.uniparthenope.it/?q=node/109\">ARGO</a>)</p>\r\n<p align=\"justify\">ARGO has made a particularly significant contribution to observations of remote areas like the SO. The number of profiles collected from ARGO floats is already higher than the number of profiles collected during the entire history of ship-based oceanography in this region. Floats with oxygen sensors are beginning to be deployed in the SO and we can anticipate that with time the capacity to measure additional variables from floats will increase. The float array needs to extend to seasonally ice-covered seas, through the use of ice-capable floats and acoustic tracking of floats. The first priority is to maintain the ARGO network at the nominal ARGO density (1 float per 3 degree longitude x 3 degree latitude square, or roughly 970 floats south of 40°S). The extension of the system to sample under sea ice is also important, as some of the most important changes are occurring near the ice shelves and within the sea ice zone. Floats capable of deeper profiling would be of particular value in the SO, where significant changes have been observed below 2000 m. Oxygen sensors will provide useful information on ventilation processes and the carbon cycle. Sensors to measure a wider range of biological and chemical parameters (e.g. bio-optics, CO2 system, nutrients) are needed to relate variations in the physical environment to biogeochemistry and ecosystem processes.</p>\r\n<p align=\"justify\">The Italian contribution to float population in the Mediterranean Sea, Black Sea and in the SO is represented by activities developed in the framework of ARGO-ITALY.</p>\r\n<p align=\"justify\">ARGO-ITALY is the Italian component of a worldwide in situ global observing system, based on autonomous profiling floats, surface drifters, gliders and ship-of-opportunity measurements. It is primarily focused on the Italian seas, and the Mediterranean and Black seas, and includes observations of temperature, salinity, currents and biogeochemical/optical properties of seawater. The ARGO-ITALY objective is to provide a significant and sustained Italian contribution to the global ocean monitoring.</p>\r\n<p align=\"justify\">The ARGO-ITALY objective is to provide a significant and sustained Italian contribution to the global ocean monitoring. ARGO-ITALY contributes to international programs such as ARGO and Euro-ARGO (global monitoring of water properties with profiling floats), GDP (Global Drifter Program to measure near-surface temperature and currents), EGO (gliding vehicles to measure water properties) and SOOP (Ship-Of-Opportunity Program to temperature profiles) which have been developed to monitor the entire World Ocean on a long term basis. ARGO-ITALY is a cost-effective long-term monitoring system that is a unique source of information to study the role of the oceans on the climate system. It also provides the data required by operational ocean monitoring systems in order to improve significantly extended forecasts of the atmosphere and oceans.</p>\r\n<p align=\"justify\">ARGO-ITALY contributes to programs of operational oceanography, such as MOON (Mediterranean Operational Oceanography Network) and MyOcean (FP7 European project) and is essential for the production of marine core and downstream services products of GMES (Global Monitoring for Environment and Security). It is also an important component of GEOSS (Global Earth Observation System of Systems). ARGO-ITALY is funded by the Italian Ministry of Instruction, University and Research (MIUR) since 2011.</p>\r\n<p align=\"justify\">ARGO-ITALY activities in the S.O. started in 2013 and are still ongoing.</p>\r\n<p align=\"justify\">The number of total floats released in the S.O. and the amount of floats per year are both increasing. Table 1 shows the number and details of floats per year and a rapid link to cruise details.</p>\r\n<table align=\"center\">\r\n	<tbody>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Year</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; text-align:center; font-weight: bold;\">Number of floats</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Number of drifters</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Cruise Details</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Ship</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">PNRA expedition</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">2013</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">3</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">0</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\"><a href=\"http://morsea.uniparthenope.it/?q=node/110\">report</a></p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">R/V Araon</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\"><a href=\" \">XXVIII</a></p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">2014</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">7</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">0</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\"><a href=\"http://morsea.uniparthenope.it/?q=node/111\">report</a></p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">R/V Italica</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\"><a href=\"http://morsea.uniparthenope.it/?q=node/14\">XXIX</a></p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">2015</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">10</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">10</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\"><a href=\"http://morsea.uniparthenope.it/?q=node/112\">report</a></p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">R/V Araon</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\"><a href=\"http://morsea.uniparthenope.it/?q=node/45\">XXX</a></p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:10055:\"<h1 align=\"center\"><strong>FLOAT CONTRIBUTION IN THE SOUTHERN OCEAN OBSERVING SYSTEM</strong></h1>\n<div align=\"center\"><img alt=\"\" src=\"/sites/default/files/drifter_alive_italy_ANTA_traj_M.png\" /></div>\n<p align=\"center\"><strong>Position  of drifters deployed during last campaign. Actual position available at <a href=\"http://nettuno.ogs.trieste.it/jungo/argoitaly/floats.html\">http://nettuno.ogs.trieste.it/jungo/argoitaly/floats.html</a></strong></p>\n<div align=\"center\"><img alt=\"\" src=\"/sites/default/files/float_italy_antartica_traj.png\" /></div>\n<p align=\"center\"><strong>Position  of floats deployed during last campaign. Actual position available at <a href=\"http://nettuno.ogs.trieste.it/jungo/argoitaly/drifters.html\">http://nettuno.ogs.trieste.it/jungo/argoitaly/drifters.html</a></strong></p>\n<p align=\"justify\">Research programs over the past 15 years have demonstrated that sustained observations of the SO (Southern Ocean) are feasible. For example, repeated hydrographic sections have been used to quantify the evolving ocean inventory of heat and carbon, to demonstrate that changes are occurring throughout the full depth of the SO, and to provide a platform for a wide suite of interdisciplinary observations. Satellites are providing circumpolar, year-round coverage of physical and biological variables and sea ice properties. Moorings are providing time-series information on velocities and water properties in critical regions. Bottom pressure recorders (often enhanced with inverted echo sounders) are routinely monitoring flows of the major current systems at key choke points like Drake Passage, whilst conventional tide gauges at coastal locations are useful in this context and also for a range of other applications, including long-term sea level variability and change studies.</p>\n<p align=\"justify\">Classical oceanographic data collected by ships (CTD casts, along track measurements, XBT/XCTD casts, etc…) in the SO are deeply affected by temporal and spatial limitations. Ice cover and sea-weather conditions, limit the sampling at the summer season and in some geographic areas. The development of autonomous profiling floats now allows broad-scale, year-round measurements of the interior of the SO (to 2 km depth) to be made for the first time. The ocean beneath the sea ice, inaccessible with traditional platforms, is being measured with special polar profiling floats and miniaturized oceanographic sensors attached to marine mammals. Moreover, ocean gliders now offer the possibility of making real-time multi-disciplinary measurements of the upper 1000 m of the water column, and have recently been deployed for the first time around Antarctica. Measurements of biological distributions and processes using net tows, continuous plankton recorders, and acoustics are providing new insights into the coupling of physical, biogeochemical and ecological processes. Autonomous underwater vehicles are exploring the ocean deep beneath ice shelves.</p>\n<p align=\"justify\">All of the key science challenges require sustained, broad-scale measurements of the ocean state, measurements that can only be obtained using autonomous platforms such as profiling floats. Basic principles of float functioning is described here (<a href=\"http://morsea.uniparthenope.it/?q=node/108\">Functioning</a>)</p>\n<p align=\"justify\">A sustained commitment to maintenance of a profiling float array in the SO is critical. One of the most important research projects dedicated to float implementation and data collection also in the SO is the ARGO (Array for Real-time Geostrophic Oceanography) programme. A short summary of the ARGO programme is offered at this link (<a href=\"http://morsea.uniparthenope.it/?q=node/109\">ARGO</a>)</p>\n<p align=\"justify\">ARGO has made a particularly significant contribution to observations of remote areas like the SO. The number of profiles collected from ARGO floats is already higher than the number of profiles collected during the entire history of ship-based oceanography in this region. Floats with oxygen sensors are beginning to be deployed in the SO and we can anticipate that with time the capacity to measure additional variables from floats will increase. The float array needs to extend to seasonally ice-covered seas, through the use of ice-capable floats and acoustic tracking of floats. The first priority is to maintain the ARGO network at the nominal ARGO density (1 float per 3 degree longitude x 3 degree latitude square, or roughly 970 floats south of 40°S). The extension of the system to sample under sea ice is also important, as some of the most important changes are occurring near the ice shelves and within the sea ice zone. Floats capable of deeper profiling would be of particular value in the SO, where significant changes have been observed below 2000 m. Oxygen sensors will provide useful information on ventilation processes and the carbon cycle. Sensors to measure a wider range of biological and chemical parameters (e.g. bio-optics, CO2 system, nutrients) are needed to relate variations in the physical environment to biogeochemistry and ecosystem processes.</p>\n<p align=\"justify\">The Italian contribution to float population in the Mediterranean Sea, Black Sea and in the SO is represented by activities developed in the framework of ARGO-ITALY.</p>\n<p align=\"justify\">ARGO-ITALY is the Italian component of a worldwide in situ global observing system, based on autonomous profiling floats, surface drifters, gliders and ship-of-opportunity measurements. It is primarily focused on the Italian seas, and the Mediterranean and Black seas, and includes observations of temperature, salinity, currents and biogeochemical/optical properties of seawater. The ARGO-ITALY objective is to provide a significant and sustained Italian contribution to the global ocean monitoring.</p>\n<p align=\"justify\">The ARGO-ITALY objective is to provide a significant and sustained Italian contribution to the global ocean monitoring. ARGO-ITALY contributes to international programs such as ARGO and Euro-ARGO (global monitoring of water properties with profiling floats), GDP (Global Drifter Program to measure near-surface temperature and currents), EGO (gliding vehicles to measure water properties) and SOOP (Ship-Of-Opportunity Program to temperature profiles) which have been developed to monitor the entire World Ocean on a long term basis. ARGO-ITALY is a cost-effective long-term monitoring system that is a unique source of information to study the role of the oceans on the climate system. It also provides the data required by operational ocean monitoring systems in order to improve significantly extended forecasts of the atmosphere and oceans.</p>\n<p align=\"justify\">ARGO-ITALY contributes to programs of operational oceanography, such as MOON (Mediterranean Operational Oceanography Network) and MyOcean (FP7 European project) and is essential for the production of marine core and downstream services products of GMES (Global Monitoring for Environment and Security). It is also an important component of GEOSS (Global Earth Observation System of Systems). ARGO-ITALY is funded by the Italian Ministry of Instruction, University and Research (MIUR) since 2011.</p>\n<p align=\"justify\">ARGO-ITALY activities in the S.O. started in 2013 and are still ongoing.</p>\n<p align=\"justify\">The number of total floats released in the S.O. and the amount of floats per year are both increasing. Table 1 shows the number and details of floats per year and a rapid link to cruise details.</p>\n<table align=\"center\"><tbody><tr><td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Year</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center; text-align:center; font-weight: bold;\">Number of floats</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Number of drifters</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Cruise Details</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Ship</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">PNRA expedition</p>\n</td>\n</tr><tr><td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">2013</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">3</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">0</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\"><a href=\"http://morsea.uniparthenope.it/?q=node/110\">report</a></p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">R/V Araon</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\"><a href=\" \">XXVIII</a></p>\n</td>\n</tr><tr><td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">2014</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">7</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">0</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\"><a href=\"http://morsea.uniparthenope.it/?q=node/111\">report</a></p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">R/V Italica</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\"><a href=\"http://morsea.uniparthenope.it/?q=node/14\">XXIX</a></p>\n</td>\n</tr><tr><td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">2015</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">10</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">10</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\"><a href=\"http://morsea.uniparthenope.it/?q=node/112\">report</a></p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\">R/V Araon</p>\n</td>\n<td>\n<p style=\"margin: 0; padding-top: 15px; text-align:center;\"><a href=\"http://morsea.uniparthenope.it/?q=node/45\">XXX</a></p>\n</td>\n</tr></tbody></table>\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:2:\"en\";a:1:{i:0;a:3:{s:5:\"value\";s:22:\"Ancillary Activities C\";s:6:\"format\";N;s:10:\"safe_value\";s:22:\"Ancillary Activities C\";}}}}',0,1538822054,1),('field:node:33','a:2:{s:4:\"body\";a:1:{s:2:\"en\";a:1:{i:0;a:5:{s:5:\"value\";s:1663:\"<div>\r\nProf. Giancarlo Spezie (p.i.)\r\nProf. Giorgio Budillon (co p.i.)\r\n</div>\r\n</br>\r\n<div>\r\n<h2>Research Team</h2>\r\nDr. Stefano Aliani - Consiglio Nazionale delle Ricerche (ISMAR La Spezia)\r\nDr. Giuseppe Aulicino - Università degli Studi di Napoli \"Parthenope\" (DiST)\r\nProf. Giorgio Budillon - Università degli Studi di Napoli \"Parthenope\" (DiST)\r\nDr. Marco Capello – Università degli Studi di Genova (DiSTAV)\r\nDr. Pasquale Castagno - Università degli Studi di Napoli \"Parthenope\" (DiST)\r\nDr. Yuri Cotroneo - Università degli Studi di Napoli \"Parthenope\" (DiST)\r\nDr. Arturo De Alteris - Università degli Studi di Napoli \"Parthenope\" (DiST)\r\nDr. Massimo De Stefano - Università degli Studi di Napoli \"Parthenope\" (DiST)\r\nDr. Diana Di Luccio - Università degli Studi di Napoli \"Parthenope\" (DiST)\r\nDr. Pierpaolo Falco – Università degli Studi di Napoli \"Parthenope\" (DiST)\r\nDr. Giannetta Fusco - Università degli Studi di Napoli \"Parthenope\" (DiST)\r\nDr. Federico Giglio – Consiglio Nazionale delle Ricerche (ISMAR Bologna)\r\nDr. Leonardo Langone – Consiglio Nazionale delle Ricerche (ISMAR Bologna)\r\nDr. Luigi Marziani - Università degli Studi di Napoli \"Parthenope\" (DiST)\r\nDr. Raffaele Montella - Università degli Studi di Napoli \"Parthenope\" (DiST)\r\nDr. Elio Paschini – Consiglio Nazionale delle Ricerche (ISMAR Ancona)\r\nDr. Pierluigi Penna – Consiglio Nazionale delle Ricerche (ISMAR Ancona)\r\nDott.ssa Mariangela Ravaioli - Consiglio Nazionale delle Ricerche (ISMAR Bologna)\r\nProf. Spezie - Università degli Studi di Napoli \"Parthenope\" (DiST)\r\nDr. Giovanni Zambardino - Università degli Studi di Napoli \"Parthenope\" (DiST)\r\n    <div>\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:1774:\"<div>\nProf. Giancarlo Spezie (p.i.)<br />\nProf. Giorgio Budillon (co p.i.)\n</div>\n<p></p>\n<div>\n<h2>Research Team</h2>\n<p>Dr. Stefano Aliani - Consiglio Nazionale delle Ricerche (ISMAR La Spezia)<br />\nDr. Giuseppe Aulicino - Università degli Studi di Napoli \"Parthenope\" (DiST)<br />\nProf. Giorgio Budillon - Università degli Studi di Napoli \"Parthenope\" (DiST)<br />\nDr. Marco Capello – Università degli Studi di Genova (DiSTAV)<br />\nDr. Pasquale Castagno - Università degli Studi di Napoli \"Parthenope\" (DiST)<br />\nDr. Yuri Cotroneo - Università degli Studi di Napoli \"Parthenope\" (DiST)<br />\nDr. Arturo De Alteris - Università degli Studi di Napoli \"Parthenope\" (DiST)<br />\nDr. Massimo De Stefano - Università degli Studi di Napoli \"Parthenope\" (DiST)<br />\nDr. Diana Di Luccio - Università degli Studi di Napoli \"Parthenope\" (DiST)<br />\nDr. Pierpaolo Falco – Università degli Studi di Napoli \"Parthenope\" (DiST)<br />\nDr. Giannetta Fusco - Università degli Studi di Napoli \"Parthenope\" (DiST)<br />\nDr. Federico Giglio – Consiglio Nazionale delle Ricerche (ISMAR Bologna)<br />\nDr. Leonardo Langone – Consiglio Nazionale delle Ricerche (ISMAR Bologna)<br />\nDr. Luigi Marziani - Università degli Studi di Napoli \"Parthenope\" (DiST)<br />\nDr. Raffaele Montella - Università degli Studi di Napoli \"Parthenope\" (DiST)<br />\nDr. Elio Paschini – Consiglio Nazionale delle Ricerche (ISMAR Ancona)<br />\nDr. Pierluigi Penna – Consiglio Nazionale delle Ricerche (ISMAR Ancona)<br />\nDott.ssa Mariangela Ravaioli - Consiglio Nazionale delle Ricerche (ISMAR Bologna)<br />\nProf. Spezie - Università degli Studi di Napoli \"Parthenope\" (DiST)<br />\nDr. Giovanni Zambardino - Università degli Studi di Napoli \"Parthenope\" (DiST)</p>\n<div>\n</div></div>\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:2:\"en\";a:1:{i:0;a:3:{s:5:\"value\";s:6:\"People\";s:6:\"format\";N;s:10:\"safe_value\";s:6:\"People\";}}}}',0,1538751790,1),('field:node:34','a:3:{s:4:\"body\";a:0:{}s:25:\"field_photo_moorings_2012\";a:1:{s:2:\"en\";a:1:{i:0;a:13:{s:3:\"fid\";s:2:\"32\";s:3:\"uid\";s:1:\"1\";s:8:\"filename\";s:18:\"Mooring_B_2012.png\";s:3:\"uri\";s:27:\"public://Mooring_B_2012.png\";s:8:\"filemime\";s:9:\"image/png\";s:8:\"filesize\";s:6:\"337396\";s:6:\"status\";s:1:\"1\";s:9:\"timestamp\";s:10:\"1415042322\";s:11:\"rdf_mapping\";a:0:{}s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:5:\"width\";s:3:\"720\";s:6:\"height\";s:3:\"960\";}}}s:11:\"title_field\";a:1:{s:2:\"en\";a:1:{i:0;a:3:{s:5:\"value\";s:9:\"Mooring B\";s:6:\"format\";N;s:10:\"safe_value\";s:9:\"Mooring B\";}}}}',0,1539007920,1),('field:node:35','a:3:{s:4:\"body\";a:0:{}s:25:\"field_photo_moorings_2012\";a:1:{s:2:\"en\";a:1:{i:0;a:13:{s:3:\"fid\";s:2:\"33\";s:3:\"uid\";s:1:\"1\";s:8:\"filename\";s:18:\"Mooring_D_2012.png\";s:3:\"uri\";s:27:\"public://Mooring_D_2012.png\";s:8:\"filemime\";s:9:\"image/png\";s:8:\"filesize\";s:6:\"261576\";s:6:\"status\";s:1:\"1\";s:9:\"timestamp\";s:10:\"1415042464\";s:11:\"rdf_mapping\";a:0:{}s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:5:\"width\";s:3:\"886\";s:6:\"height\";s:3:\"637\";}}}s:11:\"title_field\";a:1:{s:2:\"en\";a:1:{i:0;a:3:{s:5:\"value\";s:9:\"Mooring D\";s:6:\"format\";N;s:10:\"safe_value\";s:9:\"Mooring D\";}}}}',0,1539007933,1),('field:node:36','a:3:{s:4:\"body\";a:0:{}s:25:\"field_photo_moorings_2012\";a:1:{s:2:\"en\";a:1:{i:0;a:13:{s:3:\"fid\";s:2:\"35\";s:3:\"uid\";s:1:\"1\";s:8:\"filename\";s:18:\"Mooring_G_2012.png\";s:3:\"uri\";s:27:\"public://Mooring_G_2012.png\";s:8:\"filemime\";s:9:\"image/png\";s:8:\"filesize\";s:6:\"305073\";s:6:\"status\";s:1:\"1\";s:9:\"timestamp\";s:10:\"1415042570\";s:11:\"rdf_mapping\";a:0:{}s:3:\"alt\";s:0:\"\";s:5:\"title\";s:0:\"\";s:5:\"width\";s:3:\"720\";s:6:\"height\";s:3:\"960\";}}}s:11:\"title_field\";a:1:{s:2:\"en\";a:1:{i:0;a:3:{s:5:\"value\";s:9:\"Mooring G\";s:6:\"format\";N;s:10:\"safe_value\";s:9:\"Mooring G\";}}}}',0,1539007947,1),('field:node:37','a:2:{s:4:\"body\";a:1:{s:2:\"en\";a:1:{i:0;a:5:{s:5:\"value\";s:647:\"<form method=\"post\" action=\"/sites/all/themes/multipurpose/mooring.php\">\r\n<fieldset>\r\n <legend>Select the mooring</legend>\r\n <input type=\"checkbox\" name=\"mooring\" value=\"L\"> mooring L\r\n</br>\r\n<input type=\"checkbox\" name=\"mooring\" value=\"G\"> mooring G\r\n</br>\r\n<input type=\"checkbox\" name=\"mooring\" value=\"D\"> mooring D\r\n</br>\r\n<input type=\"checkbox\" name=\"mooring\" value=\"B\"> mooring B\r\n</fieldset>\r\n<fieldset>\r\n <legend>Select the period</legend>\r\n <input type=\"checkbox\" name=\"anno\" value=\"2012\"> 2010-2012\r\n</br>\r\n<input type=\"checkbox\" name=\"anno\" value=\"2014\"> 2012-2014\r\n</fieldset>\r\n<input type=\"submit\" name=\"submit\" value=\"invia\">\r\n</form>\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:705:\"<form method=\"post\" action=\"/sites/all/themes/multipurpose/mooring.php\">\n<fieldset><br /><legend>Select the mooring</legend><br /><input type=\"checkbox\" name=\"mooring\" value=\"L\" /> mooring L<br /><br /><input type=\"checkbox\" name=\"mooring\" value=\"G\" /> mooring G<br /><br /><input type=\"checkbox\" name=\"mooring\" value=\"D\" /> mooring D<br /><br /><input type=\"checkbox\" name=\"mooring\" value=\"B\" /> mooring B<br /></fieldset><br /><fieldset><br /><legend>Select the period</legend><br /><input type=\"checkbox\" name=\"anno\" value=\"2012\" /> 2010-2012<br /><br /><input type=\"checkbox\" name=\"anno\" value=\"2014\" /> 2012-2014<br /></fieldset><br /><input type=\"submit\" name=\"submit\" value=\"invia\" /><br /></form>\n\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:2:\"en\";a:1:{i:0;a:3:{s:5:\"value\";s:8:\"Metadati\";s:6:\"format\";N;s:10:\"safe_value\";s:8:\"Metadati\";}}}}',0,1538751292,1),('field:node:40','a:2:{s:4:\"body\";a:1:{s:3:\"und\";a:1:{i:0;a:5:{s:5:\"value\";s:25622:\"<table class=MsoTableGrid border=1 cellspacing=0 cellpadding=0 style=\'border-collapse:collapse;border:none;mso-border-alt:solid windowtext .5pt; mso-yfti-tbllook:1184;mso-padding-alt:0cm 5.4pt 0cm 5.4pt\'>\r\n <tr style=\'mso-yfti-irow:0;mso-yfti-firstrow:yes\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal align=center style=\'margin-bottom:0cm;margin-bottom:.0001pt; text-align:center;line-height:normal\'><b style=\'mso-bidi-font-weight:normal\'><span style=\'font-size:16.0pt;mso-bidi-font-size:11.0pt\'>MOORING L</span><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:1\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;\r\n  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>Cruise <span class=SpellE>deployment</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>PNRA - XXVII <span class=SpellE>Expedition</span> - 2011/12</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:2\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>Cruise <span class=SpellE>recovery</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>PNRA - XXIX <span class=SpellE>Expedition</span> - 2013/14</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:3\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>Coordinates</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>74.76165 S<span style=\'mso-spacerun:yes\'>  </span>164.14038 E</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:4\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>Water <span class=SpellE>depth</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>149 m</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>Magnetic</span> <span class=SpellE>declination</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>137°N</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:6\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal align=center style=\'margin-bottom:0cm;margin-bottom:.0001pt; text-align:center;line-height:normal\'><b style=\'mso-bidi-font-weight:normal\'><span style=\'font-size:12.0pt;mso-bidi-font-size:11.0pt\'>INSTRUMENT</span><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:7\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><b style=\'mso-bidi-font-weight:normal\'>Depth<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left: none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><b style=\'mso-bidi-font-weight:normal\'>Sampling<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left: none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b style=\'mso-bidi-font-weight:normal\'></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:8\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/80\">AANDERAA RCM7 SN 11559</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>144 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left: none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>60 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left: none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>U, V, Mod, Dir, T</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:9\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:10\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>Raw</span> data </p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>31/01/2012 10:00:00</p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt; border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt; border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt; mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span lang=EN-US style=\'mso-ansi-language:EN-US\'>08/11/2013<span style=\'mso-spacerun:yes\'>  </span>08:00:00</span></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:11\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;\r\n  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:12\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:13\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:15\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:16\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;   padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><b style=\'mso-bidi-font-weight:normal\'>Depth<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left: none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><b style=\'mso-bidi-font-weight:normal\'>Sampling<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left: none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:17\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/81\">AANDERAA RCM7 SN 11974</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>62 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left: none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>60 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left: none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>U, V, Mod, Dir, T</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:18\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:19\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>Raw</span> data </p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>31/01/2012 11:00:00</p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt; border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt; border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt; mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span lang=EN-US style=\'mso-ansi-language:EN-US\'>04/02/2014<span style=\'mso-spacerun:yes\'>  </span>19:00:00</span></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:20\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:21\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:22\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>3</p>\r\n  </td>\r\n </tr>\r\n</table>\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:25448:\"<table class=\"MsoTableGrid\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse;border:none;mso-border-alt:solid windowtext .5pt; mso-yfti-tbllook:1184;mso-padding-alt:0cm 5.4pt 0cm 5.4pt\"><tr style=\"mso-yfti-irow:0;mso-yfti-firstrow:yes\"><td width=\"652\" colspan=\"5\" valign=\"top\" style=\"width:488.9pt;border:solid windowtext 1.0pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" align=\"center\" style=\"margin-bottom:0cm;margin-bottom:.0001pt; text-align:center;line-height:normal\"><b style=\"mso-bidi-font-weight:normal\"><span style=\"font-size:16.0pt;mso-bidi-font-size:11.0pt\">MOORING L</span><p></p></b></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:1\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;&lt;br /&gt;&#10;  padding:0cm 5.4pt 0cm 5.4pt\"><br /><p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\">Cruise <span class=\"SpellE\">deployment</span></p>\n</td>\n<td width=\"456\" colspan=\"3\" valign=\"top\" style=\"width:341.75pt;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\">PNRA - XXVII <span class=\"SpellE\">Expedition</span> - 2011/12</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:2\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\">Cruise <span class=\"SpellE\">recovery</span></p>\n</td>\n<td width=\"456\" colspan=\"3\" valign=\"top\" style=\"width:341.75pt;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\">PNRA - XXIX <span class=\"SpellE\">Expedition</span> - 2013/14</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:3\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\"><span class=\"SpellE\">Coordinates</span></p>\n</td>\n<td width=\"456\" colspan=\"3\" valign=\"top\" style=\"width:341.75pt;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\">74.76165 S<span style=\"mso-spacerun:yes\">  </span>164.14038 E</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:4\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\">Water <span class=\"SpellE\">depth</span></p>\n</td>\n<td width=\"456\" colspan=\"3\" valign=\"top\" style=\"width:341.75pt;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\">149 m</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:5\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\"><span class=\"SpellE\">Magnetic</span> <span class=\"SpellE\">declination</span></p>\n</td>\n<td width=\"456\" colspan=\"3\" valign=\"top\" style=\"width:341.75pt;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\">137°N</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:6\"><td width=\"652\" colspan=\"5\" valign=\"top\" style=\"width:488.9pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" align=\"center\" style=\"margin-bottom:0cm;margin-bottom:.0001pt; text-align:center;line-height:normal\"><b style=\"mso-bidi-font-weight:normal\"><span style=\"font-size:12.0pt;mso-bidi-font-size:11.0pt\">INSTRUMENT</span><p></p></b></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:7\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\"><span class=\"SpellE\"><b style=\"mso-bidi-font-weight:normal\">Type</b></span><b style=\"mso-bidi-font-weight:normal\"> &amp; SN<p></p></b></p>\n</td>\n<td width=\"151\" valign=\"top\" style=\"width:4.0cm;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\"><b style=\"mso-bidi-font-weight:normal\">Depth<p></p></b></p>\n</td>\n<td width=\"142\" valign=\"top\" style=\"width:106.35pt;border-top:none;border-left: none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\"><b style=\"mso-bidi-font-weight:normal\">Sampling<p></p></b></p>\n</td>\n<td width=\"163\" valign=\"top\" style=\"width:122.0pt;border-top:none;border-left: none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\"><span class=\"SpellE\"><b style=\"mso-bidi-font-weight:normal\">Parameters</b></span><b style=\"mso-bidi-font-weight:normal\"></b></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:8\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\"><a href=\"http://morsea.uniparthenope.it/?q=node/80\">AANDERAA RCM7 SN 11559</a></p>\n</td>\n<td width=\"151\" valign=\"top\" style=\"width:4.0cm;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\">144 m</p>\n</td>\n<td width=\"142\" valign=\"top\" style=\"width:106.35pt;border-top:none;border-left: none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\">60 min</p>\n</td>\n<td width=\"163\" valign=\"top\" style=\"width:122.0pt;border-top:none;border-left: none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\">U, V, Mod, Dir, T</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:9\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\"><b style=\"mso-bidi-font-weight:normal\">DATASET<p></p></b></p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\"><b style=\"mso-bidi-font-weight:normal\">LEVEL<p></p></b></p>\n</td>\n<td width=\"151\" valign=\"top\" style=\"width:4.0cm;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\"><b style=\"mso-bidi-font-weight:normal\">START<p></p></b></p>\n</td>\n<td width=\"304\" colspan=\"2\" valign=\"top\" style=\"width:228.35pt;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\"><b style=\"mso-bidi-font-weight:normal\">STOP</b></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:10\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\"><span class=\"SpellE\">Raw</span> data </p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\">0</p>\n</td>\n<td width=\"151\" rowspan=\"4\" valign=\"top\" style=\"width:4.0cm;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\">31/01/2012 10:00:00</p>\n</td>\n<td width=\"304\" colspan=\"2\" rowspan=\"4\" valign=\"top\" style=\"width:228.35pt; border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt; border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt; mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\"><span lang=\"EN-US\" style=\"mso-ansi-language:EN-US\" xml:lang=\"EN-US\">08/11/2013<span style=\"mso-spacerun:yes\">  </span>08:00:00</span></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:11\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\"><span class=\"SpellE\">Despiking</span></p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;&lt;br /&gt;&#10;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\"><br /><p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\">1</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:12\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\">CTD <span class=\"SpellE\">quality</span> <span class=\"SpellE\">check</span></p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\">2</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:13\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\"><span class=\"SpellE\">Quality</span> <span class=\"SpellE\">check</span> <span class=\"SpellE\">L.Marziani</span> <span class=\"SpellE\">Univ</span>. <span class=\"SpellE\">Parthenope</span> 09/2014</p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\">3</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:15\"><td width=\"652\" colspan=\"5\" valign=\"top\" style=\"width:488.9pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\"><p> </p></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:16\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;   padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\"><span class=\"SpellE\"><b style=\"mso-bidi-font-weight:normal\">Type</b></span><b style=\"mso-bidi-font-weight:normal\"> &amp; SN<p></p></b></p>\n</td>\n<td width=\"151\" valign=\"top\" style=\"width:4.0cm;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\"><b style=\"mso-bidi-font-weight:normal\">Depth<p></p></b></p>\n</td>\n<td width=\"142\" valign=\"top\" style=\"width:106.35pt;border-top:none;border-left: none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\"><b style=\"mso-bidi-font-weight:normal\">Sampling<p></p></b></p>\n</td>\n<td width=\"163\" valign=\"top\" style=\"width:122.0pt;border-top:none;border-left: none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\"><span class=\"SpellE\"><b style=\"mso-bidi-font-weight:normal\">Parameters</b></span><b style=\"mso-bidi-font-weight:normal\"><p></p></b></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:17\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\"><a href=\"http://morsea.uniparthenope.it/?q=node/81\">AANDERAA RCM7 SN 11974</a></p>\n</td>\n<td width=\"151\" valign=\"top\" style=\"width:4.0cm;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\">62 m</p>\n</td>\n<td width=\"142\" valign=\"top\" style=\"width:106.35pt;border-top:none;border-left: none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\">60 min</p>\n</td>\n<td width=\"163\" valign=\"top\" style=\"width:122.0pt;border-top:none;border-left: none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\">U, V, Mod, Dir, T</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:18\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\"><b style=\"mso-bidi-font-weight:normal\">DATASET<p></p></b></p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\"><b style=\"mso-bidi-font-weight:normal\">LEVEL<p></p></b></p>\n</td>\n<td width=\"151\" valign=\"top\" style=\"width:4.0cm;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\"><b style=\"mso-bidi-font-weight:normal\">START<p></p></b></p>\n</td>\n<td width=\"304\" colspan=\"2\" valign=\"top\" style=\"width:228.35pt;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\"><b style=\"mso-bidi-font-weight:normal\">STOP</b></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:19\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\"><span class=\"SpellE\">Raw</span> data </p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\">0</p>\n</td>\n<td width=\"151\" rowspan=\"4\" valign=\"top\" style=\"width:4.0cm;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\">31/01/2012 11:00:00</p>\n</td>\n<td width=\"304\" colspan=\"2\" rowspan=\"4\" valign=\"top\" style=\"width:228.35pt; border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt; border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt; mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\"><span lang=\"EN-US\" style=\"mso-ansi-language:EN-US\" xml:lang=\"EN-US\">04/02/2014<span style=\"mso-spacerun:yes\">  </span>19:00:00</span></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:20\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\"><span class=\"SpellE\">Despiking</span></p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\">1</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:21\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\">CTD <span class=\"SpellE\">quality</span> <span class=\"SpellE\">check</span></p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\">2</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:22\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\"><span class=\"SpellE\">Quality</span> <span class=\"SpellE\">check</span> <span class=\"SpellE\">L.Marziani</span> <span class=\"SpellE\">Univ</span>. <span class=\"SpellE\">Parthenope</span> 09/2014</p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\">3</p>\n</td>\n</tr></table>\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:3:\"und\";a:1:{i:0;a:3:{s:5:\"value\";s:23:\"Metadati Mooring L 2014\";s:6:\"format\";N;s:10:\"safe_value\";s:23:\"Metadati Mooring L 2014\";}}}}',0,1538751301,1),('field:node:43','a:2:{s:4:\"body\";a:1:{s:3:\"und\";a:1:{i:0;a:5:{s:5:\"value\";s:81665:\"<table class=MsoTableGrid border=1 cellspacing=0 cellpadding=0 style=\'border-collapse:collapse;border:none;mso-border-alt:solid windowtext .5pt; mso-yfti-tbllook:1184;mso-padding-alt:0cm 5.4pt 0cm 5.4pt\'>\r\n <tr style=\'mso-yfti-irow:0;mso-yfti-firstrow:yes\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal align=center style=\'margin-bottom:0cm;margin-bottom:.0001pt;  text-align:center;line-height:normal\'><b style=\'mso-bidi-font-weight:normal\'><span  style=\'font-size:16.0pt;mso-bidi-font-size:11.0pt\'>MOORING D</span><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:1\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Cruise <span class=SpellE>deployment</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>PNRA - XXV <span class=SpellE>Expedition</span> – 2009/10</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:2\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Cruise <span class=SpellE>recovery</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>PNRA - XXVII <span class=SpellE>Expedition</span> - 2011/12</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:3\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Coordinates</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>75.13338 S 164.52256 E</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:4\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Water <span class=SpellE>depth</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1086 m</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Magnetic</span> <span class=SpellE>declination</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>138°N</p>\r\n  </td>\r\n </tr>\r\n<tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>deployment</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>06/02/2010  02:12:00</p>\r\n  </td>\r\n </tr>\r\n<tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>recovery</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>23/01/2012</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:6\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal align=center style=\'margin-bottom:0cm;margin-bottom:.0001pt;  text-align:center;line-height:normal\'><b style=\'mso-bidi-font-weight:normal\'><span  style=\'font-size:12.0pt;mso-bidi-font-size:11.0pt\'>INSTRUMENT</span><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:7\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Depth<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Sampling<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:8\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/57\">AANDERAA RCM7 SN 11559</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1078 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>30 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>U, V , Mod, Dir, T, AWT</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:9\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:10\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data </p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>06/02/2010 02:46:00</p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>10/08/2011<span style=\'mso-spacerun:yes\'>  </span>04:46:00</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:11\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:12\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:13\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span  class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:15\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:16\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Depth<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Sampling<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:17\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/61\">SEACAT SBE16 SN 1437</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1036 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>30 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left: none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>T, S</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:18\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:19\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data </p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>06/02/2010<span style=\'mso-spacerun:yes\'>  </span>02:34:00</p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>23/01/2012<span style=\'mso-spacerun:yes\'>  </span>15:04:00</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:20\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:21\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:22\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span  class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:24\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:25\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Depth<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Sampling<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:26\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/63\">SEACAT SBE39 SN 1213</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>950 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>5 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>T</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:27\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:28\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data </p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>06/02/2010 <span style=\'mso-spacerun:yes\'> </span>02:23:00</p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>23/01/2012<span style=\'mso-spacerun:yes\'>  </span>15:18:00</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:29\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:30\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:31\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span  class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:33\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:34\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Depth<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Sampling<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:35\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/60\">AANDERAA RCM9 SN 975</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>838 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>30 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>U, V, Mod, Dir, AWT</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:36\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:37\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data </p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>06/02/2010 02:46:00</p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>16/04/2010<span style=\'mso-spacerun:yes\'>  </span>10:46:00</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:38\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:39\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:40\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:42\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:43\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Depth<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Sampling<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:44\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/62\">SEACAT SBE39 SN 1210</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>694 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt; line-height: normal\'>5 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>T</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:45\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:46\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data </p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>06/02/2010<span style=\'mso-spacerun:yes\'>  </span>02:48:00</p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>23/01/2012<span style=\'mso-spacerun:yes\'>  </span>15:18:00</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:47\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:48\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:49\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span\r\n  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span  class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:51\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:52\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;   padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Depth<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Sampling<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:53\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/59\">AANDERAA RCM7 SN 11560</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>494 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>30 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>U, V, Mod, Dir, T</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:54\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:55\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data </p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>06/02/2010 02:46:00</p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>21/11/2010<span style=\'mso-spacerun:yes\'>  </span>03:46:00</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:56\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:57\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:58\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:60\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:61\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Depth<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Sampling<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:62\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/58\">SEACAT SBE16 SN 1433</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>463 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>30 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>T, S</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:63\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:64\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>Raw</span> data </p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=5 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>06/02/2010<span style=\'mso-spacerun:yes\'>  </span>02:55:00</p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=5 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>23/01/2012 14:25:00</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:65\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:66\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:67\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span   class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span  class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:68\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:normal\'>Correzione salinità CTD</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n</table>\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:80726:\"<table class=\"MsoTableGrid\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse;border:none;mso-border-alt:solid windowtext .5pt; mso-yfti-tbllook:1184;mso-padding-alt:0cm 5.4pt 0cm 5.4pt\"><tr style=\"mso-yfti-irow:0;mso-yfti-firstrow:yes\"><td width=\"652\" colspan=\"5\" valign=\"top\" style=\"width:488.9pt;border:solid windowtext 1.0pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" align=\"center\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;  text-align:center;line-height:normal\"><b style=\"mso-bidi-font-weight:normal\"><span style=\"font-size:16.0pt;mso-bidi-font-size:11.0pt\">MOORING D</span><p></p></b></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:1\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">Cruise <span class=\"SpellE\">deployment</span></p>\n</td>\n<td width=\"456\" colspan=\"3\" valign=\"top\" style=\"width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">PNRA - XXV <span class=\"SpellE\">Expedition</span> – 2009/10</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:2\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">Cruise <span class=\"SpellE\">recovery</span></p>\n</td>\n<td width=\"456\" colspan=\"3\" valign=\"top\" style=\"width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">PNRA - XXVII <span class=\"SpellE\">Expedition</span> - 2011/12</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:3\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\">Coordinates</span></p>\n</td>\n<td width=\"456\" colspan=\"3\" valign=\"top\" style=\"width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">75.13338 S 164.52256 E</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:4\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">Water <span class=\"SpellE\">depth</span></p>\n</td>\n<td width=\"456\" colspan=\"3\" valign=\"top\" style=\"width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">1086 m</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:5\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\">Magnetic</span> <span class=\"SpellE\">declination</span></p>\n</td>\n<td width=\"456\" colspan=\"3\" valign=\"top\" style=\"width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">138°N</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:5\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\">deployment</span></p>\n</td>\n<td width=\"456\" colspan=\"3\" valign=\"top\" style=\"width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">06/02/2010  02:12:00</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:5\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\">recovery</span></p>\n</td>\n<td width=\"456\" colspan=\"3\" valign=\"top\" style=\"width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">23/01/2012</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:6\"><td width=\"652\" colspan=\"5\" valign=\"top\" style=\"width:488.9pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" align=\"center\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;  text-align:center;line-height:normal\"><b style=\"mso-bidi-font-weight:normal\"><span style=\"font-size:12.0pt;mso-bidi-font-size:11.0pt\">INSTRUMENT</span><p></p></b></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:7\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\"><b style=\"mso-bidi-font-weight:normal\">Type</b></span><b style=\"mso-bidi-font-weight:normal\"> &amp; SN<p></p></b></p>\n</td>\n<td width=\"151\" valign=\"top\" style=\"width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">Depth<p></p></b></p>\n</td>\n<td width=\"142\" valign=\"top\" style=\"width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">Sampling<p></p></b></p>\n</td>\n<td width=\"163\" valign=\"top\" style=\"width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\"><b style=\"mso-bidi-font-weight:normal\">Parameters</b></span><b style=\"mso-bidi-font-weight:normal\"><p></p></b></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:8\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><a href=\"http://morsea.uniparthenope.it/?q=node/57\">AANDERAA RCM7 SN 11559</a></p>\n</td>\n<td width=\"151\" valign=\"top\" style=\"width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">1078 m</p>\n</td>\n<td width=\"142\" valign=\"top\" style=\"width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">30 min</p>\n</td>\n<td width=\"163\" valign=\"top\" style=\"width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">U, V , Mod, Dir, T, AWT</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:9\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">DATASET<p></p></b></p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">LEVEL<p></p></b></p>\n</td>\n<td width=\"151\" valign=\"top\" style=\"width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">START<p></p></b></p>\n</td>\n<td width=\"304\" colspan=\"2\" valign=\"top\" style=\"width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">STOP</b></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:10\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\">Raw</span> data </p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">0</p>\n</td>\n<td width=\"151\" rowspan=\"4\" valign=\"top\" style=\"width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">06/02/2010 02:46:00</p>\n</td>\n<td width=\"304\" colspan=\"2\" rowspan=\"4\" valign=\"top\" style=\"width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">10/08/2011<span style=\"mso-spacerun:yes\">  </span>04:46:00</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:11\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\">Despiking</span></p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">1</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:12\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">CTD <span class=\"SpellE\">quality</span> <span class=\"SpellE\">check</span></p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">2</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:13\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\">Quality</span> <span class=\"SpellE\">check</span> <span class=\"SpellE\">L.Marziani</span> <span class=\"SpellE\">Univ</span>. <span class=\"SpellE\">Parthenope</span> 09/2014</p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">3</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:15\"><td width=\"652\" colspan=\"5\" valign=\"top\" style=\"width:488.9pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><p> </p></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:16\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\"><b style=\"mso-bidi-font-weight:normal\">Type</b></span><b style=\"mso-bidi-font-weight:normal\"> &amp; SN<p></p></b></p>\n</td>\n<td width=\"151\" valign=\"top\" style=\"width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">Depth<p></p></b></p>\n</td>\n<td width=\"142\" valign=\"top\" style=\"width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">Sampling<p></p></b></p>\n</td>\n<td width=\"163\" valign=\"top\" style=\"width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\"><b style=\"mso-bidi-font-weight:normal\">Parameters</b></span><b style=\"mso-bidi-font-weight:normal\"><p></p></b></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:17\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><a href=\"http://morsea.uniparthenope.it/?q=node/61\">SEACAT SBE16 SN 1437</a></p>\n</td>\n<td width=\"151\" valign=\"top\" style=\"width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">1036 m</p>\n</td>\n<td width=\"142\" valign=\"top\" style=\"width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">30 min</p>\n</td>\n<td width=\"163\" valign=\"top\" style=\"width:122.0pt;border-top:none;border-left: none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">T, S</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:18\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\"><b style=\"mso-bidi-font-weight:normal\">DATASET<p></p></b></p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">LEVEL<p></p></b></p>\n</td>\n<td width=\"151\" valign=\"top\" style=\"width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">START<p></p></b></p>\n</td>\n<td width=\"304\" colspan=\"2\" valign=\"top\" style=\"width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">STOP</b></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:19\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\">Raw</span> data </p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">0</p>\n</td>\n<td width=\"151\" rowspan=\"4\" valign=\"top\" style=\"width:4.0cm;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">06/02/2010<span style=\"mso-spacerun:yes\">  </span>02:34:00</p>\n</td>\n<td width=\"304\" colspan=\"2\" rowspan=\"4\" valign=\"top\" style=\"width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">23/01/2012<span style=\"mso-spacerun:yes\">  </span>15:04:00</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:20\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\">Despiking</span></p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">1</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:21\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">CTD <span class=\"SpellE\">quality</span> <span class=\"SpellE\">check</span></p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">2</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:22\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\">Quality</span> <span class=\"SpellE\">check</span> <span class=\"SpellE\">L.Marziani</span> <span class=\"SpellE\">Univ</span>. <span class=\"SpellE\">Parthenope</span> 09/2014</p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">3</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:24\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><p> </p></p>\n</td>\n<td width=\"456\" colspan=\"3\" valign=\"top\" style=\"width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><p> </p></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:25\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\"><b style=\"mso-bidi-font-weight:normal\">Type</b></span><b style=\"mso-bidi-font-weight:normal\"> &amp; SN<p></p></b></p>\n</td>\n<td width=\"151\" valign=\"top\" style=\"width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">Depth<p></p></b></p>\n</td>\n<td width=\"142\" valign=\"top\" style=\"width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">Sampling<p></p></b></p>\n</td>\n<td width=\"163\" valign=\"top\" style=\"width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\"><span class=\"SpellE\"><b style=\"mso-bidi-font-weight:normal\">Parameters</b></span><b style=\"mso-bidi-font-weight:normal\"><p></p></b></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:26\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><a href=\"http://morsea.uniparthenope.it/?q=node/63\">SEACAT SBE39 SN 1213</a></p>\n</td>\n<td width=\"151\" valign=\"top\" style=\"width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">950 m</p>\n</td>\n<td width=\"142\" valign=\"top\" style=\"width:106.35pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">5 min</p>\n</td>\n<td width=\"163\" valign=\"top\" style=\"width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">T</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:27\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">DATASET<p></p></b></p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">LEVEL<p></p></b></p>\n</td>\n<td width=\"151\" valign=\"top\" style=\"width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">START<p></p></b></p>\n</td>\n<td width=\"304\" colspan=\"2\" valign=\"top\" style=\"width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">STOP</b></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:28\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\">Raw</span> data </p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">0</p>\n</td>\n<td width=\"151\" rowspan=\"4\" valign=\"top\" style=\"width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">06/02/2010 <span style=\"mso-spacerun:yes\"> </span>02:23:00</p>\n</td>\n<td width=\"304\" colspan=\"2\" rowspan=\"4\" valign=\"top\" style=\"width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">23/01/2012<span style=\"mso-spacerun:yes\">  </span>15:18:00</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:29\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\">Despiking</span></p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">1</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:30\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">CTD <span class=\"SpellE\">quality</span> <span class=\"SpellE\">check</span></p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">2</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:31\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\">Quality</span> <span class=\"SpellE\">check</span> <span class=\"SpellE\">L.Marziani</span> <span class=\"SpellE\">Univ</span>. <span class=\"SpellE\">Parthenope</span> 09/2014</p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">3</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:33\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><p> </p></p>\n</td>\n<td width=\"456\" colspan=\"3\" valign=\"top\" style=\"width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><p> </p></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:34\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\"><b style=\"mso-bidi-font-weight:normal\">Type</b></span><b style=\"mso-bidi-font-weight:normal\"> &amp; SN<p></p></b></p>\n</td>\n<td width=\"151\" valign=\"top\" style=\"width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">Depth<p></p></b></p>\n</td>\n<td width=\"142\" valign=\"top\" style=\"width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">Sampling<p></p></b></p>\n</td>\n<td width=\"163\" valign=\"top\" style=\"width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\"><b style=\"mso-bidi-font-weight:normal\">Parameters</b></span><b style=\"mso-bidi-font-weight:normal\"><p></p></b></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:35\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><a href=\"http://morsea.uniparthenope.it/?q=node/60\">AANDERAA RCM9 SN 975</a></p>\n</td>\n<td width=\"151\" valign=\"top\" style=\"width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">838 m</p>\n</td>\n<td width=\"142\" valign=\"top\" style=\"width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">30 min</p>\n</td>\n<td width=\"163\" valign=\"top\" style=\"width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">U, V, Mod, Dir, AWT</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:36\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">DATASET<p></p></b></p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">LEVEL<p></p></b></p>\n</td>\n<td width=\"151\" valign=\"top\" style=\"width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">START<p></p></b></p>\n</td>\n<td width=\"304\" colspan=\"2\" valign=\"top\" style=\"width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">STOP</b></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:37\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\">Raw</span> data </p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">0</p>\n</td>\n<td width=\"151\" rowspan=\"4\" valign=\"top\" style=\"width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\">06/02/2010 02:46:00</p>\n</td>\n<td width=\"304\" colspan=\"2\" rowspan=\"4\" valign=\"top\" style=\"width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">16/04/2010<span style=\"mso-spacerun:yes\">  </span>10:46:00</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:38\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\">Despiking</span></p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">1</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:39\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">CTD <span class=\"SpellE\">quality</span> <span class=\"SpellE\">check</span></p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">2</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:40\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\">Quality</span> <span class=\"SpellE\">check</span> <span class=\"SpellE\">L.Marziani</span> <span class=\"SpellE\">Univ</span>. <span class=\"SpellE\">Parthenope</span> 09/2014</p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">3</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:42\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><p> </p></p>\n</td>\n<td width=\"456\" colspan=\"3\" valign=\"top\" style=\"width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><p> </p></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:43\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\"><b style=\"mso-bidi-font-weight:normal\">Type</b></span><b style=\"mso-bidi-font-weight:normal\"> &amp; SN<p></p></b></p>\n</td>\n<td width=\"151\" valign=\"top\" style=\"width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">Depth<p></p></b></p>\n</td>\n<td width=\"142\" valign=\"top\" style=\"width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">Sampling<p></p></b></p>\n</td>\n<td width=\"163\" valign=\"top\" style=\"width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\"><b style=\"mso-bidi-font-weight:normal\">Parameters</b></span><b style=\"mso-bidi-font-weight:normal\"><p></p></b></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:44\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\"><a href=\"http://morsea.uniparthenope.it/?q=node/62\">SEACAT SBE39 SN 1210</a></p>\n</td>\n<td width=\"151\" valign=\"top\" style=\"width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">694 m</p>\n</td>\n<td width=\"142\" valign=\"top\" style=\"width:106.35pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt; line-height: normal\">5 min</p>\n</td>\n<td width=\"163\" valign=\"top\" style=\"width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">T</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:45\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">DATASET<p></p></b></p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">LEVEL<p></p></b></p>\n</td>\n<td width=\"151\" valign=\"top\" style=\"width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:normal\"><b style=\"mso-bidi-font-weight:normal\">START<p></p></b></p>\n</td>\n<td width=\"304\" colspan=\"2\" valign=\"top\" style=\"width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">STOP</b></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:46\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\">Raw</span> data </p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">0</p>\n</td>\n<td width=\"151\" rowspan=\"4\" valign=\"top\" style=\"width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\">06/02/2010<span style=\"mso-spacerun:yes\">  </span>02:48:00</p>\n</td>\n<td width=\"304\" colspan=\"2\" rowspan=\"4\" valign=\"top\" style=\"width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">23/01/2012<span style=\"mso-spacerun:yes\">  </span>15:18:00</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:47\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\">Despiking</span></p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">1</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:48\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\">CTD <span class=\"SpellE\">quality</span> <span class=\"SpellE\">check</span></p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">2</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:49\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\">Quality</span> <span class=\"SpellE\">check</span> <span></span>\n  class=SpellE&gt;L.Marziani <span class=\"SpellE\">Univ</span>. <span class=\"SpellE\">Parthenope</span> 09/2014</p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">3</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:51\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><p> </p></p>\n</td>\n<td width=\"456\" colspan=\"3\" valign=\"top\" style=\"width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><p> </p></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:52\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;   padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\"><b style=\"mso-bidi-font-weight:normal\">Type</b></span><b style=\"mso-bidi-font-weight:normal\"> &amp; SN<p></p></b></p>\n</td>\n<td width=\"151\" valign=\"top\" style=\"width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">Depth<p></p></b></p>\n</td>\n<td width=\"142\" valign=\"top\" style=\"width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">Sampling<p></p></b></p>\n</td>\n<td width=\"163\" valign=\"top\" style=\"width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\"><b style=\"mso-bidi-font-weight:normal\">Parameters</b></span><b style=\"mso-bidi-font-weight:normal\"><p></p></b></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:53\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><a href=\"http://morsea.uniparthenope.it/?q=node/59\">AANDERAA RCM7 SN 11560</a></p>\n</td>\n<td width=\"151\" valign=\"top\" style=\"width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">494 m</p>\n</td>\n<td width=\"142\" valign=\"top\" style=\"width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">30 min</p>\n</td>\n<td width=\"163\" valign=\"top\" style=\"width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">U, V, Mod, Dir, T</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:54\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">DATASET<p></p></b></p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">LEVEL<p></p></b></p>\n</td>\n<td width=\"151\" valign=\"top\" style=\"width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">START<p></p></b></p>\n</td>\n<td width=\"304\" colspan=\"2\" valign=\"top\" style=\"width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">STOP</b></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:55\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\">Raw</span> data </p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">0</p>\n</td>\n<td width=\"151\" rowspan=\"4\" valign=\"top\" style=\"width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">06/02/2010 02:46:00</p>\n</td>\n<td width=\"304\" colspan=\"2\" rowspan=\"4\" valign=\"top\" style=\"width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">21/11/2010<span style=\"mso-spacerun:yes\">  </span>03:46:00</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:56\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\">Despiking</span></p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">1</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:57\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">CTD <span class=\"SpellE\">quality</span> <span class=\"SpellE\">check</span></p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">2</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:58\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\">Quality</span> <span class=\"SpellE\">check</span> <span class=\"SpellE\">L.Marziani</span> <span class=\"SpellE\">Univ</span>. <span class=\"SpellE\">Parthenope</span> 09/2014</p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">3</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:60\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><p> </p></p>\n</td>\n<td width=\"456\" colspan=\"3\" valign=\"top\" style=\"width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><p> </p></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:61\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\"><b style=\"mso-bidi-font-weight:normal\">Type</b></span><b style=\"mso-bidi-font-weight:normal\"> &amp; SN<p></p></b></p>\n</td>\n<td width=\"151\" valign=\"top\" style=\"width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">Depth<p></p></b></p>\n</td>\n<td width=\"142\" valign=\"top\" style=\"width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">Sampling<p></p></b></p>\n</td>\n<td width=\"163\" valign=\"top\" style=\"width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\"><b style=\"mso-bidi-font-weight:normal\">Parameters</b></span><b style=\"mso-bidi-font-weight:normal\"><p></p></b></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:62\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><a href=\"http://morsea.uniparthenope.it/?q=node/58\">SEACAT SBE16 SN 1433</a></p>\n</td>\n<td width=\"151\" valign=\"top\" style=\"width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\">463 m</p>\n</td>\n<td width=\"142\" valign=\"top\" style=\"width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\">30 min</p>\n</td>\n<td width=\"163\" valign=\"top\" style=\"width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">T, S</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:63\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">DATASET<p></p></b></p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">LEVEL<p></p></b></p>\n</td>\n<td width=\"151\" valign=\"top\" style=\"width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">START<p></p></b></p>\n</td>\n<td width=\"304\" colspan=\"2\" valign=\"top\" style=\"width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">STOP</b></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:64\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\"><span class=\"SpellE\">Raw</span> data </p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">0</p>\n</td>\n<td width=\"151\" rowspan=\"5\" valign=\"top\" style=\"width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">06/02/2010<span style=\"mso-spacerun:yes\">  </span>02:55:00</p>\n</td>\n<td width=\"304\" colspan=\"2\" rowspan=\"5\" valign=\"top\" style=\"width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">23/01/2012 14:25:00</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:65\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\">Despiking</span></p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">1</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:66\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">CTD <span class=\"SpellE\">quality</span> <span class=\"SpellE\">check</span></p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">2</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:67\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\">Quality</span> <span class=\"SpellE\">check</span> <span class=\"SpellE\">L.Marziani</span> <span class=\"SpellE\">Univ</span>. <span class=\"SpellE\">Parthenope</span> 09/2014</p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\">3</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:68\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:normal\">Correzione salinità CTD</p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><p> </p></p>\n</td>\n</tr></table>\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:3:\"und\";a:1:{i:0;a:3:{s:5:\"value\";s:23:\"Metadati Mooring D 2012\";s:6:\"format\";N;s:10:\"safe_value\";s:23:\"Metadati Mooring D 2012\";}}}}',0,1543954382,1),('field:node:45','a:2:{s:4:\"body\";a:1:{s:2:\"en\";a:1:{i:0;a:5:{s:5:\"value\";s:5392:\"<h1 align= \"center\"><strong>Italian field activities in the Pacific Sector of the ACC</strong></h1>\r\n<h2 align=\"center\"><strong>Austral Summer 2014-2015</strong></h2>\r\n<h3 align=\"center\"><strong>30th Italian Expedition in Antarctica (PNRA XXX)</strong></h3>\r\n</br>\r\n<p align=\"justify\">The absence of continental barriers across the latitude band of Drake Passage permits an Antarctic Circumpolar Current (ACC) to flow and act as the primary driver for inter-basin exchanges. Due to its important climate impact, the ACC band is an area of high interest, especially since global ocean temperatures have been shown to increase in the last. Hydrographic observations are thus important as they aid the description and understanding of the processes which occur within the Southern Ocean and across the ACC. \r\nThe oceanographic Italian field activities in the Southern Ocean during Austral summer 2014-15 will be carried on in the framework of the MORSea project (http://morsea.uniparthenope.it/, founded by the Italian PNRA - National Program for Antarctic Research) and they will be focused on the in situ monitoring of the Pacific Sector of the ACC - between New Zealand and the Ross Sea - by means of XBT, floats, and drifters. Two Italian scientists of University of Napoli “Parthenope” will be host onboard of the South Korean R/V Araon in the framework of the collaboration between Italian PNRA and KOPRI (Korea Polar Research Institute).</p>\r\nThree main actions will be undertaken during the cruise:\r\n•	collection of in situ temperature data in the layer 0-800m;\r\n•	release of 10 SVP2 surface drifters;\r\n•	deployment of 10 ARVOR and PROVOR floats.\r\n<p align=\"justify\">Main focus of the cruise is the continuation of the about twenty year-long time series of temperature data along the endurance line New Zealand - Antarctica. Since 1994 in situ temperature data of the surface layer of the southern ocean have been collected in the framework of the Italian CLIMA and SOChIC projects. Up to 2013, 25 transects between New Zealand and the Ross Sea have been realized by the R/V Italica mainly in January and February (figure 1) collecting SST, SSS, XBT and XCTD data.\r\nDuring Austral summer 2014/2015 field activities will increase and preserve the importance of the large dataset collected since 1994 and will represent also a significant contribution to the Italian deployment of lagrangian platforms in the latitude band of the ACC with a grand total of 20 drifting platforms (10 floats and 10 surface drifters) provided by the ARGO-Italy program (http://argoitaly.ogs.trieste.it/).</p>\r\n<p ALIGN=\"center\"><a href=\" \"><img alt=\"\" src=\"/sites/all/themes/multipurpose/images/fig1.png\" width=\"500px\" /></a></p>\r\n \r\n<p align=\"justify\"><strong>Figure 1. Transects of XBT casts relating to the CLIMA/SOChIC/MORSea programmes (black dots) from 1994 to 2013. Underlying bathymetry (meters below sea level) is indicated by color shading.</b></strong>\r\n\r\n<p align=\"justify\">Temperature data are usually collected using Sippican T7 probes providing temperature profiles with a vertical resolution of 65 cm and a maximum nominal depth of 760 m. A regular 20 km sampling rate is adopted with increased sampling frequency over the main frontal regions of the ACC. Transects are usually performed in 5 days providing a synoptic picture of the thermal structure of the upper SO in this sector.\r\nSurface data related to temperature, salinity, chlorophyll and – more recently – other bio-geochemical tracers, as well as atmospheric data and CO2 atmospheric partial pressure, are usually collected by the R/V Italica along the entire transect while drifters and floats are released in correspondence of the main ACC fronts.\r\nSince 2009 the location of ACC fronts in this sector is also monitored on the basis of satellite altimetry data (SSH), in order to provide indications to sea-going staff on the position of fronts and also to study the variability of ACC fronts during the entire year and observe their modification during any eventual eddy shedding event.\r\nIn our data set the Polar Front (PF) positions (figure 2) are characterized by the minimum (northest position) value of 60.2°S reached during November 1994. The mean position of the PF is slightly southern (61.7°S) than previous estimation (61.5°S) from Budillon and Rintoul [2003], while the standard deviation (0.9°) remains unchanged. Figure 2 also shows the presence of isolated latitude band associated to the PF_SSH values not linked to any in situ front position. These isolated signals, often characterized by a very small latitudinal extension, can be due to the presence of water masses with the same physical properties of PF water in an unusual northern position. The explanation for the northern migration of water with PF characteristics can be linked to the presence of eddies detaching from the PF and moving northward to the Sub Antarctic Front.</p>\r\n <p ALIGN=\"center\"><a href=\" \"><img alt=\"\" src=\"/sites/all/themes/multipurpose/images/fig2.png\" width=\"500px\" /></a></p>\r\n<p align=\"justify\"><strong>Figure 2. Positions of the PF during the CLIMA/SOChIC/MORSea cruises from 1994 to 2010. Black line represents the mean latitude of front from in situ data, gray vertical bars represent the along track-latitude bands where fronts are detected using altimetry values (from Cotroneo et al. 2013).</strong></p>\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:5516:\"<h1 align=\"center\"><strong>Italian field activities in the Pacific Sector of the ACC</strong></h1>\n<h2 align=\"center\"><strong>Austral Summer 2014-2015</strong></h2>\n<h3 align=\"center\"><strong>30th Italian Expedition in Antarctica (PNRA XXX)</strong></h3>\n<p></p>\n<p align=\"justify\">The absence of continental barriers across the latitude band of Drake Passage permits an Antarctic Circumpolar Current (ACC) to flow and act as the primary driver for inter-basin exchanges. Due to its important climate impact, the ACC band is an area of high interest, especially since global ocean temperatures have been shown to increase in the last. Hydrographic observations are thus important as they aid the description and understanding of the processes which occur within the Southern Ocean and across the ACC.<br />\nThe oceanographic Italian field activities in the Southern Ocean during Austral summer 2014-15 will be carried on in the framework of the MORSea project (<a href=\"http://morsea.uniparthenope.it/\">http://morsea.uniparthenope.it/</a>, founded by the Italian PNRA - National Program for Antarctic Research) and they will be focused on the in situ monitoring of the Pacific Sector of the ACC - between New Zealand and the Ross Sea - by means of XBT, floats, and drifters. Two Italian scientists of University of Napoli “Parthenope” will be host onboard of the South Korean R/V Araon in the framework of the collaboration between Italian PNRA and KOPRI (Korea Polar Research Institute).</p>\n<p>Three main actions will be undertaken during the cruise:<br />\n•	collection of in situ temperature data in the layer 0-800m;<br />\n•	release of 10 SVP2 surface drifters;<br />\n•	deployment of 10 ARVOR and PROVOR floats.</p>\n<p align=\"justify\">Main focus of the cruise is the continuation of the about twenty year-long time series of temperature data along the endurance line New Zealand - Antarctica. Since 1994 in situ temperature data of the surface layer of the southern ocean have been collected in the framework of the Italian CLIMA and SOChIC projects. Up to 2013, 25 transects between New Zealand and the Ross Sea have been realized by the R/V Italica mainly in January and February (figure 1) collecting SST, SSS, XBT and XCTD data.<br />\nDuring Austral summer 2014/2015 field activities will increase and preserve the importance of the large dataset collected since 1994 and will represent also a significant contribution to the Italian deployment of lagrangian platforms in the latitude band of the ACC with a grand total of 20 drifting platforms (10 floats and 10 surface drifters) provided by the ARGO-Italy program (<a href=\"http://argoitaly.ogs.trieste.it/\">http://argoitaly.ogs.trieste.it/</a>).</p>\n<p align=\"center\"><a href=\" \"><img alt=\"\" src=\"/sites/all/themes/multipurpose/images/fig1.png\" width=\"500px\" /></a></p>\n<p align=\"justify\"><strong>Figure 1. Transects of XBT casts relating to the CLIMA/SOChIC/MORSea programmes (black dots) from 1994 to 2013. Underlying bathymetry (meters below sea level) is indicated by color shading.</strong></p>\n<p align=\"justify\">Temperature data are usually collected using Sippican T7 probes providing temperature profiles with a vertical resolution of 65 cm and a maximum nominal depth of 760 m. A regular 20 km sampling rate is adopted with increased sampling frequency over the main frontal regions of the ACC. Transects are usually performed in 5 days providing a synoptic picture of the thermal structure of the upper SO in this sector.<br />\nSurface data related to temperature, salinity, chlorophyll and – more recently – other bio-geochemical tracers, as well as atmospheric data and CO2 atmospheric partial pressure, are usually collected by the R/V Italica along the entire transect while drifters and floats are released in correspondence of the main ACC fronts.<br />\nSince 2009 the location of ACC fronts in this sector is also monitored on the basis of satellite altimetry data (SSH), in order to provide indications to sea-going staff on the position of fronts and also to study the variability of ACC fronts during the entire year and observe their modification during any eventual eddy shedding event.<br />\nIn our data set the Polar Front (PF) positions (figure 2) are characterized by the minimum (northest position) value of 60.2°S reached during November 1994. The mean position of the PF is slightly southern (61.7°S) than previous estimation (61.5°S) from Budillon and Rintoul [2003], while the standard deviation (0.9°) remains unchanged. Figure 2 also shows the presence of isolated latitude band associated to the PF_SSH values not linked to any in situ front position. These isolated signals, often characterized by a very small latitudinal extension, can be due to the presence of water masses with the same physical properties of PF water in an unusual northern position. The explanation for the northern migration of water with PF characteristics can be linked to the presence of eddies detaching from the PF and moving northward to the Sub Antarctic Front.</p>\n<p align=\"center\"><a href=\" \"><img alt=\"\" src=\"/sites/all/themes/multipurpose/images/fig2.png\" width=\"500px\" /></a></p>\n<p align=\"justify\"><strong>Figure 2. Positions of the PF during the CLIMA/SOChIC/MORSea cruises from 1994 to 2010. Black line represents the mean latitude of front from in situ data, gray vertical bars represent the along track-latitude bands where fronts are detected using altimetry values (from Cotroneo et al. 2013).</strong></p>\n\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:2:\"en\";a:1:{i:0;a:3:{s:5:\"value\";s:18:\"2014/15 - PNRA XXX\";s:6:\"format\";N;s:10:\"safe_value\";s:18:\"2014/15 - PNRA XXX\";}}}}',0,1539006189,1),('field:node:46','a:2:{s:4:\"body\";a:1:{s:2:\"en\";a:1:{i:0;a:5:{s:5:\"value\";s:1902:\"<div>\r\n<div style=\"float:left\">\r\n  <img src=\"sites/all/themes/multipurpose/images/sooslogo.jpg\" alt=\"SOUTHERN OCEAN DATA\" width=\"200\"/>	 \r\n</div>\r\n<div style=\"float:left\">\r\n  <div> <p style=\"font-size: 16px; padding-top: 15px;\">\r\n    <strong>Observation Activities in the Ross Sea - Report 2015</strong>  \r\n</p>\r\n</div>\r\n  <div style=\"border: none; width: 110px; height: 30px; padding-left: 180px;\">\r\n    <a href=\"/sites/all/themes/multipurpose/pubblications/RossSeaReport2015.pdf\"><img height=\"10\" src=\"sites/all/themes/multipurpose/images/readMore2.jpg\" style=\"border: none;\" align=\"left\"></a>\r\n  </div>               	    	  \r\n  </div>\r\n </div>\r\n\r\n\r\n<div>\r\n<div style=\"float:left\">\r\n  <img src=\"sites/all/themes/multipurpose/images/sooslogo.jpg\" alt=\"SOUTHERN OCEAN DATA\" width=\"200\"/>	 \r\n</div>\r\n<div style=\"float:left\">\r\n  <div> <p style=\"font-size: 16px; padding-top: 15px;\">\r\n    <strong>Italian Marine Ross Sea Observatory</strong>  \r\n</p>\r\n</div>\r\n  <div style=\"border: none; width: 110px; height: 30px; padding-left: 180px;\">\r\n    <a href=\"http://www.soos.aq/news/current-news/202-italian-moorings\"><img height=\"10\" src=\"sites/all/themes/multipurpose/images/readMore2.jpg\" style=\"border: none;\" align=\"left\"></a>\r\n  </div>                 	    	  \r\n  </div>\r\n </div>\r\n\r\n<div>\r\n<div style=\"float:left\">\r\n  <img src=\"sites/all/themes/multipurpose/images/sooslogo.jpg\" alt=\"SOUTHERN OCEAN DATA\" width=\"200\"/>	 \r\n</div>\r\n<div style=\"float:left\">\r\n  <div> <p style=\"font-size: 16px; padding-top: 15px;\">\r\n    <strong>Italian Activities this Season</strong>  \r\n</p>\r\n</div>\r\n  <div style=\"border: none; width: 110px; height: 30px; padding-left: 180px;\">\r\n    <a href=\"http://www.soos.aq/news/current-news/199-italiano-field-plans\"><img height=\"10\" src=\"sites/all/themes/multipurpose/images/readMore2.jpg\" style=\"border: none;\" align=\"left\"></a>\r\n  </div>                 	    	  \r\n  </div>\r\n </div>\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:1756:\"<div>\n<div style=\"float:left\">\n  <img src=\"sites/all/themes/multipurpose/images/sooslogo.jpg\" alt=\"SOUTHERN OCEAN DATA\" width=\"200\" /></div>\n<div style=\"float:left\">\n<div>\n<p style=\"font-size: 16px; padding-top: 15px;\">\n    <strong>Observation Activities in the Ross Sea - Report 2015</strong>\n</p>\n</div>\n<div style=\"border: none; width: 110px; height: 30px; padding-left: 180px;\">\n    <a href=\"/sites/all/themes/multipurpose/pubblications/RossSeaReport2015.pdf\"><img height=\"10\" src=\"sites/all/themes/multipurpose/images/readMore2.jpg\" style=\"border: none;\" align=\"left\" /></a>\n  </div>\n</div>\n</div>\n<div>\n<div style=\"float:left\">\n  <img src=\"sites/all/themes/multipurpose/images/sooslogo.jpg\" alt=\"SOUTHERN OCEAN DATA\" width=\"200\" /></div>\n<div style=\"float:left\">\n<div>\n<p style=\"font-size: 16px; padding-top: 15px;\">\n    <strong>Italian Marine Ross Sea Observatory</strong>\n</p>\n</div>\n<div style=\"border: none; width: 110px; height: 30px; padding-left: 180px;\">\n    <a href=\"http://www.soos.aq/news/current-news/202-italian-moorings\"><img height=\"10\" src=\"sites/all/themes/multipurpose/images/readMore2.jpg\" style=\"border: none;\" align=\"left\" /></a>\n  </div>\n</div>\n</div>\n<div>\n<div style=\"float:left\">\n  <img src=\"sites/all/themes/multipurpose/images/sooslogo.jpg\" alt=\"SOUTHERN OCEAN DATA\" width=\"200\" /></div>\n<div style=\"float:left\">\n<div>\n<p style=\"font-size: 16px; padding-top: 15px;\">\n    <strong>Italian Activities this Season</strong>\n</p>\n</div>\n<div style=\"border: none; width: 110px; height: 30px; padding-left: 180px;\">\n    <a href=\"http://www.soos.aq/news/current-news/199-italiano-field-plans\"><img height=\"10\" src=\"sites/all/themes/multipurpose/images/readMore2.jpg\" style=\"border: none;\" align=\"left\" /></a>\n  </div>\n</div>\n</div>\n\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:2:\"en\";a:1:{i:0;a:3:{s:5:\"value\";s:4:\"News\";s:6:\"format\";N;s:10:\"safe_value\";s:4:\"News\";}}}}',0,1539006207,1),('field:node:61','a:2:{s:4:\"body\";a:1:{s:3:\"und\";a:1:{i:0;a:5:{s:5:\"value\";s:202:\"<div><img alt=\"\" src=\"/sites/default/files/D/2010/sbe16_1437_1036m/sbe16_1437_1036m_S2.png\"/></div>\r\n<div><img alt=\"\" src=\"/sites/default/files/D/2010/sbe16_1437_1036m/sbe16_1437_1036m_T1.png\"/></div>\r\n\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:202:\"<div><img alt=\"\" src=\"/sites/default/files/D/2010/sbe16_1437_1036m/sbe16_1437_1036m_S2.png\" /></div>\n<div><img alt=\"\" src=\"/sites/default/files/D/2010/sbe16_1437_1036m/sbe16_1437_1036m_T1.png\" /></div>\n\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:3:\"und\";a:1:{i:0;a:3:{s:5:\"value\";s:23:\"2010_D_sbe16_1437_1036m\";s:6:\"format\";N;s:10:\"safe_value\";s:23:\"2010_D_sbe16_1437_1036m\";}}}}',0,1543954450,1),('field:node:63','a:2:{s:4:\"body\";a:1:{s:3:\"und\";a:1:{i:0;a:5:{s:5:\"value\";s:96:\"<div><img alt=\"\" src=\"/sites/default/files/D/2010/sbe39_1213_950m/sbe39_1213_950m_T.png\"/></div>\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:98:\"<div><img alt=\"\" src=\"/sites/default/files/D/2010/sbe39_1213_950m/sbe39_1213_950m_T.png\" /></div>\n\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:3:\"und\";a:1:{i:0;a:3:{s:5:\"value\";s:22:\"2010_D_sbe39_1213_950m\";s:6:\"format\";N;s:10:\"safe_value\";s:22:\"2010_D_sbe39_1213_950m\";}}}}',0,1543954403,1),('field:node:7','a:2:{s:4:\"body\";a:1:{s:2:\"en\";a:1:{i:0;a:5:{s:5:\"value\";s:423:\"<div><strong><a href=\"http://morsea.uniparthenope.it/?q=node/30\">a)  ACC sub surface thermal structure monitoring</a></strong></div>\r\n</br>\r\n<div><strong><a href=\"http://morsea.uniparthenope.it/?q=node/31\">b) Temperature and Salinity underway surface measurenments</a></strong></div>\r\n</br>\r\n<div><strong><a href=\"http://morsea.uniparthenope.it/?q=node/32\">c) Drifter and floats lagrangian measurements</a></strong></div>\r\n\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:422:\"<div><strong><a href=\"http://morsea.uniparthenope.it/?q=node/30\">a)  ACC sub surface thermal structure monitoring</a></strong></div>\n<p></p>\n<div><strong><a href=\"http://morsea.uniparthenope.it/?q=node/31\">b) Temperature and Salinity underway surface measurenments</a></strong></div>\n<p></p>\n<div><strong><a href=\"http://morsea.uniparthenope.it/?q=node/32\">c) Drifter and floats lagrangian measurements</a></strong></div>\n\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:2:\"en\";a:1:{i:0;a:3:{s:5:\"value\";s:20:\"Ancillary activities\";s:6:\"format\";N;s:10:\"safe_value\";s:20:\"Ancillary activities\";}}}}',0,1539006218,1),('field:node:8','a:2:{s:4:\"body\";a:1:{s:3:\"und\";a:1:{i:0;a:5:{s:5:\"value\";s:148:\"<p><a href=\"node/8\">Mooring B</a></p>\r\n\r\n<p><img alt=\"\" src=\"/sites/default/files/Mooring%20B%202014.png\" style=\"height:960px; width:720px\" /></p>\r\n\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:144:\"<p><a href=\"node/8\">Mooring B</a></p>\n<p><img alt=\"\" src=\"/sites/default/files/Mooring%20B%202014.png\" style=\"height:960px; width:720px\" /></p>\n\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:3:\"und\";a:1:{i:0;a:3:{s:5:\"value\";s:11:\"The network\";s:6:\"format\";N;s:10:\"safe_value\";s:11:\"The network\";}}}}',0,1557101648,1),('field:node:80','a:2:{s:4:\"body\";a:1:{s:3:\"und\";a:1:{i:0;a:5:{s:5:\"value\";s:202:\"<div><img alt=\"\" src=\"/sites/default/files/L/2012/L_rcm7_11559_144m/rcm7_11559_144m_speed.png\"/></div>\r\n<div><img alt=\"\" src=\"/sites/default/files/L/2012/L_rcm7_11559_144m/rcm7_11559_144m_T.png\"/></div>\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:204:\"<div><img alt=\"\" src=\"/sites/default/files/L/2012/L_rcm7_11559_144m/rcm7_11559_144m_speed.png\" /></div>\n<div><img alt=\"\" src=\"/sites/default/files/L/2012/L_rcm7_11559_144m/rcm7_11559_144m_T.png\" /></div>\n\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:3:\"und\";a:1:{i:0;a:3:{s:5:\"value\";s:24:\"2012_L_L_rcm7_11559_144m\";s:6:\"format\";N;s:10:\"safe_value\";s:24:\"2012_L_L_rcm7_11559_144m\";}}}}',0,1542128828,1),('field:node:82','a:2:{s:4:\"body\";a:1:{s:2:\"en\";a:1:{i:0;a:5:{s:5:\"value\";s:289:\"<h1 align= \"center\"><strong><a target=”_blank” href=\"http://rmm.an.ismar.cnr.it/index.php/antartide\">Antartide-Previsione di marea BTN (Baia Terra Nova)</a></strong></h1>\r\n<div align=\"center\"><iframe width=\'650\' height=\'910\' src=\'sites/default/files/Tide/PosterBTN.pdf\'></iframe></div>\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:291:\"<h1 align=\"center\"><strong><a target=\"”_blank”\" href=\"http://rmm.an.ismar.cnr.it/index.php/antartide\">Antartide-Previsione di marea BTN (Baia Terra Nova)</a></strong></h1>\n<div align=\"center\">\n<iframe width=\"650\" height=\"910\" src=\"sites/default/files/Tide/PosterBTN.pdf\"></iframe></div>\n\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:2:\"en\";a:1:{i:0;a:3:{s:5:\"value\";s:4:\"Tide\";s:6:\"format\";N;s:10:\"safe_value\";s:4:\"Tide\";}}}}',0,1539006232,1),('field:node:84','a:2:{s:4:\"body\";a:1:{s:2:\"en\";a:1:{i:0;a:5:{s:5:\"value\";s:47697:\"<table class=MsoTableGrid border=1 cellspacing=0 cellpadding=0 style=\'border-collapse:collapse;border:none;mso-border-alt:solid windowtext .5pt; mso-yfti-tbllook:1184;mso-padding-alt:0cm 5.4pt 0cm 5.4pt\'>\r\n <tr style=\'mso-yfti-irow:0;mso-yfti-firstrow:yes\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal align=center style=\'margin-bottom:0cm;margin-bottom:.0001pt;  text-align:center;line-height:normal\'><b style=\'mso-bidi-font-weight:normal\'><span  style=\'font-size:16.0pt;mso-bidi-font-size:11.0pt\'>MOORING B</span></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:1\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Cruise deployment</p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>PNRA - XXVII Expedition - 2011/12</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:2\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Cruise recovery</p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>PNRA - XXIX Expedition - 2013/14</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:3\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Coordinates</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>74.00337 S 175.09768 E</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:4\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Water depth</p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>607 m</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Magnetic declination</p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>114°N</p>\r\n  </td>\r\n </tr>\r\n<tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>deployment</p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>28/01/2012 16:58:00</p>\r\n  </td>\r\n </tr>\r\n<tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>recovery</p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>29/01/2014</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:5\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal align=center style=\'margin-bottom:0cm;margin-bottom:.0001pt;  text-align:center;line-height:normal\'><b style=\'mso-bidi-font-weight:normal\'><span  style=\'font-size:12.0pt;mso-bidi-font-size:11.0pt\'>INSTRUMENT</span></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:6\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN</b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Depth</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Sampling</b></span><b  style=\'mso-bidi-font-weight:normal\'></b></p>\r\n  </td>\r\n    <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:7\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>AANDERAA RCM7 SN 9470</p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>602 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>120 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:8\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET</b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL</b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START</b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:9\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;\r\n  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Raw data</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'></p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'></p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:10\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:11\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD quality check</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:12\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Quality check L.Marziani Univ. Parthenope 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:13\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:14\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN</b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Depth</b></span><b  style=\'mso-bidi-font-weight:normal\'></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Sampling</b></span><b  style=\'mso-bidi-font-weight:normal\'></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:15\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/106\">SEACAT SBE16 SN 4494</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>500 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>30 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>T</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:16\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET</b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL</b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START</b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:17\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Raw data</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>28/01/2012  17:11:00</p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>28/01/2014  23:11:00</p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:18\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:19\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:20\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span  class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:21\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:22\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Depth</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Sampling</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:23\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/105\">AANDERAA RCM7 SN 9474</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>229 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>120 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>U, V, Mod, Dir</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:24\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET</b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL</b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START</b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:25\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Raw data</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>28/01/2012  17:00:00</p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>28/01/2014  23:00:00</p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:26\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:27\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:28\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:6\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN</b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Depth</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Sampling</b></span><b  style=\'mso-bidi-font-weight:normal\'></b></p>\r\n  </td>\r\n    <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:7\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/107\">SEACAT SBE37 SN 4118</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>228 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>30 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>T</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:8\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET</b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL</b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START</b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:9\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;\r\n  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Raw data</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>28/01/2012 17:30:00</p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>28/01/2014 23:00:00</p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:10\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:11\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD quality check</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:12\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Quality check L.Marziani Univ. Parthenope 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n</table>\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:47214:\"<table class=\"MsoTableGrid\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse;border:none;mso-border-alt:solid windowtext .5pt; mso-yfti-tbllook:1184;mso-padding-alt:0cm 5.4pt 0cm 5.4pt\"><tr style=\"mso-yfti-irow:0;mso-yfti-firstrow:yes\"><td width=\"652\" colspan=\"5\" valign=\"top\" style=\"width:488.9pt;border:solid windowtext 1.0pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" align=\"center\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;  text-align:center;line-height:normal\"><b style=\"mso-bidi-font-weight:normal\"><span style=\"font-size:16.0pt;mso-bidi-font-size:11.0pt\">MOORING B</span></b></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:1\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt;border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">Cruise deployment</p>\n</td>\n<td width=\"456\" colspan=\"3\" valign=\"top\" style=\"width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">PNRA - XXVII Expedition - 2011/12</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:2\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">Cruise recovery</p>\n</td>\n<td width=\"456\" colspan=\"3\" valign=\"top\" style=\"width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">PNRA - XXIX Expedition - 2013/14</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:3\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\">Coordinates</span></p>\n</td>\n<td width=\"456\" colspan=\"3\" valign=\"top\" style=\"width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\">74.00337 S 175.09768 E</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:4\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">Water depth</p>\n</td>\n<td width=\"456\" colspan=\"3\" valign=\"top\" style=\"width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">607 m</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:5\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">Magnetic declination</p>\n</td>\n<td width=\"456\" colspan=\"3\" valign=\"top\" style=\"width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">114°N</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:5\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">deployment</p>\n</td>\n<td width=\"456\" colspan=\"3\" valign=\"top\" style=\"width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">28/01/2012 16:58:00</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:5\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">recovery</p>\n</td>\n<td width=\"456\" colspan=\"3\" valign=\"top\" style=\"width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">29/01/2014</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:5\"><td width=\"652\" colspan=\"5\" valign=\"top\" style=\"width:488.9pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" align=\"center\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;  text-align:center;line-height:normal\"><b style=\"mso-bidi-font-weight:normal\"><span style=\"font-size:12.0pt;mso-bidi-font-size:11.0pt\">INSTRUMENT</span></b></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:6\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\"><b style=\"mso-bidi-font-weight:normal\">Type</b></span><b style=\"mso-bidi-font-weight:normal\"> &amp; SN</b></p>\n</td>\n<td width=\"151\" valign=\"top\" style=\"width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\"><b style=\"mso-bidi-font-weight:normal\">Depth</b></span><b style=\"mso-bidi-font-weight:normal\"><p></p></b></p>\n</td>\n<td width=\"142\" valign=\"top\" style=\"width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\"><b style=\"mso-bidi-font-weight:normal\">Sampling</b></span><b style=\"mso-bidi-font-weight:normal\"></b></p>\n</td>\n<td width=\"142\" valign=\"top\" style=\"width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\"><b style=\"mso-bidi-font-weight:normal\">Parameters</b></span><b style=\"mso-bidi-font-weight:normal\"></b></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:7\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">AANDERAA RCM7 SN 9470</p>\n</td>\n<td width=\"151\" valign=\"top\" style=\"width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">602 m</p>\n</td>\n<td width=\"142\" valign=\"top\" style=\"width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">120 min</p>\n</td>\n<td width=\"163\" valign=\"top\" style=\"width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:8\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">DATASET</b></p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">LEVEL</b></p>\n</td>\n<td width=\"151\" valign=\"top\" style=\"width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">START</b></p>\n</td>\n<td width=\"304\" colspan=\"2\" valign=\"top\" style=\"width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">STOP</b></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:9\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;&lt;br /&gt;&#10;  padding:0cm 5.4pt 0cm 5.4pt\"><br /><p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">Raw data</p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">0</p>\n</td>\n<td width=\"151\" rowspan=\"4\" valign=\"top\" style=\"width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"></p>\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><p> </p></p>\n</td>\n<td width=\"304\" colspan=\"2\" rowspan=\"4\" valign=\"top\" style=\"width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"></p>\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><p> </p></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:10\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\">Despiking</span></p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">1</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:11\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">CTD quality check</p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">2</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:12\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">Quality check L.Marziani Univ. Parthenope 09/2014</p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">3</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:13\"><td width=\"652\" colspan=\"5\" valign=\"top\" style=\"width:488.9pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><p> </p></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:14\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\"><b style=\"mso-bidi-font-weight:normal\">Type</b></span><b style=\"mso-bidi-font-weight:normal\"> &amp; SN</b></p>\n</td>\n<td width=\"151\" valign=\"top\" style=\"width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\"><b style=\"mso-bidi-font-weight:normal\">Depth</b></span><b style=\"mso-bidi-font-weight:normal\"></b></p>\n</td>\n<td width=\"142\" valign=\"top\" style=\"width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\"><b style=\"mso-bidi-font-weight:normal\">Sampling</b></span><b style=\"mso-bidi-font-weight:normal\"></b></p>\n</td>\n<td width=\"163\" valign=\"top\" style=\"width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\"><b style=\"mso-bidi-font-weight:normal\">Parameters</b></span><b style=\"mso-bidi-font-weight:normal\"></b></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:15\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><a href=\"http://morsea.uniparthenope.it/?q=node/106\">SEACAT SBE16 SN 4494</a></p>\n</td>\n<td width=\"151\" valign=\"top\" style=\"width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">500 m</p>\n</td>\n<td width=\"142\" valign=\"top\" style=\"width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">30 min</p>\n</td>\n<td width=\"163\" valign=\"top\" style=\"width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">T</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:16\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">DATASET</b></p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">LEVEL</b></p>\n</td>\n<td width=\"151\" valign=\"top\" style=\"width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">START</b></p>\n</td>\n<td width=\"304\" colspan=\"2\" valign=\"top\" style=\"width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">STOP</b></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:17\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">Raw data</p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">0</p>\n</td>\n<td width=\"151\" rowspan=\"4\" valign=\"top\" style=\"width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">28/01/2012  17:11:00</p>\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><p> </p></p>\n</td>\n<td width=\"304\" colspan=\"2\" rowspan=\"4\" valign=\"top\" style=\"width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">28/01/2014  23:11:00</p>\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><p> </p></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:18\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\">Despiking</span></p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">1</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:19\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">CTD <span class=\"SpellE\">quality</span> <span class=\"SpellE\">check</span></p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">2</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:20\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\"><span class=\"SpellE\">Quality</span> <span class=\"SpellE\">check</span> <span class=\"SpellE\">L.Marziani</span> <span class=\"SpellE\">Univ</span>. <span class=\"SpellE\">Parthenope</span> 09/2014</p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">3</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:21\"><td width=\"652\" colspan=\"5\" valign=\"top\" style=\"width:488.9pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><p> </p></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:22\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\"><b style=\"mso-bidi-font-weight:normal\">Type</b></span><b style=\"mso-bidi-font-weight:normal\"> &amp; SN<p></p></b></p>\n</td>\n<td width=\"151\" valign=\"top\" style=\"width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\"><b style=\"mso-bidi-font-weight:normal\">Depth</b></span><b style=\"mso-bidi-font-weight:normal\"><p></p></b></p>\n</td>\n<td width=\"142\" valign=\"top\" style=\"width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\"><b style=\"mso-bidi-font-weight:normal\">Sampling</b></span><b style=\"mso-bidi-font-weight:normal\"><p></p></b></p>\n</td>\n<td width=\"163\" valign=\"top\" style=\"width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\"><b style=\"mso-bidi-font-weight:normal\">Parameters</b></span><b style=\"mso-bidi-font-weight:normal\"><p></p></b></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:23\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><a href=\"http://morsea.uniparthenope.it/?q=node/105\">AANDERAA RCM7 SN 9474</a></p>\n</td>\n<td width=\"151\" valign=\"top\" style=\"width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">229 m</p>\n</td>\n<td width=\"142\" valign=\"top\" style=\"width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">120 min</p>\n</td>\n<td width=\"163\" valign=\"top\" style=\"width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">U, V, Mod, Dir</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:24\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">DATASET</b></p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">LEVEL</b></p>\n</td>\n<td width=\"151\" valign=\"top\" style=\"width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">START</b></p>\n</td>\n<td width=\"304\" colspan=\"2\" valign=\"top\" style=\"width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">STOP</b></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:25\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">Raw data</p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">0</p>\n</td>\n<td width=\"151\" rowspan=\"4\" valign=\"top\" style=\"width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">28/01/2012  17:00:00</p>\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><p> </p></p>\n</td>\n<td width=\"304\" colspan=\"2\" rowspan=\"4\" valign=\"top\" style=\"width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">28/01/2014  23:00:00</p>\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><p> </p></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:26\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\">Despiking</span></p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">1</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:27\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">CTD <span class=\"SpellE\">quality</span> <span class=\"SpellE\">check</span></p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">2</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:28\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\">Quality</span> <span class=\"SpellE\">check</span> <span class=\"SpellE\">L.Marziani</span> <span class=\"SpellE\">Univ</span>. <span class=\"SpellE\">Parthenope</span> 09/2014</p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">3</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:6\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\"><b style=\"mso-bidi-font-weight:normal\">Type</b></span><b style=\"mso-bidi-font-weight:normal\"> &amp; SN</b></p>\n</td>\n<td width=\"151\" valign=\"top\" style=\"width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\"><b style=\"mso-bidi-font-weight:normal\">Depth</b></span><b style=\"mso-bidi-font-weight:normal\"><p></p></b></p>\n</td>\n<td width=\"142\" valign=\"top\" style=\"width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\"><b style=\"mso-bidi-font-weight:normal\">Sampling</b></span><b style=\"mso-bidi-font-weight:normal\"></b></p>\n</td>\n<td width=\"142\" valign=\"top\" style=\"width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\"><b style=\"mso-bidi-font-weight:normal\">Parameters</b></span><b style=\"mso-bidi-font-weight:normal\"></b></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:7\"><td width=\"196\" colspan=\"2\" valign=\"top\" style=\"width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><a href=\"http://morsea.uniparthenope.it/?q=node/107\">SEACAT SBE37 SN 4118</a></p>\n</td>\n<td width=\"151\" valign=\"top\" style=\"width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">228 m</p>\n</td>\n<td width=\"142\" valign=\"top\" style=\"width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">30 min</p>\n</td>\n<td width=\"163\" valign=\"top\" style=\"width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">T</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:8\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">DATASET</b></p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">LEVEL</b></p>\n</td>\n<td width=\"151\" valign=\"top\" style=\"width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">START</b></p>\n</td>\n<td width=\"304\" colspan=\"2\" valign=\"top\" style=\"width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><b style=\"mso-bidi-font-weight:normal\">STOP</b></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:9\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;&lt;br /&gt;&#10;  padding:0cm 5.4pt 0cm 5.4pt\"><br /><p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">Raw data</p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">0</p>\n</td>\n<td width=\"151\" rowspan=\"4\" valign=\"top\" style=\"width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">28/01/2012 17:30:00</p>\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><p> </p></p>\n</td>\n<td width=\"304\" colspan=\"2\" rowspan=\"4\" valign=\"top\" style=\"width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">28/01/2014 23:00:00</p>\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><p> </p></p>\n</td>\n</tr><tr style=\"mso-yfti-irow:10\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\"><span class=\"SpellE\">Despiking</span></p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">1</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:11\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">CTD quality check</p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">2</p>\n</td>\n</tr><tr style=\"mso-yfti-irow:12\"><td width=\"140\" valign=\"top\" style=\"width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">Quality check L.Marziani Univ. Parthenope 09/2014</p>\n</td>\n<td width=\"57\" valign=\"top\" style=\"width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\">\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\">3</p>\n</td>\n</tr></table>\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:2:\"en\";a:1:{i:0;a:3:{s:5:\"value\";s:23:\"Metadati Mooring G 201B\";s:6:\"format\";N;s:10:\"safe_value\";s:23:\"Metadati Mooring G 201B\";}}}}',0,1542249898,1),('field:node:85','a:2:{s:4:\"body\";a:1:{s:3:\"und\";a:1:{i:0;a:5:{s:5:\"value\";s:1552:\"<h1 align= \"center\"><strong>CA 09-10 XXV Ita. Esp. New Zealand</strong></h1>\r\n\r\n<h2 align=\"center\"><strong>Extract from the Italian XXV Antarctic expedition report</strong></h2>\r\n</br>\r\n<p align=\"justify\">The vessel Italica leaves the port of Lyttelton (NZ) in the direction of Antarctica and began XBT (SIPPICAN mod.T7, depth. max 760 m) casts, just after the end of New Zealand continental slope, coordinates 46°22’S-173°38’E, at 14:15 of 25/01/2010.\r\nXBT launches continue until the beginning of the Antarctic continental slope, reached on 29/01/2010 at 13:27 in position 70°S-175°53’E following the route in figure 1.\r\nA total of 95 valid XBT profiles have been obtained, which have allowed to determine the positions of the ACC thermohaline fronts that in this zone separate areas with different characteristics and dynamics.\r\nDuring the cruise, reduced ship speed allowed to obtain XBT data even at about 900 m depth without any loss of vertical resolution or change in the probe type.\r\nThese data are also used as a comparison for  remote sensing data from operational satellites SMOS (Soil Moisture and Ocean Salinity).</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/CA09-10_XXVItaEsp_NZ_1.png\" /></div>\r\n<p align=\"center\">Fig 1: Map of XBT launches in the period 25-29/01/2010 (left)  and temperature (right) section relative to the layer 0-1000 m from New Zealand to the Ross Sea.</p>\r\n\r\n<a href=\"http://www.pnra.it/biblioteca/docs/rapporti_campagna/CA09-10.pdf\">http://www.pnra.it/biblioteca/docs/rapporti_campagna/CA09-10.pdf</a>\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:1571:\"<h1 align=\"center\"><strong>CA 09-10 XXV Ita. Esp. New Zealand</strong></h1>\n<h2 align=\"center\"><strong>Extract from the Italian XXV Antarctic expedition report</strong></h2>\n<p></p>\n<p align=\"justify\">The vessel Italica leaves the port of Lyttelton (NZ) in the direction of Antarctica and began XBT (SIPPICAN mod.T7, depth. max 760 m) casts, just after the end of New Zealand continental slope, coordinates 46°22’S-173°38’E, at 14:15 of 25/01/2010.<br />\nXBT launches continue until the beginning of the Antarctic continental slope, reached on 29/01/2010 at 13:27 in position 70°S-175°53’E following the route in figure 1.<br />\nA total of 95 valid XBT profiles have been obtained, which have allowed to determine the positions of the ACC thermohaline fronts that in this zone separate areas with different characteristics and dynamics.<br />\nDuring the cruise, reduced ship speed allowed to obtain XBT data even at about 900 m depth without any loss of vertical resolution or change in the probe type.<br />\nThese data are also used as a comparison for  remote sensing data from operational satellites SMOS (Soil Moisture and Ocean Salinity).</p>\n<div><img alt=\"\" src=\"/sites/default/files/CA09-10_XXVItaEsp_NZ_1.png\" /></div>\n<p align=\"center\">Fig 1: Map of XBT launches in the period 25-29/01/2010 (left)  and temperature (right) section relative to the layer 0-1000 m from New Zealand to the Ross Sea.</p>\n<p><a href=\"http://www.pnra.it/biblioteca/docs/rapporti_campagna/CA09-10.pdf\">http://www.pnra.it/biblioteca/docs/rapporti_campagna/CA09-10.pdf</a></p>\n\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:3:\"und\";a:1:{i:0;a:3:{s:5:\"value\";s:20:\"CA09-10_XXVItaEsp_NZ\";s:6:\"format\";N;s:10:\"safe_value\";s:20:\"CA09-10_XXVItaEsp_NZ\";}}}}',0,1539007969,1),('field:node:86','a:2:{s:4:\"body\";a:1:{s:3:\"und\";a:1:{i:0;a:5:{s:5:\"value\";s:2860:\"<h1 align= \"center\"><strong>CA 09-10 XXV Ita. Esp. South Africa SANAE 49</strong></h1>\r\n\r\n<h2 align=\"center\"><strong>Extract from the SANAE_49_Cruise Report</strong></h2>\r\n</br>\r\n<p align=\"justify\">The SANAE cruise took place on board the R/V Agulhas which sailed from Cape Town on the 09/12/2009 and returned on the 23/02/2010. The cruise track is divided into two sections; the leg from Cape Town to Antarctica (09–22/12/2009; Figure 1), and the leg from Antarctica back to Cape Town (13–23/02/2010; Figure 2).\r\nThe two legs were mainly focused on the underway measurements of surface biochemical parameters together with the physical structure of the water column using expendable temperature probes (XBTs) and an Underway Conductivity Temperature and Depth probe (UCTD).\r\nDuring the cruise, first leg launches of disposable probes started at 33.89°S-17.15°E and finished at 68.11°S-4.61°E, while the casts during the return started at 69.5°S-5.54°W and ended at 34.45°S-15.98°E.</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/CA09-10_XXVItaEsp_SA_1.jpg\" /></div>\r\n<p align=\"center\">Fig 2: Map of XBT launches in the period 8-22/12/2009 (left) and section of temperature relative to the layer 0-800m, from Cape Town to Antarctica (right).</p>\r\n<p align=\"justify\">To effectively measure oceanic changes of heat fluxes, in particular across regions of inter-basin exchange, high density observations need to be undertaken. Repeat XBT sections across “chokepoint” sections provide measurements of changes in upper ocean heat content and SST on both seasonal and inter-annual time scales. In addition, by exploiting the relationship between upper ocean temperature and dynamic height, XBTs can be used to infer velocities even in the Southern Ocean where salinity changes are important. In this way, XBT sections serve as a useful tool in measuring changes in the inter-ocean exchange of heat as well as identify and locate fronts and water masses.</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/CA09-10_XXVItaEsp_SA_2.jpg\" /></div>\r\n<p align=\"center\">Fig 2: Map of XBT launches in the period 22/02-02/03/2009 (left), and section of temperature relative to the layer 0-900m, from Cape Town to Antarctica (right).</p>\r\n<p align=\"justify\">XBTs were funded by the NOAA\'s Office of Global Programs as part of their High Density XBT project at NOAA/AOML. 325 XBT’s were deployed every two hours (~15 nautical mile intervals) increasing to every one hour (~10 nm) over the main frontal regions and over major topographic features. Most deployments reached a maximum working depth of the Sippican Deep Blue XBT, which is in the order of 780 m but slower ship speed allowed data collection up to 900 m depth.</p>\r\n<a href=\"http://www.aoml.noaa.gov/phod/hdenxbt/high_density_home.html\">http://www.aoml.noaa.gov/phod/hdenxbt/high_density_home.html</a>\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:2867:\"<h1 align=\"center\"><strong>CA 09-10 XXV Ita. Esp. South Africa SANAE 49</strong></h1>\n<h2 align=\"center\"><strong>Extract from the SANAE_49_Cruise Report</strong></h2>\n<p></p>\n<p align=\"justify\">The SANAE cruise took place on board the R/V Agulhas which sailed from Cape Town on the 09/12/2009 and returned on the 23/02/2010. The cruise track is divided into two sections; the leg from Cape Town to Antarctica (09–22/12/2009; Figure 1), and the leg from Antarctica back to Cape Town (13–23/02/2010; Figure 2).<br />\nThe two legs were mainly focused on the underway measurements of surface biochemical parameters together with the physical structure of the water column using expendable temperature probes (XBTs) and an Underway Conductivity Temperature and Depth probe (UCTD).<br />\nDuring the cruise, first leg launches of disposable probes started at 33.89°S-17.15°E and finished at 68.11°S-4.61°E, while the casts during the return started at 69.5°S-5.54°W and ended at 34.45°S-15.98°E.</p>\n<div><img alt=\"\" src=\"/sites/default/files/CA09-10_XXVItaEsp_SA_1.jpg\" /></div>\n<p align=\"center\">Fig 2: Map of XBT launches in the period 8-22/12/2009 (left) and section of temperature relative to the layer 0-800m, from Cape Town to Antarctica (right).</p>\n<p align=\"justify\">To effectively measure oceanic changes of heat fluxes, in particular across regions of inter-basin exchange, high density observations need to be undertaken. Repeat XBT sections across “chokepoint” sections provide measurements of changes in upper ocean heat content and SST on both seasonal and inter-annual time scales. In addition, by exploiting the relationship between upper ocean temperature and dynamic height, XBTs can be used to infer velocities even in the Southern Ocean where salinity changes are important. In this way, XBT sections serve as a useful tool in measuring changes in the inter-ocean exchange of heat as well as identify and locate fronts and water masses.</p>\n<div><img alt=\"\" src=\"/sites/default/files/CA09-10_XXVItaEsp_SA_2.jpg\" /></div>\n<p align=\"center\">Fig 2: Map of XBT launches in the period 22/02-02/03/2009 (left), and section of temperature relative to the layer 0-900m, from Cape Town to Antarctica (right).</p>\n<p align=\"justify\">XBTs were funded by the NOAA\'s Office of Global Programs as part of their High Density XBT project at NOAA/AOML. 325 XBT’s were deployed every two hours (~15 nautical mile intervals) increasing to every one hour (~10 nm) over the main frontal regions and over major topographic features. Most deployments reached a maximum working depth of the Sippican Deep Blue XBT, which is in the order of 780 m but slower ship speed allowed data collection up to 900 m depth.</p>\n<p><a href=\"http://www.aoml.noaa.gov/phod/hdenxbt/high_density_home.html\">http://www.aoml.noaa.gov/phod/hdenxbt/high_density_home.html</a></p>\n\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:3:\"und\";a:1:{i:0;a:3:{s:5:\"value\";s:20:\"CA09-10_XXVItaEsp_SA\";s:6:\"format\";N;s:10:\"safe_value\";s:20:\"CA09-10_XXVItaEsp_SA\";}}}}',0,1538787856,1),('field:node:87','a:2:{s:4:\"body\";a:1:{s:3:\"und\";a:1:{i:0;a:5:{s:5:\"value\";s:3271:\"<h1 align= \"center\"><strong>CA 10-11 XXVI ita. Esp. South Africa SANAE 50</strong></h1>\r\n\r\n<h2 align=\"center\"><strong>Extract from the 2010-2011 SANAE 50 DATA REPORT </strong></h2>\r\n</br>\r\n<p align=\"justify\">The voyage started from Cape Town on the 8/12/2010 and returned to Cape Town on 16/02/2011.\r\nIn the period 8-19/12/2010, southward along the GoodHope hydrographic transect, with hydrographic stations occurred at regular interval using XBT and UCTD deployments which began at 33.85 S and 18.25 E, and ended at 70.5 S and 7.9 W (Fig 1).</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/CA10-11_XXVItaEsp_SA_1.png\" /></div>\r\n<p align=\"center\">Fig 1. Map of XBT launches in the period 08-19/12/2010 (left), and temperature section relative to the layer 0-900 m from Cape Town to Antarctica (right).</p>\r\n<p align=\"justify\">The major part of the flow associated with the ACC is concentrated at a number of circumpolar fronts, which act as boundaries separating zones of uniform water masses. From north to south the fronts and associated zones of the Southern Ocean are: Subtropical Convergence (STC), Subantarctic Zone (SAZ), Subantarctic Front (SAF), Polar Frontal Zone (PFZ), Antarctic Polar Front (APF), Antarctic Zone (AAZ) and Antarctic Divergence (AAD).\r\nFrom 05/02 to 16/02/2011, northward along GoodHope hydrographic transect, hydrographic stations occurred at regular interval using a combination of XBT and UCTD deployments which began at 70.48 S and 7.7 W, and ended at 33.84 S and 17.8 W (fig 2).</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/CA10-11_XXVItaEsp_SA_2.png\" /></div>\r\n<p align=\"center\">Fig 2  Map of XBT launches in the period 22/02-02/03/2010(left), and temperature section relative to the layer 0-900 m from Antartica to Cape Town (right).</p>\r\n<p align=\"justify\">In the framework of the GoodHope program XBTs were funded by the NOAA\'s Office of Global Programs as part of their High Density XBT project at NOAA/AOML. A total of 166 Sippican Deep Blue XBTs were deployed between Cape Town and Antarctica at the GoodHope line XBTs were deployed at ~20 nautical mile intervals increasing to every ~10 nm over the main frontal regions and were alternated with UCTD casts. In total, 14 XBTs (~8%) failed mainly as a result of strong winds and sea swell blowing the running signal wire against the ship’s hull, which resulted in the XBT wire stretching and thus insulation leakages. On the return leg of the GoodHope line, 193 XBT’s were deployed of which 21 (~11%) malfunctioned. On the return leg, XBTs were deployed at higher spatial resolution northwards of ~50°S.\r\n\r\nThe aim of the GoodHope programme is to establish an intensive monitoring platform that will provide detailed information on the physical structure and volume flux of waters south of South Africa, where the inter-basin exchanges occur. A key component of this programme is the implementation of the high-density XBT line AX25 that runs from Cape Town to Antarctica.\r\nThe SANAE cruise track crossed four distinct oceanic domains: the seasonal marginal ice-edge zone, the permanently open ocean zone, the shelf zone of the South Sandwich and South Georgia Islands and the frontal zones of the Antarctic Polar Front, the Subantarctic Front and the Subtropical Front.</p>\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:3281:\"<h1 align=\"center\"><strong>CA 10-11 XXVI ita. Esp. South Africa SANAE 50</strong></h1>\n<h2 align=\"center\"><strong>Extract from the 2010-2011 SANAE 50 DATA REPORT </strong></h2>\n<p></p>\n<p align=\"justify\">The voyage started from Cape Town on the 8/12/2010 and returned to Cape Town on 16/02/2011.<br />\nIn the period 8-19/12/2010, southward along the GoodHope hydrographic transect, with hydrographic stations occurred at regular interval using XBT and UCTD deployments which began at 33.85 S and 18.25 E, and ended at 70.5 S and 7.9 W (Fig 1).</p>\n<div><img alt=\"\" src=\"/sites/default/files/CA10-11_XXVItaEsp_SA_1.png\" /></div>\n<p align=\"center\">Fig 1. Map of XBT launches in the period 08-19/12/2010 (left), and temperature section relative to the layer 0-900 m from Cape Town to Antarctica (right).</p>\n<p align=\"justify\">The major part of the flow associated with the ACC is concentrated at a number of circumpolar fronts, which act as boundaries separating zones of uniform water masses. From north to south the fronts and associated zones of the Southern Ocean are: Subtropical Convergence (STC), Subantarctic Zone (SAZ), Subantarctic Front (SAF), Polar Frontal Zone (PFZ), Antarctic Polar Front (APF), Antarctic Zone (AAZ) and Antarctic Divergence (AAD).<br />\nFrom 05/02 to 16/02/2011, northward along GoodHope hydrographic transect, hydrographic stations occurred at regular interval using a combination of XBT and UCTD deployments which began at 70.48 S and 7.7 W, and ended at 33.84 S and 17.8 W (fig 2).</p>\n<div><img alt=\"\" src=\"/sites/default/files/CA10-11_XXVItaEsp_SA_2.png\" /></div>\n<p align=\"center\">Fig 2  Map of XBT launches in the period 22/02-02/03/2010(left), and temperature section relative to the layer 0-900 m from Antartica to Cape Town (right).</p>\n<p align=\"justify\">In the framework of the GoodHope program XBTs were funded by the NOAA\'s Office of Global Programs as part of their High Density XBT project at NOAA/AOML. A total of 166 Sippican Deep Blue XBTs were deployed between Cape Town and Antarctica at the GoodHope line XBTs were deployed at ~20 nautical mile intervals increasing to every ~10 nm over the main frontal regions and were alternated with UCTD casts. In total, 14 XBTs (~8%) failed mainly as a result of strong winds and sea swell blowing the running signal wire against the ship’s hull, which resulted in the XBT wire stretching and thus insulation leakages. On the return leg of the GoodHope line, 193 XBT’s were deployed of which 21 (~11%) malfunctioned. On the return leg, XBTs were deployed at higher spatial resolution northwards of ~50°S.</p>\n<p>The aim of the GoodHope programme is to establish an intensive monitoring platform that will provide detailed information on the physical structure and volume flux of waters south of South Africa, where the inter-basin exchanges occur. A key component of this programme is the implementation of the high-density XBT line AX25 that runs from Cape Town to Antarctica.<br />\nThe SANAE cruise track crossed four distinct oceanic domains: the seasonal marginal ice-edge zone, the permanently open ocean zone, the shelf zone of the South Sandwich and South Georgia Islands and the frontal zones of the Antarctic Polar Front, the Subantarctic Front and the Subtropical Front.</p>\n\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:3:\"und\";a:1:{i:0;a:3:{s:5:\"value\";s:20:\"CA10-11_XXVItaEsp_SA\";s:6:\"format\";N;s:10:\"safe_value\";s:20:\"CA10-11_XXVItaEsp_SA\";}}}}',0,1538771242,1),('field:node:88','a:2:{s:4:\"body\";a:1:{s:3:\"und\";a:1:{i:0;a:5:{s:5:\"value\";s:3589:\"<h1 align= \"center\"><strong>CA 11-12 XXVII Ita. Esp	South Africa SANAE 51</strong></h1>\r\n\r\n<h2 align=\"center\"><strong>Extract from the Italian XXVII Antarctc expedition report and NOAA AX25 Report</strong></h2>\r\n</br>\r\n<p align=\"justify\">The Antarctic Campaign 2011-2012 has seen the fulfillment and continuation of the research activities of the Project SOChIC carried out in collaboration between the PNRA, and the South African National Antarctic Programme (SANAP).\r\nActivities connected to the launch of Expendable Bathytermograph (XBT) probes have been carried on in the framework of The GoodHope and NOAA/AOML Atlantic high-density projects.\r\nBoth projects carry on an intensive monitoring programme that provide information of the vertical thermal structure of the surface layer of the Ocean.\r\nDuring the 158th voyage of the R/V Agulhas between Cape Town and Antarctica a total of 280 XBT Have been deployed with a spatial resolution of about15 nautical mile (2 hours of navigation).\r\nMost deployments reached a maximum working depth of the Sippican Deep Blue XBT, which is in the order of 780 m but slower ship speed allowed data collection up to 900 m depth.\r\nXBTs were funded by the NOAA\'s Office of Global Programs as part of their High Density XBT project at NOAA/AOML. \r\nDuring the first leg of the cruise, from Cape Town to Antarctica (Fig 1), 161 XBT were launched between -33.86°S/18.01°E (08/12/2011 h16:16) and -70.48°S/8.14°W (22/12/2011 h22:02) where sea ice condition imposed a stop of the deployment.\r\nThe release of 167 XBT probes (only 6 showed malfunctions) occurred along the route shown in Figure 1, with equivalent temporal resolution of about 2h, to the average speed of the ship, about 20 nm.</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/CA11-12_XXVII_ItaEsp_SA_1.png\" /></div>\r\n<p align=\"center\">Fig 1 Map of XBT launches in the period 8-22/12/2011 (left), and section of temperature relative to the layer 0-900m, from Cape Town to Antarctica (right).</p>\r\n<p align=\"justify\">Is worth noting that the spatial and temporal resolution of the launches XBT is the result of a careful planning process aimed at optimizing the scientific and technological resources available to the research project. Indeed launches XBT were alternated with the use of a probe UCTD (Underway CTD) gathering, always moving ship, the data of temperature, salinity and pressure of the first 400 meters of the water column. The final result obtained through the merging of the two datasets is a spatial/temporal resolution in data collection of approximately 1h (10 nm).\r\nThe section of temperature obtained through the use of XBT probes has allowed to identify the location of the main thermohaline fronts of the Antarctic Circumpolar Current (ACC). \r\nFurthermore during the crossing were released about 20 different types of float able to collect various data, including, in addition to temperature and salinity, dissolved oxygen and nutrient concentration.\r\nSecond leg of the cruise started on the 22/02/2012 and was concluded on the 02/03/2012. During this leg 119 XBT were launched between 69.22°S/7.11°W and 35.63°S/17.44°E.\r\nShip and weather troubles imposed a track different from the expected Goodhope line. Map of deployments is shown in figure 2 as well as temperature section from profiles.</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/CA11-12_XXVII_ItaEsp_SA_2.png\" /></div>\r\n<p align=\"center\">Fig 2: Map of XBT launches in the period 22/02-03/03/2012 (left) and section of temperature relative to the layer 0-900m, from Antarctica to Cape Town (right).</p>\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:3634:\"<h1 align=\"center\"><strong>CA 11-12 XXVII Ita. Esp	South Africa SANAE 51</strong></h1>\n<h2 align=\"center\"><strong>Extract from the Italian XXVII Antarctc expedition report and NOAA AX25 Report</strong></h2>\n<p></p>\n<p align=\"justify\">The Antarctic Campaign 2011-2012 has seen the fulfillment and continuation of the research activities of the Project SOChIC carried out in collaboration between the PNRA, and the South African National Antarctic Programme (SANAP).<br />\nActivities connected to the launch of Expendable Bathytermograph (XBT) probes have been carried on in the framework of The GoodHope and NOAA/AOML Atlantic high-density projects.<br />\nBoth projects carry on an intensive monitoring programme that provide information of the vertical thermal structure of the surface layer of the Ocean.<br />\nDuring the 158th voyage of the R/V Agulhas between Cape Town and Antarctica a total of 280 XBT Have been deployed with a spatial resolution of about15 nautical mile (2 hours of navigation).<br />\nMost deployments reached a maximum working depth of the Sippican Deep Blue XBT, which is in the order of 780 m but slower ship speed allowed data collection up to 900 m depth.<br />\nXBTs were funded by the NOAA\'s Office of Global Programs as part of their High Density XBT project at NOAA/AOML.<br />\nDuring the first leg of the cruise, from Cape Town to Antarctica (Fig 1), 161 XBT were launched between -33.86°S/18.01°E (08/12/2011 h16:16) and -70.48°S/8.14°W (22/12/2011 h22:02) where sea ice condition imposed a stop of the deployment.<br />\nThe release of 167 XBT probes (only 6 showed malfunctions) occurred along the route shown in Figure 1, with equivalent temporal resolution of about 2h, to the average speed of the ship, about 20 nm.</p>\n<div><img alt=\"\" src=\"/sites/default/files/CA11-12_XXVII_ItaEsp_SA_1.png\" /></div>\n<p align=\"center\">Fig 1 Map of XBT launches in the period 8-22/12/2011 (left), and section of temperature relative to the layer 0-900m, from Cape Town to Antarctica (right).</p>\n<p align=\"justify\">Is worth noting that the spatial and temporal resolution of the launches XBT is the result of a careful planning process aimed at optimizing the scientific and technological resources available to the research project. Indeed launches XBT were alternated with the use of a probe UCTD (Underway CTD) gathering, always moving ship, the data of temperature, salinity and pressure of the first 400 meters of the water column. The final result obtained through the merging of the two datasets is a spatial/temporal resolution in data collection of approximately 1h (10 nm).<br />\nThe section of temperature obtained through the use of XBT probes has allowed to identify the location of the main thermohaline fronts of the Antarctic Circumpolar Current (ACC).<br />\nFurthermore during the crossing were released about 20 different types of float able to collect various data, including, in addition to temperature and salinity, dissolved oxygen and nutrient concentration.<br />\nSecond leg of the cruise started on the 22/02/2012 and was concluded on the 02/03/2012. During this leg 119 XBT were launched between 69.22°S/7.11°W and 35.63°S/17.44°E.<br />\nShip and weather troubles imposed a track different from the expected Goodhope line. Map of deployments is shown in figure 2 as well as temperature section from profiles.</p>\n<div><img alt=\"\" src=\"/sites/default/files/CA11-12_XXVII_ItaEsp_SA_2.png\" /></div>\n<p align=\"center\">Fig 2: Map of XBT launches in the period 22/02-03/03/2012 (left) and section of temperature relative to the layer 0-900m, from Antarctica to Cape Town (right).</p>\n\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:3:\"und\";a:1:{i:0;a:3:{s:5:\"value\";s:23:\"CA11-12_XXVII_ItaEsp_SA\";s:6:\"format\";N;s:10:\"safe_value\";s:23:\"CA11-12_XXVII_ItaEsp_SA\";}}}}',0,1539008012,1),('field:node:89','a:2:{s:4:\"body\";a:1:{s:3:\"und\";a:1:{i:0;a:5:{s:5:\"value\";s:1948:\"<h1 align= \"center\"><strong>CA 11-12 XXVII ita. Esp.	New Zealand</strong></h1>\r\n\r\n<h2 align=\"center\"><strong>Extract from the Italian XXVII antarctic expedition report</strong></h2>\r\n</br>\r\n<p align=\"justify\">The launches of XBT probes were carried on along the track Christchurch (NZ)-Antarctica. XBT casts began on 13/01/2012 18:45 at 46°S/173.55°E and ended on 19/01/2012 at 66°S/176.54°E, the sampling rate was 15 miles nautical.\r\nDuring the southward journey 99 probes have been used of which 82 showed no operating problems, while 17 launches failed due almost entirely to the contact of the cable conductor with the hull of the ship.\r\nFigure1 shows XBT map and the thermal section of the sub-surface layer. Italian investigations on the thermal structure across the ACC, started in 1994 in the framework of the CLIMA project and nowadays have a relevant climatological significance both for the long period covering and the repetition of measurements along the same track.</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/CA11-12_XXVII_ItaEsp_NZ_1.jpg\" /></div>\r\n<p align=\"center\">Figure1: Map of XBT launches in the period 13-19/03/2012 (left) and section of temperature relative to the layer 0-760m, from New Zealand to Antarctica (right)</p>\r\n<p align=\"justify\">A similar activity, for a total of 17 probes, was carried out during the return of the vessel between the latitudinal band of 65°S/178.86°E and 60.5°S/179.357 in correspondence of the main frontal systems in the area of the Antarctic convergence.</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/CA11-12_XXVII_ItaEsp_NZ_2.jpg\" /></div>\r\n<p align=\"center\">Figure 2: Map of XBT launches in the period 14-15/02/2012 (left) and section of temperature relative to the layer 0-760m, from Antarctica to New Zealand (right).</p>\r\n<a href=\"http://www.pnra.it/biblioteca/docs/rapporti_campagna/RapFin2012.pdf\">http://www.pnra.it/biblioteca/docs/rapporti_campagna/RapFin2012.pdf</a>\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:1956:\"<h1 align=\"center\"><strong>CA 11-12 XXVII ita. Esp.	New Zealand</strong></h1>\n<h2 align=\"center\"><strong>Extract from the Italian XXVII antarctic expedition report</strong></h2>\n<p></p>\n<p align=\"justify\">The launches of XBT probes were carried on along the track Christchurch (NZ)-Antarctica. XBT casts began on 13/01/2012 18:45 at 46°S/173.55°E and ended on 19/01/2012 at 66°S/176.54°E, the sampling rate was 15 miles nautical.<br />\nDuring the southward journey 99 probes have been used of which 82 showed no operating problems, while 17 launches failed due almost entirely to the contact of the cable conductor with the hull of the ship.<br />\nFigure1 shows XBT map and the thermal section of the sub-surface layer. Italian investigations on the thermal structure across the ACC, started in 1994 in the framework of the CLIMA project and nowadays have a relevant climatological significance both for the long period covering and the repetition of measurements along the same track.</p>\n<div><img alt=\"\" src=\"/sites/default/files/CA11-12_XXVII_ItaEsp_NZ_1.jpg\" /></div>\n<p align=\"center\">Figure1: Map of XBT launches in the period 13-19/03/2012 (left) and section of temperature relative to the layer 0-760m, from New Zealand to Antarctica (right)</p>\n<p align=\"justify\">A similar activity, for a total of 17 probes, was carried out during the return of the vessel between the latitudinal band of 65°S/178.86°E and 60.5°S/179.357 in correspondence of the main frontal systems in the area of the Antarctic convergence.</p>\n<div><img alt=\"\" src=\"/sites/default/files/CA11-12_XXVII_ItaEsp_NZ_2.jpg\" /></div>\n<p align=\"center\">Figure 2: Map of XBT launches in the period 14-15/02/2012 (left) and section of temperature relative to the layer 0-760m, from Antarctica to New Zealand (right).</p>\n<p><a href=\"http://www.pnra.it/biblioteca/docs/rapporti_campagna/RapFin2012.pdf\">http://www.pnra.it/biblioteca/docs/rapporti_campagna/RapFin2012.pdf</a></p>\n\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:3:\"und\";a:1:{i:0;a:3:{s:5:\"value\";s:23:\"CA11-12_XXVII_ItaEsp_NZ\";s:6:\"format\";N;s:10:\"safe_value\";s:23:\"CA11-12_XXVII_ItaEsp_NZ\";}}}}',0,1539008027,1),('field:node:90','a:2:{s:4:\"body\";a:1:{s:3:\"und\";a:1:{i:0;a:5:{s:5:\"value\";s:2222:\"<h1 align= \"center\"><strong>CA 12-13 XXVIII ita. Esp. South Africa</strong></h1>\r\n\r\n<h2 align=\"center\"><strong>Extract from the Italian XXVIII antarctic expedition report</strong></h2>\r\n</br>\r\n<p align=\"justify\">The S/A Agulhas II has left the Cape Town harbor on the 06/12/2012, bound for the Antarctic continent, then reached on 17/12/2012. XBT launches started a few hours after the departure and continued throughout the GoodHope Line, the route covered by the Agulhas II toward Antarctica (fig. 1).</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/CA12-13_XXVIII_ItaEsp_SA_1.jpg\" /></div>\r\n<p align=\"center\">Fig. 1: Map of XBT launches in the period 6-15/12/2012 (left) and section of temperature relative to the 0-900m layer, from Cape Town to Antarctica (right).</p>\r\n<p align=\"justify\">During the first leg, from Cape Town to Antarctica, 157 XBT were launched (13 did not work properly) at a resolution of about 20nm. XBT activities were conducted between 33.86°S/17.88°E (06/12/2012 at 21:57) and 69.10°S/0.12°W (15/12/2012 at 13:10) when the sea ice conditions forced interruption of the measurements.\r\nThe XBT casts were also used for inter-calibration of the data collected by other instruments such as surveys CTD near the ice shelf, water column profiles realized by 15 ARGO floats and 3 Seagliders as well as with data collected continuously from thermosalinograph on board (TSG). After quality control process a reliable section of temperature of the first 900m along the Line GoodHope has been realized (Fig.1).\r\nThe section of temperature obtained through the use of XBT probes allowed so to identify the location of the main fronts thermhoaline of the Antarctic Circumpolar Current (ACC). \r\nThe day10/02/2012, the S/A Agulhas II left Antarctica direct to Cape Town, reached on 19/02/2012. 148 XBT (27 malfunctioning) were launched along the route (Figure 2) always at a resolution of 90 minutes (about 20 nautical miles) .\r\n</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/CA12-13_XXVIII_ItaEsp_SA_2.jpg\" /></div>\r\n<p align=\"center\">Fig. 2 Map of XBT launches in the period 11-19/12/2013 along the Antarctica-Cape Town transect (left) and temperature section relative to the layer 0-900m (right).</p>\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:2227:\"<h1 align=\"center\"><strong>CA 12-13 XXVIII ita. Esp. South Africa</strong></h1>\n<h2 align=\"center\"><strong>Extract from the Italian XXVIII antarctic expedition report</strong></h2>\n<p></p>\n<p align=\"justify\">The S/A Agulhas II has left the Cape Town harbor on the 06/12/2012, bound for the Antarctic continent, then reached on 17/12/2012. XBT launches started a few hours after the departure and continued throughout the GoodHope Line, the route covered by the Agulhas II toward Antarctica (fig. 1).</p>\n<div><img alt=\"\" src=\"/sites/default/files/CA12-13_XXVIII_ItaEsp_SA_1.jpg\" /></div>\n<p align=\"center\">Fig. 1: Map of XBT launches in the period 6-15/12/2012 (left) and section of temperature relative to the 0-900m layer, from Cape Town to Antarctica (right).</p>\n<p align=\"justify\">During the first leg, from Cape Town to Antarctica, 157 XBT were launched (13 did not work properly) at a resolution of about 20nm. XBT activities were conducted between 33.86°S/17.88°E (06/12/2012 at 21:57) and 69.10°S/0.12°W (15/12/2012 at 13:10) when the sea ice conditions forced interruption of the measurements.<br />\nThe XBT casts were also used for inter-calibration of the data collected by other instruments such as surveys CTD near the ice shelf, water column profiles realized by 15 ARGO floats and 3 Seagliders as well as with data collected continuously from thermosalinograph on board (TSG). After quality control process a reliable section of temperature of the first 900m along the Line GoodHope has been realized (Fig.1).<br />\nThe section of temperature obtained through the use of XBT probes allowed so to identify the location of the main fronts thermhoaline of the Antarctic Circumpolar Current (ACC).<br />\nThe day10/02/2012, the S/A Agulhas II left Antarctica direct to Cape Town, reached on 19/02/2012. 148 XBT (27 malfunctioning) were launched along the route (Figure 2) always at a resolution of 90 minutes (about 20 nautical miles) .\n</p>\n<div><img alt=\"\" src=\"/sites/default/files/CA12-13_XXVIII_ItaEsp_SA_2.jpg\" /></div>\n<p align=\"center\">Fig. 2 Map of XBT launches in the period 11-19/12/2013 along the Antarctica-Cape Town transect (left) and temperature section relative to the layer 0-900m (right).</p>\n\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:3:\"und\";a:1:{i:0;a:3:{s:5:\"value\";s:24:\"CA12-13_XXVIII_ItaEsp_SA\";s:6:\"format\";N;s:10:\"safe_value\";s:24:\"CA12-13_XXVIII_ItaEsp_SA\";}}}}',0,1539008040,1),('field:node:91','a:2:{s:4:\"body\";a:1:{s:3:\"und\";a:1:{i:0;a:5:{s:5:\"value\";s:1227:\"<h1 align= \"center\"><strong>CA 12-13 XXVIII Ita. Esp. New Zealand</strong></h1>\r\n\r\n</br>\r\n<p align=\"justify\">TThe R/V Araon left the harbor of Lyttelton (NZ) on 24/01/2012 at 09:00.\r\nXBT launches began on 25/01/2012 at 09:00, in correspondence of the 48th parallel south.\r\nXBT were launched every 0.25 Nm (about 1h10m of navigation time), for a total of 54 probes. The acquisition was interrupted to the parallel 54° 15\'due to bad sea weather conditions.\r\n\r\nOn 29/01/2012 at 03:00 taking advantage of the reduced speed of the ship to make measurements (magnetometry and CTD) it was possible to fix the launch system-acquisition position and then to start XBT operations at a latitude of 62°S, although intermittently. XBT operations lasted until ice presence imposed a final stop at 68.5°S.\r\n</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/CA12-13_XXVIII_ItaEsp_NZ_1.png\" /></div>\r\n<p align=\"center\">Figure 1: Map of XBT launches in the period 25/01-10/02/2012(left) and associated section of temperature relative to the layer 0-760m, from New Zealand to Antarctica (right).</p>\r\n<a href=\"http://www.pnra.it/biblioteca/docs/rapporti_campagna/CA12_13.pdf\">http://www.pnra.it/biblioteca/docs/rapporti_campagna/CA12_13.pdf</a>\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:1242:\"<h1 align=\"center\"><strong>CA 12-13 XXVIII Ita. Esp. New Zealand</strong></h1>\n<p></p>\n<p align=\"justify\">TThe R/V Araon left the harbor of Lyttelton (NZ) on 24/01/2012 at 09:00.<br />\nXBT launches began on 25/01/2012 at 09:00, in correspondence of the 48th parallel south.<br />\nXBT were launched every 0.25 Nm (about 1h10m of navigation time), for a total of 54 probes. The acquisition was interrupted to the parallel 54° 15\'due to bad sea weather conditions.</p>\n<p>On 29/01/2012 at 03:00 taking advantage of the reduced speed of the ship to make measurements (magnetometry and CTD) it was possible to fix the launch system-acquisition position and then to start XBT operations at a latitude of 62°S, although intermittently. XBT operations lasted until ice presence imposed a final stop at 68.5°S.\n</p>\n<div><img alt=\"\" src=\"/sites/default/files/CA12-13_XXVIII_ItaEsp_NZ_1.png\" /></div>\n<p align=\"center\">Figure 1: Map of XBT launches in the period 25/01-10/02/2012(left) and associated section of temperature relative to the layer 0-760m, from New Zealand to Antarctica (right).</p>\n<p><a href=\"http://www.pnra.it/biblioteca/docs/rapporti_campagna/CA12_13.pdf\">http://www.pnra.it/biblioteca/docs/rapporti_campagna/CA12_13.pdf</a></p>\n\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:3:\"und\";a:1:{i:0;a:3:{s:5:\"value\";s:24:\"CA12-13_XXVIII_ItaEsp_NZ\";s:6:\"format\";N;s:10:\"safe_value\";s:24:\"CA12-13_XXVIII_ItaEsp_NZ\";}}}}',0,1538754804,1),('field:node:92','a:2:{s:4:\"body\";a:1:{s:3:\"und\";a:1:{i:0;a:5:{s:5:\"value\";s:1497:\"<h1 align= \"center\"><strong>CA 13-14 XXIX Ita. Esp.	New Zealand</strong></h1>\r\n</br>\r\n<p align=\"justify\">The R/V Italica left Lyttelton (NZ) at 19:30 of 29/12/2013 and arrived at MZS (Mario Zucchelli Station) approximately on 01/08/2014 at 11:30. \r\nThe launches of XBT probes (Sippican mod.T7, depth max 760 m) started on 30.12.2013 at 17:11 at latitude 48°S and ended on 03/01/2014 latitude 66°16\'S (Fig. 1).\r\nXBT activities were carried on also during the return trip from 16.02.2014 at 02.00 at about 69°S, to 02/19/2014 at 49.5°S.\r\nThe sampling resolution was 15 nautical miles during the first leg and 77 probes were used, while during the way back to New Zealand 57 probes were launched at a resolution of 20 nm.\r\nOnly a small percentage of probes showed operating problems due almost entirely to the contact of the copper cable conductor with the hull of the ship.\r\n</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/CA13-14_XXIX_ItaEsp_NZ_1.jpg\" /></div>\r\n<p align=\"center\">Fig 1: Map of XBT launches (left) and section of temperature relative to the layer 0-800m (right), from New Zealand to Antarctica in the period 30/12/2013-03/01/2014.</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/CA13-14_XXIX_ItaEsp_NZ_2.png\" /></div>\r\n<p align=\"center\">Fig. 2: Map of XBT launches (left) and temperature section 8right) from 16/02/2014 to 19/02/2014.</p>\r\n<a href=\"http://www.pnra.it/biblioteca/docs/rapporti_campagna/CA14.pdf\">http://www.pnra.it/biblioteca/docs/rapporti_campagna/CA14.pdf</a>\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:1517:\"<h1 align=\"center\"><strong>CA 13-14 XXIX Ita. Esp.	New Zealand</strong></h1>\n<p></p>\n<p align=\"justify\">The R/V Italica left Lyttelton (NZ) at 19:30 of 29/12/2013 and arrived at MZS (Mario Zucchelli Station) approximately on 01/08/2014 at 11:30.<br />\nThe launches of XBT probes (Sippican mod.T7, depth max 760 m) started on 30.12.2013 at 17:11 at latitude 48°S and ended on 03/01/2014 latitude 66°16\'S (Fig. 1).<br />\nXBT activities were carried on also during the return trip from 16.02.2014 at 02.00 at about 69°S, to 02/19/2014 at 49.5°S.<br />\nThe sampling resolution was 15 nautical miles during the first leg and 77 probes were used, while during the way back to New Zealand 57 probes were launched at a resolution of 20 nm.<br />\nOnly a small percentage of probes showed operating problems due almost entirely to the contact of the copper cable conductor with the hull of the ship.\n</p>\n<div><img alt=\"\" src=\"/sites/default/files/CA13-14_XXIX_ItaEsp_NZ_1.jpg\" /></div>\n<p align=\"center\">Fig 1: Map of XBT launches (left) and section of temperature relative to the layer 0-800m (right), from New Zealand to Antarctica in the period 30/12/2013-03/01/2014.</p>\n<div><img alt=\"\" src=\"/sites/default/files/CA13-14_XXIX_ItaEsp_NZ_2.png\" /></div>\n<p align=\"center\">Fig. 2: Map of XBT launches (left) and temperature section 8right) from 16/02/2014 to 19/02/2014.</p>\n<p><a href=\"http://www.pnra.it/biblioteca/docs/rapporti_campagna/CA14.pdf\">http://www.pnra.it/biblioteca/docs/rapporti_campagna/CA14.pdf</a></p>\n\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:3:\"und\";a:1:{i:0;a:3:{s:5:\"value\";s:22:\"CA13-14_XXIX_ItaEsp_NZ\";s:6:\"format\";N;s:10:\"safe_value\";s:22:\"CA13-14_XXIX_ItaEsp_NZ\";}}}}',0,1539008766,1),('field:node:93','a:2:{s:4:\"body\";a:1:{s:3:\"und\";a:1:{i:0;a:5:{s:5:\"value\";s:1257:\"<h1 align= \"center\"><strong>CA 14-15 XXX Ita. Esp. New Zeland</strong></h1>\r\n</br>\r\n<p align=\"justify\">XBT operations started a few hours after the departure from the harbor of Lyttelton (NZ) on 01/02/2015 at 47°59\'S/166° 45\'E and ended on 01/10/2015 at 73°13\'S 173°18\'E.\r\nActivities were carried on from ship Korean Araon. The release of 74 probes XBT occurred along the route illustrated in Figure 1, and it allowed to realize the temperature section at the spatial resolution of  about 10 Nm also thanks to the merging of XBT data with XCTD profiles.\r\n</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/CA14-15_XXX_ItaEsp_NZ_1.jpg\" /></div>\r\n<p align=\"center\">Figure 1 Map of XBT launches in the period 02-10/01/2015(left) and temperature section relative to the layer 0-800m, from New Zealand to Antarctica (right)</p>\r\n<p align=\"justify\">Italian studies on XBT data across the ACC started in 1994 and were carried on as part of several projects funded by PNRA, which have now a significant climatological significance both for the long period covering both the possible inter-connections with phenomena on a planetary scale. The measures are part of the XBT observations of the Antarctic Circumpolar Current solicited and regulated by the SOOS.\r\n</p>\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:1257:\"<h1 align=\"center\"><strong>CA 14-15 XXX Ita. Esp. New Zeland</strong></h1>\n<p></p>\n<p align=\"justify\">XBT operations started a few hours after the departure from the harbor of Lyttelton (NZ) on 01/02/2015 at 47°59\'S/166° 45\'E and ended on 01/10/2015 at 73°13\'S 173°18\'E.<br />\nActivities were carried on from ship Korean Araon. The release of 74 probes XBT occurred along the route illustrated in Figure 1, and it allowed to realize the temperature section at the spatial resolution of  about 10 Nm also thanks to the merging of XBT data with XCTD profiles.\n</p>\n<div><img alt=\"\" src=\"/sites/default/files/CA14-15_XXX_ItaEsp_NZ_1.jpg\" /></div>\n<p align=\"center\">Figure 1 Map of XBT launches in the period 02-10/01/2015(left) and temperature section relative to the layer 0-800m, from New Zealand to Antarctica (right)</p>\n<p align=\"justify\">Italian studies on XBT data across the ACC started in 1994 and were carried on as part of several projects funded by PNRA, which have now a significant climatological significance both for the long period covering both the possible inter-connections with phenomena on a planetary scale. The measures are part of the XBT observations of the Antarctic Circumpolar Current solicited and regulated by the SOOS.\n</p>\n\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:3:\"und\";a:1:{i:0;a:3:{s:5:\"value\";s:21:\"CA14-15_XXX_ItaEsp_NZ\";s:6:\"format\";N;s:10:\"safe_value\";s:21:\"CA14-15_XXX_ItaEsp_NZ\";}}}}',0,1538795814,1),('field:node:94','a:2:{s:4:\"body\";a:1:{s:3:\"und\";a:1:{i:0;a:5:{s:5:\"value\";s:2635:\"<h1 align=\"center\"><strong>INTERNATIONAL BACKGROUND</h1></strong>\r\n<p align=\"justify\">The international science community has long recognised the need for a coordinated and integrated approach to observing the Southern Ocean. Under the direction of the Scientific Committee for Oceanic Research (SCAR) and the Scientific Committee for Oceanic Research (SCOR), and with the input of the World Climate Research Programmes Climate and Cryosphere (CliC) and Climate Variability and Predictability (CLIVAR) projects, and the Partnership for Observation of the Global Oceans (POGO), the concept for the Southern Ocean Observing System was developed - SOOS. The SOOS International Project Office was officially opened in August 2011, hosted by the Institute for Marine and Antarctic Studies (IMAS) at the University of Tasmania, Australia.\r\nThe SOOS primary objective are design and implement a comprehensive and multidisciplinary observing system for the Southern Ocean for unify current observation efforts and leverage further resources and effectively integrate and coordinate national and international projects and programmes, across traditional disciplinary boundaries and between nations, so contribution of research vessels to the in-situ global ocean observing system is one example how one could break down the fallacious research-operational divide. Making oceanographic research observations fully and freely available in real time or so is a very difficult task, both technically and politically, but due to vast ocean space and relative scarceness of in-situ data, engagement of the oceanographic research community is a prerequisite for developing a comprehensive ocean observing system anywhere in the world oceans. This is especially true in the Southern Ocean with its unique and extreme challenges for in-situ measurements. Realistically, the Southern Ocean oceanographic research community is, and for many years will continue to be, both the primary provider and primary user of in-situ ocean data. Thus, incorporating research community products in the observing system, and simultaneously designing the system to help address research community hypotheses, will be absolutely critical in ensuring we can monitor the Southern Ocean.\r\nThe wealth of research observations in the Southern Ocean is broad. Observations have been carried out under the auspices of a number of major cooperative programs. The data provided by these programs is clearly an enormous contribution to our understanding of the Southern Ocean and as such, these data ought to be incorporated, whenever possible, as part of the observing system.</p>\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:2653:\"<h1 align=\"center\"><strong>INTERNATIONAL BACKGROUND</strong></h1>\n<p></p>\n<p align=\"justify\">The international science community has long recognised the need for a coordinated and integrated approach to observing the Southern Ocean. Under the direction of the Scientific Committee for Oceanic Research (SCAR) and the Scientific Committee for Oceanic Research (SCOR), and with the input of the World Climate Research Programmes Climate and Cryosphere (CliC) and Climate Variability and Predictability (CLIVAR) projects, and the Partnership for Observation of the Global Oceans (POGO), the concept for the Southern Ocean Observing System was developed - SOOS. The SOOS International Project Office was officially opened in August 2011, hosted by the Institute for Marine and Antarctic Studies (IMAS) at the University of Tasmania, Australia.<br />\nThe SOOS primary objective are design and implement a comprehensive and multidisciplinary observing system for the Southern Ocean for unify current observation efforts and leverage further resources and effectively integrate and coordinate national and international projects and programmes, across traditional disciplinary boundaries and between nations, so contribution of research vessels to the in-situ global ocean observing system is one example how one could break down the fallacious research-operational divide. Making oceanographic research observations fully and freely available in real time or so is a very difficult task, both technically and politically, but due to vast ocean space and relative scarceness of in-situ data, engagement of the oceanographic research community is a prerequisite for developing a comprehensive ocean observing system anywhere in the world oceans. This is especially true in the Southern Ocean with its unique and extreme challenges for in-situ measurements. Realistically, the Southern Ocean oceanographic research community is, and for many years will continue to be, both the primary provider and primary user of in-situ ocean data. Thus, incorporating research community products in the observing system, and simultaneously designing the system to help address research community hypotheses, will be absolutely critical in ensuring we can monitor the Southern Ocean.<br />\nThe wealth of research observations in the Southern Ocean is broad. Observations have been carried out under the auspices of a number of major cooperative programs. The data provided by these programs is clearly an enormous contribution to our understanding of the Southern Ocean and as such, these data ought to be incorporated, whenever possible, as part of the observing system.</p>\n\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:3:\"und\";a:1:{i:0;a:3:{s:5:\"value\";s:28:\"XBT INTERNATIONAL BACKGROUND\";s:6:\"format\";N;s:10:\"safe_value\";s:28:\"XBT INTERNATIONAL BACKGROUND\";}}}}',0,1539009084,1),('field:node:95','a:2:{s:4:\"body\";a:1:{s:3:\"und\";a:1:{i:0;a:5:{s:5:\"value\";s:1407:\"<h1 align=\"center\"><strong>INSTRUMENTATION</strong></h1> \r\n<p align=\"justify\">\r\nAn eXpendable BathyThermograph (XBT) is a probe that is dropped from a ship and measures the temperature as it falls through the water. A resistance in the head of the probe and a very thin twin-wire, connecting the probe to the equipment on the ship, compose the electronic circuit for measuring the water temperature. The probe is designed to fall at a known rate, so that the depth of the temperature profile can be inferred from the time since it enters the water.\r\nXBTs are valuable because they represent the largest fraction of the temperature profile observations since 1970s and until the fully implementation of Argo profiling floats in approximately 2007, measure the seasonal and inter-annual fluctuations in the transport of mass, heat, and freshwater across transects, which define large enclosed ocean areas, determine the long-term mean, seasonal cycle, and inter-annual fluctuations of temperature, geostrophic velocity and large-scale ocean circulation in the top 800 m of the ocean, provide long time-series of temperature profiles at approximately repeated locations in order to unambiguously separate temporal from spatial variability, determine the space-time variability of temperature and geostrophic shear fields and provide appropriate in situ data for testing ocean and ocean-atmosphere models.\r\n</p>\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:1409:\"<h1 align=\"center\"><strong>INSTRUMENTATION</strong></h1>\n<p align=\"justify\">\nAn eXpendable BathyThermograph (XBT) is a probe that is dropped from a ship and measures the temperature as it falls through the water. A resistance in the head of the probe and a very thin twin-wire, connecting the probe to the equipment on the ship, compose the electronic circuit for measuring the water temperature. The probe is designed to fall at a known rate, so that the depth of the temperature profile can be inferred from the time since it enters the water.<br />\nXBTs are valuable because they represent the largest fraction of the temperature profile observations since 1970s and until the fully implementation of Argo profiling floats in approximately 2007, measure the seasonal and inter-annual fluctuations in the transport of mass, heat, and freshwater across transects, which define large enclosed ocean areas, determine the long-term mean, seasonal cycle, and inter-annual fluctuations of temperature, geostrophic velocity and large-scale ocean circulation in the top 800 m of the ocean, provide long time-series of temperature profiles at approximately repeated locations in order to unambiguously separate temporal from spatial variability, determine the space-time variability of temperature and geostrophic shear fields and provide appropriate in situ data for testing ocean and ocean-atmosphere models.\n</p>\n\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:3:\"und\";a:1:{i:0;a:3:{s:5:\"value\";s:15:\"INSTRUMENTATION\";s:6:\"format\";N;s:10:\"safe_value\";s:15:\"INSTRUMENTATION\";}}}}',0,1539009106,1),('field:node:96','a:2:{s:4:\"body\";a:1:{s:2:\"it\";a:1:{i:0;a:5:{s:5:\"value\";s:471:\"<div><strong><a href=\"http://morsea.uniparthenope.it/?q=node/30\">a)  Monitoraggio della struttura termica sub superficiale dell\' Antarctic Circumpolar Current</a></strong></div>\r\n</br>\r\n<div><strong><a href=\"http://morsea.uniparthenope.it/?q=node/31\">b) Misure in continuo di temperatura e salinità superficiali</a></strong></div>\r\n</br>\r\n<div><strong><a href=\"http://morsea.uniparthenope.it/?q=node/32\">c) Misure lagrangiane tramite drifter e float</a></strong></div>\r\n\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:470:\"<div><strong><a href=\"http://morsea.uniparthenope.it/?q=node/30\">a)  Monitoraggio della struttura termica sub superficiale dell\' Antarctic Circumpolar Current</a></strong></div>\n<p></p>\n<div><strong><a href=\"http://morsea.uniparthenope.it/?q=node/31\">b) Misure in continuo di temperatura e salinità superficiali</a></strong></div>\n<p></p>\n<div><strong><a href=\"http://morsea.uniparthenope.it/?q=node/32\">c) Misure lagrangiane tramite drifter e float</a></strong></div>\n\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:2:\"it\";a:1:{i:0;a:3:{s:5:\"value\";s:20:\"Ancillary activities\";s:6:\"format\";N;s:10:\"safe_value\";s:20:\"Ancillary activities\";}}}}',0,1539006680,1),('field:node:98','a:2:{s:4:\"body\";a:1:{s:2:\"it\";a:1:{i:0;a:5:{s:5:\"value\";s:790:\"<p>Nell’ultima spedizione del PNRA nel Mare di Ross (2013-14) sono stati recuperati e riposizionati tutti i mooring del progetto osservatorio marino “MORSea”. Di seguito è riportata la mappa del Mare di Ross con la localizzazione dei mooring e la loro composizione con le informazioni fondamentali.</p>\r\n<div><strong><a href=\"http://morsea.uniparthenope.it/?q=node/28\">Clicca QUI per avere maggiori dettagli sulle caratteristiche tecniche dei Moorings</a></strong></div>\r\n<div><strong><a href=\"https://www.google.com/maps/d/edit?mid=zbQQmJ6-SKww.kXWDxKLMktvM\">Clicca QUI per avere la mappa con la localizzazione attuale dei Moorings</a></strong></div>\r\n<div>&nbsp;</div>\r\n<div><img alt=\"\" src=\"/sites/default/files/MooringRossSea2014.png\" style=\"height:495px; width:660px\" /></div>\r\n\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:781:\"<p>Nell’ultima spedizione del PNRA nel Mare di Ross (2013-14) sono stati recuperati e riposizionati tutti i mooring del progetto osservatorio marino “MORSea”. Di seguito è riportata la mappa del Mare di Ross con la localizzazione dei mooring e la loro composizione con le informazioni fondamentali.</p>\n<div><strong><a href=\"http://morsea.uniparthenope.it/?q=node/28\">Clicca QUI per avere maggiori dettagli sulle caratteristiche tecniche dei Moorings</a></strong></div>\n<div><strong><a href=\"https://www.google.com/maps/d/edit?mid=zbQQmJ6-SKww.kXWDxKLMktvM\">Clicca QUI per avere la mappa con la localizzazione attuale dei Moorings</a></strong></div>\n<div> </div>\n<div><img alt=\"\" src=\"/sites/default/files/MooringRossSea2014.png\" style=\"height:495px; width:660px\" /></div>\n\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:2:\"it\";a:1:{i:0;a:3:{s:5:\"value\";s:12:\"The Moorings\";s:6:\"format\";N;s:10:\"safe_value\";s:12:\"The Moorings\";}}}}',0,1538751382,1),('field:node:99','a:2:{s:4:\"body\";a:1:{s:2:\"en\";a:1:{i:0;a:5:{s:5:\"value\";s:1905:\"<p align=\"justify\">The  <strong>MORSea</strong> (<em>Marine Observatory in the Ross Sea</em>), project funded by<a href=\"http://www.pnra.it/\"> P.N.R.A.</a>(<em>National Research Program in Antarctica</em>), focuses on the management of the marine observatory established since 1994 in the Ross Sea in the framework of CLIMA (Climatic Long-term Interaction for Mass balance in Antarctica p.i. G. Spezie) and ABIOCLEAR (<em>Antartic BIOgeochemical cycles-Climatic and. palEoclimAtic Recostructions</em> p.i. M. Ravaioli) projects. After the ending of these projects in 2010, the National Scientific Commission for Antarctica (<a href=\"http://www.csna.it/\">CSNA</a>) highlighted the importance of supporting activities connected to a network of four moorings in the Ross Sea. The moorings, previously named B, D, G and L, play an important role in the study of climate change and the interannual variability of the physical and biogeochemical processes in the water column.\r\nMooring activities have recently been associated to other oceanographic measurements conducted on the basis of the \"ship of opportunity\" concept. Measurements of sea surface temperature and salinity (SST and SSS respectively), launches of XBT and  XCTD probes, deployment of drifters and floats have been carried on without any need of additional ship-time.\r\nAll these activities were conducted up to 2009 in the framework of previous PNRA project as CLIMA and Southern Ocean Chokepoints Italian Contribution (SOChIC) and during last years have been introduced in the MORSea project in order to keep the continuity of the precious time series acquired since 1994\r\nIn Italy the project activities essentially concern the validation and analysis of the acquired data and the dissemination of scientific results achieved.</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/MooringRossSea2014.png\" style=\"height:495px; width:660px\" /></div>\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:1920:\"<p align=\"justify\">The  <strong>MORSea</strong> (<em>Marine Observatory in the Ross Sea</em>), project funded by<a href=\"http://www.pnra.it/\"> P.N.R.A.</a>(<em>National Research Program in Antarctica</em>), focuses on the management of the marine observatory established since 1994 in the Ross Sea in the framework of CLIMA (Climatic Long-term Interaction for Mass balance in Antarctica p.i. G. Spezie) and ABIOCLEAR (<em>Antartic BIOgeochemical cycles-Climatic and. palEoclimAtic Recostructions</em> p.i. M. Ravaioli) projects. After the ending of these projects in 2010, the National Scientific Commission for Antarctica (<a href=\"http://www.csna.it/\">CSNA</a>) highlighted the importance of supporting activities connected to a network of four moorings in the Ross Sea. The moorings, previously named B, D, G and L, play an important role in the study of climate change and the interannual variability of the physical and biogeochemical processes in the water column.<br />\nMooring activities have recently been associated to other oceanographic measurements conducted on the basis of the \"ship of opportunity\" concept. Measurements of sea surface temperature and salinity (SST and SSS respectively), launches of XBT and  XCTD probes, deployment of drifters and floats have been carried on without any need of additional ship-time.<br />\nAll these activities were conducted up to 2009 in the framework of previous PNRA project as CLIMA and Southern Ocean Chokepoints Italian Contribution (SOChIC) and during last years have been introduced in the MORSea project in order to keep the continuity of the precious time series acquired since 1994<br />\nIn Italy the project activities essentially concern the validation and analysis of the acquired data and the dissemination of scientific results achieved.</p>\n<div><img alt=\"\" src=\"/sites/default/files/MooringRossSea2014.png\" style=\"height:495px; width:660px\" /></div>\n\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:2:\"en\";a:1:{i:0;a:3:{s:5:\"value\";s:9:\"Home Page\";s:6:\"format\";N;s:10:\"safe_value\";s:9:\"Home Page\";}}}}',0,1538794866,1),('field:user:1','a:0:{}',0,1538751619,1),('field:user:39','a:0:{}',0,1541005021,1),('field:user:62','a:0:{}',0,1541005021,1),('field_info:bundle:comment:comment_node_article','a:2:{s:9:\"instances\";a:1:{s:12:\"comment_body\";a:13:{s:5:\"label\";s:7:\"Comment\";s:8:\"settings\";a:3:{s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";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:\"\";s:2:\"id\";s:1:\"3\";s:8:\"field_id\";s:1:\"1\";s:10:\"field_name\";s:12:\"comment_body\";s:11:\"entity_type\";s:7:\"comment\";s:6:\"bundle\";s:20:\"comment_node_article\";s:7:\"deleted\";s:1:\"0\";s:13:\"default_value\";N;}}s:6:\"fields\";a:1:{i:0;a:16:{s:12:\"entity_types\";a:1:{i:0;s:7:\"comment\";}s:12:\"translatable\";s:1:\"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:23:\"field_data_comment_body\";a:2:{s:5:\"value\";s:18:\"comment_body_value\";s:6:\"format\";s:19:\"comment_body_format\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:27:\"field_revision_comment_body\";a:2:{s:5:\"value\";s:18:\"comment_body_value\";s:6:\"format\";s:19:\"comment_body_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:\"1\";s:10:\"field_name\";s:12:\"comment_body\";s:4:\"type\";s:9:\"text_long\";s:6:\"module\";s:4:\"text\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:2:{s:5:\"value\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:7:\"comment\";a:9:{i:0;s:17:\"comment_node_page\";i:1;s:20:\"comment_node_article\";i:2;s:19:\"comment_node_photos\";i:3;s:39:\"comment_node_openlayers_example_content\";i:4;s:20:\"comment_node_mooring\";i:5;s:32:\"comment_node_photo_moorings_2014\";i:6;s:32:\"comment_node_photo_moorings_2012\";i:7;s:18:\"comment_node_forum\";i:8;s:32:\"comment_node_photo_moorings_2010\";}}}}}',0,1538750977,1),('field_info:bundle:comment:comment_node_forum','a:2:{s:9:\"instances\";a:1:{s:12:\"comment_body\";a:13:{s:5:\"label\";s:7:\"Comment\";s:8:\"settings\";a:3:{s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";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:\"\";s:2:\"id\";s:2:\"40\";s:8:\"field_id\";s:1:\"1\";s:10:\"field_name\";s:12:\"comment_body\";s:11:\"entity_type\";s:7:\"comment\";s:6:\"bundle\";s:18:\"comment_node_forum\";s:7:\"deleted\";s:1:\"0\";s:13:\"default_value\";N;}}s:6:\"fields\";a:1:{i:0;a:16:{s:12:\"entity_types\";a:1:{i:0;s:7:\"comment\";}s:12:\"translatable\";s:1:\"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:23:\"field_data_comment_body\";a:2:{s:5:\"value\";s:18:\"comment_body_value\";s:6:\"format\";s:19:\"comment_body_format\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:27:\"field_revision_comment_body\";a:2:{s:5:\"value\";s:18:\"comment_body_value\";s:6:\"format\";s:19:\"comment_body_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:\"1\";s:10:\"field_name\";s:12:\"comment_body\";s:4:\"type\";s:9:\"text_long\";s:6:\"module\";s:4:\"text\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:2:{s:5:\"value\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:7:\"comment\";a:9:{i:0;s:17:\"comment_node_page\";i:1;s:20:\"comment_node_article\";i:2;s:19:\"comment_node_photos\";i:3;s:39:\"comment_node_openlayers_example_content\";i:4;s:20:\"comment_node_mooring\";i:5;s:32:\"comment_node_photo_moorings_2014\";i:6;s:32:\"comment_node_photo_moorings_2012\";i:7;s:18:\"comment_node_forum\";i:8;s:32:\"comment_node_photo_moorings_2010\";}}}}}',0,1538750977,1),('field_info:bundle:comment:comment_node_mooring','a:2:{s:9:\"instances\";a:1:{s:12:\"comment_body\";a:13:{s:5:\"label\";s:7:\"Comment\";s:8:\"settings\";a:3:{s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";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:\"\";s:2:\"id\";s:2:\"30\";s:8:\"field_id\";s:1:\"1\";s:10:\"field_name\";s:12:\"comment_body\";s:11:\"entity_type\";s:7:\"comment\";s:6:\"bundle\";s:20:\"comment_node_mooring\";s:7:\"deleted\";s:1:\"0\";s:13:\"default_value\";N;}}s:6:\"fields\";a:1:{i:0;a:16:{s:12:\"entity_types\";a:1:{i:0;s:7:\"comment\";}s:12:\"translatable\";s:1:\"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:23:\"field_data_comment_body\";a:2:{s:5:\"value\";s:18:\"comment_body_value\";s:6:\"format\";s:19:\"comment_body_format\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:27:\"field_revision_comment_body\";a:2:{s:5:\"value\";s:18:\"comment_body_value\";s:6:\"format\";s:19:\"comment_body_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:\"1\";s:10:\"field_name\";s:12:\"comment_body\";s:4:\"type\";s:9:\"text_long\";s:6:\"module\";s:4:\"text\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:2:{s:5:\"value\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:7:\"comment\";a:9:{i:0;s:17:\"comment_node_page\";i:1;s:20:\"comment_node_article\";i:2;s:19:\"comment_node_photos\";i:3;s:39:\"comment_node_openlayers_example_content\";i:4;s:20:\"comment_node_mooring\";i:5;s:32:\"comment_node_photo_moorings_2014\";i:6;s:32:\"comment_node_photo_moorings_2012\";i:7;s:18:\"comment_node_forum\";i:8;s:32:\"comment_node_photo_moorings_2010\";}}}}}',0,1538750977,1),('field_info:bundle:comment:comment_node_openlayers_example_content','a:2:{s:9:\"instances\";a:1:{s:12:\"comment_body\";a:13:{s:5:\"label\";s:7:\"Comment\";s:8:\"settings\";a:3:{s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";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:\"\";s:2:\"id\";s:2:\"11\";s:8:\"field_id\";s:1:\"1\";s:10:\"field_name\";s:12:\"comment_body\";s:11:\"entity_type\";s:7:\"comment\";s:6:\"bundle\";s:39:\"comment_node_openlayers_example_content\";s:7:\"deleted\";s:1:\"0\";s:13:\"default_value\";N;}}s:6:\"fields\";a:1:{i:0;a:16:{s:12:\"entity_types\";a:1:{i:0;s:7:\"comment\";}s:12:\"translatable\";s:1:\"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:23:\"field_data_comment_body\";a:2:{s:5:\"value\";s:18:\"comment_body_value\";s:6:\"format\";s:19:\"comment_body_format\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:27:\"field_revision_comment_body\";a:2:{s:5:\"value\";s:18:\"comment_body_value\";s:6:\"format\";s:19:\"comment_body_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:\"1\";s:10:\"field_name\";s:12:\"comment_body\";s:4:\"type\";s:9:\"text_long\";s:6:\"module\";s:4:\"text\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:2:{s:5:\"value\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:7:\"comment\";a:9:{i:0;s:17:\"comment_node_page\";i:1;s:20:\"comment_node_article\";i:2;s:19:\"comment_node_photos\";i:3;s:39:\"comment_node_openlayers_example_content\";i:4;s:20:\"comment_node_mooring\";i:5;s:32:\"comment_node_photo_moorings_2014\";i:6;s:32:\"comment_node_photo_moorings_2012\";i:7;s:18:\"comment_node_forum\";i:8;s:32:\"comment_node_photo_moorings_2010\";}}}}}',0,1538750977,1),('field_info:bundle:comment:comment_node_page','a:2:{s:9:\"instances\";a:1:{s:12:\"comment_body\";a:13:{s:5:\"label\";s:7:\"Comment\";s:8:\"settings\";a:3:{s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";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:\"\";s:2:\"id\";s:1:\"1\";s:8:\"field_id\";s:1:\"1\";s:10:\"field_name\";s:12:\"comment_body\";s:11:\"entity_type\";s:7:\"comment\";s:6:\"bundle\";s:17:\"comment_node_page\";s:7:\"deleted\";s:1:\"0\";s:13:\"default_value\";N;}}s:6:\"fields\";a:1:{i:0;a:16:{s:12:\"entity_types\";a:1:{i:0;s:7:\"comment\";}s:12:\"translatable\";s:1:\"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:23:\"field_data_comment_body\";a:2:{s:5:\"value\";s:18:\"comment_body_value\";s:6:\"format\";s:19:\"comment_body_format\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:27:\"field_revision_comment_body\";a:2:{s:5:\"value\";s:18:\"comment_body_value\";s:6:\"format\";s:19:\"comment_body_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:\"1\";s:10:\"field_name\";s:12:\"comment_body\";s:4:\"type\";s:9:\"text_long\";s:6:\"module\";s:4:\"text\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:2:{s:5:\"value\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:7:\"comment\";a:9:{i:0;s:17:\"comment_node_page\";i:1;s:20:\"comment_node_article\";i:2;s:19:\"comment_node_photos\";i:3;s:39:\"comment_node_openlayers_example_content\";i:4;s:20:\"comment_node_mooring\";i:5;s:32:\"comment_node_photo_moorings_2014\";i:6;s:32:\"comment_node_photo_moorings_2012\";i:7;s:18:\"comment_node_forum\";i:8;s:32:\"comment_node_photo_moorings_2010\";}}}}}',0,1538750977,1),('field_info:bundle:comment:comment_node_photos','a:2:{s:9:\"instances\";a:1:{s:12:\"comment_body\";a:13:{s:5:\"label\";s:7:\"Comment\";s:8:\"settings\";a:3:{s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";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:\"\";s:2:\"id\";s:1:\"7\";s:8:\"field_id\";s:1:\"1\";s:10:\"field_name\";s:12:\"comment_body\";s:11:\"entity_type\";s:7:\"comment\";s:6:\"bundle\";s:19:\"comment_node_photos\";s:7:\"deleted\";s:1:\"0\";s:13:\"default_value\";N;}}s:6:\"fields\";a:1:{i:0;a:16:{s:12:\"entity_types\";a:1:{i:0;s:7:\"comment\";}s:12:\"translatable\";s:1:\"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:23:\"field_data_comment_body\";a:2:{s:5:\"value\";s:18:\"comment_body_value\";s:6:\"format\";s:19:\"comment_body_format\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:27:\"field_revision_comment_body\";a:2:{s:5:\"value\";s:18:\"comment_body_value\";s:6:\"format\";s:19:\"comment_body_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:\"1\";s:10:\"field_name\";s:12:\"comment_body\";s:4:\"type\";s:9:\"text_long\";s:6:\"module\";s:4:\"text\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:2:{s:5:\"value\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:7:\"comment\";a:9:{i:0;s:17:\"comment_node_page\";i:1;s:20:\"comment_node_article\";i:2;s:19:\"comment_node_photos\";i:3;s:39:\"comment_node_openlayers_example_content\";i:4;s:20:\"comment_node_mooring\";i:5;s:32:\"comment_node_photo_moorings_2014\";i:6;s:32:\"comment_node_photo_moorings_2012\";i:7;s:18:\"comment_node_forum\";i:8;s:32:\"comment_node_photo_moorings_2010\";}}}}}',0,1538750977,1),('field_info:bundle:comment:comment_node_photo_moorings_2010','a:2:{s:9:\"instances\";a:1:{s:12:\"comment_body\";a:13:{s:5:\"label\";s:7:\"Comment\";s:8:\"settings\";a:3:{s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";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\";s:1:\"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:\"\";s:2:\"id\";s:2:\"50\";s:8:\"field_id\";s:1:\"1\";s:10:\"field_name\";s:12:\"comment_body\";s:11:\"entity_type\";s:7:\"comment\";s:6:\"bundle\";s:32:\"comment_node_photo_moorings_2010\";s:7:\"deleted\";s:1:\"0\";s:13:\"default_value\";N;}}s:6:\"fields\";a:1:{i:0;a:16:{s:12:\"entity_types\";a:1:{i:0;s:7:\"comment\";}s:12:\"translatable\";s:1:\"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:23:\"field_data_comment_body\";a:2:{s:5:\"value\";s:18:\"comment_body_value\";s:6:\"format\";s:19:\"comment_body_format\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:27:\"field_revision_comment_body\";a:2:{s:5:\"value\";s:18:\"comment_body_value\";s:6:\"format\";s:19:\"comment_body_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:\"1\";s:10:\"field_name\";s:12:\"comment_body\";s:4:\"type\";s:9:\"text_long\";s:6:\"module\";s:4:\"text\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:2:{s:5:\"value\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:7:\"comment\";a:9:{i:0;s:17:\"comment_node_page\";i:1;s:20:\"comment_node_article\";i:2;s:19:\"comment_node_photos\";i:3;s:39:\"comment_node_openlayers_example_content\";i:4;s:20:\"comment_node_mooring\";i:5;s:32:\"comment_node_photo_moorings_2014\";i:6;s:32:\"comment_node_photo_moorings_2012\";i:7;s:18:\"comment_node_forum\";i:8;s:32:\"comment_node_photo_moorings_2010\";}}}}}',0,1538750977,1),('field_info:bundle:comment:comment_node_photo_moorings_2012','a:2:{s:9:\"instances\";a:1:{s:12:\"comment_body\";a:13:{s:5:\"label\";s:7:\"Comment\";s:8:\"settings\";a:3:{s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";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:\"\";s:2:\"id\";s:2:\"36\";s:8:\"field_id\";s:1:\"1\";s:10:\"field_name\";s:12:\"comment_body\";s:11:\"entity_type\";s:7:\"comment\";s:6:\"bundle\";s:32:\"comment_node_photo_moorings_2012\";s:7:\"deleted\";s:1:\"0\";s:13:\"default_value\";N;}}s:6:\"fields\";a:1:{i:0;a:16:{s:12:\"entity_types\";a:1:{i:0;s:7:\"comment\";}s:12:\"translatable\";s:1:\"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:23:\"field_data_comment_body\";a:2:{s:5:\"value\";s:18:\"comment_body_value\";s:6:\"format\";s:19:\"comment_body_format\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:27:\"field_revision_comment_body\";a:2:{s:5:\"value\";s:18:\"comment_body_value\";s:6:\"format\";s:19:\"comment_body_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:\"1\";s:10:\"field_name\";s:12:\"comment_body\";s:4:\"type\";s:9:\"text_long\";s:6:\"module\";s:4:\"text\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:2:{s:5:\"value\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:7:\"comment\";a:9:{i:0;s:17:\"comment_node_page\";i:1;s:20:\"comment_node_article\";i:2;s:19:\"comment_node_photos\";i:3;s:39:\"comment_node_openlayers_example_content\";i:4;s:20:\"comment_node_mooring\";i:5;s:32:\"comment_node_photo_moorings_2014\";i:6;s:32:\"comment_node_photo_moorings_2012\";i:7;s:18:\"comment_node_forum\";i:8;s:32:\"comment_node_photo_moorings_2010\";}}}}}',0,1538750977,1),('field_info:bundle:comment:comment_node_photo_moorings_2014','a:2:{s:9:\"instances\";a:1:{s:12:\"comment_body\";a:13:{s:5:\"label\";s:7:\"Comment\";s:8:\"settings\";a:3:{s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";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:\"\";s:2:\"id\";s:2:\"33\";s:8:\"field_id\";s:1:\"1\";s:10:\"field_name\";s:12:\"comment_body\";s:11:\"entity_type\";s:7:\"comment\";s:6:\"bundle\";s:32:\"comment_node_photo_moorings_2014\";s:7:\"deleted\";s:1:\"0\";s:13:\"default_value\";N;}}s:6:\"fields\";a:1:{i:0;a:16:{s:12:\"entity_types\";a:1:{i:0;s:7:\"comment\";}s:12:\"translatable\";s:1:\"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:23:\"field_data_comment_body\";a:2:{s:5:\"value\";s:18:\"comment_body_value\";s:6:\"format\";s:19:\"comment_body_format\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:27:\"field_revision_comment_body\";a:2:{s:5:\"value\";s:18:\"comment_body_value\";s:6:\"format\";s:19:\"comment_body_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:\"1\";s:10:\"field_name\";s:12:\"comment_body\";s:4:\"type\";s:9:\"text_long\";s:6:\"module\";s:4:\"text\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:2:{s:5:\"value\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:7:\"comment\";a:9:{i:0;s:17:\"comment_node_page\";i:1;s:20:\"comment_node_article\";i:2;s:19:\"comment_node_photos\";i:3;s:39:\"comment_node_openlayers_example_content\";i:4;s:20:\"comment_node_mooring\";i:5;s:32:\"comment_node_photo_moorings_2014\";i:6;s:32:\"comment_node_photo_moorings_2012\";i:7;s:18:\"comment_node_forum\";i:8;s:32:\"comment_node_photo_moorings_2010\";}}}}}',0,1538750977,1),('field_info:bundle:node:article','a:2:{s:9:\"instances\";a:4:{s:4:\"body\";a:13:{s:5:\"label\";s:4:\"Body\";s:6:\"widget\";a:5:{s:6:\"weight\";s:2:\"-4\";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: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\";i:0;s:11:\"description\";s:0:\"\";s:13:\"default_value\";N;s:2:\"id\";s:1:\"4\";s:8:\"field_id\";s:1:\"2\";s:10:\"field_name\";s:4:\"body\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:7:\"article\";s:7:\"deleted\";s:1:\"0\";}s:10:\"field_tags\";a:13:{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:5:{s:6:\"weight\";s:2:\"-4\";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: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\";i:0;s:13:\"default_value\";N;s:2:\"id\";s:1:\"5\";s:8:\"field_id\";s:1:\"3\";s:10:\"field_name\";s:10:\"field_tags\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:7:\"article\";s:7:\"deleted\";s:1:\"0\";}s:11:\"field_image\";a:12:{s:5:\"label\";s:5:\"Image\";s:11:\"description\";s:40:\"Upload an image to go with this article.\";s:8:\"required\";i: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\";i:1;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:6:\"widget\";a:5:{s:6:\"weight\";s:2:\"-1\";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: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\";}}s:2:\"id\";s:1:\"6\";s:8:\"field_id\";s:1:\"4\";s:10:\"field_name\";s:11:\"field_image\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:7:\"article\";s:7:\"deleted\";s:1:\"0\";}s:11:\"title_field\";a:13:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:0:\"\";s:8:\"required\";i:1;s:8:\"settings\";a:4:{s:15:\"text_processing\";s:1:\"0\";s:10:\"hide_label\";a:2:{s:4:\"page\";i:0;s:6:\"entity\";i:0;}s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:6:\"widget\";a:5:{s:6:\"weight\";s:2:\"-5\";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:7:\"display\";a:2:{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:11;}s:6:\"teaser\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;}}s:13:\"default_value\";N;s:2:\"id\";s:2:\"43\";s:8:\"field_id\";s:2:\"24\";s:10:\"field_name\";s:11:\"title_field\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:7:\"article\";s:7:\"deleted\";s:1:\"0\";}}s:6:\"fields\";a:4:{i:0;a:16:{s:12:\"entity_types\";a:1:{i:0;s:4:\"node\";}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:8:\"settings\";a:1:{s:23:\"entity_translation_sync\";b:0;}s:12:\"translatable\";s:1:\"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:15:\"field_data_body\";a:3:{s:5:\"value\";s:10:\"body_value\";s:7:\"summary\";s:12:\"body_summary\";s:6:\"format\";s:11:\"body_format\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:19:\"field_revision_body\";a:3:{s:5:\"value\";s:10:\"body_value\";s:7:\"summary\";s:12:\"body_summary\";s:6:\"format\";s:11:\"body_format\";}}}}}s:2:\"id\";s:1:\"2\";s:10:\"field_name\";s:4:\"body\";s:4:\"type\";s:17:\"text_with_summary\";s:6:\"module\";s:4:\"text\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:3:{s:5:\"value\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:7:\"summary\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:9:{i:0;s:4:\"page\";i:1;s:7:\"article\";i:2;s:6:\"photos\";i:3;s:26:\"openlayers_example_content\";i:4;s:7:\"mooring\";i:5;s:19:\"photo_moorings_2014\";i:6;s:19:\"photo_moorings_2012\";i:7;s:5:\"forum\";i:8;s:19:\"photo_moorings_2010\";}}}i:1;a:16:{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\";s:10:\"field_name\";s:10:\"field_tags\";s:4:\"type\";s:23:\"taxonomy_term_reference\";s:6:\"module\";s:8:\"taxonomy\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:2:\"-1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:1:{s:3:\"tid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:1:{i:0;s:7:\"article\";}}}i:2;a:16:{s:7:\"indexes\";a:1:{s:3:\"fid\";a:1:{i:0;s:3:\"fid\";}}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:22:\"field_data_field_image\";a:5:{s:3:\"fid\";s:15:\"field_image_fid\";s:3:\"alt\";s:15:\"field_image_alt\";s:5:\"title\";s:17:\"field_image_title\";s:5:\"width\";s:17:\"field_image_width\";s:6:\"height\";s:18:\"field_image_height\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:26:\"field_revision_field_image\";a:5:{s:3:\"fid\";s:15:\"field_image_fid\";s:3:\"alt\";s:15:\"field_image_alt\";s:5:\"title\";s:17:\"field_image_title\";s:5:\"width\";s:17:\"field_image_width\";s:6:\"height\";s:18:\"field_image_height\";}}}}}s:12:\"entity_types\";a:0:{}s:12:\"translatable\";s:1:\"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\";}}}s:2:\"id\";s:1:\"4\";s:10:\"field_name\";s:11:\"field_image\";s:4:\"type\";s:5:\"image\";s:6:\"module\";s:5:\"image\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:5:{s:3:\"fid\";a:4:{s:11:\"description\";s:54:\"The {file_managed}.fid being referenced in this field.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:0;s:8:\"unsigned\";b:1;}s:3:\"alt\";a:4:{s:11:\"description\";s:56:\"Alternative image text, for the image\'s \'alt\' attribute.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:512;s:8:\"not null\";b:0;}s:5:\"title\";a:4:{s:11:\"description\";s:52:\"Image title text, for the image\'s \'title\' attribute.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:1024;s:8:\"not null\";b:0;}s:5:\"width\";a:3:{s:11:\"description\";s:33:\"The width of the image in pixels.\";s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}s:6:\"height\";a:3:{s:11:\"description\";s:34:\"The height of the image in pixels.\";s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:1:{i:0;s:7:\"article\";}}}i:3;a:16:{s:12:\"translatable\";s:1:\"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: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_title_field\";a:2:{s:5:\"value\";s:17:\"title_field_value\";s:6:\"format\";s:18:\"title_field_format\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:26:\"field_revision_title_field\";a:2:{s:5:\"value\";s:17:\"title_field_value\";s:6:\"format\";s:18:\"title_field_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:\"24\";s:10:\"field_name\";s:11:\"title_field\";s:4:\"type\";s:4:\"text\";s:6:\"module\";s:4:\"text\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:2:{s:5:\"value\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:8:{i:0;s:6:\"photos\";i:1;s:7:\"article\";i:2;s:4:\"page\";i:3;s:5:\"forum\";i:4;s:7:\"mooring\";i:5;s:26:\"openlayers_example_content\";i:6;s:19:\"photo_moorings_2012\";i:7;s:19:\"photo_moorings_2014\";}}}}}',0,1538750977,1),('field_info:bundle:node:forum','a:2:{s:9:\"instances\";a:3:{s:15:\"taxonomy_forums\";a:13:{s:5:\"label\";s:6:\"Forums\";s:8:\"required\";i:1;s:6:\"widget\";a:5:{s:6:\"weight\";s:1:\"0\";s:4:\"type\";s:14:\"options_select\";s:6:\"module\";s:7:\"options\";s:6:\"active\";i:1;s:8:\"settings\";a:0:{}}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:11:\"description\";s:0:\"\";s:13:\"default_value\";N;s:2:\"id\";s:2:\"39\";s:8:\"field_id\";s:2:\"23\";s:10:\"field_name\";s:15:\"taxonomy_forums\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:5:\"forum\";s:7:\"deleted\";s:1:\"0\";}s:4:\"body\";a:13:{s:5:\"label\";s:4:\"Body\";s:6:\"widget\";a:5:{s:6:\"weight\";s:2:\"31\";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: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: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\";i:0;s:11:\"description\";s:0:\"\";s:13:\"default_value\";N;s:2:\"id\";s:2:\"41\";s:8:\"field_id\";s:1:\"2\";s:10:\"field_name\";s:4:\"body\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:5:\"forum\";s:7:\"deleted\";s:1:\"0\";}s:11:\"title_field\";a:13:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:0:\"\";s:8:\"required\";i:1;s:8:\"settings\";a:4:{s:15:\"text_processing\";s:1:\"0\";s:10:\"hide_label\";a:2:{s:4:\"page\";i:0;s:6:\"entity\";i:0;}s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:6:\"widget\";a:5:{s:6:\"weight\";s:2:\"-5\";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:7:\"display\";a:2:{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:12;}s:6:\"teaser\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;}}s:13:\"default_value\";N;s:2:\"id\";s:2:\"45\";s:8:\"field_id\";s:2:\"24\";s:10:\"field_name\";s:11:\"title_field\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:5:\"forum\";s:7:\"deleted\";s:1:\"0\";}}s:6:\"fields\";a:3:{i:0;a:16:{s:8:\"settings\";a:3:{s:14:\"allowed_values\";a:1:{i:0;a:2:{s:10:\"vocabulary\";s:6:\"forums\";s:6:\"parent\";i:0;}}s:23:\"entity_translation_sync\";b:0;s:21:\"options_list_callback\";s:28:\"i18n_taxonomy_allowed_values\";}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:2:\"23\";s:10:\"field_name\";s:15:\"taxonomy_forums\";s:4:\"type\";s:23:\"taxonomy_term_reference\";s:6:\"module\";s:8:\"taxonomy\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:1:{s:3:\"tid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:1:{i:0;s:5:\"forum\";}}}i:1;a:16:{s:12:\"entity_types\";a:1:{i:0;s:4:\"node\";}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:8:\"settings\";a:1:{s:23:\"entity_translation_sync\";b:0;}s:12:\"translatable\";s:1:\"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:15:\"field_data_body\";a:3:{s:5:\"value\";s:10:\"body_value\";s:7:\"summary\";s:12:\"body_summary\";s:6:\"format\";s:11:\"body_format\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:19:\"field_revision_body\";a:3:{s:5:\"value\";s:10:\"body_value\";s:7:\"summary\";s:12:\"body_summary\";s:6:\"format\";s:11:\"body_format\";}}}}}s:2:\"id\";s:1:\"2\";s:10:\"field_name\";s:4:\"body\";s:4:\"type\";s:17:\"text_with_summary\";s:6:\"module\";s:4:\"text\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:3:{s:5:\"value\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:7:\"summary\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:9:{i:0;s:4:\"page\";i:1;s:7:\"article\";i:2;s:6:\"photos\";i:3;s:26:\"openlayers_example_content\";i:4;s:7:\"mooring\";i:5;s:19:\"photo_moorings_2014\";i:6;s:19:\"photo_moorings_2012\";i:7;s:5:\"forum\";i:8;s:19:\"photo_moorings_2010\";}}}i:2;a:16:{s:12:\"translatable\";s:1:\"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: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_title_field\";a:2:{s:5:\"value\";s:17:\"title_field_value\";s:6:\"format\";s:18:\"title_field_format\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:26:\"field_revision_title_field\";a:2:{s:5:\"value\";s:17:\"title_field_value\";s:6:\"format\";s:18:\"title_field_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:\"24\";s:10:\"field_name\";s:11:\"title_field\";s:4:\"type\";s:4:\"text\";s:6:\"module\";s:4:\"text\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:2:{s:5:\"value\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:8:{i:0;s:6:\"photos\";i:1;s:7:\"article\";i:2;s:4:\"page\";i:3;s:5:\"forum\";i:4;s:7:\"mooring\";i:5;s:26:\"openlayers_example_content\";i:6;s:19:\"photo_moorings_2012\";i:7;s:19:\"photo_moorings_2014\";}}}}}',0,1538750977,1),('field_info:bundle:node:mooring','a:2:{s:9:\"instances\";a:3:{s:4:\"body\";a:13:{s:5:\"label\";s:4:\"Body\";s:6:\"widget\";a:5:{s:6:\"weight\";s:1:\"2\";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: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\";i:0;s:11:\"description\";s:0:\"\";s:13:\"default_value\";N;s:2:\"id\";s:2:\"31\";s:8:\"field_id\";s:1:\"2\";s:10:\"field_name\";s:4:\"body\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:7:\"mooring\";s:7:\"deleted\";s:1:\"0\";}s:12:\"field_gfdata\";a:13:{s:5:\"label\";s:4:\"Data\";s:6:\"widget\";a:5:{s:6:\"weight\";s:1:\"1\";s:4:\"type\";s:15:\"geofield_latlon\";s:6:\"module\";s:8:\"geofield\";s:6:\"active\";i:1;s:8:\"settings\";a:1:{s:17:\"html5_geolocation\";i: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:12:\"geofield_wkt\";s:8:\"settings\";a:1:{s:4:\"data\";s:4:\"full\";}s:6:\"module\";s:8:\"geofield\";s:6:\"weight\";i:1;}s:6:\"teaser\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;}}s:8:\"required\";i:0;s:11:\"description\";s:0:\"\";s:13:\"default_value\";N;s:2:\"id\";s:2:\"32\";s:8:\"field_id\";s:2:\"20\";s:10:\"field_name\";s:12:\"field_gfdata\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:7:\"mooring\";s:7:\"deleted\";s:1:\"0\";}s:11:\"title_field\";a:13:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:0:\"\";s:8:\"required\";i:1;s:8:\"settings\";a:4:{s:15:\"text_processing\";s:1:\"0\";s:10:\"hide_label\";a:2:{s:4:\"page\";i:0;s:6:\"entity\";i:0;}s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:6:\"widget\";a:5:{s:6:\"weight\";s:2:\"-5\";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:7:\"display\";a:2:{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:2;}s:6:\"teaser\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;}}s:13:\"default_value\";N;s:2:\"id\";s:2:\"46\";s:8:\"field_id\";s:2:\"24\";s:10:\"field_name\";s:11:\"title_field\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:7:\"mooring\";s:7:\"deleted\";s:1:\"0\";}}s:6:\"fields\";a:3:{i:0;a:16:{s:12:\"entity_types\";a:1:{i:0;s:4:\"node\";}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:8:\"settings\";a:1:{s:23:\"entity_translation_sync\";b:0;}s:12:\"translatable\";s:1:\"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:15:\"field_data_body\";a:3:{s:5:\"value\";s:10:\"body_value\";s:7:\"summary\";s:12:\"body_summary\";s:6:\"format\";s:11:\"body_format\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:19:\"field_revision_body\";a:3:{s:5:\"value\";s:10:\"body_value\";s:7:\"summary\";s:12:\"body_summary\";s:6:\"format\";s:11:\"body_format\";}}}}}s:2:\"id\";s:1:\"2\";s:10:\"field_name\";s:4:\"body\";s:4:\"type\";s:17:\"text_with_summary\";s:6:\"module\";s:4:\"text\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:3:{s:5:\"value\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:7:\"summary\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:9:{i:0;s:4:\"page\";i:1;s:7:\"article\";i:2;s:6:\"photos\";i:3;s:26:\"openlayers_example_content\";i:4;s:7:\"mooring\";i:5;s:19:\"photo_moorings_2014\";i:6;s:19:\"photo_moorings_2012\";i:7;s:5:\"forum\";i:8;s:19:\"photo_moorings_2010\";}}}i:1;a:16:{s:12:\"translatable\";s:1:\"0\";s:12:\"entity_types\";a:0:{}s:8:\"settings\";a:3:{s:7:\"backend\";s:7:\"default\";s:4:\"srid\";s:4:\"4326\";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_gfdata\";a:9:{s:4:\"geom\";s:17:\"field_gfdata_geom\";s:8:\"geo_type\";s:21:\"field_gfdata_geo_type\";s:3:\"lat\";s:16:\"field_gfdata_lat\";s:3:\"lon\";s:16:\"field_gfdata_lon\";s:4:\"left\";s:17:\"field_gfdata_left\";s:3:\"top\";s:16:\"field_gfdata_top\";s:5:\"right\";s:18:\"field_gfdata_right\";s:6:\"bottom\";s:19:\"field_gfdata_bottom\";s:7:\"geohash\";s:20:\"field_gfdata_geohash\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:27:\"field_revision_field_gfdata\";a:9:{s:4:\"geom\";s:17:\"field_gfdata_geom\";s:8:\"geo_type\";s:21:\"field_gfdata_geo_type\";s:3:\"lat\";s:16:\"field_gfdata_lat\";s:3:\"lon\";s:16:\"field_gfdata_lon\";s:4:\"left\";s:17:\"field_gfdata_left\";s:3:\"top\";s:16:\"field_gfdata_top\";s:5:\"right\";s:18:\"field_gfdata_right\";s:6:\"bottom\";s:19:\"field_gfdata_bottom\";s:7:\"geohash\";s:20:\"field_gfdata_geohash\";}}}}}s:12:\"foreign keys\";a:0:{}s:7:\"indexes\";a:9:{s:3:\"lat\";a:1:{i:0;s:3:\"lat\";}s:3:\"lon\";a:1:{i:0;s:3:\"lon\";}s:3:\"top\";a:1:{i:0;s:3:\"top\";}s:6:\"bottom\";a:1:{i:0;s:6:\"bottom\";}s:4:\"left\";a:1:{i:0;s:4:\"left\";}s:5:\"right\";a:1:{i:0;s:5:\"right\";}s:7:\"geohash\";a:1:{i:0;s:7:\"geohash\";}s:8:\"centroid\";a:2:{i:0;s:3:\"lat\";i:1;s:3:\"lon\";}s:4:\"bbox\";a:4:{i:0;s:3:\"top\";i:1;s:6:\"bottom\";i:2;s:4:\"left\";i:3;s:5:\"right\";}}s:2:\"id\";s:2:\"20\";s:10:\"field_name\";s:12:\"field_gfdata\";s:4:\"type\";s:8:\"geofield\";s:6:\"module\";s:8:\"geofield\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:9:{s:4:\"geom\";a:3:{s:4:\"type\";s:4:\"blob\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:8:\"geo_type\";a:3:{s:4:\"type\";s:7:\"varchar\";s:7:\"default\";s:0:\"\";s:6:\"length\";i:64;}s:3:\"lat\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:3:\"lon\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:4:\"left\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:3:\"top\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:5:\"right\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:6:\"bottom\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:7:\"geohash\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:16;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:1:{i:0;s:7:\"mooring\";}}}i:2;a:16:{s:12:\"translatable\";s:1:\"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: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_title_field\";a:2:{s:5:\"value\";s:17:\"title_field_value\";s:6:\"format\";s:18:\"title_field_format\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:26:\"field_revision_title_field\";a:2:{s:5:\"value\";s:17:\"title_field_value\";s:6:\"format\";s:18:\"title_field_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:\"24\";s:10:\"field_name\";s:11:\"title_field\";s:4:\"type\";s:4:\"text\";s:6:\"module\";s:4:\"text\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:2:{s:5:\"value\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:8:{i:0;s:6:\"photos\";i:1;s:7:\"article\";i:2;s:4:\"page\";i:3;s:5:\"forum\";i:4;s:7:\"mooring\";i:5;s:26:\"openlayers_example_content\";i:6;s:19:\"photo_moorings_2012\";i:7;s:19:\"photo_moorings_2014\";}}}}}',0,1538750977,1),('field_info:bundle:node:openlayers_example_content','a:2:{s:9:\"instances\";a:3:{s:4:\"body\";a:13:{s:13:\"default_value\";N;s:11:\"description\";s:0:\"\";s:7:\"display\";a:2:{s:7:\"default\";a:5:{s:5:\"label\";s:6:\"hidden\";s:6:\"module\";s:4:\"text\";s:8:\"settings\";a:0:{}s:4:\"type\";s:12:\"text_default\";s:6:\"weight\";s:1:\"0\";}s:6:\"teaser\";a:5:{s:5:\"label\";s:6:\"hidden\";s:6:\"module\";s:4:\"text\";s:8:\"settings\";a:1:{s:11:\"trim_length\";i:600;}s:4:\"type\";s:23:\"text_summary_or_trimmed\";s:6:\"weight\";i:0;}}s:5:\"label\";s:4:\"Body\";s:8:\"required\";i:0;s:8:\"settings\";a:4:{s:15:\"text_processing\";s:1:\"1\";s:15:\"display_summary\";i:1;s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:6:\"widget\";a:5:{s:6:\"weight\";s:1:\"2\";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:2:\"id\";s:1:\"9\";s:8:\"field_id\";s:1:\"2\";s:10:\"field_name\";s:4:\"body\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:26:\"openlayers_example_content\";s:7:\"deleted\";s:1:\"0\";}s:30:\"field_openlayers_example_input\";a:13:{s:13:\"default_value\";a:0:{}s:11:\"description\";s:0:\"\";s:7:\"display\";a:2:{s:7:\"default\";a:5:{s:5:\"label\";s:5:\"above\";s:6:\"module\";s:8:\"geofield\";s:8:\"settings\";a:1:{s:4:\"data\";s:4:\"full\";}s:4:\"type\";s:12:\"geofield_wkt\";s:6:\"weight\";s:1:\"1\";}s:6:\"teaser\";a:4:{s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:4:\"type\";s:6:\"hidden\";s:6:\"weight\";i:0;}}s:5:\"label\";s:33:\"OpenLayers Example Geofield Input\";s:8:\"required\";i:0;s:8:\"settings\";a:3:{s:10:\"local_solr\";a:3:{s:7:\"enabled\";b:0;s:9:\"lat_field\";s:3:\"lat\";s:9:\"lng_field\";s:3:\"lng\";}s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:6:\"widget\";a:5:{s:6:\"weight\";s:1:\"1\";s:4:\"type\";s:12:\"geofield_wkt\";s:6:\"module\";s:8:\"geofield\";s:6:\"active\";i:1;s:8:\"settings\";a:0:{}}s:2:\"id\";s:2:\"10\";s:8:\"field_id\";s:1:\"5\";s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:26:\"openlayers_example_content\";s:7:\"deleted\";s:1:\"0\";}s:11:\"title_field\";a:13:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:0:\"\";s:8:\"required\";i:1;s:8:\"settings\";a:4:{s:15:\"text_processing\";s:1:\"0\";s:10:\"hide_label\";a:2:{s:4:\"page\";i:0;s:6:\"entity\";i:0;}s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:6:\"widget\";a:5:{s:6:\"weight\";s:2:\"-5\";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:7:\"display\";a:2:{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:2;}s:6:\"teaser\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;}}s:13:\"default_value\";N;s:2:\"id\";s:2:\"47\";s:8:\"field_id\";s:2:\"24\";s:10:\"field_name\";s:11:\"title_field\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:26:\"openlayers_example_content\";s:7:\"deleted\";s:1:\"0\";}}s:6:\"fields\";a:3:{i:0;a:16:{s:12:\"entity_types\";a:1:{i:0;s:4:\"node\";}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:8:\"settings\";a:1:{s:23:\"entity_translation_sync\";b:0;}s:12:\"translatable\";s:1:\"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:15:\"field_data_body\";a:3:{s:5:\"value\";s:10:\"body_value\";s:7:\"summary\";s:12:\"body_summary\";s:6:\"format\";s:11:\"body_format\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:19:\"field_revision_body\";a:3:{s:5:\"value\";s:10:\"body_value\";s:7:\"summary\";s:12:\"body_summary\";s:6:\"format\";s:11:\"body_format\";}}}}}s:2:\"id\";s:1:\"2\";s:10:\"field_name\";s:4:\"body\";s:4:\"type\";s:17:\"text_with_summary\";s:6:\"module\";s:4:\"text\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:3:{s:5:\"value\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:7:\"summary\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:9:{i:0;s:4:\"page\";i:1;s:7:\"article\";i:2;s:6:\"photos\";i:3;s:26:\"openlayers_example_content\";i:4;s:7:\"mooring\";i:5;s:19:\"photo_moorings_2014\";i:6;s:19:\"photo_moorings_2012\";i:7;s:5:\"forum\";i:8;s:19:\"photo_moorings_2010\";}}}i:1;a:16:{s:12:\"entity_types\";a:0:{}s:12:\"foreign keys\";a:0:{}s:7:\"indexes\";a:9:{s:3:\"lat\";a:1:{i:0;s:3:\"lat\";}s:3:\"lon\";a:1:{i:0;s:3:\"lon\";}s:3:\"top\";a:1:{i:0;s:3:\"top\";}s:6:\"bottom\";a:1:{i:0;s:6:\"bottom\";}s:4:\"left\";a:1:{i:0;s:4:\"left\";}s:5:\"right\";a:1:{i:0;s:5:\"right\";}s:7:\"geohash\";a:1:{i:0;s:7:\"geohash\";}s:8:\"centroid\";a:2:{i:0;s:3:\"lat\";i:1;s:3:\"lon\";}s:4:\"bbox\";a:4:{i:0;s:3:\"top\";i:1;s:6:\"bottom\";i:2;s:4:\"left\";i:3;s:5:\"right\";}}s:8:\"settings\";a:3:{s:7:\"backend\";s:7:\"default\";s:4:\"srid\";s:4:\"4326\";s:23:\"entity_translation_sync\";b: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:41:\"field_data_field_openlayers_example_input\";a:9:{s:4:\"geom\";s:35:\"field_openlayers_example_input_geom\";s:8:\"geo_type\";s:39:\"field_openlayers_example_input_geo_type\";s:3:\"lat\";s:34:\"field_openlayers_example_input_lat\";s:3:\"lon\";s:34:\"field_openlayers_example_input_lon\";s:4:\"left\";s:35:\"field_openlayers_example_input_left\";s:3:\"top\";s:34:\"field_openlayers_example_input_top\";s:5:\"right\";s:36:\"field_openlayers_example_input_right\";s:6:\"bottom\";s:37:\"field_openlayers_example_input_bottom\";s:7:\"geohash\";s:38:\"field_openlayers_example_input_geohash\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:45:\"field_revision_field_openlayers_example_input\";a:9:{s:4:\"geom\";s:35:\"field_openlayers_example_input_geom\";s:8:\"geo_type\";s:39:\"field_openlayers_example_input_geo_type\";s:3:\"lat\";s:34:\"field_openlayers_example_input_lat\";s:3:\"lon\";s:34:\"field_openlayers_example_input_lon\";s:4:\"left\";s:35:\"field_openlayers_example_input_left\";s:3:\"top\";s:34:\"field_openlayers_example_input_top\";s:5:\"right\";s:36:\"field_openlayers_example_input_right\";s:6:\"bottom\";s:37:\"field_openlayers_example_input_bottom\";s:7:\"geohash\";s:38:\"field_openlayers_example_input_geohash\";}}}}}s:2:\"id\";s:1:\"5\";s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:4:\"type\";s:8:\"geofield\";s:6:\"module\";s:8:\"geofield\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:9:{s:4:\"geom\";a:3:{s:4:\"type\";s:4:\"blob\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:8:\"geo_type\";a:3:{s:4:\"type\";s:7:\"varchar\";s:7:\"default\";s:0:\"\";s:6:\"length\";i:64;}s:3:\"lat\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:3:\"lon\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:4:\"left\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:3:\"top\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:5:\"right\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:6:\"bottom\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:7:\"geohash\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:16;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:1:{i:0;s:26:\"openlayers_example_content\";}}}i:2;a:16:{s:12:\"translatable\";s:1:\"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: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_title_field\";a:2:{s:5:\"value\";s:17:\"title_field_value\";s:6:\"format\";s:18:\"title_field_format\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:26:\"field_revision_title_field\";a:2:{s:5:\"value\";s:17:\"title_field_value\";s:6:\"format\";s:18:\"title_field_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:\"24\";s:10:\"field_name\";s:11:\"title_field\";s:4:\"type\";s:4:\"text\";s:6:\"module\";s:4:\"text\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:2:{s:5:\"value\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:8:{i:0;s:6:\"photos\";i:1;s:7:\"article\";i:2;s:4:\"page\";i:3;s:5:\"forum\";i:4;s:7:\"mooring\";i:5;s:26:\"openlayers_example_content\";i:6;s:19:\"photo_moorings_2012\";i:7;s:19:\"photo_moorings_2014\";}}}}}',0,1538750977,1),('field_info:bundle:node:page','a:2:{s:9:\"instances\";a:2:{s:4:\"body\";a:13:{s:5:\"label\";s:4:\"Body\";s:6:\"widget\";a:5:{s:6:\"weight\";s:1:\"2\";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: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:6:\"weight\";s:1:\"0\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";}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\";i:0;s:11:\"description\";s:0:\"\";s:13:\"default_value\";N;s:2:\"id\";s:1:\"2\";s:8:\"field_id\";s:1:\"2\";s:10:\"field_name\";s:4:\"body\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:4:\"page\";s:7:\"deleted\";s:1:\"0\";}s:11:\"title_field\";a:13:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:0:\"\";s:8:\"required\";i:1;s:8:\"settings\";a:4:{s:15:\"text_processing\";s:1:\"0\";s:10:\"hide_label\";a:2:{s:4:\"page\";i:0;s:6:\"entity\";i:0;}s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}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:7:\"display\";a:2:{s:7:\"default\";a:4:{s:5:\"label\";s:5:\"above\";s:4:\"type\";s:6:\"hidden\";s:6:\"weight\";s:1:\"1\";s:8:\"settings\";a:0:{}}s:6:\"teaser\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;}}s:13:\"default_value\";N;s:2:\"id\";s:2:\"44\";s:8:\"field_id\";s:2:\"24\";s:10:\"field_name\";s:11:\"title_field\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:4:\"page\";s:7:\"deleted\";s:1:\"0\";}}s:6:\"fields\";a:2:{i:0;a:16:{s:12:\"entity_types\";a:1:{i:0;s:4:\"node\";}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:8:\"settings\";a:1:{s:23:\"entity_translation_sync\";b:0;}s:12:\"translatable\";s:1:\"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:15:\"field_data_body\";a:3:{s:5:\"value\";s:10:\"body_value\";s:7:\"summary\";s:12:\"body_summary\";s:6:\"format\";s:11:\"body_format\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:19:\"field_revision_body\";a:3:{s:5:\"value\";s:10:\"body_value\";s:7:\"summary\";s:12:\"body_summary\";s:6:\"format\";s:11:\"body_format\";}}}}}s:2:\"id\";s:1:\"2\";s:10:\"field_name\";s:4:\"body\";s:4:\"type\";s:17:\"text_with_summary\";s:6:\"module\";s:4:\"text\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:3:{s:5:\"value\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:7:\"summary\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:9:{i:0;s:4:\"page\";i:1;s:7:\"article\";i:2;s:6:\"photos\";i:3;s:26:\"openlayers_example_content\";i:4;s:7:\"mooring\";i:5;s:19:\"photo_moorings_2014\";i:6;s:19:\"photo_moorings_2012\";i:7;s:5:\"forum\";i:8;s:19:\"photo_moorings_2010\";}}}i:1;a:16:{s:12:\"translatable\";s:1:\"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: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_title_field\";a:2:{s:5:\"value\";s:17:\"title_field_value\";s:6:\"format\";s:18:\"title_field_format\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:26:\"field_revision_title_field\";a:2:{s:5:\"value\";s:17:\"title_field_value\";s:6:\"format\";s:18:\"title_field_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:\"24\";s:10:\"field_name\";s:11:\"title_field\";s:4:\"type\";s:4:\"text\";s:6:\"module\";s:4:\"text\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:2:{s:5:\"value\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:8:{i:0;s:6:\"photos\";i:1;s:7:\"article\";i:2;s:4:\"page\";i:3;s:5:\"forum\";i:4;s:7:\"mooring\";i:5;s:26:\"openlayers_example_content\";i:6;s:19:\"photo_moorings_2012\";i:7;s:19:\"photo_moorings_2014\";}}}}}',0,1538750977,1),('field_info:bundle:node:photos','a:2:{s:9:\"instances\";a:2:{s:4:\"body\";a:13:{s:5:\"label\";s:17:\"Album description\";s:6:\"widget\";a:5:{s:6:\"weight\";s:2:\"-4\";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: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:10:\"text_plain\";s:6:\"weight\";s:1:\"0\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";}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:4:\"full\";a:5:{s:5:\"label\";s:6:\"hidden\";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;s:2:\"id\";s:1:\"8\";s:8:\"field_id\";s:1:\"2\";s:10:\"field_name\";s:4:\"body\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:6:\"photos\";s:7:\"deleted\";s:1:\"0\";}s:11:\"title_field\";a:13:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:0:\"\";s:8:\"required\";i:1;s:8:\"settings\";a:4:{s:15:\"text_processing\";s:1:\"0\";s:10:\"hide_label\";a:2:{s:4:\"page\";i:0;s:6:\"entity\";i:0;}s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:6:\"widget\";a:5:{s:6:\"weight\";s:2:\"-5\";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:7:\"display\";a:3:{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;}s:4:\"full\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;}s:6:\"teaser\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;}}s:13:\"default_value\";N;s:2:\"id\";s:2:\"42\";s:8:\"field_id\";s:2:\"24\";s:10:\"field_name\";s:11:\"title_field\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:6:\"photos\";s:7:\"deleted\";s:1:\"0\";}}s:6:\"fields\";a:2:{i:0;a:16:{s:12:\"entity_types\";a:1:{i:0;s:4:\"node\";}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:8:\"settings\";a:1:{s:23:\"entity_translation_sync\";b:0;}s:12:\"translatable\";s:1:\"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:15:\"field_data_body\";a:3:{s:5:\"value\";s:10:\"body_value\";s:7:\"summary\";s:12:\"body_summary\";s:6:\"format\";s:11:\"body_format\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:19:\"field_revision_body\";a:3:{s:5:\"value\";s:10:\"body_value\";s:7:\"summary\";s:12:\"body_summary\";s:6:\"format\";s:11:\"body_format\";}}}}}s:2:\"id\";s:1:\"2\";s:10:\"field_name\";s:4:\"body\";s:4:\"type\";s:17:\"text_with_summary\";s:6:\"module\";s:4:\"text\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:3:{s:5:\"value\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:7:\"summary\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:9:{i:0;s:4:\"page\";i:1;s:7:\"article\";i:2;s:6:\"photos\";i:3;s:26:\"openlayers_example_content\";i:4;s:7:\"mooring\";i:5;s:19:\"photo_moorings_2014\";i:6;s:19:\"photo_moorings_2012\";i:7;s:5:\"forum\";i:8;s:19:\"photo_moorings_2010\";}}}i:1;a:16:{s:12:\"translatable\";s:1:\"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: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_title_field\";a:2:{s:5:\"value\";s:17:\"title_field_value\";s:6:\"format\";s:18:\"title_field_format\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:26:\"field_revision_title_field\";a:2:{s:5:\"value\";s:17:\"title_field_value\";s:6:\"format\";s:18:\"title_field_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:\"24\";s:10:\"field_name\";s:11:\"title_field\";s:4:\"type\";s:4:\"text\";s:6:\"module\";s:4:\"text\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:2:{s:5:\"value\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:8:{i:0;s:6:\"photos\";i:1;s:7:\"article\";i:2;s:4:\"page\";i:3;s:5:\"forum\";i:4;s:7:\"mooring\";i:5;s:26:\"openlayers_example_content\";i:6;s:19:\"photo_moorings_2012\";i:7;s:19:\"photo_moorings_2014\";}}}}}',0,1538750977,1),('field_info:bundle:node:photo_moorings_2010','a:2:{s:9:\"instances\";a:2:{s:4:\"body\";a:13:{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:\"31\";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:\"\";s:2:\"id\";s:2:\"51\";s:8:\"field_id\";s:1:\"2\";s:10:\"field_name\";s:4:\"body\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:19:\"photo_moorings_2010\";s:7:\"deleted\";s:1:\"0\";s:13:\"default_value\";N;}s:25:\"field_photo_moorings_2010\";a:12:{s:5:\"label\";s:19:\"Photo Moorings 2010\";s:6:\"widget\";a:4:{s:4:\"type\";s:11:\"image_image\";s:6:\"weight\";s:2:\"32\";s:8:\"settings\";a:2:{s:18:\"progress_indicator\";s:8:\"throbber\";s:19:\"preview_image_style\";s:9:\"thumbnail\";}s:6:\"module\";s:5:\"image\";}s:8:\"settings\";a:10:{s:15:\"file_extensions\";s:16:\"png gif jpg jpeg\";s:14:\"file_directory\";s:0:\"\";s:12:\"max_filesize\";s:0:\"\";s:9:\"alt_field\";i:0;s:11:\"title_field\";i:0;s:14:\"max_resolution\";s:0:\"\";s:14:\"min_resolution\";s: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:2:{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:1;}s:6:\"teaser\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;}}s:8:\"required\";b:0;s:11:\"description\";s:0:\"\";s:2:\"id\";s:2:\"52\";s:8:\"field_id\";s:2:\"25\";s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:19:\"photo_moorings_2010\";s:7:\"deleted\";s:1:\"0\";}}s:6:\"fields\";a:2:{i:0;a:16:{s:12:\"entity_types\";a:1:{i:0;s:4:\"node\";}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:8:\"settings\";a:1:{s:23:\"entity_translation_sync\";b:0;}s:12:\"translatable\";s:1:\"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:15:\"field_data_body\";a:3:{s:5:\"value\";s:10:\"body_value\";s:7:\"summary\";s:12:\"body_summary\";s:6:\"format\";s:11:\"body_format\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:19:\"field_revision_body\";a:3:{s:5:\"value\";s:10:\"body_value\";s:7:\"summary\";s:12:\"body_summary\";s:6:\"format\";s:11:\"body_format\";}}}}}s:2:\"id\";s:1:\"2\";s:10:\"field_name\";s:4:\"body\";s:4:\"type\";s:17:\"text_with_summary\";s:6:\"module\";s:4:\"text\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:3:{s:5:\"value\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:7:\"summary\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:9:{i:0;s:4:\"page\";i:1;s:7:\"article\";i:2;s:6:\"photos\";i:3;s:26:\"openlayers_example_content\";i:4;s:7:\"mooring\";i:5;s:19:\"photo_moorings_2014\";i:6;s:19:\"photo_moorings_2012\";i:7;s:5:\"forum\";i:8;s:19:\"photo_moorings_2010\";}}}i:1;a:16:{s:12:\"translatable\";s:1:\"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:36:\"field_data_field_photo_moorings_2010\";a:5:{s:3:\"fid\";s:29:\"field_photo_moorings_2010_fid\";s:3:\"alt\";s:29:\"field_photo_moorings_2010_alt\";s:5:\"title\";s:31:\"field_photo_moorings_2010_title\";s:5:\"width\";s:31:\"field_photo_moorings_2010_width\";s:6:\"height\";s:32:\"field_photo_moorings_2010_height\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:40:\"field_revision_field_photo_moorings_2010\";a:5:{s:3:\"fid\";s:29:\"field_photo_moorings_2010_fid\";s:3:\"alt\";s:29:\"field_photo_moorings_2010_alt\";s:5:\"title\";s:31:\"field_photo_moorings_2010_title\";s:5:\"width\";s:31:\"field_photo_moorings_2010_width\";s:6:\"height\";s:32:\"field_photo_moorings_2010_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:\"25\";s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:4:\"type\";s:5:\"image\";s:6:\"module\";s:5:\"image\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:5:{s:3:\"fid\";a:4:{s:11:\"description\";s:54:\"The {file_managed}.fid being referenced in this field.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:0;s:8:\"unsigned\";b:1;}s:3:\"alt\";a:4:{s:11:\"description\";s:56:\"Alternative image text, for the image\'s \'alt\' attribute.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:512;s:8:\"not null\";b:0;}s:5:\"title\";a:4:{s:11:\"description\";s:52:\"Image title text, for the image\'s \'title\' attribute.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:1024;s:8:\"not null\";b:0;}s:5:\"width\";a:3:{s:11:\"description\";s:33:\"The width of the image in pixels.\";s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}s:6:\"height\";a:3:{s:11:\"description\";s:34:\"The height of the image in pixels.\";s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:1:{i:0;s:19:\"photo_moorings_2010\";}}}}}',0,1538750977,1),('field_info:bundle:node:photo_moorings_2012','a:2:{s:9:\"instances\";a:3:{s:4:\"body\";a:13:{s:5:\"label\";s:4:\"Body\";s:6:\"widget\";a:5:{s:6:\"weight\";s:2:\"31\";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: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:6:\"weight\";s:1:\"0\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";}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:4:\"full\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:12:\"text_default\";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;s:2:\"id\";s:2:\"37\";s:8:\"field_id\";s:1:\"2\";s:10:\"field_name\";s:4:\"body\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:19:\"photo_moorings_2012\";s:7:\"deleted\";s:1:\"0\";}s:25:\"field_photo_moorings_2012\";a:12:{s:5:\"label\";s:19:\"Photo Moorings 2012\";s:6:\"widget\";a:5:{s:6:\"weight\";s:2:\"32\";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: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:23:\"entity_translation_sync\";i:0;s:18:\"user_register_form\";b:0;}s:7:\"display\";a:3:{s:7:\"default\";a:5:{s:5:\"label\";s:5:\"above\";s:4:\"type\";s:5:\"image\";s:6:\"weight\";s:1:\"1\";s:8:\"settings\";a:2:{s:11:\"image_style\";s:0:\"\";s:10:\"image_link\";s:0:\"\";}s:6:\"module\";s:5:\"image\";}s:4:\"full\";a:5:{s:5:\"label\";s:5:\"above\";s:4:\"type\";s:5:\"image\";s:6:\"weight\";s:1:\"1\";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:\"teaser\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;}}s:8:\"required\";i:0;s:11:\"description\";s:0:\"\";s:2:\"id\";s:2:\"38\";s:8:\"field_id\";s:2:\"22\";s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:19:\"photo_moorings_2012\";s:7:\"deleted\";s:1:\"0\";}s:11:\"title_field\";a:13:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:0:\"\";s:8:\"required\";i:1;s:8:\"settings\";a:4:{s:15:\"text_processing\";s:1:\"0\";s:10:\"hide_label\";a:2:{s:4:\"page\";i:0;s:6:\"entity\";i:0;}s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:6:\"widget\";a:5:{s:6:\"weight\";i:-5;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:7:\"display\";a:3:{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:2;}s:4:\"full\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;}s:6:\"teaser\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;}}s:13:\"default_value\";N;s:2:\"id\";s:2:\"48\";s:8:\"field_id\";s:2:\"24\";s:10:\"field_name\";s:11:\"title_field\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:19:\"photo_moorings_2012\";s:7:\"deleted\";s:1:\"0\";}}s:6:\"fields\";a:3:{i:0;a:16:{s:12:\"entity_types\";a:1:{i:0;s:4:\"node\";}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:8:\"settings\";a:1:{s:23:\"entity_translation_sync\";b:0;}s:12:\"translatable\";s:1:\"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:15:\"field_data_body\";a:3:{s:5:\"value\";s:10:\"body_value\";s:7:\"summary\";s:12:\"body_summary\";s:6:\"format\";s:11:\"body_format\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:19:\"field_revision_body\";a:3:{s:5:\"value\";s:10:\"body_value\";s:7:\"summary\";s:12:\"body_summary\";s:6:\"format\";s:11:\"body_format\";}}}}}s:2:\"id\";s:1:\"2\";s:10:\"field_name\";s:4:\"body\";s:4:\"type\";s:17:\"text_with_summary\";s:6:\"module\";s:4:\"text\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:3:{s:5:\"value\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:7:\"summary\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:9:{i:0;s:4:\"page\";i:1;s:7:\"article\";i:2;s:6:\"photos\";i:3;s:26:\"openlayers_example_content\";i:4;s:7:\"mooring\";i:5;s:19:\"photo_moorings_2014\";i:6;s:19:\"photo_moorings_2012\";i:7;s:5:\"forum\";i:8;s:19:\"photo_moorings_2010\";}}}i:1;a:16:{s:12:\"translatable\";s:1:\"1\";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:36:\"field_data_field_photo_moorings_2012\";a:5:{s:3:\"fid\";s:29:\"field_photo_moorings_2012_fid\";s:3:\"alt\";s:29:\"field_photo_moorings_2012_alt\";s:5:\"title\";s:31:\"field_photo_moorings_2012_title\";s:5:\"width\";s:31:\"field_photo_moorings_2012_width\";s:6:\"height\";s:32:\"field_photo_moorings_2012_height\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:40:\"field_revision_field_photo_moorings_2012\";a:5:{s:3:\"fid\";s:29:\"field_photo_moorings_2012_fid\";s:3:\"alt\";s:29:\"field_photo_moorings_2012_alt\";s:5:\"title\";s:31:\"field_photo_moorings_2012_title\";s:5:\"width\";s:31:\"field_photo_moorings_2012_width\";s:6:\"height\";s:32:\"field_photo_moorings_2012_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:\"22\";s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:4:\"type\";s:5:\"image\";s:6:\"module\";s:5:\"image\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:5:{s:3:\"fid\";a:4:{s:11:\"description\";s:54:\"The {file_managed}.fid being referenced in this field.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:0;s:8:\"unsigned\";b:1;}s:3:\"alt\";a:4:{s:11:\"description\";s:56:\"Alternative image text, for the image\'s \'alt\' attribute.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:512;s:8:\"not null\";b:0;}s:5:\"title\";a:4:{s:11:\"description\";s:52:\"Image title text, for the image\'s \'title\' attribute.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:1024;s:8:\"not null\";b:0;}s:5:\"width\";a:3:{s:11:\"description\";s:33:\"The width of the image in pixels.\";s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}s:6:\"height\";a:3:{s:11:\"description\";s:34:\"The height of the image in pixels.\";s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:1:{i:0;s:19:\"photo_moorings_2012\";}}}i:2;a:16:{s:12:\"translatable\";s:1:\"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: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_title_field\";a:2:{s:5:\"value\";s:17:\"title_field_value\";s:6:\"format\";s:18:\"title_field_format\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:26:\"field_revision_title_field\";a:2:{s:5:\"value\";s:17:\"title_field_value\";s:6:\"format\";s:18:\"title_field_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:\"24\";s:10:\"field_name\";s:11:\"title_field\";s:4:\"type\";s:4:\"text\";s:6:\"module\";s:4:\"text\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:2:{s:5:\"value\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:8:{i:0;s:6:\"photos\";i:1;s:7:\"article\";i:2;s:4:\"page\";i:3;s:5:\"forum\";i:4;s:7:\"mooring\";i:5;s:26:\"openlayers_example_content\";i:6;s:19:\"photo_moorings_2012\";i:7;s:19:\"photo_moorings_2014\";}}}}}',0,1538750977,1),('field_info:bundle:node:photo_moorings_2014','a:2:{s:9:\"instances\";a:3:{s:4:\"body\";a:13:{s:5:\"label\";s:4:\"Body\";s:6:\"widget\";a:5:{s:6:\"weight\";s:2:\"31\";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: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:6:\"weight\";s:1:\"0\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";}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\";i:0;s:11:\"description\";s:0:\"\";s:13:\"default_value\";N;s:2:\"id\";s:2:\"34\";s:8:\"field_id\";s:1:\"2\";s:10:\"field_name\";s:4:\"body\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:19:\"photo_moorings_2014\";s:7:\"deleted\";s:1:\"0\";}s:11:\"field_photo\";a:12:{s:5:\"label\";s:19:\"Photo Moorings 2014\";s:6:\"widget\";a:5:{s:6:\"weight\";s:2:\"32\";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: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:23:\"entity_translation_sync\";i:0;s:18:\"user_register_form\";b:0;}s:7:\"display\";a:2:{s:7:\"default\";a:5:{s:5:\"label\";s:5:\"above\";s:4:\"type\";s:5:\"image\";s:6:\"weight\";s:1:\"1\";s:8:\"settings\";a:2:{s:11:\"image_style\";s:0:\"\";s:10:\"image_link\";s:4:\"file\";}s:6:\"module\";s:5:\"image\";}s:6:\"teaser\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;}}s:8:\"required\";i:0;s:11:\"description\";s:0:\"\";s:2:\"id\";s:2:\"35\";s:8:\"field_id\";s:2:\"21\";s:10:\"field_name\";s:11:\"field_photo\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:19:\"photo_moorings_2014\";s:7:\"deleted\";s:1:\"0\";}s:11:\"title_field\";a:13:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:0:\"\";s:8:\"required\";i:1;s:8:\"settings\";a:4:{s:15:\"text_processing\";s:1:\"0\";s:10:\"hide_label\";a:2:{s:4:\"page\";i:0;s:6:\"entity\";i:0;}s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:6:\"widget\";a:5:{s:6:\"weight\";s:2:\"-5\";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:7:\"display\";a:2:{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:2;}s:6:\"teaser\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;}}s:13:\"default_value\";N;s:2:\"id\";s:2:\"49\";s:8:\"field_id\";s:2:\"24\";s:10:\"field_name\";s:11:\"title_field\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:19:\"photo_moorings_2014\";s:7:\"deleted\";s:1:\"0\";}}s:6:\"fields\";a:3:{i:0;a:16:{s:12:\"entity_types\";a:1:{i:0;s:4:\"node\";}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:8:\"settings\";a:1:{s:23:\"entity_translation_sync\";b:0;}s:12:\"translatable\";s:1:\"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:15:\"field_data_body\";a:3:{s:5:\"value\";s:10:\"body_value\";s:7:\"summary\";s:12:\"body_summary\";s:6:\"format\";s:11:\"body_format\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:19:\"field_revision_body\";a:3:{s:5:\"value\";s:10:\"body_value\";s:7:\"summary\";s:12:\"body_summary\";s:6:\"format\";s:11:\"body_format\";}}}}}s:2:\"id\";s:1:\"2\";s:10:\"field_name\";s:4:\"body\";s:4:\"type\";s:17:\"text_with_summary\";s:6:\"module\";s:4:\"text\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:3:{s:5:\"value\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:7:\"summary\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:9:{i:0;s:4:\"page\";i:1;s:7:\"article\";i:2;s:6:\"photos\";i:3;s:26:\"openlayers_example_content\";i:4;s:7:\"mooring\";i:5;s:19:\"photo_moorings_2014\";i:6;s:19:\"photo_moorings_2012\";i:7;s:5:\"forum\";i:8;s:19:\"photo_moorings_2010\";}}}i:1;a:16:{s:12:\"translatable\";s:1:\"1\";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:22:\"field_data_field_photo\";a:5:{s:3:\"fid\";s:15:\"field_photo_fid\";s:3:\"alt\";s:15:\"field_photo_alt\";s:5:\"title\";s:17:\"field_photo_title\";s:5:\"width\";s:17:\"field_photo_width\";s:6:\"height\";s:18:\"field_photo_height\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:26:\"field_revision_field_photo\";a:5:{s:3:\"fid\";s:15:\"field_photo_fid\";s:3:\"alt\";s:15:\"field_photo_alt\";s:5:\"title\";s:17:\"field_photo_title\";s:5:\"width\";s:17:\"field_photo_width\";s:6:\"height\";s:18:\"field_photo_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:\"21\";s:10:\"field_name\";s:11:\"field_photo\";s:4:\"type\";s:5:\"image\";s:6:\"module\";s:5:\"image\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:5:{s:3:\"fid\";a:4:{s:11:\"description\";s:54:\"The {file_managed}.fid being referenced in this field.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:0;s:8:\"unsigned\";b:1;}s:3:\"alt\";a:4:{s:11:\"description\";s:56:\"Alternative image text, for the image\'s \'alt\' attribute.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:512;s:8:\"not null\";b:0;}s:5:\"title\";a:4:{s:11:\"description\";s:52:\"Image title text, for the image\'s \'title\' attribute.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:1024;s:8:\"not null\";b:0;}s:5:\"width\";a:3:{s:11:\"description\";s:33:\"The width of the image in pixels.\";s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}s:6:\"height\";a:3:{s:11:\"description\";s:34:\"The height of the image in pixels.\";s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:1:{i:0;s:19:\"photo_moorings_2014\";}}}i:2;a:16:{s:12:\"translatable\";s:1:\"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: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_title_field\";a:2:{s:5:\"value\";s:17:\"title_field_value\";s:6:\"format\";s:18:\"title_field_format\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:26:\"field_revision_title_field\";a:2:{s:5:\"value\";s:17:\"title_field_value\";s:6:\"format\";s:18:\"title_field_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:\"24\";s:10:\"field_name\";s:11:\"title_field\";s:4:\"type\";s:4:\"text\";s:6:\"module\";s:4:\"text\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:2:{s:5:\"value\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:8:{i:0;s:6:\"photos\";i:1;s:7:\"article\";i:2;s:4:\"page\";i:3;s:5:\"forum\";i:4;s:7:\"mooring\";i:5;s:26:\"openlayers_example_content\";i:6;s:19:\"photo_moorings_2012\";i:7;s:19:\"photo_moorings_2014\";}}}}}',0,1538750977,1),('field_info:bundle:taxonomy_term:forums','a:2:{s:9:\"instances\";a:0:{}s:6:\"fields\";a:0:{}}',0,1538751274,1),('field_info:bundle:taxonomy_term:tags','a:2:{s:9:\"instances\";a:0:{}s:6:\"fields\";a:0:{}}',0,1538751274,1),('field_info:bundle:user:user','a:2:{s:9:\"instances\";a:0:{}s:6:\"fields\";a:0:{}}',0,1538751619,1),('field_info:bundle_extra:node:article','a:2:{s:4:\"form\";a:2:{s:8:\"language\";a:3:{s:5:\"label\";s:8:\"Language\";s:11:\"description\";s:18:\"Language selection\";s:6:\"weight\";s:1:\"0\";}s:9:\"locations\";a:3:{s:5:\"label\";s:8:\"Location\";s:11:\"description\";s:29:\"Location module form elements\";s:6:\"weight\";s:2:\"30\";}}s:7:\"display\";a:1:{s:8:\"language\";a:3:{s:5:\"label\";s:8:\"Language\";s:11:\"description\";s:8:\"Language\";s:7:\"display\";a:4:{s:7:\"default\";a:2:{s:6:\"weight\";i:0;s:7:\"visible\";b:1;}s:4:\"full\";a:2:{s:6:\"weight\";i:0;s:7:\"visible\";b:1;}s:6:\"teaser\";a:2:{s:6:\"weight\";i:0;s:7:\"visible\";b:1;}s:3:\"rss\";a:2:{s:6:\"weight\";i:0;s:7:\"visible\";b:1;}}}}}',0,1652163438,1),('field_info:bundle_extra:node:page','a:2:{s:4:\"form\";a:2:{s:8:\"language\";a:3:{s:5:\"label\";s:8:\"Language\";s:11:\"description\";s:18:\"Language selection\";s:6:\"weight\";s:1:\"1\";}s:9:\"locations\";a:3:{s:5:\"label\";s:8:\"Location\";s:11:\"description\";s:29:\"Location module form elements\";s:6:\"weight\";s:1:\"3\";}}s:7:\"display\";a:1:{s:8:\"language\";a:3:{s:5:\"label\";s:8:\"Language\";s:11:\"description\";s:8:\"Language\";s:7:\"display\";a:4:{s:7:\"default\";a:2:{s:6:\"weight\";s:1:\"0\";s:7:\"visible\";b:0;}s:4:\"full\";a:2:{s:6:\"weight\";i:0;s:7:\"visible\";b:1;}s:6:\"teaser\";a:2:{s:6:\"weight\";i:0;s:7:\"visible\";b:1;}s:3:\"rss\";a:2:{s:6:\"weight\";i:0;s:7:\"visible\";b:1;}}}}}',0,1538751274,1),('field_info:bundle_extra:node:photos','a:2:{s:4:\"form\";a:2:{s:8:\"language\";a:3:{s:5:\"label\";s:8:\"Language\";s:11:\"description\";s:18:\"Language selection\";s:6:\"weight\";s:1:\"0\";}s:9:\"locations\";a:3:{s:5:\"label\";s:8:\"Location\";s:11:\"description\";s:29:\"Location module form elements\";s:6:\"weight\";s:2:\"30\";}}s:7:\"display\";a:1:{s:8:\"language\";a:3:{s:5:\"label\";s:8:\"Language\";s:11:\"description\";s:8:\"Language\";s:7:\"display\";a:4:{s:7:\"default\";a:2:{s:6:\"weight\";i:0;s:7:\"visible\";b:1;}s:4:\"full\";a:2:{s:6:\"weight\";i:0;s:7:\"visible\";b:1;}s:6:\"teaser\";a:2:{s:6:\"weight\";i:0;s:7:\"visible\";b:1;}s:3:\"rss\";a:2:{s:6:\"weight\";i:0;s:7:\"visible\";b:1;}}}}}',0,1539006142,1),('field_info:bundle_extra:node:photo_moorings_2010','a:2:{s:4:\"form\";a:3:{s:8:\"language\";a:3:{s:5:\"label\";s:6:\"Lingua\";s:11:\"description\";s:18:\"Language selection\";s:6:\"weight\";i:0;}s:9:\"locations\";a:3:{s:5:\"label\";s:9:\"Posizione\";s:11:\"description\";s:29:\"Location module form elements\";s:6:\"weight\";s:2:\"30\";}s:5:\"title\";a:3:{s:5:\"label\";s:19:\"Photo Moorings 2010\";s:11:\"description\";s:24:\"Elemento del modulo Node\";s:6:\"weight\";s:2:\"-5\";}}s:7:\"display\";a:1:{s:8:\"language\";a:3:{s:5:\"label\";s:6:\"Lingua\";s:11:\"description\";s:6:\"Lingua\";s:7:\"display\";a:4:{s:7:\"default\";a:2:{s:6:\"weight\";i:0;s:7:\"visible\";b:1;}s:4:\"full\";a:2:{s:6:\"weight\";i:0;s:7:\"visible\";b:1;}s:6:\"teaser\";a:2:{s:6:\"weight\";i:0;s:7:\"visible\";b:1;}s:3:\"rss\";a:2:{s:6:\"weight\";i:0;s:7:\"visible\";b:1;}}}}}',0,1538751395,1),('field_info:bundle_extra:node:photo_moorings_2012','a:2:{s:4:\"form\";a:2:{s:8:\"language\";a:3:{s:5:\"label\";s:6:\"Lingua\";s:11:\"description\";s:18:\"Language selection\";s:6:\"weight\";i:0;}s:9:\"locations\";a:3:{s:5:\"label\";s:9:\"Posizione\";s:11:\"description\";s:29:\"Location module form elements\";s:6:\"weight\";s:2:\"30\";}}s:7:\"display\";a:1:{s:8:\"language\";a:3:{s:5:\"label\";s:6:\"Lingua\";s:11:\"description\";s:6:\"Lingua\";s:7:\"display\";a:4:{s:7:\"default\";a:2:{s:6:\"weight\";i:0;s:7:\"visible\";b:1;}s:4:\"full\";a:2:{s:6:\"weight\";i:0;s:7:\"visible\";b:1;}s:6:\"teaser\";a:2:{s:6:\"weight\";i:0;s:7:\"visible\";b:1;}s:3:\"rss\";a:2:{s:6:\"weight\";i:0;s:7:\"visible\";b:1;}}}}}',0,1538751395,1),('field_info:bundle_extra:node:photo_moorings_2014','a:2:{s:4:\"form\";a:2:{s:8:\"language\";a:3:{s:5:\"label\";s:8:\"Language\";s:11:\"description\";s:18:\"Language selection\";s:6:\"weight\";s:1:\"0\";}s:9:\"locations\";a:3:{s:5:\"label\";s:8:\"Location\";s:11:\"description\";s:29:\"Location module form elements\";s:6:\"weight\";s:2:\"30\";}}s:7:\"display\";a:1:{s:8:\"language\";a:3:{s:5:\"label\";s:8:\"Language\";s:11:\"description\";s:8:\"Language\";s:7:\"display\";a:4:{s:7:\"default\";a:2:{s:6:\"weight\";i:0;s:7:\"visible\";b:1;}s:4:\"full\";a:2:{s:6:\"weight\";i:0;s:7:\"visible\";b:1;}s:6:\"teaser\";a:2:{s:6:\"weight\";i:0;s:7:\"visible\";b:1;}s:3:\"rss\";a:2:{s:6:\"weight\";i:0;s:7:\"visible\";b:1;}}}}}',0,1539007866,1),('field_info:bundle_extra:user:user','a:2:{s:4:\"form\";a:2:{s:7:\"account\";a:3:{s:5:\"label\";s:22:\"User name and password\";s:11:\"description\";s:34:\"User module account form elements.\";s:6:\"weight\";i:-10;}s:8:\"timezone\";a:3:{s:5:\"label\";s:8:\"Timezone\";s:11:\"description\";s:34:\"User module timezone form element.\";s:6:\"weight\";i:6;}}s:7:\"display\";a:1:{s:7:\"summary\";a:3:{s:5:\"label\";s:7:\"History\";s:11:\"description\";s:33:\"User module history view element.\";s:7:\"display\";a:2:{s:7:\"default\";a:2:{s:6:\"weight\";i:5;s:7:\"visible\";b:1;}s:4:\"full\";a:2:{s:6:\"weight\";i:5;s:7:\"visible\";b:1;}}}}}',0,1538751620,1),('field_info:fields','a:11:{i:1;a:16:{s:12:\"entity_types\";a:1:{i:0;s:7:\"comment\";}s:12:\"translatable\";s:1:\"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:23:\"field_data_comment_body\";a:2:{s:5:\"value\";s:18:\"comment_body_value\";s:6:\"format\";s:19:\"comment_body_format\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:27:\"field_revision_comment_body\";a:2:{s:5:\"value\";s:18:\"comment_body_value\";s:6:\"format\";s:19:\"comment_body_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:\"1\";s:10:\"field_name\";s:12:\"comment_body\";s:4:\"type\";s:9:\"text_long\";s:6:\"module\";s:4:\"text\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:2:{s:5:\"value\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:7:\"comment\";a:9:{i:0;s:17:\"comment_node_page\";i:1;s:20:\"comment_node_article\";i:2;s:19:\"comment_node_photos\";i:3;s:39:\"comment_node_openlayers_example_content\";i:4;s:20:\"comment_node_mooring\";i:5;s:32:\"comment_node_photo_moorings_2014\";i:6;s:32:\"comment_node_photo_moorings_2012\";i:7;s:18:\"comment_node_forum\";i:8;s:32:\"comment_node_photo_moorings_2010\";}}}i:2;a:16:{s:12:\"entity_types\";a:1:{i:0;s:4:\"node\";}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:8:\"settings\";a:1:{s:23:\"entity_translation_sync\";b:0;}s:12:\"translatable\";s:1:\"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:15:\"field_data_body\";a:3:{s:5:\"value\";s:10:\"body_value\";s:7:\"summary\";s:12:\"body_summary\";s:6:\"format\";s:11:\"body_format\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:19:\"field_revision_body\";a:3:{s:5:\"value\";s:10:\"body_value\";s:7:\"summary\";s:12:\"body_summary\";s:6:\"format\";s:11:\"body_format\";}}}}}s:2:\"id\";s:1:\"2\";s:10:\"field_name\";s:4:\"body\";s:4:\"type\";s:17:\"text_with_summary\";s:6:\"module\";s:4:\"text\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:3:{s:5:\"value\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:7:\"summary\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:9:{i:0;s:4:\"page\";i:1;s:7:\"article\";i:2;s:6:\"photos\";i:3;s:26:\"openlayers_example_content\";i:4;s:7:\"mooring\";i:5;s:19:\"photo_moorings_2014\";i:6;s:19:\"photo_moorings_2012\";i:7;s:5:\"forum\";i:8;s:19:\"photo_moorings_2010\";}}}i:3;a:16:{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\";s:10:\"field_name\";s:10:\"field_tags\";s:4:\"type\";s:23:\"taxonomy_term_reference\";s:6:\"module\";s:8:\"taxonomy\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:2:\"-1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:1:{s:3:\"tid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:1:{i:0;s:7:\"article\";}}}i:4;a:16:{s:7:\"indexes\";a:1:{s:3:\"fid\";a:1:{i:0;s:3:\"fid\";}}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:22:\"field_data_field_image\";a:5:{s:3:\"fid\";s:15:\"field_image_fid\";s:3:\"alt\";s:15:\"field_image_alt\";s:5:\"title\";s:17:\"field_image_title\";s:5:\"width\";s:17:\"field_image_width\";s:6:\"height\";s:18:\"field_image_height\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:26:\"field_revision_field_image\";a:5:{s:3:\"fid\";s:15:\"field_image_fid\";s:3:\"alt\";s:15:\"field_image_alt\";s:5:\"title\";s:17:\"field_image_title\";s:5:\"width\";s:17:\"field_image_width\";s:6:\"height\";s:18:\"field_image_height\";}}}}}s:12:\"entity_types\";a:0:{}s:12:\"translatable\";s:1:\"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\";}}}s:2:\"id\";s:1:\"4\";s:10:\"field_name\";s:11:\"field_image\";s:4:\"type\";s:5:\"image\";s:6:\"module\";s:5:\"image\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:5:{s:3:\"fid\";a:4:{s:11:\"description\";s:54:\"The {file_managed}.fid being referenced in this field.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:0;s:8:\"unsigned\";b:1;}s:3:\"alt\";a:4:{s:11:\"description\";s:56:\"Alternative image text, for the image\'s \'alt\' attribute.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:512;s:8:\"not null\";b:0;}s:5:\"title\";a:4:{s:11:\"description\";s:52:\"Image title text, for the image\'s \'title\' attribute.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:1024;s:8:\"not null\";b:0;}s:5:\"width\";a:3:{s:11:\"description\";s:33:\"The width of the image in pixels.\";s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}s:6:\"height\";a:3:{s:11:\"description\";s:34:\"The height of the image in pixels.\";s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:1:{i:0;s:7:\"article\";}}}i:5;a:16:{s:12:\"entity_types\";a:0:{}s:12:\"foreign keys\";a:0:{}s:7:\"indexes\";a:9:{s:3:\"lat\";a:1:{i:0;s:3:\"lat\";}s:3:\"lon\";a:1:{i:0;s:3:\"lon\";}s:3:\"top\";a:1:{i:0;s:3:\"top\";}s:6:\"bottom\";a:1:{i:0;s:6:\"bottom\";}s:4:\"left\";a:1:{i:0;s:4:\"left\";}s:5:\"right\";a:1:{i:0;s:5:\"right\";}s:7:\"geohash\";a:1:{i:0;s:7:\"geohash\";}s:8:\"centroid\";a:2:{i:0;s:3:\"lat\";i:1;s:3:\"lon\";}s:4:\"bbox\";a:4:{i:0;s:3:\"top\";i:1;s:6:\"bottom\";i:2;s:4:\"left\";i:3;s:5:\"right\";}}s:8:\"settings\";a:3:{s:7:\"backend\";s:7:\"default\";s:4:\"srid\";s:4:\"4326\";s:23:\"entity_translation_sync\";b: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:41:\"field_data_field_openlayers_example_input\";a:9:{s:4:\"geom\";s:35:\"field_openlayers_example_input_geom\";s:8:\"geo_type\";s:39:\"field_openlayers_example_input_geo_type\";s:3:\"lat\";s:34:\"field_openlayers_example_input_lat\";s:3:\"lon\";s:34:\"field_openlayers_example_input_lon\";s:4:\"left\";s:35:\"field_openlayers_example_input_left\";s:3:\"top\";s:34:\"field_openlayers_example_input_top\";s:5:\"right\";s:36:\"field_openlayers_example_input_right\";s:6:\"bottom\";s:37:\"field_openlayers_example_input_bottom\";s:7:\"geohash\";s:38:\"field_openlayers_example_input_geohash\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:45:\"field_revision_field_openlayers_example_input\";a:9:{s:4:\"geom\";s:35:\"field_openlayers_example_input_geom\";s:8:\"geo_type\";s:39:\"field_openlayers_example_input_geo_type\";s:3:\"lat\";s:34:\"field_openlayers_example_input_lat\";s:3:\"lon\";s:34:\"field_openlayers_example_input_lon\";s:4:\"left\";s:35:\"field_openlayers_example_input_left\";s:3:\"top\";s:34:\"field_openlayers_example_input_top\";s:5:\"right\";s:36:\"field_openlayers_example_input_right\";s:6:\"bottom\";s:37:\"field_openlayers_example_input_bottom\";s:7:\"geohash\";s:38:\"field_openlayers_example_input_geohash\";}}}}}s:2:\"id\";s:1:\"5\";s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:4:\"type\";s:8:\"geofield\";s:6:\"module\";s:8:\"geofield\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:9:{s:4:\"geom\";a:3:{s:4:\"type\";s:4:\"blob\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:8:\"geo_type\";a:3:{s:4:\"type\";s:7:\"varchar\";s:7:\"default\";s:0:\"\";s:6:\"length\";i:64;}s:3:\"lat\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:3:\"lon\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:4:\"left\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:3:\"top\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:5:\"right\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:6:\"bottom\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:7:\"geohash\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:16;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:1:{i:0;s:26:\"openlayers_example_content\";}}}i:20;a:16:{s:12:\"translatable\";s:1:\"0\";s:12:\"entity_types\";a:0:{}s:8:\"settings\";a:3:{s:7:\"backend\";s:7:\"default\";s:4:\"srid\";s:4:\"4326\";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_gfdata\";a:9:{s:4:\"geom\";s:17:\"field_gfdata_geom\";s:8:\"geo_type\";s:21:\"field_gfdata_geo_type\";s:3:\"lat\";s:16:\"field_gfdata_lat\";s:3:\"lon\";s:16:\"field_gfdata_lon\";s:4:\"left\";s:17:\"field_gfdata_left\";s:3:\"top\";s:16:\"field_gfdata_top\";s:5:\"right\";s:18:\"field_gfdata_right\";s:6:\"bottom\";s:19:\"field_gfdata_bottom\";s:7:\"geohash\";s:20:\"field_gfdata_geohash\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:27:\"field_revision_field_gfdata\";a:9:{s:4:\"geom\";s:17:\"field_gfdata_geom\";s:8:\"geo_type\";s:21:\"field_gfdata_geo_type\";s:3:\"lat\";s:16:\"field_gfdata_lat\";s:3:\"lon\";s:16:\"field_gfdata_lon\";s:4:\"left\";s:17:\"field_gfdata_left\";s:3:\"top\";s:16:\"field_gfdata_top\";s:5:\"right\";s:18:\"field_gfdata_right\";s:6:\"bottom\";s:19:\"field_gfdata_bottom\";s:7:\"geohash\";s:20:\"field_gfdata_geohash\";}}}}}s:12:\"foreign keys\";a:0:{}s:7:\"indexes\";a:9:{s:3:\"lat\";a:1:{i:0;s:3:\"lat\";}s:3:\"lon\";a:1:{i:0;s:3:\"lon\";}s:3:\"top\";a:1:{i:0;s:3:\"top\";}s:6:\"bottom\";a:1:{i:0;s:6:\"bottom\";}s:4:\"left\";a:1:{i:0;s:4:\"left\";}s:5:\"right\";a:1:{i:0;s:5:\"right\";}s:7:\"geohash\";a:1:{i:0;s:7:\"geohash\";}s:8:\"centroid\";a:2:{i:0;s:3:\"lat\";i:1;s:3:\"lon\";}s:4:\"bbox\";a:4:{i:0;s:3:\"top\";i:1;s:6:\"bottom\";i:2;s:4:\"left\";i:3;s:5:\"right\";}}s:2:\"id\";s:2:\"20\";s:10:\"field_name\";s:12:\"field_gfdata\";s:4:\"type\";s:8:\"geofield\";s:6:\"module\";s:8:\"geofield\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:9:{s:4:\"geom\";a:3:{s:4:\"type\";s:4:\"blob\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:8:\"geo_type\";a:3:{s:4:\"type\";s:7:\"varchar\";s:7:\"default\";s:0:\"\";s:6:\"length\";i:64;}s:3:\"lat\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:3:\"lon\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:4:\"left\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:3:\"top\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:5:\"right\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:6:\"bottom\";a:4:{s:4:\"type\";s:7:\"numeric\";s:9:\"precision\";i:18;s:5:\"scale\";i:12;s:8:\"not null\";b:0;}s:7:\"geohash\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:16;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:1:{i:0;s:7:\"mooring\";}}}i:21;a:16:{s:12:\"translatable\";s:1:\"1\";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:22:\"field_data_field_photo\";a:5:{s:3:\"fid\";s:15:\"field_photo_fid\";s:3:\"alt\";s:15:\"field_photo_alt\";s:5:\"title\";s:17:\"field_photo_title\";s:5:\"width\";s:17:\"field_photo_width\";s:6:\"height\";s:18:\"field_photo_height\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:26:\"field_revision_field_photo\";a:5:{s:3:\"fid\";s:15:\"field_photo_fid\";s:3:\"alt\";s:15:\"field_photo_alt\";s:5:\"title\";s:17:\"field_photo_title\";s:5:\"width\";s:17:\"field_photo_width\";s:6:\"height\";s:18:\"field_photo_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:\"21\";s:10:\"field_name\";s:11:\"field_photo\";s:4:\"type\";s:5:\"image\";s:6:\"module\";s:5:\"image\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:5:{s:3:\"fid\";a:4:{s:11:\"description\";s:54:\"The {file_managed}.fid being referenced in this field.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:0;s:8:\"unsigned\";b:1;}s:3:\"alt\";a:4:{s:11:\"description\";s:56:\"Alternative image text, for the image\'s \'alt\' attribute.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:512;s:8:\"not null\";b:0;}s:5:\"title\";a:4:{s:11:\"description\";s:52:\"Image title text, for the image\'s \'title\' attribute.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:1024;s:8:\"not null\";b:0;}s:5:\"width\";a:3:{s:11:\"description\";s:33:\"The width of the image in pixels.\";s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}s:6:\"height\";a:3:{s:11:\"description\";s:34:\"The height of the image in pixels.\";s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:1:{i:0;s:19:\"photo_moorings_2014\";}}}i:22;a:16:{s:12:\"translatable\";s:1:\"1\";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:36:\"field_data_field_photo_moorings_2012\";a:5:{s:3:\"fid\";s:29:\"field_photo_moorings_2012_fid\";s:3:\"alt\";s:29:\"field_photo_moorings_2012_alt\";s:5:\"title\";s:31:\"field_photo_moorings_2012_title\";s:5:\"width\";s:31:\"field_photo_moorings_2012_width\";s:6:\"height\";s:32:\"field_photo_moorings_2012_height\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:40:\"field_revision_field_photo_moorings_2012\";a:5:{s:3:\"fid\";s:29:\"field_photo_moorings_2012_fid\";s:3:\"alt\";s:29:\"field_photo_moorings_2012_alt\";s:5:\"title\";s:31:\"field_photo_moorings_2012_title\";s:5:\"width\";s:31:\"field_photo_moorings_2012_width\";s:6:\"height\";s:32:\"field_photo_moorings_2012_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:\"22\";s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:4:\"type\";s:5:\"image\";s:6:\"module\";s:5:\"image\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:5:{s:3:\"fid\";a:4:{s:11:\"description\";s:54:\"The {file_managed}.fid being referenced in this field.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:0;s:8:\"unsigned\";b:1;}s:3:\"alt\";a:4:{s:11:\"description\";s:56:\"Alternative image text, for the image\'s \'alt\' attribute.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:512;s:8:\"not null\";b:0;}s:5:\"title\";a:4:{s:11:\"description\";s:52:\"Image title text, for the image\'s \'title\' attribute.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:1024;s:8:\"not null\";b:0;}s:5:\"width\";a:3:{s:11:\"description\";s:33:\"The width of the image in pixels.\";s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}s:6:\"height\";a:3:{s:11:\"description\";s:34:\"The height of the image in pixels.\";s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:1:{i:0;s:19:\"photo_moorings_2012\";}}}i:23;a:16:{s:8:\"settings\";a:3:{s:14:\"allowed_values\";a:1:{i:0;a:2:{s:10:\"vocabulary\";s:6:\"forums\";s:6:\"parent\";i:0;}}s:23:\"entity_translation_sync\";b:0;s:21:\"options_list_callback\";s:28:\"i18n_taxonomy_allowed_values\";}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:2:\"23\";s:10:\"field_name\";s:15:\"taxonomy_forums\";s:4:\"type\";s:23:\"taxonomy_term_reference\";s:6:\"module\";s:8:\"taxonomy\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:1:{s:3:\"tid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:1:{i:0;s:5:\"forum\";}}}i:24;a:16:{s:12:\"translatable\";s:1:\"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: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_title_field\";a:2:{s:5:\"value\";s:17:\"title_field_value\";s:6:\"format\";s:18:\"title_field_format\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:26:\"field_revision_title_field\";a:2:{s:5:\"value\";s:17:\"title_field_value\";s:6:\"format\";s:18:\"title_field_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:\"24\";s:10:\"field_name\";s:11:\"title_field\";s:4:\"type\";s:4:\"text\";s:6:\"module\";s:4:\"text\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:2:{s:5:\"value\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:8:{i:0;s:6:\"photos\";i:1;s:7:\"article\";i:2;s:4:\"page\";i:3;s:5:\"forum\";i:4;s:7:\"mooring\";i:5;s:26:\"openlayers_example_content\";i:6;s:19:\"photo_moorings_2012\";i:7;s:19:\"photo_moorings_2014\";}}}i:25;a:16:{s:12:\"translatable\";s:1:\"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:36:\"field_data_field_photo_moorings_2010\";a:5:{s:3:\"fid\";s:29:\"field_photo_moorings_2010_fid\";s:3:\"alt\";s:29:\"field_photo_moorings_2010_alt\";s:5:\"title\";s:31:\"field_photo_moorings_2010_title\";s:5:\"width\";s:31:\"field_photo_moorings_2010_width\";s:6:\"height\";s:32:\"field_photo_moorings_2010_height\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:40:\"field_revision_field_photo_moorings_2010\";a:5:{s:3:\"fid\";s:29:\"field_photo_moorings_2010_fid\";s:3:\"alt\";s:29:\"field_photo_moorings_2010_alt\";s:5:\"title\";s:31:\"field_photo_moorings_2010_title\";s:5:\"width\";s:31:\"field_photo_moorings_2010_width\";s:6:\"height\";s:32:\"field_photo_moorings_2010_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:\"25\";s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:4:\"type\";s:5:\"image\";s:6:\"module\";s:5:\"image\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:5:{s:3:\"fid\";a:4:{s:11:\"description\";s:54:\"The {file_managed}.fid being referenced in this field.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:0;s:8:\"unsigned\";b:1;}s:3:\"alt\";a:4:{s:11:\"description\";s:56:\"Alternative image text, for the image\'s \'alt\' attribute.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:512;s:8:\"not null\";b:0;}s:5:\"title\";a:4:{s:11:\"description\";s:52:\"Image title text, for the image\'s \'title\' attribute.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:1024;s:8:\"not null\";b:0;}s:5:\"width\";a:3:{s:11:\"description\";s:33:\"The width of the image in pixels.\";s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}s:6:\"height\";a:3:{s:11:\"description\";s:34:\"The height of the image in pixels.\";s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:1:{i:0;s:19:\"photo_moorings_2010\";}}}}',0,1538750977,1),('field_info:field_map','a:11:{s:12:\"comment_body\";a:2:{s:7:\"bundles\";a:1:{s:7:\"comment\";a:9:{i:0;s:17:\"comment_node_page\";i:1;s:20:\"comment_node_article\";i:2;s:19:\"comment_node_photos\";i:3;s:39:\"comment_node_openlayers_example_content\";i:4;s:20:\"comment_node_mooring\";i:5;s:32:\"comment_node_photo_moorings_2014\";i:6;s:32:\"comment_node_photo_moorings_2012\";i:7;s:18:\"comment_node_forum\";i:8;s:32:\"comment_node_photo_moorings_2010\";}}s:4:\"type\";s:9:\"text_long\";}s:4:\"body\";a:2:{s:7:\"bundles\";a:1:{s:4:\"node\";a:9:{i:0;s:4:\"page\";i:1;s:7:\"article\";i:2;s:6:\"photos\";i:3;s:26:\"openlayers_example_content\";i:4;s:7:\"mooring\";i:5;s:19:\"photo_moorings_2014\";i:6;s:19:\"photo_moorings_2012\";i:7;s:5:\"forum\";i:8;s:19:\"photo_moorings_2010\";}}s:4:\"type\";s:17:\"text_with_summary\";}s:10:\"field_tags\";a:2:{s:7:\"bundles\";a:1:{s:4:\"node\";a:1:{i:0;s:7:\"article\";}}s:4:\"type\";s:23:\"taxonomy_term_reference\";}s:11:\"field_image\";a:2:{s:7:\"bundles\";a:1:{s:4:\"node\";a:1:{i:0;s:7:\"article\";}}s:4:\"type\";s:5:\"image\";}s:30:\"field_openlayers_example_input\";a:2:{s:7:\"bundles\";a:1:{s:4:\"node\";a:1:{i:0;s:26:\"openlayers_example_content\";}}s:4:\"type\";s:8:\"geofield\";}s:12:\"field_gfdata\";a:2:{s:7:\"bundles\";a:1:{s:4:\"node\";a:1:{i:0;s:7:\"mooring\";}}s:4:\"type\";s:8:\"geofield\";}s:11:\"field_photo\";a:2:{s:7:\"bundles\";a:1:{s:4:\"node\";a:1:{i:0;s:19:\"photo_moorings_2014\";}}s:4:\"type\";s:5:\"image\";}s:25:\"field_photo_moorings_2012\";a:2:{s:7:\"bundles\";a:1:{s:4:\"node\";a:1:{i:0;s:19:\"photo_moorings_2012\";}}s:4:\"type\";s:5:\"image\";}s:15:\"taxonomy_forums\";a:2:{s:7:\"bundles\";a:1:{s:4:\"node\";a:1:{i:0;s:5:\"forum\";}}s:4:\"type\";s:23:\"taxonomy_term_reference\";}s:11:\"title_field\";a:2:{s:7:\"bundles\";a:1:{s:4:\"node\";a:8:{i:0;s:6:\"photos\";i:1;s:7:\"article\";i:2;s:4:\"page\";i:3;s:5:\"forum\";i:4;s:7:\"mooring\";i:5;s:26:\"openlayers_example_content\";i:6;s:19:\"photo_moorings_2012\";i:7;s:19:\"photo_moorings_2014\";}}s:4:\"type\";s:4:\"text\";}s:25:\"field_photo_moorings_2010\";a:2:{s:7:\"bundles\";a:1:{s:4:\"node\";a:1:{i:0;s:19:\"photo_moorings_2010\";}}s:4:\"type\";s:5:\"image\";}}',0,1538750977,1),('field_info:instances','a:7:{s:7:\"comment\";a:9:{s:17:\"comment_node_page\";a:1:{s:12:\"comment_body\";a:13:{s:5:\"label\";s:7:\"Comment\";s:8:\"settings\";a:3:{s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";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:\"\";s:2:\"id\";s:1:\"1\";s:8:\"field_id\";s:1:\"1\";s:10:\"field_name\";s:12:\"comment_body\";s:11:\"entity_type\";s:7:\"comment\";s:6:\"bundle\";s:17:\"comment_node_page\";s:7:\"deleted\";s:1:\"0\";s:13:\"default_value\";N;}}s:20:\"comment_node_article\";a:1:{s:12:\"comment_body\";a:13:{s:5:\"label\";s:7:\"Comment\";s:8:\"settings\";a:3:{s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";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:\"\";s:2:\"id\";s:1:\"3\";s:8:\"field_id\";s:1:\"1\";s:10:\"field_name\";s:12:\"comment_body\";s:11:\"entity_type\";s:7:\"comment\";s:6:\"bundle\";s:20:\"comment_node_article\";s:7:\"deleted\";s:1:\"0\";s:13:\"default_value\";N;}}s:19:\"comment_node_photos\";a:1:{s:12:\"comment_body\";a:13:{s:5:\"label\";s:7:\"Comment\";s:8:\"settings\";a:3:{s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";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:\"\";s:2:\"id\";s:1:\"7\";s:8:\"field_id\";s:1:\"1\";s:10:\"field_name\";s:12:\"comment_body\";s:11:\"entity_type\";s:7:\"comment\";s:6:\"bundle\";s:19:\"comment_node_photos\";s:7:\"deleted\";s:1:\"0\";s:13:\"default_value\";N;}}s:39:\"comment_node_openlayers_example_content\";a:1:{s:12:\"comment_body\";a:13:{s:5:\"label\";s:7:\"Comment\";s:8:\"settings\";a:3:{s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";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:\"\";s:2:\"id\";s:2:\"11\";s:8:\"field_id\";s:1:\"1\";s:10:\"field_name\";s:12:\"comment_body\";s:11:\"entity_type\";s:7:\"comment\";s:6:\"bundle\";s:39:\"comment_node_openlayers_example_content\";s:7:\"deleted\";s:1:\"0\";s:13:\"default_value\";N;}}s:20:\"comment_node_mooring\";a:1:{s:12:\"comment_body\";a:13:{s:5:\"label\";s:7:\"Comment\";s:8:\"settings\";a:3:{s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";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:\"\";s:2:\"id\";s:2:\"30\";s:8:\"field_id\";s:1:\"1\";s:10:\"field_name\";s:12:\"comment_body\";s:11:\"entity_type\";s:7:\"comment\";s:6:\"bundle\";s:20:\"comment_node_mooring\";s:7:\"deleted\";s:1:\"0\";s:13:\"default_value\";N;}}s:32:\"comment_node_photo_moorings_2014\";a:1:{s:12:\"comment_body\";a:13:{s:5:\"label\";s:7:\"Comment\";s:8:\"settings\";a:3:{s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";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:\"\";s:2:\"id\";s:2:\"33\";s:8:\"field_id\";s:1:\"1\";s:10:\"field_name\";s:12:\"comment_body\";s:11:\"entity_type\";s:7:\"comment\";s:6:\"bundle\";s:32:\"comment_node_photo_moorings_2014\";s:7:\"deleted\";s:1:\"0\";s:13:\"default_value\";N;}}s:32:\"comment_node_photo_moorings_2012\";a:1:{s:12:\"comment_body\";a:13:{s:5:\"label\";s:7:\"Comment\";s:8:\"settings\";a:3:{s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";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:\"\";s:2:\"id\";s:2:\"36\";s:8:\"field_id\";s:1:\"1\";s:10:\"field_name\";s:12:\"comment_body\";s:11:\"entity_type\";s:7:\"comment\";s:6:\"bundle\";s:32:\"comment_node_photo_moorings_2012\";s:7:\"deleted\";s:1:\"0\";s:13:\"default_value\";N;}}s:18:\"comment_node_forum\";a:1:{s:12:\"comment_body\";a:13:{s:5:\"label\";s:7:\"Comment\";s:8:\"settings\";a:3:{s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";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:\"\";s:2:\"id\";s:2:\"40\";s:8:\"field_id\";s:1:\"1\";s:10:\"field_name\";s:12:\"comment_body\";s:11:\"entity_type\";s:7:\"comment\";s:6:\"bundle\";s:18:\"comment_node_forum\";s:7:\"deleted\";s:1:\"0\";s:13:\"default_value\";N;}}s:32:\"comment_node_photo_moorings_2010\";a:1:{s:12:\"comment_body\";a:13:{s:5:\"label\";s:7:\"Comment\";s:8:\"settings\";a:3:{s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";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\";s:1:\"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:\"\";s:2:\"id\";s:2:\"50\";s:8:\"field_id\";s:1:\"1\";s:10:\"field_name\";s:12:\"comment_body\";s:11:\"entity_type\";s:7:\"comment\";s:6:\"bundle\";s:32:\"comment_node_photo_moorings_2010\";s:7:\"deleted\";s:1:\"0\";s:13:\"default_value\";N;}}}s:4:\"node\";a:9:{s:4:\"page\";a:2:{s:4:\"body\";a:13:{s:5:\"label\";s:4:\"Body\";s:6:\"widget\";a:5:{s:6:\"weight\";s:1:\"2\";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: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:6:\"weight\";s:1:\"0\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";}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\";i:0;s:11:\"description\";s:0:\"\";s:13:\"default_value\";N;s:2:\"id\";s:1:\"2\";s:8:\"field_id\";s:1:\"2\";s:10:\"field_name\";s:4:\"body\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:4:\"page\";s:7:\"deleted\";s:1:\"0\";}s:11:\"title_field\";a:13:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:0:\"\";s:8:\"required\";i:1;s:8:\"settings\";a:4:{s:15:\"text_processing\";s:1:\"0\";s:10:\"hide_label\";a:2:{s:4:\"page\";i:0;s:6:\"entity\";i:0;}s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}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:7:\"display\";a:2:{s:7:\"default\";a:4:{s:5:\"label\";s:5:\"above\";s:4:\"type\";s:6:\"hidden\";s:6:\"weight\";s:1:\"1\";s:8:\"settings\";a:0:{}}s:6:\"teaser\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;}}s:13:\"default_value\";N;s:2:\"id\";s:2:\"44\";s:8:\"field_id\";s:2:\"24\";s:10:\"field_name\";s:11:\"title_field\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:4:\"page\";s:7:\"deleted\";s:1:\"0\";}}s:7:\"article\";a:4:{s:4:\"body\";a:13:{s:5:\"label\";s:4:\"Body\";s:6:\"widget\";a:5:{s:6:\"weight\";s:2:\"-4\";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: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\";i:0;s:11:\"description\";s:0:\"\";s:13:\"default_value\";N;s:2:\"id\";s:1:\"4\";s:8:\"field_id\";s:1:\"2\";s:10:\"field_name\";s:4:\"body\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:7:\"article\";s:7:\"deleted\";s:1:\"0\";}s:10:\"field_tags\";a:13:{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:5:{s:6:\"weight\";s:2:\"-4\";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: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\";i:0;s:13:\"default_value\";N;s:2:\"id\";s:1:\"5\";s:8:\"field_id\";s:1:\"3\";s:10:\"field_name\";s:10:\"field_tags\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:7:\"article\";s:7:\"deleted\";s:1:\"0\";}s:11:\"field_image\";a:12:{s:5:\"label\";s:5:\"Image\";s:11:\"description\";s:40:\"Upload an image to go with this article.\";s:8:\"required\";i: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\";i:1;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:6:\"widget\";a:5:{s:6:\"weight\";s:2:\"-1\";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: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\";}}s:2:\"id\";s:1:\"6\";s:8:\"field_id\";s:1:\"4\";s:10:\"field_name\";s:11:\"field_image\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:7:\"article\";s:7:\"deleted\";s:1:\"0\";}s:11:\"title_field\";a:13:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:0:\"\";s:8:\"required\";i:1;s:8:\"settings\";a:4:{s:15:\"text_processing\";s:1:\"0\";s:10:\"hide_label\";a:2:{s:4:\"page\";i:0;s:6:\"entity\";i:0;}s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:6:\"widget\";a:5:{s:6:\"weight\";s:2:\"-5\";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:7:\"display\";a:2:{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:11;}s:6:\"teaser\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;}}s:13:\"default_value\";N;s:2:\"id\";s:2:\"43\";s:8:\"field_id\";s:2:\"24\";s:10:\"field_name\";s:11:\"title_field\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:7:\"article\";s:7:\"deleted\";s:1:\"0\";}}s:6:\"photos\";a:2:{s:4:\"body\";a:13:{s:5:\"label\";s:17:\"Album description\";s:6:\"widget\";a:5:{s:6:\"weight\";s:2:\"-4\";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: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:10:\"text_plain\";s:6:\"weight\";s:1:\"0\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";}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:4:\"full\";a:5:{s:5:\"label\";s:6:\"hidden\";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;s:2:\"id\";s:1:\"8\";s:8:\"field_id\";s:1:\"2\";s:10:\"field_name\";s:4:\"body\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:6:\"photos\";s:7:\"deleted\";s:1:\"0\";}s:11:\"title_field\";a:13:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:0:\"\";s:8:\"required\";i:1;s:8:\"settings\";a:4:{s:15:\"text_processing\";s:1:\"0\";s:10:\"hide_label\";a:2:{s:4:\"page\";i:0;s:6:\"entity\";i:0;}s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:6:\"widget\";a:5:{s:6:\"weight\";s:2:\"-5\";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:7:\"display\";a:3:{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;}s:4:\"full\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;}s:6:\"teaser\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;}}s:13:\"default_value\";N;s:2:\"id\";s:2:\"42\";s:8:\"field_id\";s:2:\"24\";s:10:\"field_name\";s:11:\"title_field\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:6:\"photos\";s:7:\"deleted\";s:1:\"0\";}}s:26:\"openlayers_example_content\";a:3:{s:4:\"body\";a:13:{s:13:\"default_value\";N;s:11:\"description\";s:0:\"\";s:7:\"display\";a:2:{s:7:\"default\";a:5:{s:5:\"label\";s:6:\"hidden\";s:6:\"module\";s:4:\"text\";s:8:\"settings\";a:0:{}s:4:\"type\";s:12:\"text_default\";s:6:\"weight\";s:1:\"0\";}s:6:\"teaser\";a:5:{s:5:\"label\";s:6:\"hidden\";s:6:\"module\";s:4:\"text\";s:8:\"settings\";a:1:{s:11:\"trim_length\";i:600;}s:4:\"type\";s:23:\"text_summary_or_trimmed\";s:6:\"weight\";i:0;}}s:5:\"label\";s:4:\"Body\";s:8:\"required\";i:0;s:8:\"settings\";a:4:{s:15:\"text_processing\";s:1:\"1\";s:15:\"display_summary\";i:1;s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:6:\"widget\";a:5:{s:6:\"weight\";s:1:\"2\";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:2:\"id\";s:1:\"9\";s:8:\"field_id\";s:1:\"2\";s:10:\"field_name\";s:4:\"body\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:26:\"openlayers_example_content\";s:7:\"deleted\";s:1:\"0\";}s:30:\"field_openlayers_example_input\";a:13:{s:13:\"default_value\";a:0:{}s:11:\"description\";s:0:\"\";s:7:\"display\";a:2:{s:7:\"default\";a:5:{s:5:\"label\";s:5:\"above\";s:6:\"module\";s:8:\"geofield\";s:8:\"settings\";a:1:{s:4:\"data\";s:4:\"full\";}s:4:\"type\";s:12:\"geofield_wkt\";s:6:\"weight\";s:1:\"1\";}s:6:\"teaser\";a:4:{s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:4:\"type\";s:6:\"hidden\";s:6:\"weight\";i:0;}}s:5:\"label\";s:33:\"OpenLayers Example Geofield Input\";s:8:\"required\";i:0;s:8:\"settings\";a:3:{s:10:\"local_solr\";a:3:{s:7:\"enabled\";b:0;s:9:\"lat_field\";s:3:\"lat\";s:9:\"lng_field\";s:3:\"lng\";}s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:6:\"widget\";a:5:{s:6:\"weight\";s:1:\"1\";s:4:\"type\";s:12:\"geofield_wkt\";s:6:\"module\";s:8:\"geofield\";s:6:\"active\";i:1;s:8:\"settings\";a:0:{}}s:2:\"id\";s:2:\"10\";s:8:\"field_id\";s:1:\"5\";s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:26:\"openlayers_example_content\";s:7:\"deleted\";s:1:\"0\";}s:11:\"title_field\";a:13:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:0:\"\";s:8:\"required\";i:1;s:8:\"settings\";a:4:{s:15:\"text_processing\";s:1:\"0\";s:10:\"hide_label\";a:2:{s:4:\"page\";i:0;s:6:\"entity\";i:0;}s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:6:\"widget\";a:5:{s:6:\"weight\";s:2:\"-5\";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:7:\"display\";a:2:{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:2;}s:6:\"teaser\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;}}s:13:\"default_value\";N;s:2:\"id\";s:2:\"47\";s:8:\"field_id\";s:2:\"24\";s:10:\"field_name\";s:11:\"title_field\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:26:\"openlayers_example_content\";s:7:\"deleted\";s:1:\"0\";}}s:7:\"mooring\";a:3:{s:4:\"body\";a:13:{s:5:\"label\";s:4:\"Body\";s:6:\"widget\";a:5:{s:6:\"weight\";s:1:\"2\";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: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\";i:0;s:11:\"description\";s:0:\"\";s:13:\"default_value\";N;s:2:\"id\";s:2:\"31\";s:8:\"field_id\";s:1:\"2\";s:10:\"field_name\";s:4:\"body\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:7:\"mooring\";s:7:\"deleted\";s:1:\"0\";}s:12:\"field_gfdata\";a:13:{s:5:\"label\";s:4:\"Data\";s:6:\"widget\";a:5:{s:6:\"weight\";s:1:\"1\";s:4:\"type\";s:15:\"geofield_latlon\";s:6:\"module\";s:8:\"geofield\";s:6:\"active\";i:1;s:8:\"settings\";a:1:{s:17:\"html5_geolocation\";i: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:12:\"geofield_wkt\";s:8:\"settings\";a:1:{s:4:\"data\";s:4:\"full\";}s:6:\"module\";s:8:\"geofield\";s:6:\"weight\";i:1;}s:6:\"teaser\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;}}s:8:\"required\";i:0;s:11:\"description\";s:0:\"\";s:13:\"default_value\";N;s:2:\"id\";s:2:\"32\";s:8:\"field_id\";s:2:\"20\";s:10:\"field_name\";s:12:\"field_gfdata\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:7:\"mooring\";s:7:\"deleted\";s:1:\"0\";}s:11:\"title_field\";a:13:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:0:\"\";s:8:\"required\";i:1;s:8:\"settings\";a:4:{s:15:\"text_processing\";s:1:\"0\";s:10:\"hide_label\";a:2:{s:4:\"page\";i:0;s:6:\"entity\";i:0;}s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:6:\"widget\";a:5:{s:6:\"weight\";s:2:\"-5\";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:7:\"display\";a:2:{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:2;}s:6:\"teaser\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;}}s:13:\"default_value\";N;s:2:\"id\";s:2:\"46\";s:8:\"field_id\";s:2:\"24\";s:10:\"field_name\";s:11:\"title_field\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:7:\"mooring\";s:7:\"deleted\";s:1:\"0\";}}s:19:\"photo_moorings_2014\";a:3:{s:4:\"body\";a:13:{s:5:\"label\";s:4:\"Body\";s:6:\"widget\";a:5:{s:6:\"weight\";s:2:\"31\";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: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:6:\"weight\";s:1:\"0\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";}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\";i:0;s:11:\"description\";s:0:\"\";s:13:\"default_value\";N;s:2:\"id\";s:2:\"34\";s:8:\"field_id\";s:1:\"2\";s:10:\"field_name\";s:4:\"body\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:19:\"photo_moorings_2014\";s:7:\"deleted\";s:1:\"0\";}s:11:\"field_photo\";a:12:{s:5:\"label\";s:19:\"Photo Moorings 2014\";s:6:\"widget\";a:5:{s:6:\"weight\";s:2:\"32\";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: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:23:\"entity_translation_sync\";i:0;s:18:\"user_register_form\";b:0;}s:7:\"display\";a:2:{s:7:\"default\";a:5:{s:5:\"label\";s:5:\"above\";s:4:\"type\";s:5:\"image\";s:6:\"weight\";s:1:\"1\";s:8:\"settings\";a:2:{s:11:\"image_style\";s:0:\"\";s:10:\"image_link\";s:4:\"file\";}s:6:\"module\";s:5:\"image\";}s:6:\"teaser\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;}}s:8:\"required\";i:0;s:11:\"description\";s:0:\"\";s:2:\"id\";s:2:\"35\";s:8:\"field_id\";s:2:\"21\";s:10:\"field_name\";s:11:\"field_photo\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:19:\"photo_moorings_2014\";s:7:\"deleted\";s:1:\"0\";}s:11:\"title_field\";a:13:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:0:\"\";s:8:\"required\";i:1;s:8:\"settings\";a:4:{s:15:\"text_processing\";s:1:\"0\";s:10:\"hide_label\";a:2:{s:4:\"page\";i:0;s:6:\"entity\";i:0;}s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:6:\"widget\";a:5:{s:6:\"weight\";s:2:\"-5\";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:7:\"display\";a:2:{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:2;}s:6:\"teaser\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;}}s:13:\"default_value\";N;s:2:\"id\";s:2:\"49\";s:8:\"field_id\";s:2:\"24\";s:10:\"field_name\";s:11:\"title_field\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:19:\"photo_moorings_2014\";s:7:\"deleted\";s:1:\"0\";}}s:19:\"photo_moorings_2012\";a:3:{s:4:\"body\";a:13:{s:5:\"label\";s:4:\"Body\";s:6:\"widget\";a:5:{s:6:\"weight\";s:2:\"31\";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: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:6:\"weight\";s:1:\"0\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";}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:4:\"full\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:12:\"text_default\";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;s:2:\"id\";s:2:\"37\";s:8:\"field_id\";s:1:\"2\";s:10:\"field_name\";s:4:\"body\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:19:\"photo_moorings_2012\";s:7:\"deleted\";s:1:\"0\";}s:25:\"field_photo_moorings_2012\";a:12:{s:5:\"label\";s:19:\"Photo Moorings 2012\";s:6:\"widget\";a:5:{s:6:\"weight\";s:2:\"32\";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: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:23:\"entity_translation_sync\";i:0;s:18:\"user_register_form\";b:0;}s:7:\"display\";a:3:{s:7:\"default\";a:5:{s:5:\"label\";s:5:\"above\";s:4:\"type\";s:5:\"image\";s:6:\"weight\";s:1:\"1\";s:8:\"settings\";a:2:{s:11:\"image_style\";s:0:\"\";s:10:\"image_link\";s:0:\"\";}s:6:\"module\";s:5:\"image\";}s:4:\"full\";a:5:{s:5:\"label\";s:5:\"above\";s:4:\"type\";s:5:\"image\";s:6:\"weight\";s:1:\"1\";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:\"teaser\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;}}s:8:\"required\";i:0;s:11:\"description\";s:0:\"\";s:2:\"id\";s:2:\"38\";s:8:\"field_id\";s:2:\"22\";s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:19:\"photo_moorings_2012\";s:7:\"deleted\";s:1:\"0\";}s:11:\"title_field\";a:13:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:0:\"\";s:8:\"required\";i:1;s:8:\"settings\";a:4:{s:15:\"text_processing\";s:1:\"0\";s:10:\"hide_label\";a:2:{s:4:\"page\";i:0;s:6:\"entity\";i:0;}s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:6:\"widget\";a:5:{s:6:\"weight\";i:-5;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:7:\"display\";a:3:{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:2;}s:4:\"full\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;}s:6:\"teaser\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;}}s:13:\"default_value\";N;s:2:\"id\";s:2:\"48\";s:8:\"field_id\";s:2:\"24\";s:10:\"field_name\";s:11:\"title_field\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:19:\"photo_moorings_2012\";s:7:\"deleted\";s:1:\"0\";}}s:5:\"forum\";a:3:{s:15:\"taxonomy_forums\";a:13:{s:5:\"label\";s:6:\"Forums\";s:8:\"required\";i:1;s:6:\"widget\";a:5:{s:6:\"weight\";s:1:\"0\";s:4:\"type\";s:14:\"options_select\";s:6:\"module\";s:7:\"options\";s:6:\"active\";i:1;s:8:\"settings\";a:0:{}}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:11:\"description\";s:0:\"\";s:13:\"default_value\";N;s:2:\"id\";s:2:\"39\";s:8:\"field_id\";s:2:\"23\";s:10:\"field_name\";s:15:\"taxonomy_forums\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:5:\"forum\";s:7:\"deleted\";s:1:\"0\";}s:4:\"body\";a:13:{s:5:\"label\";s:4:\"Body\";s:6:\"widget\";a:5:{s:6:\"weight\";s:2:\"31\";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: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: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\";i:0;s:11:\"description\";s:0:\"\";s:13:\"default_value\";N;s:2:\"id\";s:2:\"41\";s:8:\"field_id\";s:1:\"2\";s:10:\"field_name\";s:4:\"body\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:5:\"forum\";s:7:\"deleted\";s:1:\"0\";}s:11:\"title_field\";a:13:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:0:\"\";s:8:\"required\";i:1;s:8:\"settings\";a:4:{s:15:\"text_processing\";s:1:\"0\";s:10:\"hide_label\";a:2:{s:4:\"page\";i:0;s:6:\"entity\";i:0;}s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:6:\"widget\";a:5:{s:6:\"weight\";s:2:\"-5\";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:7:\"display\";a:2:{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:12;}s:6:\"teaser\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;}}s:13:\"default_value\";N;s:2:\"id\";s:2:\"45\";s:8:\"field_id\";s:2:\"24\";s:10:\"field_name\";s:11:\"title_field\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:5:\"forum\";s:7:\"deleted\";s:1:\"0\";}}s:19:\"photo_moorings_2010\";a:2:{s:4:\"body\";a:13:{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:\"31\";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:\"\";s:2:\"id\";s:2:\"51\";s:8:\"field_id\";s:1:\"2\";s:10:\"field_name\";s:4:\"body\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:19:\"photo_moorings_2010\";s:7:\"deleted\";s:1:\"0\";s:13:\"default_value\";N;}s:25:\"field_photo_moorings_2010\";a:12:{s:5:\"label\";s:19:\"Photo Moorings 2010\";s:6:\"widget\";a:4:{s:4:\"type\";s:11:\"image_image\";s:6:\"weight\";s:2:\"32\";s:8:\"settings\";a:2:{s:18:\"progress_indicator\";s:8:\"throbber\";s:19:\"preview_image_style\";s:9:\"thumbnail\";}s:6:\"module\";s:5:\"image\";}s:8:\"settings\";a:10:{s:15:\"file_extensions\";s:16:\"png gif jpg jpeg\";s:14:\"file_directory\";s:0:\"\";s:12:\"max_filesize\";s:0:\"\";s:9:\"alt_field\";i:0;s:11:\"title_field\";i:0;s:14:\"max_resolution\";s:0:\"\";s:14:\"min_resolution\";s: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:2:{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:1;}s:6:\"teaser\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;}}s:8:\"required\";b:0;s:11:\"description\";s:0:\"\";s:2:\"id\";s:2:\"52\";s:8:\"field_id\";s:2:\"25\";s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:19:\"photo_moorings_2010\";s:7:\"deleted\";s:1:\"0\";}}}s:13:\"taxonomy_term\";a:2:{s:4:\"tags\";a:0:{}s:6:\"forums\";a:0:{}}s:16:\"i18n_translation\";a:3:{s:9:\"menu_link\";a:0:{}s:4:\"path\";a:0:{}s:13:\"taxonomy_term\";a:0:{}}s:4:\"file\";a:1:{s:4:\"file\";a:0:{}}s:19:\"taxonomy_vocabulary\";a:1:{s:19:\"taxonomy_vocabulary\";a:0:{}}s:4:\"user\";a:1:{s:4:\"user\";a:0:{}}}',0,1538750977,1),('field_info_types:en','a:4:{s:11:\"field types\";a:16:{s:12:\"addressfield\";a:9:{s:5:\"label\";s:14:\"Postal address\";s:11:\"description\";s:75:\"A field type used for storing postal addresses according the xNAL standard.\";s:8:\"settings\";a:1:{s:23:\"entity_translation_sync\";b:0;}s:17:\"instance_settings\";a:2:{s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:14:\"default_widget\";s:21:\"addressfield_standard\";s:17:\"default_formatter\";s:20:\"addressfield_default\";s:13:\"property_type\";s:12:\"addressfield\";s:18:\"property_callbacks\";a:2:{i:0;s:35:\"addressfield_property_info_callback\";i:1;s:35:\"i18n_field_entity_property_callback\";}s:6:\"module\";s:12:\"addressfield\";}s:4:\"file\";a:10:{s:5:\"label\";s:4:\"File\";s:11:\"description\";s:55:\"This field stores the ID of a file as an integer value.\";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:17:\"instance_settings\";a:6:{s:15:\"file_extensions\";s:3:\"txt\";s:14:\"file_directory\";s:0:\"\";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:14:\"default_widget\";s:12:\"file_generic\";s:17:\"default_formatter\";s:12:\"file_default\";s:6:\"module\";s:4:\"file\";s:13:\"property_type\";s:15:\"field_item_file\";s:18:\"property_callbacks\";a:2:{i:0;s:35:\"entity_metadata_field_file_callback\";i:1;s:35:\"i18n_field_entity_property_callback\";}s:18:\"i18n_sync_callback\";s:25:\"i18n_sync_field_file_sync\";}s:8:\"geofield\";a:10:{s:5:\"label\";s:8:\"Geofield\";s:11:\"description\";s:34:\"This field stores geo information.\";s:14:\"default_widget\";s:12:\"geofield_wkt\";s:17:\"default_formatter\";s:12:\"geofield_wkt\";s:8:\"settings\";a:3:{s:4:\"srid\";s:4:\"4326\";s:7:\"backend\";s:7:\"default\";s:23:\"entity_translation_sync\";b:0;}s:13:\"property_type\";s:8:\"geofield\";s:18:\"property_callbacks\";a:2:{i:0;s:31:\"geofield_property_info_callback\";i:1;s:35:\"i18n_field_entity_property_callback\";}s:9:\"microdata\";b:1;s:17:\"instance_settings\";a:2:{s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:6:\"module\";s:8:\"geofield\";}s:5:\"image\";a:10:{s:5:\"label\";s:5:\"Image\";s:11:\"description\";s:62:\"This field stores the ID of an image file as an integer value.\";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:17:\"instance_settings\";a:10:{s:15:\"file_extensions\";s:16:\"png gif jpg jpeg\";s:14:\"file_directory\";s:0:\"\";s:12:\"max_filesize\";s:0:\"\";s:9:\"alt_field\";i:0;s:11:\"title_field\";i:0;s:14:\"max_resolution\";s:0:\"\";s:14:\"min_resolution\";s:0:\"\";s:13:\"default_image\";i:0;s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:14:\"default_widget\";s:11:\"image_image\";s:17:\"default_formatter\";s:5:\"image\";s:6:\"module\";s:5:\"image\";s:13:\"property_type\";s:16:\"field_item_image\";s:18:\"property_callbacks\";a:3:{i:0;s:35:\"entity_metadata_field_file_callback\";i:1;s:36:\"entity_metadata_field_image_callback\";i:2;s:35:\"i18n_field_entity_property_callback\";}s:18:\"i18n_sync_callback\";s:25:\"i18n_sync_field_file_sync\";}s:12:\"list_integer\";a:9:{s:5:\"label\";s:14:\"List (integer)\";s:11:\"description\";s:144:\"This field stores integer values from a list of allowed \'value => label\' pairs, i.e. \'Lifetime in days\': 1 => 1 day, 7 => 1 week, 31 => 1 month.\";s:8:\"settings\";a:3:{s:14:\"allowed_values\";a:0:{}s:23:\"allowed_values_function\";s:0:\"\";s:23:\"entity_translation_sync\";b:0;}s:14:\"default_widget\";s:14:\"options_select\";s:17:\"default_formatter\";s:12:\"list_default\";s:17:\"instance_settings\";a:2:{s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:6:\"module\";s:4:\"list\";s:13:\"property_type\";s:7:\"integer\";s:18:\"property_callbacks\";a:1:{i:0;s:35:\"i18n_field_entity_property_callback\";}}s:10:\"list_float\";a:9:{s:5:\"label\";s:12:\"List (float)\";s:11:\"description\";s:134:\"This field stores float values from a list of allowed \'value => label\' pairs, i.e. \'Fraction\': 0 => 0, .25 => 1/4, .75 => 3/4, 1 => 1.\";s:8:\"settings\";a:3:{s:14:\"allowed_values\";a:0:{}s:23:\"allowed_values_function\";s:0:\"\";s:23:\"entity_translation_sync\";b:0;}s:14:\"default_widget\";s:14:\"options_select\";s:17:\"default_formatter\";s:12:\"list_default\";s:17:\"instance_settings\";a:2:{s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:6:\"module\";s:4:\"list\";s:13:\"property_type\";s:7:\"decimal\";s:18:\"property_callbacks\";a:1:{i:0;s:35:\"i18n_field_entity_property_callback\";}}s:9:\"list_text\";a:9:{s:5:\"label\";s:11:\"List (text)\";s:11:\"description\";s:137:\"This field stores text values from a list of allowed \'value => label\' pairs, i.e. \'US States\': IL => Illinois, IA => Iowa, IN => Indiana.\";s:8:\"settings\";a:3:{s:14:\"allowed_values\";a:0:{}s:23:\"allowed_values_function\";s:0:\"\";s:23:\"entity_translation_sync\";b:0;}s:14:\"default_widget\";s:14:\"options_select\";s:17:\"default_formatter\";s:12:\"list_default\";s:17:\"instance_settings\";a:2:{s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:6:\"module\";s:4:\"list\";s:13:\"property_type\";s:4:\"text\";s:18:\"property_callbacks\";a:1:{i:0;s:35:\"i18n_field_entity_property_callback\";}}s:12:\"list_boolean\";a:9:{s:5:\"label\";s:7:\"Boolean\";s:11:\"description\";s:50:\"This field stores simple on/off or yes/no options.\";s:8:\"settings\";a:3:{s:14:\"allowed_values\";a:0:{}s:23:\"allowed_values_function\";s:0:\"\";s:23:\"entity_translation_sync\";b:0;}s:14:\"default_widget\";s:15:\"options_buttons\";s:17:\"default_formatter\";s:12:\"list_default\";s:17:\"instance_settings\";a:2:{s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:6:\"module\";s:4:\"list\";s:13:\"property_type\";s:7:\"boolean\";s:18:\"property_callbacks\";a:1:{i:0;s:35:\"i18n_field_entity_property_callback\";}}s:8:\"location\";a:8:{s:5:\"label\";s:8:\"Location\";s:11:\"description\";s:33:\"Store a location.module location.\";s:8:\"settings\";a:1:{s:23:\"entity_translation_sync\";b:0;}s:17:\"instance_settings\";a:2:{s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:14:\"default_widget\";s:8:\"location\";s:17:\"default_formatter\";s:16:\"location_default\";s:6:\"module\";s:12:\"location_cck\";s:18:\"property_callbacks\";a:1:{i:0;s:35:\"i18n_field_entity_property_callback\";}}s:14:\"number_integer\";a:9:{s:5:\"label\";s:7:\"Integer\";s:11:\"description\";s:57:\"This field stores a number in the database as an integer.\";s:17:\"instance_settings\";a:6:{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:23:\"entity_translation_sync\";b:0;}s:14:\"default_widget\";s:6:\"number\";s:17:\"default_formatter\";s:14:\"number_integer\";s:8:\"settings\";a:1:{s:23:\"entity_translation_sync\";b:0;}s:6:\"module\";s:6:\"number\";s:13:\"property_type\";s:7:\"integer\";s:18:\"property_callbacks\";a:1:{i:0;s:35:\"i18n_field_entity_property_callback\";}}s:14:\"number_decimal\";a:9:{s:5:\"label\";s:7:\"Decimal\";s:11:\"description\";s:69:\"This field stores a number in the database in a fixed decimal format.\";s:8:\"settings\";a:4:{s:9:\"precision\";i:10;s:5:\"scale\";i:2;s:17:\"decimal_separator\";s:1:\".\";s:23:\"entity_translation_sync\";b:0;}s:17:\"instance_settings\";a:6:{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:23:\"entity_translation_sync\";b:0;}s:14:\"default_widget\";s:6:\"number\";s:17:\"default_formatter\";s:14:\"number_decimal\";s:6:\"module\";s:6:\"number\";s:13:\"property_type\";s:7:\"decimal\";s:18:\"property_callbacks\";a:1:{i:0;s:35:\"i18n_field_entity_property_callback\";}}s:12:\"number_float\";a:9:{s:5:\"label\";s:5:\"Float\";s:11:\"description\";s:70:\"This field stores a number in the database in a floating point format.\";s:8:\"settings\";a:2:{s:17:\"decimal_separator\";s:1:\".\";s:23:\"entity_translation_sync\";b:0;}s:17:\"instance_settings\";a:6:{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:23:\"entity_translation_sync\";b:0;}s:14:\"default_widget\";s:6:\"number\";s:17:\"default_formatter\";s:14:\"number_decimal\";s:6:\"module\";s:6:\"number\";s:13:\"property_type\";s:7:\"decimal\";s:18:\"property_callbacks\";a:1:{i:0;s:35:\"i18n_field_entity_property_callback\";}}s:23:\"taxonomy_term_reference\";a:11:{s:5:\"label\";s:14:\"Term reference\";s:11:\"description\";s:49:\"This field stores a reference to a taxonomy term.\";s:14:\"default_widget\";s:14:\"options_select\";s:17:\"default_formatter\";s:33:\"i18n_taxonomy_term_reference_link\";s:8:\"settings\";a:3:{s:14:\"allowed_values\";a:1:{i:0;a:2:{s:10:\"vocabulary\";s:0:\"\";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:17:\"instance_settings\";a:2:{s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:6:\"module\";s:8:\"taxonomy\";s:13:\"property_type\";s:13:\"taxonomy_term\";s:18:\"property_callbacks\";a:2:{i:0;s:45:\"entity_metadata_field_term_reference_callback\";i:1;s:35:\"i18n_field_entity_property_callback\";}s:21:\"options_list_callback\";s:28:\"i18n_taxonomy_allowed_values\";s:18:\"i18n_sync_callback\";s:39:\"i18n_taxonomy_field_prepare_translation\";}s:4:\"text\";a:9:{s:5:\"label\";s:4:\"Text\";s:11:\"description\";s:47:\"This field stores varchar text in the database.\";s:8:\"settings\";a:2:{s:10:\"max_length\";i:255;s:23:\"entity_translation_sync\";b:0;}s:17:\"instance_settings\";a:3:{s:15:\"text_processing\";i:0;s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:14:\"default_widget\";s:14:\"text_textfield\";s:17:\"default_formatter\";s:12:\"text_default\";s:6:\"module\";s:4:\"text\";s:13:\"property_type\";s:4:\"text\";s:18:\"property_callbacks\";a:2:{i:0;s:44:\"entity_metadata_field_text_property_callback\";i:1;s:35:\"i18n_field_entity_property_callback\";}}s:9:\"text_long\";a:9:{s:5:\"label\";s:9:\"Long text\";s:11:\"description\";s:44:\"This field stores long text in the database.\";s:17:\"instance_settings\";a:3:{s:15:\"text_processing\";i:0;s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:14:\"default_widget\";s:13:\"text_textarea\";s:17:\"default_formatter\";s:12:\"text_default\";s:8:\"settings\";a:1:{s:23:\"entity_translation_sync\";b:0;}s:6:\"module\";s:4:\"text\";s:13:\"property_type\";s:4:\"text\";s:18:\"property_callbacks\";a:2:{i:0;s:44:\"entity_metadata_field_text_property_callback\";i:1;s:35:\"i18n_field_entity_property_callback\";}}s:17:\"text_with_summary\";a:9:{s:5:\"label\";s:21:\"Long text and summary\";s:11:\"description\";s:77:\"This field stores long text in the database along with optional summary text.\";s:17:\"instance_settings\";a:4:{s:15:\"text_processing\";i:1;s:15:\"display_summary\";i:0;s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:14:\"default_widget\";s:26:\"text_textarea_with_summary\";s:17:\"default_formatter\";s:12:\"text_default\";s:8:\"settings\";a:1:{s:23:\"entity_translation_sync\";b:0;}s:6:\"module\";s:4:\"text\";s:13:\"property_type\";s:22:\"field_item_textsummary\";s:18:\"property_callbacks\";a:2:{i:0;s:44:\"entity_metadata_field_text_property_callback\";i:1;s:35:\"i18n_field_entity_property_callback\";}}}s:12:\"widget types\";a:17:{s:13:\"options_onoff\";a:5:{s:5:\"label\";s:22:\"Single on/off checkbox\";s:11:\"field types\";a:1:{i:0;s:12:\"list_boolean\";}s:9:\"behaviors\";a:1:{s:15:\"multiple values\";i:4;}s:8:\"settings\";a:1:{s:13:\"display_label\";i:0;}s:6:\"module\";s:7:\"options\";}s:15:\"options_buttons\";a:5:{s:5:\"label\";s:25:\"Check boxes/radio buttons\";s:11:\"field types\";a:5:{i:0;s:12:\"list_integer\";i:1;s:10:\"list_float\";i:2;s:9:\"list_text\";i:3;s:12:\"list_boolean\";i:4;s:23:\"taxonomy_term_reference\";}s:9:\"behaviors\";a:1:{s:15:\"multiple values\";i:4;}s:8:\"settings\";a:0:{}s:6:\"module\";s:7:\"options\";}s:14:\"options_select\";a:5:{s:5:\"label\";s:11:\"Select list\";s:11:\"field types\";a:4:{i:0;s:12:\"list_integer\";i:1;s:10:\"list_float\";i:2;s:9:\"list_text\";i:3;s:23:\"taxonomy_term_reference\";}s:9:\"behaviors\";a:1:{s:15:\"multiple values\";i:4;}s:8:\"settings\";a:0:{}s:6:\"module\";s:7:\"options\";}s:21:\"taxonomy_autocomplete\";a:5:{s:5:\"label\";s:34:\"Autocomplete term widget (tagging)\";s:11:\"field types\";a:1:{i:0;s:23:\"taxonomy_term_reference\";}s:8:\"settings\";a:2:{s:4:\"size\";i:60;s:17:\"autocomplete_path\";s:21:\"taxonomy/autocomplete\";}s:9:\"behaviors\";a:1:{s:15:\"multiple values\";i:4;}s:6:\"module\";s:8:\"taxonomy\";}s:14:\"text_textfield\";a:4:{s:5:\"label\";s:10:\"Text field\";s:11:\"field types\";a:1:{i:0;s:4:\"text\";}s:8:\"settings\";a:1:{s:4:\"size\";i:60;}s:6:\"module\";s:4:\"text\";}s:26:\"text_textarea_with_summary\";a:4:{s:5:\"label\";s:24:\"Text area with a summary\";s:11:\"field types\";a:1:{i:0;s:17:\"text_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:13:\"text_textarea\";a:4:{s:5:\"label\";s:25:\"Text area (multiple rows)\";s:11:\"field types\";a:1:{i:0;s:9:\"text_long\";}s:8:\"settings\";a:1:{s:4:\"rows\";i:5;}s:6:\"module\";s:4:\"text\";}s:6:\"number\";a:4:{s:5:\"label\";s:10:\"Text field\";s:11:\"field types\";a:3:{i:0;s:14:\"number_integer\";i:1;s:14:\"number_decimal\";i:2;s:12:\"number_float\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:6:\"number\";}s:8:\"location\";a:4:{s:5:\"label\";s:14:\"Location Field\";s:11:\"field types\";a:1:{i:0;s:8:\"location\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:12:\"location_cck\";}s:12:\"geofield_wkt\";a:4:{s:5:\"label\";s:21:\"Well Known Text (WKT)\";s:11:\"field types\";a:1:{i:0;s:8:\"geofield\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:8:\"geofield\";}s:8:\"geocoder\";a:5:{s:5:\"label\";s:26:\"Geocode from another field\";s:11:\"field types\";a:4:{i:0;s:8:\"geofield\";i:1;s:18:\"geolocation_latlng\";i:2;s:8:\"location\";i:3;s:7:\"postgis\";}s:8:\"settings\";a:4:{s:14:\"geocoder_field\";N;s:16:\"geocoder_handler\";N;s:16:\"handler_settings\";a:0:{}s:14:\"delta_handling\";s:7:\"default\";}s:9:\"behaviors\";a:2:{s:15:\"multiple values\";i:4;s:13:\"default value\";i:1;}s:6:\"module\";s:8:\"geocoder\";}s:12:\"file_generic\";a:5:{s:5:\"label\";s:4:\"File\";s:11:\"field types\";a:1:{i:0;s:4:\"file\";}s:8:\"settings\";a:1:{s:18:\"progress_indicator\";s:8:\"throbber\";}s:9:\"behaviors\";a:2:{s:15:\"multiple values\";i:4;s:13:\"default value\";i:1;}s:6:\"module\";s:4:\"file\";}s:16:\"geofield_geojson\";a:4:{s:5:\"label\";s:7:\"GeoJSON\";s:11:\"field types\";a:1:{i:0;s:8:\"geofield\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:8:\"geofield\";}s:15:\"geofield_latlon\";a:4:{s:5:\"label\";s:20:\"Latitude / Longitude\";s:11:\"field types\";a:1:{i:0;s:8:\"geofield\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:8:\"geofield\";}s:11:\"image_image\";a:5:{s:5:\"label\";s:5:\"Image\";s:11:\"field types\";a:1:{i:0;s:5:\"image\";}s:8:\"settings\";a:2:{s:18:\"progress_indicator\";s:8:\"throbber\";s:19:\"preview_image_style\";s:9:\"thumbnail\";}s:9:\"behaviors\";a:2:{s:15:\"multiple values\";i:4;s:13:\"default value\";i:1;}s:6:\"module\";s:5:\"image\";}s:15:\"geofield_bounds\";a:4:{s:5:\"label\";s:6:\"Bounds\";s:11:\"field types\";a:1:{i:0;s:8:\"geofield\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:8:\"geofield\";}s:21:\"addressfield_standard\";a:4:{s:5:\"label\";s:20:\"Dynamic address form\";s:11:\"field types\";a:1:{i:0;s:12:\"addressfield\";}s:8:\"settings\";a:3:{s:19:\"available_countries\";a:0:{}s:15:\"default_country\";s:12:\"site_default\";s:15:\"format_handlers\";a:1:{i:0;s:7:\"address\";}}s:6:\"module\";s:12:\"addressfield\";}}s:15:\"formatter types\";a:36:{s:12:\"title_linked\";a:4:{s:5:\"label\";s:18:\"Linked and wrapped\";s:11:\"field types\";a:1:{i:0;s:4:\"text\";}s:8:\"settings\";a:3:{s:11:\"title_style\";s:0:\"\";s:10:\"title_link\";s:0:\"\";s:11:\"title_class\";s:0:\"\";}s:6:\"module\";s:5:\"title\";}s:20:\"addressfield_default\";a:4:{s:5:\"label\";s:7:\"Default\";s:11:\"field types\";a:1:{i:0;s:12:\"addressfield\";}s:8:\"settings\";a:2:{s:19:\"use_widget_handlers\";i:1;s:15:\"format_handlers\";a:1:{i:0;s:7:\"address\";}}s:6:\"module\";s:12:\"addressfield\";}s:12:\"file_default\";a:4:{s:5:\"label\";s:12:\"Generic file\";s:11:\"field types\";a:1:{i:0;s:4:\"file\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"file\";}s:10:\"file_table\";a:4:{s:5:\"label\";s:14:\"Table of files\";s:11:\"field types\";a:1:{i:0;s:4:\"file\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"file\";}s:14:\"file_url_plain\";a:4:{s:5:\"label\";s:11:\"URL to file\";s:11:\"field types\";a:1:{i:0;s:4:\"file\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"file\";}s:12:\"geofield_wkt\";a:4:{s:5:\"label\";s:21:\"Well Known Text (WKT)\";s:11:\"field types\";a:1:{i:0;s:8:\"geofield\";}s:8:\"settings\";a:1:{s:4:\"data\";s:4:\"full\";}s:6:\"module\";s:8:\"geofield\";}s:16:\"geofield_geojson\";a:4:{s:5:\"label\";s:7:\"GeoJSON\";s:11:\"field types\";a:1:{i:0;s:8:\"geofield\";}s:8:\"settings\";a:1:{s:4:\"data\";s:4:\"full\";}s:6:\"module\";s:8:\"geofield\";}s:12:\"geofield_kml\";a:4:{s:5:\"label\";s:3:\"KML\";s:11:\"field types\";a:1:{i:0;s:8:\"geofield\";}s:8:\"settings\";a:1:{s:4:\"data\";s:4:\"full\";}s:6:\"module\";s:8:\"geofield\";}s:12:\"geofield_gpx\";a:4:{s:5:\"label\";s:3:\"GPX\";s:11:\"field types\";a:1:{i:0;s:8:\"geofield\";}s:8:\"settings\";a:1:{s:4:\"data\";s:4:\"full\";}s:6:\"module\";s:8:\"geofield\";}s:16:\"geofield_geohash\";a:4:{s:5:\"label\";s:7:\"Geohash\";s:11:\"field types\";a:1:{i:0;s:8:\"geofield\";}s:8:\"settings\";a:1:{s:4:\"data\";s:4:\"full\";}s:6:\"module\";s:8:\"geofield\";}s:15:\"geofield_latlon\";a:4:{s:5:\"label\";s:18:\"Latitude/Longitude\";s:11:\"field types\";a:1:{i:0;s:8:\"geofield\";}s:8:\"settings\";a:3:{s:4:\"data\";s:4:\"full\";s:6:\"format\";s:15:\"decimal_degrees\";s:6:\"labels\";i:1;}s:6:\"module\";s:8:\"geofield\";}s:12:\"geofield_lat\";a:4:{s:5:\"label\";s:13:\"Latitude Only\";s:11:\"field types\";a:1:{i:0;s:8:\"geofield\";}s:8:\"settings\";a:2:{s:4:\"data\";s:4:\"full\";s:6:\"format\";s:15:\"decimal_degrees\";}s:6:\"module\";s:8:\"geofield\";}s:12:\"geofield_lon\";a:4:{s:5:\"label\";s:14:\"Longitude Only\";s:11:\"field types\";a:1:{i:0;s:8:\"geofield\";}s:8:\"settings\";a:2:{s:4:\"data\";s:4:\"full\";s:6:\"format\";s:15:\"decimal_degrees\";}s:6:\"module\";s:8:\"geofield\";}s:17:\"geofield_geo_type\";a:4:{s:5:\"label\";s:13:\"Geometry Type\";s:11:\"field types\";a:1:{i:0;s:8:\"geofield\";}s:8:\"settings\";a:1:{s:4:\"data\";s:4:\"full\";}s:6:\"module\";s:8:\"geofield\";}s:17:\"geofield_def_list\";a:4:{s:5:\"label\";s:31:\"Definition List (Accessibility)\";s:11:\"field types\";a:1:{i:0;s:8:\"geofield\";}s:8:\"settings\";a:2:{s:4:\"data\";s:0:\"\";s:7:\"address\";i:0;}s:6:\"module\";s:8:\"geofield\";}s:20:\"geofield_description\";a:4:{s:5:\"label\";s:32:\"Descriptive Text (Accessibility)\";s:11:\"field types\";a:1:{i:0;s:8:\"geofield\";}s:8:\"settings\";a:2:{s:4:\"data\";s:0:\"\";s:7:\"address\";i:0;}s:6:\"module\";s:8:\"geofield\";}s:17:\"i18n_list_default\";a:4:{s:5:\"label\";s:18:\"Default translated\";s:11:\"field types\";a:3:{i:0;s:12:\"list_integer\";i:1;s:12:\"list_boolean\";i:2;s:9:\"list_text\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:10:\"i18n_field\";}s:5:\"image\";a:4:{s:5:\"label\";s:5:\"Image\";s:11:\"field types\";a:1:{i:0;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:12:\"list_default\";a:4:{s:5:\"label\";s:7:\"Default\";s:11:\"field types\";a:4:{i:0;s:12:\"list_integer\";i:1;s:10:\"list_float\";i:2;s:9:\"list_text\";i:3;s:12:\"list_boolean\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"list\";}s:8:\"list_key\";a:4:{s:5:\"label\";s:3:\"Key\";s:11:\"field types\";a:4:{i:0;s:12:\"list_integer\";i:1;s:10:\"list_float\";i:2;s:9:\"list_text\";i:3;s:12:\"list_boolean\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"list\";}s:16:\"location_default\";a:4:{s:5:\"label\";s:17:\"Default (address)\";s:11:\"field types\";a:1:{i:0;s:8:\"location\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:12:\"location_cck\";}s:12:\"location_all\";a:4:{s:5:\"label\";s:16:\"Address with map\";s:11:\"field types\";a:1:{i:0;s:8:\"location\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:12:\"location_cck\";}s:12:\"location_map\";a:4:{s:5:\"label\";s:8:\"Map only\";s:11:\"field types\";a:1:{i:0;s:8:\"location\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:12:\"location_cck\";}s:17:\"location_multiple\";a:4:{s:5:\"label\";s:37:\"Multiple field values on a single map\";s:11:\"field types\";a:1:{i:0;s:8:\"location\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:12:\"location_cck\";}s:14:\"number_integer\";a:4:{s:5:\"label\";s:7:\"Default\";s:11:\"field types\";a:1:{i:0;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:14:\"number_decimal\";a:4:{s:5:\"label\";s:7:\"Default\";s:11:\"field types\";a:2:{i:0;s:14:\"number_decimal\";i:1;s:12:\"number_float\";}s:8:\"settings\";a:4:{s:18:\"thousand_separator\";s:0:\"\";s:17:\"decimal_separator\";s:1:\".\";s:5:\"scale\";i:2;s:13:\"prefix_suffix\";b:1;}s:6:\"module\";s:6:\"number\";}s:18:\"number_unformatted\";a:4:{s:5:\"label\";s:11:\"Unformatted\";s:11:\"field types\";a:3:{i:0;s:14:\"number_integer\";i:1;s:14:\"number_decimal\";i:2;s:12:\"number_float\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:6:\"number\";}s:28:\"taxonomy_term_reference_link\";a:4:{s:5:\"label\";s:4:\"Link\";s:11:\"field types\";a:1:{i:0;s:23:\"taxonomy_term_reference\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:8:\"taxonomy\";}s:29:\"taxonomy_term_reference_plain\";a:4:{s:5:\"label\";s:10:\"Plain text\";s:11:\"field types\";a:1:{i:0;s:23:\"taxonomy_term_reference\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:8:\"taxonomy\";}s:36:\"taxonomy_term_reference_rss_category\";a:4:{s:5:\"label\";s:12:\"RSS category\";s:11:\"field types\";a:1:{i:0;s:23:\"taxonomy_term_reference\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:8:\"taxonomy\";}s:12:\"text_default\";a:4:{s:5:\"label\";s:7:\"Default\";s:11:\"field types\";a:3:{i:0;s:4:\"text\";i:1;s:9:\"text_long\";i:2;s:17:\"text_with_summary\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";}s:10:\"text_plain\";a:4:{s:5:\"label\";s:10:\"Plain text\";s:11:\"field types\";a:3:{i:0;s:4:\"text\";i:1;s:9:\"text_long\";i:2;s:17:\"text_with_summary\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";}s:12:\"text_trimmed\";a:4:{s:5:\"label\";s:7:\"Trimmed\";s:11:\"field types\";a:3:{i:0;s:4:\"text\";i:1;s:9:\"text_long\";i:2;s:17:\"text_with_summary\";}s:8:\"settings\";a:1:{s:11:\"trim_length\";i:600;}s:6:\"module\";s:4:\"text\";}s:23:\"text_summary_or_trimmed\";a:4:{s:5:\"label\";s:18:\"Summary or trimmed\";s:11:\"field types\";a:1:{i:0;s:17:\"text_with_summary\";}s:8:\"settings\";a:1:{s:11:\"trim_length\";i:600;}s:6:\"module\";s:4:\"text\";}s:33:\"i18n_taxonomy_term_reference_link\";a:4:{s:5:\"label\";s:16:\"Link (localized)\";s:11:\"field types\";a:1:{i:0;s:23:\"taxonomy_term_reference\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:13:\"i18n_taxonomy\";}s:34:\"i18n_taxonomy_term_reference_plain\";a:4:{s:5:\"label\";s:22:\"Plain text (localized)\";s:11:\"field types\";a:1:{i:0;s:23:\"taxonomy_term_reference\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:13:\"i18n_taxonomy\";}}s:13:\"storage types\";a:1:{s:17:\"field_sql_storage\";a:4:{s:5:\"label\";s:19:\"Default SQL storage\";s:11:\"description\";s:64:\"Stores fields in the local SQL database, using per-field tables.\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";}}}',0,1538750977,1),('field_info_types:it','a:4:{s:11:\"field types\";a:16:{s:12:\"addressfield\";a:9:{s:5:\"label\";s:17:\"Indirizzo postale\";s:11:\"description\";s:79:\"Un tipo di campo che contiene un indirizzo postale conforme allo standard xNAL.\";s:8:\"settings\";a:1:{s:23:\"entity_translation_sync\";b:0;}s:17:\"instance_settings\";a:2:{s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:14:\"default_widget\";s:21:\"addressfield_standard\";s:17:\"default_formatter\";s:20:\"addressfield_default\";s:13:\"property_type\";s:12:\"addressfield\";s:18:\"property_callbacks\";a:2:{i:0;s:35:\"addressfield_property_info_callback\";i:1;s:35:\"i18n_field_entity_property_callback\";}s:6:\"module\";s:12:\"addressfield\";}s:4:\"file\";a:10:{s:5:\"label\";s:4:\"File\";s:11:\"description\";s:67:\"Questo campo contiene l\'ID di un file sotto forma di valore intero.\";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:17:\"instance_settings\";a:6:{s:15:\"file_extensions\";s:3:\"txt\";s:14:\"file_directory\";s:0:\"\";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:14:\"default_widget\";s:12:\"file_generic\";s:17:\"default_formatter\";s:12:\"file_default\";s:6:\"module\";s:4:\"file\";s:13:\"property_type\";s:15:\"field_item_file\";s:18:\"property_callbacks\";a:2:{i:0;s:35:\"entity_metadata_field_file_callback\";i:1;s:35:\"i18n_field_entity_property_callback\";}s:18:\"i18n_sync_callback\";s:25:\"i18n_sync_field_file_sync\";}s:8:\"geofield\";a:10:{s:5:\"label\";s:8:\"Geofield\";s:11:\"description\";s:34:\"This field stores geo information.\";s:14:\"default_widget\";s:12:\"geofield_wkt\";s:17:\"default_formatter\";s:12:\"geofield_wkt\";s:8:\"settings\";a:3:{s:4:\"srid\";s:4:\"4326\";s:7:\"backend\";s:7:\"default\";s:23:\"entity_translation_sync\";b:0;}s:13:\"property_type\";s:8:\"geofield\";s:18:\"property_callbacks\";a:2:{i:0;s:31:\"geofield_property_info_callback\";i:1;s:35:\"i18n_field_entity_property_callback\";}s:9:\"microdata\";b:1;s:17:\"instance_settings\";a:2:{s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:6:\"module\";s:8:\"geofield\";}s:5:\"image\";a:10:{s:5:\"label\";s:8:\"Immagine\";s:11:\"description\";s:67:\"Questo campo memorizza l\'ID di un file immagine come valore intero.\";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:17:\"instance_settings\";a:10:{s:15:\"file_extensions\";s:16:\"png gif jpg jpeg\";s:14:\"file_directory\";s:0:\"\";s:12:\"max_filesize\";s:0:\"\";s:9:\"alt_field\";i:0;s:11:\"title_field\";i:0;s:14:\"max_resolution\";s:0:\"\";s:14:\"min_resolution\";s:0:\"\";s:13:\"default_image\";i:0;s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:14:\"default_widget\";s:11:\"image_image\";s:17:\"default_formatter\";s:5:\"image\";s:6:\"module\";s:5:\"image\";s:13:\"property_type\";s:16:\"field_item_image\";s:18:\"property_callbacks\";a:3:{i:0;s:35:\"entity_metadata_field_file_callback\";i:1;s:36:\"entity_metadata_field_image_callback\";i:2;s:35:\"i18n_field_entity_property_callback\";}s:18:\"i18n_sync_callback\";s:25:\"i18n_sync_field_file_sync\";}s:12:\"list_integer\";a:9:{s:5:\"label\";s:15:\"Elenco (intero)\";s:11:\"description\";s:169:\"Questo campo memorizza numeri interi a partire da una lista di coppie \'valore=> etichetta\'; ad esempio \'Durata in giorni\': 1 => 1 giorno, 7 => 1 settimana, 31 => 1 mese.\";s:8:\"settings\";a:3:{s:14:\"allowed_values\";a:0:{}s:23:\"allowed_values_function\";s:0:\"\";s:23:\"entity_translation_sync\";b:0;}s:14:\"default_widget\";s:14:\"options_select\";s:17:\"default_formatter\";s:12:\"list_default\";s:17:\"instance_settings\";a:2:{s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:6:\"module\";s:4:\"list\";s:13:\"property_type\";s:7:\"integer\";s:18:\"property_callbacks\";a:1:{i:0;s:35:\"i18n_field_entity_property_callback\";}}s:10:\"list_float\";a:9:{s:5:\"label\";s:23:\"Elenco (virgola mobile)\";s:11:\"description\";s:167:\"Questo campo memorizza valori di a virgola mobile a partire da una lista di coppie \'valore=> etichetta\'; ad esempio \'Frazione\': 0 => 0, .25 => 1/4, .75 => 3/4, 1 => 1.\";s:8:\"settings\";a:3:{s:14:\"allowed_values\";a:0:{}s:23:\"allowed_values_function\";s:0:\"\";s:23:\"entity_translation_sync\";b:0;}s:14:\"default_widget\";s:14:\"options_select\";s:17:\"default_formatter\";s:12:\"list_default\";s:17:\"instance_settings\";a:2:{s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:6:\"module\";s:4:\"list\";s:13:\"property_type\";s:7:\"decimal\";s:18:\"property_callbacks\";a:1:{i:0;s:35:\"i18n_field_entity_property_callback\";}}s:9:\"list_text\";a:9:{s:5:\"label\";s:14:\"Elenco (testo)\";s:11:\"description\";s:167:\"Questo campo memorizza stringhe di testo a partire da una lista di coppie \'valore=> etichetta\'; ad esempio \'Province italiane\': TO => Torino, NA => Napoli, RM => Roma.\";s:8:\"settings\";a:3:{s:14:\"allowed_values\";a:0:{}s:23:\"allowed_values_function\";s:0:\"\";s:23:\"entity_translation_sync\";b:0;}s:14:\"default_widget\";s:14:\"options_select\";s:17:\"default_formatter\";s:12:\"list_default\";s:17:\"instance_settings\";a:2:{s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:6:\"module\";s:4:\"list\";s:13:\"property_type\";s:4:\"text\";s:18:\"property_callbacks\";a:1:{i:0;s:35:\"i18n_field_entity_property_callback\";}}s:12:\"list_boolean\";a:9:{s:5:\"label\";s:8:\"Booleano\";s:11:\"description\";s:55:\"Questo campo gestisce semplici opzioni on/off o sì/no.\";s:8:\"settings\";a:3:{s:14:\"allowed_values\";a:0:{}s:23:\"allowed_values_function\";s:0:\"\";s:23:\"entity_translation_sync\";b:0;}s:14:\"default_widget\";s:15:\"options_buttons\";s:17:\"default_formatter\";s:12:\"list_default\";s:17:\"instance_settings\";a:2:{s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:6:\"module\";s:4:\"list\";s:13:\"property_type\";s:7:\"boolean\";s:18:\"property_callbacks\";a:1:{i:0;s:35:\"i18n_field_entity_property_callback\";}}s:8:\"location\";a:8:{s:5:\"label\";s:8:\"Location\";s:11:\"description\";s:42:\"Archivia una posizione di location.module.\";s:8:\"settings\";a:1:{s:23:\"entity_translation_sync\";b:0;}s:17:\"instance_settings\";a:2:{s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:14:\"default_widget\";s:8:\"location\";s:17:\"default_formatter\";s:16:\"location_default\";s:6:\"module\";s:12:\"location_cck\";s:18:\"property_callbacks\";a:1:{i:0;s:35:\"i18n_field_entity_property_callback\";}}s:14:\"number_integer\";a:9:{s:5:\"label\";s:6:\"Intero\";s:11:\"description\";s:54:\"Questo campo salva un numero nel database come intero.\";s:17:\"instance_settings\";a:6:{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:23:\"entity_translation_sync\";b:0;}s:14:\"default_widget\";s:6:\"number\";s:17:\"default_formatter\";s:14:\"number_integer\";s:8:\"settings\";a:1:{s:23:\"entity_translation_sync\";b:0;}s:6:\"module\";s:6:\"number\";s:13:\"property_type\";s:7:\"integer\";s:18:\"property_callbacks\";a:1:{i:0;s:35:\"i18n_field_entity_property_callback\";}}s:14:\"number_decimal\";a:9:{s:5:\"label\";s:8:\"Decimale\";s:11:\"description\";s:75:\"Questo campo salva un numero nel database come un decimale a virgola fissa.\";s:8:\"settings\";a:4:{s:9:\"precision\";i:10;s:5:\"scale\";i:2;s:17:\"decimal_separator\";s:1:\".\";s:23:\"entity_translation_sync\";b:0;}s:17:\"instance_settings\";a:6:{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:23:\"entity_translation_sync\";b:0;}s:14:\"default_widget\";s:6:\"number\";s:17:\"default_formatter\";s:14:\"number_decimal\";s:6:\"module\";s:6:\"number\";s:13:\"property_type\";s:7:\"decimal\";s:18:\"property_callbacks\";a:1:{i:0;s:35:\"i18n_field_entity_property_callback\";}}s:12:\"number_float\";a:9:{s:5:\"label\";s:14:\"Virgola mobile\";s:11:\"description\";s:76:\"Questo campo salva un numero nel database come un decimale a virgola mobile.\";s:8:\"settings\";a:2:{s:17:\"decimal_separator\";s:1:\".\";s:23:\"entity_translation_sync\";b:0;}s:17:\"instance_settings\";a:6:{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:23:\"entity_translation_sync\";b:0;}s:14:\"default_widget\";s:6:\"number\";s:17:\"default_formatter\";s:14:\"number_decimal\";s:6:\"module\";s:6:\"number\";s:13:\"property_type\";s:7:\"decimal\";s:18:\"property_callbacks\";a:1:{i:0;s:35:\"i18n_field_entity_property_callback\";}}s:23:\"taxonomy_term_reference\";a:11:{s:5:\"label\";s:19:\"Riferimento termine\";s:11:\"description\";s:65:\"Questo campo salva un riferimento ad un termine della tassonomia.\";s:14:\"default_widget\";s:14:\"options_select\";s:17:\"default_formatter\";s:33:\"i18n_taxonomy_term_reference_link\";s:8:\"settings\";a:3:{s:14:\"allowed_values\";a:1:{i:0;a:2:{s:10:\"vocabulary\";s:0:\"\";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:17:\"instance_settings\";a:2:{s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:6:\"module\";s:8:\"taxonomy\";s:13:\"property_type\";s:13:\"taxonomy_term\";s:18:\"property_callbacks\";a:2:{i:0;s:45:\"entity_metadata_field_term_reference_callback\";i:1;s:35:\"i18n_field_entity_property_callback\";}s:21:\"options_list_callback\";s:28:\"i18n_taxonomy_allowed_values\";s:18:\"i18n_sync_callback\";s:39:\"i18n_taxonomy_field_prepare_translation\";}s:4:\"text\";a:9:{s:5:\"label\";s:5:\"Testo\";s:11:\"description\";s:60:\"Questo campo immagazzina nel database testo di tipo varchar.\";s:8:\"settings\";a:2:{s:10:\"max_length\";i:255;s:23:\"entity_translation_sync\";b:0;}s:17:\"instance_settings\";a:3:{s:15:\"text_processing\";i:0;s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:14:\"default_widget\";s:14:\"text_textfield\";s:17:\"default_formatter\";s:12:\"text_default\";s:6:\"module\";s:4:\"text\";s:13:\"property_type\";s:4:\"text\";s:18:\"property_callbacks\";a:2:{i:0;s:44:\"entity_metadata_field_text_property_callback\";i:1;s:35:\"i18n_field_entity_property_callback\";}}s:9:\"text_long\";a:9:{s:5:\"label\";s:10:\"Testo long\";s:11:\"description\";s:57:\"Questo campo immagazzina nel database testo di tipo long.\";s:17:\"instance_settings\";a:3:{s:15:\"text_processing\";i:0;s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:14:\"default_widget\";s:13:\"text_textarea\";s:17:\"default_formatter\";s:12:\"text_default\";s:8:\"settings\";a:1:{s:23:\"entity_translation_sync\";b:0;}s:6:\"module\";s:4:\"text\";s:13:\"property_type\";s:4:\"text\";s:18:\"property_callbacks\";a:2:{i:0;s:44:\"entity_metadata_field_text_property_callback\";i:1;s:35:\"i18n_field_entity_property_callback\";}}s:17:\"text_with_summary\";a:9:{s:5:\"label\";s:23:\"Testo lungo e riassunto\";s:11:\"description\";s:100:\"Questo campo immagazzina nel database testo di tipo long e opzionalmente anche un testo riassuntivo.\";s:17:\"instance_settings\";a:4:{s:15:\"text_processing\";i:1;s:15:\"display_summary\";i:0;s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:14:\"default_widget\";s:26:\"text_textarea_with_summary\";s:17:\"default_formatter\";s:12:\"text_default\";s:8:\"settings\";a:1:{s:23:\"entity_translation_sync\";b:0;}s:6:\"module\";s:4:\"text\";s:13:\"property_type\";s:22:\"field_item_textsummary\";s:18:\"property_callbacks\";a:2:{i:0;s:44:\"entity_metadata_field_text_property_callback\";i:1;s:35:\"i18n_field_entity_property_callback\";}}}s:12:\"widget types\";a:17:{s:13:\"options_onoff\";a:5:{s:5:\"label\";s:22:\"Casella on/off singola\";s:11:\"field types\";a:1:{i:0;s:12:\"list_boolean\";}s:9:\"behaviors\";a:1:{s:15:\"multiple values\";i:4;}s:8:\"settings\";a:1:{s:13:\"display_label\";i:0;}s:6:\"module\";s:7:\"options\";}s:15:\"options_buttons\";a:5:{s:5:\"label\";s:27:\"Caselle/pulsanti di opzione\";s:11:\"field types\";a:5:{i:0;s:12:\"list_integer\";i:1;s:10:\"list_float\";i:2;s:9:\"list_text\";i:3;s:12:\"list_boolean\";i:4;s:23:\"taxonomy_term_reference\";}s:9:\"behaviors\";a:1:{s:15:\"multiple values\";i:4;}s:8:\"settings\";a:0:{}s:6:\"module\";s:7:\"options\";}s:14:\"options_select\";a:5:{s:5:\"label\";s:19:\"Elenco di selezione\";s:11:\"field types\";a:4:{i:0;s:12:\"list_integer\";i:1;s:10:\"list_float\";i:2;s:9:\"list_text\";i:3;s:23:\"taxonomy_term_reference\";}s:9:\"behaviors\";a:1:{s:15:\"multiple values\";i:4;}s:8:\"settings\";a:0:{}s:6:\"module\";s:7:\"options\";}s:21:\"taxonomy_autocomplete\";a:5:{s:5:\"label\";s:51:\"Widget di autocompletamento per i termini (tagging)\";s:11:\"field types\";a:1:{i:0;s:23:\"taxonomy_term_reference\";}s:8:\"settings\";a:2:{s:4:\"size\";i:60;s:17:\"autocomplete_path\";s:21:\"taxonomy/autocomplete\";}s:9:\"behaviors\";a:1:{s:15:\"multiple values\";i:4;}s:6:\"module\";s:8:\"taxonomy\";}s:14:\"text_textfield\";a:4:{s:5:\"label\";s:14:\"Campo di testo\";s:11:\"field types\";a:1:{i:0;s:4:\"text\";}s:8:\"settings\";a:1:{s:4:\"size\";i:60;}s:6:\"module\";s:4:\"text\";}s:26:\"text_textarea_with_summary\";a:4:{s:5:\"label\";s:27:\"Area di testo con riassunto\";s:11:\"field types\";a:1:{i:0;s:17:\"text_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:13:\"text_textarea\";a:4:{s:5:\"label\";s:30:\"Area di testo (righe multiple)\";s:11:\"field types\";a:1:{i:0;s:9:\"text_long\";}s:8:\"settings\";a:1:{s:4:\"rows\";i:5;}s:6:\"module\";s:4:\"text\";}s:6:\"number\";a:4:{s:5:\"label\";s:14:\"Campo di testo\";s:11:\"field types\";a:3:{i:0;s:14:\"number_integer\";i:1;s:14:\"number_decimal\";i:2;s:12:\"number_float\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:6:\"number\";}s:8:\"location\";a:4:{s:5:\"label\";s:15:\"Campo Posizione\";s:11:\"field types\";a:1:{i:0;s:8:\"location\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:12:\"location_cck\";}s:12:\"geofield_wkt\";a:4:{s:5:\"label\";s:21:\"Well Known Text (WKT)\";s:11:\"field types\";a:1:{i:0;s:8:\"geofield\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:8:\"geofield\";}s:8:\"geocoder\";a:5:{s:5:\"label\";s:26:\"Geocode from another field\";s:11:\"field types\";a:4:{i:0;s:8:\"geofield\";i:1;s:18:\"geolocation_latlng\";i:2;s:8:\"location\";i:3;s:7:\"postgis\";}s:8:\"settings\";a:4:{s:14:\"geocoder_field\";N;s:16:\"geocoder_handler\";N;s:16:\"handler_settings\";a:0:{}s:14:\"delta_handling\";s:7:\"default\";}s:9:\"behaviors\";a:2:{s:15:\"multiple values\";i:4;s:13:\"default value\";i:1;}s:6:\"module\";s:8:\"geocoder\";}s:12:\"file_generic\";a:5:{s:5:\"label\";s:4:\"File\";s:11:\"field types\";a:1:{i:0;s:4:\"file\";}s:8:\"settings\";a:1:{s:18:\"progress_indicator\";s:8:\"throbber\";}s:9:\"behaviors\";a:2:{s:15:\"multiple values\";i:4;s:13:\"default value\";i:1;}s:6:\"module\";s:4:\"file\";}s:16:\"geofield_geojson\";a:4:{s:5:\"label\";s:7:\"GeoJSON\";s:11:\"field types\";a:1:{i:0;s:8:\"geofield\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:8:\"geofield\";}s:15:\"geofield_latlon\";a:4:{s:5:\"label\";s:20:\"Latitude / Longitude\";s:11:\"field types\";a:1:{i:0;s:8:\"geofield\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:8:\"geofield\";}s:11:\"image_image\";a:5:{s:5:\"label\";s:8:\"Immagine\";s:11:\"field types\";a:1:{i:0;s:5:\"image\";}s:8:\"settings\";a:2:{s:18:\"progress_indicator\";s:8:\"throbber\";s:19:\"preview_image_style\";s:9:\"thumbnail\";}s:9:\"behaviors\";a:2:{s:15:\"multiple values\";i:4;s:13:\"default value\";i:1;}s:6:\"module\";s:5:\"image\";}s:15:\"geofield_bounds\";a:4:{s:5:\"label\";s:6:\"Bounds\";s:11:\"field types\";a:1:{i:0;s:8:\"geofield\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:8:\"geofield\";}s:21:\"addressfield_standard\";a:4:{s:5:\"label\";s:23:\"Form dinamico indirizzo\";s:11:\"field types\";a:1:{i:0;s:12:\"addressfield\";}s:8:\"settings\";a:3:{s:19:\"available_countries\";a:0:{}s:15:\"default_country\";s:12:\"site_default\";s:15:\"format_handlers\";a:1:{i:0;s:7:\"address\";}}s:6:\"module\";s:12:\"addressfield\";}}s:15:\"formatter types\";a:36:{s:12:\"title_linked\";a:4:{s:5:\"label\";s:18:\"Linked and wrapped\";s:11:\"field types\";a:1:{i:0;s:4:\"text\";}s:8:\"settings\";a:3:{s:11:\"title_style\";s:0:\"\";s:10:\"title_link\";s:0:\"\";s:11:\"title_class\";s:0:\"\";}s:6:\"module\";s:5:\"title\";}s:20:\"addressfield_default\";a:4:{s:5:\"label\";s:11:\"Predefinito\";s:11:\"field types\";a:1:{i:0;s:12:\"addressfield\";}s:8:\"settings\";a:2:{s:19:\"use_widget_handlers\";i:1;s:15:\"format_handlers\";a:1:{i:0;s:7:\"address\";}}s:6:\"module\";s:12:\"addressfield\";}s:12:\"file_default\";a:4:{s:5:\"label\";s:13:\"File generico\";s:11:\"field types\";a:1:{i:0;s:4:\"file\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"file\";}s:10:\"file_table\";a:4:{s:5:\"label\";s:16:\"Tabella dei file\";s:11:\"field types\";a:1:{i:0;s:4:\"file\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"file\";}s:14:\"file_url_plain\";a:4:{s:5:\"label\";s:12:\"URL del file\";s:11:\"field types\";a:1:{i:0;s:4:\"file\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"file\";}s:12:\"geofield_wkt\";a:4:{s:5:\"label\";s:21:\"Well Known Text (WKT)\";s:11:\"field types\";a:1:{i:0;s:8:\"geofield\";}s:8:\"settings\";a:1:{s:4:\"data\";s:4:\"full\";}s:6:\"module\";s:8:\"geofield\";}s:16:\"geofield_geojson\";a:4:{s:5:\"label\";s:7:\"GeoJSON\";s:11:\"field types\";a:1:{i:0;s:8:\"geofield\";}s:8:\"settings\";a:1:{s:4:\"data\";s:4:\"full\";}s:6:\"module\";s:8:\"geofield\";}s:12:\"geofield_kml\";a:4:{s:5:\"label\";s:3:\"KML\";s:11:\"field types\";a:1:{i:0;s:8:\"geofield\";}s:8:\"settings\";a:1:{s:4:\"data\";s:4:\"full\";}s:6:\"module\";s:8:\"geofield\";}s:12:\"geofield_gpx\";a:4:{s:5:\"label\";s:3:\"GPX\";s:11:\"field types\";a:1:{i:0;s:8:\"geofield\";}s:8:\"settings\";a:1:{s:4:\"data\";s:4:\"full\";}s:6:\"module\";s:8:\"geofield\";}s:16:\"geofield_geohash\";a:4:{s:5:\"label\";s:7:\"Geohash\";s:11:\"field types\";a:1:{i:0;s:8:\"geofield\";}s:8:\"settings\";a:1:{s:4:\"data\";s:4:\"full\";}s:6:\"module\";s:8:\"geofield\";}s:15:\"geofield_latlon\";a:4:{s:5:\"label\";s:18:\"Latitude/Longitude\";s:11:\"field types\";a:1:{i:0;s:8:\"geofield\";}s:8:\"settings\";a:3:{s:4:\"data\";s:4:\"full\";s:6:\"format\";s:15:\"decimal_degrees\";s:6:\"labels\";i:1;}s:6:\"module\";s:8:\"geofield\";}s:12:\"geofield_lat\";a:4:{s:5:\"label\";s:13:\"Latitude Only\";s:11:\"field types\";a:1:{i:0;s:8:\"geofield\";}s:8:\"settings\";a:2:{s:4:\"data\";s:4:\"full\";s:6:\"format\";s:15:\"decimal_degrees\";}s:6:\"module\";s:8:\"geofield\";}s:12:\"geofield_lon\";a:4:{s:5:\"label\";s:14:\"Longitude Only\";s:11:\"field types\";a:1:{i:0;s:8:\"geofield\";}s:8:\"settings\";a:2:{s:4:\"data\";s:4:\"full\";s:6:\"format\";s:15:\"decimal_degrees\";}s:6:\"module\";s:8:\"geofield\";}s:17:\"geofield_geo_type\";a:4:{s:5:\"label\";s:13:\"Geometry Type\";s:11:\"field types\";a:1:{i:0;s:8:\"geofield\";}s:8:\"settings\";a:1:{s:4:\"data\";s:4:\"full\";}s:6:\"module\";s:8:\"geofield\";}s:17:\"geofield_def_list\";a:4:{s:5:\"label\";s:31:\"Definition List (Accessibility)\";s:11:\"field types\";a:1:{i:0;s:8:\"geofield\";}s:8:\"settings\";a:2:{s:4:\"data\";s:0:\"\";s:7:\"address\";i:0;}s:6:\"module\";s:8:\"geofield\";}s:20:\"geofield_description\";a:4:{s:5:\"label\";s:32:\"Descriptive Text (Accessibility)\";s:11:\"field types\";a:1:{i:0;s:8:\"geofield\";}s:8:\"settings\";a:2:{s:4:\"data\";s:0:\"\";s:7:\"address\";i:0;}s:6:\"module\";s:8:\"geofield\";}s:17:\"i18n_list_default\";a:4:{s:5:\"label\";s:18:\"Default translated\";s:11:\"field types\";a:3:{i:0;s:12:\"list_integer\";i:1;s:12:\"list_boolean\";i:2;s:9:\"list_text\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:10:\"i18n_field\";}s:5:\"image\";a:4:{s:5:\"label\";s:8:\"Immagine\";s:11:\"field types\";a:1:{i:0;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:12:\"list_default\";a:4:{s:5:\"label\";s:11:\"Predefinito\";s:11:\"field types\";a:4:{i:0;s:12:\"list_integer\";i:1;s:10:\"list_float\";i:2;s:9:\"list_text\";i:3;s:12:\"list_boolean\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"list\";}s:8:\"list_key\";a:4:{s:5:\"label\";s:6:\"Chiave\";s:11:\"field types\";a:4:{i:0;s:12:\"list_integer\";i:1;s:10:\"list_float\";i:2;s:9:\"list_text\";i:3;s:12:\"list_boolean\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"list\";}s:16:\"location_default\";a:4:{s:5:\"label\";s:23:\"Predefinito (indirizzo)\";s:11:\"field types\";a:1:{i:0;s:8:\"location\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:12:\"location_cck\";}s:12:\"location_all\";a:4:{s:5:\"label\";s:19:\"Indirizzo con mappa\";s:11:\"field types\";a:1:{i:0;s:8:\"location\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:12:\"location_cck\";}s:12:\"location_map\";a:4:{s:5:\"label\";s:10:\"Solo mappa\";s:11:\"field types\";a:1:{i:0;s:8:\"location\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:12:\"location_cck\";}s:17:\"location_multiple\";a:4:{s:5:\"label\";s:46:\"Valori multipli del campo su una singola mappa\";s:11:\"field types\";a:1:{i:0;s:8:\"location\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:12:\"location_cck\";}s:14:\"number_integer\";a:4:{s:5:\"label\";s:11:\"Predefinito\";s:11:\"field types\";a:1:{i:0;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:14:\"number_decimal\";a:4:{s:5:\"label\";s:11:\"Predefinito\";s:11:\"field types\";a:2:{i:0;s:14:\"number_decimal\";i:1;s:12:\"number_float\";}s:8:\"settings\";a:4:{s:18:\"thousand_separator\";s:0:\"\";s:17:\"decimal_separator\";s:1:\".\";s:5:\"scale\";i:2;s:13:\"prefix_suffix\";b:1;}s:6:\"module\";s:6:\"number\";}s:18:\"number_unformatted\";a:4:{s:5:\"label\";s:14:\"Non formattato\";s:11:\"field types\";a:3:{i:0;s:14:\"number_integer\";i:1;s:14:\"number_decimal\";i:2;s:12:\"number_float\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:6:\"number\";}s:28:\"taxonomy_term_reference_link\";a:4:{s:5:\"label\";s:4:\"Link\";s:11:\"field types\";a:1:{i:0;s:23:\"taxonomy_term_reference\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:8:\"taxonomy\";}s:29:\"taxonomy_term_reference_plain\";a:4:{s:5:\"label\";s:14:\"Testo semplice\";s:11:\"field types\";a:1:{i:0;s:23:\"taxonomy_term_reference\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:8:\"taxonomy\";}s:36:\"taxonomy_term_reference_rss_category\";a:4:{s:5:\"label\";s:13:\"Categoria RSS\";s:11:\"field types\";a:1:{i:0;s:23:\"taxonomy_term_reference\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:8:\"taxonomy\";}s:12:\"text_default\";a:4:{s:5:\"label\";s:11:\"Predefinito\";s:11:\"field types\";a:3:{i:0;s:4:\"text\";i:1;s:9:\"text_long\";i:2;s:17:\"text_with_summary\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";}s:10:\"text_plain\";a:4:{s:5:\"label\";s:14:\"Testo semplice\";s:11:\"field types\";a:3:{i:0;s:4:\"text\";i:1;s:9:\"text_long\";i:2;s:17:\"text_with_summary\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";}s:12:\"text_trimmed\";a:4:{s:5:\"label\";s:10:\"Abbreviato\";s:11:\"field types\";a:3:{i:0;s:4:\"text\";i:1;s:9:\"text_long\";i:2;s:17:\"text_with_summary\";}s:8:\"settings\";a:1:{s:11:\"trim_length\";i:600;}s:6:\"module\";s:4:\"text\";}s:23:\"text_summary_or_trimmed\";a:4:{s:5:\"label\";s:20:\"Riassunto o troncato\";s:11:\"field types\";a:1:{i:0;s:17:\"text_with_summary\";}s:8:\"settings\";a:1:{s:11:\"trim_length\";i:600;}s:6:\"module\";s:4:\"text\";}s:33:\"i18n_taxonomy_term_reference_link\";a:4:{s:5:\"label\";s:16:\"Link (localized)\";s:11:\"field types\";a:1:{i:0;s:23:\"taxonomy_term_reference\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:13:\"i18n_taxonomy\";}s:34:\"i18n_taxonomy_term_reference_plain\";a:4:{s:5:\"label\";s:22:\"Plain text (localized)\";s:11:\"field types\";a:1:{i:0;s:23:\"taxonomy_term_reference\";}s:8:\"settings\";a:0:{}s:6:\"module\";s:13:\"i18n_taxonomy\";}}s:13:\"storage types\";a:1:{s:17:\"field_sql_storage\";a:4:{s:5:\"label\";s:29:\"Archiviazione SQL predefinita\";s:11:\"description\";s:78:\"Memorizza i campi nel database SQL locale usando tabelle specifiche per campo.\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";}}}',0,1538751382,1);
/*!40000 ALTER TABLE `cache_field` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cache_filter`
--

DROP TABLE IF EXISTS `cache_filter`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cache_filter` (
  `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
  `data` longblob DEFAULT NULL COMMENT 'A collection of data to cache.',
  `expire` int(11) NOT NULL DEFAULT 0 COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
  `created` int(11) NOT NULL DEFAULT 0 COMMENT 'A Unix timestamp indicating when the cache entry was created.',
  `serialized` smallint(6) NOT NULL DEFAULT 0 COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
  PRIMARY KEY (`cid`),
  KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cache table for the Filter module to store already...';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cache_filter`
--

LOCK TABLES `cache_filter` WRITE;
/*!40000 ALTER TABLE `cache_filter` DISABLE KEYS */;
INSERT INTO `cache_filter` VALUES ('full_html::6aeb25d08df50ed2b6889536c765f8c3abf0a18a38ce27b275e8ae745ce41887','<p align=\"justify\">The  <strong>MORSea</strong> (<em>Marine Observatory in the Ross Sea</em>), project funded by<a href=\"http://www.pnra.it/\"> P.N.R.A.</a>(<em>National Research Program in Antarctica</em>), focuses on the management of the marine observatory established since 1994 in the Ross Sea in the framework of CLIMA (Climatic Long-term Interaction for Mass balance in Antarctica p.i. G. Spezie) and ABIOCLEAR (<em>Antartic BIOgeochemical cycles-Climatic and. palEoclimAtic Recostructions</em> p.i. M. Ravaioli) projects. After the ending of these projects in 2010, the National Scientific Commission for Antarctica (<a href=\"http://www.csna.it/\">CSNA</a>) highlighted the importance of supporting activities connected to a network of four moorings in the Ross Sea. The moorings, previously named B, D, G and L, play an important role in the study of climate change and the interannual variability of the physical and biogeochemical processes in the water column.<br />\nMooring activities have recently been associated to other oceanographic measurements conducted on the basis of the \"ship of opportunity\" concept. Measurements of sea surface temperature and salinity (SST and SSS respectively), launches of XBT and  XCTD probes, deployment of drifters and floats have been carried on without any need of additional ship-time.<br />\nAll these activities were conducted up to 2009 in the framework of previous PNRA project as CLIMA and Southern Ocean Chokepoints Italian Contribution (SOChIC) and during last years have been introduced in the MORSea project in order to keep the continuity of the precious time series acquired since 1994<br />\nIn Italy the project activities essentially concern the validation and analysis of the acquired data and the dissemination of scientific results achieved.</p>\n<div><img alt=\"\" src=\"/sites/default/files/MooringRossSea2014.png\" style=\"height:495px; width:660px\" /></div>\n',0,1538751263,0),('full_html::ea428f02281195bbd0e45757190e0a529a283cbca11c308266b59af169c7a59a','<form action=\"/?q=user\" method=\"post\" id=\"user-login\" accept-charset=\"UTF-8\">\n<div>\n<div class=\"description\"><label for=\"edit-name\">Username <span class=\"form-required\" title=\"This field is required.\">*</span></label></div>\n<p><input type=\"text\" id=\"edit-name\" name=\"name\" value=\"\" size=\"25\" maxlength=\"60\" class=\"form-text required\" /></p>\n<div class=\"description\"><label for=\"edit-pass\">Password <span class=\"form-required\" title=\"This field is required.\">*</span></label></div>\n<p><input type=\"password\" id=\"edit-pass\" name=\"pass\" size=\"25\" maxlength=\"128\" class=\"form-text required\" /></p><li><a href=\"/?q=user/password\">Request new password</a></li>\n<p><input type=\"hidden\" name=\"form_build_id\" value=\"form-QbTB5t7w4NGe033TzDwPx4scFy16dZjs26Y5oQKclUc\" /><input type=\"hidden\" name=\"form_id\" value=\"user_login\" /><input type=\"submit\" id=\"edit-submit\" name=\"op\" value=\"Log in\" class=\"form-submit\" /></p></div>\n</form>\n',0,1538750977,0);
/*!40000 ALTER TABLE `cache_filter` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cache_form`
--

DROP TABLE IF EXISTS `cache_form`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cache_form` (
  `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
  `data` longblob DEFAULT NULL COMMENT 'A collection of data to cache.',
  `expire` int(11) NOT NULL DEFAULT 0 COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
  `created` int(11) NOT NULL DEFAULT 0 COMMENT 'A Unix timestamp indicating when the cache entry was created.',
  `serialized` smallint(6) NOT NULL DEFAULT 0 COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
  PRIMARY KEY (`cid`),
  KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cache table for the form system to store recently built...';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cache_form`
--

LOCK TABLES `cache_form` WRITE;
/*!40000 ALTER TABLE `cache_form` DISABLE KEYS */;
INSERT INTO `cache_form` VALUES ('form_form-0bJD2dDHqycWymIShofX6fWa5XWo-yK7jBNVfawqzwM','a:47:{s:46:\"entity_translation_entity_form_language_update\";a:2:{s:17:\"#element_validate\";a:1:{i:0;s:46:\"entity_translation_entity_form_language_update\";}s:12:\"#entity_type\";s:4:\"node\";}s:15:\"#node_edit_form\";b:1;s:11:\"#attributes\";a:1:{s:5:\"class\";a:2:{i:0;s:9:\"node-form\";i:1;s:17:\"node-article-form\";}}s:3:\"nid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";N;}s:3:\"vid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";N;}s:3:\"uid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"1\";}s:7:\"created\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";i:1652163438;}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:7:\"article\";}s:8:\"language\";a:4:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:8:\"Language\";s:14:\"#default_value\";s:3:\"und\";s:8:\"#options\";a:3:{s:3:\"und\";s:16:\"Language neutral\";s:2:\"en\";s:7:\"English\";s:2:\"it\";s:7:\"Italian\";}}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";N;}s:5:\"title\";a:8:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";N;s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;s:7:\"#access\";b:0;s:18:\"#field_replacement\";b:1;}s:5:\"#node\";O:8:\"stdClass\":14:{s:3:\"uid\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:4:\"type\";s:7:\"article\";s:8:\"language\";s:3:\"und\";s:5:\"title\";N;s:6:\"status\";i:1;s:7:\"promote\";i:1;s:6:\"sticky\";i:0;s:7:\"created\";i:1652163438;s:8:\"revision\";b:0;s:7:\"comment\";s:1:\"2\";s:4:\"menu\";a:12:{s:10:\"link_title\";s:0:\"\";s:4:\"mlid\";i:0;s:4:\"plid\";i:0;s:9:\"menu_name\";s:9:\"main-menu\";s:6:\"weight\";i:0;s:7:\"options\";a:0:{}s:6:\"module\";s:4:\"menu\";s:8:\"expanded\";i:0;s:6:\"hidden\";i:0;s:12:\"has_children\";i:0;s:10:\"customized\";i:0;s:18:\"parent_depth_limit\";i:8;}s:29:\"entity_translation_handler_id\";s:18:\"node-article-new-1\";s:12:\"translations\";O:8:\"stdClass\":2:{s:8:\"original\";N;s:4:\"data\";a:0:{}}}s:19:\"additional_settings\";a:2:{s:5:\"#type\";s:13:\"vertical_tabs\";s:7:\"#weight\";i:99;}s:20:\"revision_information\";a:11:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:6:\"#group\";s:19:\"additional_settings\";s:11:\"#attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:30:\"node-form-revision-information\";}}s:9:\"#attached\";a:1:{s:2:\"js\";a:1:{i:0;s:20:\"modules/node/node.js\";}}s:7:\"#weight\";i:20;s:7:\"#access\";b:1;s:8:\"revision\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;s:7:\"#access\";b:1;s:7:\"#states\";a:1:{s:7:\"checked\";a:1:{s:20:\"textarea[name=\"log\"]\";a:1:{s:5:\"empty\";b:0;}}}}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:20:\"Revision log message\";s:5:\"#rows\";i:4;s:14:\"#default_value\";s:0:\"\";s:12:\"#description\";s:111:\"Provide an explanation of the changes you are making. This will help other authors understand your motivations.\";}}s:6:\"author\";a:11:{s:5:\"#type\";s:8:\"fieldset\";s:7:\"#access\";b:1;s:6:\"#title\";s:21:\"Authoring information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:6:\"#group\";s:19:\"additional_settings\";s:11:\"#attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:16:\"node-form-author\";}}s:9:\"#attached\";a:1:{s:2:\"js\";a:2:{i:0;s:20:\"modules/node/node.js\";i:1;a:2:{s:4:\"type\";s:7:\"setting\";s:4:\"data\";a:1:{s:9:\"anonymous\";s:9:\"Anonymous\";}}}}s:7:\"#weight\";i:90;s:4:\"name\";a:7:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:11:\"Authored by\";s:10:\"#maxlength\";i:60;s:18:\"#autocomplete_path\";s:17:\"user/autocomplete\";s:14:\"#default_value\";s:5:\"admin\";s:7:\"#weight\";i:-1;s:12:\"#description\";s:55:\"Leave blank for <em class=\"placeholder\">Anonymous</em>.\";}s:4:\"date\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:11:\"Authored on\";s:10:\"#maxlength\";i:25;s:12:\"#description\";s:214:\"Format: <em class=\"placeholder\">2022-05-10 08:17:18 +0200</em>. The date format is YYYY-MM-DD and <em class=\"placeholder\">+0200</em> is the time zone offset from UTC. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:0:\"\";}}s:7:\"options\";a:12:{s:5:\"#type\";s:8:\"fieldset\";s:7:\"#access\";b:1;s:6:\"#title\";s:18:\"Publishing options\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:6:\"#group\";s:19:\"additional_settings\";s:11:\"#attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:17:\"node-form-options\";}}s:9:\"#attached\";a:1:{s:2:\"js\";a:1:{i:0;s:20:\"modules/node/node.js\";}}s:7:\"#weight\";i:95;s:6:\"status\";a:3:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:9:\"Published\";s:14:\"#default_value\";i:1;}s:7:\"promote\";a:3:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Promoted to front page\";s:14:\"#default_value\";i:1;}s:6:\"sticky\";a:3:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Sticky at top of lists\";s:14:\"#default_value\";i:0;}}s:7:\"actions\";a:3:{s:5:\"#type\";s:7:\"actions\";s:6:\"submit\";a:5:{s:5:\"#type\";s:6:\"submit\";s:7:\"#access\";b:1;s:6:\"#value\";s:4:\"Save\";s:7:\"#weight\";i:5;s:7:\"#submit\";a:1:{i:0;s:21:\"i18n_node_form_submit\";}}s:7:\"preview\";a:5:{s:7:\"#access\";b:1;s:5:\"#type\";s:6:\"submit\";s:6:\"#value\";s:7:\"Preview\";s:7:\"#weight\";i:10;s:7:\"#submit\";a:1:{i:0;s:23:\"node_form_build_preview\";}}}s:9:\"#validate\";a:1:{i:0;s:18:\"node_form_validate\";}s:7:\"#submit\";a:1:{i:0;s:29:\"locale_field_node_form_submit\";}s:8:\"#parents\";a:0:{}s:7:\"#entity\";r:46;s:4:\"body\";a:7:{s:5:\"#type\";s:9:\"container\";s:11:\"#attributes\";a:1:{s:5:\"class\";a:3:{i:0;s:28:\"field-type-text-with-summary\";i:1;s:15:\"field-name-body\";i:2;s:39:\"field-widget-text-textarea-with-summary\";}}s:7:\"#weight\";s:2:\"-4\";s:5:\"#tree\";b:1;s:9:\"#language\";s:3:\"und\";s:3:\"und\";a:13:{i:0;a:19:{s:12:\"#entity_type\";s:4:\"node\";s:7:\"#entity\";r:46;s:7:\"#bundle\";s:7:\"article\";s:11:\"#field_name\";s:4:\"body\";s:9:\"#language\";s:3:\"und\";s:14:\"#field_parents\";a:0:{}s:8:\"#columns\";a:3:{i:0;s:5:\"value\";i:1;s:7:\"summary\";i:2;s:6:\"format\";}s:6:\"#title\";s:4:\"Body\";s:12:\"#description\";s:0:\"\";s:9:\"#required\";b:0;s:6:\"#delta\";i:0;s:7:\"#weight\";i:0;s:5:\"#type\";s:11:\"text_format\";s:14:\"#default_value\";N;s:5:\"#rows\";s:2:\"20\";s:11:\"#attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:9:\"text-full\";}}s:7:\"#format\";N;s:10:\"#base_type\";s:8:\"textarea\";s:7:\"summary\";a:10:{s:5:\"#type\";s:8:\"textarea\";s:14:\"#default_value\";N;s:6:\"#title\";s:7:\"Summary\";s:5:\"#rows\";i:5;s:12:\"#description\";s:61:\"Leave blank to use trimmed value of full text as the summary.\";s:9:\"#attached\";a:1:{s:2:\"js\";a:1:{i:0;s:34:\"modules/field/modules/text/text.js\";}}s:11:\"#attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:12:\"text-summary\";}}s:7:\"#prefix\";s:34:\"<div class=\"text-summary-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:7:\"#weight\";i:-10;}}s:6:\"#theme\";s:25:\"field_multiple_value_form\";s:11:\"#field_name\";s:4:\"body\";s:12:\"#cardinality\";s:1:\"1\";s:6:\"#title\";s:4:\"Body\";s:9:\"#required\";i:0;s:12:\"#description\";s:0:\"\";s:7:\"#prefix\";s:32:\"<div id=\"body-add-more-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:10:\"#max_delta\";i:0;s:12:\"#after_build\";a:1:{i:0;s:30:\"field_form_element_after_build\";}s:9:\"#language\";s:3:\"und\";s:14:\"#field_parents\";a:0:{}}s:7:\"#access\";b:1;}s:10:\"field_tags\";a:7:{s:5:\"#type\";s:9:\"container\";s:11:\"#attributes\";a:1:{s:5:\"class\";a:3:{i:0;s:34:\"field-type-taxonomy-term-reference\";i:1;s:21:\"field-name-field-tags\";i:2;s:34:\"field-widget-taxonomy-autocomplete\";}}s:7:\"#weight\";s:2:\"-4\";s:5:\"#tree\";b:1;s:9:\"#language\";s:3:\"und\";s:3:\"und\";a:18:{s:7:\"#entity\";r:46;s:12:\"#entity_type\";s:4:\"node\";s:7:\"#bundle\";s:7:\"article\";s:11:\"#field_name\";s:10:\"field_tags\";s:9:\"#language\";s:3:\"und\";s:14:\"#field_parents\";a:0:{}s:8:\"#columns\";a:1:{i:0;s:3:\"tid\";}s:6:\"#title\";s:4:\"Tags\";s:12:\"#description\";s:63:\"Enter a comma-separated list of words to describe your content.\";s:9:\"#required\";b:0;s:6:\"#delta\";i:0;s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:0:\"\";s:18:\"#autocomplete_path\";s:32:\"taxonomy/autocomplete/field_tags\";s:5:\"#size\";i:60;s:10:\"#maxlength\";i:1024;s:17:\"#element_validate\";a:1:{i:0;s:30:\"taxonomy_autocomplete_validate\";}s:12:\"#after_build\";a:1:{i:0;s:30:\"field_form_element_after_build\";}}s:7:\"#access\";b:1;}s:11:\"field_image\";a:7:{s:5:\"#type\";s:9:\"container\";s:11:\"#attributes\";a:1:{s:5:\"class\";a:3:{i:0;s:16:\"field-type-image\";i:1;s:22:\"field-name-field-image\";i:2;s:24:\"field-widget-image-image\";}}s:7:\"#weight\";s:2:\"-1\";s:5:\"#tree\";b:1;s:9:\"#language\";s:3:\"und\";s:3:\"und\";a:5:{i:0;a:19:{s:7:\"#entity\";r:46;s:12:\"#entity_type\";s:4:\"node\";s:7:\"#bundle\";s:7:\"article\";s:11:\"#field_name\";s:11:\"field_image\";s:9:\"#language\";s:3:\"und\";s:14:\"#field_parents\";a:0:{}s:8:\"#columns\";a:5:{i:0;s:3:\"fid\";i:1;s:3:\"alt\";i:2;s:5:\"title\";i:3;s:5:\"width\";i:4;s:6:\"height\";}s:6:\"#title\";s:5:\"Image\";s:12:\"#description\";s:152:\"Upload an image to go with this article.<br />Files must be less than <strong>2 MB</strong>.<br />Allowed file types: <strong>png gif jpg jpeg</strong>.\";s:9:\"#required\";b:0;s:6:\"#delta\";i:0;s:5:\"#type\";s:12:\"managed_file\";s:16:\"#upload_location\";s:20:\"public://field/image\";s:18:\"#upload_validators\";a:2:{s:18:\"file_validate_size\";a:1:{i:0;d:2097152;}s:24:\"file_validate_extensions\";a:1:{i:0;s:16:\"png gif jpg jpeg\";}}s:15:\"#value_callback\";s:23:\"file_field_widget_value\";s:8:\"#process\";a:3:{i:0;s:25:\"file_managed_file_process\";i:1;s:25:\"file_field_widget_process\";i:2;s:26:\"image_field_widget_process\";}s:19:\"#progress_indicator\";s:8:\"throbber\";s:9:\"#extended\";b:1;s:14:\"#default_value\";a:3:{s:3:\"fid\";i:0;s:7:\"display\";b:0;s:11:\"description\";s:0:\"\";}}s:12:\"#after_build\";a:1:{i:0;s:30:\"field_form_element_after_build\";}s:11:\"#field_name\";s:11:\"field_image\";s:9:\"#language\";s:3:\"und\";s:14:\"#field_parents\";a:0:{}}s:7:\"#access\";b:1;}s:11:\"title_field\";a:7:{s:5:\"#type\";s:9:\"container\";s:11:\"#attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:15:\"form-item-title\";}}s:7:\"#weight\";s:2:\"-5\";s:5:\"#tree\";b:1;s:9:\"#language\";s:3:\"und\";s:3:\"und\";a:13:{i:0;a:13:{s:12:\"#entity_type\";s:4:\"node\";s:7:\"#entity\";r:46;s:7:\"#bundle\";s:7:\"article\";s:11:\"#field_name\";s:11:\"title_field\";s:9:\"#language\";s:3:\"und\";s:14:\"#field_parents\";a:0:{}s:8:\"#columns\";a:2:{i:0;s:5:\"value\";i:1;s:6:\"format\";}s:6:\"#title\";s:5:\"Title\";s:12:\"#description\";s:0:\"\";s:9:\"#required\";b:1;s:6:\"#delta\";i:0;s:7:\"#weight\";i:0;s:5:\"value\";a:17:{s:12:\"#entity_type\";s:4:\"node\";s:7:\"#entity\";r:46;s:7:\"#bundle\";s:7:\"article\";s:11:\"#field_name\";s:11:\"title_field\";s:9:\"#language\";s:3:\"und\";s:14:\"#field_parents\";a:0:{}s:8:\"#columns\";a:2:{i:0;s:5:\"value\";i:1;s:6:\"format\";}s:6:\"#title\";s:5:\"Title\";s:12:\"#description\";s:0:\"\";s:9:\"#required\";b:1;s:6:\"#delta\";i:0;s:7:\"#weight\";i:0;s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";N;s:5:\"#size\";s:2:\"60\";s:10:\"#maxlength\";i:255;s:11:\"#attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:9:\"text-full\";}}}}s:6:\"#theme\";s:25:\"field_multiple_value_form\";s:11:\"#field_name\";s:11:\"title_field\";s:12:\"#cardinality\";s:1:\"1\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";i:1;s:12:\"#description\";s:0:\"\";s:7:\"#prefix\";s:39:\"<div id=\"title-field-add-more-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:10:\"#max_delta\";i:0;s:12:\"#after_build\";a:1:{i:0;s:30:\"field_form_element_after_build\";}s:9:\"#language\";s:3:\"und\";s:14:\"#field_parents\";a:0:{}}s:7:\"#access\";b:1;}s:11:\"#pre_render\";a:1:{i:0;s:30:\"_field_extra_fields_pre_render\";}s:12:\"#entity_type\";s:4:\"node\";s:7:\"#bundle\";s:7:\"article\";s:8:\"#form_id\";s:17:\"article_node_form\";s:5:\"#type\";s:4:\"form\";s:9:\"#build_id\";s:48:\"form-0bJD2dDHqycWymIShofX6fWa5XWo-yK7jBNVfawqzwM\";s:13:\"form_build_id\";a:5:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:48:\"form-0bJD2dDHqycWymIShofX6fWa5XWo-yK7jBNVfawqzwM\";s:3:\"#id\";s:48:\"form-0bJD2dDHqycWymIShofX6fWa5XWo-yK7jBNVfawqzwM\";s:5:\"#name\";s:13:\"form_build_id\";s:8:\"#parents\";a:1:{i:0;s:13:\"form_build_id\";}}s:6:\"#token\";s:17:\"article_node_form\";s:10:\"form_token\";a:4:{s:3:\"#id\";s:33:\"edit-article-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:43:\"8Ckjr5311Dsq0QojI3brb8F9iSz1H21h6E346lAhe2o\";s:8:\"#parents\";a:1:{i:0;s:10:\"form_token\";}}s:7:\"form_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:17:\"article_node_form\";s:3:\"#id\";s:22:\"edit-article-node-form\";s:8:\"#parents\";a:1:{i:0;s:7:\"form_id\";}}s:3:\"#id\";s:17:\"article-node-form\";s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:39:\"/?q=node%2Fadd%2Farticle&render=overlay\";s:15:\"#theme_wrappers\";a:1:{i:0;s:4:\"form\";}s:5:\"#tree\";b:0;s:6:\"#theme\";a:2:{i:0;s:17:\"article_node_form\";i:1;s:9:\"node_form\";}s:16:\"comment_settings\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:7:\"#access\";b:1;s:6:\"#title\";s:16:\"Comment settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:6:\"#group\";s:19:\"additional_settings\";s:11:\"#attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:26:\"comment-node-settings-form\";}}s:9:\"#attached\";a:1:{s:2:\"js\";a:1:{i:0;s:36:\"modules/comment/comment-node-form.js\";}}s:7:\"#weight\";i:30;s:7:\"comment\";a:9:{s:5:\"#type\";s:6:\"radios\";s:6:\"#title\";s:8:\"Comments\";s:14:\"#title_display\";s:9:\"invisible\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"2\";s:8:\"#options\";a:3:{i:2;s:4:\"Open\";i:1;s:6:\"Closed\";i:0;s:6:\"Hidden\";}i:2;a:1:{s:12:\"#description\";s:60:\"Users with the \"Post comments\" permission can post comments.\";}i:1;a:1:{s:12:\"#description\";s:27:\"Users cannot post comments.\";}i:0;a:2:{s:12:\"#description\";s:30:\"Comments are hidden from view.\";s:7:\"#access\";b:0;}}}s:12:\"#after_build\";a:1:{i:0;s:31:\"_i18n_node_form_node_form_alter\";}s:9:\"locations\";a:6:{s:7:\"#prefix\";s:30:\"<div class=\"location-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:5:\"#tree\";b:1;s:7:\"#weight\";s:1:\"0\";i:0;a:9:{s:5:\"#type\";s:16:\"location_element\";s:18:\"#has_garbage_value\";b:1;s:6:\"#value\";s:0:\"\";s:6:\"#title\";s:8:\"Location\";s:14:\"#default_value\";N;s:18:\"#location_settings\";a:4:{s:8:\"multiple\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:1:\"1\";s:3:\"add\";s:1:\"1\";}s:4:\"form\";a:4:{s:6:\"weight\";s:1:\"0\";s:11:\"collapsible\";i:1;s:9:\"collapsed\";i:1;s:6:\"fields\";a:8:{s:4:\"name\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"2\";}s:6:\"street\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"4\";}s:10:\"additional\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"6\";}s:4:\"city\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"8\";}s:8:\"province\";a:4:{s:7:\"collect\";s:1:\"0\";s:6:\"widget\";s:12:\"autocomplete\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:2:\"10\";}s:11:\"postal_code\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:2:\"12\";}s:7:\"country\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:2:\"aq\";s:6:\"weight\";s:2:\"14\";}s:7:\"locpick\";a:2:{s:7:\"collect\";s:1:\"1\";s:6:\"weight\";s:2:\"20\";}}}s:7:\"display\";a:4:{s:6:\"weight\";s:1:\"0\";s:4:\"hide\";a:12:{s:4:\"name\";i:0;s:6:\"street\";i:0;s:10:\"additional\";i:0;s:4:\"city\";i:0;s:8:\"province\";i:0;s:11:\"postal_code\";i:0;s:7:\"country\";i:0;s:7:\"locpick\";i:0;s:13:\"province_name\";i:0;s:12:\"country_name\";i:0;s:8:\"map_link\";i:0;s:6:\"coords\";i:0;}s:6:\"teaser\";i:1;s:4:\"full\";i:1;}s:3:\"rss\";a:1:{s:4:\"mode\";s:6:\"simple\";}}s:9:\"#required\";b:0;s:12:\"#collapsible\";i:1;s:10:\"#collapsed\";i:1;}s:6:\"#group\";s:19:\"additional_settings\";}s:4:\"menu\";a:12:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:13:\"Menu settings\";s:7:\"#access\";b:1;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:6:\"#group\";s:19:\"additional_settings\";s:9:\"#attached\";a:1:{s:2:\"js\";a:1:{i:0;s:20:\"modules/menu/menu.js\";}}s:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:14:\"menu-link-form\";}}s:7:\"enabled\";a:3:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Provide a menu link\";s:14:\"#default_value\";i:0;}s:4:\"link\";a:16:{s:5:\"#type\";s:9:\"container\";s:8:\"#parents\";a:1:{i:0;s:4:\"menu\";}s:7:\"#states\";a:1:{s:9:\"invisible\";a:1:{s:27:\"input[name=\"menu[enabled]\"]\";a:1:{s:7:\"checked\";b:0;}}}s:4:\"mlid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";i:0;}s:6:\"module\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"menu\";}s:6:\"hidden\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";i:0;}s:12:\"has_children\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";i:0;}s:10:\"customized\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";i:1;}s:7:\"options\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";a:0:{}}s:8:\"expanded\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";i:0;}s:18:\"parent_depth_limit\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";i:8;}s:10:\"link_title\";a:4:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:10:\"#maxlength\";i:255;s:14:\"#default_value\";s:0:\"\";}s:11:\"description\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Description\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:1;s:12:\"#description\";s:39:\"Shown when hovering over the menu link.\";}s:6:\"parent\";a:5:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:11:\"main-menu:0\";s:8:\"#options\";a:15:{s:11:\"main-menu:0\";s:11:\"<Main menu>\";s:13:\"main-menu:218\";s:7:\"-- Home\";s:13:\"main-menu:390\";s:21:\"-- Gallery (disabled)\";s:13:\"main-menu:392\";s:29:\"---- Latest albums (disabled)\";s:13:\"main-menu:393\";s:29:\"---- Latest images (disabled)\";s:13:\"main-menu:398\";s:25:\"---- My albums (disabled)\";s:13:\"main-menu:399\";s:25:\"---- My images (disabled)\";s:13:\"main-menu:394\";s:26:\"---- Share code (disabled)\";s:13:\"main-menu:391\";s:28:\"---- Image upload (disabled)\";s:13:\"main-menu:384\";s:14:\"-- Data access\";s:13:\"main-menu:429\";s:11:\"-- Moorings\";s:13:\"main-menu:610\";s:23:\"-- Ancillary activities\";s:13:\"main-menu:532\";s:7:\"-- News\";s:13:\"main-menu:382\";s:11:\"-- Contacts\";s:13:\"main-menu:514\";s:11:\"-- Pictures\";}s:11:\"#attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:18:\"menu-parent-select\";}}}s:6:\"weight\";a:5:{s:5:\"#type\";s:6:\"weight\";s:6:\"#title\";s:6:\"Weight\";s:6:\"#delta\";i:50;s:14:\"#default_value\";i:0;s:12:\"#description\";s:79:\"Menu links with smaller weights are displayed before links with larger weights.\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"und\";}}}s:4:\"path\";a:15:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:6:\"#group\";s:19:\"additional_settings\";s:11:\"#attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:9:\"path-form\";}}s:9:\"#attached\";a:1:{s:2:\"js\";a:1:{i:0;s:20:\"modules/path/path.js\";}}s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:5:\"#tree\";b:1;s:17:\"#element_validate\";a:1:{i:0;s:26:\"path_form_element_validate\";}s:5:\"alias\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:9:\"URL alias\";s:14:\"#default_value\";s:0:\"\";s:10:\"#maxlength\";i:255;s:12:\"#description\";s:210:\"Optionally specify an alternative URL by which this content can be accessed. For example, type \"about\" when writing an about page. Use a relative path and don\'t add a trailing slash or the URL alias won\'t work.\";}s:3:\"pid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";N;}s:6:\"source\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";N;}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"und\";}}s:12:\"#cache_token\";s:43:\"Hndit1XB6D55I0dtQi4vJxuvRUot3Fnir5iMLfyUPqo\";}',1652185038,1652163438,1),('form_form-3-glOCsy8R3_TW_eCf4gvWrJYDwDWqMk9oQT2IVhztM','a:28:{s:12:\"#entity_type\";s:4:\"user\";s:7:\"#bundle\";s:4:\"user\";s:10:\"#view_mode\";s:7:\"default\";s:7:\"#fields\";a:0:{}s:6:\"#extra\";a:1:{i:0;s:7:\"summary\";}s:6:\"fields\";a:9:{s:5:\"#type\";s:14:\"field_ui_table\";s:5:\"#tree\";b:1;s:7:\"#header\";a:5:{i:0;s:5:\"Field\";i:1;s:6:\"Weight\";i:2;s:6:\"Parent\";i:3;s:5:\"Label\";i:4;a:2:{s:4:\"data\";s:6:\"Format\";s:7:\"colspan\";i:3;}}s:8:\"#regions\";a:2:{s:7:\"visible\";a:1:{s:7:\"message\";s:22:\"No field is displayed.\";}s:6:\"hidden\";a:2:{s:5:\"title\";s:6:\"Hidden\";s:7:\"message\";s:19:\"No field is hidden.\";}}s:15:\"#parent_options\";a:0:{}s:11:\"#attributes\";a:2:{s:5:\"class\";a:1:{i:0;s:17:\"field-ui-overview\";}s:2:\"id\";s:22:\"field-display-overview\";}s:7:\"#prefix\";s:41:\"<div id=\"field-display-overview-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:7:\"summary\";a:11:{s:11:\"#attributes\";a:1:{s:5:\"class\";a:2:{i:0;s:9:\"draggable\";i:1;s:14:\"tabledrag-leaf\";}}s:9:\"#row_type\";s:11:\"extra_field\";s:16:\"#region_callback\";s:36:\"field_ui_display_overview_row_region\";s:12:\"#js_settings\";a:1:{s:10:\"rowHandler\";s:5:\"field\";}s:10:\"human_name\";a:1:{s:7:\"#markup\";s:7:\"History\";}s:6:\"weight\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:18:\"Weight for History\";s:14:\"#title_display\";s:9:\"invisible\";s:14:\"#default_value\";i:5;s:5:\"#size\";i:3;s:11:\"#attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:12:\"field-weight\";}}}s:14:\"parent_wrapper\";a:2:{s:6:\"parent\";a:7:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:19:\"Parents for History\";s:14:\"#title_display\";s:9:\"invisible\";s:8:\"#options\";a:0:{}s:12:\"#empty_value\";s:0:\"\";s:11:\"#attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:12:\"field-parent\";}}s:8:\"#parents\";a:3:{i:0;s:6:\"fields\";i:1;s:7:\"summary\";i:2;s:6:\"parent\";}}s:11:\"hidden_name\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:7:\"summary\";s:11:\"#attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:10:\"field-name\";}}}}s:10:\"empty_cell\";a:1:{s:7:\"#markup\";s:6:\"&nbsp;\";}s:6:\"format\";a:1:{s:4:\"type\";a:7:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:22:\"Visibility for History\";s:14:\"#title_display\";s:9:\"invisible\";s:8:\"#options\";a:2:{s:7:\"visible\";s:7:\"Visible\";s:6:\"hidden\";s:6:\"Hidden\";}s:14:\"#default_value\";s:7:\"visible\";s:8:\"#parents\";a:3:{i:0;s:6:\"fields\";i:1;s:7:\"summary\";i:2;s:4:\"type\";}s:11:\"#attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:20:\"field-formatter-type\";}}}}s:16:\"settings_summary\";a:0:{}s:13:\"settings_edit\";a:0:{}}}s:5:\"modes\";a:5:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:23:\"Custom display settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:17:\"view_modes_custom\";a:4:{s:5:\"#type\";s:10:\"checkboxes\";s:6:\"#title\";s:56:\"Use custom display settings for the following view modes\";s:8:\"#options\";a:1:{s:4:\"full\";s:12:\"User account\";}s:14:\"#default_value\";a:0:{}}}s:12:\"refresh_rows\";a:1:{s:5:\"#type\";s:6:\"hidden\";}s:7:\"refresh\";a:5:{s:5:\"#type\";s:6:\"submit\";s:6:\"#value\";s:7:\"Refresh\";s:3:\"#op\";s:13:\"refresh_table\";s:7:\"#submit\";a:1:{i:0;s:42:\"field_ui_display_overview_multistep_submit\";}s:5:\"#ajax\";a:4:{s:8:\"callback\";s:38:\"field_ui_display_overview_multistep_js\";s:7:\"wrapper\";s:30:\"field-display-overview-wrapper\";s:6:\"effect\";s:4:\"fade\";s:8:\"progress\";s:4:\"none\";}}s:7:\"actions\";a:2:{s:5:\"#type\";s:7:\"actions\";s:6:\"submit\";a:2:{s:5:\"#type\";s:6:\"submit\";s:6:\"#value\";s:4:\"Save\";}}s:9:\"#attached\";a:3:{s:2:\"js\";a:1:{i:0;s:28:\"modules/field_ui/field_ui.js\";}s:3:\"css\";a:1:{i:0;s:29:\"modules/field_ui/field_ui.css\";}s:20:\"drupal_add_tabledrag\";a:2:{i:0;a:4:{i:0;s:22:\"field-display-overview\";i:1;s:5:\"order\";i:2;s:7:\"sibling\";i:3;s:12:\"field-weight\";}i:1;a:6:{i:0;s:22:\"field-display-overview\";i:1;s:5:\"match\";i:2;s:6:\"parent\";i:3;s:12:\"field-parent\";i:4;s:12:\"field-parent\";i:5;s:10:\"field-name\";}}}s:8:\"#form_id\";s:30:\"field_ui_display_overview_form\";s:5:\"#type\";s:4:\"form\";s:9:\"#build_id\";s:48:\"form-3-glOCsy8R3_TW_eCf4gvWrJYDwDWqMk9oQT2IVhztM\";s:13:\"form_build_id\";a:5:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:48:\"form-3-glOCsy8R3_TW_eCf4gvWrJYDwDWqMk9oQT2IVhztM\";s:3:\"#id\";s:48:\"form-3-glOCsy8R3_TW_eCf4gvWrJYDwDWqMk9oQT2IVhztM\";s:5:\"#name\";s:13:\"form_build_id\";s:8:\"#parents\";a:1:{i:0;s:13:\"form_build_id\";}}s:6:\"#token\";s:30:\"field_ui_display_overview_form\";s:10:\"form_token\";a:4:{s:3:\"#id\";s:46:\"edit-field-ui-display-overview-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:43:\"26VZOv9JUe5LFpDdYksVRFyBaabxbwFafX3XWebBgPg\";s:8:\"#parents\";a:1:{i:0;s:10:\"form_token\";}}s:7:\"form_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:30:\"field_ui_display_overview_form\";s:3:\"#id\";s:35:\"edit-field-ui-display-overview-form\";s:8:\"#parents\";a:1:{i:0;s:7:\"form_id\";}}s:3:\"#id\";s:30:\"field-ui-display-overview-form\";s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:63:\"/?q=admin%2Fconfig%2Fpeople%2Faccounts%2Fdisplay&render=overlay\";s:15:\"#theme_wrappers\";a:1:{i:0;s:4:\"form\";}s:5:\"#tree\";b:0;s:8:\"#parents\";a:0:{}s:9:\"#validate\";a:0:{}s:7:\"#submit\";a:1:{i:0;s:37:\"field_ui_display_overview_form_submit\";}s:6:\"#theme\";a:1:{i:0;s:30:\"field_ui_display_overview_form\";}s:12:\"#cache_token\";s:43:\"Hndit1XB6D55I0dtQi4vJxuvRUot3Fnir5iMLfyUPqo\";}',1652184048,1652162448,1),('form_form-5ClLHAD9WdRl3niuiudFYAny5H-bkrDkf1bb4hr4VgI','a:45:{s:46:\"entity_translation_entity_form_language_update\";a:2:{s:17:\"#element_validate\";a:1:{i:0;s:46:\"entity_translation_entity_form_language_update\";}s:12:\"#entity_type\";s:4:\"node\";}s:15:\"#node_edit_form\";b:1;s:11:\"#attributes\";a:1:{s:5:\"class\";a:2:{i:0;s:9:\"node-form\";i:1;s:14:\"node-page-form\";}}s:3:\"nid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"4\";}s:3:\"vid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"4\";}s:3:\"uid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"1\";}s:7:\"created\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:10:\"1410355045\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:4:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:8:\"Language\";s:14:\"#default_value\";s:3:\"und\";s:8:\"#options\";a:3:{s:3:\"und\";s:16:\"Language neutral\";s:2:\"en\";s:7:\"English\";s:2:\"it\";s:7:\"Italian\";}}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1425802048\";}s:5:\"title\";a:8:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:11:\"Data access\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;s:7:\"#access\";b:0;s:18:\"#field_replacement\";b:1;}s:5:\"#node\";O:8:\"stdClass\":36:{s:3:\"vid\";s:1:\"4\";s:3:\"uid\";s:1:\"1\";s:5:\"title\";s:11:\"Data access\";s:3:\"log\";N;s:6:\"status\";s:1:\"1\";s:7:\"comment\";s:1:\"1\";s:7:\"promote\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:3:\"nid\";s:1:\"4\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:3:\"und\";s:7:\"created\";s:10:\"1410355045\";s:7:\"changed\";s:10:\"1425802048\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:18:\"revision_timestamp\";s:10:\"1425802048\";s:12:\"revision_uid\";s:1:\"1\";s:4:\"body\";a:1:{s:3:\"und\";a:1:{i:0;a:5:{s:5:\"value\";s:708:\"<div style=\"text-align: center;\">\r\n<div style=\" float:left; border: none; margin-right:20px;\"><a href=\"morsea.uniparthenope.it/?q=node/37\"><img  style=\"border:none;\" width=\"250\" src=\"/sites/all/themes/multipurpose/images/Metadata.png\"/></a></div>\r\n\r\n<div style=\"border: none; margin-left:40px;\"><a href=\"http://morsea.uniparthenope.it/chart/page\"><img style=\"border:none;\" width=\"250\" src=\"/sites/all/themes/multipurpose/images/TimeSeries.png\"/></a>\r\n</div>\r\n</div>\r\n<br>\r\n<p style=\"align:justify;\">Data and samples are currently distributed according to Italian PNRA policies; for information contact the scientific coordinators (giancarlo.spezie@uniparthenope.it or giorgio.budillon@uniparthenope.it)</p>\r\n\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:819:\"<div style=\"text-align: center;\">\n<div style=\" float:left; border: none; margin-right:20px;\"><a href=\"morsea.uniparthenope.it/?q=node/37\"><img style=\"border:none;\" width=\"250\" src=\"/sites/all/themes/multipurpose/images/Metadata.png\" /></a></div>\n<div style=\"border: none; margin-left:40px;\"><a href=\"http://morsea.uniparthenope.it/chart/page\"><img style=\"border:none;\" width=\"250\" src=\"/sites/all/themes/multipurpose/images/TimeSeries.png\" /></a>\n</div>\n</div>\n<p><br /></p>\n<p style=\"align:justify;\">Data and samples are currently distributed according to Italian PNRA policies; for information contact the scientific coordinators (<a href=\"mailto:giancarlo.spezie@uniparthenope.it\">giancarlo.spezie@uniparthenope.it</a> or <a href=\"mailto:giorgio.budillon@uniparthenope.it\">giorgio.budillon@uniparthenope.it</a>)</p>\n\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:3:\"und\";a:1:{i:0;a:3:{s:5:\"value\";s:11:\"Data access\";s:6:\"format\";N;s:10:\"safe_value\";s:11:\"Data access\";}}}s:12:\"translations\";O:8:\"stdClass\":2:{s:8:\"original\";N;s:4:\"data\";a:0:{}}s:14:\"title_original\";s:11:\"Data access\";s:29:\"entity_translation_handler_id\";s:17:\"node-page-eid-4-4\";s:11:\"rdf_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\";}}s:3:\"cid\";s:1:\"0\";s:22:\"last_comment_timestamp\";s:10:\"1410355045\";s:17:\"last_comment_name\";N;s:16:\"last_comment_uid\";s:1:\"1\";s:13:\"comment_count\";s:1:\"0\";s:9:\"locations\";a:0:{}s:8:\"location\";a:0:{}s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:1:\"0\";s:4:\"data\";s:4:\"b:0;\";s:4:\"date\";s:25:\"2014-09-10 15:17:25 +0200\";s:8:\"revision\";b:0;s:4:\"menu\";a:54:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"384\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/4\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:11:\"Data access\";s:7:\"options\";a:2:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:0:{}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-48\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"384\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:4:\"path\";s:6:\"node/%\";s:14:\"load_functions\";a:1:{i:1;s:9:\"node_load\";}s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:11:\"Data access\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:12:\"include_file\";s:0:\"\";s:11:\"link_weight\";s:3:\"-48\";s:4:\"href\";s:6:\"node/4\";s:6:\"access\";b:1;s:17:\"localized_options\";a:2:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:0:{}}s:18:\"parent_depth_limit\";i:8;}}s:19:\"additional_settings\";a:2:{s:5:\"#type\";s:13:\"vertical_tabs\";s:7:\"#weight\";i:99;}s:20:\"revision_information\";a:11:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:6:\"#group\";s:19:\"additional_settings\";s:11:\"#attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:30:\"node-form-revision-information\";}}s:9:\"#attached\";a:1:{s:2:\"js\";a:1:{i:0;s:20:\"modules/node/node.js\";}}s:7:\"#weight\";i:20;s:7:\"#access\";b:1;s:8:\"revision\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;s:7:\"#access\";b:1;s:7:\"#states\";a:1:{s:7:\"checked\";a:1:{s:20:\"textarea[name=\"log\"]\";a:1:{s:5:\"empty\";b:0;}}}}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:20:\"Revision log message\";s:5:\"#rows\";i:4;s:14:\"#default_value\";s:0:\"\";s:12:\"#description\";s:111:\"Provide an explanation of the changes you are making. This will help other authors understand your motivations.\";}}s:6:\"author\";a:11:{s:5:\"#type\";s:8:\"fieldset\";s:7:\"#access\";b:1;s:6:\"#title\";s:21:\"Authoring information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:6:\"#group\";s:19:\"additional_settings\";s:11:\"#attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:16:\"node-form-author\";}}s:9:\"#attached\";a:1:{s:2:\"js\";a:2:{i:0;s:20:\"modules/node/node.js\";i:1;a:2:{s:4:\"type\";s:7:\"setting\";s:4:\"data\";a:1:{s:9:\"anonymous\";s:9:\"Anonymous\";}}}}s:7:\"#weight\";i:90;s:4:\"name\";a:7:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:11:\"Authored by\";s:10:\"#maxlength\";i:60;s:18:\"#autocomplete_path\";s:17:\"user/autocomplete\";s:14:\"#default_value\";s:5:\"admin\";s:7:\"#weight\";i:-1;s:12:\"#description\";s:55:\"Leave blank for <em class=\"placeholder\">Anonymous</em>.\";}s:4:\"date\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:11:\"Authored on\";s:10:\"#maxlength\";i:25;s:12:\"#description\";s:214:\"Format: <em class=\"placeholder\">2014-09-10 15:17:25 +0200</em>. The date format is YYYY-MM-DD and <em class=\"placeholder\">+0200</em> is the time zone offset from UTC. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2014-09-10 15:17:25 +0200\";}}s:7:\"options\";a:12:{s:5:\"#type\";s:8:\"fieldset\";s:7:\"#access\";b:1;s:6:\"#title\";s:18:\"Publishing options\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:6:\"#group\";s:19:\"additional_settings\";s:11:\"#attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:17:\"node-form-options\";}}s:9:\"#attached\";a:1:{s:2:\"js\";a:1:{i:0;s:20:\"modules/node/node.js\";}}s:7:\"#weight\";i:95;s:6:\"status\";a:3:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:9:\"Published\";s:14:\"#default_value\";s:1:\"1\";}s:7:\"promote\";a:3:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Promoted to front page\";s:14:\"#default_value\";s:1:\"0\";}s:6:\"sticky\";a:3:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Sticky at top of lists\";s:14:\"#default_value\";s:1:\"0\";}}s:7:\"actions\";a:4:{s:5:\"#type\";s:7:\"actions\";s:6:\"submit\";a:5:{s:5:\"#type\";s:6:\"submit\";s:7:\"#access\";b:1;s:6:\"#value\";s:4:\"Save\";s:7:\"#weight\";i:5;s:7:\"#submit\";a:1:{i:0;s:21:\"i18n_node_form_submit\";}}s:7:\"preview\";a:5:{s:7:\"#access\";b:1;s:5:\"#type\";s:6:\"submit\";s:6:\"#value\";s:7:\"Preview\";s:7:\"#weight\";i:10;s:7:\"#submit\";a:1:{i:0;s:23:\"node_form_build_preview\";}}s:6:\"delete\";a:4:{s:5:\"#type\";s:6:\"submit\";s:6:\"#value\";s:6:\"Delete\";s:7:\"#weight\";i:15;s:7:\"#submit\";a:1:{i:0;s:23:\"node_form_delete_submit\";}}}s:9:\"#validate\";a:1:{i:0;s:18:\"node_form_validate\";}s:7:\"#submit\";a:1:{i:0;s:29:\"locale_field_node_form_submit\";}s:8:\"#parents\";a:0:{}s:7:\"#entity\";r:46;s:4:\"body\";a:7:{s:5:\"#type\";s:9:\"container\";s:11:\"#attributes\";a:1:{s:5:\"class\";a:3:{i:0;s:28:\"field-type-text-with-summary\";i:1;s:15:\"field-name-body\";i:2;s:39:\"field-widget-text-textarea-with-summary\";}}s:7:\"#weight\";s:1:\"2\";s:5:\"#tree\";b:1;s:9:\"#language\";s:3:\"und\";s:3:\"und\";a:13:{i:0;a:19:{s:12:\"#entity_type\";s:4:\"node\";s:7:\"#entity\";r:46;s:7:\"#bundle\";s:4:\"page\";s:11:\"#field_name\";s:4:\"body\";s:9:\"#language\";s:3:\"und\";s:14:\"#field_parents\";a:0:{}s:8:\"#columns\";a:3:{i:0;s:5:\"value\";i:1;s:7:\"summary\";i:2;s:6:\"format\";}s:6:\"#title\";s:4:\"Body\";s:12:\"#description\";s:0:\"\";s:9:\"#required\";b:0;s:6:\"#delta\";i:0;s:7:\"#weight\";i:0;s:5:\"#type\";s:11:\"text_format\";s:14:\"#default_value\";s:708:\"<div style=\"text-align: center;\">\r\n<div style=\" float:left; border: none; margin-right:20px;\"><a href=\"morsea.uniparthenope.it/?q=node/37\"><img  style=\"border:none;\" width=\"250\" src=\"/sites/all/themes/multipurpose/images/Metadata.png\"/></a></div>\r\n\r\n<div style=\"border: none; margin-left:40px;\"><a href=\"http://morsea.uniparthenope.it/chart/page\"><img style=\"border:none;\" width=\"250\" src=\"/sites/all/themes/multipurpose/images/TimeSeries.png\"/></a>\r\n</div>\r\n</div>\r\n<br>\r\n<p style=\"align:justify;\">Data and samples are currently distributed according to Italian PNRA policies; for information contact the scientific coordinators (giancarlo.spezie@uniparthenope.it or giorgio.budillon@uniparthenope.it)</p>\r\n\";s:5:\"#rows\";s:2:\"20\";s:11:\"#attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:9:\"text-full\";}}s:7:\"#format\";s:9:\"full_html\";s:10:\"#base_type\";s:8:\"textarea\";s:7:\"summary\";a:10:{s:5:\"#type\";s:8:\"textarea\";s:14:\"#default_value\";s:0:\"\";s:6:\"#title\";s:7:\"Summary\";s:5:\"#rows\";i:5;s:12:\"#description\";s:61:\"Leave blank to use trimmed value of full text as the summary.\";s:9:\"#attached\";a:1:{s:2:\"js\";a:1:{i:0;s:34:\"modules/field/modules/text/text.js\";}}s:11:\"#attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:12:\"text-summary\";}}s:7:\"#prefix\";s:34:\"<div class=\"text-summary-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:7:\"#weight\";i:-10;}}s:6:\"#theme\";s:25:\"field_multiple_value_form\";s:11:\"#field_name\";s:4:\"body\";s:12:\"#cardinality\";s:1:\"1\";s:6:\"#title\";s:4:\"Body\";s:9:\"#required\";i:0;s:12:\"#description\";s:0:\"\";s:7:\"#prefix\";s:32:\"<div id=\"body-add-more-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:10:\"#max_delta\";i:0;s:12:\"#after_build\";a:1:{i:0;s:30:\"field_form_element_after_build\";}s:9:\"#language\";s:3:\"und\";s:14:\"#field_parents\";a:0:{}}s:7:\"#access\";b:1;}s:11:\"title_field\";a:7:{s:5:\"#type\";s:9:\"container\";s:11:\"#attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:15:\"form-item-title\";}}s:7:\"#weight\";s:1:\"0\";s:5:\"#tree\";b:1;s:9:\"#language\";s:3:\"und\";s:3:\"und\";a:13:{i:0;a:13:{s:12:\"#entity_type\";s:4:\"node\";s:7:\"#entity\";r:46;s:7:\"#bundle\";s:4:\"page\";s:11:\"#field_name\";s:11:\"title_field\";s:9:\"#language\";s:3:\"und\";s:14:\"#field_parents\";a:0:{}s:8:\"#columns\";a:2:{i:0;s:5:\"value\";i:1;s:6:\"format\";}s:6:\"#title\";s:5:\"Title\";s:12:\"#description\";s:0:\"\";s:9:\"#required\";b:1;s:6:\"#delta\";i:0;s:7:\"#weight\";i:0;s:5:\"value\";a:17:{s:12:\"#entity_type\";s:4:\"node\";s:7:\"#entity\";r:46;s:7:\"#bundle\";s:4:\"page\";s:11:\"#field_name\";s:11:\"title_field\";s:9:\"#language\";s:3:\"und\";s:14:\"#field_parents\";a:0:{}s:8:\"#columns\";a:2:{i:0;s:5:\"value\";i:1;s:6:\"format\";}s:6:\"#title\";s:5:\"Title\";s:12:\"#description\";s:0:\"\";s:9:\"#required\";b:1;s:6:\"#delta\";i:0;s:7:\"#weight\";i:0;s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:11:\"Data access\";s:5:\"#size\";s:2:\"60\";s:10:\"#maxlength\";i:255;s:11:\"#attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:9:\"text-full\";}}}}s:6:\"#theme\";s:25:\"field_multiple_value_form\";s:11:\"#field_name\";s:11:\"title_field\";s:12:\"#cardinality\";s:1:\"1\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";i:1;s:12:\"#description\";s:0:\"\";s:7:\"#prefix\";s:39:\"<div id=\"title-field-add-more-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:10:\"#max_delta\";i:0;s:12:\"#after_build\";a:1:{i:0;s:30:\"field_form_element_after_build\";}s:9:\"#language\";s:3:\"und\";s:14:\"#field_parents\";a:0:{}}s:7:\"#access\";b:1;}s:11:\"#pre_render\";a:1:{i:0;s:30:\"_field_extra_fields_pre_render\";}s:12:\"#entity_type\";s:4:\"node\";s:7:\"#bundle\";s:4:\"page\";s:8:\"#form_id\";s:14:\"page_node_form\";s:5:\"#type\";s:4:\"form\";s:9:\"#build_id\";s:48:\"form-5ClLHAD9WdRl3niuiudFYAny5H-bkrDkf1bb4hr4VgI\";s:13:\"form_build_id\";a:5:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:48:\"form-5ClLHAD9WdRl3niuiudFYAny5H-bkrDkf1bb4hr4VgI\";s:3:\"#id\";s:48:\"form-5ClLHAD9WdRl3niuiudFYAny5H-bkrDkf1bb4hr4VgI\";s:5:\"#name\";s:13:\"form_build_id\";s:8:\"#parents\";a:1:{i:0;s:13:\"form_build_id\";}}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:4:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:43:\"duQY3fft3JRXCQrwzBPRjUcrKmFHhy5bA_uOTRM8gA0\";s:8:\"#parents\";a:1:{i:0;s:10:\"form_token\";}}s:7:\"form_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";s:8:\"#parents\";a:1:{i:0;s:7:\"form_id\";}}s:3:\"#id\";s:14:\"page-node-form\";s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:34:\"/?q=node%2F4%2Fedit&render=overlay\";s:15:\"#theme_wrappers\";a:1:{i:0;s:4:\"form\";}s:5:\"#tree\";b:0;s:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:16:\"comment_settings\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:7:\"#access\";b:1;s:6:\"#title\";s:16:\"Comment settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:6:\"#group\";s:19:\"additional_settings\";s:11:\"#attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:26:\"comment-node-settings-form\";}}s:9:\"#attached\";a:1:{s:2:\"js\";a:1:{i:0;s:36:\"modules/comment/comment-node-form.js\";}}s:7:\"#weight\";i:30;s:7:\"comment\";a:9:{s:5:\"#type\";s:6:\"radios\";s:6:\"#title\";s:8:\"Comments\";s:14:\"#title_display\";s:9:\"invisible\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"1\";s:8:\"#options\";a:3:{i:2;s:4:\"Open\";i:1;s:6:\"Closed\";i:0;s:6:\"Hidden\";}i:2;a:1:{s:12:\"#description\";s:60:\"Users with the \"Post comments\" permission can post comments.\";}i:1;a:1:{s:12:\"#description\";s:27:\"Users cannot post comments.\";}i:0;a:2:{s:12:\"#description\";s:30:\"Comments are hidden from view.\";s:7:\"#access\";b:0;}}}s:12:\"#after_build\";a:1:{i:0;s:31:\"_i18n_node_form_node_form_alter\";}s:9:\"locations\";a:6:{s:7:\"#prefix\";s:30:\"<div class=\"location-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:5:\"#tree\";b:1;s:7:\"#weight\";s:1:\"0\";i:0;a:9:{s:5:\"#type\";s:16:\"location_element\";s:18:\"#has_garbage_value\";b:1;s:6:\"#value\";s:0:\"\";s:6:\"#title\";s:8:\"Location\";s:14:\"#default_value\";N;s:18:\"#location_settings\";a:4:{s:8:\"multiple\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:1:\"1\";s:3:\"add\";s:1:\"1\";}s:4:\"form\";a:4:{s:6:\"weight\";s:1:\"0\";s:11:\"collapsible\";i:1;s:9:\"collapsed\";i:1;s:6:\"fields\";a:8:{s:4:\"name\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"2\";}s:6:\"street\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"4\";}s:10:\"additional\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"6\";}s:4:\"city\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"8\";}s:8:\"province\";a:4:{s:7:\"collect\";s:1:\"0\";s:6:\"widget\";s:12:\"autocomplete\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:2:\"10\";}s:11:\"postal_code\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:2:\"12\";}s:7:\"country\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:2:\"aq\";s:6:\"weight\";s:2:\"14\";}s:7:\"locpick\";a:2:{s:7:\"collect\";s:1:\"1\";s:6:\"weight\";s:2:\"20\";}}}s:7:\"display\";a:4:{s:6:\"weight\";s:1:\"0\";s:4:\"hide\";a:12:{s:4:\"name\";i:0;s:6:\"street\";i:0;s:10:\"additional\";i:0;s:4:\"city\";i:0;s:8:\"province\";i:0;s:11:\"postal_code\";i:0;s:7:\"country\";i:0;s:7:\"locpick\";i:0;s:13:\"province_name\";i:0;s:12:\"country_name\";i:0;s:8:\"map_link\";i:0;s:6:\"coords\";i:0;}s:6:\"teaser\";i:1;s:4:\"full\";i:1;}s:3:\"rss\";a:1:{s:4:\"mode\";s:6:\"simple\";}}s:9:\"#required\";b:0;s:12:\"#collapsible\";i:1;s:10:\"#collapsed\";i:1;}s:6:\"#group\";s:19:\"additional_settings\";}s:4:\"menu\";a:12:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:13:\"Menu settings\";s:7:\"#access\";b:1;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:0;s:6:\"#group\";s:19:\"additional_settings\";s:9:\"#attached\";a:1:{s:2:\"js\";a:1:{i:0;s:20:\"modules/menu/menu.js\";}}s:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:14:\"menu-link-form\";}}s:7:\"enabled\";a:3:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Provide a menu link\";s:14:\"#default_value\";i:1;}s:4:\"link\";a:16:{s:5:\"#type\";s:9:\"container\";s:8:\"#parents\";a:1:{i:0;s:4:\"menu\";}s:7:\"#states\";a:1:{s:9:\"invisible\";a:1:{s:27:\"input[name=\"menu[enabled]\"]\";a:1:{s:7:\"checked\";b:0;}}}s:4:\"mlid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"384\";}s:6:\"module\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"menu\";}s:6:\"hidden\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"0\";}s:12:\"has_children\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"0\";}s:10:\"customized\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";i:1;}s:7:\"options\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";a:2:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:0:{}}}s:8:\"expanded\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"0\";}s:18:\"parent_depth_limit\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";i:8;}s:10:\"link_title\";a:4:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:10:\"#maxlength\";i:255;s:14:\"#default_value\";s:11:\"Data access\";}s:11:\"description\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Description\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:1;s:12:\"#description\";s:39:\"Shown when hovering over the menu link.\";}s:6:\"parent\";a:5:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:11:\"main-menu:0\";s:8:\"#options\";a:15:{s:11:\"main-menu:0\";s:11:\"<Main menu>\";s:13:\"main-menu:218\";s:7:\"-- Home\";s:13:\"main-menu:390\";s:21:\"-- Gallery (disabled)\";s:13:\"main-menu:392\";s:29:\"---- Latest albums (disabled)\";s:13:\"main-menu:393\";s:29:\"---- Latest images (disabled)\";s:13:\"main-menu:398\";s:25:\"---- My albums (disabled)\";s:13:\"main-menu:399\";s:25:\"---- My images (disabled)\";s:13:\"main-menu:394\";s:26:\"---- Share code (disabled)\";s:13:\"main-menu:391\";s:28:\"---- Image upload (disabled)\";s:13:\"main-menu:429\";s:11:\"-- Moorings\";s:13:\"main-menu:610\";s:23:\"-- Ancillary activities\";s:13:\"main-menu:532\";s:7:\"-- News\";s:13:\"main-menu:382\";s:11:\"-- Contacts\";s:13:\"main-menu:514\";s:11:\"-- Pictures\";s:14:\"main-menu:1039\";s:8:\"-- Prova\";}s:11:\"#attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:18:\"menu-parent-select\";}}}s:6:\"weight\";a:5:{s:5:\"#type\";s:6:\"weight\";s:6:\"#title\";s:6:\"Weight\";s:6:\"#delta\";i:50;s:14:\"#default_value\";s:3:\"-48\";s:12:\"#description\";s:79:\"Menu links with smaller weights are displayed before links with larger weights.\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"und\";}}}s:4:\"path\";a:15:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:6:\"#group\";s:19:\"additional_settings\";s:11:\"#attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:9:\"path-form\";}}s:9:\"#attached\";a:1:{s:2:\"js\";a:1:{i:0;s:20:\"modules/path/path.js\";}}s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:5:\"#tree\";b:1;s:17:\"#element_validate\";a:1:{i:0;s:26:\"path_form_element_validate\";}s:5:\"alias\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:9:\"URL alias\";s:14:\"#default_value\";s:0:\"\";s:10:\"#maxlength\";i:255;s:12:\"#description\";s:210:\"Optionally specify an alternative URL by which this content can be accessed. For example, type \"about\" when writing an about page. Use a relative path and don\'t add a trailing slash or the URL alias won\'t work.\";}s:3:\"pid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";N;}s:6:\"source\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:6:\"node/4\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"und\";}}s:12:\"#cache_token\";s:43:\"0oJZi0Yi_qPuEDbY9VpvIR3urHX8H3BWwwROSsIHvnQ\";}',1652190172,1652168572,1),('form_form-fNvYgCNd1d-MD0fl2BVTIt_b7OyYxvRwjp8I5tgI8Qg','a:45:{s:46:\"entity_translation_entity_form_language_update\";a:2:{s:17:\"#element_validate\";a:1:{i:0;s:46:\"entity_translation_entity_form_language_update\";}s:12:\"#entity_type\";s:4:\"node\";}s:15:\"#node_edit_form\";b:1;s:11:\"#attributes\";a:1:{s:5:\"class\";a:2:{i:0;s:9:\"node-form\";i:1;s:14:\"node-page-form\";}}s:3:\"nid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"129\";}s:3:\"vid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:3:\"129\";}s:3:\"uid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:1:\"1\";}s:7:\"created\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:10:\"1533214901\";}s:4:\"type\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"page\";}s:8:\"language\";a:4:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:8:\"Language\";s:14:\"#default_value\";s:2:\"en\";s:8:\"#options\";a:3:{s:3:\"und\";s:16:\"Language neutral\";s:2:\"en\";s:7:\"English\";s:2:\"it\";s:7:\"Italian\";}}s:7:\"changed\";a:2:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:10:\"1533223974\";}s:5:\"title\";a:8:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";b:1;s:14:\"#default_value\";s:20:\"2016/17 - PNRA XXXII\";s:10:\"#maxlength\";i:255;s:7:\"#weight\";i:-5;s:7:\"#access\";b:0;s:18:\"#field_replacement\";b:1;}s:5:\"#node\";O:8:\"stdClass\":36:{s:3:\"vid\";s:3:\"129\";s:3:\"uid\";s:1:\"1\";s:5:\"title\";s:20:\"2016/17 - PNRA XXXII\";s:3:\"log\";N;s:6:\"status\";s:1:\"1\";s:7:\"comment\";s:1:\"1\";s:7:\"promote\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:3:\"nid\";s:3:\"129\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:2:\"en\";s:7:\"created\";s:10:\"1533214901\";s:7:\"changed\";s:10:\"1533223974\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:18:\"revision_timestamp\";s:10:\"1533223974\";s:12:\"revision_uid\";s:1:\"1\";s:4:\"body\";a:1:{s:2:\"en\";a:1:{i:0;a:5:{s:5:\"value\";s:15899:\"<h1 align= \"center\"><strong>Rapporto sulla Campagna Antartica (estratto)</strong></h1>\r\n\r\n<h2 align=\"center\"><strong>Estate Australe 2016-2017</strong></h2>\r\n\r\n<h3 align=\"center\"><strong>Trentduesima Spedizione (PNRA XXXII)</strong></h3>\r\n\r\n<p align=\"center\"><strong>Progetto 2009/B.09: Osservatorio Marino Nel Mare di Ross ( MORSea)</strong><br />\r\n<em>A. De Alteris, P. Falco, F. Grilli, G. Zambardino</em></p>\r\n\r\n<p align=\"justify\">Il progetto MORSea (http://morsea.uniparthenope.it) prevede la gestione e la manutenzione della rete di osservazioni marine attualmente esistente nel Mare di Ross. L’osservatorio è costituito da 4 catene correntometriche (mooring) contrassegnate dalle lettere “B”, “D”, “G” e “L”. Ogni punto di misura ha degli obiettivi specifici legati alla circolazione delle masse d’acqua che si generano sulla piattaforma e a quelle entranti attraverso il limite della scarpata continentale. In generale però l’obiettivo primario dell’osservatorio è quello di studiare la variabilità interannuale delle caratteristiche fisiche e geochimiche delle acque di shelf nel settore occidentale del Mare di Ross.\r\nA queste attività, negli ultimi anni si sono aggiunte delle misure di “ship of opportunity” effettuate quindi non impiegando tempo di navigazione della M/N Italica. Anche quest’anno infatti sono state eseguite misure di temperatura e salinità superficiale del mare (SST e SSS rispettivamente), lanci di XBT per la misura della struttura subsuperficiale dell’Oceano Meridionale; lanci di drifter e float (nell’ambito della collaborazione con il progetto ARGOItaly). In particolare le misure XBT hanno lo scopo essenziale di proseguire la serie storica di osservazioni, condotte durante la traversata dalla Nuova Zelanda fino al mare di Ross, realizzate al fine di caratterizzare la struttura della colonna d’acqua, fino alla profondità di 700 m, della Corrente Circumpolare Antartica (ACC), misure acquisite sin dal 1994.\r\nRelativamente all’attività dei mooring è da sottolineare che quest’anno è stato fatto un primo tentativo di svecchiamento della strumentazione utilizzata per le misure. In particolare, per quanto riguarda il mooring D, sono stati acquistati due nuovi sganciatori IXBLUE OCEANO 2500 che hanno sostituito i due precedenti ormai in cattive condizioni, è stato sostituito un vecchio correntometro RCM 7 con un nuovo correntometro Aanderaa Seaguard e aggiunta una sonda SBE 37 SMP al posto di un vecchio misuratore di temperatura SBE 39.\r\nInoltre, sul mooring G è stata aggiunta una sonda SBE 37 SMP ODO sul fondo. Ad ogni modo la percentuale di strumenti che, in diversi casi, risalgono a oltre 20 anni fa, è ancora decisamente prevalente per cui è auspicabile, quanto necessario, che questo primo tentativo di rinnovamento della strumentazione continui in futuro.\r\nIl materiale di consumo e di ricambio per le trappole di sedimento è stato fornito: dal dott. M. Capello (Univ. di Genova) per i mooring “D” e “L” (2 trappole), dal dott. L. Langone (CNR – ISMAR) per il mooring “B” (1 trappola). Sfortunatamente, il motore della trappola del mooring L ha mostrato malfunzionamenti non risolvibili a bordo per cui, non disponendo di un motore sostitutivo, è stato impossibile rimetterla in mare.\r\nLe attività di recupero e rimessa a mare sono state effettuate in simbiosi con il gruppo di Oceanografia Fisica (Dr. P. Castango e M. De Stefano) e con il contributo del Dr. L. Langone.\r\nDa prassi ormai consolidata, sono state effettuate calate di CTD/LADCP - per la verifica e taratura dei sensori posizionati sulle catene correntometriche - prima del loro recupero e dopo il loro posizionamento. Proprio durante la stazione di calibrazione avvenuta prima del recupero del mooring G, a causa di un violento urto del frame contenente la sensoristica per le misure, alcuni sensori, compresa la sonda principale SBE 9 plus, hanno riportato danni che hanno impedito il loro utilizzo nel prosieguo della campagna. Oltre alla sonda, anche il sensore di O2 e due sensori di temperatura e uno di conducibiltà della sonda MicroRider 1000 (anch’essa montata sul frame) sono risultati non funzionanti ed è stata necessaria la sostituzione con i sensori di rispetto.\r\nNel seguito vengono descritte le attività svolte su ogni catena correntometrica ed in tabella TM1 viene riportata la scheda riassuntiva dei periodi di funzionamento di ogni strumento. Tutti le date e gli orari sono riportati in UTC.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “D”</strong><br />\r\nIl mooring “D” è stato recuperato l’8 gennaio 2017 e rimesso in mare il giorno 11 febbraio 2017. Il comportamento degli sganciatori è risultato anomalo. Gli strumenti funzionano, sono cioè in grado di operare lo sgancio, ma non hanno dato alcuna informazione riguardo il loro stato e non rispondono ai codici di enable e disable. Tale comportamento era già stato evidenziato durante il precedente recupero. Considerando l’età degli strumenti e l’importanza del mooring si è deciso di acquistare due nuovi sganciatori e di sostituire quindi i vecchi.\r\nL’ordinaria manutenzione della strumentazione presente non ha mostrato particolari criticità se non nel caso della sonda di SBE37 SMP ODO acquistata pochi mesi prima della XXXI campagna e aggiunta al mooring. La sonda ha interrotto l’acquisizione dopo circa 5 mesi dal posizionamento per cause non bene chiarite nemmeno dalla casa costruttrice contattata tramite il rappresentante italiano. Dopo vari test di funzionamento svolti a bordo e d’accordo con la casa costruttrice, si è deciso di utilizzarla nuovamente.\r\nIl mooring “D” è stato rimesso in posizione nella configurazione illustrata in figura M2. Rispetto alla precedente configurazione, è stato sostituito un correntometro Aanderaa RCM 7 alla quota di circa 880 m con un Aanderaa SeaGuard e al posto di una sonda SBE 39 è stato usato un SBE 37 SMP, quindi con misura anche di pressione e salinità alla quota di circa 750 m. Infine è stata sostituita la coppia di sganciatori per i quali è necessaria una manutenzione prima di un eventuale riutilizzo, e al loro posto è stata montata una coppia di sganciatori nuovi della IXBLUE.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “L”</strong><br />\r\nIl mooring “L” è stato recuperato il 10 gennaio 2017 e rimesso in mare il 22 gennaio successivo.\r\nDurante la manutenzione della trappola di sedimento si sono riscontrate anomalie di funzionamento del motore che regola lo scorrimento delle bottigliette che raccolgono il sedimento. Non è stato possibile intervenire per riparare il guasto e tanto meno sostituire il motore in quando non disponibile uno di ricambio. Si è pertanto dovuto optare per la rimozione momentanea dal mooring della trappola. I problemi di recupero manifestati durante le spedizioni del 2013/14 e 2015/16, sono stati superati dall’aggiunta (eseguita la scorsa campagna oceanografica) di ulteriori boe di spinta che hanno consentito un risalita corretta di tutta la struttura. La configurazione del mooring riposizionato è riportata in figura M4.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “B”</strong><br />\r\nIl mooring “B” è stato recuperato il 17 gennaio e rimesso in mare il 30 gennaio 2017.\r\nIl recupero di questo mooring, che nelle ultime due spedizioni era risultato particolarmente complicato, quest’anno è avvenuto in modo regolare. Anche in questo caso l’aggiunta di ulteriori spinte decise durante la campagna della XXXI spedizione, è risultata determinante al fine di un corretto recupero. Rimangono perplessità riguardo alle cause che non hanno consentito a tutta la struttura di venire a galla spontaneamente nelle precedenti occasioni di recupero. Per verificare l’efficacia delle spinte sono state eseguite prove di galleggiabilità di tutti i gruppi boa presenti sul mooring, applicando un peso pari alla spinta nominale della boa e filando in acqua tutto per verificarne il comportamento. In tutti i casi le boe hanno sostenuto il peso dimostrando di essere ancora efficienti.\r\nAd ogni modo, onde evitare problemi in futuro, si è deciso di applicare un’ulteriore boa di spinta da 25 kg (tipo Vitrovex) nel settore immediatamente superiore alla trappola di sedimento presente alla quota di 460 metri. Dopo la manutenzione del caso, la catena correntometrica è stata riposizionata nella configurazione riportata in figura M1, sostanzialmente analoga al precedente periodo, ma aumentando la spinta di galleggiamento.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “G”</strong><br />\r\nIl mooring “G” è stato recuperato il 06 febbraio e rimesso in mare 09/02/2016.\r\nL’operazione di recupero, anche se condotta con mare 4/5, è stata eseguita in modo rapido e corretto (inizio ascolto ore 00:47 del 6/02, sganciatore a bordo ore 01:53 del 6/02). La manutenzione della strumentazione (come per i mooring precedenti) non ha messo in evidenza alcuna criticità sia dal punto di vista dell’integrità della strumentazione che del processo di acquisizione dati.\r\nAl fine di ottenere informazioni più mirate riguardo il transito della HSSW sul fondo nella zona di G, è stata aggiunta al mooring, nel suo settore più profondo, una sonda SBE 37 SMP ODO. Da riscontri fatti in rapporti di attività precedenti, si è rilevato che già in passato era presente una sonda simile e quindi si è pensato di ripristinare questa importante quota di misura dei parametri di T ed S aggiungendo però il parametro O2.\r\nLa configurazione del mooring riposizionato è riportata in figura M3.\r\nIn tabella TM1 vengono elencate le informazioni principali sul funzionamento della strumentazione alloggiata sui mooring nel periodo 2016-17, tenendo conto che:\r\n- le profondità [m] si riferiscono agli schemi della campagna 2015-2016;\r\n- gli intervalli riportati si riferiscono al periodo effettivo di misura valida in acqua e alla profondità indicata nella prima colonna.</p>\r\n\r\n<p align=\"justify\"><strong>Misure in continuo di temperatura e salinità superficiale</strong><br />\r\nDurante tutta la campagna si sono misurate la temperatura e la salinità superficiale del mare (SST – Sea Surface Temperature; SSS – Sea Surface Salinity) utilizzando la presa d’acqua a circa 4 metri di profondità. L’attività è stata condotta con il gruppo di Oceanografia Fisica.\r\nL’attività di misura in continuo è iniziata il 30 dicembre 2016, appena lasciato il fiordo di Lyttleton, ed è continuata sino al ritorno in Nuova Zelanda. Per queste misure sono stati impiegati tre sensori (due di temperatura e uno di conducibilità) gestiti dal sistema SBE-21 e un GPS Garmin; l’intervallo di acquisizione è stato di 30”. I dati hanno subìto un primo processamento a bordo per l’eliminazione dei picchi dovuti sostanzialmente al rollio della nave e alla presenza di ghiacci.\r\nDi particolare interesse sono i dati acquisiti durante le due traversate oceaniche tra Nuova Zelanda e Mare di Ross (andata e ritorno, non mostrati) in quanto permetteranno di determinare le posizioni dei fronti termoalini in superficie che in questa zona separano le zone a dinamica diversa della ACC. Questi dati risultano molto utili se integrati con i dati XBT e inoltre rappresentano la verità mare per validazioni di modelli e misure satellitari.\r\nAnche le misure di SST e SSS, come quelle con gli XBT, rappresentano quelle osservazioni ricorrenti della Antarctic Circumpolar Current sollecitate e regolate dal SOOS (Southern Ocean Observing System, http://www.soos.aq/).</p>\r\n\r\n<p align=\"justify\"><strong>Misure XBT</strong><br />\r\nI lanci di sonde XBT (SIPPICAN mod.T7, prof. max 760 m) sono iniziati il 31 dicembre 2016 alla latitudine 48°S e sono terminati il 05 gennaio 2017 alla latitudine di 68°46’S; la distanza tra ogni punto di campionamento è statao, come in passato, di 15 miglia nautiche e sono state utilizzate 90 sonde lungo la rotta seguita per entrare nel Mare di Ross; solo 3 di 90 sonde hanno mostrato problemi di funzionamento dovuti quasi esclusivamente al contatto del cavo conduttore in rame con lo scafo della nave.\r\nI dati hanno subìto un primo processamento a bordo per eliminare i valori spuri, i primi metri influenzati dall’inerzia termica del sensore e gli eventuali dati affetti dalla presenza del fondo. In figura 3 è riportata la sezione in temperatura dello strato sub-superficiale fino alla profondità massima di 700 m.\r\nLe misure XBT rappresentano quelle osservazioni ricorrenti della Antarctic Circumpolar Current sollecitate e regolate dal SOOS (Southern Ocean Observing System). Considerando che tali indagini sono iniziate nel 1994, portate avanti nell’ambito di diversi progetti PNRA, si può ritenere assodata la valenza a scala climatologica dato il lungo periodo che coprono.\r\nDurante il viaggio di ritorno, avendo disponibili ancora 6 sonde XBT, si è pensato di eseguire lanci a 15’ di latitudine di distanza per cercare di osservare il limite meridionale di intrusione di MCDW lungo la costa occidentale del mare di Ross. La latitudine di partenza dei lanci è stata 73°30’S e si è giunti fino a 72°15’S. I lanci sono cominciati il 14/02/2017 alle ore 23.30 circa e terminati il giorno 15/02/2017 alle ore 5.00 circa.\r\n<p ALIGN=\"center\"><a href=\" \"><img alt=\"\" src=\"/sites/all/themes/multipurpose/images/fig_XXXII.png\" width=\"600px\" /></a></p>\r\n<p align=\"justify\"><strong>Figura 1. Sezione verticale della distribuzione della temperatura misurata dal 31/12/2016 al 05/01/2017 (raw data).</strong></p>\r\n\r\n<p align=\"justify\"><strong>Floats</strong><br />\r\nOltre agli XBT, durante il trasferimento verso il mare di Ross, sono stati rilasciati in mare 10 float e 10 drifter. Queste misure rientrano nella collaborazione con il progetto ARGOItaly, che ha fornito gli strumenti (http://nettuno.ogs.trieste.it/jungo/argoitaly/floats.html), attività volta a fornire un contributo italiano all’interno del più ampio programma di osservazione, a scala globale, degli oceani denominato ARGO.\r\nI float sono strumenti autonomi lagrangiani ovvero, una volta rilasciati in mare, sono trasportati dalle correnti marine a una profondità predeterminata. A intervalli regolari la sonda sale in superficie misurando le proprietà termoaline che poi vengono trasmesse via satellite al centro di raccolta dati.\r\nIl ciclo tipico dei float utilizzato è quello standard stabilito nel programma ARGO, ovvero la cosiddetta “parking depth” (ovvero la profondità alla quale il float arresta la discesa ed è trasportato passivamente dalle correnti) è a 1000 metri; al termine di un intervallo di 10 giorni il float è programmato per immergersi sino a 2000 metri e poi di risalire in superficie (dove rimane per 6 ore) per eseguire il profilo di temperatura e salinità e per la trasmissione dei dati acquisiti.\r\nI float utilizzati nel progetto, in particolare, hanno un sistema di comunicazione satellitare bi-direzionale (Iridium) per poter modificare a distanza i parametri di missione. Quest’anno tra i float disponibili sono strati resi disponibili tre con inserito l’algoritmo per il rilevamento del ghiaccio in superficie. Questa tipologia di float potrebbe consentire un monitoraggio delle fasce polari dove la formazione di ghiaccio marino durante l’inverno impedisce l’affioramento dei float in superficie e spesso causa anche il loro danneggiamento.\r\nI drifter sono sempre strumenti lagrangiani, ma rimangono in superficie trasmettendo in tempo reale le posizioni e il valore di temperatura superficiale. Anche quest’anno sono stati rilasciati drifter del tipo Surface Velocity Programme (SVP) particolarmente adatti a misure di corrente superficiale in oceano aperto. I lanci dei drifter e dei float sono avvenuti simultaneamente e sono cominciati il giorno 02/01/2017 a circa 55°S, terminati il giorno successivo a 63°S.\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:16154:\"<h1 align=\"center\"><strong>Rapporto sulla Campagna Antartica (estratto)</strong></h1>\n<h2 align=\"center\"><strong>Estate Australe 2016-2017</strong></h2>\n<h3 align=\"center\"><strong>Trentduesima Spedizione (PNRA XXXII)</strong></h3>\n<p align=\"center\"><strong>Progetto 2009/B.09: Osservatorio Marino Nel Mare di Ross ( MORSea)</strong><br /><em>A. De Alteris, P. Falco, F. Grilli, G. Zambardino</em></p>\n<p align=\"justify\">Il progetto MORSea (<a href=\"http://morsea.uniparthenope.it\">http://morsea.uniparthenope.it</a>) prevede la gestione e la manutenzione della rete di osservazioni marine attualmente esistente nel Mare di Ross. L’osservatorio è costituito da 4 catene correntometriche (mooring) contrassegnate dalle lettere “B”, “D”, “G” e “L”. Ogni punto di misura ha degli obiettivi specifici legati alla circolazione delle masse d’acqua che si generano sulla piattaforma e a quelle entranti attraverso il limite della scarpata continentale. In generale però l’obiettivo primario dell’osservatorio è quello di studiare la variabilità interannuale delle caratteristiche fisiche e geochimiche delle acque di shelf nel settore occidentale del Mare di Ross.<br />\nA queste attività, negli ultimi anni si sono aggiunte delle misure di “ship of opportunity” effettuate quindi non impiegando tempo di navigazione della M/N Italica. Anche quest’anno infatti sono state eseguite misure di temperatura e salinità superficiale del mare (SST e SSS rispettivamente), lanci di XBT per la misura della struttura subsuperficiale dell’Oceano Meridionale; lanci di drifter e float (nell’ambito della collaborazione con il progetto ARGOItaly). In particolare le misure XBT hanno lo scopo essenziale di proseguire la serie storica di osservazioni, condotte durante la traversata dalla Nuova Zelanda fino al mare di Ross, realizzate al fine di caratterizzare la struttura della colonna d’acqua, fino alla profondità di 700 m, della Corrente Circumpolare Antartica (ACC), misure acquisite sin dal 1994.<br />\nRelativamente all’attività dei mooring è da sottolineare che quest’anno è stato fatto un primo tentativo di svecchiamento della strumentazione utilizzata per le misure. In particolare, per quanto riguarda il mooring D, sono stati acquistati due nuovi sganciatori IXBLUE OCEANO 2500 che hanno sostituito i due precedenti ormai in cattive condizioni, è stato sostituito un vecchio correntometro RCM 7 con un nuovo correntometro Aanderaa Seaguard e aggiunta una sonda SBE 37 SMP al posto di un vecchio misuratore di temperatura SBE 39.<br />\nInoltre, sul mooring G è stata aggiunta una sonda SBE 37 SMP ODO sul fondo. Ad ogni modo la percentuale di strumenti che, in diversi casi, risalgono a oltre 20 anni fa, è ancora decisamente prevalente per cui è auspicabile, quanto necessario, che questo primo tentativo di rinnovamento della strumentazione continui in futuro.<br />\nIl materiale di consumo e di ricambio per le trappole di sedimento è stato fornito: dal dott. M. Capello (Univ. di Genova) per i mooring “D” e “L” (2 trappole), dal dott. L. Langone (CNR – ISMAR) per il mooring “B” (1 trappola). Sfortunatamente, il motore della trappola del mooring L ha mostrato malfunzionamenti non risolvibili a bordo per cui, non disponendo di un motore sostitutivo, è stato impossibile rimetterla in mare.<br />\nLe attività di recupero e rimessa a mare sono state effettuate in simbiosi con il gruppo di Oceanografia Fisica (Dr. P. Castango e M. De Stefano) e con il contributo del Dr. L. Langone.<br />\nDa prassi ormai consolidata, sono state effettuate calate di CTD/LADCP - per la verifica e taratura dei sensori posizionati sulle catene correntometriche - prima del loro recupero e dopo il loro posizionamento. Proprio durante la stazione di calibrazione avvenuta prima del recupero del mooring G, a causa di un violento urto del frame contenente la sensoristica per le misure, alcuni sensori, compresa la sonda principale SBE 9 plus, hanno riportato danni che hanno impedito il loro utilizzo nel prosieguo della campagna. Oltre alla sonda, anche il sensore di O2 e due sensori di temperatura e uno di conducibiltà della sonda MicroRider 1000 (anch’essa montata sul frame) sono risultati non funzionanti ed è stata necessaria la sostituzione con i sensori di rispetto.<br />\nNel seguito vengono descritte le attività svolte su ogni catena correntometrica ed in tabella TM1 viene riportata la scheda riassuntiva dei periodi di funzionamento di ogni strumento. Tutti le date e gli orari sono riportati in UTC.</p>\n<p align=\"justify\"><strong>Mooring “D”</strong><br />\nIl mooring “D” è stato recuperato l’8 gennaio 2017 e rimesso in mare il giorno 11 febbraio 2017. Il comportamento degli sganciatori è risultato anomalo. Gli strumenti funzionano, sono cioè in grado di operare lo sgancio, ma non hanno dato alcuna informazione riguardo il loro stato e non rispondono ai codici di enable e disable. Tale comportamento era già stato evidenziato durante il precedente recupero. Considerando l’età degli strumenti e l’importanza del mooring si è deciso di acquistare due nuovi sganciatori e di sostituire quindi i vecchi.<br />\nL’ordinaria manutenzione della strumentazione presente non ha mostrato particolari criticità se non nel caso della sonda di SBE37 SMP ODO acquistata pochi mesi prima della XXXI campagna e aggiunta al mooring. La sonda ha interrotto l’acquisizione dopo circa 5 mesi dal posizionamento per cause non bene chiarite nemmeno dalla casa costruttrice contattata tramite il rappresentante italiano. Dopo vari test di funzionamento svolti a bordo e d’accordo con la casa costruttrice, si è deciso di utilizzarla nuovamente.<br />\nIl mooring “D” è stato rimesso in posizione nella configurazione illustrata in figura M2. Rispetto alla precedente configurazione, è stato sostituito un correntometro Aanderaa RCM 7 alla quota di circa 880 m con un Aanderaa SeaGuard e al posto di una sonda SBE 39 è stato usato un SBE 37 SMP, quindi con misura anche di pressione e salinità alla quota di circa 750 m. Infine è stata sostituita la coppia di sganciatori per i quali è necessaria una manutenzione prima di un eventuale riutilizzo, e al loro posto è stata montata una coppia di sganciatori nuovi della IXBLUE.</p>\n<p align=\"justify\"><strong>Mooring “L”</strong><br />\nIl mooring “L” è stato recuperato il 10 gennaio 2017 e rimesso in mare il 22 gennaio successivo.<br />\nDurante la manutenzione della trappola di sedimento si sono riscontrate anomalie di funzionamento del motore che regola lo scorrimento delle bottigliette che raccolgono il sedimento. Non è stato possibile intervenire per riparare il guasto e tanto meno sostituire il motore in quando non disponibile uno di ricambio. Si è pertanto dovuto optare per la rimozione momentanea dal mooring della trappola. I problemi di recupero manifestati durante le spedizioni del 2013/14 e 2015/16, sono stati superati dall’aggiunta (eseguita la scorsa campagna oceanografica) di ulteriori boe di spinta che hanno consentito un risalita corretta di tutta la struttura. La configurazione del mooring riposizionato è riportata in figura M4.</p>\n<p align=\"justify\"><strong>Mooring “B”</strong><br />\nIl mooring “B” è stato recuperato il 17 gennaio e rimesso in mare il 30 gennaio 2017.<br />\nIl recupero di questo mooring, che nelle ultime due spedizioni era risultato particolarmente complicato, quest’anno è avvenuto in modo regolare. Anche in questo caso l’aggiunta di ulteriori spinte decise durante la campagna della XXXI spedizione, è risultata determinante al fine di un corretto recupero. Rimangono perplessità riguardo alle cause che non hanno consentito a tutta la struttura di venire a galla spontaneamente nelle precedenti occasioni di recupero. Per verificare l’efficacia delle spinte sono state eseguite prove di galleggiabilità di tutti i gruppi boa presenti sul mooring, applicando un peso pari alla spinta nominale della boa e filando in acqua tutto per verificarne il comportamento. In tutti i casi le boe hanno sostenuto il peso dimostrando di essere ancora efficienti.<br />\nAd ogni modo, onde evitare problemi in futuro, si è deciso di applicare un’ulteriore boa di spinta da 25 kg (tipo Vitrovex) nel settore immediatamente superiore alla trappola di sedimento presente alla quota di 460 metri. Dopo la manutenzione del caso, la catena correntometrica è stata riposizionata nella configurazione riportata in figura M1, sostanzialmente analoga al precedente periodo, ma aumentando la spinta di galleggiamento.</p>\n<p align=\"justify\"><strong>Mooring “G”</strong><br />\nIl mooring “G” è stato recuperato il 06 febbraio e rimesso in mare 09/02/2016.<br />\nL’operazione di recupero, anche se condotta con mare 4/5, è stata eseguita in modo rapido e corretto (inizio ascolto ore 00:47 del 6/02, sganciatore a bordo ore 01:53 del 6/02). La manutenzione della strumentazione (come per i mooring precedenti) non ha messo in evidenza alcuna criticità sia dal punto di vista dell’integrità della strumentazione che del processo di acquisizione dati.<br />\nAl fine di ottenere informazioni più mirate riguardo il transito della HSSW sul fondo nella zona di G, è stata aggiunta al mooring, nel suo settore più profondo, una sonda SBE 37 SMP ODO. Da riscontri fatti in rapporti di attività precedenti, si è rilevato che già in passato era presente una sonda simile e quindi si è pensato di ripristinare questa importante quota di misura dei parametri di T ed S aggiungendo però il parametro O2.<br />\nLa configurazione del mooring riposizionato è riportata in figura M3.<br />\nIn tabella TM1 vengono elencate le informazioni principali sul funzionamento della strumentazione alloggiata sui mooring nel periodo 2016-17, tenendo conto che:<br />\n- le profondità [m] si riferiscono agli schemi della campagna 2015-2016;<br />\n- gli intervalli riportati si riferiscono al periodo effettivo di misura valida in acqua e alla profondità indicata nella prima colonna.</p>\n<p align=\"justify\"><strong>Misure in continuo di temperatura e salinità superficiale</strong><br />\nDurante tutta la campagna si sono misurate la temperatura e la salinità superficiale del mare (SST – Sea Surface Temperature; SSS – Sea Surface Salinity) utilizzando la presa d’acqua a circa 4 metri di profondità. L’attività è stata condotta con il gruppo di Oceanografia Fisica.<br />\nL’attività di misura in continuo è iniziata il 30 dicembre 2016, appena lasciato il fiordo di Lyttleton, ed è continuata sino al ritorno in Nuova Zelanda. Per queste misure sono stati impiegati tre sensori (due di temperatura e uno di conducibilità) gestiti dal sistema SBE-21 e un GPS Garmin; l’intervallo di acquisizione è stato di 30”. I dati hanno subìto un primo processamento a bordo per l’eliminazione dei picchi dovuti sostanzialmente al rollio della nave e alla presenza di ghiacci.<br />\nDi particolare interesse sono i dati acquisiti durante le due traversate oceaniche tra Nuova Zelanda e Mare di Ross (andata e ritorno, non mostrati) in quanto permetteranno di determinare le posizioni dei fronti termoalini in superficie che in questa zona separano le zone a dinamica diversa della ACC. Questi dati risultano molto utili se integrati con i dati XBT e inoltre rappresentano la verità mare per validazioni di modelli e misure satellitari.<br />\nAnche le misure di SST e SSS, come quelle con gli XBT, rappresentano quelle osservazioni ricorrenti della Antarctic Circumpolar Current sollecitate e regolate dal SOOS (Southern Ocean Observing System, <a href=\"http://www.soos.aq/\">http://www.soos.aq/</a>).</p>\n<p align=\"justify\"><strong>Misure XBT</strong><br />\nI lanci di sonde XBT (SIPPICAN mod.T7, prof. max 760 m) sono iniziati il 31 dicembre 2016 alla latitudine 48°S e sono terminati il 05 gennaio 2017 alla latitudine di 68°46’S; la distanza tra ogni punto di campionamento è statao, come in passato, di 15 miglia nautiche e sono state utilizzate 90 sonde lungo la rotta seguita per entrare nel Mare di Ross; solo 3 di 90 sonde hanno mostrato problemi di funzionamento dovuti quasi esclusivamente al contatto del cavo conduttore in rame con lo scafo della nave.<br />\nI dati hanno subìto un primo processamento a bordo per eliminare i valori spuri, i primi metri influenzati dall’inerzia termica del sensore e gli eventuali dati affetti dalla presenza del fondo. In figura 3 è riportata la sezione in temperatura dello strato sub-superficiale fino alla profondità massima di 700 m.<br />\nLe misure XBT rappresentano quelle osservazioni ricorrenti della Antarctic Circumpolar Current sollecitate e regolate dal SOOS (Southern Ocean Observing System). Considerando che tali indagini sono iniziate nel 1994, portate avanti nell’ambito di diversi progetti PNRA, si può ritenere assodata la valenza a scala climatologica dato il lungo periodo che coprono.<br />\nDurante il viaggio di ritorno, avendo disponibili ancora 6 sonde XBT, si è pensato di eseguire lanci a 15’ di latitudine di distanza per cercare di osservare il limite meridionale di intrusione di MCDW lungo la costa occidentale del mare di Ross. La latitudine di partenza dei lanci è stata 73°30’S e si è giunti fino a 72°15’S. I lanci sono cominciati il 14/02/2017 alle ore 23.30 circa e terminati il giorno 15/02/2017 alle ore 5.00 circa.</p>\n<p align=\"center\"><a href=\" \"><img alt=\"\" src=\"/sites/all/themes/multipurpose/images/fig_XXXII.png\" width=\"600px\" /></a></p>\n<p align=\"justify\"><strong>Figura 1. Sezione verticale della distribuzione della temperatura misurata dal 31/12/2016 al 05/01/2017 (raw data).</strong></p>\n<p align=\"justify\"><strong>Floats</strong><br />\nOltre agli XBT, durante il trasferimento verso il mare di Ross, sono stati rilasciati in mare 10 float e 10 drifter. Queste misure rientrano nella collaborazione con il progetto ARGOItaly, che ha fornito gli strumenti (<a href=\"http://nettuno.ogs.trieste.it/jungo/argoitaly/floats.html\">http://nettuno.ogs.trieste.it/jungo/argoitaly/floats.html</a>), attività volta a fornire un contributo italiano all’interno del più ampio programma di osservazione, a scala globale, degli oceani denominato ARGO.<br />\nI float sono strumenti autonomi lagrangiani ovvero, una volta rilasciati in mare, sono trasportati dalle correnti marine a una profondità predeterminata. A intervalli regolari la sonda sale in superficie misurando le proprietà termoaline che poi vengono trasmesse via satellite al centro di raccolta dati.<br />\nIl ciclo tipico dei float utilizzato è quello standard stabilito nel programma ARGO, ovvero la cosiddetta “parking depth” (ovvero la profondità alla quale il float arresta la discesa ed è trasportato passivamente dalle correnti) è a 1000 metri; al termine di un intervallo di 10 giorni il float è programmato per immergersi sino a 2000 metri e poi di risalire in superficie (dove rimane per 6 ore) per eseguire il profilo di temperatura e salinità e per la trasmissione dei dati acquisiti.<br />\nI float utilizzati nel progetto, in particolare, hanno un sistema di comunicazione satellitare bi-direzionale (Iridium) per poter modificare a distanza i parametri di missione. Quest’anno tra i float disponibili sono strati resi disponibili tre con inserito l’algoritmo per il rilevamento del ghiaccio in superficie. Questa tipologia di float potrebbe consentire un monitoraggio delle fasce polari dove la formazione di ghiaccio marino durante l’inverno impedisce l’affioramento dei float in superficie e spesso causa anche il loro danneggiamento.<br />\nI drifter sono sempre strumenti lagrangiani, ma rimangono in superficie trasmettendo in tempo reale le posizioni e il valore di temperatura superficiale. Anche quest’anno sono stati rilasciati drifter del tipo Surface Velocity Programme (SVP) particolarmente adatti a misure di corrente superficiale in oceano aperto. I lanci dei drifter e dei float sono avvenuti simultaneamente e sono cominciati il giorno 02/01/2017 a circa 55°S, terminati il giorno successivo a 63°S.</p>\n\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:2:\"en\";a:1:{i:0;a:3:{s:5:\"value\";s:20:\"2016/17 - PNRA XXXII\";s:6:\"format\";N;s:10:\"safe_value\";s:20:\"2016/17 - PNRA XXXII\";}}}s:12:\"translations\";O:8:\"stdClass\":2:{s:8:\"original\";N;s:4:\"data\";a:0:{}}s:14:\"title_original\";s:20:\"2016/17 - PNRA XXXII\";s:29:\"entity_translation_handler_id\";s:21:\"node-page-eid-129-129\";s:11:\"rdf_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\";}}s:3:\"cid\";s:1:\"0\";s:22:\"last_comment_timestamp\";s:10:\"1533214901\";s:17:\"last_comment_name\";N;s:16:\"last_comment_uid\";s:1:\"1\";s:13:\"comment_count\";s:1:\"0\";s:9:\"locations\";a:0:{}s:8:\"location\";a:0:{}s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:1:\"0\";s:4:\"data\";s:4:\"b:0;\";s:4:\"date\";s:25:\"2018-08-02 15:01:41 +0200\";s:8:\"revision\";b:0;s:4:\"menu\";a:12:{s:10:\"link_title\";s:0:\"\";s:4:\"mlid\";i:0;s:4:\"plid\";i:0;s:9:\"menu_name\";s:9:\"main-menu\";s:6:\"weight\";i:0;s:7:\"options\";a:0:{}s:6:\"module\";s:4:\"menu\";s:8:\"expanded\";i:0;s:6:\"hidden\";i:0;s:12:\"has_children\";i:0;s:10:\"customized\";i:0;s:18:\"parent_depth_limit\";i:8;}}s:19:\"additional_settings\";a:2:{s:5:\"#type\";s:13:\"vertical_tabs\";s:7:\"#weight\";i:99;}s:20:\"revision_information\";a:11:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:20:\"Revision information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:6:\"#group\";s:19:\"additional_settings\";s:11:\"#attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:30:\"node-form-revision-information\";}}s:9:\"#attached\";a:1:{s:2:\"js\";a:1:{i:0;s:20:\"modules/node/node.js\";}}s:7:\"#weight\";i:20;s:7:\"#access\";b:1;s:8:\"revision\";a:5:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Create new revision\";s:14:\"#default_value\";b:0;s:7:\"#access\";b:1;s:7:\"#states\";a:1:{s:7:\"checked\";a:1:{s:20:\"textarea[name=\"log\"]\";a:1:{s:5:\"empty\";b:0;}}}}s:3:\"log\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:20:\"Revision log message\";s:5:\"#rows\";i:4;s:14:\"#default_value\";s:0:\"\";s:12:\"#description\";s:111:\"Provide an explanation of the changes you are making. This will help other authors understand your motivations.\";}}s:6:\"author\";a:11:{s:5:\"#type\";s:8:\"fieldset\";s:7:\"#access\";b:1;s:6:\"#title\";s:21:\"Authoring information\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:6:\"#group\";s:19:\"additional_settings\";s:11:\"#attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:16:\"node-form-author\";}}s:9:\"#attached\";a:1:{s:2:\"js\";a:2:{i:0;s:20:\"modules/node/node.js\";i:1;a:2:{s:4:\"type\";s:7:\"setting\";s:4:\"data\";a:1:{s:9:\"anonymous\";s:9:\"Anonymous\";}}}}s:7:\"#weight\";i:90;s:4:\"name\";a:7:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:11:\"Authored by\";s:10:\"#maxlength\";i:60;s:18:\"#autocomplete_path\";s:17:\"user/autocomplete\";s:14:\"#default_value\";s:5:\"admin\";s:7:\"#weight\";i:-1;s:12:\"#description\";s:55:\"Leave blank for <em class=\"placeholder\">Anonymous</em>.\";}s:4:\"date\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:11:\"Authored on\";s:10:\"#maxlength\";i:25;s:12:\"#description\";s:214:\"Format: <em class=\"placeholder\">2018-08-02 15:01:41 +0200</em>. The date format is YYYY-MM-DD and <em class=\"placeholder\">+0200</em> is the time zone offset from UTC. Leave blank to use the time of form submission.\";s:14:\"#default_value\";s:25:\"2018-08-02 15:01:41 +0200\";}}s:7:\"options\";a:12:{s:5:\"#type\";s:8:\"fieldset\";s:7:\"#access\";b:1;s:6:\"#title\";s:18:\"Publishing options\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:6:\"#group\";s:19:\"additional_settings\";s:11:\"#attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:17:\"node-form-options\";}}s:9:\"#attached\";a:1:{s:2:\"js\";a:1:{i:0;s:20:\"modules/node/node.js\";}}s:7:\"#weight\";i:95;s:6:\"status\";a:3:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:9:\"Published\";s:14:\"#default_value\";s:1:\"1\";}s:7:\"promote\";a:3:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Promoted to front page\";s:14:\"#default_value\";s:1:\"0\";}s:6:\"sticky\";a:3:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:22:\"Sticky at top of lists\";s:14:\"#default_value\";s:1:\"0\";}}s:7:\"actions\";a:4:{s:5:\"#type\";s:7:\"actions\";s:6:\"submit\";a:5:{s:5:\"#type\";s:6:\"submit\";s:7:\"#access\";b:1;s:6:\"#value\";s:4:\"Save\";s:7:\"#weight\";i:5;s:7:\"#submit\";a:1:{i:0;s:21:\"i18n_node_form_submit\";}}s:7:\"preview\";a:5:{s:7:\"#access\";b:1;s:5:\"#type\";s:6:\"submit\";s:6:\"#value\";s:7:\"Preview\";s:7:\"#weight\";i:10;s:7:\"#submit\";a:1:{i:0;s:23:\"node_form_build_preview\";}}s:6:\"delete\";a:4:{s:5:\"#type\";s:6:\"submit\";s:6:\"#value\";s:6:\"Delete\";s:7:\"#weight\";i:15;s:7:\"#submit\";a:1:{i:0;s:23:\"node_form_delete_submit\";}}}s:9:\"#validate\";a:1:{i:0;s:18:\"node_form_validate\";}s:7:\"#submit\";a:1:{i:0;s:29:\"locale_field_node_form_submit\";}s:8:\"#parents\";a:0:{}s:7:\"#entity\";r:46;s:4:\"body\";a:7:{s:5:\"#type\";s:9:\"container\";s:11:\"#attributes\";a:1:{s:5:\"class\";a:3:{i:0;s:28:\"field-type-text-with-summary\";i:1;s:15:\"field-name-body\";i:2;s:39:\"field-widget-text-textarea-with-summary\";}}s:7:\"#weight\";s:1:\"2\";s:5:\"#tree\";b:1;s:9:\"#language\";s:2:\"en\";s:2:\"en\";a:13:{i:0;a:19:{s:12:\"#entity_type\";s:4:\"node\";s:7:\"#entity\";r:46;s:7:\"#bundle\";s:4:\"page\";s:11:\"#field_name\";s:4:\"body\";s:9:\"#language\";s:2:\"en\";s:14:\"#field_parents\";a:0:{}s:8:\"#columns\";a:3:{i:0;s:5:\"value\";i:1;s:7:\"summary\";i:2;s:6:\"format\";}s:6:\"#title\";s:4:\"Body\";s:12:\"#description\";s:0:\"\";s:9:\"#required\";b:0;s:6:\"#delta\";i:0;s:7:\"#weight\";i:0;s:5:\"#type\";s:11:\"text_format\";s:14:\"#default_value\";s:15899:\"<h1 align= \"center\"><strong>Rapporto sulla Campagna Antartica (estratto)</strong></h1>\r\n\r\n<h2 align=\"center\"><strong>Estate Australe 2016-2017</strong></h2>\r\n\r\n<h3 align=\"center\"><strong>Trentduesima Spedizione (PNRA XXXII)</strong></h3>\r\n\r\n<p align=\"center\"><strong>Progetto 2009/B.09: Osservatorio Marino Nel Mare di Ross ( MORSea)</strong><br />\r\n<em>A. De Alteris, P. Falco, F. Grilli, G. Zambardino</em></p>\r\n\r\n<p align=\"justify\">Il progetto MORSea (http://morsea.uniparthenope.it) prevede la gestione e la manutenzione della rete di osservazioni marine attualmente esistente nel Mare di Ross. L’osservatorio è costituito da 4 catene correntometriche (mooring) contrassegnate dalle lettere “B”, “D”, “G” e “L”. Ogni punto di misura ha degli obiettivi specifici legati alla circolazione delle masse d’acqua che si generano sulla piattaforma e a quelle entranti attraverso il limite della scarpata continentale. In generale però l’obiettivo primario dell’osservatorio è quello di studiare la variabilità interannuale delle caratteristiche fisiche e geochimiche delle acque di shelf nel settore occidentale del Mare di Ross.\r\nA queste attività, negli ultimi anni si sono aggiunte delle misure di “ship of opportunity” effettuate quindi non impiegando tempo di navigazione della M/N Italica. Anche quest’anno infatti sono state eseguite misure di temperatura e salinità superficiale del mare (SST e SSS rispettivamente), lanci di XBT per la misura della struttura subsuperficiale dell’Oceano Meridionale; lanci di drifter e float (nell’ambito della collaborazione con il progetto ARGOItaly). In particolare le misure XBT hanno lo scopo essenziale di proseguire la serie storica di osservazioni, condotte durante la traversata dalla Nuova Zelanda fino al mare di Ross, realizzate al fine di caratterizzare la struttura della colonna d’acqua, fino alla profondità di 700 m, della Corrente Circumpolare Antartica (ACC), misure acquisite sin dal 1994.\r\nRelativamente all’attività dei mooring è da sottolineare che quest’anno è stato fatto un primo tentativo di svecchiamento della strumentazione utilizzata per le misure. In particolare, per quanto riguarda il mooring D, sono stati acquistati due nuovi sganciatori IXBLUE OCEANO 2500 che hanno sostituito i due precedenti ormai in cattive condizioni, è stato sostituito un vecchio correntometro RCM 7 con un nuovo correntometro Aanderaa Seaguard e aggiunta una sonda SBE 37 SMP al posto di un vecchio misuratore di temperatura SBE 39.\r\nInoltre, sul mooring G è stata aggiunta una sonda SBE 37 SMP ODO sul fondo. Ad ogni modo la percentuale di strumenti che, in diversi casi, risalgono a oltre 20 anni fa, è ancora decisamente prevalente per cui è auspicabile, quanto necessario, che questo primo tentativo di rinnovamento della strumentazione continui in futuro.\r\nIl materiale di consumo e di ricambio per le trappole di sedimento è stato fornito: dal dott. M. Capello (Univ. di Genova) per i mooring “D” e “L” (2 trappole), dal dott. L. Langone (CNR – ISMAR) per il mooring “B” (1 trappola). Sfortunatamente, il motore della trappola del mooring L ha mostrato malfunzionamenti non risolvibili a bordo per cui, non disponendo di un motore sostitutivo, è stato impossibile rimetterla in mare.\r\nLe attività di recupero e rimessa a mare sono state effettuate in simbiosi con il gruppo di Oceanografia Fisica (Dr. P. Castango e M. De Stefano) e con il contributo del Dr. L. Langone.\r\nDa prassi ormai consolidata, sono state effettuate calate di CTD/LADCP - per la verifica e taratura dei sensori posizionati sulle catene correntometriche - prima del loro recupero e dopo il loro posizionamento. Proprio durante la stazione di calibrazione avvenuta prima del recupero del mooring G, a causa di un violento urto del frame contenente la sensoristica per le misure, alcuni sensori, compresa la sonda principale SBE 9 plus, hanno riportato danni che hanno impedito il loro utilizzo nel prosieguo della campagna. Oltre alla sonda, anche il sensore di O2 e due sensori di temperatura e uno di conducibiltà della sonda MicroRider 1000 (anch’essa montata sul frame) sono risultati non funzionanti ed è stata necessaria la sostituzione con i sensori di rispetto.\r\nNel seguito vengono descritte le attività svolte su ogni catena correntometrica ed in tabella TM1 viene riportata la scheda riassuntiva dei periodi di funzionamento di ogni strumento. Tutti le date e gli orari sono riportati in UTC.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “D”</strong><br />\r\nIl mooring “D” è stato recuperato l’8 gennaio 2017 e rimesso in mare il giorno 11 febbraio 2017. Il comportamento degli sganciatori è risultato anomalo. Gli strumenti funzionano, sono cioè in grado di operare lo sgancio, ma non hanno dato alcuna informazione riguardo il loro stato e non rispondono ai codici di enable e disable. Tale comportamento era già stato evidenziato durante il precedente recupero. Considerando l’età degli strumenti e l’importanza del mooring si è deciso di acquistare due nuovi sganciatori e di sostituire quindi i vecchi.\r\nL’ordinaria manutenzione della strumentazione presente non ha mostrato particolari criticità se non nel caso della sonda di SBE37 SMP ODO acquistata pochi mesi prima della XXXI campagna e aggiunta al mooring. La sonda ha interrotto l’acquisizione dopo circa 5 mesi dal posizionamento per cause non bene chiarite nemmeno dalla casa costruttrice contattata tramite il rappresentante italiano. Dopo vari test di funzionamento svolti a bordo e d’accordo con la casa costruttrice, si è deciso di utilizzarla nuovamente.\r\nIl mooring “D” è stato rimesso in posizione nella configurazione illustrata in figura M2. Rispetto alla precedente configurazione, è stato sostituito un correntometro Aanderaa RCM 7 alla quota di circa 880 m con un Aanderaa SeaGuard e al posto di una sonda SBE 39 è stato usato un SBE 37 SMP, quindi con misura anche di pressione e salinità alla quota di circa 750 m. Infine è stata sostituita la coppia di sganciatori per i quali è necessaria una manutenzione prima di un eventuale riutilizzo, e al loro posto è stata montata una coppia di sganciatori nuovi della IXBLUE.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “L”</strong><br />\r\nIl mooring “L” è stato recuperato il 10 gennaio 2017 e rimesso in mare il 22 gennaio successivo.\r\nDurante la manutenzione della trappola di sedimento si sono riscontrate anomalie di funzionamento del motore che regola lo scorrimento delle bottigliette che raccolgono il sedimento. Non è stato possibile intervenire per riparare il guasto e tanto meno sostituire il motore in quando non disponibile uno di ricambio. Si è pertanto dovuto optare per la rimozione momentanea dal mooring della trappola. I problemi di recupero manifestati durante le spedizioni del 2013/14 e 2015/16, sono stati superati dall’aggiunta (eseguita la scorsa campagna oceanografica) di ulteriori boe di spinta che hanno consentito un risalita corretta di tutta la struttura. La configurazione del mooring riposizionato è riportata in figura M4.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “B”</strong><br />\r\nIl mooring “B” è stato recuperato il 17 gennaio e rimesso in mare il 30 gennaio 2017.\r\nIl recupero di questo mooring, che nelle ultime due spedizioni era risultato particolarmente complicato, quest’anno è avvenuto in modo regolare. Anche in questo caso l’aggiunta di ulteriori spinte decise durante la campagna della XXXI spedizione, è risultata determinante al fine di un corretto recupero. Rimangono perplessità riguardo alle cause che non hanno consentito a tutta la struttura di venire a galla spontaneamente nelle precedenti occasioni di recupero. Per verificare l’efficacia delle spinte sono state eseguite prove di galleggiabilità di tutti i gruppi boa presenti sul mooring, applicando un peso pari alla spinta nominale della boa e filando in acqua tutto per verificarne il comportamento. In tutti i casi le boe hanno sostenuto il peso dimostrando di essere ancora efficienti.\r\nAd ogni modo, onde evitare problemi in futuro, si è deciso di applicare un’ulteriore boa di spinta da 25 kg (tipo Vitrovex) nel settore immediatamente superiore alla trappola di sedimento presente alla quota di 460 metri. Dopo la manutenzione del caso, la catena correntometrica è stata riposizionata nella configurazione riportata in figura M1, sostanzialmente analoga al precedente periodo, ma aumentando la spinta di galleggiamento.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “G”</strong><br />\r\nIl mooring “G” è stato recuperato il 06 febbraio e rimesso in mare 09/02/2016.\r\nL’operazione di recupero, anche se condotta con mare 4/5, è stata eseguita in modo rapido e corretto (inizio ascolto ore 00:47 del 6/02, sganciatore a bordo ore 01:53 del 6/02). La manutenzione della strumentazione (come per i mooring precedenti) non ha messo in evidenza alcuna criticità sia dal punto di vista dell’integrità della strumentazione che del processo di acquisizione dati.\r\nAl fine di ottenere informazioni più mirate riguardo il transito della HSSW sul fondo nella zona di G, è stata aggiunta al mooring, nel suo settore più profondo, una sonda SBE 37 SMP ODO. Da riscontri fatti in rapporti di attività precedenti, si è rilevato che già in passato era presente una sonda simile e quindi si è pensato di ripristinare questa importante quota di misura dei parametri di T ed S aggiungendo però il parametro O2.\r\nLa configurazione del mooring riposizionato è riportata in figura M3.\r\nIn tabella TM1 vengono elencate le informazioni principali sul funzionamento della strumentazione alloggiata sui mooring nel periodo 2016-17, tenendo conto che:\r\n- le profondità [m] si riferiscono agli schemi della campagna 2015-2016;\r\n- gli intervalli riportati si riferiscono al periodo effettivo di misura valida in acqua e alla profondità indicata nella prima colonna.</p>\r\n\r\n<p align=\"justify\"><strong>Misure in continuo di temperatura e salinità superficiale</strong><br />\r\nDurante tutta la campagna si sono misurate la temperatura e la salinità superficiale del mare (SST – Sea Surface Temperature; SSS – Sea Surface Salinity) utilizzando la presa d’acqua a circa 4 metri di profondità. L’attività è stata condotta con il gruppo di Oceanografia Fisica.\r\nL’attività di misura in continuo è iniziata il 30 dicembre 2016, appena lasciato il fiordo di Lyttleton, ed è continuata sino al ritorno in Nuova Zelanda. Per queste misure sono stati impiegati tre sensori (due di temperatura e uno di conducibilità) gestiti dal sistema SBE-21 e un GPS Garmin; l’intervallo di acquisizione è stato di 30”. I dati hanno subìto un primo processamento a bordo per l’eliminazione dei picchi dovuti sostanzialmente al rollio della nave e alla presenza di ghiacci.\r\nDi particolare interesse sono i dati acquisiti durante le due traversate oceaniche tra Nuova Zelanda e Mare di Ross (andata e ritorno, non mostrati) in quanto permetteranno di determinare le posizioni dei fronti termoalini in superficie che in questa zona separano le zone a dinamica diversa della ACC. Questi dati risultano molto utili se integrati con i dati XBT e inoltre rappresentano la verità mare per validazioni di modelli e misure satellitari.\r\nAnche le misure di SST e SSS, come quelle con gli XBT, rappresentano quelle osservazioni ricorrenti della Antarctic Circumpolar Current sollecitate e regolate dal SOOS (Southern Ocean Observing System, http://www.soos.aq/).</p>\r\n\r\n<p align=\"justify\"><strong>Misure XBT</strong><br />\r\nI lanci di sonde XBT (SIPPICAN mod.T7, prof. max 760 m) sono iniziati il 31 dicembre 2016 alla latitudine 48°S e sono terminati il 05 gennaio 2017 alla latitudine di 68°46’S; la distanza tra ogni punto di campionamento è statao, come in passato, di 15 miglia nautiche e sono state utilizzate 90 sonde lungo la rotta seguita per entrare nel Mare di Ross; solo 3 di 90 sonde hanno mostrato problemi di funzionamento dovuti quasi esclusivamente al contatto del cavo conduttore in rame con lo scafo della nave.\r\nI dati hanno subìto un primo processamento a bordo per eliminare i valori spuri, i primi metri influenzati dall’inerzia termica del sensore e gli eventuali dati affetti dalla presenza del fondo. In figura 3 è riportata la sezione in temperatura dello strato sub-superficiale fino alla profondità massima di 700 m.\r\nLe misure XBT rappresentano quelle osservazioni ricorrenti della Antarctic Circumpolar Current sollecitate e regolate dal SOOS (Southern Ocean Observing System). Considerando che tali indagini sono iniziate nel 1994, portate avanti nell’ambito di diversi progetti PNRA, si può ritenere assodata la valenza a scala climatologica dato il lungo periodo che coprono.\r\nDurante il viaggio di ritorno, avendo disponibili ancora 6 sonde XBT, si è pensato di eseguire lanci a 15’ di latitudine di distanza per cercare di osservare il limite meridionale di intrusione di MCDW lungo la costa occidentale del mare di Ross. La latitudine di partenza dei lanci è stata 73°30’S e si è giunti fino a 72°15’S. I lanci sono cominciati il 14/02/2017 alle ore 23.30 circa e terminati il giorno 15/02/2017 alle ore 5.00 circa.\r\n<p ALIGN=\"center\"><a href=\" \"><img alt=\"\" src=\"/sites/all/themes/multipurpose/images/fig_XXXII.png\" width=\"600px\" /></a></p>\r\n<p align=\"justify\"><strong>Figura 1. Sezione verticale della distribuzione della temperatura misurata dal 31/12/2016 al 05/01/2017 (raw data).</strong></p>\r\n\r\n<p align=\"justify\"><strong>Floats</strong><br />\r\nOltre agli XBT, durante il trasferimento verso il mare di Ross, sono stati rilasciati in mare 10 float e 10 drifter. Queste misure rientrano nella collaborazione con il progetto ARGOItaly, che ha fornito gli strumenti (http://nettuno.ogs.trieste.it/jungo/argoitaly/floats.html), attività volta a fornire un contributo italiano all’interno del più ampio programma di osservazione, a scala globale, degli oceani denominato ARGO.\r\nI float sono strumenti autonomi lagrangiani ovvero, una volta rilasciati in mare, sono trasportati dalle correnti marine a una profondità predeterminata. A intervalli regolari la sonda sale in superficie misurando le proprietà termoaline che poi vengono trasmesse via satellite al centro di raccolta dati.\r\nIl ciclo tipico dei float utilizzato è quello standard stabilito nel programma ARGO, ovvero la cosiddetta “parking depth” (ovvero la profondità alla quale il float arresta la discesa ed è trasportato passivamente dalle correnti) è a 1000 metri; al termine di un intervallo di 10 giorni il float è programmato per immergersi sino a 2000 metri e poi di risalire in superficie (dove rimane per 6 ore) per eseguire il profilo di temperatura e salinità e per la trasmissione dei dati acquisiti.\r\nI float utilizzati nel progetto, in particolare, hanno un sistema di comunicazione satellitare bi-direzionale (Iridium) per poter modificare a distanza i parametri di missione. Quest’anno tra i float disponibili sono strati resi disponibili tre con inserito l’algoritmo per il rilevamento del ghiaccio in superficie. Questa tipologia di float potrebbe consentire un monitoraggio delle fasce polari dove la formazione di ghiaccio marino durante l’inverno impedisce l’affioramento dei float in superficie e spesso causa anche il loro danneggiamento.\r\nI drifter sono sempre strumenti lagrangiani, ma rimangono in superficie trasmettendo in tempo reale le posizioni e il valore di temperatura superficiale. Anche quest’anno sono stati rilasciati drifter del tipo Surface Velocity Programme (SVP) particolarmente adatti a misure di corrente superficiale in oceano aperto. I lanci dei drifter e dei float sono avvenuti simultaneamente e sono cominciati il giorno 02/01/2017 a circa 55°S, terminati il giorno successivo a 63°S.\";s:5:\"#rows\";s:2:\"20\";s:11:\"#attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:9:\"text-full\";}}s:7:\"#format\";s:9:\"full_html\";s:10:\"#base_type\";s:8:\"textarea\";s:7:\"summary\";a:10:{s:5:\"#type\";s:8:\"textarea\";s:14:\"#default_value\";s:0:\"\";s:6:\"#title\";s:7:\"Summary\";s:5:\"#rows\";i:5;s:12:\"#description\";s:61:\"Leave blank to use trimmed value of full text as the summary.\";s:9:\"#attached\";a:1:{s:2:\"js\";a:1:{i:0;s:34:\"modules/field/modules/text/text.js\";}}s:11:\"#attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:12:\"text-summary\";}}s:7:\"#prefix\";s:34:\"<div class=\"text-summary-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:7:\"#weight\";i:-10;}}s:6:\"#theme\";s:25:\"field_multiple_value_form\";s:11:\"#field_name\";s:4:\"body\";s:12:\"#cardinality\";s:1:\"1\";s:6:\"#title\";s:4:\"Body\";s:9:\"#required\";i:0;s:12:\"#description\";s:0:\"\";s:7:\"#prefix\";s:32:\"<div id=\"body-add-more-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:10:\"#max_delta\";i:0;s:12:\"#after_build\";a:1:{i:0;s:30:\"field_form_element_after_build\";}s:9:\"#language\";s:2:\"en\";s:14:\"#field_parents\";a:0:{}}s:7:\"#access\";b:1;}s:11:\"title_field\";a:7:{s:5:\"#type\";s:9:\"container\";s:11:\"#attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:15:\"form-item-title\";}}s:7:\"#weight\";s:1:\"0\";s:5:\"#tree\";b:1;s:9:\"#language\";s:2:\"en\";s:2:\"en\";a:13:{i:0;a:13:{s:12:\"#entity_type\";s:4:\"node\";s:7:\"#entity\";r:46;s:7:\"#bundle\";s:4:\"page\";s:11:\"#field_name\";s:11:\"title_field\";s:9:\"#language\";s:2:\"en\";s:14:\"#field_parents\";a:0:{}s:8:\"#columns\";a:2:{i:0;s:5:\"value\";i:1;s:6:\"format\";}s:6:\"#title\";s:5:\"Title\";s:12:\"#description\";s:0:\"\";s:9:\"#required\";b:1;s:6:\"#delta\";i:0;s:7:\"#weight\";i:0;s:5:\"value\";a:17:{s:12:\"#entity_type\";s:4:\"node\";s:7:\"#entity\";r:46;s:7:\"#bundle\";s:4:\"page\";s:11:\"#field_name\";s:11:\"title_field\";s:9:\"#language\";s:2:\"en\";s:14:\"#field_parents\";a:0:{}s:8:\"#columns\";a:2:{i:0;s:5:\"value\";i:1;s:6:\"format\";}s:6:\"#title\";s:5:\"Title\";s:12:\"#description\";s:0:\"\";s:9:\"#required\";b:1;s:6:\"#delta\";i:0;s:7:\"#weight\";i:0;s:5:\"#type\";s:9:\"textfield\";s:14:\"#default_value\";s:20:\"2016/17 - PNRA XXXII\";s:5:\"#size\";s:2:\"60\";s:10:\"#maxlength\";i:255;s:11:\"#attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:9:\"text-full\";}}}}s:6:\"#theme\";s:25:\"field_multiple_value_form\";s:11:\"#field_name\";s:11:\"title_field\";s:12:\"#cardinality\";s:1:\"1\";s:6:\"#title\";s:5:\"Title\";s:9:\"#required\";i:1;s:12:\"#description\";s:0:\"\";s:7:\"#prefix\";s:39:\"<div id=\"title-field-add-more-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:10:\"#max_delta\";i:0;s:12:\"#after_build\";a:1:{i:0;s:30:\"field_form_element_after_build\";}s:9:\"#language\";s:2:\"en\";s:14:\"#field_parents\";a:0:{}}s:7:\"#access\";b:1;}s:11:\"#pre_render\";a:1:{i:0;s:30:\"_field_extra_fields_pre_render\";}s:12:\"#entity_type\";s:4:\"node\";s:7:\"#bundle\";s:4:\"page\";s:8:\"#form_id\";s:14:\"page_node_form\";s:5:\"#type\";s:4:\"form\";s:9:\"#build_id\";s:48:\"form-fNvYgCNd1d-MD0fl2BVTIt_b7OyYxvRwjp8I5tgI8Qg\";s:13:\"form_build_id\";a:5:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:48:\"form-fNvYgCNd1d-MD0fl2BVTIt_b7OyYxvRwjp8I5tgI8Qg\";s:3:\"#id\";s:48:\"form-fNvYgCNd1d-MD0fl2BVTIt_b7OyYxvRwjp8I5tgI8Qg\";s:5:\"#name\";s:13:\"form_build_id\";s:8:\"#parents\";a:1:{i:0;s:13:\"form_build_id\";}}s:6:\"#token\";s:14:\"page_node_form\";s:10:\"form_token\";a:4:{s:3:\"#id\";s:30:\"edit-page-node-form-form-token\";s:5:\"#type\";s:5:\"token\";s:14:\"#default_value\";s:43:\"691oGQLNKr6ZQN6cJ6tte1Th9New_Fjk4RqOemvN1LE\";s:8:\"#parents\";a:1:{i:0;s:10:\"form_token\";}}s:7:\"form_id\";a:4:{s:5:\"#type\";s:6:\"hidden\";s:6:\"#value\";s:14:\"page_node_form\";s:3:\"#id\";s:19:\"edit-page-node-form\";s:8:\"#parents\";a:1:{i:0;s:7:\"form_id\";}}s:3:\"#id\";s:14:\"page-node-form\";s:7:\"#method\";s:4:\"post\";s:7:\"#action\";s:36:\"/?q=node%2F129%2Fedit&render=overlay\";s:15:\"#theme_wrappers\";a:1:{i:0;s:4:\"form\";}s:5:\"#tree\";b:0;s:6:\"#theme\";a:2:{i:0;s:14:\"page_node_form\";i:1;s:9:\"node_form\";}s:16:\"comment_settings\";a:10:{s:5:\"#type\";s:8:\"fieldset\";s:7:\"#access\";b:1;s:6:\"#title\";s:16:\"Comment settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:6:\"#group\";s:19:\"additional_settings\";s:11:\"#attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:26:\"comment-node-settings-form\";}}s:9:\"#attached\";a:1:{s:2:\"js\";a:1:{i:0;s:36:\"modules/comment/comment-node-form.js\";}}s:7:\"#weight\";i:30;s:7:\"comment\";a:9:{s:5:\"#type\";s:6:\"radios\";s:6:\"#title\";s:8:\"Comments\";s:14:\"#title_display\";s:9:\"invisible\";s:8:\"#parents\";a:1:{i:0;s:7:\"comment\";}s:14:\"#default_value\";s:1:\"1\";s:8:\"#options\";a:3:{i:2;s:4:\"Open\";i:1;s:6:\"Closed\";i:0;s:6:\"Hidden\";}i:2;a:1:{s:12:\"#description\";s:60:\"Users with the \"Post comments\" permission can post comments.\";}i:1;a:1:{s:12:\"#description\";s:27:\"Users cannot post comments.\";}i:0;a:2:{s:12:\"#description\";s:30:\"Comments are hidden from view.\";s:7:\"#access\";b:0;}}}s:12:\"#after_build\";a:1:{i:0;s:31:\"_i18n_node_form_node_form_alter\";}s:9:\"locations\";a:6:{s:7:\"#prefix\";s:30:\"<div class=\"location-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:5:\"#tree\";b:1;s:7:\"#weight\";s:1:\"0\";i:0;a:9:{s:5:\"#type\";s:16:\"location_element\";s:18:\"#has_garbage_value\";b:1;s:6:\"#value\";s:0:\"\";s:6:\"#title\";s:8:\"Location\";s:14:\"#default_value\";N;s:18:\"#location_settings\";a:4:{s:8:\"multiple\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:1:\"1\";s:3:\"add\";s:1:\"1\";}s:4:\"form\";a:4:{s:6:\"weight\";s:1:\"0\";s:11:\"collapsible\";i:1;s:9:\"collapsed\";i:1;s:6:\"fields\";a:8:{s:4:\"name\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"2\";}s:6:\"street\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"4\";}s:10:\"additional\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"6\";}s:4:\"city\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"8\";}s:8:\"province\";a:4:{s:7:\"collect\";s:1:\"0\";s:6:\"widget\";s:12:\"autocomplete\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:2:\"10\";}s:11:\"postal_code\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:2:\"12\";}s:7:\"country\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:2:\"aq\";s:6:\"weight\";s:2:\"14\";}s:7:\"locpick\";a:2:{s:7:\"collect\";s:1:\"1\";s:6:\"weight\";s:2:\"20\";}}}s:7:\"display\";a:4:{s:6:\"weight\";s:1:\"0\";s:4:\"hide\";a:12:{s:4:\"name\";i:0;s:6:\"street\";i:0;s:10:\"additional\";i:0;s:4:\"city\";i:0;s:8:\"province\";i:0;s:11:\"postal_code\";i:0;s:7:\"country\";i:0;s:7:\"locpick\";i:0;s:13:\"province_name\";i:0;s:12:\"country_name\";i:0;s:8:\"map_link\";i:0;s:6:\"coords\";i:0;}s:6:\"teaser\";i:1;s:4:\"full\";i:1;}s:3:\"rss\";a:1:{s:4:\"mode\";s:6:\"simple\";}}s:9:\"#required\";b:0;s:12:\"#collapsible\";i:1;s:10:\"#collapsed\";i:1;}s:6:\"#group\";s:19:\"additional_settings\";}s:4:\"menu\";a:12:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:13:\"Menu settings\";s:7:\"#access\";b:1;s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:6:\"#group\";s:19:\"additional_settings\";s:9:\"#attached\";a:1:{s:2:\"js\";a:1:{i:0;s:20:\"modules/menu/menu.js\";}}s:5:\"#tree\";b:1;s:7:\"#weight\";i:-2;s:11:\"#attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:14:\"menu-link-form\";}}s:7:\"enabled\";a:3:{s:5:\"#type\";s:8:\"checkbox\";s:6:\"#title\";s:19:\"Provide a menu link\";s:14:\"#default_value\";i:0;}s:4:\"link\";a:16:{s:5:\"#type\";s:9:\"container\";s:8:\"#parents\";a:1:{i:0;s:4:\"menu\";}s:7:\"#states\";a:1:{s:9:\"invisible\";a:1:{s:27:\"input[name=\"menu[enabled]\"]\";a:1:{s:7:\"checked\";b:0;}}}s:4:\"mlid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";i:0;}s:6:\"module\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:4:\"menu\";}s:6:\"hidden\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";i:0;}s:12:\"has_children\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";i:0;}s:10:\"customized\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";i:1;}s:7:\"options\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";a:0:{}}s:8:\"expanded\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";i:0;}s:18:\"parent_depth_limit\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";i:8;}s:10:\"link_title\";a:4:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Menu link title\";s:10:\"#maxlength\";i:255;s:14:\"#default_value\";s:0:\"\";}s:11:\"description\";a:5:{s:5:\"#type\";s:8:\"textarea\";s:6:\"#title\";s:11:\"Description\";s:14:\"#default_value\";s:0:\"\";s:5:\"#rows\";i:1;s:12:\"#description\";s:39:\"Shown when hovering over the menu link.\";}s:6:\"parent\";a:5:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:11:\"Parent item\";s:14:\"#default_value\";s:11:\"main-menu:0\";s:8:\"#options\";a:15:{s:11:\"main-menu:0\";s:11:\"<Main menu>\";s:13:\"main-menu:218\";s:7:\"-- Home\";s:13:\"main-menu:390\";s:21:\"-- Gallery (disabled)\";s:13:\"main-menu:392\";s:29:\"---- Latest albums (disabled)\";s:13:\"main-menu:393\";s:29:\"---- Latest images (disabled)\";s:13:\"main-menu:398\";s:25:\"---- My albums (disabled)\";s:13:\"main-menu:399\";s:25:\"---- My images (disabled)\";s:13:\"main-menu:394\";s:26:\"---- Share code (disabled)\";s:13:\"main-menu:391\";s:28:\"---- Image upload (disabled)\";s:13:\"main-menu:384\";s:14:\"-- Data access\";s:13:\"main-menu:429\";s:11:\"-- Moorings\";s:13:\"main-menu:610\";s:23:\"-- Ancillary activities\";s:13:\"main-menu:532\";s:7:\"-- News\";s:13:\"main-menu:382\";s:11:\"-- Contacts\";s:13:\"main-menu:514\";s:11:\"-- Pictures\";}s:11:\"#attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:18:\"menu-parent-select\";}}}s:6:\"weight\";a:5:{s:5:\"#type\";s:6:\"weight\";s:6:\"#title\";s:6:\"Weight\";s:6:\"#delta\";i:50;s:14:\"#default_value\";i:0;s:12:\"#description\";s:79:\"Menu links with smaller weights are displayed before links with larger weights.\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:2:\"en\";}}}s:4:\"path\";a:15:{s:5:\"#type\";s:8:\"fieldset\";s:6:\"#title\";s:17:\"URL path settings\";s:12:\"#collapsible\";b:1;s:10:\"#collapsed\";b:1;s:6:\"#group\";s:19:\"additional_settings\";s:11:\"#attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:9:\"path-form\";}}s:9:\"#attached\";a:1:{s:2:\"js\";a:1:{i:0;s:20:\"modules/path/path.js\";}}s:7:\"#access\";b:1;s:7:\"#weight\";i:30;s:5:\"#tree\";b:1;s:17:\"#element_validate\";a:1:{i:0;s:26:\"path_form_element_validate\";}s:5:\"alias\";a:5:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:9:\"URL alias\";s:14:\"#default_value\";s:0:\"\";s:10:\"#maxlength\";i:255;s:12:\"#description\";s:210:\"Optionally specify an alternative URL by which this content can be accessed. For example, type \"about\" when writing an about page. Use a relative path and don\'t add a trailing slash or the URL alias won\'t work.\";}s:3:\"pid\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";N;}s:6:\"source\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:8:\"node/129\";}s:8:\"language\";a:2:{s:5:\"#type\";s:5:\"value\";s:6:\"#value\";s:2:\"en\";}}s:12:\"#cache_token\";s:43:\"Hndit1XB6D55I0dtQi4vJxuvRUot3Fnir5iMLfyUPqo\";}',1652184251,1652162651,1),('form_state_form-0bJD2dDHqycWymIShofX6fWa5XWo-yK7jBNVfawqzwM','a:8:{s:10:\"build_info\";a:4:{s:4:\"args\";a:1:{i:0;O:8:\"stdClass\":14:{s:3:\"uid\";s:1:\"1\";s:4:\"name\";s:5:\"admin\";s:4:\"type\";s:7:\"article\";s:8:\"language\";s:3:\"und\";s:5:\"title\";N;s:6:\"status\";i:1;s:7:\"promote\";i:1;s:6:\"sticky\";i:0;s:7:\"created\";i:1652163438;s:8:\"revision\";b:0;s:7:\"comment\";s:1:\"2\";s:4:\"menu\";a:12:{s:10:\"link_title\";s:0:\"\";s:4:\"mlid\";i:0;s:4:\"plid\";i:0;s:9:\"menu_name\";s:9:\"main-menu\";s:6:\"weight\";i:0;s:7:\"options\";a:0:{}s:6:\"module\";s:4:\"menu\";s:8:\"expanded\";i:0;s:6:\"hidden\";i:0;s:12:\"has_children\";i:0;s:10:\"customized\";i:0;s:18:\"parent_depth_limit\";i:8;}s:29:\"entity_translation_handler_id\";s:18:\"node-article-new-1\";s:12:\"translations\";O:8:\"stdClass\":2:{s:8:\"original\";N;s:4:\"data\";a:0:{}}}}s:7:\"form_id\";s:17:\"article_node_form\";s:5:\"files\";a:1:{s:4:\"menu\";s:27:\"modules/node/node.pages.inc\";}s:12:\"base_form_id\";s:9:\"node_form\";}s:10:\"programmed\";b:0;s:30:\"programmed_bypass_access_check\";b:1;s:5:\"cache\";b:1;s:4:\"node\";r:4;s:5:\"field\";a:4:{s:4:\"body\";a:1:{s:3:\"und\";a:5:{s:5:\"field\";a:16:{s:12:\"entity_types\";a:1:{i:0;s:4:\"node\";}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:8:\"settings\";a:1:{s:23:\"entity_translation_sync\";b:0;}s:12:\"translatable\";s:1:\"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:15:\"field_data_body\";a:3:{s:5:\"value\";s:10:\"body_value\";s:7:\"summary\";s:12:\"body_summary\";s:6:\"format\";s:11:\"body_format\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:19:\"field_revision_body\";a:3:{s:5:\"value\";s:10:\"body_value\";s:7:\"summary\";s:12:\"body_summary\";s:6:\"format\";s:11:\"body_format\";}}}}}s:2:\"id\";s:1:\"2\";s:10:\"field_name\";s:4:\"body\";s:4:\"type\";s:17:\"text_with_summary\";s:6:\"module\";s:4:\"text\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:3:{s:5:\"value\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:7:\"summary\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:9:{i:0;s:4:\"page\";i:1;s:7:\"article\";i:2;s:6:\"photos\";i:3;s:26:\"openlayers_example_content\";i:4;s:7:\"mooring\";i:5;s:19:\"photo_moorings_2014\";i:6;s:19:\"photo_moorings_2012\";i:7;s:5:\"forum\";i:8;s:19:\"photo_moorings_2010\";}}}s:8:\"instance\";a:13:{s:5:\"label\";s:4:\"Body\";s:6:\"widget\";a:5:{s:6:\"weight\";s:2:\"-4\";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: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\";i:0;s:11:\"description\";s:0:\"\";s:13:\"default_value\";N;s:2:\"id\";s:1:\"4\";s:8:\"field_id\";s:1:\"2\";s:10:\"field_name\";s:4:\"body\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:7:\"article\";s:7:\"deleted\";s:1:\"0\";}s:11:\"items_count\";i:0;s:13:\"array_parents\";a:2:{i:0;s:4:\"body\";i:1;s:3:\"und\";}s:6:\"errors\";a:0:{}}}s:10:\"field_tags\";a:1:{s:3:\"und\";a:5:{s:5:\"field\";a:16:{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\";s:10:\"field_name\";s:10:\"field_tags\";s:4:\"type\";s:23:\"taxonomy_term_reference\";s:6:\"module\";s:8:\"taxonomy\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:2:\"-1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:1:{s:3:\"tid\";a:3:{s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:1:{i:0;s:7:\"article\";}}}s:8:\"instance\";a:13:{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:5:{s:6:\"weight\";s:2:\"-4\";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: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\";i:0;s:13:\"default_value\";N;s:2:\"id\";s:1:\"5\";s:8:\"field_id\";s:1:\"3\";s:10:\"field_name\";s:10:\"field_tags\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:7:\"article\";s:7:\"deleted\";s:1:\"0\";}s:11:\"items_count\";i:0;s:13:\"array_parents\";a:2:{i:0;s:10:\"field_tags\";i:1;s:3:\"und\";}s:6:\"errors\";a:0:{}}}s:11:\"field_image\";a:1:{s:3:\"und\";a:5:{s:5:\"field\";a:16:{s:7:\"indexes\";a:1:{s:3:\"fid\";a:1:{i:0;s:3:\"fid\";}}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:22:\"field_data_field_image\";a:5:{s:3:\"fid\";s:15:\"field_image_fid\";s:3:\"alt\";s:15:\"field_image_alt\";s:5:\"title\";s:17:\"field_image_title\";s:5:\"width\";s:17:\"field_image_width\";s:6:\"height\";s:18:\"field_image_height\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:26:\"field_revision_field_image\";a:5:{s:3:\"fid\";s:15:\"field_image_fid\";s:3:\"alt\";s:15:\"field_image_alt\";s:5:\"title\";s:17:\"field_image_title\";s:5:\"width\";s:17:\"field_image_width\";s:6:\"height\";s:18:\"field_image_height\";}}}}}s:12:\"entity_types\";a:0:{}s:12:\"translatable\";s:1:\"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\";}}}s:2:\"id\";s:1:\"4\";s:10:\"field_name\";s:11:\"field_image\";s:4:\"type\";s:5:\"image\";s:6:\"module\";s:5:\"image\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:5:{s:3:\"fid\";a:4:{s:11:\"description\";s:54:\"The {file_managed}.fid being referenced in this field.\";s:4:\"type\";s:3:\"int\";s:8:\"not null\";b:0;s:8:\"unsigned\";b:1;}s:3:\"alt\";a:4:{s:11:\"description\";s:56:\"Alternative image text, for the image\'s \'alt\' attribute.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:512;s:8:\"not null\";b:0;}s:5:\"title\";a:4:{s:11:\"description\";s:52:\"Image title text, for the image\'s \'title\' attribute.\";s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:1024;s:8:\"not null\";b:0;}s:5:\"width\";a:3:{s:11:\"description\";s:33:\"The width of the image in pixels.\";s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}s:6:\"height\";a:3:{s:11:\"description\";s:34:\"The height of the image in pixels.\";s:4:\"type\";s:3:\"int\";s:8:\"unsigned\";b:1;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:1:{i:0;s:7:\"article\";}}}s:8:\"instance\";a:12:{s:5:\"label\";s:5:\"Image\";s:11:\"description\";s:40:\"Upload an image to go with this article.\";s:8:\"required\";i: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\";i:1;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:6:\"widget\";a:5:{s:6:\"weight\";s:2:\"-1\";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: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\";}}s:2:\"id\";s:1:\"6\";s:8:\"field_id\";s:1:\"4\";s:10:\"field_name\";s:11:\"field_image\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:7:\"article\";s:7:\"deleted\";s:1:\"0\";}s:11:\"items_count\";i:0;s:13:\"array_parents\";a:2:{i:0;s:11:\"field_image\";i:1;s:3:\"und\";}s:6:\"errors\";a:0:{}}}s:11:\"title_field\";a:1:{s:3:\"und\";a:5:{s:5:\"field\";a:16:{s:12:\"translatable\";s:1:\"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: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_title_field\";a:2:{s:5:\"value\";s:17:\"title_field_value\";s:6:\"format\";s:18:\"title_field_format\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:26:\"field_revision_title_field\";a:2:{s:5:\"value\";s:17:\"title_field_value\";s:6:\"format\";s:18:\"title_field_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:\"24\";s:10:\"field_name\";s:11:\"title_field\";s:4:\"type\";s:4:\"text\";s:6:\"module\";s:4:\"text\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:2:{s:5:\"value\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:8:{i:0;s:6:\"photos\";i:1;s:7:\"article\";i:2;s:4:\"page\";i:3;s:5:\"forum\";i:4;s:7:\"mooring\";i:5;s:26:\"openlayers_example_content\";i:6;s:19:\"photo_moorings_2012\";i:7;s:19:\"photo_moorings_2014\";}}}s:8:\"instance\";a:13:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:0:\"\";s:8:\"required\";i:1;s:8:\"settings\";a:4:{s:15:\"text_processing\";s:1:\"0\";s:10:\"hide_label\";a:2:{s:4:\"page\";i:0;s:6:\"entity\";i:0;}s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:6:\"widget\";a:5:{s:6:\"weight\";s:2:\"-5\";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:7:\"display\";a:2:{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:11;}s:6:\"teaser\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;}}s:13:\"default_value\";N;s:2:\"id\";s:2:\"43\";s:8:\"field_id\";s:2:\"24\";s:10:\"field_name\";s:11:\"title_field\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:7:\"article\";s:7:\"deleted\";s:1:\"0\";}s:11:\"items_count\";i:0;s:13:\"array_parents\";a:2:{i:0;s:11:\"title_field\";i:1;s:3:\"und\";}s:6:\"errors\";a:0:{}}}}s:13:\"process_input\";b:0;s:16:\"has_file_element\";b:1;}',1652185038,1652163438,1),('form_state_form-3-glOCsy8R3_TW_eCf4gvWrJYDwDWqMk9oQT2IVhztM','a:6:{s:10:\"build_info\";a:3:{s:4:\"args\";a:3:{i:0;s:4:\"user\";i:1;s:4:\"user\";i:2;s:7:\"default\";}s:7:\"form_id\";s:30:\"field_ui_display_overview_form\";s:5:\"files\";a:1:{s:4:\"menu\";s:35:\"modules/field_ui/field_ui.admin.inc\";}}s:10:\"programmed\";b:0;s:30:\"programmed_bypass_access_check\";b:1;s:5:\"cache\";b:1;s:23:\"formatter_settings_edit\";N;s:13:\"process_input\";b:0;}',1652184048,1652162448,1),('form_state_form-5ClLHAD9WdRl3niuiudFYAny5H-bkrDkf1bb4hr4VgI','a:7:{s:10:\"build_info\";a:4:{s:4:\"args\";a:1:{i:0;O:8:\"stdClass\":36:{s:3:\"vid\";s:1:\"4\";s:3:\"uid\";s:1:\"1\";s:5:\"title\";s:11:\"Data access\";s:3:\"log\";N;s:6:\"status\";s:1:\"1\";s:7:\"comment\";s:1:\"1\";s:7:\"promote\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:3:\"nid\";s:1:\"4\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:3:\"und\";s:7:\"created\";s:10:\"1410355045\";s:7:\"changed\";s:10:\"1425802048\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:18:\"revision_timestamp\";s:10:\"1425802048\";s:12:\"revision_uid\";s:1:\"1\";s:4:\"body\";a:1:{s:3:\"und\";a:1:{i:0;a:5:{s:5:\"value\";s:708:\"<div style=\"text-align: center;\">\r\n<div style=\" float:left; border: none; margin-right:20px;\"><a href=\"morsea.uniparthenope.it/?q=node/37\"><img  style=\"border:none;\" width=\"250\" src=\"/sites/all/themes/multipurpose/images/Metadata.png\"/></a></div>\r\n\r\n<div style=\"border: none; margin-left:40px;\"><a href=\"http://morsea.uniparthenope.it/chart/page\"><img style=\"border:none;\" width=\"250\" src=\"/sites/all/themes/multipurpose/images/TimeSeries.png\"/></a>\r\n</div>\r\n</div>\r\n<br>\r\n<p style=\"align:justify;\">Data and samples are currently distributed according to Italian PNRA policies; for information contact the scientific coordinators (giancarlo.spezie@uniparthenope.it or giorgio.budillon@uniparthenope.it)</p>\r\n\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:819:\"<div style=\"text-align: center;\">\n<div style=\" float:left; border: none; margin-right:20px;\"><a href=\"morsea.uniparthenope.it/?q=node/37\"><img style=\"border:none;\" width=\"250\" src=\"/sites/all/themes/multipurpose/images/Metadata.png\" /></a></div>\n<div style=\"border: none; margin-left:40px;\"><a href=\"http://morsea.uniparthenope.it/chart/page\"><img style=\"border:none;\" width=\"250\" src=\"/sites/all/themes/multipurpose/images/TimeSeries.png\" /></a>\n</div>\n</div>\n<p><br /></p>\n<p style=\"align:justify;\">Data and samples are currently distributed according to Italian PNRA policies; for information contact the scientific coordinators (<a href=\"mailto:giancarlo.spezie@uniparthenope.it\">giancarlo.spezie@uniparthenope.it</a> or <a href=\"mailto:giorgio.budillon@uniparthenope.it\">giorgio.budillon@uniparthenope.it</a>)</p>\n\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:3:\"und\";a:1:{i:0;a:3:{s:5:\"value\";s:11:\"Data access\";s:6:\"format\";N;s:10:\"safe_value\";s:11:\"Data access\";}}}s:12:\"translations\";O:8:\"stdClass\":2:{s:8:\"original\";N;s:4:\"data\";a:0:{}}s:14:\"title_original\";s:11:\"Data access\";s:29:\"entity_translation_handler_id\";s:17:\"node-page-eid-4-4\";s:11:\"rdf_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\";}}s:3:\"cid\";s:1:\"0\";s:22:\"last_comment_timestamp\";s:10:\"1410355045\";s:17:\"last_comment_name\";N;s:16:\"last_comment_uid\";s:1:\"1\";s:13:\"comment_count\";s:1:\"0\";s:9:\"locations\";a:0:{}s:8:\"location\";a:0:{}s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:1:\"0\";s:4:\"data\";s:4:\"b:0;\";s:4:\"date\";s:25:\"2014-09-10 15:17:25 +0200\";s:8:\"revision\";b:0;s:4:\"menu\";a:54:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"384\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/4\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:11:\"Data access\";s:7:\"options\";a:2:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:0:{}}s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-48\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"384\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:4:\"path\";s:6:\"node/%\";s:14:\"load_functions\";a:1:{i:1;s:9:\"node_load\";}s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:11:\"Data access\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:12:\"include_file\";s:0:\"\";s:11:\"link_weight\";s:3:\"-48\";s:4:\"href\";s:6:\"node/4\";s:6:\"access\";b:1;s:17:\"localized_options\";a:2:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:0:{}}s:18:\"parent_depth_limit\";i:8;}}}s:7:\"form_id\";s:14:\"page_node_form\";s:5:\"files\";a:1:{s:4:\"menu\";s:27:\"modules/node/node.pages.inc\";}s:12:\"base_form_id\";s:9:\"node_form\";}s:10:\"programmed\";b:0;s:30:\"programmed_bypass_access_check\";b:1;s:5:\"cache\";b:1;s:4:\"node\";r:4;s:5:\"field\";a:2:{s:4:\"body\";a:1:{s:3:\"und\";a:5:{s:5:\"field\";a:16:{s:12:\"entity_types\";a:1:{i:0;s:4:\"node\";}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:8:\"settings\";a:1:{s:23:\"entity_translation_sync\";b:0;}s:12:\"translatable\";s:1:\"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:15:\"field_data_body\";a:3:{s:5:\"value\";s:10:\"body_value\";s:7:\"summary\";s:12:\"body_summary\";s:6:\"format\";s:11:\"body_format\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:19:\"field_revision_body\";a:3:{s:5:\"value\";s:10:\"body_value\";s:7:\"summary\";s:12:\"body_summary\";s:6:\"format\";s:11:\"body_format\";}}}}}s:2:\"id\";s:1:\"2\";s:10:\"field_name\";s:4:\"body\";s:4:\"type\";s:17:\"text_with_summary\";s:6:\"module\";s:4:\"text\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:3:{s:5:\"value\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:7:\"summary\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:9:{i:0;s:4:\"page\";i:1;s:7:\"article\";i:2;s:6:\"photos\";i:3;s:26:\"openlayers_example_content\";i:4;s:7:\"mooring\";i:5;s:19:\"photo_moorings_2014\";i:6;s:19:\"photo_moorings_2012\";i:7;s:5:\"forum\";i:8;s:19:\"photo_moorings_2010\";}}}s:8:\"instance\";a:13:{s:5:\"label\";s:4:\"Body\";s:6:\"widget\";a:5:{s:6:\"weight\";s:1:\"2\";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: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:6:\"weight\";s:1:\"0\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";}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\";i:0;s:11:\"description\";s:0:\"\";s:13:\"default_value\";N;s:2:\"id\";s:1:\"2\";s:8:\"field_id\";s:1:\"2\";s:10:\"field_name\";s:4:\"body\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:4:\"page\";s:7:\"deleted\";s:1:\"0\";}s:11:\"items_count\";i:1;s:13:\"array_parents\";a:2:{i:0;s:4:\"body\";i:1;s:3:\"und\";}s:6:\"errors\";a:0:{}}}s:11:\"title_field\";a:1:{s:3:\"und\";a:5:{s:5:\"field\";a:16:{s:12:\"translatable\";s:1:\"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: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_title_field\";a:2:{s:5:\"value\";s:17:\"title_field_value\";s:6:\"format\";s:18:\"title_field_format\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:26:\"field_revision_title_field\";a:2:{s:5:\"value\";s:17:\"title_field_value\";s:6:\"format\";s:18:\"title_field_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:\"24\";s:10:\"field_name\";s:11:\"title_field\";s:4:\"type\";s:4:\"text\";s:6:\"module\";s:4:\"text\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:2:{s:5:\"value\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:8:{i:0;s:6:\"photos\";i:1;s:7:\"article\";i:2;s:4:\"page\";i:3;s:5:\"forum\";i:4;s:7:\"mooring\";i:5;s:26:\"openlayers_example_content\";i:6;s:19:\"photo_moorings_2012\";i:7;s:19:\"photo_moorings_2014\";}}}s:8:\"instance\";a:13:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:0:\"\";s:8:\"required\";i:1;s:8:\"settings\";a:4:{s:15:\"text_processing\";s:1:\"0\";s:10:\"hide_label\";a:2:{s:4:\"page\";i:0;s:6:\"entity\";i:0;}s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}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:7:\"display\";a:2:{s:7:\"default\";a:4:{s:5:\"label\";s:5:\"above\";s:4:\"type\";s:6:\"hidden\";s:6:\"weight\";s:1:\"1\";s:8:\"settings\";a:0:{}}s:6:\"teaser\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;}}s:13:\"default_value\";N;s:2:\"id\";s:2:\"44\";s:8:\"field_id\";s:2:\"24\";s:10:\"field_name\";s:11:\"title_field\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:4:\"page\";s:7:\"deleted\";s:1:\"0\";}s:11:\"items_count\";i:1;s:13:\"array_parents\";a:2:{i:0;s:11:\"title_field\";i:1;s:3:\"und\";}s:6:\"errors\";a:0:{}}}}s:13:\"process_input\";b:0;}',1652190172,1652168572,1),('form_state_form-fNvYgCNd1d-MD0fl2BVTIt_b7OyYxvRwjp8I5tgI8Qg','a:7:{s:10:\"build_info\";a:4:{s:4:\"args\";a:1:{i:0;O:8:\"stdClass\":36:{s:3:\"vid\";s:3:\"129\";s:3:\"uid\";s:1:\"1\";s:5:\"title\";s:20:\"2016/17 - PNRA XXXII\";s:3:\"log\";N;s:6:\"status\";s:1:\"1\";s:7:\"comment\";s:1:\"1\";s:7:\"promote\";s:1:\"0\";s:6:\"sticky\";s:1:\"0\";s:3:\"nid\";s:3:\"129\";s:4:\"type\";s:4:\"page\";s:8:\"language\";s:2:\"en\";s:7:\"created\";s:10:\"1533214901\";s:7:\"changed\";s:10:\"1533223974\";s:4:\"tnid\";s:1:\"0\";s:9:\"translate\";s:1:\"0\";s:18:\"revision_timestamp\";s:10:\"1533223974\";s:12:\"revision_uid\";s:1:\"1\";s:4:\"body\";a:1:{s:2:\"en\";a:1:{i:0;a:5:{s:5:\"value\";s:15899:\"<h1 align= \"center\"><strong>Rapporto sulla Campagna Antartica (estratto)</strong></h1>\r\n\r\n<h2 align=\"center\"><strong>Estate Australe 2016-2017</strong></h2>\r\n\r\n<h3 align=\"center\"><strong>Trentduesima Spedizione (PNRA XXXII)</strong></h3>\r\n\r\n<p align=\"center\"><strong>Progetto 2009/B.09: Osservatorio Marino Nel Mare di Ross ( MORSea)</strong><br />\r\n<em>A. De Alteris, P. Falco, F. Grilli, G. Zambardino</em></p>\r\n\r\n<p align=\"justify\">Il progetto MORSea (http://morsea.uniparthenope.it) prevede la gestione e la manutenzione della rete di osservazioni marine attualmente esistente nel Mare di Ross. L’osservatorio è costituito da 4 catene correntometriche (mooring) contrassegnate dalle lettere “B”, “D”, “G” e “L”. Ogni punto di misura ha degli obiettivi specifici legati alla circolazione delle masse d’acqua che si generano sulla piattaforma e a quelle entranti attraverso il limite della scarpata continentale. In generale però l’obiettivo primario dell’osservatorio è quello di studiare la variabilità interannuale delle caratteristiche fisiche e geochimiche delle acque di shelf nel settore occidentale del Mare di Ross.\r\nA queste attività, negli ultimi anni si sono aggiunte delle misure di “ship of opportunity” effettuate quindi non impiegando tempo di navigazione della M/N Italica. Anche quest’anno infatti sono state eseguite misure di temperatura e salinità superficiale del mare (SST e SSS rispettivamente), lanci di XBT per la misura della struttura subsuperficiale dell’Oceano Meridionale; lanci di drifter e float (nell’ambito della collaborazione con il progetto ARGOItaly). In particolare le misure XBT hanno lo scopo essenziale di proseguire la serie storica di osservazioni, condotte durante la traversata dalla Nuova Zelanda fino al mare di Ross, realizzate al fine di caratterizzare la struttura della colonna d’acqua, fino alla profondità di 700 m, della Corrente Circumpolare Antartica (ACC), misure acquisite sin dal 1994.\r\nRelativamente all’attività dei mooring è da sottolineare che quest’anno è stato fatto un primo tentativo di svecchiamento della strumentazione utilizzata per le misure. In particolare, per quanto riguarda il mooring D, sono stati acquistati due nuovi sganciatori IXBLUE OCEANO 2500 che hanno sostituito i due precedenti ormai in cattive condizioni, è stato sostituito un vecchio correntometro RCM 7 con un nuovo correntometro Aanderaa Seaguard e aggiunta una sonda SBE 37 SMP al posto di un vecchio misuratore di temperatura SBE 39.\r\nInoltre, sul mooring G è stata aggiunta una sonda SBE 37 SMP ODO sul fondo. Ad ogni modo la percentuale di strumenti che, in diversi casi, risalgono a oltre 20 anni fa, è ancora decisamente prevalente per cui è auspicabile, quanto necessario, che questo primo tentativo di rinnovamento della strumentazione continui in futuro.\r\nIl materiale di consumo e di ricambio per le trappole di sedimento è stato fornito: dal dott. M. Capello (Univ. di Genova) per i mooring “D” e “L” (2 trappole), dal dott. L. Langone (CNR – ISMAR) per il mooring “B” (1 trappola). Sfortunatamente, il motore della trappola del mooring L ha mostrato malfunzionamenti non risolvibili a bordo per cui, non disponendo di un motore sostitutivo, è stato impossibile rimetterla in mare.\r\nLe attività di recupero e rimessa a mare sono state effettuate in simbiosi con il gruppo di Oceanografia Fisica (Dr. P. Castango e M. De Stefano) e con il contributo del Dr. L. Langone.\r\nDa prassi ormai consolidata, sono state effettuate calate di CTD/LADCP - per la verifica e taratura dei sensori posizionati sulle catene correntometriche - prima del loro recupero e dopo il loro posizionamento. Proprio durante la stazione di calibrazione avvenuta prima del recupero del mooring G, a causa di un violento urto del frame contenente la sensoristica per le misure, alcuni sensori, compresa la sonda principale SBE 9 plus, hanno riportato danni che hanno impedito il loro utilizzo nel prosieguo della campagna. Oltre alla sonda, anche il sensore di O2 e due sensori di temperatura e uno di conducibiltà della sonda MicroRider 1000 (anch’essa montata sul frame) sono risultati non funzionanti ed è stata necessaria la sostituzione con i sensori di rispetto.\r\nNel seguito vengono descritte le attività svolte su ogni catena correntometrica ed in tabella TM1 viene riportata la scheda riassuntiva dei periodi di funzionamento di ogni strumento. Tutti le date e gli orari sono riportati in UTC.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “D”</strong><br />\r\nIl mooring “D” è stato recuperato l’8 gennaio 2017 e rimesso in mare il giorno 11 febbraio 2017. Il comportamento degli sganciatori è risultato anomalo. Gli strumenti funzionano, sono cioè in grado di operare lo sgancio, ma non hanno dato alcuna informazione riguardo il loro stato e non rispondono ai codici di enable e disable. Tale comportamento era già stato evidenziato durante il precedente recupero. Considerando l’età degli strumenti e l’importanza del mooring si è deciso di acquistare due nuovi sganciatori e di sostituire quindi i vecchi.\r\nL’ordinaria manutenzione della strumentazione presente non ha mostrato particolari criticità se non nel caso della sonda di SBE37 SMP ODO acquistata pochi mesi prima della XXXI campagna e aggiunta al mooring. La sonda ha interrotto l’acquisizione dopo circa 5 mesi dal posizionamento per cause non bene chiarite nemmeno dalla casa costruttrice contattata tramite il rappresentante italiano. Dopo vari test di funzionamento svolti a bordo e d’accordo con la casa costruttrice, si è deciso di utilizzarla nuovamente.\r\nIl mooring “D” è stato rimesso in posizione nella configurazione illustrata in figura M2. Rispetto alla precedente configurazione, è stato sostituito un correntometro Aanderaa RCM 7 alla quota di circa 880 m con un Aanderaa SeaGuard e al posto di una sonda SBE 39 è stato usato un SBE 37 SMP, quindi con misura anche di pressione e salinità alla quota di circa 750 m. Infine è stata sostituita la coppia di sganciatori per i quali è necessaria una manutenzione prima di un eventuale riutilizzo, e al loro posto è stata montata una coppia di sganciatori nuovi della IXBLUE.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “L”</strong><br />\r\nIl mooring “L” è stato recuperato il 10 gennaio 2017 e rimesso in mare il 22 gennaio successivo.\r\nDurante la manutenzione della trappola di sedimento si sono riscontrate anomalie di funzionamento del motore che regola lo scorrimento delle bottigliette che raccolgono il sedimento. Non è stato possibile intervenire per riparare il guasto e tanto meno sostituire il motore in quando non disponibile uno di ricambio. Si è pertanto dovuto optare per la rimozione momentanea dal mooring della trappola. I problemi di recupero manifestati durante le spedizioni del 2013/14 e 2015/16, sono stati superati dall’aggiunta (eseguita la scorsa campagna oceanografica) di ulteriori boe di spinta che hanno consentito un risalita corretta di tutta la struttura. La configurazione del mooring riposizionato è riportata in figura M4.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “B”</strong><br />\r\nIl mooring “B” è stato recuperato il 17 gennaio e rimesso in mare il 30 gennaio 2017.\r\nIl recupero di questo mooring, che nelle ultime due spedizioni era risultato particolarmente complicato, quest’anno è avvenuto in modo regolare. Anche in questo caso l’aggiunta di ulteriori spinte decise durante la campagna della XXXI spedizione, è risultata determinante al fine di un corretto recupero. Rimangono perplessità riguardo alle cause che non hanno consentito a tutta la struttura di venire a galla spontaneamente nelle precedenti occasioni di recupero. Per verificare l’efficacia delle spinte sono state eseguite prove di galleggiabilità di tutti i gruppi boa presenti sul mooring, applicando un peso pari alla spinta nominale della boa e filando in acqua tutto per verificarne il comportamento. In tutti i casi le boe hanno sostenuto il peso dimostrando di essere ancora efficienti.\r\nAd ogni modo, onde evitare problemi in futuro, si è deciso di applicare un’ulteriore boa di spinta da 25 kg (tipo Vitrovex) nel settore immediatamente superiore alla trappola di sedimento presente alla quota di 460 metri. Dopo la manutenzione del caso, la catena correntometrica è stata riposizionata nella configurazione riportata in figura M1, sostanzialmente analoga al precedente periodo, ma aumentando la spinta di galleggiamento.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “G”</strong><br />\r\nIl mooring “G” è stato recuperato il 06 febbraio e rimesso in mare 09/02/2016.\r\nL’operazione di recupero, anche se condotta con mare 4/5, è stata eseguita in modo rapido e corretto (inizio ascolto ore 00:47 del 6/02, sganciatore a bordo ore 01:53 del 6/02). La manutenzione della strumentazione (come per i mooring precedenti) non ha messo in evidenza alcuna criticità sia dal punto di vista dell’integrità della strumentazione che del processo di acquisizione dati.\r\nAl fine di ottenere informazioni più mirate riguardo il transito della HSSW sul fondo nella zona di G, è stata aggiunta al mooring, nel suo settore più profondo, una sonda SBE 37 SMP ODO. Da riscontri fatti in rapporti di attività precedenti, si è rilevato che già in passato era presente una sonda simile e quindi si è pensato di ripristinare questa importante quota di misura dei parametri di T ed S aggiungendo però il parametro O2.\r\nLa configurazione del mooring riposizionato è riportata in figura M3.\r\nIn tabella TM1 vengono elencate le informazioni principali sul funzionamento della strumentazione alloggiata sui mooring nel periodo 2016-17, tenendo conto che:\r\n- le profondità [m] si riferiscono agli schemi della campagna 2015-2016;\r\n- gli intervalli riportati si riferiscono al periodo effettivo di misura valida in acqua e alla profondità indicata nella prima colonna.</p>\r\n\r\n<p align=\"justify\"><strong>Misure in continuo di temperatura e salinità superficiale</strong><br />\r\nDurante tutta la campagna si sono misurate la temperatura e la salinità superficiale del mare (SST – Sea Surface Temperature; SSS – Sea Surface Salinity) utilizzando la presa d’acqua a circa 4 metri di profondità. L’attività è stata condotta con il gruppo di Oceanografia Fisica.\r\nL’attività di misura in continuo è iniziata il 30 dicembre 2016, appena lasciato il fiordo di Lyttleton, ed è continuata sino al ritorno in Nuova Zelanda. Per queste misure sono stati impiegati tre sensori (due di temperatura e uno di conducibilità) gestiti dal sistema SBE-21 e un GPS Garmin; l’intervallo di acquisizione è stato di 30”. I dati hanno subìto un primo processamento a bordo per l’eliminazione dei picchi dovuti sostanzialmente al rollio della nave e alla presenza di ghiacci.\r\nDi particolare interesse sono i dati acquisiti durante le due traversate oceaniche tra Nuova Zelanda e Mare di Ross (andata e ritorno, non mostrati) in quanto permetteranno di determinare le posizioni dei fronti termoalini in superficie che in questa zona separano le zone a dinamica diversa della ACC. Questi dati risultano molto utili se integrati con i dati XBT e inoltre rappresentano la verità mare per validazioni di modelli e misure satellitari.\r\nAnche le misure di SST e SSS, come quelle con gli XBT, rappresentano quelle osservazioni ricorrenti della Antarctic Circumpolar Current sollecitate e regolate dal SOOS (Southern Ocean Observing System, http://www.soos.aq/).</p>\r\n\r\n<p align=\"justify\"><strong>Misure XBT</strong><br />\r\nI lanci di sonde XBT (SIPPICAN mod.T7, prof. max 760 m) sono iniziati il 31 dicembre 2016 alla latitudine 48°S e sono terminati il 05 gennaio 2017 alla latitudine di 68°46’S; la distanza tra ogni punto di campionamento è statao, come in passato, di 15 miglia nautiche e sono state utilizzate 90 sonde lungo la rotta seguita per entrare nel Mare di Ross; solo 3 di 90 sonde hanno mostrato problemi di funzionamento dovuti quasi esclusivamente al contatto del cavo conduttore in rame con lo scafo della nave.\r\nI dati hanno subìto un primo processamento a bordo per eliminare i valori spuri, i primi metri influenzati dall’inerzia termica del sensore e gli eventuali dati affetti dalla presenza del fondo. In figura 3 è riportata la sezione in temperatura dello strato sub-superficiale fino alla profondità massima di 700 m.\r\nLe misure XBT rappresentano quelle osservazioni ricorrenti della Antarctic Circumpolar Current sollecitate e regolate dal SOOS (Southern Ocean Observing System). Considerando che tali indagini sono iniziate nel 1994, portate avanti nell’ambito di diversi progetti PNRA, si può ritenere assodata la valenza a scala climatologica dato il lungo periodo che coprono.\r\nDurante il viaggio di ritorno, avendo disponibili ancora 6 sonde XBT, si è pensato di eseguire lanci a 15’ di latitudine di distanza per cercare di osservare il limite meridionale di intrusione di MCDW lungo la costa occidentale del mare di Ross. La latitudine di partenza dei lanci è stata 73°30’S e si è giunti fino a 72°15’S. I lanci sono cominciati il 14/02/2017 alle ore 23.30 circa e terminati il giorno 15/02/2017 alle ore 5.00 circa.\r\n<p ALIGN=\"center\"><a href=\" \"><img alt=\"\" src=\"/sites/all/themes/multipurpose/images/fig_XXXII.png\" width=\"600px\" /></a></p>\r\n<p align=\"justify\"><strong>Figura 1. Sezione verticale della distribuzione della temperatura misurata dal 31/12/2016 al 05/01/2017 (raw data).</strong></p>\r\n\r\n<p align=\"justify\"><strong>Floats</strong><br />\r\nOltre agli XBT, durante il trasferimento verso il mare di Ross, sono stati rilasciati in mare 10 float e 10 drifter. Queste misure rientrano nella collaborazione con il progetto ARGOItaly, che ha fornito gli strumenti (http://nettuno.ogs.trieste.it/jungo/argoitaly/floats.html), attività volta a fornire un contributo italiano all’interno del più ampio programma di osservazione, a scala globale, degli oceani denominato ARGO.\r\nI float sono strumenti autonomi lagrangiani ovvero, una volta rilasciati in mare, sono trasportati dalle correnti marine a una profondità predeterminata. A intervalli regolari la sonda sale in superficie misurando le proprietà termoaline che poi vengono trasmesse via satellite al centro di raccolta dati.\r\nIl ciclo tipico dei float utilizzato è quello standard stabilito nel programma ARGO, ovvero la cosiddetta “parking depth” (ovvero la profondità alla quale il float arresta la discesa ed è trasportato passivamente dalle correnti) è a 1000 metri; al termine di un intervallo di 10 giorni il float è programmato per immergersi sino a 2000 metri e poi di risalire in superficie (dove rimane per 6 ore) per eseguire il profilo di temperatura e salinità e per la trasmissione dei dati acquisiti.\r\nI float utilizzati nel progetto, in particolare, hanno un sistema di comunicazione satellitare bi-direzionale (Iridium) per poter modificare a distanza i parametri di missione. Quest’anno tra i float disponibili sono strati resi disponibili tre con inserito l’algoritmo per il rilevamento del ghiaccio in superficie. Questa tipologia di float potrebbe consentire un monitoraggio delle fasce polari dove la formazione di ghiaccio marino durante l’inverno impedisce l’affioramento dei float in superficie e spesso causa anche il loro danneggiamento.\r\nI drifter sono sempre strumenti lagrangiani, ma rimangono in superficie trasmettendo in tempo reale le posizioni e il valore di temperatura superficiale. Anche quest’anno sono stati rilasciati drifter del tipo Surface Velocity Programme (SVP) particolarmente adatti a misure di corrente superficiale in oceano aperto. I lanci dei drifter e dei float sono avvenuti simultaneamente e sono cominciati il giorno 02/01/2017 a circa 55°S, terminati il giorno successivo a 63°S.\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:9:\"full_html\";s:10:\"safe_value\";s:16154:\"<h1 align=\"center\"><strong>Rapporto sulla Campagna Antartica (estratto)</strong></h1>\n<h2 align=\"center\"><strong>Estate Australe 2016-2017</strong></h2>\n<h3 align=\"center\"><strong>Trentduesima Spedizione (PNRA XXXII)</strong></h3>\n<p align=\"center\"><strong>Progetto 2009/B.09: Osservatorio Marino Nel Mare di Ross ( MORSea)</strong><br /><em>A. De Alteris, P. Falco, F. Grilli, G. Zambardino</em></p>\n<p align=\"justify\">Il progetto MORSea (<a href=\"http://morsea.uniparthenope.it\">http://morsea.uniparthenope.it</a>) prevede la gestione e la manutenzione della rete di osservazioni marine attualmente esistente nel Mare di Ross. L’osservatorio è costituito da 4 catene correntometriche (mooring) contrassegnate dalle lettere “B”, “D”, “G” e “L”. Ogni punto di misura ha degli obiettivi specifici legati alla circolazione delle masse d’acqua che si generano sulla piattaforma e a quelle entranti attraverso il limite della scarpata continentale. In generale però l’obiettivo primario dell’osservatorio è quello di studiare la variabilità interannuale delle caratteristiche fisiche e geochimiche delle acque di shelf nel settore occidentale del Mare di Ross.<br />\nA queste attività, negli ultimi anni si sono aggiunte delle misure di “ship of opportunity” effettuate quindi non impiegando tempo di navigazione della M/N Italica. Anche quest’anno infatti sono state eseguite misure di temperatura e salinità superficiale del mare (SST e SSS rispettivamente), lanci di XBT per la misura della struttura subsuperficiale dell’Oceano Meridionale; lanci di drifter e float (nell’ambito della collaborazione con il progetto ARGOItaly). In particolare le misure XBT hanno lo scopo essenziale di proseguire la serie storica di osservazioni, condotte durante la traversata dalla Nuova Zelanda fino al mare di Ross, realizzate al fine di caratterizzare la struttura della colonna d’acqua, fino alla profondità di 700 m, della Corrente Circumpolare Antartica (ACC), misure acquisite sin dal 1994.<br />\nRelativamente all’attività dei mooring è da sottolineare che quest’anno è stato fatto un primo tentativo di svecchiamento della strumentazione utilizzata per le misure. In particolare, per quanto riguarda il mooring D, sono stati acquistati due nuovi sganciatori IXBLUE OCEANO 2500 che hanno sostituito i due precedenti ormai in cattive condizioni, è stato sostituito un vecchio correntometro RCM 7 con un nuovo correntometro Aanderaa Seaguard e aggiunta una sonda SBE 37 SMP al posto di un vecchio misuratore di temperatura SBE 39.<br />\nInoltre, sul mooring G è stata aggiunta una sonda SBE 37 SMP ODO sul fondo. Ad ogni modo la percentuale di strumenti che, in diversi casi, risalgono a oltre 20 anni fa, è ancora decisamente prevalente per cui è auspicabile, quanto necessario, che questo primo tentativo di rinnovamento della strumentazione continui in futuro.<br />\nIl materiale di consumo e di ricambio per le trappole di sedimento è stato fornito: dal dott. M. Capello (Univ. di Genova) per i mooring “D” e “L” (2 trappole), dal dott. L. Langone (CNR – ISMAR) per il mooring “B” (1 trappola). Sfortunatamente, il motore della trappola del mooring L ha mostrato malfunzionamenti non risolvibili a bordo per cui, non disponendo di un motore sostitutivo, è stato impossibile rimetterla in mare.<br />\nLe attività di recupero e rimessa a mare sono state effettuate in simbiosi con il gruppo di Oceanografia Fisica (Dr. P. Castango e M. De Stefano) e con il contributo del Dr. L. Langone.<br />\nDa prassi ormai consolidata, sono state effettuate calate di CTD/LADCP - per la verifica e taratura dei sensori posizionati sulle catene correntometriche - prima del loro recupero e dopo il loro posizionamento. Proprio durante la stazione di calibrazione avvenuta prima del recupero del mooring G, a causa di un violento urto del frame contenente la sensoristica per le misure, alcuni sensori, compresa la sonda principale SBE 9 plus, hanno riportato danni che hanno impedito il loro utilizzo nel prosieguo della campagna. Oltre alla sonda, anche il sensore di O2 e due sensori di temperatura e uno di conducibiltà della sonda MicroRider 1000 (anch’essa montata sul frame) sono risultati non funzionanti ed è stata necessaria la sostituzione con i sensori di rispetto.<br />\nNel seguito vengono descritte le attività svolte su ogni catena correntometrica ed in tabella TM1 viene riportata la scheda riassuntiva dei periodi di funzionamento di ogni strumento. Tutti le date e gli orari sono riportati in UTC.</p>\n<p align=\"justify\"><strong>Mooring “D”</strong><br />\nIl mooring “D” è stato recuperato l’8 gennaio 2017 e rimesso in mare il giorno 11 febbraio 2017. Il comportamento degli sganciatori è risultato anomalo. Gli strumenti funzionano, sono cioè in grado di operare lo sgancio, ma non hanno dato alcuna informazione riguardo il loro stato e non rispondono ai codici di enable e disable. Tale comportamento era già stato evidenziato durante il precedente recupero. Considerando l’età degli strumenti e l’importanza del mooring si è deciso di acquistare due nuovi sganciatori e di sostituire quindi i vecchi.<br />\nL’ordinaria manutenzione della strumentazione presente non ha mostrato particolari criticità se non nel caso della sonda di SBE37 SMP ODO acquistata pochi mesi prima della XXXI campagna e aggiunta al mooring. La sonda ha interrotto l’acquisizione dopo circa 5 mesi dal posizionamento per cause non bene chiarite nemmeno dalla casa costruttrice contattata tramite il rappresentante italiano. Dopo vari test di funzionamento svolti a bordo e d’accordo con la casa costruttrice, si è deciso di utilizzarla nuovamente.<br />\nIl mooring “D” è stato rimesso in posizione nella configurazione illustrata in figura M2. Rispetto alla precedente configurazione, è stato sostituito un correntometro Aanderaa RCM 7 alla quota di circa 880 m con un Aanderaa SeaGuard e al posto di una sonda SBE 39 è stato usato un SBE 37 SMP, quindi con misura anche di pressione e salinità alla quota di circa 750 m. Infine è stata sostituita la coppia di sganciatori per i quali è necessaria una manutenzione prima di un eventuale riutilizzo, e al loro posto è stata montata una coppia di sganciatori nuovi della IXBLUE.</p>\n<p align=\"justify\"><strong>Mooring “L”</strong><br />\nIl mooring “L” è stato recuperato il 10 gennaio 2017 e rimesso in mare il 22 gennaio successivo.<br />\nDurante la manutenzione della trappola di sedimento si sono riscontrate anomalie di funzionamento del motore che regola lo scorrimento delle bottigliette che raccolgono il sedimento. Non è stato possibile intervenire per riparare il guasto e tanto meno sostituire il motore in quando non disponibile uno di ricambio. Si è pertanto dovuto optare per la rimozione momentanea dal mooring della trappola. I problemi di recupero manifestati durante le spedizioni del 2013/14 e 2015/16, sono stati superati dall’aggiunta (eseguita la scorsa campagna oceanografica) di ulteriori boe di spinta che hanno consentito un risalita corretta di tutta la struttura. La configurazione del mooring riposizionato è riportata in figura M4.</p>\n<p align=\"justify\"><strong>Mooring “B”</strong><br />\nIl mooring “B” è stato recuperato il 17 gennaio e rimesso in mare il 30 gennaio 2017.<br />\nIl recupero di questo mooring, che nelle ultime due spedizioni era risultato particolarmente complicato, quest’anno è avvenuto in modo regolare. Anche in questo caso l’aggiunta di ulteriori spinte decise durante la campagna della XXXI spedizione, è risultata determinante al fine di un corretto recupero. Rimangono perplessità riguardo alle cause che non hanno consentito a tutta la struttura di venire a galla spontaneamente nelle precedenti occasioni di recupero. Per verificare l’efficacia delle spinte sono state eseguite prove di galleggiabilità di tutti i gruppi boa presenti sul mooring, applicando un peso pari alla spinta nominale della boa e filando in acqua tutto per verificarne il comportamento. In tutti i casi le boe hanno sostenuto il peso dimostrando di essere ancora efficienti.<br />\nAd ogni modo, onde evitare problemi in futuro, si è deciso di applicare un’ulteriore boa di spinta da 25 kg (tipo Vitrovex) nel settore immediatamente superiore alla trappola di sedimento presente alla quota di 460 metri. Dopo la manutenzione del caso, la catena correntometrica è stata riposizionata nella configurazione riportata in figura M1, sostanzialmente analoga al precedente periodo, ma aumentando la spinta di galleggiamento.</p>\n<p align=\"justify\"><strong>Mooring “G”</strong><br />\nIl mooring “G” è stato recuperato il 06 febbraio e rimesso in mare 09/02/2016.<br />\nL’operazione di recupero, anche se condotta con mare 4/5, è stata eseguita in modo rapido e corretto (inizio ascolto ore 00:47 del 6/02, sganciatore a bordo ore 01:53 del 6/02). La manutenzione della strumentazione (come per i mooring precedenti) non ha messo in evidenza alcuna criticità sia dal punto di vista dell’integrità della strumentazione che del processo di acquisizione dati.<br />\nAl fine di ottenere informazioni più mirate riguardo il transito della HSSW sul fondo nella zona di G, è stata aggiunta al mooring, nel suo settore più profondo, una sonda SBE 37 SMP ODO. Da riscontri fatti in rapporti di attività precedenti, si è rilevato che già in passato era presente una sonda simile e quindi si è pensato di ripristinare questa importante quota di misura dei parametri di T ed S aggiungendo però il parametro O2.<br />\nLa configurazione del mooring riposizionato è riportata in figura M3.<br />\nIn tabella TM1 vengono elencate le informazioni principali sul funzionamento della strumentazione alloggiata sui mooring nel periodo 2016-17, tenendo conto che:<br />\n- le profondità [m] si riferiscono agli schemi della campagna 2015-2016;<br />\n- gli intervalli riportati si riferiscono al periodo effettivo di misura valida in acqua e alla profondità indicata nella prima colonna.</p>\n<p align=\"justify\"><strong>Misure in continuo di temperatura e salinità superficiale</strong><br />\nDurante tutta la campagna si sono misurate la temperatura e la salinità superficiale del mare (SST – Sea Surface Temperature; SSS – Sea Surface Salinity) utilizzando la presa d’acqua a circa 4 metri di profondità. L’attività è stata condotta con il gruppo di Oceanografia Fisica.<br />\nL’attività di misura in continuo è iniziata il 30 dicembre 2016, appena lasciato il fiordo di Lyttleton, ed è continuata sino al ritorno in Nuova Zelanda. Per queste misure sono stati impiegati tre sensori (due di temperatura e uno di conducibilità) gestiti dal sistema SBE-21 e un GPS Garmin; l’intervallo di acquisizione è stato di 30”. I dati hanno subìto un primo processamento a bordo per l’eliminazione dei picchi dovuti sostanzialmente al rollio della nave e alla presenza di ghiacci.<br />\nDi particolare interesse sono i dati acquisiti durante le due traversate oceaniche tra Nuova Zelanda e Mare di Ross (andata e ritorno, non mostrati) in quanto permetteranno di determinare le posizioni dei fronti termoalini in superficie che in questa zona separano le zone a dinamica diversa della ACC. Questi dati risultano molto utili se integrati con i dati XBT e inoltre rappresentano la verità mare per validazioni di modelli e misure satellitari.<br />\nAnche le misure di SST e SSS, come quelle con gli XBT, rappresentano quelle osservazioni ricorrenti della Antarctic Circumpolar Current sollecitate e regolate dal SOOS (Southern Ocean Observing System, <a href=\"http://www.soos.aq/\">http://www.soos.aq/</a>).</p>\n<p align=\"justify\"><strong>Misure XBT</strong><br />\nI lanci di sonde XBT (SIPPICAN mod.T7, prof. max 760 m) sono iniziati il 31 dicembre 2016 alla latitudine 48°S e sono terminati il 05 gennaio 2017 alla latitudine di 68°46’S; la distanza tra ogni punto di campionamento è statao, come in passato, di 15 miglia nautiche e sono state utilizzate 90 sonde lungo la rotta seguita per entrare nel Mare di Ross; solo 3 di 90 sonde hanno mostrato problemi di funzionamento dovuti quasi esclusivamente al contatto del cavo conduttore in rame con lo scafo della nave.<br />\nI dati hanno subìto un primo processamento a bordo per eliminare i valori spuri, i primi metri influenzati dall’inerzia termica del sensore e gli eventuali dati affetti dalla presenza del fondo. In figura 3 è riportata la sezione in temperatura dello strato sub-superficiale fino alla profondità massima di 700 m.<br />\nLe misure XBT rappresentano quelle osservazioni ricorrenti della Antarctic Circumpolar Current sollecitate e regolate dal SOOS (Southern Ocean Observing System). Considerando che tali indagini sono iniziate nel 1994, portate avanti nell’ambito di diversi progetti PNRA, si può ritenere assodata la valenza a scala climatologica dato il lungo periodo che coprono.<br />\nDurante il viaggio di ritorno, avendo disponibili ancora 6 sonde XBT, si è pensato di eseguire lanci a 15’ di latitudine di distanza per cercare di osservare il limite meridionale di intrusione di MCDW lungo la costa occidentale del mare di Ross. La latitudine di partenza dei lanci è stata 73°30’S e si è giunti fino a 72°15’S. I lanci sono cominciati il 14/02/2017 alle ore 23.30 circa e terminati il giorno 15/02/2017 alle ore 5.00 circa.</p>\n<p align=\"center\"><a href=\" \"><img alt=\"\" src=\"/sites/all/themes/multipurpose/images/fig_XXXII.png\" width=\"600px\" /></a></p>\n<p align=\"justify\"><strong>Figura 1. Sezione verticale della distribuzione della temperatura misurata dal 31/12/2016 al 05/01/2017 (raw data).</strong></p>\n<p align=\"justify\"><strong>Floats</strong><br />\nOltre agli XBT, durante il trasferimento verso il mare di Ross, sono stati rilasciati in mare 10 float e 10 drifter. Queste misure rientrano nella collaborazione con il progetto ARGOItaly, che ha fornito gli strumenti (<a href=\"http://nettuno.ogs.trieste.it/jungo/argoitaly/floats.html\">http://nettuno.ogs.trieste.it/jungo/argoitaly/floats.html</a>), attività volta a fornire un contributo italiano all’interno del più ampio programma di osservazione, a scala globale, degli oceani denominato ARGO.<br />\nI float sono strumenti autonomi lagrangiani ovvero, una volta rilasciati in mare, sono trasportati dalle correnti marine a una profondità predeterminata. A intervalli regolari la sonda sale in superficie misurando le proprietà termoaline che poi vengono trasmesse via satellite al centro di raccolta dati.<br />\nIl ciclo tipico dei float utilizzato è quello standard stabilito nel programma ARGO, ovvero la cosiddetta “parking depth” (ovvero la profondità alla quale il float arresta la discesa ed è trasportato passivamente dalle correnti) è a 1000 metri; al termine di un intervallo di 10 giorni il float è programmato per immergersi sino a 2000 metri e poi di risalire in superficie (dove rimane per 6 ore) per eseguire il profilo di temperatura e salinità e per la trasmissione dei dati acquisiti.<br />\nI float utilizzati nel progetto, in particolare, hanno un sistema di comunicazione satellitare bi-direzionale (Iridium) per poter modificare a distanza i parametri di missione. Quest’anno tra i float disponibili sono strati resi disponibili tre con inserito l’algoritmo per il rilevamento del ghiaccio in superficie. Questa tipologia di float potrebbe consentire un monitoraggio delle fasce polari dove la formazione di ghiaccio marino durante l’inverno impedisce l’affioramento dei float in superficie e spesso causa anche il loro danneggiamento.<br />\nI drifter sono sempre strumenti lagrangiani, ma rimangono in superficie trasmettendo in tempo reale le posizioni e il valore di temperatura superficiale. Anche quest’anno sono stati rilasciati drifter del tipo Surface Velocity Programme (SVP) particolarmente adatti a misure di corrente superficiale in oceano aperto. I lanci dei drifter e dei float sono avvenuti simultaneamente e sono cominciati il giorno 02/01/2017 a circa 55°S, terminati il giorno successivo a 63°S.</p>\n\";s:12:\"safe_summary\";s:0:\"\";}}}s:11:\"title_field\";a:1:{s:2:\"en\";a:1:{i:0;a:3:{s:5:\"value\";s:20:\"2016/17 - PNRA XXXII\";s:6:\"format\";N;s:10:\"safe_value\";s:20:\"2016/17 - PNRA XXXII\";}}}s:12:\"translations\";O:8:\"stdClass\":2:{s:8:\"original\";N;s:4:\"data\";a:0:{}}s:14:\"title_original\";s:20:\"2016/17 - PNRA XXXII\";s:29:\"entity_translation_handler_id\";s:21:\"node-page-eid-129-129\";s:11:\"rdf_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\";}}s:3:\"cid\";s:1:\"0\";s:22:\"last_comment_timestamp\";s:10:\"1533214901\";s:17:\"last_comment_name\";N;s:16:\"last_comment_uid\";s:1:\"1\";s:13:\"comment_count\";s:1:\"0\";s:9:\"locations\";a:0:{}s:8:\"location\";a:0:{}s:4:\"name\";s:5:\"admin\";s:7:\"picture\";s:1:\"0\";s:4:\"data\";s:4:\"b:0;\";s:4:\"date\";s:25:\"2018-08-02 15:01:41 +0200\";s:8:\"revision\";b:0;s:4:\"menu\";a:12:{s:10:\"link_title\";s:0:\"\";s:4:\"mlid\";i:0;s:4:\"plid\";i:0;s:9:\"menu_name\";s:9:\"main-menu\";s:6:\"weight\";i:0;s:7:\"options\";a:0:{}s:6:\"module\";s:4:\"menu\";s:8:\"expanded\";i:0;s:6:\"hidden\";i:0;s:12:\"has_children\";i:0;s:10:\"customized\";i:0;s:18:\"parent_depth_limit\";i:8;}}}s:7:\"form_id\";s:14:\"page_node_form\";s:5:\"files\";a:1:{s:4:\"menu\";s:27:\"modules/node/node.pages.inc\";}s:12:\"base_form_id\";s:9:\"node_form\";}s:10:\"programmed\";b:0;s:30:\"programmed_bypass_access_check\";b:1;s:5:\"cache\";b:1;s:4:\"node\";r:4;s:5:\"field\";a:2:{s:4:\"body\";a:1:{s:2:\"en\";a:5:{s:5:\"field\";a:16:{s:12:\"entity_types\";a:1:{i:0;s:4:\"node\";}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:8:\"settings\";a:1:{s:23:\"entity_translation_sync\";b:0;}s:12:\"translatable\";s:1:\"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:15:\"field_data_body\";a:3:{s:5:\"value\";s:10:\"body_value\";s:7:\"summary\";s:12:\"body_summary\";s:6:\"format\";s:11:\"body_format\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:19:\"field_revision_body\";a:3:{s:5:\"value\";s:10:\"body_value\";s:7:\"summary\";s:12:\"body_summary\";s:6:\"format\";s:11:\"body_format\";}}}}}s:2:\"id\";s:1:\"2\";s:10:\"field_name\";s:4:\"body\";s:4:\"type\";s:17:\"text_with_summary\";s:6:\"module\";s:4:\"text\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:3:{s:5:\"value\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:7:\"summary\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"size\";s:3:\"big\";s:8:\"not null\";b:0;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:9:{i:0;s:4:\"page\";i:1;s:7:\"article\";i:2;s:6:\"photos\";i:3;s:26:\"openlayers_example_content\";i:4;s:7:\"mooring\";i:5;s:19:\"photo_moorings_2014\";i:6;s:19:\"photo_moorings_2012\";i:7;s:5:\"forum\";i:8;s:19:\"photo_moorings_2010\";}}}s:8:\"instance\";a:13:{s:5:\"label\";s:4:\"Body\";s:6:\"widget\";a:5:{s:6:\"weight\";s:1:\"2\";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: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:6:\"weight\";s:1:\"0\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";}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\";i:0;s:11:\"description\";s:0:\"\";s:13:\"default_value\";N;s:2:\"id\";s:1:\"2\";s:8:\"field_id\";s:1:\"2\";s:10:\"field_name\";s:4:\"body\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:4:\"page\";s:7:\"deleted\";s:1:\"0\";}s:11:\"items_count\";i:1;s:13:\"array_parents\";a:2:{i:0;s:4:\"body\";i:1;s:2:\"en\";}s:6:\"errors\";a:0:{}}}s:11:\"title_field\";a:1:{s:2:\"en\";a:5:{s:5:\"field\";a:16:{s:12:\"translatable\";s:1:\"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: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_title_field\";a:2:{s:5:\"value\";s:17:\"title_field_value\";s:6:\"format\";s:18:\"title_field_format\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:26:\"field_revision_title_field\";a:2:{s:5:\"value\";s:17:\"title_field_value\";s:6:\"format\";s:18:\"title_field_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:\"24\";s:10:\"field_name\";s:11:\"title_field\";s:4:\"type\";s:4:\"text\";s:6:\"module\";s:4:\"text\";s:6:\"active\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:11:\"cardinality\";s:1:\"1\";s:7:\"deleted\";s:1:\"0\";s:7:\"columns\";a:2:{s:5:\"value\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}s:6:\"format\";a:3:{s:4:\"type\";s:7:\"varchar\";s:6:\"length\";i:255;s:8:\"not null\";b:0;}}s:7:\"bundles\";a:1:{s:4:\"node\";a:8:{i:0;s:6:\"photos\";i:1;s:7:\"article\";i:2;s:4:\"page\";i:3;s:5:\"forum\";i:4;s:7:\"mooring\";i:5;s:26:\"openlayers_example_content\";i:6;s:19:\"photo_moorings_2012\";i:7;s:19:\"photo_moorings_2014\";}}}s:8:\"instance\";a:13:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:0:\"\";s:8:\"required\";i:1;s:8:\"settings\";a:4:{s:15:\"text_processing\";s:1:\"0\";s:10:\"hide_label\";a:2:{s:4:\"page\";i:0;s:6:\"entity\";i:0;}s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}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:7:\"display\";a:2:{s:7:\"default\";a:4:{s:5:\"label\";s:5:\"above\";s:4:\"type\";s:6:\"hidden\";s:6:\"weight\";s:1:\"1\";s:8:\"settings\";a:0:{}}s:6:\"teaser\";a:4:{s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;}}s:13:\"default_value\";N;s:2:\"id\";s:2:\"44\";s:8:\"field_id\";s:2:\"24\";s:10:\"field_name\";s:11:\"title_field\";s:11:\"entity_type\";s:4:\"node\";s:6:\"bundle\";s:4:\"page\";s:7:\"deleted\";s:1:\"0\";}s:11:\"items_count\";i:1;s:13:\"array_parents\";a:2:{i:0;s:11:\"title_field\";i:1;s:2:\"en\";}s:6:\"errors\";a:0:{}}}}s:13:\"process_input\";b:0;}',1652184251,1652162651,1);
/*!40000 ALTER TABLE `cache_form` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cache_geocoder`
--

DROP TABLE IF EXISTS `cache_geocoder`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cache_geocoder` (
  `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
  `data` longblob DEFAULT NULL COMMENT 'A collection of data to cache.',
  `expire` int(11) NOT NULL DEFAULT 0 COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
  `created` int(11) NOT NULL DEFAULT 0 COMMENT 'A Unix timestamp indicating when the cache entry was created.',
  `serialized` smallint(6) NOT NULL DEFAULT 0 COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
  PRIMARY KEY (`cid`),
  KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cache table for the geocoder module to store geocoded...';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cache_geocoder`
--

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

--
-- Table structure for table `cache_image`
--

DROP TABLE IF EXISTS `cache_image`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cache_image` (
  `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
  `data` longblob DEFAULT NULL COMMENT 'A collection of data to cache.',
  `expire` int(11) NOT NULL DEFAULT 0 COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
  `created` int(11) NOT NULL DEFAULT 0 COMMENT 'A Unix timestamp indicating when the cache entry was created.',
  `serialized` smallint(6) NOT NULL DEFAULT 0 COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
  PRIMARY KEY (`cid`),
  KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cache table used to store information about image...';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cache_image`
--

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

--
-- Table structure for table `cache_l10n_update`
--

DROP TABLE IF EXISTS `cache_l10n_update`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cache_l10n_update` (
  `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
  `data` longblob DEFAULT NULL COMMENT 'A collection of data to cache.',
  `expire` int(11) NOT NULL DEFAULT 0 COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
  `created` int(11) NOT NULL DEFAULT 0 COMMENT 'A Unix timestamp indicating when the cache entry was created.',
  `serialized` smallint(6) NOT NULL DEFAULT 0 COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
  PRIMARY KEY (`cid`),
  KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cache table for the Localization Update module to store...';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cache_l10n_update`
--

LOCK TABLES `cache_l10n_update` WRITE;
/*!40000 ALTER TABLE `cache_l10n_update` DISABLE KEYS */;
INSERT INTO `cache_l10n_update` VALUES ('l10n_update_available_releases','a:26:{s:12:\"addressfield\";a:1:{s:2:\"it\";O:8:\"stdClass\":13:{s:4:\"name\";s:12:\"addressfield\";s:12:\"project_type\";s:6:\"module\";s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:7:\"7.x-1.2\";s:11:\"l10n_server\";s:0:\"\";s:9:\"l10n_path\";s:91:\"http://ftp.drupal.org/files/translations/7.x/addressfield/addressfield-7.x-1.2.%language.po\";s:6:\"status\";s:1:\"1\";s:7:\"project\";s:12:\"addressfield\";s:8:\"language\";s:2:\"it\";s:8:\"filename\";s:26:\"addressfield-7.x-1.2.it.po\";s:4:\"type\";s:8:\"download\";s:7:\"fileurl\";s:92:\"https://ftp-origin.drupal.org/files/translations/7.x/addressfield/addressfield-7.x-1.2.it.po\";s:9:\"timestamp\";i:1444459673;}}s:22:\"alpha_responsive_theme\";a:1:{s:2:\"it\";O:8:\"stdClass\":13:{s:4:\"name\";s:22:\"alpha_responsive_theme\";s:12:\"project_type\";s:5:\"theme\";s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:7:\"7.x-1.4\";s:11:\"l10n_server\";s:0:\"\";s:9:\"l10n_path\";s:111:\"http://ftp.drupal.org/files/translations/7.x/alpha_responsive_theme/alpha_responsive_theme-7.x-1.4.%language.po\";s:6:\"status\";s:1:\"1\";s:7:\"project\";s:22:\"alpha_responsive_theme\";s:8:\"language\";s:2:\"it\";s:8:\"filename\";s:36:\"alpha_responsive_theme-7.x-1.4.it.po\";s:4:\"type\";s:8:\"download\";s:7:\"fileurl\";s:112:\"https://ftp-origin.drupal.org/files/translations/7.x/alpha_responsive_theme/alpha_responsive_theme-7.x-1.4.it.po\";s:9:\"timestamp\";i:1511891058;}}s:8:\"colorbox\";a:1:{s:2:\"it\";O:8:\"stdClass\":13:{s:4:\"name\";s:8:\"colorbox\";s:12:\"project_type\";s:6:\"module\";s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:7:\"7.x-2.8\";s:11:\"l10n_server\";s:0:\"\";s:9:\"l10n_path\";s:83:\"http://ftp.drupal.org/files/translations/7.x/colorbox/colorbox-7.x-2.8.%language.po\";s:6:\"status\";s:1:\"1\";s:7:\"project\";s:8:\"colorbox\";s:8:\"language\";s:2:\"it\";s:8:\"filename\";s:22:\"colorbox-7.x-2.8.it.po\";s:4:\"type\";s:8:\"download\";s:7:\"fileurl\";s:84:\"https://ftp-origin.drupal.org/files/translations/7.x/colorbox/colorbox-7.x-2.8.it.po\";s:9:\"timestamp\";i:1424337643;}}s:6:\"ctools\";a:1:{s:2:\"it\";O:8:\"stdClass\":13:{s:4:\"name\";s:6:\"ctools\";s:12:\"project_type\";s:6:\"module\";s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:8:\"7.x-1.14\";s:11:\"l10n_server\";s:0:\"\";s:9:\"l10n_path\";s:80:\"http://ftp.drupal.org/files/translations/7.x/ctools/ctools-7.x-1.14.%language.po\";s:6:\"status\";s:1:\"1\";s:7:\"project\";s:6:\"ctools\";s:8:\"language\";s:2:\"it\";s:8:\"filename\";s:21:\"ctools-7.x-1.14.it.po\";s:4:\"type\";s:8:\"download\";s:7:\"fileurl\";s:81:\"https://ftp-origin.drupal.org/files/translations/7.x/ctools/ctools-7.x-1.14.it.po\";s:9:\"timestamp\";i:1587553752;}}s:6:\"drupal\";a:1:{s:2:\"it\";O:8:\"stdClass\":13:{s:4:\"name\";s:6:\"drupal\";s:12:\"project_type\";s:4:\"core\";s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:4:\"7.59\";s:11:\"l10n_server\";s:0:\"\";s:9:\"l10n_path\";s:76:\"http://ftp.drupal.org/files/translations/7.x/drupal/drupal-7.59.%language.po\";s:6:\"status\";s:1:\"1\";s:7:\"project\";s:6:\"drupal\";s:8:\"language\";s:2:\"it\";s:8:\"filename\";s:17:\"drupal-7.59.it.po\";s:4:\"type\";s:8:\"download\";s:7:\"fileurl\";s:77:\"https://ftp-origin.drupal.org/files/translations/7.x/drupal/drupal-7.59.it.po\";s:9:\"timestamp\";i:1600173154;}}s:6:\"entity\";a:1:{s:2:\"it\";O:8:\"stdClass\":13:{s:4:\"name\";s:6:\"entity\";s:12:\"project_type\";s:6:\"module\";s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:7:\"7.x-1.9\";s:11:\"l10n_server\";s:0:\"\";s:9:\"l10n_path\";s:79:\"http://ftp.drupal.org/files/translations/7.x/entity/entity-7.x-1.9.%language.po\";s:6:\"status\";s:1:\"1\";s:7:\"project\";s:6:\"entity\";s:8:\"language\";s:2:\"it\";s:8:\"filename\";s:20:\"entity-7.x-1.9.it.po\";s:4:\"type\";s:8:\"download\";s:7:\"fileurl\";s:80:\"https://ftp-origin.drupal.org/files/translations/7.x/entity/entity-7.x-1.9.it.po\";s:9:\"timestamp\";i:1582899400;}}s:18:\"entity_translation\";a:1:{s:2:\"it\";O:8:\"stdClass\":13:{s:4:\"name\";s:18:\"entity_translation\";s:12:\"project_type\";s:6:\"module\";s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:7:\"7.x-1.0\";s:11:\"l10n_server\";s:0:\"\";s:9:\"l10n_path\";s:103:\"http://ftp.drupal.org/files/translations/7.x/entity_translation/entity_translation-7.x-1.0.%language.po\";s:6:\"status\";s:1:\"1\";s:7:\"project\";s:18:\"entity_translation\";s:8:\"language\";s:2:\"it\";s:8:\"filename\";s:32:\"entity_translation-7.x-1.0.it.po\";s:4:\"type\";s:8:\"download\";s:7:\"fileurl\";s:104:\"https://ftp-origin.drupal.org/files/translations/7.x/entity_translation/entity_translation-7.x-1.0.it.po\";s:9:\"timestamp\";i:1522601003;}}s:8:\"features\";a:1:{s:2:\"it\";O:8:\"stdClass\":13:{s:4:\"name\";s:8:\"features\";s:12:\"project_type\";s:6:\"module\";s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:8:\"7.x-2.10\";s:11:\"l10n_server\";s:0:\"\";s:9:\"l10n_path\";s:84:\"http://ftp.drupal.org/files/translations/7.x/features/features-7.x-2.10.%language.po\";s:6:\"status\";s:1:\"1\";s:7:\"project\";s:8:\"features\";s:8:\"language\";s:2:\"it\";s:8:\"filename\";s:23:\"features-7.x-2.10.it.po\";s:4:\"type\";s:8:\"download\";s:7:\"fileurl\";s:85:\"https://ftp-origin.drupal.org/files/translations/7.x/features/features-7.x-2.10.it.po\";s:9:\"timestamp\";i:1461048355;}}s:8:\"geocoder\";a:1:{s:2:\"it\";O:8:\"stdClass\":13:{s:4:\"name\";s:8:\"geocoder\";s:12:\"project_type\";s:6:\"module\";s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:7:\"7.x-1.4\";s:11:\"l10n_server\";s:0:\"\";s:9:\"l10n_path\";s:83:\"http://ftp.drupal.org/files/translations/7.x/geocoder/geocoder-7.x-1.4.%language.po\";s:6:\"status\";s:1:\"1\";s:7:\"project\";s:8:\"geocoder\";s:8:\"language\";s:2:\"it\";s:8:\"filename\";s:22:\"geocoder-7.x-1.4.it.po\";s:4:\"type\";s:8:\"download\";s:7:\"fileurl\";s:84:\"https://ftp-origin.drupal.org/files/translations/7.x/geocoder/geocoder-7.x-1.4.it.po\";s:9:\"timestamp\";i:1536076001;}}s:8:\"geofield\";a:1:{s:2:\"it\";O:8:\"stdClass\":13:{s:4:\"name\";s:8:\"geofield\";s:12:\"project_type\";s:6:\"module\";s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:7:\"7.x-2.3\";s:11:\"l10n_server\";s:0:\"\";s:9:\"l10n_path\";s:83:\"http://ftp.drupal.org/files/translations/7.x/geofield/geofield-7.x-2.3.%language.po\";s:6:\"status\";s:1:\"1\";s:7:\"project\";s:8:\"geofield\";s:8:\"language\";s:2:\"it\";s:8:\"filename\";s:22:\"geofield-7.x-2.3.it.po\";s:4:\"type\";s:8:\"download\";s:7:\"fileurl\";s:84:\"https://ftp-origin.drupal.org/files/translations/7.x/geofield/geofield-7.x-2.3.it.po\";s:9:\"timestamp\";i:1586191880;}}s:4:\"gmap\";a:1:{s:2:\"it\";O:8:\"stdClass\":13:{s:4:\"name\";s:4:\"gmap\";s:12:\"project_type\";s:6:\"module\";s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:8:\"7.x-2.11\";s:11:\"l10n_server\";s:0:\"\";s:9:\"l10n_path\";s:76:\"http://ftp.drupal.org/files/translations/7.x/gmap/gmap-7.x-2.11.%language.po\";s:6:\"status\";s:1:\"1\";s:7:\"project\";s:4:\"gmap\";s:8:\"language\";s:2:\"it\";s:8:\"filename\";s:19:\"gmap-7.x-2.11.it.po\";s:4:\"type\";s:8:\"download\";s:7:\"fileurl\";s:77:\"https://ftp-origin.drupal.org/files/translations/7.x/gmap/gmap-7.x-2.11.it.po\";s:9:\"timestamp\";i:1587558414;}}s:4:\"i18n\";a:1:{s:2:\"it\";O:8:\"stdClass\":13:{s:4:\"name\";s:4:\"i18n\";s:12:\"project_type\";s:6:\"module\";s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:8:\"7.x-1.26\";s:11:\"l10n_server\";s:0:\"\";s:9:\"l10n_path\";s:76:\"http://ftp.drupal.org/files/translations/7.x/i18n/i18n-7.x-1.26.%language.po\";s:6:\"status\";s:1:\"1\";s:7:\"project\";s:4:\"i18n\";s:8:\"language\";s:2:\"it\";s:8:\"filename\";s:19:\"i18n-7.x-1.26.it.po\";s:4:\"type\";s:8:\"download\";s:7:\"fileurl\";s:77:\"https://ftp-origin.drupal.org/files/translations/7.x/i18n/i18n-7.x-1.26.it.po\";s:9:\"timestamp\";i:1534535010;}}s:4:\"imce\";a:1:{s:2:\"it\";O:8:\"stdClass\":13:{s:4:\"name\";s:4:\"imce\";s:12:\"project_type\";s:6:\"module\";s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:8:\"7.x-1.11\";s:11:\"l10n_server\";s:0:\"\";s:9:\"l10n_path\";s:76:\"http://ftp.drupal.org/files/translations/7.x/imce/imce-7.x-1.11.%language.po\";s:6:\"status\";s:1:\"1\";s:7:\"project\";s:4:\"imce\";s:8:\"language\";s:2:\"it\";s:8:\"filename\";s:19:\"imce-7.x-1.11.it.po\";s:4:\"type\";s:8:\"download\";s:7:\"fileurl\";s:77:\"https://ftp-origin.drupal.org/files/translations/7.x/imce/imce-7.x-1.11.it.po\";s:9:\"timestamp\";i:1495892752;}}s:8:\"juicebox\";a:1:{s:2:\"it\";O:8:\"stdClass\":13:{s:4:\"name\";s:8:\"juicebox\";s:12:\"project_type\";s:6:\"module\";s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:7:\"7.x-2.0\";s:11:\"l10n_server\";s:0:\"\";s:9:\"l10n_path\";s:83:\"http://ftp.drupal.org/files/translations/7.x/juicebox/juicebox-7.x-2.0.%language.po\";s:6:\"status\";s:1:\"1\";s:7:\"project\";s:8:\"juicebox\";s:8:\"language\";s:2:\"it\";s:8:\"filename\";s:22:\"juicebox-7.x-2.0.it.po\";s:4:\"type\";s:8:\"download\";s:7:\"fileurl\";s:84:\"https://ftp-origin.drupal.org/files/translations/7.x/juicebox/juicebox-7.x-2.0.it.po\";s:9:\"timestamp\";i:1447769297;}}s:11:\"l10n_update\";a:1:{s:2:\"it\";O:8:\"stdClass\":13:{s:4:\"name\";s:11:\"l10n_update\";s:12:\"project_type\";s:6:\"module\";s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:7:\"7.x-1.1\";s:11:\"l10n_server\";s:0:\"\";s:9:\"l10n_path\";s:89:\"http://ftp.drupal.org/files/translations/7.x/l10n_update/l10n_update-7.x-1.1.%language.po\";s:6:\"status\";s:1:\"1\";s:7:\"project\";s:11:\"l10n_update\";s:8:\"language\";s:2:\"it\";s:8:\"filename\";s:25:\"l10n_update-7.x-1.1.it.po\";s:4:\"type\";s:8:\"download\";s:7:\"fileurl\";s:90:\"https://ftp-origin.drupal.org/files/translations/7.x/l10n_update/l10n_update-7.x-1.1.it.po\";s:9:\"timestamp\";i:1415789737;}}s:13:\"languageicons\";a:1:{s:2:\"it\";O:8:\"stdClass\":13:{s:4:\"name\";s:13:\"languageicons\";s:12:\"project_type\";s:6:\"module\";s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:7:\"7.x-1.1\";s:11:\"l10n_server\";s:0:\"\";s:9:\"l10n_path\";s:93:\"http://ftp.drupal.org/files/translations/7.x/languageicons/languageicons-7.x-1.1.%language.po\";s:6:\"status\";s:1:\"1\";s:7:\"project\";s:13:\"languageicons\";s:8:\"language\";s:2:\"it\";s:8:\"filename\";s:27:\"languageicons-7.x-1.1.it.po\";s:4:\"type\";s:8:\"download\";s:7:\"fileurl\";s:94:\"https://ftp-origin.drupal.org/files/translations/7.x/languageicons/languageicons-7.x-1.1.it.po\";s:9:\"timestamp\";i:1399919592;}}s:9:\"libraries\";a:1:{s:2:\"it\";O:8:\"stdClass\":13:{s:4:\"name\";s:9:\"libraries\";s:12:\"project_type\";s:6:\"module\";s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:7:\"7.x-2.4\";s:11:\"l10n_server\";s:0:\"\";s:9:\"l10n_path\";s:85:\"http://ftp.drupal.org/files/translations/7.x/libraries/libraries-7.x-2.4.%language.po\";s:6:\"status\";s:1:\"1\";s:7:\"project\";s:9:\"libraries\";s:8:\"language\";s:2:\"it\";s:8:\"filename\";s:23:\"libraries-7.x-2.4.it.po\";s:4:\"type\";s:8:\"download\";s:7:\"fileurl\";s:86:\"https://ftp-origin.drupal.org/files/translations/7.x/libraries/libraries-7.x-2.4.it.po\";s:9:\"timestamp\";i:1587556585;}}s:8:\"location\";a:1:{s:2:\"it\";O:8:\"stdClass\":13:{s:4:\"name\";s:8:\"location\";s:12:\"project_type\";s:6:\"module\";s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:7:\"7.x-3.7\";s:11:\"l10n_server\";s:0:\"\";s:9:\"l10n_path\";s:83:\"http://ftp.drupal.org/files/translations/7.x/location/location-7.x-3.7.%language.po\";s:6:\"status\";s:1:\"1\";s:7:\"project\";s:8:\"location\";s:8:\"language\";s:2:\"it\";s:8:\"filename\";s:22:\"location-7.x-3.7.it.po\";s:4:\"type\";s:8:\"download\";s:7:\"fileurl\";s:84:\"https://ftp-origin.drupal.org/files/translations/7.x/location/location-7.x-3.7.it.po\";s:9:\"timestamp\";i:1438759818;}}s:11:\"locationmap\";a:1:{s:2:\"it\";O:8:\"stdClass\":13:{s:4:\"name\";s:11:\"locationmap\";s:12:\"project_type\";s:6:\"module\";s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:7:\"7.x-2.3\";s:11:\"l10n_server\";s:0:\"\";s:9:\"l10n_path\";s:89:\"http://ftp.drupal.org/files/translations/7.x/locationmap/locationmap-7.x-2.3.%language.po\";s:6:\"status\";s:1:\"1\";s:7:\"project\";s:11:\"locationmap\";s:8:\"language\";s:2:\"it\";s:8:\"filename\";s:25:\"locationmap-7.x-2.3.it.po\";s:4:\"type\";s:8:\"download\";s:7:\"fileurl\";s:90:\"https://ftp-origin.drupal.org/files/translations/7.x/locationmap/locationmap-7.x-2.3.it.po\";s:9:\"timestamp\";i:1400956331;}}s:12:\"multipurpose\";a:1:{s:2:\"it\";O:8:\"stdClass\":13:{s:4:\"name\";s:12:\"multipurpose\";s:12:\"project_type\";s:5:\"theme\";s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:7:\"7.x-1.0\";s:11:\"l10n_server\";s:0:\"\";s:9:\"l10n_path\";s:91:\"http://ftp.drupal.org/files/translations/7.x/multipurpose/multipurpose-7.x-1.0.%language.po\";s:6:\"status\";s:1:\"1\";s:7:\"project\";s:12:\"multipurpose\";s:8:\"language\";s:2:\"it\";s:8:\"filename\";s:26:\"multipurpose-7.x-1.0.it.po\";s:4:\"type\";s:8:\"download\";s:7:\"fileurl\";s:92:\"https://ftp-origin.drupal.org/files/translations/7.x/multipurpose/multipurpose-7.x-1.0.it.po\";s:9:\"timestamp\";i:1409820685;}}s:6:\"photos\";a:1:{s:2:\"it\";O:8:\"stdClass\":13:{s:4:\"name\";s:6:\"photos\";s:12:\"project_type\";s:6:\"module\";s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:11:\"7.x-3.0-rc4\";s:11:\"l10n_server\";s:0:\"\";s:9:\"l10n_path\";s:83:\"http://ftp.drupal.org/files/translations/7.x/photos/photos-7.x-3.0-rc4.%language.po\";s:6:\"status\";s:1:\"1\";s:7:\"project\";s:6:\"photos\";s:8:\"language\";s:2:\"it\";s:8:\"filename\";s:24:\"photos-7.x-3.0-rc4.it.po\";s:4:\"type\";s:8:\"download\";s:7:\"fileurl\";s:84:\"https://ftp-origin.drupal.org/files/translations/7.x/photos/photos-7.x-3.0-rc4.it.po\";s:9:\"timestamp\";i:1586196961;}}s:5:\"title\";a:1:{s:2:\"it\";O:8:\"stdClass\":13:{s:4:\"name\";s:5:\"title\";s:12:\"project_type\";s:6:\"module\";s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:14:\"7.x-1.0-alpha9\";s:11:\"l10n_server\";s:0:\"\";s:9:\"l10n_path\";s:84:\"http://ftp.drupal.org/files/translations/7.x/title/title-7.x-1.0-alpha9.%language.po\";s:6:\"status\";s:1:\"1\";s:7:\"project\";s:5:\"title\";s:8:\"language\";s:2:\"it\";s:8:\"filename\";s:26:\"title-7.x-1.0-alpha9.it.po\";s:4:\"type\";s:8:\"download\";s:7:\"fileurl\";s:85:\"https://ftp-origin.drupal.org/files/translations/7.x/title/title-7.x-1.0-alpha9.it.po\";s:9:\"timestamp\";i:1484304212;}}s:8:\"variable\";a:1:{s:2:\"it\";O:8:\"stdClass\":13:{s:4:\"name\";s:8:\"variable\";s:12:\"project_type\";s:6:\"module\";s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:7:\"7.x-2.5\";s:11:\"l10n_server\";s:0:\"\";s:9:\"l10n_path\";s:83:\"http://ftp.drupal.org/files/translations/7.x/variable/variable-7.x-2.5.%language.po\";s:6:\"status\";s:1:\"1\";s:7:\"project\";s:8:\"variable\";s:8:\"language\";s:2:\"it\";s:8:\"filename\";s:22:\"variable-7.x-2.5.it.po\";s:4:\"type\";s:8:\"download\";s:7:\"fileurl\";s:84:\"https://ftp-origin.drupal.org/files/translations/7.x/variable/variable-7.x-2.5.it.po\";s:9:\"timestamp\";i:1451863778;}}s:13:\"venture_theme\";a:1:{s:2:\"it\";O:8:\"stdClass\":13:{s:4:\"name\";s:13:\"venture_theme\";s:12:\"project_type\";s:5:\"theme\";s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:7:\"7.x-1.1\";s:11:\"l10n_server\";s:0:\"\";s:9:\"l10n_path\";s:93:\"http://ftp.drupal.org/files/translations/7.x/venture_theme/venture_theme-7.x-1.1.%language.po\";s:6:\"status\";s:1:\"1\";s:7:\"project\";s:13:\"venture_theme\";s:8:\"language\";s:2:\"it\";s:8:\"filename\";s:27:\"venture_theme-7.x-1.1.it.po\";s:4:\"type\";s:8:\"download\";s:7:\"fileurl\";s:94:\"https://ftp-origin.drupal.org/files/translations/7.x/venture_theme/venture_theme-7.x-1.1.it.po\";s:9:\"timestamp\";i:1402426438;}}s:5:\"views\";a:1:{s:2:\"it\";O:8:\"stdClass\":13:{s:4:\"name\";s:5:\"views\";s:12:\"project_type\";s:6:\"module\";s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:8:\"7.x-3.20\";s:11:\"l10n_server\";s:0:\"\";s:9:\"l10n_path\";s:78:\"http://ftp.drupal.org/files/translations/7.x/views/views-7.x-3.20.%language.po\";s:6:\"status\";s:1:\"1\";s:7:\"project\";s:5:\"views\";s:8:\"language\";s:2:\"it\";s:8:\"filename\";s:20:\"views-7.x-3.20.it.po\";s:4:\"type\";s:8:\"download\";s:7:\"fileurl\";s:79:\"https://ftp-origin.drupal.org/files/translations/7.x/views/views-7.x-3.20.it.po\";s:9:\"timestamp\";i:1586200270;}}s:14:\"views_stylizer\";a:1:{s:2:\"it\";O:8:\"stdClass\":13:{s:4:\"name\";s:14:\"views_stylizer\";s:12:\"project_type\";s:6:\"module\";s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:7:\"7.x-1.3\";s:11:\"l10n_server\";s:0:\"\";s:9:\"l10n_path\";s:95:\"http://ftp.drupal.org/files/translations/7.x/views_stylizer/views_stylizer-7.x-1.3.%language.po\";s:6:\"status\";s:1:\"1\";s:7:\"project\";s:14:\"views_stylizer\";s:8:\"language\";s:2:\"it\";s:8:\"filename\";s:28:\"views_stylizer-7.x-1.3.it.po\";s:4:\"type\";s:8:\"download\";s:7:\"fileurl\";s:96:\"https://ftp-origin.drupal.org/files/translations/7.x/views_stylizer/views_stylizer-7.x-1.3.it.po\";s:9:\"timestamp\";i:1397931834;}}}',1652767225,1652162425,1),('l10n_update_server:http://localize.drupal.org/l10n_server.xml','a:3:{s:4:\"name\";s:19:\"localize.drupal.org\";s:10:\"server_url\";s:42:\"http://localize.drupal.org/l10n_server.xml\";s:10:\"update_url\";s:86:\"http://ftp.drupal.org/files/translations/%core/%project/%project-%release.%language.po\";}',0,1538750602,1);
/*!40000 ALTER TABLE `cache_l10n_update` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cache_libraries`
--

DROP TABLE IF EXISTS `cache_libraries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cache_libraries` (
  `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
  `data` longblob DEFAULT NULL COMMENT 'A collection of data to cache.',
  `expire` int(11) NOT NULL DEFAULT 0 COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
  `created` int(11) NOT NULL DEFAULT 0 COMMENT 'A Unix timestamp indicating when the cache entry was created.',
  `serialized` smallint(6) NOT NULL DEFAULT 0 COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
  PRIMARY KEY (`cid`),
  KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cache table to store library information.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cache_libraries`
--

LOCK TABLES `cache_libraries` WRITE;
/*!40000 ALTER TABLE `cache_libraries` DISABLE KEYS */;
INSERT INTO `cache_libraries` VALUES ('jeditable','a:21:{s:4:\"name\";s:9:\"Jeditable\";s:10:\"vendor url\";s:44:\"http://www.appelsiini.net/projects/jeditable\";s:17:\"version arguments\";a:3:{s:4:\"file\";s:19:\"jquery.jeditable.js\";s:7:\"pattern\";s:29:\"@Version\\s+([0-9a-zA-Z\\.-]+)@\";s:5:\"lines\";i:20;}s:5:\"files\";a:1:{s:2:\"js\";a:1:{s:24:\"jquery.jeditable.mini.js\";a:0:{}}}s:8:\"variants\";a:2:{s:8:\"minified\";a:1:{s:5:\"files\";a:1:{s:2:\"js\";a:1:{s:24:\"jquery.jeditable.mini.js\";a:0:{}}}}s:6:\"source\";a:1:{s:5:\"files\";a:1:{s:2:\"js\";a:1:{s:19:\"jquery.jeditable.js\";a:0:{}}}}}s:9:\"info type\";s:6:\"module\";s:6:\"module\";s:6:\"photos\";s:12:\"machine name\";s:9:\"jeditable\";s:12:\"download url\";s:0:\"\";s:17:\"download file url\";s:0:\"\";s:4:\"path\";s:0:\"\";s:12:\"library path\";b:0;s:16:\"version callback\";s:21:\"libraries_get_version\";s:12:\"dependencies\";a:0:{}s:8:\"versions\";a:0:{}s:17:\"integration files\";a:0:{}s:9:\"callbacks\";a:6:{s:4:\"info\";a:1:{i:0;s:23:\"libraries_prepare_files\";}s:10:\"pre-detect\";a:0:{}s:11:\"post-detect\";a:1:{i:0;s:29:\"libraries_detect_dependencies\";}s:21:\"pre-dependencies-load\";a:0:{}s:8:\"pre-load\";a:0:{}s:9:\"post-load\";a:0:{}}s:27:\"post-load integration files\";b:0;s:9:\"installed\";b:0;s:5:\"error\";s:9:\"not found\";s:13:\"error message\";s:70:\"The <em class=\"placeholder\">Jeditable</em> library could not be found.\";}',0,1538750673,1);
/*!40000 ALTER TABLE `cache_libraries` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cache_location`
--

DROP TABLE IF EXISTS `cache_location`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cache_location` (
  `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
  `data` longblob DEFAULT NULL COMMENT 'A collection of data to cache.',
  `expire` int(11) NOT NULL DEFAULT 0 COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
  `created` int(11) NOT NULL DEFAULT 0 COMMENT 'A Unix timestamp indicating when the cache entry was created.',
  `headers` text DEFAULT NULL COMMENT 'Any custom HTTP headers to be added to cached data.',
  `serialized` smallint(6) NOT NULL DEFAULT 0 COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
  PRIMARY KEY (`cid`),
  KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Generic cache table for caching things not separated out...';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cache_location`
--

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

--
-- Table structure for table `cache_menu`
--

DROP TABLE IF EXISTS `cache_menu`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cache_menu` (
  `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
  `data` longblob DEFAULT NULL COMMENT 'A collection of data to cache.',
  `expire` int(11) NOT NULL DEFAULT 0 COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
  `created` int(11) NOT NULL DEFAULT 0 COMMENT 'A Unix timestamp indicating when the cache entry was created.',
  `serialized` smallint(6) NOT NULL DEFAULT 0 COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
  PRIMARY KEY (`cid`),
  KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cache table for the menu system to store router...';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cache_menu`
--

LOCK TABLES `cache_menu` WRITE;
/*!40000 ALTER TABLE `cache_menu` DISABLE KEYS */;
INSERT INTO `cache_menu` VALUES ('links:main-menu:page:admin/config/development/maintenance:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1652171422,1),('links:main-menu:page:admin/config:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1652170198,1),('links:main-menu:page:admin/structure/block/manage/system/user-menu/configure:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1652170178,1),('links:main-menu:page:node/129:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1652168952,1),('links:main-menu:page:node/129:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1652168952,1),('links:main-menu:page:node/13:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1652168969,1),('links:main-menu:page:node/13:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1652168969,1),('links:main-menu:page:node/33:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1652168972,1),('links:main-menu:page:node/33:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1652168972,1),('links:main-menu:page:node/45:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1652168963,1),('links:main-menu:page:node/45:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1652168963,1),('links:main-menu:page:node/46:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:532;s:3:\"532\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:532;s:3:\"532\";}}',0,1652170063,1),('links:main-menu:page:node/46:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:2:{i:0;i:0;i:532;s:3:\"532\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:532;s:3:\"532\";}}',0,1652170063,1),('links:main-menu:page:node/46:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:2:{i:0;i:0;i:532;s:3:\"532\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:532;s:3:\"532\";}}',0,1652170063,1),('links:main-menu:page:node/82:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1652168998,1),('links:main-menu:page:node/82:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1652168998,1),('links:main-menu:page:node/add:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1652168733,1),('links:main-menu:page:node:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1652168717,1),('links:main-menu:page:node:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1652168717,1),('links:main-menu:page:user/1/edit:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1652169578,1),('links:main-menu:page:user/1:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1652169571,1),('links:main-menu:page:user/1:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1652169571,1),('links:main-menu:tree-data:en:9bd1605e2280833450478f9083b7f8714c2fa28f1012455e2744e5af1a13eec5','a:2:{s:4:\"tree\";a:10:{i:218;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"218\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"<front>\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:4:\"Home\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"218\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:382;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"382\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/2\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:8:\"Contacts\";s:7:\"options\";s:76:\"a:2:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-44\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"382\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:384;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"384\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/4\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:11:\"Data access\";s:7:\"options\";s:73:\"a:3:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:0:{}s:5:\"alter\";b:1;}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-48\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"384\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:2:\"en\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:390;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"390\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"photos\";s:11:\"router_path\";s:6:\"photos\";s:10:\"link_title\";s:7:\"Gallery\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-49\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"390\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:28:\"a:1:{i:0;s:10:\"view photo\";}\";s:13:\"page_callback\";s:19:\"photos_page_default\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"photos\";s:5:\"title\";s:12:\"Album photos\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:425;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"425\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/06\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:15:\"The Observatory\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"425\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:429;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"429\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/12\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:8:\"Moorings\";s:7:\"options\";s:92:\"a:3:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}s:5:\"alter\";b:1;}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-47\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"429\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:2:\"en\";s:9:\"i18n_tsid\";s:1:\"1\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:514;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"514\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/29\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:8:\"Pictures\";s:7:\"options\";s:75:\"a:3:{s:10:\"attributes\";a:0:{}s:9:\"node_type\";s:6:\"photos\";s:5:\"alter\";b:1;}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-43\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"514\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:2:\"en\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:532;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"532\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/46\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:4:\"News\";s:7:\"options\";s:73:\"a:3:{s:10:\"attributes\";a:0:{}s:9:\"node_type\";s:4:\"page\";s:5:\"alter\";b:1;}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"532\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:2:\"en\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:610;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"610\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/7\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"Ancillary activities\";s:7:\"options\";s:57:\"a:2:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:0:{}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"1\";s:6:\"weight\";s:3:\"-46\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"610\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:2:\"en\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:1039;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:4:\"1039\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/131\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:5:\"Prova\";s:7:\"options\";s:108:\"a:3:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:1:{s:5:\"title\";s:15:\"Pagina di prova\";}s:5:\"alter\";b:1;}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:4:\"1039\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:2:\"en\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:8:{i:2;a:1:{i:382;R:51;}i:4;a:1:{i:384;R:99;}s:2:\"06\";a:1:{i:425;R:194;}i:12;a:1:{i:429;R:242;}i:29;a:1:{i:514;R:290;}i:46;a:1:{i:532;R:338;}i:7;a:1:{i:610;R:386;}i:131;a:1:{i:1039;R:434;}}}',0,1652168717,1),('links:main-menu:tree-data:en:9ec01ec58bf82a695e4acd636af283e0585fe8cd8a6e54eb140188a3e284ab1c','a:2:{s:4:\"tree\";a:10:{i:218;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"218\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"<front>\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:4:\"Home\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"218\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:382;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"382\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/2\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:8:\"Contacts\";s:7:\"options\";s:76:\"a:2:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-44\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"382\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:384;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"384\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/4\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:11:\"Data access\";s:7:\"options\";s:73:\"a:3:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:0:{}s:5:\"alter\";b:1;}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-48\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"384\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:2:\"en\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:390;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"390\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"photos\";s:11:\"router_path\";s:6:\"photos\";s:10:\"link_title\";s:7:\"Gallery\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-49\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"390\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:28:\"a:1:{i:0;s:10:\"view photo\";}\";s:13:\"page_callback\";s:19:\"photos_page_default\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"photos\";s:5:\"title\";s:12:\"Album photos\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:425;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"425\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/06\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:15:\"The Observatory\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"425\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:429;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"429\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/12\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:8:\"Moorings\";s:7:\"options\";s:92:\"a:3:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}s:5:\"alter\";b:1;}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-47\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"429\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:2:\"en\";s:9:\"i18n_tsid\";s:1:\"1\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:514;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"514\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/29\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:8:\"Pictures\";s:7:\"options\";s:75:\"a:3:{s:10:\"attributes\";a:0:{}s:9:\"node_type\";s:6:\"photos\";s:5:\"alter\";b:1;}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-43\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"514\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:2:\"en\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:532;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"532\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/46\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:4:\"News\";s:7:\"options\";s:73:\"a:3:{s:10:\"attributes\";a:0:{}s:9:\"node_type\";s:4:\"page\";s:5:\"alter\";b:1;}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"532\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:2:\"en\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:610;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"610\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/7\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"Ancillary activities\";s:7:\"options\";s:57:\"a:2:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:0:{}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"1\";s:6:\"weight\";s:3:\"-46\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"610\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:2:\"en\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:1039;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:4:\"1039\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/131\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:5:\"Prova\";s:7:\"options\";s:108:\"a:3:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:1:{s:5:\"title\";s:15:\"Pagina di prova\";}s:5:\"alter\";b:1;}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:4:\"1039\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:2:\"en\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:8:{i:2;a:1:{i:382;R:51;}i:4;a:1:{i:384;R:99;}s:2:\"06\";a:1:{i:425;R:194;}i:12;a:1:{i:429;R:242;}i:29;a:1:{i:514;R:290;}i:46;a:1:{i:532;R:338;}i:7;a:1:{i:610;R:386;}i:131;a:1:{i:1039;R:434;}}}',0,1652168717,1),('links:main-menu:tree-data:en:ce8a529cecedd097ee203159261474484a0b2ff63f92ef0944f3fc2f0f3efdbc','a:2:{s:4:\"tree\";a:10:{i:218;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"218\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"<front>\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:4:\"Home\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"218\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:382;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"382\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/2\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:8:\"Contacts\";s:7:\"options\";s:76:\"a:2:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-44\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"382\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:384;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"384\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/4\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:11:\"Data access\";s:7:\"options\";s:73:\"a:3:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:0:{}s:5:\"alter\";b:1;}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-48\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"384\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:2:\"en\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:390;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"390\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"photos\";s:11:\"router_path\";s:6:\"photos\";s:10:\"link_title\";s:7:\"Gallery\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-49\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"390\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:28:\"a:1:{i:0;s:10:\"view photo\";}\";s:13:\"page_callback\";s:19:\"photos_page_default\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"photos\";s:5:\"title\";s:12:\"Album photos\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:425;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"425\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/06\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:15:\"The Observatory\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"425\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:429;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"429\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/12\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:8:\"Moorings\";s:7:\"options\";s:92:\"a:3:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}s:5:\"alter\";b:1;}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-47\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"429\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:2:\"en\";s:9:\"i18n_tsid\";s:1:\"1\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:514;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"514\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/29\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:8:\"Pictures\";s:7:\"options\";s:75:\"a:3:{s:10:\"attributes\";a:0:{}s:9:\"node_type\";s:6:\"photos\";s:5:\"alter\";b:1;}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-43\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"514\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:2:\"en\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:532;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"532\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/46\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:4:\"News\";s:7:\"options\";s:73:\"a:3:{s:10:\"attributes\";a:0:{}s:9:\"node_type\";s:4:\"page\";s:5:\"alter\";b:1;}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"532\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:2:\"en\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:610;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"610\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/7\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"Ancillary activities\";s:7:\"options\";s:57:\"a:2:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:0:{}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"1\";s:6:\"weight\";s:3:\"-46\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"610\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:2:\"en\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:1039;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:4:\"1039\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/131\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:5:\"Prova\";s:7:\"options\";s:108:\"a:3:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:1:{s:5:\"title\";s:15:\"Pagina di prova\";}s:5:\"alter\";b:1;}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:4:\"1039\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:2:\"en\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:8:{i:2;a:1:{i:382;R:51;}i:4;a:1:{i:384;R:99;}s:2:\"06\";a:1:{i:425;R:194;}i:12;a:1:{i:429;R:242;}i:29;a:1:{i:514;R:290;}i:46;a:1:{i:532;R:338;}i:7;a:1:{i:610;R:386;}i:131;a:1:{i:1039;R:434;}}}',0,1652170063,1),('links:main-menu:tree-data:en:db8596cf6dd5df7ee2171819122f47bab282aa49427d2d0ef1bf70154165a38e','a:2:{s:4:\"tree\";a:10:{i:218;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"218\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"<front>\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:4:\"Home\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"218\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:382;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"382\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/2\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:8:\"Contacts\";s:7:\"options\";s:76:\"a:2:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-44\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"382\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:384;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"384\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/4\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:11:\"Data access\";s:7:\"options\";s:73:\"a:3:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:0:{}s:5:\"alter\";b:1;}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-48\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"384\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:2:\"en\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:390;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"390\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"photos\";s:11:\"router_path\";s:6:\"photos\";s:10:\"link_title\";s:7:\"Gallery\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-49\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"390\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:28:\"a:1:{i:0;s:10:\"view photo\";}\";s:13:\"page_callback\";s:19:\"photos_page_default\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"photos\";s:5:\"title\";s:12:\"Album photos\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:425;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"425\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/06\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:15:\"The Observatory\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"425\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:429;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"429\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/12\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:8:\"Moorings\";s:7:\"options\";s:92:\"a:3:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}s:5:\"alter\";b:1;}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-47\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"429\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:2:\"en\";s:9:\"i18n_tsid\";s:1:\"1\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:514;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"514\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/29\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:8:\"Pictures\";s:7:\"options\";s:75:\"a:3:{s:10:\"attributes\";a:0:{}s:9:\"node_type\";s:6:\"photos\";s:5:\"alter\";b:1;}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-43\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"514\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:2:\"en\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:532;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"532\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/46\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:4:\"News\";s:7:\"options\";s:73:\"a:3:{s:10:\"attributes\";a:0:{}s:9:\"node_type\";s:4:\"page\";s:5:\"alter\";b:1;}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"532\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:2:\"en\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:610;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"610\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/7\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"Ancillary activities\";s:7:\"options\";s:57:\"a:2:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:0:{}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"1\";s:6:\"weight\";s:3:\"-46\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"610\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:2:\"en\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:1039;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:4:\"1039\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/131\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:5:\"Prova\";s:7:\"options\";s:108:\"a:3:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:1:{s:5:\"title\";s:15:\"Pagina di prova\";}s:5:\"alter\";b:1;}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:4:\"1039\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:2:\"en\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:8:{i:2;a:1:{i:382;R:51;}i:4;a:1:{i:384;R:99;}s:2:\"06\";a:1:{i:425;R:194;}i:12;a:1:{i:429;R:242;}i:29;a:1:{i:514;R:290;}i:46;a:1:{i:532;R:338;}i:7;a:1:{i:610;R:386;}i:131;a:1:{i:1039;R:434;}}}',0,1652170063,1),('links:main-menu:tree-data:en:eafd96ef5b3dfa142472c93a0902a85e02cd3af772c417641df3367102c706b5','a:2:{s:4:\"tree\";a:10:{i:218;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"218\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"<front>\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:4:\"Home\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"218\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:382;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"382\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/2\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:8:\"Contacts\";s:7:\"options\";s:76:\"a:2:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-44\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"382\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:384;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"384\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/4\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:11:\"Data access\";s:7:\"options\";s:73:\"a:3:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:0:{}s:5:\"alter\";b:1;}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-48\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"384\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:2:\"en\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:390;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"390\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"photos\";s:11:\"router_path\";s:6:\"photos\";s:10:\"link_title\";s:7:\"Gallery\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-49\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"390\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:28:\"a:1:{i:0;s:10:\"view photo\";}\";s:13:\"page_callback\";s:19:\"photos_page_default\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"photos\";s:5:\"title\";s:12:\"Album photos\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:425;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"425\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/06\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:15:\"The Observatory\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"425\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:429;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"429\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/12\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:8:\"Moorings\";s:7:\"options\";s:92:\"a:3:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}s:5:\"alter\";b:1;}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-47\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"429\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:2:\"en\";s:9:\"i18n_tsid\";s:1:\"1\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:514;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"514\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/29\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:8:\"Pictures\";s:7:\"options\";s:75:\"a:3:{s:10:\"attributes\";a:0:{}s:9:\"node_type\";s:6:\"photos\";s:5:\"alter\";b:1;}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-43\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"514\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:2:\"en\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:532;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"532\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/46\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:4:\"News\";s:7:\"options\";s:73:\"a:3:{s:10:\"attributes\";a:0:{}s:9:\"node_type\";s:4:\"page\";s:5:\"alter\";b:1;}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"532\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:2:\"en\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:610;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"610\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/7\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"Ancillary activities\";s:7:\"options\";s:57:\"a:2:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:0:{}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"1\";s:6:\"weight\";s:3:\"-46\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"610\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:2:\"en\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:1039;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:4:\"1039\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/131\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:5:\"Prova\";s:7:\"options\";s:108:\"a:3:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:1:{s:5:\"title\";s:15:\"Pagina di prova\";}s:5:\"alter\";b:1;}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:4:\"1039\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:2:\"en\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:8:{i:2;a:1:{i:382;R:51;}i:4;a:1:{i:384;R:99;}s:2:\"06\";a:1:{i:425;R:194;}i:12;a:1:{i:429;R:242;}i:29;a:1:{i:514;R:290;}i:46;a:1:{i:532;R:338;}i:7;a:1:{i:610;R:386;}i:131;a:1:{i:1039;R:434;}}}',0,1652170063,1),('links:management:page:admin/config/development/maintenance:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:5:{i:0;i:0;i:1;s:1:\"1\";i:8;s:1:\"8\";i:39;s:2:\"39\";i:112;s:3:\"112\";}s:12:\"active_trail\";a:5:{i:0;i:0;i:1;s:1:\"1\";i:8;s:1:\"8\";i:39;s:2:\"39\";i:112;s:3:\"112\";}}',0,1652171422,1),('links:management:page:admin/config/development/maintenance:it:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:5:{i:0;i:0;i:1;s:1:\"1\";i:8;s:1:\"8\";i:39;s:2:\"39\";i:112;s:3:\"112\";}s:12:\"active_trail\";a:5:{i:0;i:0;i:1;s:1:\"1\";i:8;s:1:\"8\";i:39;s:2:\"39\";i:112;s:3:\"112\";}}',0,1538751536,1),('links:management:page:admin/config/development/performance:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:5:{i:0;i:0;i:1;s:1:\"1\";i:8;s:1:\"8\";i:39;s:2:\"39\";i:113;s:3:\"113\";}s:12:\"active_trail\";a:5:{i:0;i:0;i:1;s:1:\"1\";i:8;s:1:\"8\";i:39;s:2:\"39\";i:113;s:3:\"113\";}}',0,1538750673,1),('links:management:page:admin/config/people/accounts/display:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:6:{i:0;i:0;i:1;s:1:\"1\";i:8;s:1:\"8\";i:48;s:2:\"48\";i:90;s:2:\"90\";i:1000;s:4:\"1000\";}s:12:\"active_trail\";a:6:{i:0;i:0;i:1;s:1:\"1\";i:8;s:1:\"8\";i:48;s:2:\"48\";i:90;s:2:\"90\";i:1000;s:4:\"1000\";}}',0,1652162448,1),('links:management:page:admin/config/people/accounts:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:5:{i:0;i:0;i:1;s:1:\"1\";i:8;s:1:\"8\";i:48;s:2:\"48\";i:90;s:2:\"90\";}s:12:\"active_trail\";a:5:{i:0;i:0;i:1;s:1:\"1\";i:8;s:1:\"8\";i:48;s:2:\"48\";i:90;s:2:\"90\";}}',0,1652162436,1),('links:management:page:admin/config/system/site-information:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:5:{i:0;i:0;i:1;s:1:\"1\";i:8;s:1:\"8\";i:56;s:2:\"56\";i:121;s:3:\"121\";}s:12:\"active_trail\";a:5:{i:0;i:0;i:1;s:1:\"1\";i:8;s:1:\"8\";i:56;s:2:\"56\";i:121;s:3:\"121\";}}',0,1652162705,1),('links:management:page:admin/config:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:3:{i:0;i:0;i:1;s:1:\"1\";i:8;s:1:\"8\";}s:12:\"active_trail\";a:3:{i:0;i:0;i:1;s:1:\"1\";i:8;s:1:\"8\";}}',0,1538750697,1),('links:management:page:admin/config:it:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:3:{i:0;i:0;i:1;s:1:\"1\";i:8;s:1:\"8\";}s:12:\"active_trail\";a:3:{i:0;i:0;i:1;s:1:\"1\";i:8;s:1:\"8\";}}',0,1538751565,1),('links:management:page:admin/dashboard:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:3:{i:0;i:0;i:1;s:1:\"1\";i:11;s:2:\"11\";}s:12:\"active_trail\";a:3:{i:0;i:0;i:1;s:1:\"1\";i:11;s:2:\"11\";}}',0,1652162507,1),('links:management:page:admin/help/update:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:4:{i:0;i:0;i:1;s:1:\"1\";i:12;s:2:\"12\";i:265;s:3:\"265\";}s:12:\"active_trail\";a:4:{i:0;i:0;i:1;s:1:\"1\";i:12;s:2:\"12\";i:265;s:3:\"265\";}}',0,1652162541,1),('links:management:page:admin/help:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:3:{i:0;i:0;i:1;s:1:\"1\";i:12;s:2:\"12\";}s:12:\"active_trail\";a:3:{i:0;i:0;i:1;s:1:\"1\";i:12;s:2:\"12\";}}',0,1652162454,1),('links:management:page:admin/modules:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:3:{i:0;i:0;i:1;s:1:\"1\";i:16;s:2:\"16\";}s:12:\"active_trail\";a:3:{i:0;i:0;i:1;s:1:\"1\";i:16;s:2:\"16\";}}',0,1652162471,1),('links:management:page:admin/people:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:3:{i:0;i:0;i:1;s:1:\"1\";i:18;s:2:\"18\";}s:12:\"active_trail\";a:3:{i:0;i:0;i:1;s:1:\"1\";i:18;s:2:\"18\";}}',0,1652162474,1),('links:management:page:admin/reports:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:3:{i:0;i:0;i:1;s:1:\"1\";i:19;s:2:\"19\";}s:12:\"active_trail\";a:3:{i:0;i:0;i:1;s:1:\"1\";i:19;s:2:\"19\";}}',0,1652162467,1),('links:management:page:admin/structure/block/manage/block/2/configure:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:6:{i:0;i:0;i:1;s:1:\"1\";i:21;s:2:\"21\";i:30;s:2:\"30\";i:155;s:3:\"155\";i:175;s:3:\"175\";}s:12:\"active_trail\";a:6:{i:0;i:0;i:1;s:1:\"1\";i:21;s:2:\"21\";i:30;s:2:\"30\";i:155;s:3:\"155\";i:175;s:3:\"175\";}}',0,1652163127,1),('links:management:page:admin/structure/block/manage/system/user-menu/configure:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:6:{i:0;i:0;i:1;s:1:\"1\";i:21;s:2:\"21\";i:30;s:2:\"30\";i:155;s:3:\"155\";i:175;s:3:\"175\";}s:12:\"active_trail\";a:6:{i:0;i:0;i:1;s:1:\"1\";i:21;s:2:\"21\";i:30;s:2:\"30\";i:155;s:3:\"155\";i:175;s:3:\"175\";}}',0,1652170178,1),('links:management:tree-data:en:00f246bdfb893bb7bfbad16c80a6287f1a06748db9df6125a98f81cf280663ad','a:2:{s:4:\"tree\";a:1:{i:1;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"1\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"admin\";s:11:\"router_path\";s:5:\"admin\";s:10:\"link_title\";s:14:\"Administration\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:14:\"Administration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:11:{i:7;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"7\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:16:\"admin/appearance\";s:11:\"router_path\";s:16:\"admin/appearance\";s:10:\"link_title\";s:10:\"Appearance\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Select and configure your themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-6\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"7\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer themes\";}\";s:13:\"page_callback\";s:18:\"system_themes_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/appearance\";s:5:\"title\";s:10:\"Appearance\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"Select and configure your themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:8;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"8\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/config\";s:11:\"router_path\";s:12:\"admin/config\";s:10:\"link_title\";s:13:\"Configuration\";s:7:\"options\";s:70:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:20:\"Administer settings.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:24:\"system_admin_config_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/config\";s:5:\"title\";s:13:\"Configuration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:20:\"Administer settings.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:10:{i:35;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"35\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:20:\"admin/config/content\";s:11:\"router_path\";s:20:\"admin/config/content\";s:10:\"link_title\";s:17:\"Content authoring\";s:7:\"options\";s:103:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:53:\"Settings related to formatting and authoring content.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"35\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/config/content\";s:5:\"title\";s:17:\"Content authoring\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:53:\"Settings related to formatting and authoring content.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:39;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"39\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:24:\"admin/config/development\";s:11:\"router_path\";s:24:\"admin/config/development\";s:10:\"link_title\";s:11:\"Development\";s:7:\"options\";s:68:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:18:\"Development tools.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"39\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:24:\"admin/config/development\";s:5:\"title\";s:11:\"Development\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:18:\"Development tools.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:3:{i:111;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"111\";s:4:\"plid\";s:2:\"39\";s:9:\"link_path\";s:32:\"admin/config/development/logging\";s:11:\"router_path\";s:32:\"admin/config/development/logging\";s:10:\"link_title\";s:18:\"Logging and errors\";s:7:\"options\";s:205:\"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.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"39\";s:2:\"p4\";s:3:\"111\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"administer site configuration\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:41:\"a:1:{i:0;s:23:\"system_logging_settings\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:32:\"admin/config/development/logging\";s:5:\"title\";s:18:\"Logging and errors\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";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.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:112;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"112\";s:4:\"plid\";s:2:\"39\";s:9:\"link_path\";s:36:\"admin/config/development/maintenance\";s:11:\"router_path\";s:36:\"admin/config/development/maintenance\";s:10:\"link_title\";s:16:\"Maintenance mode\";s:7:\"options\";s:112:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:62:\"Take the site offline for maintenance or bring it back online.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"39\";s:2:\"p4\";s:3:\"112\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"administer site configuration\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:46:\"a:1:{i:0;s:28:\"system_site_maintenance_mode\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:36:\"admin/config/development/maintenance\";s:5:\"title\";s:16:\"Maintenance mode\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:62:\"Take the site offline for maintenance or bring it back online.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:113;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"113\";s:4:\"plid\";s:2:\"39\";s:9:\"link_path\";s:36:\"admin/config/development/performance\";s:11:\"router_path\";s:36:\"admin/config/development/performance\";s:10:\"link_title\";s:11:\"Performance\";s:7:\"options\";s:152:\"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.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"39\";s:2:\"p4\";s:3:\"113\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"administer site configuration\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:45:\"a:1:{i:0;s:27:\"system_performance_settings\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:36:\"admin/config/development/performance\";s:5:\"title\";s:11:\"Performance\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:101:\"Enable or disable page caching for anonymous users and set CSS and JS bandwidth optimization options.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:0:{}}}}i:46;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"46\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:18:\"admin/config/media\";s:11:\"router_path\";s:18:\"admin/config/media\";s:10:\"link_title\";s:5:\"Media\";s:7:\"options\";s:62:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:12:\"Media tools.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"46\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:18:\"admin/config/media\";s:5:\"title\";s:5:\"Media\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:12:\"Media tools.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:48;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"48\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:19:\"admin/config/people\";s:11:\"router_path\";s:19:\"admin/config/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:74:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:24:\"Configure user accounts.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"48\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/config/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:24:\"Configure user accounts.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:51;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"51\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:21:\"admin/config/regional\";s:11:\"router_path\";s:21:\"admin/config/regional\";s:10:\"link_title\";s:21:\"Regional and language\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Regional settings, localization and translation.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-5\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"51\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/config/regional\";s:5:\"title\";s:21:\"Regional and language\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Regional settings, localization and translation.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:53;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"53\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:19:\"admin/config/search\";s:11:\"router_path\";s:19:\"admin/config/search\";s:10:\"link_title\";s:19:\"Search and metadata\";s:7:\"options\";s:86:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:36:\"Local site search, metadata and SEO.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"53\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/config/search\";s:5:\"title\";s:19:\"Search and metadata\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:36:\"Local site search, metadata and SEO.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:56;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"56\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:19:\"admin/config/system\";s:11:\"router_path\";s:19:\"admin/config/system\";s:10:\"link_title\";s:6:\"System\";s:7:\"options\";s:87:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:37:\"General system related configuration.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"56\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/config/system\";s:5:\"title\";s:6:\"System\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:37:\"General system related configuration.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:61;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"61\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:27:\"admin/config/user-interface\";s:11:\"router_path\";s:27:\"admin/config/user-interface\";s:10:\"link_title\";s:14:\"User interface\";s:7:\"options\";s:88:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:38:\"Tools that enhance the user interface.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"61\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:27:\"admin/config/user-interface\";s:5:\"title\";s:14:\"User interface\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:38:\"Tools that enhance the user interface.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:64;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"64\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:21:\"admin/config/services\";s:11:\"router_path\";s:21:\"admin/config/services\";s:10:\"link_title\";s:12:\"Web services\";s:7:\"options\";s:80:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:30:\"Tools related to web services.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"64\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/config/services\";s:5:\"title\";s:12:\"Web services\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:30:\"Tools related to web services.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:65;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"65\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:21:\"admin/config/workflow\";s:11:\"router_path\";s:21:\"admin/config/workflow\";s:10:\"link_title\";s:8:\"Workflow\";s:7:\"options\";s:93:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"Content workflow, editorial workflow tools.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"65\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/config/workflow\";s:5:\"title\";s:8:\"Workflow\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:43:\"Content workflow, editorial workflow tools.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:9;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"9\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/content\";s:11:\"router_path\";s:13:\"admin/content\";s:10:\"link_title\";s:7:\"Content\";s:7:\"options\";s:82:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Administer content and comments.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"9\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:32:\"Administer content and comments.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:11;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"11\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/dashboard\";s:11:\"router_path\";s:15:\"admin/dashboard\";s:10:\"link_title\";s:9:\"Dashboard\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View and customize your dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/dashboard\";s:5:\"title\";s:9:\"Dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View and customize your dashboard.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:12;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"12\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:10:\"admin/help\";s:11:\"router_path\";s:10:\"admin/help\";s:10:\"link_title\";s:4:\"Help\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Reference for usage, configuration, and modules.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_main\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"admin/help\";s:5:\"title\";s:4:\"Help\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Reference for usage, configuration, and modules.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:13;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"13\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/index\";s:11:\"router_path\";s:11:\"admin/index\";s:10:\"link_title\";s:5:\"Index\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-18\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"13\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:18:\"system_admin_index\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Index\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:16;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"16\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/modules\";s:11:\"router_path\";s:13:\"admin/modules\";s:10:\"link_title\";s:7:\"Modules\";s:7:\"options\";s:76:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Extend site functionality.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:7:\"Modules\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:26:\"Extend site functionality.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:18;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"18\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/people\";s:11:\"router_path\";s:12:\"admin/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Manage user accounts, roles, and permissions.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-4\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Manage user accounts, roles, and permissions.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:19;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"19\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/reports\";s:11:\"router_path\";s:13:\"admin/reports\";s:10:\"link_title\";s:7:\"Reports\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View reports, updates, and errors.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/reports\";s:5:\"title\";s:7:\"Reports\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View reports, updates, and errors.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:21;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"21\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/structure\";s:11:\"router_path\";s:15:\"admin/structure\";s:10:\"link_title\";s:9:\"Structure\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Administer blocks, content types, menus, etc.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-8\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/structure\";s:5:\"title\";s:9:\"Structure\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Administer blocks, content types, menus, etc.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:22;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"22\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/tasks\";s:11:\"router_path\";s:11:\"admin/tasks\";s:10:\"link_title\";s:5:\"Tasks\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"22\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Tasks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}}s:10:\"node_links\";a:0:{}}',0,1538750673,1),('links:management:tree-data:en:09bc82c9ca1d7556a24149515bfb07a41d387c78c7e7b30eb983f4ae4705a30f','a:2:{s:4:\"tree\";a:1:{i:1;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"1\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"admin\";s:11:\"router_path\";s:5:\"admin\";s:10:\"link_title\";s:14:\"Administration\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:14:\"Administration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:11:{i:7;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"7\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:16:\"admin/appearance\";s:11:\"router_path\";s:16:\"admin/appearance\";s:10:\"link_title\";s:10:\"Appearance\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Select and configure your themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-6\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"7\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer themes\";}\";s:13:\"page_callback\";s:18:\"system_themes_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/appearance\";s:5:\"title\";s:10:\"Appearance\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"Select and configure your themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:8;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"8\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/config\";s:11:\"router_path\";s:12:\"admin/config\";s:10:\"link_title\";s:13:\"Configuration\";s:7:\"options\";s:70:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:20:\"Administer settings.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:24:\"system_admin_config_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/config\";s:5:\"title\";s:13:\"Configuration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:20:\"Administer settings.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:9;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"9\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/content\";s:11:\"router_path\";s:13:\"admin/content\";s:10:\"link_title\";s:7:\"Content\";s:7:\"options\";s:82:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Administer content and comments.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"9\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:32:\"Administer content and comments.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:11;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"11\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/dashboard\";s:11:\"router_path\";s:15:\"admin/dashboard\";s:10:\"link_title\";s:9:\"Dashboard\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View and customize your dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/dashboard\";s:5:\"title\";s:9:\"Dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View and customize your dashboard.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:12;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"12\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:10:\"admin/help\";s:11:\"router_path\";s:10:\"admin/help\";s:10:\"link_title\";s:4:\"Help\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Reference for usage, configuration, and modules.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_main\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"admin/help\";s:5:\"title\";s:4:\"Help\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Reference for usage, configuration, and modules.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:13;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"13\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/index\";s:11:\"router_path\";s:11:\"admin/index\";s:10:\"link_title\";s:5:\"Index\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-18\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"13\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:18:\"system_admin_index\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Index\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:16;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"16\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/modules\";s:11:\"router_path\";s:13:\"admin/modules\";s:10:\"link_title\";s:7:\"Modules\";s:7:\"options\";s:76:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Extend site functionality.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:7:\"Modules\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:26:\"Extend site functionality.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:4:{i:44;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"44\";s:4:\"plid\";s:2:\"16\";s:9:\"link_path\";s:18:\"admin/modules/list\";s:11:\"router_path\";s:18:\"admin/modules/list\";s:10:\"link_title\";s:4:\"List\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:2:\"44\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:13:\"admin/modules\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:4:\"List\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:60;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"60\";s:4:\"plid\";s:2:\"16\";s:9:\"link_path\";s:23:\"admin/modules/uninstall\";s:11:\"router_path\";s:23:\"admin/modules/uninstall\";s:10:\"link_title\";s:9:\"Uninstall\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"20\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:2:\"60\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:42:\"a:1:{i:0;s:24:\"system_modules_uninstall\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:13:\"admin/modules\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:9:\"Uninstall\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:262;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"262\";s:4:\"plid\";s:2:\"16\";s:9:\"link_path\";s:20:\"admin/modules/update\";s:11:\"router_path\";s:20:\"admin/modules/update\";s:10:\"link_title\";s:6:\"Update\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:3:\"262\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:21:\"update_manager_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:61:\"a:2:{i:0;s:26:\"update_manager_update_form\";i:1;s:6:\"module\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:13:\"admin/modules\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:6:\"Update\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:263;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"263\";s:4:\"plid\";s:2:\"16\";s:9:\"link_path\";s:21:\"admin/modules/install\";s:11:\"router_path\";s:21:\"admin/modules/install\";s:10:\"link_title\";s:18:\"Install new module\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"25\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:3:\"263\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:21:\"update_manager_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:62:\"a:2:{i:0;s:27:\"update_manager_install_form\";i:1;s:6:\"module\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:13:\"admin/modules\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:18:\"Install new module\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"388\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:18;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"18\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/people\";s:11:\"router_path\";s:12:\"admin/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Manage user accounts, roles, and permissions.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-4\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Manage user accounts, roles, and permissions.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:19;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"19\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/reports\";s:11:\"router_path\";s:13:\"admin/reports\";s:10:\"link_title\";s:7:\"Reports\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View reports, updates, and errors.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/reports\";s:5:\"title\";s:7:\"Reports\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View reports, updates, and errors.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:21;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"21\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/structure\";s:11:\"router_path\";s:15:\"admin/structure\";s:10:\"link_title\";s:9:\"Structure\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Administer blocks, content types, menus, etc.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-8\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/structure\";s:5:\"title\";s:9:\"Structure\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Administer blocks, content types, menus, etc.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:22;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"22\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/tasks\";s:11:\"router_path\";s:11:\"admin/tasks\";s:10:\"link_title\";s:5:\"Tasks\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"22\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Tasks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}}s:10:\"node_links\";a:0:{}}',0,1652162471,1),('links:management:tree-data:en:0ead175204b0a531a097965e14d0e932a7eaa5bc0aac4de52623f219a2a61688','a:2:{s:4:\"tree\";a:1:{i:1;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"1\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"admin\";s:11:\"router_path\";s:5:\"admin\";s:10:\"link_title\";s:14:\"Administration\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:14:\"Administration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:11:{i:7;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"7\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:16:\"admin/appearance\";s:11:\"router_path\";s:16:\"admin/appearance\";s:10:\"link_title\";s:10:\"Appearance\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Select and configure your themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-6\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"7\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer themes\";}\";s:13:\"page_callback\";s:18:\"system_themes_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/appearance\";s:5:\"title\";s:10:\"Appearance\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"Select and configure your themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:8;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"8\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/config\";s:11:\"router_path\";s:12:\"admin/config\";s:10:\"link_title\";s:13:\"Configuration\";s:7:\"options\";s:70:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:20:\"Administer settings.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:24:\"system_admin_config_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/config\";s:5:\"title\";s:13:\"Configuration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:20:\"Administer settings.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:9;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"9\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/content\";s:11:\"router_path\";s:13:\"admin/content\";s:10:\"link_title\";s:7:\"Content\";s:7:\"options\";s:82:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Administer content and comments.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"9\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:32:\"Administer content and comments.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:11;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"11\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/dashboard\";s:11:\"router_path\";s:15:\"admin/dashboard\";s:10:\"link_title\";s:9:\"Dashboard\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View and customize your dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/dashboard\";s:5:\"title\";s:9:\"Dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View and customize your dashboard.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:12;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"12\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:10:\"admin/help\";s:11:\"router_path\";s:10:\"admin/help\";s:10:\"link_title\";s:4:\"Help\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Reference for usage, configuration, and modules.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_main\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"admin/help\";s:5:\"title\";s:4:\"Help\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Reference for usage, configuration, and modules.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:13;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"13\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/index\";s:11:\"router_path\";s:11:\"admin/index\";s:10:\"link_title\";s:5:\"Index\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-18\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"13\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:18:\"system_admin_index\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Index\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:16;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"16\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/modules\";s:11:\"router_path\";s:13:\"admin/modules\";s:10:\"link_title\";s:7:\"Modules\";s:7:\"options\";s:76:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Extend site functionality.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:7:\"Modules\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:26:\"Extend site functionality.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:18;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"18\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/people\";s:11:\"router_path\";s:12:\"admin/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Manage user accounts, roles, and permissions.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-4\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Manage user accounts, roles, and permissions.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:19;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"19\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/reports\";s:11:\"router_path\";s:13:\"admin/reports\";s:10:\"link_title\";s:7:\"Reports\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View reports, updates, and errors.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/reports\";s:5:\"title\";s:7:\"Reports\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View reports, updates, and errors.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:21;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"21\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/structure\";s:11:\"router_path\";s:15:\"admin/structure\";s:10:\"link_title\";s:9:\"Structure\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Administer blocks, content types, menus, etc.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-8\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/structure\";s:5:\"title\";s:9:\"Structure\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Administer blocks, content types, menus, etc.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:8:{i:30;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"30\";s:4:\"plid\";s:2:\"21\";s:9:\"link_path\";s:21:\"admin/structure/block\";s:11:\"router_path\";s:21:\"admin/structure/block\";s:10:\"link_title\";s:6:\"Blocks\";s:7:\"options\";s:129:\"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.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"30\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer blocks\";}\";s:13:\"page_callback\";s:19:\"block_admin_display\";s:14:\"page_arguments\";s:30:\"a:1:{i:0;s:12:\"multipurpose\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/structure/block\";s:5:\"title\";s:6:\"Blocks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:79:\"Configure what block content appears in your site\'s sidebars and other regions.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:9:{i:92;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"92\";s:4:\"plid\";s:2:\"30\";s:9:\"link_path\";s:25:\"admin/structure/block/add\";s:11:\"router_path\";s:25:\"admin/structure/block/add\";s:10:\"link_title\";s:9:\"Add block\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"30\";s:2:\"p4\";s:2:\"92\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer blocks\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:38:\"a:1:{i:0;s:20:\"block_add_block_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:21:\"admin/structure/block\";s:8:\"tab_root\";s:21:\"admin/structure/block\";s:5:\"title\";s:9:\"Add block\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"388\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:131;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"131\";s:4:\"plid\";s:2:\"30\";s:9:\"link_path\";s:33:\"admin/structure/block/list/bartik\";s:11:\"router_path\";s:33:\"admin/structure/block/list/bartik\";s:10:\"link_title\";s:6:\"Bartik\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"30\";s:2:\"p4\";s:3:\"131\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:20:\"_block_themes_access\";s:16:\"access_arguments\";s:2737:\"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:19:{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.59\";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:20:{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:14:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"settings\";a:1:{s:20:\"shortcut_module_link\";s:1:\"0\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";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:1538750217;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}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\";}}\";s:13:\"page_callback\";s:19:\"block_admin_display\";s:14:\"page_arguments\";s:23:\"a:1:{i:0;s:6:\"bartik\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:21:\"admin/structure/block\";s:8:\"tab_root\";s:21:\"admin/structure/block\";s:5:\"title\";s:6:\"Bartik\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:137;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"137\";s:4:\"plid\";s:2:\"30\";s:9:\"link_path\";s:34:\"admin/structure/block/list/garland\";s:11:\"router_path\";s:34:\"admin/structure/block/list/garland\";s:10:\"link_title\";s:7:\"Garland\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"30\";s:2:\"p4\";s:3:\"137\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:20:\"_block_themes_access\";s:16:\"access_arguments\";s:2159:\"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:19:{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.59\";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:\"1524673284\";s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:12:{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:14:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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:1538750217;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}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\";}}\";s:13:\"page_callback\";s:19:\"block_admin_display\";s:14:\"page_arguments\";s:24:\"a:1:{i:0;s:7:\"garland\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:21:\"admin/structure/block\";s:8:\"tab_root\";s:21:\"admin/structure/block\";s:5:\"title\";s:7:\"Garland\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:143;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"143\";s:4:\"plid\";s:2:\"30\";s:9:\"link_path\";s:32:\"admin/structure/block/list/seven\";s:11:\"router_path\";s:32:\"admin/structure/block/list/seven\";s:10:\"link_title\";s:5:\"Seven\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"30\";s:2:\"p4\";s:3:\"143\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:20:\"_block_themes_access\";s:16:\"access_arguments\";s:1959:\"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:19:{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.59\";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:8:{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:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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:\"1524673284\";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:1538750217;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}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\";}}\";s:13:\"page_callback\";s:19:\"block_admin_display\";s:14:\"page_arguments\";s:22:\"a:1:{i:0;s:5:\"seven\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:21:\"admin/structure/block\";s:8:\"tab_root\";s:21:\"admin/structure/block\";s:5:\"title\";s:5:\"Seven\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:144;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"144\";s:4:\"plid\";s:2:\"30\";s:9:\"link_path\";s:32:\"admin/structure/block/list/stark\";s:11:\"router_path\";s:32:\"admin/structure/block/list/stark\";s:10:\"link_title\";s:5:\"Stark\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"30\";s:2:\"p4\";s:3:\"144\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:20:\"_block_themes_access\";s:16:\"access_arguments\";s:2062:\"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:18:{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.59\";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:\"1524673284\";s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:12:{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:14:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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:1538750217;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}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\";}}\";s:13:\"page_callback\";s:19:\"block_admin_display\";s:14:\"page_arguments\";s:22:\"a:1:{i:0;s:5:\"stark\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:21:\"admin/structure/block\";s:8:\"tab_root\";s:21:\"admin/structure/block\";s:5:\"title\";s:5:\"Stark\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:155;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"155\";s:4:\"plid\";s:2:\"30\";s:9:\"link_path\";s:32:\"admin/structure/block/manage/%/%\";s:11:\"router_path\";s:32:\"admin/structure/block/manage/%/%\";s:10:\"link_title\";s:15:\"Configure block\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"30\";s:2:\"p4\";s:3:\"155\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:18:\"a:2:{i:4;N;i:5;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer blocks\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:55:\"a:3:{i:0;s:21:\"block_admin_configure\";i:1;i:4;i:2;i:5;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:32:\"admin/structure/block/manage/%/%\";s:5:\"title\";s:15:\"Configure block\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:3:{i:175;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"175\";s:4:\"plid\";s:3:\"155\";s:9:\"link_path\";s:42:\"admin/structure/block/manage/%/%/configure\";s:11:\"router_path\";s:42:\"admin/structure/block/manage/%/%/configure\";s:10:\"link_title\";s:9:\"Configure\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:4:\"-100\";s:5:\"depth\";s:1:\"5\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"30\";s:2:\"p4\";s:3:\"155\";s:2:\"p5\";s:3:\"175\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:18:\"a:2:{i:4;N;i:5;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer blocks\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:55:\"a:3:{i:0;s:21:\"block_admin_configure\";i:1;i:4;i:2;i:5;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:32:\"admin/structure/block/manage/%/%\";s:8:\"tab_root\";s:32:\"admin/structure/block/manage/%/%\";s:5:\"title\";s:9:\"Configure\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:0:{}}i:176;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"176\";s:4:\"plid\";s:3:\"155\";s:9:\"link_path\";s:39:\"admin/structure/block/manage/%/%/delete\";s:11:\"router_path\";s:39:\"admin/structure/block/manage/%/%/delete\";s:10:\"link_title\";s:12:\"Delete block\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"5\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"30\";s:2:\"p4\";s:3:\"155\";s:2:\"p5\";s:3:\"176\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:18:\"a:2:{i:4;N;i:5;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer blocks\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:59:\"a:3:{i:0;s:25:\"block_custom_block_delete\";i:1;i:4;i:2;i:5;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:39:\"admin/structure/block/manage/%/%/delete\";s:5:\"title\";s:12:\"Delete block\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"0\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:380;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"380\";s:4:\"plid\";s:3:\"155\";s:9:\"link_path\";s:42:\"admin/structure/block/manage/%/%/translate\";s:11:\"router_path\";s:42:\"admin/structure/block/manage/%/%/translate\";s:10:\"link_title\";s:9:\"Translate\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:5:\"depth\";s:1:\"5\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"30\";s:2:\"p4\";s:3:\"155\";s:2:\"p5\";s:3:\"380\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:18:\"a:2:{i:4;N;i:5;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:31:\"i18n_block_translate_tab_access\";s:16:\"access_arguments\";s:22:\"a:2:{i:0;i:4;i:1;i:5;}\";s:13:\"page_callback\";s:29:\"i18n_block_translate_tab_page\";s:14:\"page_arguments\";s:22:\"a:2:{i:0;i:4;i:1;i:5;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:32:\"admin/structure/block/manage/%/%\";s:8:\"tab_root\";s:32:\"admin/structure/block/manage/%/%\";s:5:\"title\";s:9:\"Translate\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:353;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"353\";s:4:\"plid\";s:2:\"30\";s:9:\"link_path\";s:49:\"admin/structure/block/list/alpha_responsive_theme\";s:11:\"router_path\";s:49:\"admin/structure/block/list/alpha_responsive_theme\";s:10:\"link_title\";s:22:\"Alpha Responsive Theme\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"30\";s:2:\"p4\";s:3:\"353\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:20:\"_block_themes_access\";s:16:\"access_arguments\";s:3786:\"a:1:{i:0;O:8:\"stdClass\":13:{s:8:\"filename\";s:67:\"sites/all/themes/alpha_responsive_theme/alpha_responsive_theme.info\";s:4:\"name\";s:22:\"alpha_responsive_theme\";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:22:\"Alpha Responsive Theme\";s:11:\"description\";s:178:\"Designed & Developed by <a href=http://www.zymphonies.com>Zymphonies</a><br/>Contact us for any kind of Drupal services <a href=mailto:info@zymphonies.com>info@zymphonies.com</a>\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:3:{s:20:\"css/font-awesome.css\";s:60:\"sites/all/themes/alpha_responsive_theme/css/font-awesome.css\";s:13:\"css/style.css\";s:53:\"sites/all/themes/alpha_responsive_theme/css/style.css\";s:13:\"css/media.css\";s:53:\"sites/all/themes/alpha_responsive_theme/css/media.css\";}}s:7:\"scripts\";a:1:{s:12:\"js/custom.js\";s:52:\"sites/all/themes/alpha_responsive_theme/js/custom.js\";}s:7:\"regions\";a:23:{s:6:\"search\";s:13:\"Search widget\";s:9:\"user_menu\";s:16:\"User menu widget\";s:9:\"slideshow\";s:16:\"Slideshow widget\";s:13:\"front_welcome\";s:20:\"Front welcome widget\";s:9:\"top_first\";s:16:\"First top widget\";s:10:\"top_second\";s:17:\"Second top widget\";s:9:\"top_third\";s:16:\"Third top widget\";s:13:\"sidebar_first\";s:13:\"First sidebar\";s:14:\"sidebar_second\";s:14:\"Second sidebar\";s:7:\"content\";s:7:\"Content\";s:10:\"highlights\";s:17:\"Highlights widget\";s:15:\"bottom_widget_1\";s:19:\"Bottom first widget\";s:15:\"bottom_widget_2\";s:20:\"Bottom second widget\";s:15:\"bottom_widget_3\";s:19:\"Bottom third widget\";s:12:\"footer_first\";s:19:\"First bottom widget\";s:13:\"footer_second\";s:20:\"Second bottom widget\";s:12:\"footer_third\";s:19:\"Third bottom widget\";s:12:\"footer_forth\";s:19:\"Forth bottom widget\";s:8:\"page_top\";s:8:\"Page top\";s:11:\"page_bottom\";s:11:\"Page bottom\";s:14:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:4:\"name\";i:2;s:6:\"slogan\";i:3;s:17:\"node_user_picture\";i:4;s:20:\"comment_user_picture\";i:5;s:25:\"comment_user_verification\";i:6;s:7:\"favicon\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:8:\"settings\";a:8:{s:11:\"breadcrumbs\";s:1:\"1\";s:12:\"social_links\";s:1:\"1\";s:11:\"twitter_url\";s:30:\"https://twitter.com/zymphonies\";s:12:\"facebook_url\";s:35:\"https://www.facebook.com/zymphonies\";s:17:\"gplus_profile_url\";s:52:\"https://plus.google.com/u/1/+ZymphoniesTechnologies/\";s:20:\"linkedin_profile_url\";s:43:\"https://www.linkedin.com/company/zymphonies\";s:21:\"pinterest_profile_url\";s:36:\"http://www.pinterest.com/zymphonies/\";s:19:\"youtube_profile_url\";s:22:\"http://www.youtube.com\";}s:7:\"version\";s:7:\"7.x-1.4\";s:7:\"project\";s:22:\"alpha_responsive_theme\";s:9:\"datestamp\";s:10:\"1511889487\";s:10:\"screenshot\";s:54:\"sites/all/themes/alpha_responsive_theme/screenshot.png\";s:3:\"php\";s:5:\"5.2.4\";s:5:\"mtime\";i:1537955055;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}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:3:{s:20:\"css/font-awesome.css\";s:60:\"sites/all/themes/alpha_responsive_theme/css/font-awesome.css\";s:13:\"css/style.css\";s:53:\"sites/all/themes/alpha_responsive_theme/css/style.css\";s:13:\"css/media.css\";s:53:\"sites/all/themes/alpha_responsive_theme/css/media.css\";}}s:7:\"scripts\";a:1:{s:12:\"js/custom.js\";s:52:\"sites/all/themes/alpha_responsive_theme/js/custom.js\";}s:6:\"engine\";s:11:\"phptemplate\";}}\";s:13:\"page_callback\";s:19:\"block_admin_display\";s:14:\"page_arguments\";s:40:\"a:1:{i:0;s:22:\"alpha_responsive_theme\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:21:\"admin/structure/block\";s:8:\"tab_root\";s:21:\"admin/structure/block\";s:5:\"title\";s:22:\"Alpha Responsive Theme\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:357;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"357\";s:4:\"plid\";s:2:\"30\";s:9:\"link_path\";s:39:\"admin/structure/block/list/multipurpose\";s:11:\"router_path\";s:39:\"admin/structure/block/list/multipurpose\";s:10:\"link_title\";s:18:\"Multipurpose Theme\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"30\";s:2:\"p4\";s:3:\"357\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:20:\"_block_themes_access\";s:16:\"access_arguments\";s:3186:\"a:1:{i:0;O:8:\"stdClass\":13:{s:8:\"filename\";s:47:\"sites/all/themes/multipurpose/multipurpose.info\";s:4:\"name\";s:12:\"multipurpose\";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:18:\"Multipurpose Theme\";s:11:\"description\";s:112:\"Multipurpose Theme is a premium Drupal 7 theme. Developed by <a href=\"http://www.devsaran.com\">Devsaran.com</a>.\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:2:{s:9:\"style.css\";s:39:\"sites/all/themes/multipurpose/style.css\";s:18:\"css/responsive.css\";s:48:\"sites/all/themes/multipurpose/css/responsive.css\";}}s:7:\"scripts\";a:3:{s:12:\"js/retina.js\";s:42:\"sites/all/themes/multipurpose/js/retina.js\";s:13:\"js/plugins.js\";s:43:\"sites/all/themes/multipurpose/js/plugins.js\";s:12:\"js/global.js\";s:42:\"sites/all/themes/multipurpose/js/global.js\";}s:7:\"regions\";a:15:{s:13:\"sidebar_first\";s:13:\"First Sidebar\";s:6:\"header\";s:6:\"Header\";s:13:\"preface_first\";s:13:\"Preface First\";s:14:\"preface_middle\";s:14:\"Preface Middle\";s:12:\"preface_last\";s:12:\"Preface Last\";s:11:\"content_top\";s:11:\"Content Top\";s:7:\"content\";s:7:\"Content\";s:4:\"help\";s:4:\"Help\";s:6:\"footer\";s:6:\"Footer\";s:12:\"footer_first\";s:12:\"First Bottom\";s:13:\"footer_second\";s:13:\"Second Bottom\";s:12:\"footer_third\";s:12:\"Third Bottom\";s:14:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:4:\"name\";i:2;s:6:\"slogan\";i:3;s:17:\"node_user_picture\";i:4;s:20:\"comment_user_picture\";i:5;s:25:\"comment_user_verification\";i:6;s:7:\"favicon\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:8:\"settings\";a:8:{s:17:\"slideshow_display\";s:1:\"1\";s:11:\"breadcrumbs\";s:1:\"1\";s:10:\"image_logo\";s:1:\"0\";s:18:\"socialicon_display\";s:1:\"1\";s:12:\"facebook_url\";s:39:\"http://www.facebook.com/devsaran.drupal\";s:11:\"twitter_url\";s:34:\"http://www.twitter.com/saranquardz\";s:15:\"google_plus_url\";s:49:\"https://plus.google.com/u/0/109064032428497406718\";s:13:\"pinterest_url\";s:20:\"http://pinterest.com\";}s:7:\"version\";s:7:\"7.x-1.0\";s:7:\"project\";s:12:\"multipurpose\";s:9:\"datestamp\";s:10:\"1409600329\";s:10:\"screenshot\";s:44:\"sites/all/themes/multipurpose/screenshot.png\";s:3:\"php\";s:5:\"5.2.4\";s:5:\"mtime\";i:1413461100;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}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:2:{s:9:\"style.css\";s:39:\"sites/all/themes/multipurpose/style.css\";s:18:\"css/responsive.css\";s:48:\"sites/all/themes/multipurpose/css/responsive.css\";}}s:7:\"scripts\";a:3:{s:12:\"js/retina.js\";s:42:\"sites/all/themes/multipurpose/js/retina.js\";s:13:\"js/plugins.js\";s:43:\"sites/all/themes/multipurpose/js/plugins.js\";s:12:\"js/global.js\";s:42:\"sites/all/themes/multipurpose/js/global.js\";}s:6:\"engine\";s:11:\"phptemplate\";}}\";s:13:\"page_callback\";s:19:\"block_admin_display\";s:14:\"page_arguments\";s:30:\"a:1:{i:0;s:12:\"multipurpose\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:21:\"admin/structure/block\";s:8:\"tab_root\";s:21:\"admin/structure/block\";s:5:\"title\";s:18:\"Multipurpose Theme\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:412;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"412\";s:4:\"plid\";s:2:\"30\";s:9:\"link_path\";s:40:\"admin/structure/block/list/venture_theme\";s:11:\"router_path\";s:40:\"admin/structure/block/list/venture_theme\";s:10:\"link_title\";s:13:\"Venture Theme\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"30\";s:2:\"p4\";s:3:\"412\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:20:\"_block_themes_access\";s:16:\"access_arguments\";s:3317:\"a:1:{i:0;O:8:\"stdClass\":13:{s:8:\"filename\";s:49:\"sites/all/themes/venture_theme/venture_theme.info\";s:4:\"name\";s:13:\"venture_theme\";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:13:\"Venture Theme\";s:11:\"description\";s:107:\"Venture Theme is a premium Drupal 7 theme. Developed by <a href=\"http://www.devsaran.com\">Devsaran.com</a>.\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:2:{s:9:\"style.css\";s:40:\"sites/all/themes/venture_theme/style.css\";s:18:\"css/responsive.css\";s:49:\"sites/all/themes/venture_theme/css/responsive.css\";}}s:7:\"scripts\";a:3:{s:12:\"js/retina.js\";s:43:\"sites/all/themes/venture_theme/js/retina.js\";s:13:\"js/plugins.js\";s:44:\"sites/all/themes/venture_theme/js/plugins.js\";s:12:\"js/global.js\";s:43:\"sites/all/themes/venture_theme/js/global.js\";}s:7:\"regions\";a:15:{s:13:\"sidebar_first\";s:13:\"First Sidebar\";s:6:\"header\";s:6:\"Header\";s:13:\"preface_first\";s:13:\"Preface First\";s:14:\"preface_middle\";s:14:\"Preface Middle\";s:12:\"preface_last\";s:12:\"Preface Last\";s:11:\"content_top\";s:11:\"Content Top\";s:7:\"content\";s:7:\"Content\";s:4:\"help\";s:4:\"Help\";s:6:\"footer\";s:6:\"Footer\";s:12:\"footer_first\";s:12:\"First Bottom\";s:13:\"footer_second\";s:13:\"Second Bottom\";s:12:\"footer_third\";s:12:\"Third Bottom\";s:14:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:4:\"name\";i:2;s:6:\"slogan\";i:3;s:17:\"node_user_picture\";i:4;s:20:\"comment_user_picture\";i:5;s:25:\"comment_user_verification\";i:6;s:7:\"favicon\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:8:\"settings\";a:12:{s:17:\"slideshow_display\";s:1:\"1\";s:11:\"breadcrumbs\";s:1:\"1\";s:10:\"image_logo\";s:1:\"0\";s:11:\"slide1_head\";s:14:\"Sample product\";s:11:\"slide2_head\";s:14:\"Sample service\";s:11:\"slide3_head\";s:10:\"Contact us\";s:11:\"slide1_desc\";s:40:\"Sed do eiusmod tempor incididunt elit...\";s:11:\"slide2_desc\";s:42:\"Lorem ipsum dolor sit amet, consectetur...\";s:11:\"slide3_desc\";s:41:\"Duis aute irure dolor in reprehenderit...\";s:10:\"slide1_url\";s:6:\"node/1\";s:10:\"slide2_url\";s:6:\"node/2\";s:10:\"slide3_url\";s:6:\"node/3\";}s:7:\"version\";s:7:\"7.x-1.1\";s:7:\"project\";s:13:\"venture_theme\";s:9:\"datestamp\";s:10:\"1402425233\";s:10:\"screenshot\";s:45:\"sites/all/themes/venture_theme/screenshot.png\";s:3:\"php\";s:5:\"5.2.4\";s:5:\"mtime\";i:1411558912;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}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:2:{s:9:\"style.css\";s:40:\"sites/all/themes/venture_theme/style.css\";s:18:\"css/responsive.css\";s:49:\"sites/all/themes/venture_theme/css/responsive.css\";}}s:7:\"scripts\";a:3:{s:12:\"js/retina.js\";s:43:\"sites/all/themes/venture_theme/js/retina.js\";s:13:\"js/plugins.js\";s:44:\"sites/all/themes/venture_theme/js/plugins.js\";s:12:\"js/global.js\";s:43:\"sites/all/themes/venture_theme/js/global.js\";}s:6:\"engine\";s:11:\"phptemplate\";}}\";s:13:\"page_callback\";s:19:\"block_admin_display\";s:14:\"page_arguments\";s:31:\"a:1:{i:0;s:13:\"venture_theme\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:21:\"admin/structure/block\";s:8:\"tab_root\";s:21:\"admin/structure/block\";s:5:\"title\";s:13:\"Venture Theme\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:36;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"36\";s:4:\"plid\";s:2:\"21\";s:9:\"link_path\";s:21:\"admin/structure/types\";s:11:\"router_path\";s:21:\"admin/structure/types\";s:10:\"link_title\";s:13:\"Content types\";s:7:\"options\";s:142:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:92:\"Manage content types, including default status, front page promotion, comment settings, etc.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"36\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:42:\"a:1:{i:0;s:24:\"administer content types\";}\";s:13:\"page_callback\";s:19:\"node_overview_types\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/structure/types\";s:5:\"title\";s:13:\"Content types\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:92:\"Manage content types, including default status, front page promotion, comment settings, etc.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:47;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"47\";s:4:\"plid\";s:2:\"21\";s:9:\"link_path\";s:20:\"admin/structure/menu\";s:11:\"router_path\";s:20:\"admin/structure/menu\";s:10:\"link_title\";s:5:\"Menus\";s:7:\"options\";s:136:\"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.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"47\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"administer menu\";}\";s:13:\"page_callback\";s:18:\"menu_overview_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/structure/menu\";s:5:\"title\";s:5:\"Menus\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:86:\"Add new menus to your site, edit existing menus, and rename and reorganize menu links.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:57;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"57\";s:4:\"plid\";s:2:\"21\";s:9:\"link_path\";s:24:\"admin/structure/taxonomy\";s:11:\"router_path\";s:24:\"admin/structure/taxonomy\";s:10:\"link_title\";s:8:\"Taxonomy\";s:7:\"options\";s:117:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:67:\"Manage tagging, categorization, and classification of your content.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:2:\"57\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"administer taxonomy\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:48:\"a:1:{i:0;s:30:\"taxonomy_overview_vocabularies\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:24:\"admin/structure/taxonomy\";s:5:\"title\";s:8:\"Taxonomy\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:67:\"Manage tagging, categorization, and classification of your content.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:331;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"331\";s:4:\"plid\";s:2:\"21\";s:9:\"link_path\";s:21:\"admin/structure/views\";s:11:\"router_path\";s:21:\"admin/structure/views\";s:10:\"link_title\";s:5:\"Views\";s:7:\"options\";s:85:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:35:\"Manage customized lists of content.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:3:\"331\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:28:\"ctools_export_ui_task_access\";s:16:\"access_arguments\";s:40:\"a:2:{i:0;s:8:\"views_ui\";i:1;s:4:\"list\";}\";s:13:\"page_callback\";s:30:\"ctools_export_ui_switcher_page\";s:14:\"page_arguments\";s:40:\"a:2:{i:0;s:8:\"views_ui\";i:1;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/structure/views\";s:5:\"title\";s:5:\"Views\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:35:\"Manage customized lists of content.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:483;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"483\";s:4:\"plid\";s:2:\"21\";s:9:\"link_path\";s:24:\"admin/structure/features\";s:11:\"router_path\";s:24:\"admin/structure/features\";s:10:\"link_title\";s:8:\"Features\";s:7:\"options\";s:66:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:16:\"Manage features.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:3:\"483\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"manage features\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:37:\"a:1:{i:0;s:19:\"features_admin_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:24:\"admin/structure/features\";s:5:\"title\";s:8:\"Features\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:16:\"Manage features.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:618;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"618\";s:4:\"plid\";s:2:\"21\";s:9:\"link_path\";s:23:\"admin/structure/contact\";s:11:\"router_path\";s:23:\"admin/structure/contact\";s:10:\"link_title\";s:12:\"Contact form\";s:7:\"options\";s:121:\"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.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:3:\"618\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:42:\"a:1:{i:0;s:24:\"administer contact forms\";}\";s:13:\"page_callback\";s:21:\"contact_category_list\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:23:\"admin/structure/contact\";s:5:\"title\";s:12:\"Contact form\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:71:\"Create a system contact form and set up categories for the form to use.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:620;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"620\";s:4:\"plid\";s:2:\"21\";s:9:\"link_path\";s:21:\"admin/structure/forum\";s:11:\"router_path\";s:21:\"admin/structure/forum\";s:10:\"link_title\";s:6:\"Forums\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Control forum hierarchy settings.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:3:\"620\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer forums\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"forum_overview\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/structure/forum\";s:5:\"title\";s:6:\"Forums\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"Control forum hierarchy settings.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:22;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"22\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/tasks\";s:11:\"router_path\";s:11:\"admin/tasks\";s:10:\"link_title\";s:5:\"Tasks\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"22\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Tasks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}}s:10:\"node_links\";a:0:{}}',0,1652163127,1),('links:management:tree-data:en:3023ae1879e4d74e557c6a4239597e04e1c68b4b9207a4eb91bf0bb1a73e5c9b','a:2:{s:4:\"tree\";a:1:{i:1;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"1\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"admin\";s:11:\"router_path\";s:5:\"admin\";s:10:\"link_title\";s:14:\"Administration\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:14:\"Administration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:11:{i:7;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"7\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:16:\"admin/appearance\";s:11:\"router_path\";s:16:\"admin/appearance\";s:10:\"link_title\";s:10:\"Appearance\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Select and configure your themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-6\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"7\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer themes\";}\";s:13:\"page_callback\";s:18:\"system_themes_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/appearance\";s:5:\"title\";s:10:\"Appearance\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"Select and configure your themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:8;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"8\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/config\";s:11:\"router_path\";s:12:\"admin/config\";s:10:\"link_title\";s:13:\"Configuration\";s:7:\"options\";s:70:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:20:\"Administer settings.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:24:\"system_admin_config_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/config\";s:5:\"title\";s:13:\"Configuration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:20:\"Administer settings.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:10:{i:35;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"35\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:20:\"admin/config/content\";s:11:\"router_path\";s:20:\"admin/config/content\";s:10:\"link_title\";s:17:\"Content authoring\";s:7:\"options\";s:103:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:53:\"Settings related to formatting and authoring content.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"35\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/config/content\";s:5:\"title\";s:17:\"Content authoring\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:53:\"Settings related to formatting and authoring content.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:39;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"39\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:24:\"admin/config/development\";s:11:\"router_path\";s:24:\"admin/config/development\";s:10:\"link_title\";s:11:\"Development\";s:7:\"options\";s:68:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:18:\"Development tools.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"39\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:24:\"admin/config/development\";s:5:\"title\";s:11:\"Development\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:18:\"Development tools.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:3:{i:111;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"111\";s:4:\"plid\";s:2:\"39\";s:9:\"link_path\";s:32:\"admin/config/development/logging\";s:11:\"router_path\";s:32:\"admin/config/development/logging\";s:10:\"link_title\";s:18:\"Logging and errors\";s:7:\"options\";s:205:\"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.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"39\";s:2:\"p4\";s:3:\"111\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"administer site configuration\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:41:\"a:1:{i:0;s:23:\"system_logging_settings\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:32:\"admin/config/development/logging\";s:5:\"title\";s:18:\"Logging and errors\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";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.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:112;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"112\";s:4:\"plid\";s:2:\"39\";s:9:\"link_path\";s:36:\"admin/config/development/maintenance\";s:11:\"router_path\";s:36:\"admin/config/development/maintenance\";s:10:\"link_title\";s:16:\"Maintenance mode\";s:7:\"options\";s:112:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:62:\"Take the site offline for maintenance or bring it back online.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"39\";s:2:\"p4\";s:3:\"112\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"administer site configuration\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:46:\"a:1:{i:0;s:28:\"system_site_maintenance_mode\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:36:\"admin/config/development/maintenance\";s:5:\"title\";s:16:\"Maintenance mode\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:62:\"Take the site offline for maintenance or bring it back online.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:0:{}}i:113;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"113\";s:4:\"plid\";s:2:\"39\";s:9:\"link_path\";s:36:\"admin/config/development/performance\";s:11:\"router_path\";s:36:\"admin/config/development/performance\";s:10:\"link_title\";s:11:\"Performance\";s:7:\"options\";s:152:\"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.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"39\";s:2:\"p4\";s:3:\"113\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"administer site configuration\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:45:\"a:1:{i:0;s:27:\"system_performance_settings\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:36:\"admin/config/development/performance\";s:5:\"title\";s:11:\"Performance\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:101:\"Enable or disable page caching for anonymous users and set CSS and JS bandwidth optimization options.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:46;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"46\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:18:\"admin/config/media\";s:11:\"router_path\";s:18:\"admin/config/media\";s:10:\"link_title\";s:5:\"Media\";s:7:\"options\";s:62:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:12:\"Media tools.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"46\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:18:\"admin/config/media\";s:5:\"title\";s:5:\"Media\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:12:\"Media tools.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:48;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"48\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:19:\"admin/config/people\";s:11:\"router_path\";s:19:\"admin/config/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:74:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:24:\"Configure user accounts.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"48\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/config/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:24:\"Configure user accounts.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:51;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"51\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:21:\"admin/config/regional\";s:11:\"router_path\";s:21:\"admin/config/regional\";s:10:\"link_title\";s:21:\"Regional and language\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Regional settings, localization and translation.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-5\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"51\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/config/regional\";s:5:\"title\";s:21:\"Regional and language\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Regional settings, localization and translation.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:53;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"53\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:19:\"admin/config/search\";s:11:\"router_path\";s:19:\"admin/config/search\";s:10:\"link_title\";s:19:\"Search and metadata\";s:7:\"options\";s:86:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:36:\"Local site search, metadata and SEO.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"53\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/config/search\";s:5:\"title\";s:19:\"Search and metadata\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:36:\"Local site search, metadata and SEO.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:56;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"56\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:19:\"admin/config/system\";s:11:\"router_path\";s:19:\"admin/config/system\";s:10:\"link_title\";s:6:\"System\";s:7:\"options\";s:87:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:37:\"General system related configuration.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"56\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/config/system\";s:5:\"title\";s:6:\"System\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:37:\"General system related configuration.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:61;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"61\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:27:\"admin/config/user-interface\";s:11:\"router_path\";s:27:\"admin/config/user-interface\";s:10:\"link_title\";s:14:\"User interface\";s:7:\"options\";s:88:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:38:\"Tools that enhance the user interface.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"61\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:27:\"admin/config/user-interface\";s:5:\"title\";s:14:\"User interface\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:38:\"Tools that enhance the user interface.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:64;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"64\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:21:\"admin/config/services\";s:11:\"router_path\";s:21:\"admin/config/services\";s:10:\"link_title\";s:12:\"Web services\";s:7:\"options\";s:80:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:30:\"Tools related to web services.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"64\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/config/services\";s:5:\"title\";s:12:\"Web services\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:30:\"Tools related to web services.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:65;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"65\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:21:\"admin/config/workflow\";s:11:\"router_path\";s:21:\"admin/config/workflow\";s:10:\"link_title\";s:8:\"Workflow\";s:7:\"options\";s:93:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"Content workflow, editorial workflow tools.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"65\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/config/workflow\";s:5:\"title\";s:8:\"Workflow\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:43:\"Content workflow, editorial workflow tools.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:9;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"9\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/content\";s:11:\"router_path\";s:13:\"admin/content\";s:10:\"link_title\";s:7:\"Content\";s:7:\"options\";s:82:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Administer content and comments.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"9\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:32:\"Administer content and comments.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:11;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"11\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/dashboard\";s:11:\"router_path\";s:15:\"admin/dashboard\";s:10:\"link_title\";s:9:\"Dashboard\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View and customize your dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/dashboard\";s:5:\"title\";s:9:\"Dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View and customize your dashboard.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:12;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"12\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:10:\"admin/help\";s:11:\"router_path\";s:10:\"admin/help\";s:10:\"link_title\";s:4:\"Help\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Reference for usage, configuration, and modules.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_main\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"admin/help\";s:5:\"title\";s:4:\"Help\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Reference for usage, configuration, and modules.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:13;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"13\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/index\";s:11:\"router_path\";s:11:\"admin/index\";s:10:\"link_title\";s:5:\"Index\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-18\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"13\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:18:\"system_admin_index\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Index\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:16;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"16\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/modules\";s:11:\"router_path\";s:13:\"admin/modules\";s:10:\"link_title\";s:7:\"Modules\";s:7:\"options\";s:76:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Extend site functionality.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:7:\"Modules\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:26:\"Extend site functionality.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:18;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"18\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/people\";s:11:\"router_path\";s:12:\"admin/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Manage user accounts, roles, and permissions.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-4\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Manage user accounts, roles, and permissions.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:19;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"19\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/reports\";s:11:\"router_path\";s:13:\"admin/reports\";s:10:\"link_title\";s:7:\"Reports\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View reports, updates, and errors.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/reports\";s:5:\"title\";s:7:\"Reports\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View reports, updates, and errors.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:21;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"21\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/structure\";s:11:\"router_path\";s:15:\"admin/structure\";s:10:\"link_title\";s:9:\"Structure\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Administer blocks, content types, menus, etc.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-8\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/structure\";s:5:\"title\";s:9:\"Structure\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Administer blocks, content types, menus, etc.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:22;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"22\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/tasks\";s:11:\"router_path\";s:11:\"admin/tasks\";s:10:\"link_title\";s:5:\"Tasks\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"22\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Tasks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}}s:10:\"node_links\";a:0:{}}',0,1652171422,1),('links:management:tree-data:en:344d56accc693bf37a08bb46eb3f407e359a08453247c6d5c712f03cafc2c3d2','a:2:{s:4:\"tree\";a:1:{i:1;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"1\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"admin\";s:11:\"router_path\";s:5:\"admin\";s:10:\"link_title\";s:14:\"Administration\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:14:\"Administration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:11:{i:7;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"7\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:16:\"admin/appearance\";s:11:\"router_path\";s:16:\"admin/appearance\";s:10:\"link_title\";s:10:\"Appearance\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Select and configure your themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-6\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"7\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer themes\";}\";s:13:\"page_callback\";s:18:\"system_themes_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/appearance\";s:5:\"title\";s:10:\"Appearance\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"Select and configure your themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:8;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"8\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/config\";s:11:\"router_path\";s:12:\"admin/config\";s:10:\"link_title\";s:13:\"Configuration\";s:7:\"options\";s:70:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:20:\"Administer settings.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:24:\"system_admin_config_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/config\";s:5:\"title\";s:13:\"Configuration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:20:\"Administer settings.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:9;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"9\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/content\";s:11:\"router_path\";s:13:\"admin/content\";s:10:\"link_title\";s:7:\"Content\";s:7:\"options\";s:82:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Administer content and comments.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"9\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:32:\"Administer content and comments.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:11;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"11\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/dashboard\";s:11:\"router_path\";s:15:\"admin/dashboard\";s:10:\"link_title\";s:9:\"Dashboard\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View and customize your dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/dashboard\";s:5:\"title\";s:9:\"Dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View and customize your dashboard.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:12;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"12\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:10:\"admin/help\";s:11:\"router_path\";s:10:\"admin/help\";s:10:\"link_title\";s:4:\"Help\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Reference for usage, configuration, and modules.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_main\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"admin/help\";s:5:\"title\";s:4:\"Help\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Reference for usage, configuration, and modules.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:50:{i:66;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"66\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:16:\"admin/help/block\";s:11:\"router_path\";s:16:\"admin/help/block\";s:10:\"link_title\";s:5:\"block\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:2:\"66\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/help/block\";s:5:\"title\";s:5:\"block\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:67;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"67\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:16:\"admin/help/color\";s:11:\"router_path\";s:16:\"admin/help/color\";s:10:\"link_title\";s:5:\"color\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:2:\"67\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/help/color\";s:5:\"title\";s:5:\"color\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:68;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"68\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:18:\"admin/help/comment\";s:11:\"router_path\";s:18:\"admin/help/comment\";s:10:\"link_title\";s:7:\"comment\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:2:\"68\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:18:\"admin/help/comment\";s:5:\"title\";s:7:\"comment\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:69;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"69\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:21:\"admin/help/contextual\";s:11:\"router_path\";s:21:\"admin/help/contextual\";s:10:\"link_title\";s:10:\"contextual\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:2:\"69\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/help/contextual\";s:5:\"title\";s:10:\"contextual\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:70;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"70\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:20:\"admin/help/dashboard\";s:11:\"router_path\";s:20:\"admin/help/dashboard\";s:10:\"link_title\";s:9:\"dashboard\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:2:\"70\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/help/dashboard\";s:5:\"title\";s:9:\"dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:71;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"71\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:16:\"admin/help/dblog\";s:11:\"router_path\";s:16:\"admin/help/dblog\";s:10:\"link_title\";s:5:\"dblog\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:2:\"71\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/help/dblog\";s:5:\"title\";s:5:\"dblog\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:72;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"72\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:16:\"admin/help/field\";s:11:\"router_path\";s:16:\"admin/help/field\";s:10:\"link_title\";s:5:\"field\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:2:\"72\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/help/field\";s:5:\"title\";s:5:\"field\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:73;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"73\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:28:\"admin/help/field_sql_storage\";s:11:\"router_path\";s:28:\"admin/help/field_sql_storage\";s:10:\"link_title\";s:17:\"field_sql_storage\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:2:\"73\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:28:\"admin/help/field_sql_storage\";s:5:\"title\";s:17:\"field_sql_storage\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:74;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"74\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:19:\"admin/help/field_ui\";s:11:\"router_path\";s:19:\"admin/help/field_ui\";s:10:\"link_title\";s:8:\"field_ui\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:2:\"74\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/help/field_ui\";s:5:\"title\";s:8:\"field_ui\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:75;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"75\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:15:\"admin/help/file\";s:11:\"router_path\";s:15:\"admin/help/file\";s:10:\"link_title\";s:4:\"file\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:2:\"75\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/help/file\";s:5:\"title\";s:4:\"file\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:76;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"76\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:17:\"admin/help/filter\";s:11:\"router_path\";s:17:\"admin/help/filter\";s:10:\"link_title\";s:6:\"filter\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:2:\"76\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:17:\"admin/help/filter\";s:5:\"title\";s:6:\"filter\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:77;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"77\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:15:\"admin/help/help\";s:11:\"router_path\";s:15:\"admin/help/help\";s:10:\"link_title\";s:4:\"help\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:2:\"77\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/help/help\";s:5:\"title\";s:4:\"help\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:78;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"78\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:16:\"admin/help/image\";s:11:\"router_path\";s:16:\"admin/help/image\";s:10:\"link_title\";s:5:\"image\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:2:\"78\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/help/image\";s:5:\"title\";s:5:\"image\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:79;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"79\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:15:\"admin/help/list\";s:11:\"router_path\";s:15:\"admin/help/list\";s:10:\"link_title\";s:4:\"list\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:2:\"79\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/help/list\";s:5:\"title\";s:4:\"list\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:80;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"80\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:15:\"admin/help/menu\";s:11:\"router_path\";s:15:\"admin/help/menu\";s:10:\"link_title\";s:4:\"menu\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:2:\"80\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/help/menu\";s:5:\"title\";s:4:\"menu\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:81;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"81\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:15:\"admin/help/node\";s:11:\"router_path\";s:15:\"admin/help/node\";s:10:\"link_title\";s:4:\"node\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:2:\"81\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/help/node\";s:5:\"title\";s:4:\"node\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:82;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"82\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:18:\"admin/help/options\";s:11:\"router_path\";s:18:\"admin/help/options\";s:10:\"link_title\";s:7:\"options\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:2:\"82\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:18:\"admin/help/options\";s:5:\"title\";s:7:\"options\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:83;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"83\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:17:\"admin/help/system\";s:11:\"router_path\";s:17:\"admin/help/system\";s:10:\"link_title\";s:6:\"system\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:2:\"83\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:17:\"admin/help/system\";s:5:\"title\";s:6:\"system\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:84;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"84\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:19:\"admin/help/taxonomy\";s:11:\"router_path\";s:19:\"admin/help/taxonomy\";s:10:\"link_title\";s:8:\"taxonomy\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:2:\"84\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/help/taxonomy\";s:5:\"title\";s:8:\"taxonomy\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:85;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"85\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:15:\"admin/help/text\";s:11:\"router_path\";s:15:\"admin/help/text\";s:10:\"link_title\";s:4:\"text\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:2:\"85\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/help/text\";s:5:\"title\";s:4:\"text\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:86;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"86\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:15:\"admin/help/user\";s:11:\"router_path\";s:15:\"admin/help/user\";s:10:\"link_title\";s:4:\"user\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:2:\"86\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/help/user\";s:5:\"title\";s:4:\"user\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:194;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"194\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:17:\"admin/help/number\";s:11:\"router_path\";s:17:\"admin/help/number\";s:10:\"link_title\";s:6:\"number\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"194\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:17:\"admin/help/number\";s:5:\"title\";s:6:\"number\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:195;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"195\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:18:\"admin/help/overlay\";s:11:\"router_path\";s:18:\"admin/help/overlay\";s:10:\"link_title\";s:7:\"overlay\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"195\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:18:\"admin/help/overlay\";s:5:\"title\";s:7:\"overlay\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:196;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"196\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:15:\"admin/help/path\";s:11:\"router_path\";s:15:\"admin/help/path\";s:10:\"link_title\";s:4:\"path\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"196\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/help/path\";s:5:\"title\";s:4:\"path\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:197;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"197\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:14:\"admin/help/rdf\";s:11:\"router_path\";s:14:\"admin/help/rdf\";s:10:\"link_title\";s:3:\"rdf\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"197\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:14:\"admin/help/rdf\";s:5:\"title\";s:3:\"rdf\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:199;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"199\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:19:\"admin/help/shortcut\";s:11:\"router_path\";s:19:\"admin/help/shortcut\";s:10:\"link_title\";s:8:\"shortcut\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"199\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/help/shortcut\";s:5:\"title\";s:8:\"shortcut\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:221;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"221\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:18:\"admin/help/toolbar\";s:11:\"router_path\";s:18:\"admin/help/toolbar\";s:10:\"link_title\";s:7:\"toolbar\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"221\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:18:\"admin/help/toolbar\";s:5:\"title\";s:7:\"toolbar\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:265;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"265\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:17:\"admin/help/update\";s:11:\"router_path\";s:17:\"admin/help/update\";s:10:\"link_title\";s:6:\"update\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"265\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:17:\"admin/help/update\";s:5:\"title\";s:6:\"update\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:309;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"309\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:17:\"admin/help/locale\";s:11:\"router_path\";s:17:\"admin/help/locale\";s:10:\"link_title\";s:6:\"locale\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"309\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:17:\"admin/help/locale\";s:5:\"title\";s:6:\"locale\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:310;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"310\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:22:\"admin/help/translation\";s:11:\"router_path\";s:22:\"admin/help/translation\";s:10:\"link_title\";s:11:\"translation\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"310\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:22:\"admin/help/translation\";s:5:\"title\";s:11:\"translation\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:360;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"360\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:22:\"admin/help/l10n_update\";s:11:\"router_path\";s:22:\"admin/help/l10n_update\";s:10:\"link_title\";s:11:\"l10n_update\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"360\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:22:\"admin/help/l10n_update\";s:5:\"title\";s:11:\"l10n_update\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:363;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"363\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:15:\"admin/help/i18n\";s:11:\"router_path\";s:15:\"admin/help/i18n\";s:10:\"link_title\";s:4:\"i18n\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"363\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/help/i18n\";s:5:\"title\";s:4:\"i18n\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:364;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"364\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:21:\"admin/help/i18n_block\";s:11:\"router_path\";s:21:\"admin/help/i18n_block\";s:10:\"link_title\";s:10:\"i18n_block\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"364\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/help/i18n_block\";s:5:\"title\";s:10:\"i18n_block\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:365;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"365\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:20:\"admin/help/i18n_menu\";s:11:\"router_path\";s:20:\"admin/help/i18n_menu\";s:10:\"link_title\";s:9:\"i18n_menu\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"365\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/help/i18n_menu\";s:5:\"title\";s:9:\"i18n_menu\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:366;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"366\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:20:\"admin/help/i18n_node\";s:11:\"router_path\";s:20:\"admin/help/i18n_node\";s:10:\"link_title\";s:9:\"i18n_node\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"366\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/help/i18n_node\";s:5:\"title\";s:9:\"i18n_node\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:367;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"367\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:22:\"admin/help/i18n_string\";s:11:\"router_path\";s:22:\"admin/help/i18n_string\";s:10:\"link_title\";s:11:\"i18n_string\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"367\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:22:\"admin/help/i18n_string\";s:5:\"title\";s:11:\"i18n_string\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:443;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"443\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:19:\"admin/help/location\";s:11:\"router_path\";s:19:\"admin/help/location\";s:10:\"link_title\";s:8:\"location\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"443\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/help/location\";s:5:\"title\";s:8:\"location\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:485;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"485\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:19:\"admin/help/features\";s:11:\"router_path\";s:19:\"admin/help/features\";s:10:\"link_title\";s:8:\"features\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"485\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/help/features\";s:5:\"title\";s:8:\"features\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:533;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"533\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:14:\"admin/help/php\";s:11:\"router_path\";s:14:\"admin/help/php\";s:10:\"link_title\";s:3:\"php\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"533\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:14:\"admin/help/php\";s:5:\"title\";s:3:\"php\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:621;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"621\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:18:\"admin/help/contact\";s:11:\"router_path\";s:18:\"admin/help/contact\";s:10:\"link_title\";s:7:\"contact\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"621\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:18:\"admin/help/contact\";s:5:\"title\";s:7:\"contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:622;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"622\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:16:\"admin/help/forum\";s:11:\"router_path\";s:16:\"admin/help/forum\";s:10:\"link_title\";s:5:\"forum\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"622\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/help/forum\";s:5:\"title\";s:5:\"forum\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:623;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"623\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:21:\"admin/help/i18n_forum\";s:11:\"router_path\";s:21:\"admin/help/i18n_forum\";s:10:\"link_title\";s:10:\"i18n_forum\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"623\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/help/i18n_forum\";s:5:\"title\";s:10:\"i18n_forum\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:624;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"624\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:24:\"admin/help/i18n_taxonomy\";s:11:\"router_path\";s:24:\"admin/help/i18n_taxonomy\";s:10:\"link_title\";s:13:\"i18n_taxonomy\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"624\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:24:\"admin/help/i18n_taxonomy\";s:5:\"title\";s:13:\"i18n_taxonomy\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:650;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"650\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:24:\"admin/help/i18n_redirect\";s:11:\"router_path\";s:24:\"admin/help/i18n_redirect\";s:10:\"link_title\";s:13:\"i18n_redirect\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"650\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:24:\"admin/help/i18n_redirect\";s:5:\"title\";s:13:\"i18n_redirect\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:651;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"651\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:20:\"admin/help/i18n_sync\";s:11:\"router_path\";s:20:\"admin/help/i18n_sync\";s:10:\"link_title\";s:9:\"i18n_sync\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"651\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/help/i18n_sync\";s:5:\"title\";s:9:\"i18n_sync\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:652;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"652\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:24:\"admin/help/languageicons\";s:11:\"router_path\";s:24:\"admin/help/languageicons\";s:10:\"link_title\";s:13:\"languageicons\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"652\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:24:\"admin/help/languageicons\";s:5:\"title\";s:13:\"languageicons\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:653;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"653\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:16:\"admin/help/title\";s:11:\"router_path\";s:16:\"admin/help/title\";s:10:\"link_title\";s:5:\"title\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"653\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/help/title\";s:5:\"title\";s:5:\"title\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:872;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"872\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:16:\"admin/help/views\";s:11:\"router_path\";s:16:\"admin/help/views\";s:10:\"link_title\";s:5:\"views\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"872\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/help/views\";s:5:\"title\";s:5:\"views\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:873;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"873\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:19:\"admin/help/views_ui\";s:11:\"router_path\";s:19:\"admin/help/views_ui\";s:10:\"link_title\";s:8:\"views_ui\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"873\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/help/views_ui\";s:5:\"title\";s:8:\"views_ui\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:955;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"955\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:20:\"admin/help/libraries\";s:11:\"router_path\";s:20:\"admin/help/libraries\";s:10:\"link_title\";s:9:\"libraries\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"955\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/help/libraries\";s:5:\"title\";s:9:\"libraries\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:13;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"13\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/index\";s:11:\"router_path\";s:11:\"admin/index\";s:10:\"link_title\";s:5:\"Index\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-18\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"13\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:18:\"system_admin_index\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Index\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:16;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"16\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/modules\";s:11:\"router_path\";s:13:\"admin/modules\";s:10:\"link_title\";s:7:\"Modules\";s:7:\"options\";s:76:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Extend site functionality.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:7:\"Modules\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:26:\"Extend site functionality.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:18;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"18\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/people\";s:11:\"router_path\";s:12:\"admin/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Manage user accounts, roles, and permissions.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-4\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Manage user accounts, roles, and permissions.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:19;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"19\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/reports\";s:11:\"router_path\";s:13:\"admin/reports\";s:10:\"link_title\";s:7:\"Reports\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View reports, updates, and errors.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/reports\";s:5:\"title\";s:7:\"Reports\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View reports, updates, and errors.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:21;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"21\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/structure\";s:11:\"router_path\";s:15:\"admin/structure\";s:10:\"link_title\";s:9:\"Structure\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Administer blocks, content types, menus, etc.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-8\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/structure\";s:5:\"title\";s:9:\"Structure\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Administer blocks, content types, menus, etc.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:22;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"22\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/tasks\";s:11:\"router_path\";s:11:\"admin/tasks\";s:10:\"link_title\";s:5:\"Tasks\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"22\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Tasks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}}s:10:\"node_links\";a:0:{}}',0,1652162454,1),('links:management:tree-data:en:4490f7db324c2eccb23dc5aef88739c8a281e26afc516ac3daba41c0c38e047b','a:2:{s:4:\"tree\";a:1:{i:1;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"1\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"admin\";s:11:\"router_path\";s:5:\"admin\";s:10:\"link_title\";s:14:\"Administration\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:14:\"Administration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:11:{i:7;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"7\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:16:\"admin/appearance\";s:11:\"router_path\";s:16:\"admin/appearance\";s:10:\"link_title\";s:10:\"Appearance\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Select and configure your themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-6\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"7\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer themes\";}\";s:13:\"page_callback\";s:18:\"system_themes_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/appearance\";s:5:\"title\";s:10:\"Appearance\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"Select and configure your themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:8;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"8\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/config\";s:11:\"router_path\";s:12:\"admin/config\";s:10:\"link_title\";s:13:\"Configuration\";s:7:\"options\";s:70:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:20:\"Administer settings.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:24:\"system_admin_config_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/config\";s:5:\"title\";s:13:\"Configuration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:20:\"Administer settings.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:9;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"9\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/content\";s:11:\"router_path\";s:13:\"admin/content\";s:10:\"link_title\";s:7:\"Content\";s:7:\"options\";s:82:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Administer content and comments.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"9\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:32:\"Administer content and comments.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:11;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"11\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/dashboard\";s:11:\"router_path\";s:15:\"admin/dashboard\";s:10:\"link_title\";s:9:\"Dashboard\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View and customize your dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/dashboard\";s:5:\"title\";s:9:\"Dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View and customize your dashboard.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:12;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"12\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:10:\"admin/help\";s:11:\"router_path\";s:10:\"admin/help\";s:10:\"link_title\";s:4:\"Help\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Reference for usage, configuration, and modules.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_main\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"admin/help\";s:5:\"title\";s:4:\"Help\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Reference for usage, configuration, and modules.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:13;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"13\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/index\";s:11:\"router_path\";s:11:\"admin/index\";s:10:\"link_title\";s:5:\"Index\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-18\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"13\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:18:\"system_admin_index\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Index\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:16;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"16\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/modules\";s:11:\"router_path\";s:13:\"admin/modules\";s:10:\"link_title\";s:7:\"Modules\";s:7:\"options\";s:76:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Extend site functionality.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:7:\"Modules\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:26:\"Extend site functionality.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:18;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"18\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/people\";s:11:\"router_path\";s:12:\"admin/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Manage user accounts, roles, and permissions.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-4\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Manage user accounts, roles, and permissions.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:19;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"19\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/reports\";s:11:\"router_path\";s:13:\"admin/reports\";s:10:\"link_title\";s:7:\"Reports\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View reports, updates, and errors.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/reports\";s:5:\"title\";s:7:\"Reports\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View reports, updates, and errors.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:9:{i:42;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"42\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:20:\"admin/reports/fields\";s:11:\"router_path\";s:20:\"admin/reports/fields\";s:10:\"link_title\";s:10:\"Field list\";s:7:\"options\";s:89:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:39:\"Overview of fields on all entity types.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"42\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:42:\"a:1:{i:0;s:24:\"administer content types\";}\";s:13:\"page_callback\";s:20:\"field_ui_fields_list\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/reports/fields\";s:5:\"title\";s:10:\"Field list\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:39:\"Overview of fields on all entity types.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:50;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"50\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:19:\"admin/reports/dblog\";s:11:\"router_path\";s:19:\"admin/reports/dblog\";s:10:\"link_title\";s:19:\"Recent log messages\";s:7:\"options\";s:93:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"View events that have recently been logged.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-1\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"50\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:14:\"dblog_overview\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/reports/dblog\";s:5:\"title\";s:19:\"Recent log messages\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:43:\"View events that have recently been logged.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:55;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"55\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:20:\"admin/reports/status\";s:11:\"router_path\";s:20:\"admin/reports/status\";s:10:\"link_title\";s:13:\"Status report\";s:7:\"options\";s:124:\"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.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-60\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"55\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"administer site configuration\";}\";s:13:\"page_callback\";s:13:\"system_status\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/reports/status\";s:5:\"title\";s:13:\"Status report\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:74:\"Get a status report about your site\'s operation and any detected problems.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:58;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"58\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:27:\"admin/reports/access-denied\";s:11:\"router_path\";s:27:\"admin/reports/access-denied\";s:10:\"link_title\";s:26:\"Top \'access denied\' errors\";s:7:\"options\";s:85:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:35:\"View \'access denied\' errors (403s).\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"58\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:9:\"dblog_top\";s:14:\"page_arguments\";s:31:\"a:1:{i:0;s:13:\"access denied\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:27:\"admin/reports/access-denied\";s:5:\"title\";s:26:\"Top \'access denied\' errors\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:35:\"View \'access denied\' errors (403s).\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:59;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"59\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:28:\"admin/reports/page-not-found\";s:11:\"router_path\";s:28:\"admin/reports/page-not-found\";s:10:\"link_title\";s:27:\"Top \'page not found\' errors\";s:7:\"options\";s:86:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:36:\"View \'page not found\' errors (404s).\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:2:\"59\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:9:\"dblog_top\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"page not found\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:28:\"admin/reports/page-not-found\";s:5:\"title\";s:27:\"Top \'page not found\' errors\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:36:\"View \'page not found\' errors (404s).\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:100;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"100\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:21:\"admin/reports/event/%\";s:11:\"router_path\";s:21:\"admin/reports/event/%\";s:10:\"link_title\";s:7:\"Details\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"100\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:3;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:11:\"dblog_event\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:3;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/reports/event/%\";s:5:\"title\";s:7:\"Details\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:260;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"260\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:21:\"admin/reports/updates\";s:11:\"router_path\";s:21:\"admin/reports/updates\";s:10:\"link_title\";s:17:\"Available updates\";s:7:\"options\";s:132:\"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.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"260\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"administer site configuration\";}\";s:13:\"page_callback\";s:13:\"update_status\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/reports/updates\";s:5:\"title\";s:17:\"Available updates\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:82:\"Get a status report about available updates for your installed modules and themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:332;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"332\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:27:\"admin/reports/views-plugins\";s:11:\"router_path\";s:27:\"admin/reports/views-plugins\";s:10:\"link_title\";s:13:\"Views plugins\";s:7:\"options\";s:88:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:38:\"Overview of plugins used in all views.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"332\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer views\";}\";s:13:\"page_callback\";s:20:\"views_ui_plugin_list\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:27:\"admin/reports/views-plugins\";s:5:\"title\";s:13:\"Views plugins\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:38:\"Overview of plugins used in all views.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:954;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"954\";s:4:\"plid\";s:2:\"19\";s:9:\"link_path\";s:23:\"admin/reports/libraries\";s:11:\"router_path\";s:23:\"admin/reports/libraries\";s:10:\"link_title\";s:9:\"Libraries\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"An overview of libraries installed on this site.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:3:\"954\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:40:\"a:1:{i:0;s:22:\"access library reports\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:42:\"a:1:{i:0;s:24:\"libraries_admin_overview\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:23:\"admin/reports/libraries\";s:5:\"title\";s:9:\"Libraries\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"An overview of libraries installed on this site.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:21;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"21\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/structure\";s:11:\"router_path\";s:15:\"admin/structure\";s:10:\"link_title\";s:9:\"Structure\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Administer blocks, content types, menus, etc.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-8\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/structure\";s:5:\"title\";s:9:\"Structure\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Administer blocks, content types, menus, etc.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:22;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"22\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/tasks\";s:11:\"router_path\";s:11:\"admin/tasks\";s:10:\"link_title\";s:5:\"Tasks\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"22\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Tasks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}}s:10:\"node_links\";a:0:{}}',0,1652162467,1),('links:management:tree-data:en:4cc3398422d20df3c6b4d912febf2bad7c81fb18649882abc3f7245b6c21dc06','a:2:{s:4:\"tree\";a:1:{i:1;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"1\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"admin\";s:11:\"router_path\";s:5:\"admin\";s:10:\"link_title\";s:14:\"Administration\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:14:\"Administration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:11:{i:7;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"7\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:16:\"admin/appearance\";s:11:\"router_path\";s:16:\"admin/appearance\";s:10:\"link_title\";s:10:\"Appearance\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Select and configure your themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-6\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"7\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer themes\";}\";s:13:\"page_callback\";s:18:\"system_themes_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/appearance\";s:5:\"title\";s:10:\"Appearance\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"Select and configure your themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:8;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"8\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/config\";s:11:\"router_path\";s:12:\"admin/config\";s:10:\"link_title\";s:13:\"Configuration\";s:7:\"options\";s:70:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:20:\"Administer settings.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:24:\"system_admin_config_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/config\";s:5:\"title\";s:13:\"Configuration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:20:\"Administer settings.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:9;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"9\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/content\";s:11:\"router_path\";s:13:\"admin/content\";s:10:\"link_title\";s:7:\"Content\";s:7:\"options\";s:82:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Administer content and comments.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"9\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:32:\"Administer content and comments.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:11;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"11\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/dashboard\";s:11:\"router_path\";s:15:\"admin/dashboard\";s:10:\"link_title\";s:9:\"Dashboard\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View and customize your dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/dashboard\";s:5:\"title\";s:9:\"Dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View and customize your dashboard.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:2:{i:33;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"33\";s:4:\"plid\";s:2:\"11\";s:9:\"link_path\";s:25:\"admin/dashboard/configure\";s:11:\"router_path\";s:25:\"admin/dashboard/configure\";s:10:\"link_title\";s:36:\"Configure available dashboard blocks\";s:7:\"options\";s:103:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:53:\"Configure which blocks can be shown on the dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:2:\"33\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer blocks\";}\";s:13:\"page_callback\";s:22:\"dashboard_admin_blocks\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:25:\"admin/dashboard/configure\";s:5:\"title\";s:36:\"Configure available dashboard blocks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:53:\"Configure which blocks can be shown on the dashboard.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:37;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"37\";s:4:\"plid\";s:2:\"11\";s:9:\"link_path\";s:25:\"admin/dashboard/customize\";s:11:\"router_path\";s:25:\"admin/dashboard/customize\";s:10:\"link_title\";s:19:\"Customize dashboard\";s:7:\"options\";s:75:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:25:\"Customize your dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:2:\"37\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;b:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:25:\"admin/dashboard/customize\";s:5:\"title\";s:19:\"Customize dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:25:\"Customize your dashboard.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:12;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"12\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:10:\"admin/help\";s:11:\"router_path\";s:10:\"admin/help\";s:10:\"link_title\";s:4:\"Help\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Reference for usage, configuration, and modules.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_main\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"admin/help\";s:5:\"title\";s:4:\"Help\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Reference for usage, configuration, and modules.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:13;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"13\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/index\";s:11:\"router_path\";s:11:\"admin/index\";s:10:\"link_title\";s:5:\"Index\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-18\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"13\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:18:\"system_admin_index\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Index\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:16;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"16\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/modules\";s:11:\"router_path\";s:13:\"admin/modules\";s:10:\"link_title\";s:7:\"Modules\";s:7:\"options\";s:76:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Extend site functionality.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:7:\"Modules\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:26:\"Extend site functionality.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:18;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"18\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/people\";s:11:\"router_path\";s:12:\"admin/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Manage user accounts, roles, and permissions.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-4\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Manage user accounts, roles, and permissions.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:19;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"19\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/reports\";s:11:\"router_path\";s:13:\"admin/reports\";s:10:\"link_title\";s:7:\"Reports\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View reports, updates, and errors.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/reports\";s:5:\"title\";s:7:\"Reports\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View reports, updates, and errors.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:21;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"21\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/structure\";s:11:\"router_path\";s:15:\"admin/structure\";s:10:\"link_title\";s:9:\"Structure\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Administer blocks, content types, menus, etc.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-8\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/structure\";s:5:\"title\";s:9:\"Structure\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Administer blocks, content types, menus, etc.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:22;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"22\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/tasks\";s:11:\"router_path\";s:11:\"admin/tasks\";s:10:\"link_title\";s:5:\"Tasks\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"22\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Tasks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}}s:10:\"node_links\";a:0:{}}',0,1652162507,1),('links:management:tree-data:en:91b77ffcd906388455005818ae5d1f5942cd3182ebca1663104f27b019389442','a:2:{s:4:\"tree\";a:1:{i:1;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"1\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"admin\";s:11:\"router_path\";s:5:\"admin\";s:10:\"link_title\";s:14:\"Administration\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:14:\"Administration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:11:{i:7;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"7\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:16:\"admin/appearance\";s:11:\"router_path\";s:16:\"admin/appearance\";s:10:\"link_title\";s:10:\"Appearance\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Select and configure your themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-6\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"7\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer themes\";}\";s:13:\"page_callback\";s:18:\"system_themes_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/appearance\";s:5:\"title\";s:10:\"Appearance\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"Select and configure your themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:8;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"8\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/config\";s:11:\"router_path\";s:12:\"admin/config\";s:10:\"link_title\";s:13:\"Configuration\";s:7:\"options\";s:70:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:20:\"Administer settings.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:24:\"system_admin_config_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/config\";s:5:\"title\";s:13:\"Configuration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:20:\"Administer settings.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:10:{i:35;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"35\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:20:\"admin/config/content\";s:11:\"router_path\";s:20:\"admin/config/content\";s:10:\"link_title\";s:17:\"Content authoring\";s:7:\"options\";s:103:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:53:\"Settings related to formatting and authoring content.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"35\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/config/content\";s:5:\"title\";s:17:\"Content authoring\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:53:\"Settings related to formatting and authoring content.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:39;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"39\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:24:\"admin/config/development\";s:11:\"router_path\";s:24:\"admin/config/development\";s:10:\"link_title\";s:11:\"Development\";s:7:\"options\";s:68:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:18:\"Development tools.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"39\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:24:\"admin/config/development\";s:5:\"title\";s:11:\"Development\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:18:\"Development tools.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:46;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"46\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:18:\"admin/config/media\";s:11:\"router_path\";s:18:\"admin/config/media\";s:10:\"link_title\";s:5:\"Media\";s:7:\"options\";s:62:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:12:\"Media tools.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"46\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:18:\"admin/config/media\";s:5:\"title\";s:5:\"Media\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:12:\"Media tools.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:48;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"48\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:19:\"admin/config/people\";s:11:\"router_path\";s:19:\"admin/config/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:74:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:24:\"Configure user accounts.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"48\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/config/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:24:\"Configure user accounts.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:51;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"51\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:21:\"admin/config/regional\";s:11:\"router_path\";s:21:\"admin/config/regional\";s:10:\"link_title\";s:21:\"Regional and language\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Regional settings, localization and translation.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-5\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"51\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/config/regional\";s:5:\"title\";s:21:\"Regional and language\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Regional settings, localization and translation.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:53;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"53\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:19:\"admin/config/search\";s:11:\"router_path\";s:19:\"admin/config/search\";s:10:\"link_title\";s:19:\"Search and metadata\";s:7:\"options\";s:86:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:36:\"Local site search, metadata and SEO.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"53\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/config/search\";s:5:\"title\";s:19:\"Search and metadata\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:36:\"Local site search, metadata and SEO.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:56;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"56\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:19:\"admin/config/system\";s:11:\"router_path\";s:19:\"admin/config/system\";s:10:\"link_title\";s:6:\"System\";s:7:\"options\";s:87:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:37:\"General system related configuration.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"56\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/config/system\";s:5:\"title\";s:6:\"System\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:37:\"General system related configuration.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:61;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"61\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:27:\"admin/config/user-interface\";s:11:\"router_path\";s:27:\"admin/config/user-interface\";s:10:\"link_title\";s:14:\"User interface\";s:7:\"options\";s:88:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:38:\"Tools that enhance the user interface.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"61\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:27:\"admin/config/user-interface\";s:5:\"title\";s:14:\"User interface\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:38:\"Tools that enhance the user interface.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:64;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"64\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:21:\"admin/config/services\";s:11:\"router_path\";s:21:\"admin/config/services\";s:10:\"link_title\";s:12:\"Web services\";s:7:\"options\";s:80:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:30:\"Tools related to web services.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"64\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/config/services\";s:5:\"title\";s:12:\"Web services\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:30:\"Tools related to web services.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:65;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"65\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:21:\"admin/config/workflow\";s:11:\"router_path\";s:21:\"admin/config/workflow\";s:10:\"link_title\";s:8:\"Workflow\";s:7:\"options\";s:93:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"Content workflow, editorial workflow tools.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"65\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/config/workflow\";s:5:\"title\";s:8:\"Workflow\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:43:\"Content workflow, editorial workflow tools.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:9;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"9\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/content\";s:11:\"router_path\";s:13:\"admin/content\";s:10:\"link_title\";s:7:\"Content\";s:7:\"options\";s:82:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Administer content and comments.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"9\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:32:\"Administer content and comments.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:11;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"11\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/dashboard\";s:11:\"router_path\";s:15:\"admin/dashboard\";s:10:\"link_title\";s:9:\"Dashboard\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View and customize your dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/dashboard\";s:5:\"title\";s:9:\"Dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View and customize your dashboard.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:12;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"12\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:10:\"admin/help\";s:11:\"router_path\";s:10:\"admin/help\";s:10:\"link_title\";s:4:\"Help\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Reference for usage, configuration, and modules.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_main\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"admin/help\";s:5:\"title\";s:4:\"Help\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Reference for usage, configuration, and modules.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:13;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"13\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/index\";s:11:\"router_path\";s:11:\"admin/index\";s:10:\"link_title\";s:5:\"Index\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-18\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"13\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:18:\"system_admin_index\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Index\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:16;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"16\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/modules\";s:11:\"router_path\";s:13:\"admin/modules\";s:10:\"link_title\";s:7:\"Modules\";s:7:\"options\";s:76:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Extend site functionality.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:7:\"Modules\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:26:\"Extend site functionality.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:18;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"18\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/people\";s:11:\"router_path\";s:12:\"admin/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Manage user accounts, roles, and permissions.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-4\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Manage user accounts, roles, and permissions.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:19;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"19\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/reports\";s:11:\"router_path\";s:13:\"admin/reports\";s:10:\"link_title\";s:7:\"Reports\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View reports, updates, and errors.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/reports\";s:5:\"title\";s:7:\"Reports\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View reports, updates, and errors.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:21;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"21\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/structure\";s:11:\"router_path\";s:15:\"admin/structure\";s:10:\"link_title\";s:9:\"Structure\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Administer blocks, content types, menus, etc.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-8\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/structure\";s:5:\"title\";s:9:\"Structure\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Administer blocks, content types, menus, etc.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:22;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"22\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/tasks\";s:11:\"router_path\";s:11:\"admin/tasks\";s:10:\"link_title\";s:5:\"Tasks\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"22\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Tasks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}}s:10:\"node_links\";a:0:{}}',0,1538750697,1),('links:management:tree-data:en:a7ca3b9e4cccd8ff3d9258d8a72752fd45b803db447ed65be535bd5ba82257a4','a:2:{s:4:\"tree\";a:1:{i:1;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"1\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"admin\";s:11:\"router_path\";s:5:\"admin\";s:10:\"link_title\";s:14:\"Administration\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:14:\"Administration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:11:{i:7;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"7\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:16:\"admin/appearance\";s:11:\"router_path\";s:16:\"admin/appearance\";s:10:\"link_title\";s:10:\"Appearance\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Select and configure your themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-6\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"7\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer themes\";}\";s:13:\"page_callback\";s:18:\"system_themes_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/appearance\";s:5:\"title\";s:10:\"Appearance\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"Select and configure your themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:8;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"8\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/config\";s:11:\"router_path\";s:12:\"admin/config\";s:10:\"link_title\";s:13:\"Configuration\";s:7:\"options\";s:70:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:20:\"Administer settings.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:24:\"system_admin_config_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/config\";s:5:\"title\";s:13:\"Configuration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:20:\"Administer settings.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:10:{i:35;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"35\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:20:\"admin/config/content\";s:11:\"router_path\";s:20:\"admin/config/content\";s:10:\"link_title\";s:17:\"Content authoring\";s:7:\"options\";s:103:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:53:\"Settings related to formatting and authoring content.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"35\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/config/content\";s:5:\"title\";s:17:\"Content authoring\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:53:\"Settings related to formatting and authoring content.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:39;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"39\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:24:\"admin/config/development\";s:11:\"router_path\";s:24:\"admin/config/development\";s:10:\"link_title\";s:11:\"Development\";s:7:\"options\";s:68:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:18:\"Development tools.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"39\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:24:\"admin/config/development\";s:5:\"title\";s:11:\"Development\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:18:\"Development tools.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:46;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"46\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:18:\"admin/config/media\";s:11:\"router_path\";s:18:\"admin/config/media\";s:10:\"link_title\";s:5:\"Media\";s:7:\"options\";s:62:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:12:\"Media tools.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"46\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:18:\"admin/config/media\";s:5:\"title\";s:5:\"Media\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:12:\"Media tools.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:48;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"48\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:19:\"admin/config/people\";s:11:\"router_path\";s:19:\"admin/config/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:74:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:24:\"Configure user accounts.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"48\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/config/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:24:\"Configure user accounts.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:2:{i:90;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"90\";s:4:\"plid\";s:2:\"48\";s:9:\"link_path\";s:28:\"admin/config/people/accounts\";s:11:\"router_path\";s:28:\"admin/config/people/accounts\";s:10:\"link_title\";s:16:\"Account settings\";s:7:\"options\";s:160:\"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.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"48\";s:2:\"p4\";s:2:\"90\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:37:\"a:1:{i:0;s:19:\"user_admin_settings\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:28:\"admin/config/people/accounts\";s:5:\"title\";s:16:\"Account settings\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:109:\"Configure default behavior of users, including registration requirements, e-mails, fields, and user pictures.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:3:{i:142;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"142\";s:4:\"plid\";s:2:\"90\";s:9:\"link_path\";s:37:\"admin/config/people/accounts/settings\";s:11:\"router_path\";s:37:\"admin/config/people/accounts/settings\";s:10:\"link_title\";s:8:\"Settings\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"5\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"48\";s:2:\"p4\";s:2:\"90\";s:2:\"p5\";s:3:\"142\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:37:\"a:1:{i:0;s:19:\"user_admin_settings\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:28:\"admin/config/people/accounts\";s:8:\"tab_root\";s:28:\"admin/config/people/accounts\";s:5:\"title\";s:8:\"Settings\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:1000;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:4:\"1000\";s:4:\"plid\";s:2:\"90\";s:9:\"link_path\";s:36:\"admin/config/people/accounts/display\";s:11:\"router_path\";s:36:\"admin/config/people/accounts/display\";s:10:\"link_title\";s:14:\"Manage display\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"2\";s:5:\"depth\";s:1:\"5\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"48\";s:2:\"p4\";s:2:\"90\";s:2:\"p5\";s:4:\"1000\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:21:\"field_ui_admin_access\";s:16:\"access_arguments\";s:67:\"a:2:{i:0;s:11:\"user_access\";i:1;a:1:{i:0;s:16:\"administer users\";}}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:96:\"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\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:28:\"admin/config/people/accounts\";s:8:\"tab_root\";s:28:\"admin/config/people/accounts\";s:5:\"title\";s:14:\"Manage display\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:2:{i:1004;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:4:\"1004\";s:4:\"plid\";s:4:\"1000\";s:9:\"link_path\";s:44:\"admin/config/people/accounts/display/default\";s:11:\"router_path\";s:44:\"admin/config/people/accounts/display/default\";s:10:\"link_title\";s:7:\"Default\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"6\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"48\";s:2:\"p4\";s:2:\"90\";s:2:\"p5\";s:4:\"1000\";s:2:\"p6\";s:4:\"1004\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:31:\"_field_ui_view_mode_menu_access\";s:16:\"access_arguments\";s:148:\"a:6:{i:0;s:4:\"user\";i:1;s:4:\"user\";i:2;s:7:\"default\";i:3;s:21:\"field_ui_admin_access\";i:4;s:11:\"user_access\";i:5;a:1:{i:0;s:16:\"administer users\";}}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:96:\"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\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:36:\"admin/config/people/accounts/display\";s:8:\"tab_root\";s:28:\"admin/config/people/accounts\";s:5:\"title\";s:7:\"Default\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:1008;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:4:\"1008\";s:4:\"plid\";s:4:\"1000\";s:9:\"link_path\";s:41:\"admin/config/people/accounts/display/full\";s:11:\"router_path\";s:41:\"admin/config/people/accounts/display/full\";s:10:\"link_title\";s:12:\"User account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"6\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"48\";s:2:\"p4\";s:2:\"90\";s:2:\"p5\";s:4:\"1000\";s:2:\"p6\";s:4:\"1008\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:31:\"_field_ui_view_mode_menu_access\";s:16:\"access_arguments\";s:145:\"a:6:{i:0;s:4:\"user\";i:1;s:4:\"user\";i:2;s:4:\"full\";i:3;s:21:\"field_ui_admin_access\";i:4;s:11:\"user_access\";i:5;a:1:{i:0;s:16:\"administer users\";}}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:93:\"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\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:36:\"admin/config/people/accounts/display\";s:8:\"tab_root\";s:28:\"admin/config/people/accounts\";s:5:\"title\";s:12:\"User account\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:1002;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:4:\"1002\";s:4:\"plid\";s:2:\"90\";s:9:\"link_path\";s:35:\"admin/config/people/accounts/fields\";s:11:\"router_path\";s:35:\"admin/config/people/accounts/fields\";s:10:\"link_title\";s:13:\"Manage fields\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"1\";s:5:\"depth\";s:1:\"5\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"48\";s:2:\"p4\";s:2:\"90\";s:2:\"p5\";s:4:\"1002\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:21:\"field_ui_admin_access\";s:16:\"access_arguments\";s:67:\"a:2:{i:0;s:11:\"user_access\";i:1;a:1:{i:0;s:16:\"administer users\";}}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:76:\"a:3:{i:0;s:28:\"field_ui_field_overview_form\";i:1;s:4:\"user\";i:2;s:4:\"user\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:28:\"admin/config/people/accounts\";s:8:\"tab_root\";s:28:\"admin/config/people/accounts\";s:5:\"title\";s:13:\"Manage fields\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:104;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"104\";s:4:\"plid\";s:2:\"48\";s:9:\"link_path\";s:31:\"admin/config/people/ip-blocking\";s:11:\"router_path\";s:31:\"admin/config/people/ip-blocking\";s:10:\"link_title\";s:19:\"IP address blocking\";s:7:\"options\";s:78:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:28:\"Manage blocked IP addresses.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"48\";s:2:\"p4\";s:3:\"104\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"block IP addresses\";}\";s:13:\"page_callback\";s:18:\"system_ip_blocking\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:31:\"admin/config/people/ip-blocking\";s:5:\"title\";s:19:\"IP address blocking\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:28:\"Manage blocked IP addresses.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:51;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"51\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:21:\"admin/config/regional\";s:11:\"router_path\";s:21:\"admin/config/regional\";s:10:\"link_title\";s:21:\"Regional and language\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Regional settings, localization and translation.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-5\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"51\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/config/regional\";s:5:\"title\";s:21:\"Regional and language\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Regional settings, localization and translation.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:53;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"53\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:19:\"admin/config/search\";s:11:\"router_path\";s:19:\"admin/config/search\";s:10:\"link_title\";s:19:\"Search and metadata\";s:7:\"options\";s:86:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:36:\"Local site search, metadata and SEO.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"53\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/config/search\";s:5:\"title\";s:19:\"Search and metadata\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:36:\"Local site search, metadata and SEO.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:56;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"56\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:19:\"admin/config/system\";s:11:\"router_path\";s:19:\"admin/config/system\";s:10:\"link_title\";s:6:\"System\";s:7:\"options\";s:87:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:37:\"General system related configuration.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"56\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/config/system\";s:5:\"title\";s:6:\"System\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:37:\"General system related configuration.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:61;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"61\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:27:\"admin/config/user-interface\";s:11:\"router_path\";s:27:\"admin/config/user-interface\";s:10:\"link_title\";s:14:\"User interface\";s:7:\"options\";s:88:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:38:\"Tools that enhance the user interface.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"61\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:27:\"admin/config/user-interface\";s:5:\"title\";s:14:\"User interface\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:38:\"Tools that enhance the user interface.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:64;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"64\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:21:\"admin/config/services\";s:11:\"router_path\";s:21:\"admin/config/services\";s:10:\"link_title\";s:12:\"Web services\";s:7:\"options\";s:80:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:30:\"Tools related to web services.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"64\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/config/services\";s:5:\"title\";s:12:\"Web services\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:30:\"Tools related to web services.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:65;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"65\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:21:\"admin/config/workflow\";s:11:\"router_path\";s:21:\"admin/config/workflow\";s:10:\"link_title\";s:8:\"Workflow\";s:7:\"options\";s:93:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"Content workflow, editorial workflow tools.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"65\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/config/workflow\";s:5:\"title\";s:8:\"Workflow\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:43:\"Content workflow, editorial workflow tools.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:9;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"9\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/content\";s:11:\"router_path\";s:13:\"admin/content\";s:10:\"link_title\";s:7:\"Content\";s:7:\"options\";s:82:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Administer content and comments.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"9\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:32:\"Administer content and comments.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:11;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"11\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/dashboard\";s:11:\"router_path\";s:15:\"admin/dashboard\";s:10:\"link_title\";s:9:\"Dashboard\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View and customize your dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/dashboard\";s:5:\"title\";s:9:\"Dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View and customize your dashboard.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:12;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"12\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:10:\"admin/help\";s:11:\"router_path\";s:10:\"admin/help\";s:10:\"link_title\";s:4:\"Help\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Reference for usage, configuration, and modules.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_main\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"admin/help\";s:5:\"title\";s:4:\"Help\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Reference for usage, configuration, and modules.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:13;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"13\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/index\";s:11:\"router_path\";s:11:\"admin/index\";s:10:\"link_title\";s:5:\"Index\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-18\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"13\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:18:\"system_admin_index\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Index\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:16;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"16\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/modules\";s:11:\"router_path\";s:13:\"admin/modules\";s:10:\"link_title\";s:7:\"Modules\";s:7:\"options\";s:76:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Extend site functionality.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:7:\"Modules\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:26:\"Extend site functionality.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:18;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"18\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/people\";s:11:\"router_path\";s:12:\"admin/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Manage user accounts, roles, and permissions.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-4\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Manage user accounts, roles, and permissions.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:19;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"19\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/reports\";s:11:\"router_path\";s:13:\"admin/reports\";s:10:\"link_title\";s:7:\"Reports\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View reports, updates, and errors.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/reports\";s:5:\"title\";s:7:\"Reports\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View reports, updates, and errors.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:21;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"21\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/structure\";s:11:\"router_path\";s:15:\"admin/structure\";s:10:\"link_title\";s:9:\"Structure\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Administer blocks, content types, menus, etc.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-8\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/structure\";s:5:\"title\";s:9:\"Structure\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Administer blocks, content types, menus, etc.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:22;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"22\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/tasks\";s:11:\"router_path\";s:11:\"admin/tasks\";s:10:\"link_title\";s:5:\"Tasks\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"22\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Tasks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}}s:10:\"node_links\";a:0:{}}',0,1652162448,1),('links:management:tree-data:en:a9eea78b0aeaddd605894be48877502635d2ae1b2a8a8d29cc1b7d377b699477','a:2:{s:4:\"tree\";a:11:{i:7;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"7\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:16:\"admin/appearance\";s:11:\"router_path\";s:16:\"admin/appearance\";s:10:\"link_title\";s:10:\"Appearance\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Select and configure your themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-6\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"7\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer themes\";}\";s:13:\"page_callback\";s:18:\"system_themes_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/appearance\";s:5:\"title\";s:10:\"Appearance\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"Select and configure your themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:8;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"8\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/config\";s:11:\"router_path\";s:12:\"admin/config\";s:10:\"link_title\";s:13:\"Configuration\";s:7:\"options\";s:70:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:20:\"Administer settings.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:24:\"system_admin_config_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/config\";s:5:\"title\";s:13:\"Configuration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:20:\"Administer settings.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:9;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"9\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/content\";s:11:\"router_path\";s:13:\"admin/content\";s:10:\"link_title\";s:7:\"Content\";s:7:\"options\";s:82:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Administer content and comments.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"9\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:32:\"Administer content and comments.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:11;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"11\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/dashboard\";s:11:\"router_path\";s:15:\"admin/dashboard\";s:10:\"link_title\";s:9:\"Dashboard\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View and customize your dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/dashboard\";s:5:\"title\";s:9:\"Dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View and customize your dashboard.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:12;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"12\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:10:\"admin/help\";s:11:\"router_path\";s:10:\"admin/help\";s:10:\"link_title\";s:4:\"Help\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Reference for usage, configuration, and modules.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_main\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"admin/help\";s:5:\"title\";s:4:\"Help\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Reference for usage, configuration, and modules.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:13;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"13\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/index\";s:11:\"router_path\";s:11:\"admin/index\";s:10:\"link_title\";s:5:\"Index\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-18\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"13\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:18:\"system_admin_index\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Index\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:16;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"16\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/modules\";s:11:\"router_path\";s:13:\"admin/modules\";s:10:\"link_title\";s:7:\"Modules\";s:7:\"options\";s:76:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Extend site functionality.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:7:\"Modules\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:26:\"Extend site functionality.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:18;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"18\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/people\";s:11:\"router_path\";s:12:\"admin/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Manage user accounts, roles, and permissions.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-4\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Manage user accounts, roles, and permissions.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:19;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"19\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/reports\";s:11:\"router_path\";s:13:\"admin/reports\";s:10:\"link_title\";s:7:\"Reports\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View reports, updates, and errors.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/reports\";s:5:\"title\";s:7:\"Reports\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View reports, updates, and errors.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:21;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"21\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/structure\";s:11:\"router_path\";s:15:\"admin/structure\";s:10:\"link_title\";s:9:\"Structure\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Administer blocks, content types, menus, etc.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-8\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/structure\";s:5:\"title\";s:9:\"Structure\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Administer blocks, content types, menus, etc.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:22;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"22\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/tasks\";s:11:\"router_path\";s:11:\"admin/tasks\";s:10:\"link_title\";s:5:\"Tasks\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"22\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Tasks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1538751263,1),('links:management:tree-data:en:ca929699c0f083f778164616aead759e1e1231a57bc270fc3952f86db5d0b655','a:2:{s:4:\"tree\";a:1:{i:1;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"1\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"admin\";s:11:\"router_path\";s:5:\"admin\";s:10:\"link_title\";s:14:\"Administration\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:14:\"Administration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:11:{i:7;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"7\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:16:\"admin/appearance\";s:11:\"router_path\";s:16:\"admin/appearance\";s:10:\"link_title\";s:10:\"Appearance\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Select and configure your themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-6\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"7\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer themes\";}\";s:13:\"page_callback\";s:18:\"system_themes_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/appearance\";s:5:\"title\";s:10:\"Appearance\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"Select and configure your themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:8;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"8\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/config\";s:11:\"router_path\";s:12:\"admin/config\";s:10:\"link_title\";s:13:\"Configuration\";s:7:\"options\";s:70:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:20:\"Administer settings.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:24:\"system_admin_config_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/config\";s:5:\"title\";s:13:\"Configuration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:20:\"Administer settings.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:9;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"9\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/content\";s:11:\"router_path\";s:13:\"admin/content\";s:10:\"link_title\";s:7:\"Content\";s:7:\"options\";s:82:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Administer content and comments.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"9\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:32:\"Administer content and comments.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:11;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"11\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/dashboard\";s:11:\"router_path\";s:15:\"admin/dashboard\";s:10:\"link_title\";s:9:\"Dashboard\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View and customize your dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/dashboard\";s:5:\"title\";s:9:\"Dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View and customize your dashboard.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:12;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"12\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:10:\"admin/help\";s:11:\"router_path\";s:10:\"admin/help\";s:10:\"link_title\";s:4:\"Help\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Reference for usage, configuration, and modules.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_main\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"admin/help\";s:5:\"title\";s:4:\"Help\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Reference for usage, configuration, and modules.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:50:{i:66;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"66\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:16:\"admin/help/block\";s:11:\"router_path\";s:16:\"admin/help/block\";s:10:\"link_title\";s:5:\"block\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:2:\"66\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/help/block\";s:5:\"title\";s:5:\"block\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:67;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"67\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:16:\"admin/help/color\";s:11:\"router_path\";s:16:\"admin/help/color\";s:10:\"link_title\";s:5:\"color\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:2:\"67\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/help/color\";s:5:\"title\";s:5:\"color\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:68;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"68\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:18:\"admin/help/comment\";s:11:\"router_path\";s:18:\"admin/help/comment\";s:10:\"link_title\";s:7:\"comment\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:2:\"68\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:18:\"admin/help/comment\";s:5:\"title\";s:7:\"comment\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:69;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"69\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:21:\"admin/help/contextual\";s:11:\"router_path\";s:21:\"admin/help/contextual\";s:10:\"link_title\";s:10:\"contextual\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:2:\"69\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/help/contextual\";s:5:\"title\";s:10:\"contextual\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:70;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"70\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:20:\"admin/help/dashboard\";s:11:\"router_path\";s:20:\"admin/help/dashboard\";s:10:\"link_title\";s:9:\"dashboard\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:2:\"70\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/help/dashboard\";s:5:\"title\";s:9:\"dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:71;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"71\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:16:\"admin/help/dblog\";s:11:\"router_path\";s:16:\"admin/help/dblog\";s:10:\"link_title\";s:5:\"dblog\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:2:\"71\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/help/dblog\";s:5:\"title\";s:5:\"dblog\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:72;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"72\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:16:\"admin/help/field\";s:11:\"router_path\";s:16:\"admin/help/field\";s:10:\"link_title\";s:5:\"field\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:2:\"72\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/help/field\";s:5:\"title\";s:5:\"field\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:73;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"73\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:28:\"admin/help/field_sql_storage\";s:11:\"router_path\";s:28:\"admin/help/field_sql_storage\";s:10:\"link_title\";s:17:\"field_sql_storage\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:2:\"73\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:28:\"admin/help/field_sql_storage\";s:5:\"title\";s:17:\"field_sql_storage\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:74;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"74\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:19:\"admin/help/field_ui\";s:11:\"router_path\";s:19:\"admin/help/field_ui\";s:10:\"link_title\";s:8:\"field_ui\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:2:\"74\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/help/field_ui\";s:5:\"title\";s:8:\"field_ui\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:75;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"75\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:15:\"admin/help/file\";s:11:\"router_path\";s:15:\"admin/help/file\";s:10:\"link_title\";s:4:\"file\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:2:\"75\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/help/file\";s:5:\"title\";s:4:\"file\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:76;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"76\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:17:\"admin/help/filter\";s:11:\"router_path\";s:17:\"admin/help/filter\";s:10:\"link_title\";s:6:\"filter\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:2:\"76\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:17:\"admin/help/filter\";s:5:\"title\";s:6:\"filter\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:77;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"77\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:15:\"admin/help/help\";s:11:\"router_path\";s:15:\"admin/help/help\";s:10:\"link_title\";s:4:\"help\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:2:\"77\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/help/help\";s:5:\"title\";s:4:\"help\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:78;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"78\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:16:\"admin/help/image\";s:11:\"router_path\";s:16:\"admin/help/image\";s:10:\"link_title\";s:5:\"image\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:2:\"78\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/help/image\";s:5:\"title\";s:5:\"image\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:79;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"79\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:15:\"admin/help/list\";s:11:\"router_path\";s:15:\"admin/help/list\";s:10:\"link_title\";s:4:\"list\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:2:\"79\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/help/list\";s:5:\"title\";s:4:\"list\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:80;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"80\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:15:\"admin/help/menu\";s:11:\"router_path\";s:15:\"admin/help/menu\";s:10:\"link_title\";s:4:\"menu\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:2:\"80\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/help/menu\";s:5:\"title\";s:4:\"menu\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:81;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"81\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:15:\"admin/help/node\";s:11:\"router_path\";s:15:\"admin/help/node\";s:10:\"link_title\";s:4:\"node\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:2:\"81\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/help/node\";s:5:\"title\";s:4:\"node\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:82;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"82\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:18:\"admin/help/options\";s:11:\"router_path\";s:18:\"admin/help/options\";s:10:\"link_title\";s:7:\"options\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:2:\"82\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:18:\"admin/help/options\";s:5:\"title\";s:7:\"options\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:83;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"83\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:17:\"admin/help/system\";s:11:\"router_path\";s:17:\"admin/help/system\";s:10:\"link_title\";s:6:\"system\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:2:\"83\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:17:\"admin/help/system\";s:5:\"title\";s:6:\"system\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:84;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"84\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:19:\"admin/help/taxonomy\";s:11:\"router_path\";s:19:\"admin/help/taxonomy\";s:10:\"link_title\";s:8:\"taxonomy\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:2:\"84\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/help/taxonomy\";s:5:\"title\";s:8:\"taxonomy\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:85;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"85\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:15:\"admin/help/text\";s:11:\"router_path\";s:15:\"admin/help/text\";s:10:\"link_title\";s:4:\"text\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:2:\"85\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/help/text\";s:5:\"title\";s:4:\"text\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:86;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"86\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:15:\"admin/help/user\";s:11:\"router_path\";s:15:\"admin/help/user\";s:10:\"link_title\";s:4:\"user\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:2:\"86\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/help/user\";s:5:\"title\";s:4:\"user\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:194;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"194\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:17:\"admin/help/number\";s:11:\"router_path\";s:17:\"admin/help/number\";s:10:\"link_title\";s:6:\"number\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"194\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:17:\"admin/help/number\";s:5:\"title\";s:6:\"number\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:195;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"195\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:18:\"admin/help/overlay\";s:11:\"router_path\";s:18:\"admin/help/overlay\";s:10:\"link_title\";s:7:\"overlay\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"195\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:18:\"admin/help/overlay\";s:5:\"title\";s:7:\"overlay\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:196;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"196\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:15:\"admin/help/path\";s:11:\"router_path\";s:15:\"admin/help/path\";s:10:\"link_title\";s:4:\"path\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"196\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/help/path\";s:5:\"title\";s:4:\"path\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:197;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"197\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:14:\"admin/help/rdf\";s:11:\"router_path\";s:14:\"admin/help/rdf\";s:10:\"link_title\";s:3:\"rdf\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"197\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:14:\"admin/help/rdf\";s:5:\"title\";s:3:\"rdf\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:199;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"199\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:19:\"admin/help/shortcut\";s:11:\"router_path\";s:19:\"admin/help/shortcut\";s:10:\"link_title\";s:8:\"shortcut\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"199\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/help/shortcut\";s:5:\"title\";s:8:\"shortcut\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:221;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"221\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:18:\"admin/help/toolbar\";s:11:\"router_path\";s:18:\"admin/help/toolbar\";s:10:\"link_title\";s:7:\"toolbar\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"221\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:18:\"admin/help/toolbar\";s:5:\"title\";s:7:\"toolbar\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:265;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"265\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:17:\"admin/help/update\";s:11:\"router_path\";s:17:\"admin/help/update\";s:10:\"link_title\";s:6:\"update\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"265\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:17:\"admin/help/update\";s:5:\"title\";s:6:\"update\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:0:{}}i:309;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"309\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:17:\"admin/help/locale\";s:11:\"router_path\";s:17:\"admin/help/locale\";s:10:\"link_title\";s:6:\"locale\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"309\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:17:\"admin/help/locale\";s:5:\"title\";s:6:\"locale\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:310;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"310\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:22:\"admin/help/translation\";s:11:\"router_path\";s:22:\"admin/help/translation\";s:10:\"link_title\";s:11:\"translation\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"310\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:22:\"admin/help/translation\";s:5:\"title\";s:11:\"translation\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:360;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"360\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:22:\"admin/help/l10n_update\";s:11:\"router_path\";s:22:\"admin/help/l10n_update\";s:10:\"link_title\";s:11:\"l10n_update\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"360\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:22:\"admin/help/l10n_update\";s:5:\"title\";s:11:\"l10n_update\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:363;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"363\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:15:\"admin/help/i18n\";s:11:\"router_path\";s:15:\"admin/help/i18n\";s:10:\"link_title\";s:4:\"i18n\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"363\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/help/i18n\";s:5:\"title\";s:4:\"i18n\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:364;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"364\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:21:\"admin/help/i18n_block\";s:11:\"router_path\";s:21:\"admin/help/i18n_block\";s:10:\"link_title\";s:10:\"i18n_block\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"364\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/help/i18n_block\";s:5:\"title\";s:10:\"i18n_block\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:365;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"365\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:20:\"admin/help/i18n_menu\";s:11:\"router_path\";s:20:\"admin/help/i18n_menu\";s:10:\"link_title\";s:9:\"i18n_menu\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"365\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/help/i18n_menu\";s:5:\"title\";s:9:\"i18n_menu\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:366;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"366\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:20:\"admin/help/i18n_node\";s:11:\"router_path\";s:20:\"admin/help/i18n_node\";s:10:\"link_title\";s:9:\"i18n_node\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"366\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/help/i18n_node\";s:5:\"title\";s:9:\"i18n_node\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:367;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"367\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:22:\"admin/help/i18n_string\";s:11:\"router_path\";s:22:\"admin/help/i18n_string\";s:10:\"link_title\";s:11:\"i18n_string\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"367\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:22:\"admin/help/i18n_string\";s:5:\"title\";s:11:\"i18n_string\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:443;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"443\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:19:\"admin/help/location\";s:11:\"router_path\";s:19:\"admin/help/location\";s:10:\"link_title\";s:8:\"location\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"443\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/help/location\";s:5:\"title\";s:8:\"location\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:485;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"485\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:19:\"admin/help/features\";s:11:\"router_path\";s:19:\"admin/help/features\";s:10:\"link_title\";s:8:\"features\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"485\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/help/features\";s:5:\"title\";s:8:\"features\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:533;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"533\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:14:\"admin/help/php\";s:11:\"router_path\";s:14:\"admin/help/php\";s:10:\"link_title\";s:3:\"php\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"533\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:14:\"admin/help/php\";s:5:\"title\";s:3:\"php\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:621;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"621\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:18:\"admin/help/contact\";s:11:\"router_path\";s:18:\"admin/help/contact\";s:10:\"link_title\";s:7:\"contact\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"621\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:18:\"admin/help/contact\";s:5:\"title\";s:7:\"contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:622;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"622\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:16:\"admin/help/forum\";s:11:\"router_path\";s:16:\"admin/help/forum\";s:10:\"link_title\";s:5:\"forum\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"622\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/help/forum\";s:5:\"title\";s:5:\"forum\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:623;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"623\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:21:\"admin/help/i18n_forum\";s:11:\"router_path\";s:21:\"admin/help/i18n_forum\";s:10:\"link_title\";s:10:\"i18n_forum\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"623\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/help/i18n_forum\";s:5:\"title\";s:10:\"i18n_forum\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:624;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"624\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:24:\"admin/help/i18n_taxonomy\";s:11:\"router_path\";s:24:\"admin/help/i18n_taxonomy\";s:10:\"link_title\";s:13:\"i18n_taxonomy\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"624\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:24:\"admin/help/i18n_taxonomy\";s:5:\"title\";s:13:\"i18n_taxonomy\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:650;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"650\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:24:\"admin/help/i18n_redirect\";s:11:\"router_path\";s:24:\"admin/help/i18n_redirect\";s:10:\"link_title\";s:13:\"i18n_redirect\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"650\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:24:\"admin/help/i18n_redirect\";s:5:\"title\";s:13:\"i18n_redirect\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:651;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"651\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:20:\"admin/help/i18n_sync\";s:11:\"router_path\";s:20:\"admin/help/i18n_sync\";s:10:\"link_title\";s:9:\"i18n_sync\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"651\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/help/i18n_sync\";s:5:\"title\";s:9:\"i18n_sync\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:652;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"652\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:24:\"admin/help/languageicons\";s:11:\"router_path\";s:24:\"admin/help/languageicons\";s:10:\"link_title\";s:13:\"languageicons\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"652\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:24:\"admin/help/languageicons\";s:5:\"title\";s:13:\"languageicons\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:653;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"653\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:16:\"admin/help/title\";s:11:\"router_path\";s:16:\"admin/help/title\";s:10:\"link_title\";s:5:\"title\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"653\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/help/title\";s:5:\"title\";s:5:\"title\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:872;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"872\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:16:\"admin/help/views\";s:11:\"router_path\";s:16:\"admin/help/views\";s:10:\"link_title\";s:5:\"views\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"872\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/help/views\";s:5:\"title\";s:5:\"views\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:873;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"873\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:19:\"admin/help/views_ui\";s:11:\"router_path\";s:19:\"admin/help/views_ui\";s:10:\"link_title\";s:8:\"views_ui\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"873\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/help/views_ui\";s:5:\"title\";s:8:\"views_ui\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:955;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"955\";s:4:\"plid\";s:2:\"12\";s:9:\"link_path\";s:20:\"admin/help/libraries\";s:11:\"router_path\";s:20:\"admin/help/libraries\";s:10:\"link_title\";s:9:\"libraries\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:3:\"955\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/help/libraries\";s:5:\"title\";s:9:\"libraries\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:13;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"13\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/index\";s:11:\"router_path\";s:11:\"admin/index\";s:10:\"link_title\";s:5:\"Index\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-18\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"13\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:18:\"system_admin_index\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Index\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:16;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"16\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/modules\";s:11:\"router_path\";s:13:\"admin/modules\";s:10:\"link_title\";s:7:\"Modules\";s:7:\"options\";s:76:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Extend site functionality.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:7:\"Modules\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:26:\"Extend site functionality.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:18;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"18\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/people\";s:11:\"router_path\";s:12:\"admin/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Manage user accounts, roles, and permissions.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-4\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Manage user accounts, roles, and permissions.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:19;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"19\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/reports\";s:11:\"router_path\";s:13:\"admin/reports\";s:10:\"link_title\";s:7:\"Reports\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View reports, updates, and errors.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/reports\";s:5:\"title\";s:7:\"Reports\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View reports, updates, and errors.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:21;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"21\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/structure\";s:11:\"router_path\";s:15:\"admin/structure\";s:10:\"link_title\";s:9:\"Structure\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Administer blocks, content types, menus, etc.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-8\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/structure\";s:5:\"title\";s:9:\"Structure\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Administer blocks, content types, menus, etc.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:22;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"22\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/tasks\";s:11:\"router_path\";s:11:\"admin/tasks\";s:10:\"link_title\";s:5:\"Tasks\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"22\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Tasks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}}s:10:\"node_links\";a:0:{}}',0,1652162541,1),('links:management:tree-data:en:d632951814a4a494e99a63f174969c7b7d006326e03aa5c4919ecfcdd96c3ef7','a:2:{s:4:\"tree\";a:1:{i:1;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"1\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"admin\";s:11:\"router_path\";s:5:\"admin\";s:10:\"link_title\";s:14:\"Administration\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:14:\"Administration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:11:{i:7;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"7\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:16:\"admin/appearance\";s:11:\"router_path\";s:16:\"admin/appearance\";s:10:\"link_title\";s:10:\"Appearance\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Select and configure your themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-6\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"7\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer themes\";}\";s:13:\"page_callback\";s:18:\"system_themes_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/appearance\";s:5:\"title\";s:10:\"Appearance\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"Select and configure your themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:8;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"8\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/config\";s:11:\"router_path\";s:12:\"admin/config\";s:10:\"link_title\";s:13:\"Configuration\";s:7:\"options\";s:70:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:20:\"Administer settings.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:24:\"system_admin_config_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/config\";s:5:\"title\";s:13:\"Configuration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:20:\"Administer settings.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:10:{i:35;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"35\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:20:\"admin/config/content\";s:11:\"router_path\";s:20:\"admin/config/content\";s:10:\"link_title\";s:17:\"Content authoring\";s:7:\"options\";s:103:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:53:\"Settings related to formatting and authoring content.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"35\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/config/content\";s:5:\"title\";s:17:\"Content authoring\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:53:\"Settings related to formatting and authoring content.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:39;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"39\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:24:\"admin/config/development\";s:11:\"router_path\";s:24:\"admin/config/development\";s:10:\"link_title\";s:11:\"Development\";s:7:\"options\";s:68:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:18:\"Development tools.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"39\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:24:\"admin/config/development\";s:5:\"title\";s:11:\"Development\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:18:\"Development tools.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:46;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"46\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:18:\"admin/config/media\";s:11:\"router_path\";s:18:\"admin/config/media\";s:10:\"link_title\";s:5:\"Media\";s:7:\"options\";s:62:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:12:\"Media tools.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"46\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:18:\"admin/config/media\";s:5:\"title\";s:5:\"Media\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:12:\"Media tools.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:48;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"48\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:19:\"admin/config/people\";s:11:\"router_path\";s:19:\"admin/config/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:74:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:24:\"Configure user accounts.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"48\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/config/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:24:\"Configure user accounts.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:51;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"51\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:21:\"admin/config/regional\";s:11:\"router_path\";s:21:\"admin/config/regional\";s:10:\"link_title\";s:21:\"Regional and language\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Regional settings, localization and translation.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-5\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"51\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/config/regional\";s:5:\"title\";s:21:\"Regional and language\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Regional settings, localization and translation.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:53;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"53\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:19:\"admin/config/search\";s:11:\"router_path\";s:19:\"admin/config/search\";s:10:\"link_title\";s:19:\"Search and metadata\";s:7:\"options\";s:86:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:36:\"Local site search, metadata and SEO.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"53\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/config/search\";s:5:\"title\";s:19:\"Search and metadata\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:36:\"Local site search, metadata and SEO.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:56;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"56\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:19:\"admin/config/system\";s:11:\"router_path\";s:19:\"admin/config/system\";s:10:\"link_title\";s:6:\"System\";s:7:\"options\";s:87:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:37:\"General system related configuration.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"56\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/config/system\";s:5:\"title\";s:6:\"System\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:37:\"General system related configuration.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:3:{i:91;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"91\";s:4:\"plid\";s:2:\"56\";s:9:\"link_path\";s:27:\"admin/config/system/actions\";s:11:\"router_path\";s:27:\"admin/config/system/actions\";s:10:\"link_title\";s:7:\"Actions\";s:7:\"options\";s:91:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:41:\"Manage the actions defined for your site.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"56\";s:2:\"p4\";s:2:\"91\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer actions\";}\";s:13:\"page_callback\";s:21:\"system_actions_manage\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:27:\"admin/config/system/actions\";s:5:\"title\";s:7:\"Actions\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:41:\"Manage the actions defined for your site.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:98;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"98\";s:4:\"plid\";s:2:\"56\";s:9:\"link_path\";s:24:\"admin/config/system/cron\";s:11:\"router_path\";s:24:\"admin/config/system/cron\";s:10:\"link_title\";s:4:\"Cron\";s:7:\"options\";s:90:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:40:\"Manage automatic site maintenance tasks.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"20\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"56\";s:2:\"p4\";s:2:\"98\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"administer site configuration\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:38:\"a:1:{i:0;s:20:\"system_cron_settings\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:24:\"admin/config/system/cron\";s:5:\"title\";s:4:\"Cron\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:40:\"Manage automatic site maintenance tasks.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:121;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"121\";s:4:\"plid\";s:2:\"56\";s:9:\"link_path\";s:36:\"admin/config/system/site-information\";s:11:\"router_path\";s:36:\"admin/config/system/site-information\";s:10:\"link_title\";s:16:\"Site information\";s:7:\"options\";s:155:\"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.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"56\";s:2:\"p4\";s:3:\"121\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"administer site configuration\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:50:\"a:1:{i:0;s:32:\"system_site_information_settings\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:36:\"admin/config/system/site-information\";s:5:\"title\";s:16:\"Site information\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:104:\"Change site name, e-mail address, slogan, default front page, and number of posts per page, error pages.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:0:{}}}}i:61;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"61\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:27:\"admin/config/user-interface\";s:11:\"router_path\";s:27:\"admin/config/user-interface\";s:10:\"link_title\";s:14:\"User interface\";s:7:\"options\";s:88:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:38:\"Tools that enhance the user interface.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"61\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:27:\"admin/config/user-interface\";s:5:\"title\";s:14:\"User interface\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:38:\"Tools that enhance the user interface.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:64;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"64\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:21:\"admin/config/services\";s:11:\"router_path\";s:21:\"admin/config/services\";s:10:\"link_title\";s:12:\"Web services\";s:7:\"options\";s:80:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:30:\"Tools related to web services.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"64\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/config/services\";s:5:\"title\";s:12:\"Web services\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:30:\"Tools related to web services.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:65;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"65\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:21:\"admin/config/workflow\";s:11:\"router_path\";s:21:\"admin/config/workflow\";s:10:\"link_title\";s:8:\"Workflow\";s:7:\"options\";s:93:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"Content workflow, editorial workflow tools.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"65\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/config/workflow\";s:5:\"title\";s:8:\"Workflow\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:43:\"Content workflow, editorial workflow tools.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:9;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"9\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/content\";s:11:\"router_path\";s:13:\"admin/content\";s:10:\"link_title\";s:7:\"Content\";s:7:\"options\";s:82:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Administer content and comments.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"9\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:32:\"Administer content and comments.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:11;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"11\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/dashboard\";s:11:\"router_path\";s:15:\"admin/dashboard\";s:10:\"link_title\";s:9:\"Dashboard\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View and customize your dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/dashboard\";s:5:\"title\";s:9:\"Dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View and customize your dashboard.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:12;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"12\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:10:\"admin/help\";s:11:\"router_path\";s:10:\"admin/help\";s:10:\"link_title\";s:4:\"Help\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Reference for usage, configuration, and modules.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_main\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"admin/help\";s:5:\"title\";s:4:\"Help\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Reference for usage, configuration, and modules.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:13;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"13\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/index\";s:11:\"router_path\";s:11:\"admin/index\";s:10:\"link_title\";s:5:\"Index\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-18\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"13\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:18:\"system_admin_index\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Index\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:16;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"16\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/modules\";s:11:\"router_path\";s:13:\"admin/modules\";s:10:\"link_title\";s:7:\"Modules\";s:7:\"options\";s:76:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Extend site functionality.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:7:\"Modules\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:26:\"Extend site functionality.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:18;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"18\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/people\";s:11:\"router_path\";s:12:\"admin/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Manage user accounts, roles, and permissions.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-4\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Manage user accounts, roles, and permissions.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:19;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"19\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/reports\";s:11:\"router_path\";s:13:\"admin/reports\";s:10:\"link_title\";s:7:\"Reports\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View reports, updates, and errors.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/reports\";s:5:\"title\";s:7:\"Reports\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View reports, updates, and errors.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:21;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"21\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/structure\";s:11:\"router_path\";s:15:\"admin/structure\";s:10:\"link_title\";s:9:\"Structure\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Administer blocks, content types, menus, etc.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-8\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/structure\";s:5:\"title\";s:9:\"Structure\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Administer blocks, content types, menus, etc.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:22;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"22\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/tasks\";s:11:\"router_path\";s:11:\"admin/tasks\";s:10:\"link_title\";s:5:\"Tasks\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"22\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Tasks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}}s:10:\"node_links\";a:0:{}}',0,1652162705,1),('links:management:tree-data:en:e954088f0e4286ac23d2aed21c4e2a377e9d63c0e8d7bf910a2bf6f2950cbe46','a:2:{s:4:\"tree\";a:1:{i:1;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"1\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"admin\";s:11:\"router_path\";s:5:\"admin\";s:10:\"link_title\";s:14:\"Administration\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:14:\"Administration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:11:{i:7;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"7\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:16:\"admin/appearance\";s:11:\"router_path\";s:16:\"admin/appearance\";s:10:\"link_title\";s:10:\"Appearance\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Select and configure your themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-6\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"7\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer themes\";}\";s:13:\"page_callback\";s:18:\"system_themes_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/appearance\";s:5:\"title\";s:10:\"Appearance\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"Select and configure your themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:8;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"8\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/config\";s:11:\"router_path\";s:12:\"admin/config\";s:10:\"link_title\";s:13:\"Configuration\";s:7:\"options\";s:70:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:20:\"Administer settings.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:24:\"system_admin_config_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/config\";s:5:\"title\";s:13:\"Configuration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:20:\"Administer settings.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:10:{i:35;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"35\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:20:\"admin/config/content\";s:11:\"router_path\";s:20:\"admin/config/content\";s:10:\"link_title\";s:17:\"Content authoring\";s:7:\"options\";s:103:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:53:\"Settings related to formatting and authoring content.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"35\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/config/content\";s:5:\"title\";s:17:\"Content authoring\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:53:\"Settings related to formatting and authoring content.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:39;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"39\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:24:\"admin/config/development\";s:11:\"router_path\";s:24:\"admin/config/development\";s:10:\"link_title\";s:11:\"Development\";s:7:\"options\";s:68:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:18:\"Development tools.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"39\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:24:\"admin/config/development\";s:5:\"title\";s:11:\"Development\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:18:\"Development tools.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:46;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"46\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:18:\"admin/config/media\";s:11:\"router_path\";s:18:\"admin/config/media\";s:10:\"link_title\";s:5:\"Media\";s:7:\"options\";s:62:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:12:\"Media tools.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"46\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:18:\"admin/config/media\";s:5:\"title\";s:5:\"Media\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:12:\"Media tools.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:48;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"48\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:19:\"admin/config/people\";s:11:\"router_path\";s:19:\"admin/config/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:74:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:24:\"Configure user accounts.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"48\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/config/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:24:\"Configure user accounts.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:2:{i:90;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"90\";s:4:\"plid\";s:2:\"48\";s:9:\"link_path\";s:28:\"admin/config/people/accounts\";s:11:\"router_path\";s:28:\"admin/config/people/accounts\";s:10:\"link_title\";s:16:\"Account settings\";s:7:\"options\";s:160:\"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.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"48\";s:2:\"p4\";s:2:\"90\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:37:\"a:1:{i:0;s:19:\"user_admin_settings\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:28:\"admin/config/people/accounts\";s:5:\"title\";s:16:\"Account settings\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:109:\"Configure default behavior of users, including registration requirements, e-mails, fields, and user pictures.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:3:{i:142;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"142\";s:4:\"plid\";s:2:\"90\";s:9:\"link_path\";s:37:\"admin/config/people/accounts/settings\";s:11:\"router_path\";s:37:\"admin/config/people/accounts/settings\";s:10:\"link_title\";s:8:\"Settings\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"5\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"48\";s:2:\"p4\";s:2:\"90\";s:2:\"p5\";s:3:\"142\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:37:\"a:1:{i:0;s:19:\"user_admin_settings\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:28:\"admin/config/people/accounts\";s:8:\"tab_root\";s:28:\"admin/config/people/accounts\";s:5:\"title\";s:8:\"Settings\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:1000;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:4:\"1000\";s:4:\"plid\";s:2:\"90\";s:9:\"link_path\";s:36:\"admin/config/people/accounts/display\";s:11:\"router_path\";s:36:\"admin/config/people/accounts/display\";s:10:\"link_title\";s:14:\"Manage display\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"2\";s:5:\"depth\";s:1:\"5\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"48\";s:2:\"p4\";s:2:\"90\";s:2:\"p5\";s:4:\"1000\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:21:\"field_ui_admin_access\";s:16:\"access_arguments\";s:67:\"a:2:{i:0;s:11:\"user_access\";i:1;a:1:{i:0;s:16:\"administer users\";}}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:96:\"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\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:28:\"admin/config/people/accounts\";s:8:\"tab_root\";s:28:\"admin/config/people/accounts\";s:5:\"title\";s:14:\"Manage display\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:1002;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:4:\"1002\";s:4:\"plid\";s:2:\"90\";s:9:\"link_path\";s:35:\"admin/config/people/accounts/fields\";s:11:\"router_path\";s:35:\"admin/config/people/accounts/fields\";s:10:\"link_title\";s:13:\"Manage fields\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"1\";s:5:\"depth\";s:1:\"5\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"48\";s:2:\"p4\";s:2:\"90\";s:2:\"p5\";s:4:\"1002\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:21:\"field_ui_admin_access\";s:16:\"access_arguments\";s:67:\"a:2:{i:0;s:11:\"user_access\";i:1;a:1:{i:0;s:16:\"administer users\";}}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:76:\"a:3:{i:0;s:28:\"field_ui_field_overview_form\";i:1;s:4:\"user\";i:2;s:4:\"user\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:28:\"admin/config/people/accounts\";s:8:\"tab_root\";s:28:\"admin/config/people/accounts\";s:5:\"title\";s:13:\"Manage fields\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:104;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"104\";s:4:\"plid\";s:2:\"48\";s:9:\"link_path\";s:31:\"admin/config/people/ip-blocking\";s:11:\"router_path\";s:31:\"admin/config/people/ip-blocking\";s:10:\"link_title\";s:19:\"IP address blocking\";s:7:\"options\";s:78:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:28:\"Manage blocked IP addresses.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"48\";s:2:\"p4\";s:3:\"104\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"block IP addresses\";}\";s:13:\"page_callback\";s:18:\"system_ip_blocking\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:31:\"admin/config/people/ip-blocking\";s:5:\"title\";s:19:\"IP address blocking\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:28:\"Manage blocked IP addresses.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:51;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"51\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:21:\"admin/config/regional\";s:11:\"router_path\";s:21:\"admin/config/regional\";s:10:\"link_title\";s:21:\"Regional and language\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Regional settings, localization and translation.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-5\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"51\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/config/regional\";s:5:\"title\";s:21:\"Regional and language\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Regional settings, localization and translation.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:53;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"53\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:19:\"admin/config/search\";s:11:\"router_path\";s:19:\"admin/config/search\";s:10:\"link_title\";s:19:\"Search and metadata\";s:7:\"options\";s:86:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:36:\"Local site search, metadata and SEO.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"53\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/config/search\";s:5:\"title\";s:19:\"Search and metadata\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:36:\"Local site search, metadata and SEO.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:56;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"56\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:19:\"admin/config/system\";s:11:\"router_path\";s:19:\"admin/config/system\";s:10:\"link_title\";s:6:\"System\";s:7:\"options\";s:87:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:37:\"General system related configuration.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"56\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/config/system\";s:5:\"title\";s:6:\"System\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:37:\"General system related configuration.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:61;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"61\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:27:\"admin/config/user-interface\";s:11:\"router_path\";s:27:\"admin/config/user-interface\";s:10:\"link_title\";s:14:\"User interface\";s:7:\"options\";s:88:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:38:\"Tools that enhance the user interface.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"61\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:27:\"admin/config/user-interface\";s:5:\"title\";s:14:\"User interface\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:38:\"Tools that enhance the user interface.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:64;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"64\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:21:\"admin/config/services\";s:11:\"router_path\";s:21:\"admin/config/services\";s:10:\"link_title\";s:12:\"Web services\";s:7:\"options\";s:80:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:30:\"Tools related to web services.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"64\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/config/services\";s:5:\"title\";s:12:\"Web services\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:30:\"Tools related to web services.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:65;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"65\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:21:\"admin/config/workflow\";s:11:\"router_path\";s:21:\"admin/config/workflow\";s:10:\"link_title\";s:8:\"Workflow\";s:7:\"options\";s:93:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"Content workflow, editorial workflow tools.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"65\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/config/workflow\";s:5:\"title\";s:8:\"Workflow\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:43:\"Content workflow, editorial workflow tools.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:9;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"9\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/content\";s:11:\"router_path\";s:13:\"admin/content\";s:10:\"link_title\";s:7:\"Content\";s:7:\"options\";s:82:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Administer content and comments.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"9\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:32:\"Administer content and comments.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:11;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"11\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/dashboard\";s:11:\"router_path\";s:15:\"admin/dashboard\";s:10:\"link_title\";s:9:\"Dashboard\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View and customize your dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/dashboard\";s:5:\"title\";s:9:\"Dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View and customize your dashboard.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:12;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"12\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:10:\"admin/help\";s:11:\"router_path\";s:10:\"admin/help\";s:10:\"link_title\";s:4:\"Help\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Reference for usage, configuration, and modules.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_main\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"admin/help\";s:5:\"title\";s:4:\"Help\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Reference for usage, configuration, and modules.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:13;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"13\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/index\";s:11:\"router_path\";s:11:\"admin/index\";s:10:\"link_title\";s:5:\"Index\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-18\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"13\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:18:\"system_admin_index\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Index\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:16;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"16\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/modules\";s:11:\"router_path\";s:13:\"admin/modules\";s:10:\"link_title\";s:7:\"Modules\";s:7:\"options\";s:76:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Extend site functionality.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:7:\"Modules\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:26:\"Extend site functionality.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:18;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"18\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/people\";s:11:\"router_path\";s:12:\"admin/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Manage user accounts, roles, and permissions.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-4\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Manage user accounts, roles, and permissions.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:19;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"19\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/reports\";s:11:\"router_path\";s:13:\"admin/reports\";s:10:\"link_title\";s:7:\"Reports\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View reports, updates, and errors.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/reports\";s:5:\"title\";s:7:\"Reports\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View reports, updates, and errors.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:21;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"21\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/structure\";s:11:\"router_path\";s:15:\"admin/structure\";s:10:\"link_title\";s:9:\"Structure\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Administer blocks, content types, menus, etc.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-8\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/structure\";s:5:\"title\";s:9:\"Structure\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Administer blocks, content types, menus, etc.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:22;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"22\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/tasks\";s:11:\"router_path\";s:11:\"admin/tasks\";s:10:\"link_title\";s:5:\"Tasks\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"22\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Tasks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}}s:10:\"node_links\";a:0:{}}',0,1652162436,1),('links:management:tree-data:en:f8e81a5a7287db209346d12b15c39606c4a4b15b306f634bf51f5cfba035b4d0','a:2:{s:4:\"tree\";a:1:{i:1;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"1\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"admin\";s:11:\"router_path\";s:5:\"admin\";s:10:\"link_title\";s:14:\"Administration\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:14:\"Administration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:11:{i:7;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"7\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:16:\"admin/appearance\";s:11:\"router_path\";s:16:\"admin/appearance\";s:10:\"link_title\";s:10:\"Appearance\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Select and configure your themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-6\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"7\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer themes\";}\";s:13:\"page_callback\";s:18:\"system_themes_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/appearance\";s:5:\"title\";s:10:\"Appearance\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"Select and configure your themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:8;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"8\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/config\";s:11:\"router_path\";s:12:\"admin/config\";s:10:\"link_title\";s:13:\"Configuration\";s:7:\"options\";s:70:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:20:\"Administer settings.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:24:\"system_admin_config_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/config\";s:5:\"title\";s:13:\"Configuration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:20:\"Administer settings.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:9;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"9\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/content\";s:11:\"router_path\";s:13:\"admin/content\";s:10:\"link_title\";s:7:\"Content\";s:7:\"options\";s:82:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Administer content and comments.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"9\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:32:\"Administer content and comments.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:11;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"11\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/dashboard\";s:11:\"router_path\";s:15:\"admin/dashboard\";s:10:\"link_title\";s:9:\"Dashboard\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View and customize your dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/dashboard\";s:5:\"title\";s:9:\"Dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View and customize your dashboard.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:12;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"12\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:10:\"admin/help\";s:11:\"router_path\";s:10:\"admin/help\";s:10:\"link_title\";s:4:\"Help\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Reference for usage, configuration, and modules.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_main\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"admin/help\";s:5:\"title\";s:4:\"Help\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Reference for usage, configuration, and modules.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:13;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"13\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/index\";s:11:\"router_path\";s:11:\"admin/index\";s:10:\"link_title\";s:5:\"Index\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-18\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"13\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:18:\"system_admin_index\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Index\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:16;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"16\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/modules\";s:11:\"router_path\";s:13:\"admin/modules\";s:10:\"link_title\";s:7:\"Modules\";s:7:\"options\";s:76:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Extend site functionality.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:7:\"Modules\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:26:\"Extend site functionality.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:18;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"18\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/people\";s:11:\"router_path\";s:12:\"admin/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Manage user accounts, roles, and permissions.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-4\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Manage user accounts, roles, and permissions.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:3:{i:29;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"29\";s:4:\"plid\";s:2:\"18\";s:9:\"link_path\";s:19:\"admin/people/create\";s:11:\"router_path\";s:19:\"admin/people/create\";s:10:\"link_title\";s:8:\"Add user\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:2:\"29\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:23:\"a:1:{i:0;s:6:\"create\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:12:\"admin/people\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:8:\"Add user\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"388\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:45;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"45\";s:4:\"plid\";s:2:\"18\";s:9:\"link_path\";s:19:\"admin/people/people\";s:11:\"router_path\";s:19:\"admin/people/people\";s:10:\"link_title\";s:4:\"List\";s:7:\"options\";s:100:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:50:\"Find and manage people interacting with your site.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:2:\"45\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:12:\"admin/people\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:4:\"List\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:50:\"Find and manage people interacting with your site.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:49;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"49\";s:4:\"plid\";s:2:\"18\";s:9:\"link_path\";s:24:\"admin/people/permissions\";s:11:\"router_path\";s:24:\"admin/people/permissions\";s:10:\"link_title\";s:11:\"Permissions\";s:7:\"options\";s:114:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:64:\"Determine access to features by selecting permissions for roles.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:2:\"49\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:40:\"a:1:{i:0;s:22:\"administer permissions\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:40:\"a:1:{i:0;s:22:\"user_admin_permissions\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:12:\"admin/people\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:11:\"Permissions\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:64:\"Determine access to features by selecting permissions for roles.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:19;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"19\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/reports\";s:11:\"router_path\";s:13:\"admin/reports\";s:10:\"link_title\";s:7:\"Reports\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View reports, updates, and errors.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/reports\";s:5:\"title\";s:7:\"Reports\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View reports, updates, and errors.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:21;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"21\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/structure\";s:11:\"router_path\";s:15:\"admin/structure\";s:10:\"link_title\";s:9:\"Structure\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Administer blocks, content types, menus, etc.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-8\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/structure\";s:5:\"title\";s:9:\"Structure\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Administer blocks, content types, menus, etc.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:22;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"22\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/tasks\";s:11:\"router_path\";s:11:\"admin/tasks\";s:10:\"link_title\";s:5:\"Tasks\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"22\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Tasks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}}s:10:\"node_links\";a:0:{}}',0,1652162474,1),('links:management:tree-data:it:3023ae1879e4d74e557c6a4239597e04e1c68b4b9207a4eb91bf0bb1a73e5c9b','a:2:{s:4:\"tree\";a:1:{i:1;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"1\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"admin\";s:11:\"router_path\";s:5:\"admin\";s:10:\"link_title\";s:14:\"Administration\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:14:\"Administration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:11:{i:7;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"7\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:16:\"admin/appearance\";s:11:\"router_path\";s:16:\"admin/appearance\";s:10:\"link_title\";s:10:\"Appearance\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Select and configure your themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-6\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"7\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer themes\";}\";s:13:\"page_callback\";s:18:\"system_themes_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/appearance\";s:5:\"title\";s:10:\"Appearance\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"Select and configure your themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:8;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"8\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/config\";s:11:\"router_path\";s:12:\"admin/config\";s:10:\"link_title\";s:13:\"Configuration\";s:7:\"options\";s:70:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:20:\"Administer settings.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:24:\"system_admin_config_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/config\";s:5:\"title\";s:13:\"Configuration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:20:\"Administer settings.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:10:{i:35;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"35\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:20:\"admin/config/content\";s:11:\"router_path\";s:20:\"admin/config/content\";s:10:\"link_title\";s:17:\"Content authoring\";s:7:\"options\";s:103:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:53:\"Settings related to formatting and authoring content.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"35\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/config/content\";s:5:\"title\";s:17:\"Content authoring\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:53:\"Settings related to formatting and authoring content.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:39;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"39\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:24:\"admin/config/development\";s:11:\"router_path\";s:24:\"admin/config/development\";s:10:\"link_title\";s:11:\"Development\";s:7:\"options\";s:68:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:18:\"Development tools.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"39\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:24:\"admin/config/development\";s:5:\"title\";s:11:\"Development\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:18:\"Development tools.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:3:{i:111;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"111\";s:4:\"plid\";s:2:\"39\";s:9:\"link_path\";s:32:\"admin/config/development/logging\";s:11:\"router_path\";s:32:\"admin/config/development/logging\";s:10:\"link_title\";s:18:\"Logging and errors\";s:7:\"options\";s:205:\"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.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"39\";s:2:\"p4\";s:3:\"111\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"administer site configuration\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:41:\"a:1:{i:0;s:23:\"system_logging_settings\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:32:\"admin/config/development/logging\";s:5:\"title\";s:18:\"Logging and errors\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";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.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:112;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"112\";s:4:\"plid\";s:2:\"39\";s:9:\"link_path\";s:36:\"admin/config/development/maintenance\";s:11:\"router_path\";s:36:\"admin/config/development/maintenance\";s:10:\"link_title\";s:16:\"Maintenance mode\";s:7:\"options\";s:112:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:62:\"Take the site offline for maintenance or bring it back online.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"39\";s:2:\"p4\";s:3:\"112\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"administer site configuration\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:46:\"a:1:{i:0;s:28:\"system_site_maintenance_mode\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:36:\"admin/config/development/maintenance\";s:5:\"title\";s:16:\"Maintenance mode\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:62:\"Take the site offline for maintenance or bring it back online.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:0:{}}i:113;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:3:\"113\";s:4:\"plid\";s:2:\"39\";s:9:\"link_path\";s:36:\"admin/config/development/performance\";s:11:\"router_path\";s:36:\"admin/config/development/performance\";s:10:\"link_title\";s:11:\"Performance\";s:7:\"options\";s:152:\"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.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"4\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"39\";s:2:\"p4\";s:3:\"113\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"administer site configuration\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:45:\"a:1:{i:0;s:27:\"system_performance_settings\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:36:\"admin/config/development/performance\";s:5:\"title\";s:11:\"Performance\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:101:\"Enable or disable page caching for anonymous users and set CSS and JS bandwidth optimization options.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:46;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"46\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:18:\"admin/config/media\";s:11:\"router_path\";s:18:\"admin/config/media\";s:10:\"link_title\";s:5:\"Media\";s:7:\"options\";s:62:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:12:\"Media tools.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"46\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:18:\"admin/config/media\";s:5:\"title\";s:5:\"Media\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:12:\"Media tools.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:48;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"48\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:19:\"admin/config/people\";s:11:\"router_path\";s:19:\"admin/config/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:74:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:24:\"Configure user accounts.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"48\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/config/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:24:\"Configure user accounts.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:51;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"51\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:21:\"admin/config/regional\";s:11:\"router_path\";s:21:\"admin/config/regional\";s:10:\"link_title\";s:21:\"Regional and language\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Regional settings, localization and translation.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-5\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"51\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/config/regional\";s:5:\"title\";s:21:\"Regional and language\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Regional settings, localization and translation.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:53;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"53\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:19:\"admin/config/search\";s:11:\"router_path\";s:19:\"admin/config/search\";s:10:\"link_title\";s:19:\"Search and metadata\";s:7:\"options\";s:86:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:36:\"Local site search, metadata and SEO.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"53\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/config/search\";s:5:\"title\";s:19:\"Search and metadata\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:36:\"Local site search, metadata and SEO.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:56;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"56\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:19:\"admin/config/system\";s:11:\"router_path\";s:19:\"admin/config/system\";s:10:\"link_title\";s:6:\"System\";s:7:\"options\";s:87:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:37:\"General system related configuration.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"56\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/config/system\";s:5:\"title\";s:6:\"System\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:37:\"General system related configuration.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:61;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"61\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:27:\"admin/config/user-interface\";s:11:\"router_path\";s:27:\"admin/config/user-interface\";s:10:\"link_title\";s:14:\"User interface\";s:7:\"options\";s:88:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:38:\"Tools that enhance the user interface.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"61\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:27:\"admin/config/user-interface\";s:5:\"title\";s:14:\"User interface\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:38:\"Tools that enhance the user interface.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:64;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"64\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:21:\"admin/config/services\";s:11:\"router_path\";s:21:\"admin/config/services\";s:10:\"link_title\";s:12:\"Web services\";s:7:\"options\";s:80:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:30:\"Tools related to web services.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"64\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/config/services\";s:5:\"title\";s:12:\"Web services\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:30:\"Tools related to web services.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:65;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"65\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:21:\"admin/config/workflow\";s:11:\"router_path\";s:21:\"admin/config/workflow\";s:10:\"link_title\";s:8:\"Workflow\";s:7:\"options\";s:93:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"Content workflow, editorial workflow tools.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"65\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/config/workflow\";s:5:\"title\";s:8:\"Workflow\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:43:\"Content workflow, editorial workflow tools.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:9;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"9\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/content\";s:11:\"router_path\";s:13:\"admin/content\";s:10:\"link_title\";s:7:\"Content\";s:7:\"options\";s:82:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Administer content and comments.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"9\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:32:\"Administer content and comments.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:11;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"11\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/dashboard\";s:11:\"router_path\";s:15:\"admin/dashboard\";s:10:\"link_title\";s:9:\"Dashboard\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View and customize your dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/dashboard\";s:5:\"title\";s:9:\"Dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View and customize your dashboard.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:12;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"12\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:10:\"admin/help\";s:11:\"router_path\";s:10:\"admin/help\";s:10:\"link_title\";s:4:\"Help\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Reference for usage, configuration, and modules.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_main\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"admin/help\";s:5:\"title\";s:4:\"Help\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Reference for usage, configuration, and modules.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:13;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"13\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/index\";s:11:\"router_path\";s:11:\"admin/index\";s:10:\"link_title\";s:5:\"Index\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-18\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"13\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:18:\"system_admin_index\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Index\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:16;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"16\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/modules\";s:11:\"router_path\";s:13:\"admin/modules\";s:10:\"link_title\";s:7:\"Modules\";s:7:\"options\";s:76:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Extend site functionality.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:7:\"Modules\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:26:\"Extend site functionality.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:18;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"18\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/people\";s:11:\"router_path\";s:12:\"admin/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Manage user accounts, roles, and permissions.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-4\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Manage user accounts, roles, and permissions.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:19;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"19\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/reports\";s:11:\"router_path\";s:13:\"admin/reports\";s:10:\"link_title\";s:7:\"Reports\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View reports, updates, and errors.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/reports\";s:5:\"title\";s:7:\"Reports\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View reports, updates, and errors.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:21;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"21\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/structure\";s:11:\"router_path\";s:15:\"admin/structure\";s:10:\"link_title\";s:9:\"Structure\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Administer blocks, content types, menus, etc.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-8\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/structure\";s:5:\"title\";s:9:\"Structure\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Administer blocks, content types, menus, etc.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:22;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"22\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/tasks\";s:11:\"router_path\";s:11:\"admin/tasks\";s:10:\"link_title\";s:5:\"Tasks\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"22\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Tasks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}}s:10:\"node_links\";a:0:{}}',0,1538751536,1),('links:management:tree-data:it:91b77ffcd906388455005818ae5d1f5942cd3182ebca1663104f27b019389442','a:2:{s:4:\"tree\";a:1:{i:1;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"1\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"admin\";s:11:\"router_path\";s:5:\"admin\";s:10:\"link_title\";s:14:\"Administration\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:14:\"Administration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:11:{i:7;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"7\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:16:\"admin/appearance\";s:11:\"router_path\";s:16:\"admin/appearance\";s:10:\"link_title\";s:10:\"Appearance\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Select and configure your themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-6\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"7\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer themes\";}\";s:13:\"page_callback\";s:18:\"system_themes_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/appearance\";s:5:\"title\";s:10:\"Appearance\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"Select and configure your themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:8;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"8\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/config\";s:11:\"router_path\";s:12:\"admin/config\";s:10:\"link_title\";s:13:\"Configuration\";s:7:\"options\";s:70:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:20:\"Administer settings.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:24:\"system_admin_config_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/config\";s:5:\"title\";s:13:\"Configuration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:20:\"Administer settings.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:10:{i:35;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"35\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:20:\"admin/config/content\";s:11:\"router_path\";s:20:\"admin/config/content\";s:10:\"link_title\";s:17:\"Content authoring\";s:7:\"options\";s:103:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:53:\"Settings related to formatting and authoring content.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"35\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:20:\"admin/config/content\";s:5:\"title\";s:17:\"Content authoring\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:53:\"Settings related to formatting and authoring content.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:39;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"39\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:24:\"admin/config/development\";s:11:\"router_path\";s:24:\"admin/config/development\";s:10:\"link_title\";s:11:\"Development\";s:7:\"options\";s:68:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:18:\"Development tools.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"39\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:24:\"admin/config/development\";s:5:\"title\";s:11:\"Development\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:18:\"Development tools.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:46;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"46\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:18:\"admin/config/media\";s:11:\"router_path\";s:18:\"admin/config/media\";s:10:\"link_title\";s:5:\"Media\";s:7:\"options\";s:62:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:12:\"Media tools.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"46\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:18:\"admin/config/media\";s:5:\"title\";s:5:\"Media\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:12:\"Media tools.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:48;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"48\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:19:\"admin/config/people\";s:11:\"router_path\";s:19:\"admin/config/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:74:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:24:\"Configure user accounts.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"48\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/config/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:24:\"Configure user accounts.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:51;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"51\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:21:\"admin/config/regional\";s:11:\"router_path\";s:21:\"admin/config/regional\";s:10:\"link_title\";s:21:\"Regional and language\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Regional settings, localization and translation.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-5\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"51\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/config/regional\";s:5:\"title\";s:21:\"Regional and language\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Regional settings, localization and translation.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:53;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"53\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:19:\"admin/config/search\";s:11:\"router_path\";s:19:\"admin/config/search\";s:10:\"link_title\";s:19:\"Search and metadata\";s:7:\"options\";s:86:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:36:\"Local site search, metadata and SEO.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"53\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/config/search\";s:5:\"title\";s:19:\"Search and metadata\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:36:\"Local site search, metadata and SEO.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:56;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"56\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:19:\"admin/config/system\";s:11:\"router_path\";s:19:\"admin/config/system\";s:10:\"link_title\";s:6:\"System\";s:7:\"options\";s:87:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:37:\"General system related configuration.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"56\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:19:\"admin/config/system\";s:5:\"title\";s:6:\"System\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:37:\"General system related configuration.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:61;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"61\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:27:\"admin/config/user-interface\";s:11:\"router_path\";s:27:\"admin/config/user-interface\";s:10:\"link_title\";s:14:\"User interface\";s:7:\"options\";s:88:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:38:\"Tools that enhance the user interface.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"61\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:27:\"admin/config/user-interface\";s:5:\"title\";s:14:\"User interface\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:38:\"Tools that enhance the user interface.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:64;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"64\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:21:\"admin/config/services\";s:11:\"router_path\";s:21:\"admin/config/services\";s:10:\"link_title\";s:12:\"Web services\";s:7:\"options\";s:80:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:30:\"Tools related to web services.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"64\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/config/services\";s:5:\"title\";s:12:\"Web services\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:30:\"Tools related to web services.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:65;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"65\";s:4:\"plid\";s:1:\"8\";s:9:\"link_path\";s:21:\"admin/config/workflow\";s:11:\"router_path\";s:21:\"admin/config/workflow\";s:10:\"link_title\";s:8:\"Workflow\";s:7:\"options\";s:93:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"Content workflow, editorial workflow tools.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:2:\"65\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:21:\"admin/config/workflow\";s:5:\"title\";s:8:\"Workflow\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:43:\"Content workflow, editorial workflow tools.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:9;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"9\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/content\";s:11:\"router_path\";s:13:\"admin/content\";s:10:\"link_title\";s:7:\"Content\";s:7:\"options\";s:82:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Administer content and comments.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"9\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:32:\"Administer content and comments.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:11;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"11\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/dashboard\";s:11:\"router_path\";s:15:\"admin/dashboard\";s:10:\"link_title\";s:9:\"Dashboard\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View and customize your dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/dashboard\";s:5:\"title\";s:9:\"Dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View and customize your dashboard.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:12;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"12\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:10:\"admin/help\";s:11:\"router_path\";s:10:\"admin/help\";s:10:\"link_title\";s:4:\"Help\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Reference for usage, configuration, and modules.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_main\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"admin/help\";s:5:\"title\";s:4:\"Help\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Reference for usage, configuration, and modules.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:13;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"13\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/index\";s:11:\"router_path\";s:11:\"admin/index\";s:10:\"link_title\";s:5:\"Index\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-18\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"13\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:18:\"system_admin_index\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Index\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:16;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"16\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/modules\";s:11:\"router_path\";s:13:\"admin/modules\";s:10:\"link_title\";s:7:\"Modules\";s:7:\"options\";s:76:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Extend site functionality.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:7:\"Modules\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:26:\"Extend site functionality.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:18;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"18\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/people\";s:11:\"router_path\";s:12:\"admin/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Manage user accounts, roles, and permissions.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-4\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Manage user accounts, roles, and permissions.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:19;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"19\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/reports\";s:11:\"router_path\";s:13:\"admin/reports\";s:10:\"link_title\";s:7:\"Reports\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View reports, updates, and errors.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/reports\";s:5:\"title\";s:7:\"Reports\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View reports, updates, and errors.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:21;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"21\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/structure\";s:11:\"router_path\";s:15:\"admin/structure\";s:10:\"link_title\";s:9:\"Structure\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Administer blocks, content types, menus, etc.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-8\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/structure\";s:5:\"title\";s:9:\"Structure\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Administer blocks, content types, menus, etc.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:22;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"22\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/tasks\";s:11:\"router_path\";s:11:\"admin/tasks\";s:10:\"link_title\";s:5:\"Tasks\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"22\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Tasks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}}s:10:\"node_links\";a:0:{}}',0,1538751565,1),('links:management:tree-data:it:a9eea78b0aeaddd605894be48877502635d2ae1b2a8a8d29cc1b7d377b699477','a:2:{s:4:\"tree\";a:11:{i:7;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"7\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:16:\"admin/appearance\";s:11:\"router_path\";s:16:\"admin/appearance\";s:10:\"link_title\";s:10:\"Appearance\";s:7:\"options\";s:83:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Select and configure your themes.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-6\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"7\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer themes\";}\";s:13:\"page_callback\";s:18:\"system_themes_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"admin/appearance\";s:5:\"title\";s:10:\"Appearance\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:33:\"Select and configure your themes.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:8;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"8\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/config\";s:11:\"router_path\";s:12:\"admin/config\";s:10:\"link_title\";s:13:\"Configuration\";s:7:\"options\";s:70:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:20:\"Administer settings.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"8\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:24:\"system_admin_config_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/config\";s:5:\"title\";s:13:\"Configuration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:20:\"Administer settings.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:9;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:1:\"9\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/content\";s:11:\"router_path\";s:13:\"admin/content\";s:10:\"link_title\";s:7:\"Content\";s:7:\"options\";s:82:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Administer content and comments.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:1:\"9\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:32:\"Administer content and comments.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:11;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"11\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/dashboard\";s:11:\"router_path\";s:15:\"admin/dashboard\";s:10:\"link_title\";s:9:\"Dashboard\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View and customize your dashboard.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-15\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"11\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/dashboard\";s:5:\"title\";s:9:\"Dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View and customize your dashboard.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:12;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"12\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:10:\"admin/help\";s:11:\"router_path\";s:10:\"admin/help\";s:10:\"link_title\";s:4:\"Help\";s:7:\"options\";s:98:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Reference for usage, configuration, and modules.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"9\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"12\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_main\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"admin/help\";s:5:\"title\";s:4:\"Help\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Reference for usage, configuration, and modules.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:13;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"13\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/index\";s:11:\"router_path\";s:11:\"admin/index\";s:10:\"link_title\";s:5:\"Index\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-18\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"13\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:18:\"system_admin_index\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Index\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:16;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"16\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/modules\";s:11:\"router_path\";s:13:\"admin/modules\";s:10:\"link_title\";s:7:\"Modules\";s:7:\"options\";s:76:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Extend site functionality.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"16\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:7:\"Modules\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:26:\"Extend site functionality.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:18;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"18\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:12:\"admin/people\";s:11:\"router_path\";s:12:\"admin/people\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Manage user accounts, roles, and permissions.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-4\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"18\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Manage user accounts, roles, and permissions.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:19;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"19\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:13:\"admin/reports\";s:11:\"router_path\";s:13:\"admin/reports\";s:10:\"link_title\";s:7:\"Reports\";s:7:\"options\";s:84:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View reports, updates, and errors.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"5\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"19\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/reports\";s:5:\"title\";s:7:\"Reports\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View reports, updates, and errors.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:21;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"21\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:15:\"admin/structure\";s:11:\"router_path\";s:15:\"admin/structure\";s:10:\"link_title\";s:9:\"Structure\";s:7:\"options\";s:95:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Administer blocks, content types, menus, etc.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"-8\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"21\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/structure\";s:5:\"title\";s:9:\"Structure\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Administer blocks, content types, menus, etc.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:22;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"management\";s:4:\"mlid\";s:2:\"22\";s:4:\"plid\";s:1:\"1\";s:9:\"link_path\";s:11:\"admin/tasks\";s:11:\"router_path\";s:11:\"admin/tasks\";s:10:\"link_title\";s:5:\"Tasks\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-20\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"1\";s:2:\"p2\";s:2:\"22\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:5:\"admin\";s:8:\"tab_root\";s:5:\"admin\";s:5:\"title\";s:5:\"Tasks\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1538751382,1),('links:navigation:page:admin/people/create:en:0:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1546962858,1),('links:navigation:page:admin:en:0:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1549595045,1),('links:navigation:page:chart/page:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:2:{i:0;i:0;i:606;s:3:\"606\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:606;s:3:\"606\";}}',0,1538751321,1),('links:navigation:page:node/108:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1538946684,1),('links:navigation:page:node/109:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539007815,1),('links:navigation:page:node/110:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539007824,1),('links:navigation:page:node/111:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1538846535,1),('links:navigation:page:node/112:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539007848,1),('links:navigation:page:node/113:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539009730,1),('links:navigation:page:node/115:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539006802,1),('links:navigation:page:node/116:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539006813,1),('links:navigation:page:node/117:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539006824,1),('links:navigation:page:node/118:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539007858,1),('links:navigation:page:node/118:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539009742,1),('links:navigation:page:node/119:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1538960681,1),('links:navigation:page:node/120:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539006271,1),('links:navigation:page:node/121:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539006396,1),('links:navigation:page:node/122:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539006429,1),('links:navigation:page:node/123:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539006549,1),('links:navigation:page:node/124:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:790;s:3:\"790\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:790;s:3:\"790\";}}',0,1539133215,1),('links:navigation:page:node/125:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539006574,1),('links:navigation:page:node/126:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1538911468,1),('links:navigation:page:node/127:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539006670,1),('links:navigation:page:node/128:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539156643,1),('links:navigation:page:node/129/edit:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:2:{i:0;i:0;i:791;s:3:\"791\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:791;s:3:\"791\";}}',0,1652162651,1),('links:navigation:page:node/129:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:791;s:3:\"791\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:791;s:3:\"791\";}}',0,1539156650,1),('links:navigation:page:node/129:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:791;s:3:\"791\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:791;s:3:\"791\";}}',0,1539329946,1),('links:navigation:page:node/12:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1538751349,1),('links:navigation:page:node/130:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:997;s:3:\"997\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:997;s:3:\"997\";}}',0,1538751274,1),('links:navigation:page:node/130:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:997;s:3:\"997\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:997;s:3:\"997\";}}',0,1539116733,1),('links:navigation:page:node/13:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:430;s:3:\"430\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:430;s:3:\"430\";}}',0,1539005959,1),('links:navigation:page:node/14:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:431;s:3:\"431\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:431;s:3:\"431\";}}',0,1539005969,1),('links:navigation:page:node/15:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:432;s:3:\"432\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:432;s:3:\"432\";}}',0,1539005980,1),('links:navigation:page:node/15:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:432;s:3:\"432\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:432;s:3:\"432\";}}',0,1539006589,1),('links:navigation:page:node/1:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1550775912,1),('links:navigation:page:node/21:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539007866,1),('links:navigation:page:node/22:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539007882,1),('links:navigation:page:node/23:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539007891,1),('links:navigation:page:node/24:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539007909,1),('links:navigation:page:node/26:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1538830894,1),('links:navigation:page:node/28:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539006854,1),('links:navigation:page:node/29:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539006142,1),('links:navigation:page:node/29:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539006624,1),('links:navigation:page:node/2:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539005997,1),('links:navigation:page:node/2:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539006611,1),('links:navigation:page:node/30:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539006865,1),('links:navigation:page:node/31:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539006874,1),('links:navigation:page:node/31:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539007380,1),('links:navigation:page:node/32:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1538822054,1),('links:navigation:page:node/33:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:506;s:3:\"506\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:506;s:3:\"506\";}}',0,1538751790,1),('links:navigation:page:node/33:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:506;s:3:\"506\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:506;s:3:\"506\";}}',0,1539006649,1),('links:navigation:page:node/34:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539007920,1),('links:navigation:page:node/35:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539007933,1),('links:navigation:page:node/36:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539007947,1),('links:navigation:page:node/37:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1538751292,1),('links:navigation:page:node/3:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:383;s:3:\"383\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:383;s:3:\"383\";}}',0,1539006152,1),('links:navigation:page:node/3:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:383;s:3:\"383\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:383;s:3:\"383\";}}',0,1539006637,1),('links:navigation:page:node/40:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1538751301,1),('links:navigation:page:node/43:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1543954382,1),('links:navigation:page:node/45:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:531;s:3:\"531\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:531;s:3:\"531\";}}',0,1539006189,1),('links:navigation:page:node/46:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539006207,1),('links:navigation:page:node/4:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1538751288,1),('links:navigation:page:node/4:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539006659,1),('links:navigation:page:node/61:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1543954450,1),('links:navigation:page:node/63:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1543954403,1),('links:navigation:page:node/7:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539006218,1),('links:navigation:page:node/80:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1542128828,1),('links:navigation:page:node/82:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:608;s:3:\"608\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:608;s:3:\"608\";}}',0,1539006232,1),('links:navigation:page:node/82:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:608;s:3:\"608\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:608;s:3:\"608\";}}',0,1539006692,1),('links:navigation:page:node/84:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1542249898,1),('links:navigation:page:node/85:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539007969,1),('links:navigation:page:node/85:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539009758,1),('links:navigation:page:node/86:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539007983,1),('links:navigation:page:node/86:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1538787856,1),('links:navigation:page:node/87:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539007994,1),('links:navigation:page:node/87:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1538771242,1),('links:navigation:page:node/88:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539008012,1),('links:navigation:page:node/88:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539009832,1),('links:navigation:page:node/89:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539008027,1),('links:navigation:page:node/89:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539009858,1),('links:navigation:page:node/8:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1557101648,1),('links:navigation:page:node/90:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539008040,1),('links:navigation:page:node/90:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539009918,1),('links:navigation:page:node/91:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539008056,1),('links:navigation:page:node/91:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1538754804,1),('links:navigation:page:node/92:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539008766,1),('links:navigation:page:node/92:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539009971,1),('links:navigation:page:node/93:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1538795814,1),('links:navigation:page:node/93:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539009993,1),('links:navigation:page:node/94:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539009084,1),('links:navigation:page:node/94:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539010032,1),('links:navigation:page:node/95:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539009106,1),('links:navigation:page:node/95:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539010064,1),('links:navigation:page:node/96:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1539006680,1),('links:navigation:page:node/98:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:5;s:1:\"5\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:5;s:1:\"5\";}}',0,1538751382,1),('links:navigation:page:node/99/delete:en:0:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538794866,1),('links:navigation:page:node/add/article:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:3:{i:0;i:0;i:6;s:1:\"6\";i:219;s:3:\"219\";}s:12:\"active_trail\";a:3:{i:0;i:0;i:6;s:1:\"6\";i:219;s:3:\"219\";}}',0,1652163438,1),('links:navigation:page:node/add/page:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:3:{i:0;i:0;i:6;s:1:\"6\";i:220;s:3:\"220\";}s:12:\"active_trail\";a:3:{i:0;i:0;i:6;s:1:\"6\";i:220;s:3:\"220\";}}',0,1652167722,1),('links:navigation:page:node/add:en:0:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1542149786,1),('links:navigation:page:node/add:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:2:{i:0;i:0;i:6;s:1:\"6\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:6;s:1:\"6\";}}',0,1652163414,1),('links:navigation:page:node:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538751263,1),('links:navigation:page:node:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538751395,1),('links:navigation:page:photos/album/29:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538783477,1),('links:navigation:page:photos/album/29:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007162,1),('links:navigation:page:photos/image/18:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006907,1),('links:navigation:page:photos/image/18:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007420,1),('links:navigation:page:photos/image/19:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538964691,1),('links:navigation:page:photos/image/19:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007433,1),('links:navigation:page:photos/image/20:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006939,1),('links:navigation:page:photos/image/20:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007444,1),('links:navigation:page:photos/image/21:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006949,1),('links:navigation:page:photos/image/21:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007453,1),('links:navigation:page:photos/image/22:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006973,1),('links:navigation:page:photos/image/22:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007466,1),('links:navigation:page:photos/image/24:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006986,1),('links:navigation:page:photos/image/24:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007491,1),('links:navigation:page:photos/image/25:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539608236,1),('links:navigation:page:photos/image/25:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007502,1),('links:navigation:page:photos/image/26:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007004,1),('links:navigation:page:photos/image/26:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007515,1),('links:navigation:page:photos/image/27:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007019,1),('links:navigation:page:photos/image/27:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007521,1),('links:navigation:page:photos/image/28:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007027,1),('links:navigation:page:photos/image/28:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538805923,1),('links:navigation:page:photos/image/29:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007061,1),('links:navigation:page:photos/image/29:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007706,1),('links:navigation:page:photos/image/36:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007070,1),('links:navigation:page:photos/image/36:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007717,1),('links:navigation:page:photos/image/37:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007080,1),('links:navigation:page:photos/image/37:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007725,1),('links:navigation:page:photos/image/38:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007089,1),('links:navigation:page:photos/image/38:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007762,1),('links:navigation:page:photos/image/39:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538873493,1),('links:navigation:page:photos/image/39:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007772,1),('links:navigation:page:photos/image/:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539407107,1),('links:navigation:page:photos/zoom/18:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538944773,1),('links:navigation:page:photos/zoom/18:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539010098,1),('links:navigation:page:photos/zoom/19:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539009131,1),('links:navigation:page:photos/zoom/19:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538827167,1),('links:navigation:page:photos/zoom/20:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539009461,1),('links:navigation:page:photos/zoom/20:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538891309,1),('links:navigation:page:photos/zoom/21:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539009473,1),('links:navigation:page:photos/zoom/21:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538921658,1),('links:navigation:page:photos/zoom/22:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538786045,1),('links:navigation:page:photos/zoom/22:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538757252,1),('links:navigation:page:photos/zoom/24:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539009512,1),('links:navigation:page:photos/zoom/24:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539010273,1),('links:navigation:page:photos/zoom/25:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538988000,1),('links:navigation:page:photos/zoom/25:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539010297,1),('links:navigation:page:photos/zoom/26:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538988012,1),('links:navigation:page:photos/zoom/26:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539010318,1),('links:navigation:page:photos/zoom/27:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539009615,1),('links:navigation:page:photos/zoom/27:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538958215,1),('links:navigation:page:photos/zoom/28:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538980054,1),('links:navigation:page:photos/zoom/28:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539010361,1),('links:navigation:page:photos/zoom/29:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539001815,1),('links:navigation:page:photos/zoom/29:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538902480,1),('links:navigation:page:photos/zoom/36:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538796799,1),('links:navigation:page:photos/zoom/36:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539010408,1),('links:navigation:page:photos/zoom/37:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539009685,1),('links:navigation:page:photos/zoom/37:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539010434,1),('links:navigation:page:photos/zoom/38:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538960937,1),('links:navigation:page:photos/zoom/38:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539010467,1),('links:navigation:page:photos/zoom/39:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538974442,1),('links:navigation:page:photos/zoom/39:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538795204,1),('links:navigation:page:sites/default/files/styles/large:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1544031571,1),('links:navigation:page:sites/default/files/styles/large:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1541000795,1),('links:navigation:page:sites/default/files/styles/medium:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1550656838,1),('links:navigation:page:sites/default/files/styles/medium:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1556776917,1),('links:navigation:page:sites/default/files/styles/thumbnail:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539531937,1),('links:navigation:page:sites/default/files/styles/thumbnail:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1548343011,1),('links:navigation:page:user/1/edit:en:1:0:trail','a:5:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:17:\"only_active_trail\";b:1;s:8:\"expanded\";a:3:{i:0;i:0;i:17;s:2:\"17\";i:40;s:2:\"40\";}s:12:\"active_trail\";a:3:{i:0;i:0;i:17;s:2:\"17\";i:40;s:2:\"40\";}}',0,1652162414,1),('links:navigation:page:user/1:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:17;s:2:\"17\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:17;s:2:\"17\";}}',0,1538751620,1),('links:navigation:page:user/login:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538751178,1),('links:navigation:page:user/login:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1553105063,1),('links:navigation:page:user/password:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538750977,1),('links:navigation:page:user/password:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006747,1),('links:navigation:page:user/register:en:0:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538794854,1),('links:navigation:page:user:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538753160,1),('links:navigation:page:user:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007784,1),('links:navigation:tree-data:en:04e8280bf0e0325b1bbba5a8cf4726ba28349ad8f0c9932e3125b12e01b3e2f9','a:2:{s:4:\"tree\";a:23:{i:3;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"3\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:9:\"comment/%\";s:11:\"router_path\";s:9:\"comment/%\";s:10:\"link_title\";s:17:\"Comment permalink\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"3\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:1;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"access comments\";}\";s:13:\"page_callback\";s:17:\"comment_permalink\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:9:\"comment/%\";s:5:\"title\";s:17:\"Comment permalink\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:4;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"4\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"filter/tips\";s:11:\"router_path\";s:11:\"filter/tips\";s:10:\"link_title\";s:12:\"Compose tips\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-43\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"4\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"filter_tips_long\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"filter/tips\";s:5:\"title\";s:12:\"Compose tips\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:5;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"5\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/%\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:0:\"\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:6;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"6\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/add\";s:11:\"router_path\";s:8:\"node/add\";s:10:\"link_title\";s:11:\"Add content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-44\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:18:\"i18n_node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:17;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"17\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"user/%\";s:11:\"router_path\";s:6:\"user/%\";s:10:\"link_title\";s:10:\"My account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_view_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"user_view_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:10:\"My account\";s:14:\"title_callback\";s:15:\"user_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:23;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"23\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"comment/reply/%\";s:11:\"router_path\";s:15:\"comment/reply/%\";s:10:\"link_title\";s:15:\"Add new comment\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"23\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:2;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:2;}\";s:13:\"page_callback\";s:13:\"comment_reply\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"comment/reply/%\";s:5:\"title\";s:15:\"Add new comment\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:27;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"27\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"taxonomy/term/%\";s:11:\"router_path\";s:15:\"taxonomy/term/%\";s:10:\"link_title\";s:13:\"Taxonomy term\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"27\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:36:\"a:1:{i:2;s:18:\"taxonomy_term_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:23:\"i18n_taxonomy_term_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"taxonomy/term/%\";s:5:\"title\";s:13:\"Taxonomy term\";s:14:\"title_callback\";s:23:\"i18n_taxonomy_term_name\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:187;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"187\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"search\";s:11:\"router_path\";s:6:\"search\";s:10:\"link_title\";s:6:\"Search\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"187\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:383;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"383\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/3\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:12:\"Cooperations\";s:7:\"options\";s:76:\"a:2:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-39\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"383\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:430;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"430\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/13\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2011/12 - PNRA XXVII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"430\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:431;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"431\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/14\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2013/14 - PNRA XXIX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-46\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"431\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:432;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"432\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/15\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:13:\"Pubblications\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-41\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"432\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:441;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"441\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/node\";s:11:\"router_path\";s:8:\"map/node\";s:10:\"link_title\";s:14:\"Node locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-42\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"441\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view node map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_node_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/node\";s:5:\"title\";s:14:\"Node locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:442;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"442\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/user\";s:11:\"router_path\";s:8:\"map/user\";s:10:\"link_title\";s:14:\"User locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-38\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"442\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view user map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/user\";s:5:\"title\";s:14:\"User locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:506;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"506\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/33\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-40\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"506\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:531;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"531\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/45\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:18:\"2014/15 - PNRA XXX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-47\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"531\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:606;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"606\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:10:\"chart/page\";s:11:\"router_path\";s:10:\"chart/page\";s:10:\"link_title\";s:18:\"Forecast as charts\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-36\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"606\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"chartModule_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"chart/page\";s:5:\"title\";s:18:\"Forecast as charts\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:608;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"608\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/82\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:4:\"Tide\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-34\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"608\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:614;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"614\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"contact\";s:11:\"router_path\";s:7:\"contact\";s:10:\"link_title\";s:7:\"Contact\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-37\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"614\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"access site-wide contact form\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:35:\"a:1:{i:0;s:17:\"contact_site_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:7:\"contact\";s:5:\"title\";s:7:\"Contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:615;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"615\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"forum\";s:11:\"router_path\";s:5:\"forum\";s:10:\"link_title\";s:6:\"Forums\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-35\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"615\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:10:\"forum_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"forum\";s:5:\"title\";s:6:\"Forums\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:790;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"790\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/124\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2015/16 - PNRA XXXI\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-48\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"790\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:791;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"791\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/129\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2016/17 - PNRA XXXII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-49\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"791\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:997;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"997\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/130\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:21:\"2017/18 - PNRA XXXIII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"997\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:10:{i:3;a:1:{i:383;R:380;}i:13;a:1:{i:430;R:428;}i:14;a:1:{i:431;R:476;}i:15;a:1:{i:432;R:524;}i:33;a:1:{i:506;R:666;}i:45;a:1:{i:531;R:714;}i:82;a:1:{i:608;R:809;}i:124;a:1:{i:790;R:951;}i:129;a:1:{i:791;R:999;}i:130;a:1:{i:997;R:1047;}}}',0,1539005980,1),('links:navigation:tree-data:en:47074ca1ce3daa952957dce979557a27dd0c7f0a7d63155b6446c289bad6988e','a:2:{s:4:\"tree\";a:23:{i:3;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"3\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:9:\"comment/%\";s:11:\"router_path\";s:9:\"comment/%\";s:10:\"link_title\";s:17:\"Comment permalink\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"3\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:1;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"access comments\";}\";s:13:\"page_callback\";s:17:\"comment_permalink\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:9:\"comment/%\";s:5:\"title\";s:17:\"Comment permalink\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:4;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"4\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"filter/tips\";s:11:\"router_path\";s:11:\"filter/tips\";s:10:\"link_title\";s:12:\"Compose tips\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-43\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"4\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"filter_tips_long\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"filter/tips\";s:5:\"title\";s:12:\"Compose tips\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:5;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"5\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/%\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:0:\"\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:6;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"6\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/add\";s:11:\"router_path\";s:8:\"node/add\";s:10:\"link_title\";s:11:\"Add content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-44\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:18:\"i18n_node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:17;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"17\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"user/%\";s:11:\"router_path\";s:6:\"user/%\";s:10:\"link_title\";s:10:\"My account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_view_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"user_view_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:10:\"My account\";s:14:\"title_callback\";s:15:\"user_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:23;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"23\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"comment/reply/%\";s:11:\"router_path\";s:15:\"comment/reply/%\";s:10:\"link_title\";s:15:\"Add new comment\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"23\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:2;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:2;}\";s:13:\"page_callback\";s:13:\"comment_reply\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"comment/reply/%\";s:5:\"title\";s:15:\"Add new comment\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:27;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"27\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"taxonomy/term/%\";s:11:\"router_path\";s:15:\"taxonomy/term/%\";s:10:\"link_title\";s:13:\"Taxonomy term\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"27\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:36:\"a:1:{i:2;s:18:\"taxonomy_term_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:23:\"i18n_taxonomy_term_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"taxonomy/term/%\";s:5:\"title\";s:13:\"Taxonomy term\";s:14:\"title_callback\";s:23:\"i18n_taxonomy_term_name\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:187;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"187\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"search\";s:11:\"router_path\";s:6:\"search\";s:10:\"link_title\";s:6:\"Search\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"187\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:383;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"383\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/3\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:12:\"Cooperations\";s:7:\"options\";s:76:\"a:2:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-39\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"383\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:430;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"430\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/13\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2011/12 - PNRA XXVII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"430\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:431;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"431\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/14\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2013/14 - PNRA XXIX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-46\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"431\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:432;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"432\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/15\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:13:\"Pubblications\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-41\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"432\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:441;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"441\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/node\";s:11:\"router_path\";s:8:\"map/node\";s:10:\"link_title\";s:14:\"Node locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-42\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"441\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view node map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_node_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/node\";s:5:\"title\";s:14:\"Node locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:442;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"442\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/user\";s:11:\"router_path\";s:8:\"map/user\";s:10:\"link_title\";s:14:\"User locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-38\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"442\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view user map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/user\";s:5:\"title\";s:14:\"User locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:506;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"506\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/33\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-40\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"506\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:531;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"531\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/45\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:18:\"2014/15 - PNRA XXX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-47\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"531\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:606;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"606\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:10:\"chart/page\";s:11:\"router_path\";s:10:\"chart/page\";s:10:\"link_title\";s:18:\"Forecast as charts\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-36\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"606\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"chartModule_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"chart/page\";s:5:\"title\";s:18:\"Forecast as charts\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:608;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"608\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/82\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:4:\"Tide\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-34\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"608\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:614;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"614\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"contact\";s:11:\"router_path\";s:7:\"contact\";s:10:\"link_title\";s:7:\"Contact\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-37\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"614\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"access site-wide contact form\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:35:\"a:1:{i:0;s:17:\"contact_site_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:7:\"contact\";s:5:\"title\";s:7:\"Contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:615;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"615\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"forum\";s:11:\"router_path\";s:5:\"forum\";s:10:\"link_title\";s:6:\"Forums\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-35\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"615\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:10:\"forum_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"forum\";s:5:\"title\";s:6:\"Forums\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:790;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"790\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/124\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2015/16 - PNRA XXXI\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-48\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"790\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:791;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"791\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/129\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2016/17 - PNRA XXXII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-49\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"791\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:997;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"997\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/130\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:21:\"2017/18 - PNRA XXXIII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"997\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:10:{i:3;a:1:{i:383;R:380;}i:13;a:1:{i:430;R:428;}i:14;a:1:{i:431;R:476;}i:15;a:1:{i:432;R:524;}i:33;a:1:{i:506;R:666;}i:45;a:1:{i:531;R:714;}i:82;a:1:{i:608;R:809;}i:124;a:1:{i:790;R:951;}i:129;a:1:{i:791;R:999;}i:130;a:1:{i:997;R:1047;}}}',0,1539005969,1),('links:navigation:tree-data:en:4ec38d33408a4cceea3c2b7910018f6b6ad996b29549ac2a527c5de2ffca6144','a:2:{s:4:\"tree\";a:23:{i:3;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"3\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:9:\"comment/%\";s:11:\"router_path\";s:9:\"comment/%\";s:10:\"link_title\";s:17:\"Comment permalink\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"3\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:1;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"access comments\";}\";s:13:\"page_callback\";s:17:\"comment_permalink\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:9:\"comment/%\";s:5:\"title\";s:17:\"Comment permalink\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:4;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"4\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"filter/tips\";s:11:\"router_path\";s:11:\"filter/tips\";s:10:\"link_title\";s:12:\"Compose tips\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-43\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"4\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"filter_tips_long\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"filter/tips\";s:5:\"title\";s:12:\"Compose tips\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:5;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"5\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/%\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:0:\"\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:6;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"6\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/add\";s:11:\"router_path\";s:8:\"node/add\";s:10:\"link_title\";s:11:\"Add content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-44\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:18:\"i18n_node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:10:{i:219;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"219\";s:4:\"plid\";s:1:\"6\";s:9:\"link_path\";s:16:\"node/add/article\";s:11:\"router_path\";s:16:\"node/add/article\";s:10:\"link_title\";s:7:\"Article\";s:7:\"options\";s:139:\"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.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-49\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:3:\"219\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:41:\"a:2:{i:0;s:6:\"create\";i:1;s:7:\"article\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:24:\"a:1:{i:0;s:7:\"article\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"node/add/article\";s:5:\"title\";s:7:\"Article\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:42:\"a:2:{i:0;s:7:\"article\";i:1;s:7:\"Article\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:89:\"Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:0:{}}i:220;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"220\";s:4:\"plid\";s:1:\"6\";s:9:\"link_path\";s:13:\"node/add/page\";s:11:\"router_path\";s:13:\"node/add/page\";s:10:\"link_title\";s:10:\"Basic page\";s:7:\"options\";s:127:\"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.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-48\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:3:\"220\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:38:\"a:2:{i:0;s:6:\"create\";i:1;s:4:\"page\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"page\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"node/add/page\";s:5:\"title\";s:10:\"Basic page\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:43:\"a:2:{i:0;s:4:\"page\";i:1;s:10:\"Basic page\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:77:\"Use <em>basic pages</em> for your static content, such as an \'About us\' page.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:395;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"395\";s:4:\"plid\";s:1:\"6\";s:9:\"link_path\";s:15:\"node/add/photos\";s:11:\"router_path\";s:15:\"node/add/photos\";s:10:\"link_title\";s:5:\"Album\";s:7:\"options\";s:74:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:24:\"Create new photo albums.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:3:\"395\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:40:\"a:2:{i:0;s:6:\"create\";i:1;s:6:\"photos\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:23:\"a:1:{i:0;s:6:\"photos\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"node/add/photos\";s:5:\"title\";s:5:\"Album\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:39:\"a:2:{i:0;s:6:\"photos\";i:1;s:5:\"Album\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:24:\"Create new photo albums.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:484;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"484\";s:4:\"plid\";s:1:\"6\";s:9:\"link_path\";s:35:\"node/add/openlayers-example-content\";s:11:\"router_path\";s:35:\"node/add/openlayers-example-content\";s:10:\"link_title\";s:26:\"OpenLayers Example Content\";s:7:\"options\";s:108:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:58:\"This is an example content type for the OpenLayers module.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-44\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:3:\"484\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:61:\"a:2:{i:0;s:6:\"create\";i:1;s:26:\"openlayers_example_content\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:44:\"a:1:{i:0;s:26:\"openlayers_example_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:35:\"node/add/openlayers-example-content\";s:5:\"title\";s:26:\"OpenLayers Example Content\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:82:\"a:2:{i:0;s:26:\"openlayers_example_content\";i:1;s:26:\"OpenLayers Example Content\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:58:\"This is an example content type for the OpenLayers module.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:498;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"498\";s:4:\"plid\";s:1:\"6\";s:9:\"link_path\";s:16:\"node/add/mooring\";s:11:\"router_path\";s:16:\"node/add/mooring\";s:10:\"link_title\";s:7:\"Mooring\";s:7:\"options\";s:58:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"A mooring\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:3:\"498\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:41:\"a:2:{i:0;s:6:\"create\";i:1;s:7:\"mooring\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:24:\"a:1:{i:0;s:7:\"mooring\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"node/add/mooring\";s:5:\"title\";s:7:\"Mooring\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:42:\"a:2:{i:0;s:7:\"mooring\";i:1;s:7:\"Mooring\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:9:\"A mooring\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:499;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"499\";s:4:\"plid\";s:1:\"6\";s:9:\"link_path\";s:14:\"node/add/photo\";s:11:\"router_path\";s:8:\"node/add\";s:10:\"link_title\";s:19:\"Photo Moorings 2014\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-41\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:3:\"499\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:18:\"i18n_node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:500;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"500\";s:4:\"plid\";s:1:\"6\";s:9:\"link_path\";s:28:\"node/add/photo-moorings-2012\";s:11:\"router_path\";s:28:\"node/add/photo-moorings-2012\";s:10:\"link_title\";s:19:\"Photo Moorings 2012\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-42\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:3:\"500\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:54:\"a:2:{i:0;s:6:\"create\";i:1;s:19:\"photo_moorings_2012\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:37:\"a:1:{i:0;s:19:\"photo_moorings_2012\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:28:\"node/add/photo-moorings-2012\";s:5:\"title\";s:19:\"Photo Moorings 2012\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:68:\"a:2:{i:0;s:19:\"photo_moorings_2012\";i:1;s:19:\"Photo Moorings 2012\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:522;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"522\";s:4:\"plid\";s:1:\"6\";s:9:\"link_path\";s:28:\"node/add/photo-moorings-2014\";s:11:\"router_path\";s:28:\"node/add/photo-moorings-2014\";s:10:\"link_title\";s:19:\"Photo Moorings 2014\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-40\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:3:\"522\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:54:\"a:2:{i:0;s:6:\"create\";i:1;s:19:\"photo_moorings_2014\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:37:\"a:1:{i:0;s:19:\"photo_moorings_2014\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:28:\"node/add/photo-moorings-2014\";s:5:\"title\";s:19:\"Photo Moorings 2014\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:68:\"a:2:{i:0;s:19:\"photo_moorings_2014\";i:1;s:19:\"Photo Moorings 2014\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:619;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"619\";s:4:\"plid\";s:1:\"6\";s:9:\"link_path\";s:14:\"node/add/forum\";s:11:\"router_path\";s:14:\"node/add/forum\";s:10:\"link_title\";s:11:\"Forum topic\";s:7:\"options\";s:119:\"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.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-46\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:3:\"619\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:39:\"a:2:{i:0;s:6:\"create\";i:1;s:5:\"forum\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:22:\"a:1:{i:0;s:5:\"forum\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:14:\"node/add/forum\";s:5:\"title\";s:11:\"Forum topic\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:45:\"a:2:{i:0;s:5:\"forum\";i:1;s:11:\"Forum topic\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:69:\"A <em>forum topic</em> starts a new discussion thread within a forum.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:708;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"708\";s:4:\"plid\";s:1:\"6\";s:9:\"link_path\";s:28:\"node/add/photo-moorings-2010\";s:11:\"router_path\";s:28:\"node/add/photo-moorings-2010\";s:10:\"link_title\";s:19:\"Photo Moorings 2010\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-43\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:3:\"708\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:54:\"a:2:{i:0;s:6:\"create\";i:1;s:19:\"photo_moorings_2010\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:37:\"a:1:{i:0;s:19:\"photo_moorings_2010\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:28:\"node/add/photo-moorings-2010\";s:5:\"title\";s:19:\"Photo Moorings 2010\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:68:\"a:2:{i:0;s:19:\"photo_moorings_2010\";i:1;s:19:\"Photo Moorings 2010\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:17;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"17\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"user/%\";s:11:\"router_path\";s:6:\"user/%\";s:10:\"link_title\";s:10:\"My account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_view_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"user_view_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:10:\"My account\";s:14:\"title_callback\";s:15:\"user_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:23;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"23\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"comment/reply/%\";s:11:\"router_path\";s:15:\"comment/reply/%\";s:10:\"link_title\";s:15:\"Add new comment\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"23\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:2;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:2;}\";s:13:\"page_callback\";s:13:\"comment_reply\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"comment/reply/%\";s:5:\"title\";s:15:\"Add new comment\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:27;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"27\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"taxonomy/term/%\";s:11:\"router_path\";s:15:\"taxonomy/term/%\";s:10:\"link_title\";s:13:\"Taxonomy term\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"27\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:36:\"a:1:{i:2;s:18:\"taxonomy_term_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:23:\"i18n_taxonomy_term_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"taxonomy/term/%\";s:5:\"title\";s:13:\"Taxonomy term\";s:14:\"title_callback\";s:23:\"i18n_taxonomy_term_name\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:187;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"187\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"search\";s:11:\"router_path\";s:6:\"search\";s:10:\"link_title\";s:6:\"Search\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"187\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:383;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"383\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/3\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:12:\"Cooperations\";s:7:\"options\";s:76:\"a:2:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-39\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"383\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:430;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"430\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/13\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2011/12 - PNRA XXVII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"430\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:431;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"431\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/14\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2013/14 - PNRA XXIX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-46\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"431\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:432;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"432\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/15\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:13:\"Pubblications\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-41\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"432\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:441;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"441\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/node\";s:11:\"router_path\";s:8:\"map/node\";s:10:\"link_title\";s:14:\"Node locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-42\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"441\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view node map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_node_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/node\";s:5:\"title\";s:14:\"Node locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:442;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"442\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/user\";s:11:\"router_path\";s:8:\"map/user\";s:10:\"link_title\";s:14:\"User locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-38\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"442\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view user map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/user\";s:5:\"title\";s:14:\"User locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:506;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"506\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/33\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-40\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"506\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:531;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"531\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/45\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:18:\"2014/15 - PNRA XXX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-47\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"531\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:606;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"606\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:10:\"chart/page\";s:11:\"router_path\";s:10:\"chart/page\";s:10:\"link_title\";s:18:\"Forecast as charts\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-36\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"606\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"chartModule_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"chart/page\";s:5:\"title\";s:18:\"Forecast as charts\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:608;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"608\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/82\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:4:\"Tide\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-34\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"608\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:614;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"614\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"contact\";s:11:\"router_path\";s:7:\"contact\";s:10:\"link_title\";s:7:\"Contact\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-37\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"614\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"access site-wide contact form\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:35:\"a:1:{i:0;s:17:\"contact_site_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:7:\"contact\";s:5:\"title\";s:7:\"Contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:615;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"615\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"forum\";s:11:\"router_path\";s:5:\"forum\";s:10:\"link_title\";s:6:\"Forums\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-35\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"615\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:10:\"forum_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"forum\";s:5:\"title\";s:6:\"Forums\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:790;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"790\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/124\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2015/16 - PNRA XXXI\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-48\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"790\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:791;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"791\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/129\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2016/17 - PNRA XXXII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-49\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"791\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:997;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"997\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/130\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:21:\"2017/18 - PNRA XXXIII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"997\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:10:{i:3;a:1:{i:383;R:850;}i:13;a:1:{i:430;R:898;}i:14;a:1:{i:431;R:946;}i:15;a:1:{i:432;R:994;}i:33;a:1:{i:506;R:1136;}i:45;a:1:{i:531;R:1184;}i:82;a:1:{i:608;R:1279;}i:124;a:1:{i:790;R:1421;}i:129;a:1:{i:791;R:1469;}i:130;a:1:{i:997;R:1517;}}}',0,1652163438,1),('links:navigation:tree-data:en:4ecac566f91cec25a5ef81b443669375e6aa5b82b5d7c84a8685211209d3ede5','a:2:{s:4:\"tree\";a:23:{i:3;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"3\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:9:\"comment/%\";s:11:\"router_path\";s:9:\"comment/%\";s:10:\"link_title\";s:17:\"Comment permalink\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"3\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:1;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"access comments\";}\";s:13:\"page_callback\";s:17:\"comment_permalink\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:9:\"comment/%\";s:5:\"title\";s:17:\"Comment permalink\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:4;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"4\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"filter/tips\";s:11:\"router_path\";s:11:\"filter/tips\";s:10:\"link_title\";s:12:\"Compose tips\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-43\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"4\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"filter_tips_long\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"filter/tips\";s:5:\"title\";s:12:\"Compose tips\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:5;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"5\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/%\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:0:\"\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:6;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"6\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/add\";s:11:\"router_path\";s:8:\"node/add\";s:10:\"link_title\";s:11:\"Add content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-44\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:18:\"i18n_node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:17;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"17\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"user/%\";s:11:\"router_path\";s:6:\"user/%\";s:10:\"link_title\";s:10:\"My account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_view_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"user_view_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:10:\"My account\";s:14:\"title_callback\";s:15:\"user_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:23;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"23\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"comment/reply/%\";s:11:\"router_path\";s:15:\"comment/reply/%\";s:10:\"link_title\";s:15:\"Add new comment\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"23\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:2;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:2;}\";s:13:\"page_callback\";s:13:\"comment_reply\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"comment/reply/%\";s:5:\"title\";s:15:\"Add new comment\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:27;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"27\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"taxonomy/term/%\";s:11:\"router_path\";s:15:\"taxonomy/term/%\";s:10:\"link_title\";s:13:\"Taxonomy term\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"27\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:36:\"a:1:{i:2;s:18:\"taxonomy_term_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:23:\"i18n_taxonomy_term_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"taxonomy/term/%\";s:5:\"title\";s:13:\"Taxonomy term\";s:14:\"title_callback\";s:23:\"i18n_taxonomy_term_name\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:187;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"187\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"search\";s:11:\"router_path\";s:6:\"search\";s:10:\"link_title\";s:6:\"Search\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"187\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:383;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"383\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/3\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:12:\"Cooperations\";s:7:\"options\";s:76:\"a:2:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-39\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"383\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:430;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"430\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/13\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2011/12 - PNRA XXVII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"430\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:431;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"431\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/14\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2013/14 - PNRA XXIX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-46\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"431\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:432;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"432\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/15\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:13:\"Pubblications\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-41\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"432\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:441;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"441\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/node\";s:11:\"router_path\";s:8:\"map/node\";s:10:\"link_title\";s:14:\"Node locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-42\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"441\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view node map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_node_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/node\";s:5:\"title\";s:14:\"Node locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:442;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"442\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/user\";s:11:\"router_path\";s:8:\"map/user\";s:10:\"link_title\";s:14:\"User locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-38\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"442\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view user map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/user\";s:5:\"title\";s:14:\"User locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:506;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"506\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/33\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-40\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"506\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:531;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"531\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/45\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:18:\"2014/15 - PNRA XXX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-47\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"531\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:606;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"606\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:10:\"chart/page\";s:11:\"router_path\";s:10:\"chart/page\";s:10:\"link_title\";s:18:\"Forecast as charts\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-36\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"606\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"chartModule_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"chart/page\";s:5:\"title\";s:18:\"Forecast as charts\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:608;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"608\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/82\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:4:\"Tide\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-34\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"608\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:614;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"614\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"contact\";s:11:\"router_path\";s:7:\"contact\";s:10:\"link_title\";s:7:\"Contact\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-37\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"614\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"access site-wide contact form\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:35:\"a:1:{i:0;s:17:\"contact_site_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:7:\"contact\";s:5:\"title\";s:7:\"Contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:615;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"615\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"forum\";s:11:\"router_path\";s:5:\"forum\";s:10:\"link_title\";s:6:\"Forums\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-35\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"615\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:10:\"forum_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"forum\";s:5:\"title\";s:6:\"Forums\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:790;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"790\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/124\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2015/16 - PNRA XXXI\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-48\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"790\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:791;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"791\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/129\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2016/17 - PNRA XXXII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-49\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"791\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:997;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"997\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/130\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:21:\"2017/18 - PNRA XXXIII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"997\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:10:{i:3;a:1:{i:383;R:380;}i:13;a:1:{i:430;R:428;}i:14;a:1:{i:431;R:476;}i:15;a:1:{i:432;R:524;}i:33;a:1:{i:506;R:666;}i:45;a:1:{i:531;R:714;}i:82;a:1:{i:608;R:809;}i:124;a:1:{i:790;R:951;}i:129;a:1:{i:791;R:999;}i:130;a:1:{i:997;R:1047;}}}',0,1539005959,1),('links:navigation:tree-data:en:5352449fb4f9073dc11724fb67a9ada9244c144c37cc427c879f29bfce5d9ba3','a:2:{s:4:\"tree\";a:23:{i:3;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"3\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:9:\"comment/%\";s:11:\"router_path\";s:9:\"comment/%\";s:10:\"link_title\";s:17:\"Comment permalink\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"3\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:1;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"access comments\";}\";s:13:\"page_callback\";s:17:\"comment_permalink\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:9:\"comment/%\";s:5:\"title\";s:17:\"Comment permalink\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:4;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"4\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"filter/tips\";s:11:\"router_path\";s:11:\"filter/tips\";s:10:\"link_title\";s:12:\"Compose tips\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-43\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"4\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"filter_tips_long\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"filter/tips\";s:5:\"title\";s:12:\"Compose tips\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:5;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"5\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/%\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:0:\"\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:6;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"6\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/add\";s:11:\"router_path\";s:8:\"node/add\";s:10:\"link_title\";s:11:\"Add content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-44\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:18:\"i18n_node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:17;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"17\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"user/%\";s:11:\"router_path\";s:6:\"user/%\";s:10:\"link_title\";s:10:\"My account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_view_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"user_view_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:10:\"My account\";s:14:\"title_callback\";s:15:\"user_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:23;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"23\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"comment/reply/%\";s:11:\"router_path\";s:15:\"comment/reply/%\";s:10:\"link_title\";s:15:\"Add new comment\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"23\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:2;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:2;}\";s:13:\"page_callback\";s:13:\"comment_reply\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"comment/reply/%\";s:5:\"title\";s:15:\"Add new comment\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:27;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"27\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"taxonomy/term/%\";s:11:\"router_path\";s:15:\"taxonomy/term/%\";s:10:\"link_title\";s:13:\"Taxonomy term\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"27\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:36:\"a:1:{i:2;s:18:\"taxonomy_term_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:23:\"i18n_taxonomy_term_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"taxonomy/term/%\";s:5:\"title\";s:13:\"Taxonomy term\";s:14:\"title_callback\";s:23:\"i18n_taxonomy_term_name\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:187;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"187\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"search\";s:11:\"router_path\";s:6:\"search\";s:10:\"link_title\";s:6:\"Search\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"187\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:383;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"383\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/3\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:12:\"Cooperations\";s:7:\"options\";s:76:\"a:2:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-39\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"383\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:430;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"430\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/13\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2011/12 - PNRA XXVII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"430\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:431;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"431\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/14\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2013/14 - PNRA XXIX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-46\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"431\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:432;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"432\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/15\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:13:\"Pubblications\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-41\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"432\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:441;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"441\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/node\";s:11:\"router_path\";s:8:\"map/node\";s:10:\"link_title\";s:14:\"Node locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-42\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"441\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view node map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_node_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/node\";s:5:\"title\";s:14:\"Node locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:442;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"442\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/user\";s:11:\"router_path\";s:8:\"map/user\";s:10:\"link_title\";s:14:\"User locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-38\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"442\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view user map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/user\";s:5:\"title\";s:14:\"User locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:506;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"506\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/33\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-40\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"506\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:531;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"531\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/45\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:18:\"2014/15 - PNRA XXX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-47\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"531\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:606;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"606\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:10:\"chart/page\";s:11:\"router_path\";s:10:\"chart/page\";s:10:\"link_title\";s:18:\"Forecast as charts\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-36\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"606\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"chartModule_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"chart/page\";s:5:\"title\";s:18:\"Forecast as charts\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:608;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"608\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/82\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:4:\"Tide\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-34\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"608\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:614;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"614\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"contact\";s:11:\"router_path\";s:7:\"contact\";s:10:\"link_title\";s:7:\"Contact\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-37\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"614\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"access site-wide contact form\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:35:\"a:1:{i:0;s:17:\"contact_site_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:7:\"contact\";s:5:\"title\";s:7:\"Contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:615;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"615\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"forum\";s:11:\"router_path\";s:5:\"forum\";s:10:\"link_title\";s:6:\"Forums\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-35\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"615\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:10:\"forum_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"forum\";s:5:\"title\";s:6:\"Forums\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:790;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"790\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/124\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2015/16 - PNRA XXXI\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-48\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"790\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:791;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"791\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/129\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2016/17 - PNRA XXXII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-49\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"791\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:997;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"997\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/130\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:21:\"2017/18 - PNRA XXXIII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"997\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:10:{i:3;a:1:{i:383;R:380;}i:13;a:1:{i:430;R:428;}i:14;a:1:{i:431;R:476;}i:15;a:1:{i:432;R:524;}i:33;a:1:{i:506;R:666;}i:45;a:1:{i:531;R:714;}i:82;a:1:{i:608;R:809;}i:124;a:1:{i:790;R:951;}i:129;a:1:{i:791;R:999;}i:130;a:1:{i:997;R:1047;}}}',0,1539133215,1);
INSERT INTO `cache_menu` VALUES ('links:navigation:tree-data:en:53cc1480c5f012a14bc7fad5e581cd734559c08a8a8ead315244fba4ee858ec1','a:2:{s:4:\"tree\";a:23:{i:3;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"3\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:9:\"comment/%\";s:11:\"router_path\";s:9:\"comment/%\";s:10:\"link_title\";s:17:\"Comment permalink\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"3\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:1;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"access comments\";}\";s:13:\"page_callback\";s:17:\"comment_permalink\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:9:\"comment/%\";s:5:\"title\";s:17:\"Comment permalink\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:4;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"4\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"filter/tips\";s:11:\"router_path\";s:11:\"filter/tips\";s:10:\"link_title\";s:12:\"Compose tips\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-43\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"4\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"filter_tips_long\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"filter/tips\";s:5:\"title\";s:12:\"Compose tips\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:5;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"5\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/%\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:0:\"\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:6;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"6\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/add\";s:11:\"router_path\";s:8:\"node/add\";s:10:\"link_title\";s:11:\"Add content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-44\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:18:\"i18n_node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:17;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"17\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"user/%\";s:11:\"router_path\";s:6:\"user/%\";s:10:\"link_title\";s:10:\"My account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_view_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"user_view_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:10:\"My account\";s:14:\"title_callback\";s:15:\"user_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:23;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"23\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"comment/reply/%\";s:11:\"router_path\";s:15:\"comment/reply/%\";s:10:\"link_title\";s:15:\"Add new comment\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"23\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:2;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:2;}\";s:13:\"page_callback\";s:13:\"comment_reply\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"comment/reply/%\";s:5:\"title\";s:15:\"Add new comment\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:27;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"27\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"taxonomy/term/%\";s:11:\"router_path\";s:15:\"taxonomy/term/%\";s:10:\"link_title\";s:13:\"Taxonomy term\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"27\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:36:\"a:1:{i:2;s:18:\"taxonomy_term_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:23:\"i18n_taxonomy_term_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"taxonomy/term/%\";s:5:\"title\";s:13:\"Taxonomy term\";s:14:\"title_callback\";s:23:\"i18n_taxonomy_term_name\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:187;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"187\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"search\";s:11:\"router_path\";s:6:\"search\";s:10:\"link_title\";s:6:\"Search\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"187\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:383;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"383\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/3\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:12:\"Cooperations\";s:7:\"options\";s:76:\"a:2:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-39\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"383\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:430;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"430\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/13\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2011/12 - PNRA XXVII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"430\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:431;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"431\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/14\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2013/14 - PNRA XXIX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-46\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"431\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:432;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"432\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/15\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:13:\"Pubblications\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-41\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"432\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:441;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"441\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/node\";s:11:\"router_path\";s:8:\"map/node\";s:10:\"link_title\";s:14:\"Node locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-42\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"441\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view node map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_node_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/node\";s:5:\"title\";s:14:\"Node locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:442;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"442\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/user\";s:11:\"router_path\";s:8:\"map/user\";s:10:\"link_title\";s:14:\"User locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-38\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"442\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view user map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/user\";s:5:\"title\";s:14:\"User locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:506;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"506\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/33\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-40\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"506\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:531;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"531\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/45\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:18:\"2014/15 - PNRA XXX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-47\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"531\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:606;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"606\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:10:\"chart/page\";s:11:\"router_path\";s:10:\"chart/page\";s:10:\"link_title\";s:18:\"Forecast as charts\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-36\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"606\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"chartModule_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"chart/page\";s:5:\"title\";s:18:\"Forecast as charts\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:608;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"608\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/82\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:4:\"Tide\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-34\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"608\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:614;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"614\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"contact\";s:11:\"router_path\";s:7:\"contact\";s:10:\"link_title\";s:7:\"Contact\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-37\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"614\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"access site-wide contact form\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:35:\"a:1:{i:0;s:17:\"contact_site_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:7:\"contact\";s:5:\"title\";s:7:\"Contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:615;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"615\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"forum\";s:11:\"router_path\";s:5:\"forum\";s:10:\"link_title\";s:6:\"Forums\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-35\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"615\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:10:\"forum_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"forum\";s:5:\"title\";s:6:\"Forums\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:790;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"790\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/124\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2015/16 - PNRA XXXI\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-48\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"790\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:791;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"791\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/129\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2016/17 - PNRA XXXII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-49\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"791\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:997;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"997\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/130\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:21:\"2017/18 - PNRA XXXIII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"997\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:10:{i:3;a:1:{i:383;R:380;}i:13;a:1:{i:430;R:428;}i:14;a:1:{i:431;R:476;}i:15;a:1:{i:432;R:524;}i:33;a:1:{i:506;R:666;}i:45;a:1:{i:531;R:714;}i:82;a:1:{i:608;R:809;}i:124;a:1:{i:790;R:951;}i:129;a:1:{i:791;R:999;}i:130;a:1:{i:997;R:1047;}}}',0,1539006189,1),('links:navigation:tree-data:en:76b4b09db3ba9c20fc23fded5fd5cf8121dbac8b2c5bbd3a0e1737c10d34195a','a:2:{s:4:\"tree\";a:23:{i:3;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"3\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:9:\"comment/%\";s:11:\"router_path\";s:9:\"comment/%\";s:10:\"link_title\";s:17:\"Comment permalink\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"3\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:1;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"access comments\";}\";s:13:\"page_callback\";s:17:\"comment_permalink\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:9:\"comment/%\";s:5:\"title\";s:17:\"Comment permalink\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:4;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"4\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"filter/tips\";s:11:\"router_path\";s:11:\"filter/tips\";s:10:\"link_title\";s:12:\"Compose tips\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-43\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"4\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"filter_tips_long\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"filter/tips\";s:5:\"title\";s:12:\"Compose tips\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:5;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"5\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/%\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:0:\"\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:6;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"6\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/add\";s:11:\"router_path\";s:8:\"node/add\";s:10:\"link_title\";s:11:\"Add content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-44\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:18:\"i18n_node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:17;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"17\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"user/%\";s:11:\"router_path\";s:6:\"user/%\";s:10:\"link_title\";s:10:\"My account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_view_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"user_view_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:10:\"My account\";s:14:\"title_callback\";s:15:\"user_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:6:{i:31;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"31\";s:4:\"plid\";s:2:\"17\";s:9:\"link_path\";s:13:\"user/%/cancel\";s:11:\"router_path\";s:13:\"user/%/cancel\";s:10:\"link_title\";s:14:\"Cancel account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:2:\"31\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:18:\"user_cancel_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:50:\"a:2:{i:0;s:24:\"user_cancel_confirm_form\";i:1;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"user/%/cancel\";s:5:\"title\";s:14:\"Cancel account\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:40;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"40\";s:4:\"plid\";s:2:\"17\";s:9:\"link_path\";s:11:\"user/%/edit\";s:11:\"router_path\";s:11:\"user/%/edit\";s:10:\"link_title\";s:4:\"Edit\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:2:\"40\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_edit_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:43:\"a:2:{i:0;s:17:\"user_profile_form\";i:1;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"user/%\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:4:\"Edit\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:1:{i:126;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"126\";s:4:\"plid\";s:2:\"40\";s:9:\"link_path\";s:19:\"user/%/edit/account\";s:11:\"router_path\";s:19:\"user/%/edit/account\";s:10:\"link_title\";s:7:\"Account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"3\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:2:\"40\";s:2:\"p3\";s:3:\"126\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:80:\"a:1:{i:1;a:1:{s:18:\"user_category_load\";a:2:{i:0;s:4:\"%map\";i:1;s:6:\"%index\";}}}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_edit_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:43:\"a:2:{i:0;s:17:\"user_profile_form\";i:1;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:11:\"user/%/edit\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:7:\"Account\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:63;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"63\";s:4:\"plid\";s:2:\"17\";s:9:\"link_path\";s:11:\"user/%/view\";s:11:\"router_path\";s:11:\"user/%/view\";s:10:\"link_title\";s:4:\"View\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:2:\"63\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_view_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"user_view_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"user/%\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:4:\"View\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:191;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"191\";s:4:\"plid\";s:2:\"17\";s:9:\"link_path\";s:16:\"user/%/shortcuts\";s:11:\"router_path\";s:16:\"user/%/shortcuts\";s:10:\"link_title\";s:9:\"Shortcuts\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:3:\"191\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:26:\"shortcut_set_switch_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:45:\"a:2:{i:0;s:19:\"shortcut_set_switch\";i:1;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"user/%\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:9:\"Shortcuts\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:418;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"418\";s:4:\"plid\";s:2:\"17\";s:9:\"link_path\";s:11:\"user/%/imce\";s:11:\"router_path\";s:11:\"user/%/imce\";s:10:\"link_title\";s:12:\"File browser\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:3:\"418\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:21:\"imce_user_page_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"imce_user_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"user/%\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:12:\"File browser\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:617;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"617\";s:4:\"plid\";s:2:\"17\";s:9:\"link_path\";s:14:\"user/%/contact\";s:11:\"router_path\";s:14:\"user/%/contact\";s:10:\"link_title\";s:7:\"Contact\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:3:\"617\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:28:\"_contact_personal_tab_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:47:\"a:2:{i:0;s:21:\"contact_personal_form\";i:1;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"user/%\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:7:\"Contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:23;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"23\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"comment/reply/%\";s:11:\"router_path\";s:15:\"comment/reply/%\";s:10:\"link_title\";s:15:\"Add new comment\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"23\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:2;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:2;}\";s:13:\"page_callback\";s:13:\"comment_reply\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"comment/reply/%\";s:5:\"title\";s:15:\"Add new comment\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:27;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"27\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"taxonomy/term/%\";s:11:\"router_path\";s:15:\"taxonomy/term/%\";s:10:\"link_title\";s:13:\"Taxonomy term\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"27\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:36:\"a:1:{i:2;s:18:\"taxonomy_term_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:23:\"i18n_taxonomy_term_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"taxonomy/term/%\";s:5:\"title\";s:13:\"Taxonomy term\";s:14:\"title_callback\";s:23:\"i18n_taxonomy_term_name\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:187;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"187\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"search\";s:11:\"router_path\";s:6:\"search\";s:10:\"link_title\";s:6:\"Search\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"187\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:383;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"383\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/3\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:12:\"Cooperations\";s:7:\"options\";s:76:\"a:2:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-39\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"383\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:430;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"430\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/13\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2011/12 - PNRA XXVII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"430\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:431;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"431\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/14\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2013/14 - PNRA XXIX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-46\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"431\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:432;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"432\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/15\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:13:\"Pubblications\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-41\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"432\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:441;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"441\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/node\";s:11:\"router_path\";s:8:\"map/node\";s:10:\"link_title\";s:14:\"Node locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-42\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"441\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view node map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_node_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/node\";s:5:\"title\";s:14:\"Node locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:442;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"442\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/user\";s:11:\"router_path\";s:8:\"map/user\";s:10:\"link_title\";s:14:\"User locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-38\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"442\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view user map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/user\";s:5:\"title\";s:14:\"User locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:506;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"506\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/33\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-40\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"506\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:531;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"531\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/45\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:18:\"2014/15 - PNRA XXX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-47\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"531\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:606;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"606\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:10:\"chart/page\";s:11:\"router_path\";s:10:\"chart/page\";s:10:\"link_title\";s:18:\"Forecast as charts\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-36\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"606\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"chartModule_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"chart/page\";s:5:\"title\";s:18:\"Forecast as charts\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:608;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"608\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/82\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:4:\"Tide\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-34\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"608\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:614;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"614\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"contact\";s:11:\"router_path\";s:7:\"contact\";s:10:\"link_title\";s:7:\"Contact\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-37\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"614\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"access site-wide contact form\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:35:\"a:1:{i:0;s:17:\"contact_site_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:7:\"contact\";s:5:\"title\";s:7:\"Contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:615;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"615\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"forum\";s:11:\"router_path\";s:5:\"forum\";s:10:\"link_title\";s:6:\"Forums\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-35\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"615\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:10:\"forum_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"forum\";s:5:\"title\";s:6:\"Forums\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:790;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"790\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/124\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2015/16 - PNRA XXXI\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-48\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"790\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:791;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"791\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/129\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2016/17 - PNRA XXXII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-49\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"791\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:997;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"997\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/130\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:21:\"2017/18 - PNRA XXXIII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"997\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:10:{i:3;a:1:{i:383;R:709;}i:13;a:1:{i:430;R:757;}i:14;a:1:{i:431;R:805;}i:15;a:1:{i:432;R:853;}i:33;a:1:{i:506;R:995;}i:45;a:1:{i:531;R:1043;}i:82;a:1:{i:608;R:1138;}i:124;a:1:{i:790;R:1280;}i:129;a:1:{i:791;R:1328;}i:130;a:1:{i:997;R:1376;}}}',0,1652162414,1),('links:navigation:tree-data:en:8425e6ce1fd18a408bd832beadae7318b7822c5aec96a381543504ca1b89b6fd','a:2:{s:4:\"tree\";a:23:{i:3;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"3\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:9:\"comment/%\";s:11:\"router_path\";s:9:\"comment/%\";s:10:\"link_title\";s:17:\"Comment permalink\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"3\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:1;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"access comments\";}\";s:13:\"page_callback\";s:17:\"comment_permalink\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:9:\"comment/%\";s:5:\"title\";s:17:\"Comment permalink\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:4;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"4\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"filter/tips\";s:11:\"router_path\";s:11:\"filter/tips\";s:10:\"link_title\";s:12:\"Compose tips\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-43\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"4\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"filter_tips_long\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"filter/tips\";s:5:\"title\";s:12:\"Compose tips\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:5;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"5\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/%\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:0:\"\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:6;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"6\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/add\";s:11:\"router_path\";s:8:\"node/add\";s:10:\"link_title\";s:11:\"Add content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-44\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:18:\"i18n_node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:10:{i:219;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"219\";s:4:\"plid\";s:1:\"6\";s:9:\"link_path\";s:16:\"node/add/article\";s:11:\"router_path\";s:16:\"node/add/article\";s:10:\"link_title\";s:7:\"Article\";s:7:\"options\";s:139:\"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.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-49\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:3:\"219\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:41:\"a:2:{i:0;s:6:\"create\";i:1;s:7:\"article\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:24:\"a:1:{i:0;s:7:\"article\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"node/add/article\";s:5:\"title\";s:7:\"Article\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:42:\"a:2:{i:0;s:7:\"article\";i:1;s:7:\"Article\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:89:\"Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:220;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"220\";s:4:\"plid\";s:1:\"6\";s:9:\"link_path\";s:13:\"node/add/page\";s:11:\"router_path\";s:13:\"node/add/page\";s:10:\"link_title\";s:10:\"Basic page\";s:7:\"options\";s:127:\"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.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-48\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:3:\"220\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:38:\"a:2:{i:0;s:6:\"create\";i:1;s:4:\"page\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"page\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"node/add/page\";s:5:\"title\";s:10:\"Basic page\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:43:\"a:2:{i:0;s:4:\"page\";i:1;s:10:\"Basic page\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:77:\"Use <em>basic pages</em> for your static content, such as an \'About us\' page.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:0:{}}i:395;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"395\";s:4:\"plid\";s:1:\"6\";s:9:\"link_path\";s:15:\"node/add/photos\";s:11:\"router_path\";s:15:\"node/add/photos\";s:10:\"link_title\";s:5:\"Album\";s:7:\"options\";s:74:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:24:\"Create new photo albums.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:3:\"395\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:40:\"a:2:{i:0;s:6:\"create\";i:1;s:6:\"photos\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:23:\"a:1:{i:0;s:6:\"photos\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"node/add/photos\";s:5:\"title\";s:5:\"Album\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:39:\"a:2:{i:0;s:6:\"photos\";i:1;s:5:\"Album\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:24:\"Create new photo albums.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:484;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"484\";s:4:\"plid\";s:1:\"6\";s:9:\"link_path\";s:35:\"node/add/openlayers-example-content\";s:11:\"router_path\";s:35:\"node/add/openlayers-example-content\";s:10:\"link_title\";s:26:\"OpenLayers Example Content\";s:7:\"options\";s:108:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:58:\"This is an example content type for the OpenLayers module.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-44\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:3:\"484\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:61:\"a:2:{i:0;s:6:\"create\";i:1;s:26:\"openlayers_example_content\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:44:\"a:1:{i:0;s:26:\"openlayers_example_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:35:\"node/add/openlayers-example-content\";s:5:\"title\";s:26:\"OpenLayers Example Content\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:82:\"a:2:{i:0;s:26:\"openlayers_example_content\";i:1;s:26:\"OpenLayers Example Content\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:58:\"This is an example content type for the OpenLayers module.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:498;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"498\";s:4:\"plid\";s:1:\"6\";s:9:\"link_path\";s:16:\"node/add/mooring\";s:11:\"router_path\";s:16:\"node/add/mooring\";s:10:\"link_title\";s:7:\"Mooring\";s:7:\"options\";s:58:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"A mooring\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:3:\"498\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:41:\"a:2:{i:0;s:6:\"create\";i:1;s:7:\"mooring\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:24:\"a:1:{i:0;s:7:\"mooring\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"node/add/mooring\";s:5:\"title\";s:7:\"Mooring\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:42:\"a:2:{i:0;s:7:\"mooring\";i:1;s:7:\"Mooring\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:9:\"A mooring\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:499;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"499\";s:4:\"plid\";s:1:\"6\";s:9:\"link_path\";s:14:\"node/add/photo\";s:11:\"router_path\";s:8:\"node/add\";s:10:\"link_title\";s:19:\"Photo Moorings 2014\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-41\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:3:\"499\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:18:\"i18n_node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:500;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"500\";s:4:\"plid\";s:1:\"6\";s:9:\"link_path\";s:28:\"node/add/photo-moorings-2012\";s:11:\"router_path\";s:28:\"node/add/photo-moorings-2012\";s:10:\"link_title\";s:19:\"Photo Moorings 2012\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-42\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:3:\"500\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:54:\"a:2:{i:0;s:6:\"create\";i:1;s:19:\"photo_moorings_2012\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:37:\"a:1:{i:0;s:19:\"photo_moorings_2012\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:28:\"node/add/photo-moorings-2012\";s:5:\"title\";s:19:\"Photo Moorings 2012\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:68:\"a:2:{i:0;s:19:\"photo_moorings_2012\";i:1;s:19:\"Photo Moorings 2012\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:522;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"522\";s:4:\"plid\";s:1:\"6\";s:9:\"link_path\";s:28:\"node/add/photo-moorings-2014\";s:11:\"router_path\";s:28:\"node/add/photo-moorings-2014\";s:10:\"link_title\";s:19:\"Photo Moorings 2014\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-40\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:3:\"522\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:54:\"a:2:{i:0;s:6:\"create\";i:1;s:19:\"photo_moorings_2014\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:37:\"a:1:{i:0;s:19:\"photo_moorings_2014\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:28:\"node/add/photo-moorings-2014\";s:5:\"title\";s:19:\"Photo Moorings 2014\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:68:\"a:2:{i:0;s:19:\"photo_moorings_2014\";i:1;s:19:\"Photo Moorings 2014\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:619;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"619\";s:4:\"plid\";s:1:\"6\";s:9:\"link_path\";s:14:\"node/add/forum\";s:11:\"router_path\";s:14:\"node/add/forum\";s:10:\"link_title\";s:11:\"Forum topic\";s:7:\"options\";s:119:\"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.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-46\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:3:\"619\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:39:\"a:2:{i:0;s:6:\"create\";i:1;s:5:\"forum\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:22:\"a:1:{i:0;s:5:\"forum\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:14:\"node/add/forum\";s:5:\"title\";s:11:\"Forum topic\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:45:\"a:2:{i:0;s:5:\"forum\";i:1;s:11:\"Forum topic\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:69:\"A <em>forum topic</em> starts a new discussion thread within a forum.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:708;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"708\";s:4:\"plid\";s:1:\"6\";s:9:\"link_path\";s:28:\"node/add/photo-moorings-2010\";s:11:\"router_path\";s:28:\"node/add/photo-moorings-2010\";s:10:\"link_title\";s:19:\"Photo Moorings 2010\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-43\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:3:\"708\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:54:\"a:2:{i:0;s:6:\"create\";i:1;s:19:\"photo_moorings_2010\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:37:\"a:1:{i:0;s:19:\"photo_moorings_2010\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:28:\"node/add/photo-moorings-2010\";s:5:\"title\";s:19:\"Photo Moorings 2010\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:68:\"a:2:{i:0;s:19:\"photo_moorings_2010\";i:1;s:19:\"Photo Moorings 2010\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:17;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"17\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"user/%\";s:11:\"router_path\";s:6:\"user/%\";s:10:\"link_title\";s:10:\"My account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_view_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"user_view_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:10:\"My account\";s:14:\"title_callback\";s:15:\"user_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:23;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"23\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"comment/reply/%\";s:11:\"router_path\";s:15:\"comment/reply/%\";s:10:\"link_title\";s:15:\"Add new comment\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"23\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:2;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:2;}\";s:13:\"page_callback\";s:13:\"comment_reply\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"comment/reply/%\";s:5:\"title\";s:15:\"Add new comment\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:27;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"27\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"taxonomy/term/%\";s:11:\"router_path\";s:15:\"taxonomy/term/%\";s:10:\"link_title\";s:13:\"Taxonomy term\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"27\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:36:\"a:1:{i:2;s:18:\"taxonomy_term_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:23:\"i18n_taxonomy_term_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"taxonomy/term/%\";s:5:\"title\";s:13:\"Taxonomy term\";s:14:\"title_callback\";s:23:\"i18n_taxonomy_term_name\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:187;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"187\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"search\";s:11:\"router_path\";s:6:\"search\";s:10:\"link_title\";s:6:\"Search\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"187\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:383;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"383\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/3\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:12:\"Cooperations\";s:7:\"options\";s:76:\"a:2:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-39\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"383\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:430;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"430\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/13\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2011/12 - PNRA XXVII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"430\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:431;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"431\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/14\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2013/14 - PNRA XXIX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-46\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"431\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:432;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"432\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/15\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:13:\"Pubblications\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-41\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"432\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:441;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"441\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/node\";s:11:\"router_path\";s:8:\"map/node\";s:10:\"link_title\";s:14:\"Node locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-42\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"441\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view node map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_node_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/node\";s:5:\"title\";s:14:\"Node locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:442;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"442\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/user\";s:11:\"router_path\";s:8:\"map/user\";s:10:\"link_title\";s:14:\"User locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-38\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"442\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view user map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/user\";s:5:\"title\";s:14:\"User locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:506;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"506\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/33\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-40\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"506\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:531;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"531\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/45\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:18:\"2014/15 - PNRA XXX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-47\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"531\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:606;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"606\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:10:\"chart/page\";s:11:\"router_path\";s:10:\"chart/page\";s:10:\"link_title\";s:18:\"Forecast as charts\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-36\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"606\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"chartModule_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"chart/page\";s:5:\"title\";s:18:\"Forecast as charts\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:608;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"608\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/82\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:4:\"Tide\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-34\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"608\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:614;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"614\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"contact\";s:11:\"router_path\";s:7:\"contact\";s:10:\"link_title\";s:7:\"Contact\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-37\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"614\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"access site-wide contact form\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:35:\"a:1:{i:0;s:17:\"contact_site_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:7:\"contact\";s:5:\"title\";s:7:\"Contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:615;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"615\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"forum\";s:11:\"router_path\";s:5:\"forum\";s:10:\"link_title\";s:6:\"Forums\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-35\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"615\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:10:\"forum_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"forum\";s:5:\"title\";s:6:\"Forums\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:790;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"790\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/124\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2015/16 - PNRA XXXI\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-48\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"790\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:791;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"791\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/129\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2016/17 - PNRA XXXII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-49\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"791\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:997;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"997\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/130\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:21:\"2017/18 - PNRA XXXIII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"997\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:10:{i:3;a:1:{i:383;R:850;}i:13;a:1:{i:430;R:898;}i:14;a:1:{i:431;R:946;}i:15;a:1:{i:432;R:994;}i:33;a:1:{i:506;R:1136;}i:45;a:1:{i:531;R:1184;}i:82;a:1:{i:608;R:1279;}i:124;a:1:{i:790;R:1421;}i:129;a:1:{i:791;R:1469;}i:130;a:1:{i:997;R:1517;}}}',0,1652167722,1),('links:navigation:tree-data:en:9bd1605e2280833450478f9083b7f8714c2fa28f1012455e2744e5af1a13eec5','a:2:{s:4:\"tree\";a:23:{i:3;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"3\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:9:\"comment/%\";s:11:\"router_path\";s:9:\"comment/%\";s:10:\"link_title\";s:17:\"Comment permalink\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"3\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:1;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"access comments\";}\";s:13:\"page_callback\";s:17:\"comment_permalink\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:9:\"comment/%\";s:5:\"title\";s:17:\"Comment permalink\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:4;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"4\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"filter/tips\";s:11:\"router_path\";s:11:\"filter/tips\";s:10:\"link_title\";s:12:\"Compose tips\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-43\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"4\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"filter_tips_long\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"filter/tips\";s:5:\"title\";s:12:\"Compose tips\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:5;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"5\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/%\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:0:\"\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:6;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"6\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/add\";s:11:\"router_path\";s:8:\"node/add\";s:10:\"link_title\";s:11:\"Add content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-44\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:18:\"i18n_node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:17;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"17\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"user/%\";s:11:\"router_path\";s:6:\"user/%\";s:10:\"link_title\";s:10:\"My account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_view_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"user_view_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:10:\"My account\";s:14:\"title_callback\";s:15:\"user_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:23;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"23\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"comment/reply/%\";s:11:\"router_path\";s:15:\"comment/reply/%\";s:10:\"link_title\";s:15:\"Add new comment\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"23\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:2;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:2;}\";s:13:\"page_callback\";s:13:\"comment_reply\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"comment/reply/%\";s:5:\"title\";s:15:\"Add new comment\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:27;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"27\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"taxonomy/term/%\";s:11:\"router_path\";s:15:\"taxonomy/term/%\";s:10:\"link_title\";s:13:\"Taxonomy term\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"27\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:36:\"a:1:{i:2;s:18:\"taxonomy_term_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:23:\"i18n_taxonomy_term_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"taxonomy/term/%\";s:5:\"title\";s:13:\"Taxonomy term\";s:14:\"title_callback\";s:23:\"i18n_taxonomy_term_name\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:187;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"187\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"search\";s:11:\"router_path\";s:6:\"search\";s:10:\"link_title\";s:6:\"Search\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"187\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:383;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"383\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/3\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:12:\"Cooperations\";s:7:\"options\";s:76:\"a:2:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-39\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"383\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:430;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"430\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/13\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2011/12 - PNRA XXVII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"430\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:431;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"431\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/14\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2013/14 - PNRA XXIX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-46\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"431\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:432;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"432\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/15\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:13:\"Pubblications\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-41\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"432\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:441;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"441\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/node\";s:11:\"router_path\";s:8:\"map/node\";s:10:\"link_title\";s:14:\"Node locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-42\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"441\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view node map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_node_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/node\";s:5:\"title\";s:14:\"Node locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:442;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"442\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/user\";s:11:\"router_path\";s:8:\"map/user\";s:10:\"link_title\";s:14:\"User locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-38\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"442\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view user map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/user\";s:5:\"title\";s:14:\"User locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:506;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"506\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/33\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-40\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"506\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:531;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"531\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/45\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:18:\"2014/15 - PNRA XXX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-47\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"531\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:606;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"606\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:10:\"chart/page\";s:11:\"router_path\";s:10:\"chart/page\";s:10:\"link_title\";s:18:\"Forecast as charts\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-36\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"606\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"chartModule_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"chart/page\";s:5:\"title\";s:18:\"Forecast as charts\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:608;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"608\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/82\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:4:\"Tide\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-34\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"608\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:614;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"614\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"contact\";s:11:\"router_path\";s:7:\"contact\";s:10:\"link_title\";s:7:\"Contact\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-37\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"614\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"access site-wide contact form\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:35:\"a:1:{i:0;s:17:\"contact_site_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:7:\"contact\";s:5:\"title\";s:7:\"Contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:615;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"615\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"forum\";s:11:\"router_path\";s:5:\"forum\";s:10:\"link_title\";s:6:\"Forums\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-35\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"615\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:10:\"forum_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"forum\";s:5:\"title\";s:6:\"Forums\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:790;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"790\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/124\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2015/16 - PNRA XXXI\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-48\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"790\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:791;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"791\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/129\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2016/17 - PNRA XXXII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-49\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"791\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:997;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"997\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/130\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:21:\"2017/18 - PNRA XXXIII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"997\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:10:{i:3;a:1:{i:383;R:380;}i:13;a:1:{i:430;R:428;}i:14;a:1:{i:431;R:476;}i:15;a:1:{i:432;R:524;}i:33;a:1:{i:506;R:666;}i:45;a:1:{i:531;R:714;}i:82;a:1:{i:608;R:809;}i:124;a:1:{i:790;R:951;}i:129;a:1:{i:791;R:999;}i:130;a:1:{i:997;R:1047;}}}',0,1538750977,1),('links:navigation:tree-data:en:a3962e11cb88333ee69c8ba3d957203cac9f0bc7e1d79c7e09c9826d9f935486','a:2:{s:4:\"tree\";a:23:{i:3;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"3\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:9:\"comment/%\";s:11:\"router_path\";s:9:\"comment/%\";s:10:\"link_title\";s:17:\"Comment permalink\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"3\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:1;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"access comments\";}\";s:13:\"page_callback\";s:17:\"comment_permalink\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:9:\"comment/%\";s:5:\"title\";s:17:\"Comment permalink\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:4;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"4\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"filter/tips\";s:11:\"router_path\";s:11:\"filter/tips\";s:10:\"link_title\";s:12:\"Compose tips\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-43\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"4\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"filter_tips_long\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"filter/tips\";s:5:\"title\";s:12:\"Compose tips\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:5;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"5\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/%\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:0:\"\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:7:{i:38;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"38\";s:4:\"plid\";s:1:\"5\";s:9:\"link_path\";s:13:\"node/%/delete\";s:11:\"router_path\";s:13:\"node/%/delete\";s:10:\"link_title\";s:6:\"Delete\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"1\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:2:\"38\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:31:\"a:2:{i:0;s:6:\"delete\";i:1;i:1;}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:45:\"a:2:{i:0;s:19:\"node_delete_confirm\";i:1;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:6:\"Delete\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:41;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"41\";s:4:\"plid\";s:1:\"5\";s:9:\"link_path\";s:11:\"node/%/edit\";s:11:\"router_path\";s:11:\"node/%/edit\";s:10:\"link_title\";s:4:\"Edit\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:2:\"41\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:30:\"entity_translation_edit_access\";s:16:\"access_arguments\";s:381:\"a:6:{i:0;s:4:\"node\";i:1;i:1;i:2;b:0;i:3;a:10:{s:5:\"title\";s:4:\"Edit\";s:13:\"page callback\";s:14:\"node_page_edit\";s:14:\"page arguments\";a:1:{i:0;i:1;}s:15:\"access callback\";s:11:\"node_access\";s:16:\"access arguments\";a:2:{i:0;s:6:\"update\";i:1;i:1;}s:6:\"weight\";i:0;s:4:\"type\";i:132;s:7:\"context\";i:3;s:4:\"file\";s:14:\"node.pages.inc\";s:6:\"module\";s:4:\"node\";}i:4;s:6:\"update\";i:5;i:1;}\";s:13:\"page_callback\";s:28:\"entity_translation_edit_page\";s:14:\"page_arguments\";s:364:\"a:5:{i:0;s:4:\"node\";i:1;i:1;i:2;b:0;i:3;a:10:{s:5:\"title\";s:4:\"Edit\";s:13:\"page callback\";s:14:\"node_page_edit\";s:14:\"page arguments\";a:1:{i:0;i:1;}s:15:\"access callback\";s:11:\"node_access\";s:16:\"access arguments\";a:2:{i:0;s:6:\"update\";i:1;i:1;}s:6:\"weight\";i:0;s:4:\"type\";i:132;s:7:\"context\";i:3;s:4:\"file\";s:14:\"node.pages.inc\";s:6:\"module\";s:4:\"node\";}i:4;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:4:\"Edit\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:52;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"52\";s:4:\"plid\";s:1:\"5\";s:9:\"link_path\";s:16:\"node/%/revisions\";s:11:\"router_path\";s:16:\"node/%/revisions\";s:10:\"link_title\";s:9:\"Revisions\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:2:\"52\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:21:\"_node_revision_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:22:\"node_revision_overview\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"Revisions\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:62;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"62\";s:4:\"plid\";s:1:\"5\";s:9:\"link_path\";s:11:\"node/%/view\";s:11:\"router_path\";s:11:\"node/%/view\";s:10:\"link_title\";s:4:\"View\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:2:\"62\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:4:\"View\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:308;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"308\";s:4:\"plid\";s:1:\"5\";s:9:\"link_path\";s:16:\"node/%/translate\";s:11:\"router_path\";s:16:\"node/%/translate\";s:10:\"link_title\";s:9:\"Translate\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"1\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:3:\"308\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:34:\"entity_translation_node_tab_access\";s:16:\"access_arguments\";s:57:\"a:3:{i:0;i:1;i:1;s:23:\"_translation_tab_access\";i:2;i:1;}\";s:13:\"page_callback\";s:27:\"entity_translation_overview\";s:14:\"page_arguments\";s:173:\"a:4:{i:0;s:4:\"node\";i:1;i:1;i:2;a:3:{s:13:\"page callback\";s:30:\"i18n_node_translation_overview\";s:4:\"file\";s:19:\"i18n_node.pages.inc\";s:6:\"module\";s:9:\"i18n_node\";}i:3;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"Translate\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:396;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"396\";s:4:\"plid\";s:1:\"5\";s:9:\"link_path\";s:13:\"node/%/photos\";s:11:\"router_path\";s:13:\"node/%/photos\";s:10:\"link_title\";s:17:\"Images Management\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:3:\"396\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:14:\"_photos_access\";s:16:\"access_arguments\";s:34:\"a:2:{i:0;s:9:\"editAlbum\";i:1;i:1;}\";s:13:\"page_callback\";s:16:\"photos_edit_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:17:\"Images Management\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:397;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"397\";s:4:\"plid\";s:1:\"5\";s:9:\"link_path\";s:18:\"node/%/photos-sort\";s:11:\"router_path\";s:18:\"node/%/photos-sort\";s:10:\"link_title\";s:10:\"Re-arrange\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:3:\"397\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:14:\"_photos_access\";s:16:\"access_arguments\";s:34:\"a:2:{i:0;s:9:\"editAlbum\";i:1;i:1;}\";s:13:\"page_callback\";s:21:\"photos_edit_sort_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:10:\"Re-arrange\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:6;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"6\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/add\";s:11:\"router_path\";s:8:\"node/add\";s:10:\"link_title\";s:11:\"Add content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-44\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:18:\"i18n_node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:17;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"17\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"user/%\";s:11:\"router_path\";s:6:\"user/%\";s:10:\"link_title\";s:10:\"My account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_view_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"user_view_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:10:\"My account\";s:14:\"title_callback\";s:15:\"user_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:23;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"23\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"comment/reply/%\";s:11:\"router_path\";s:15:\"comment/reply/%\";s:10:\"link_title\";s:15:\"Add new comment\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"23\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:2;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:2;}\";s:13:\"page_callback\";s:13:\"comment_reply\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"comment/reply/%\";s:5:\"title\";s:15:\"Add new comment\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:27;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"27\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"taxonomy/term/%\";s:11:\"router_path\";s:15:\"taxonomy/term/%\";s:10:\"link_title\";s:13:\"Taxonomy term\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"27\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:36:\"a:1:{i:2;s:18:\"taxonomy_term_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:23:\"i18n_taxonomy_term_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"taxonomy/term/%\";s:5:\"title\";s:13:\"Taxonomy term\";s:14:\"title_callback\";s:23:\"i18n_taxonomy_term_name\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:187;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"187\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"search\";s:11:\"router_path\";s:6:\"search\";s:10:\"link_title\";s:6:\"Search\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"187\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:383;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"383\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/3\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:12:\"Cooperations\";s:7:\"options\";s:76:\"a:2:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-39\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"383\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:430;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"430\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/13\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2011/12 - PNRA XXVII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"430\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:431;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"431\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/14\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2013/14 - PNRA XXIX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-46\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"431\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:432;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"432\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/15\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:13:\"Pubblications\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-41\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"432\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:441;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"441\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/node\";s:11:\"router_path\";s:8:\"map/node\";s:10:\"link_title\";s:14:\"Node locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-42\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"441\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view node map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_node_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/node\";s:5:\"title\";s:14:\"Node locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:442;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"442\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/user\";s:11:\"router_path\";s:8:\"map/user\";s:10:\"link_title\";s:14:\"User locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-38\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"442\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view user map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/user\";s:5:\"title\";s:14:\"User locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:506;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"506\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/33\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-40\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"506\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:531;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"531\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/45\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:18:\"2014/15 - PNRA XXX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-47\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"531\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:606;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"606\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:10:\"chart/page\";s:11:\"router_path\";s:10:\"chart/page\";s:10:\"link_title\";s:18:\"Forecast as charts\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-36\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"606\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"chartModule_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"chart/page\";s:5:\"title\";s:18:\"Forecast as charts\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:608;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"608\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/82\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:4:\"Tide\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-34\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"608\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:614;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"614\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"contact\";s:11:\"router_path\";s:7:\"contact\";s:10:\"link_title\";s:7:\"Contact\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-37\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"614\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"access site-wide contact form\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:35:\"a:1:{i:0;s:17:\"contact_site_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:7:\"contact\";s:5:\"title\";s:7:\"Contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:615;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"615\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"forum\";s:11:\"router_path\";s:5:\"forum\";s:10:\"link_title\";s:6:\"Forums\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-35\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"615\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:10:\"forum_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"forum\";s:5:\"title\";s:6:\"Forums\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:790;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"790\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/124\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2015/16 - PNRA XXXI\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-48\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"790\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:791;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"791\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/129\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2016/17 - PNRA XXXII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-49\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"791\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:997;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"997\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/130\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:21:\"2017/18 - PNRA XXXIII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"997\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:10:{i:3;a:1:{i:383;R:709;}i:13;a:1:{i:430;R:757;}i:14;a:1:{i:431;R:805;}i:15;a:1:{i:432;R:853;}i:33;a:1:{i:506;R:995;}i:45;a:1:{i:531;R:1043;}i:82;a:1:{i:608;R:1138;}i:124;a:1:{i:790;R:1280;}i:129;a:1:{i:791;R:1328;}i:130;a:1:{i:997;R:1376;}}}',0,1538751288,1),('links:navigation:tree-data:en:abc1e55954bee69352688de9f54eddc849f712c95c2cc09d8e58371bfcaaa458','a:2:{s:4:\"tree\";a:23:{i:3;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"3\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:9:\"comment/%\";s:11:\"router_path\";s:9:\"comment/%\";s:10:\"link_title\";s:17:\"Comment permalink\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"3\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:1;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"access comments\";}\";s:13:\"page_callback\";s:17:\"comment_permalink\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:9:\"comment/%\";s:5:\"title\";s:17:\"Comment permalink\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:4;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"4\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"filter/tips\";s:11:\"router_path\";s:11:\"filter/tips\";s:10:\"link_title\";s:12:\"Compose tips\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-43\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"4\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"filter_tips_long\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"filter/tips\";s:5:\"title\";s:12:\"Compose tips\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:5;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"5\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/%\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:0:\"\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:6;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"6\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/add\";s:11:\"router_path\";s:8:\"node/add\";s:10:\"link_title\";s:11:\"Add content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-44\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:18:\"i18n_node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:17;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"17\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"user/%\";s:11:\"router_path\";s:6:\"user/%\";s:10:\"link_title\";s:10:\"My account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_view_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"user_view_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:10:\"My account\";s:14:\"title_callback\";s:15:\"user_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:23;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"23\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"comment/reply/%\";s:11:\"router_path\";s:15:\"comment/reply/%\";s:10:\"link_title\";s:15:\"Add new comment\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"23\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:2;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:2;}\";s:13:\"page_callback\";s:13:\"comment_reply\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"comment/reply/%\";s:5:\"title\";s:15:\"Add new comment\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:27;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"27\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"taxonomy/term/%\";s:11:\"router_path\";s:15:\"taxonomy/term/%\";s:10:\"link_title\";s:13:\"Taxonomy term\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"27\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:36:\"a:1:{i:2;s:18:\"taxonomy_term_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:23:\"i18n_taxonomy_term_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"taxonomy/term/%\";s:5:\"title\";s:13:\"Taxonomy term\";s:14:\"title_callback\";s:23:\"i18n_taxonomy_term_name\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:187;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"187\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"search\";s:11:\"router_path\";s:6:\"search\";s:10:\"link_title\";s:6:\"Search\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"187\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:383;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"383\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/3\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:12:\"Cooperations\";s:7:\"options\";s:76:\"a:2:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-39\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"383\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:430;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"430\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/13\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2011/12 - PNRA XXVII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"430\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:431;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"431\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/14\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2013/14 - PNRA XXIX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-46\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"431\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:432;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"432\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/15\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:13:\"Pubblications\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-41\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"432\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:441;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"441\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/node\";s:11:\"router_path\";s:8:\"map/node\";s:10:\"link_title\";s:14:\"Node locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-42\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"441\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view node map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_node_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/node\";s:5:\"title\";s:14:\"Node locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:442;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"442\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/user\";s:11:\"router_path\";s:8:\"map/user\";s:10:\"link_title\";s:14:\"User locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-38\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"442\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view user map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/user\";s:5:\"title\";s:14:\"User locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:506;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"506\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/33\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-40\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"506\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:531;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"531\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/45\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:18:\"2014/15 - PNRA XXX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-47\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"531\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:606;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"606\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:10:\"chart/page\";s:11:\"router_path\";s:10:\"chart/page\";s:10:\"link_title\";s:18:\"Forecast as charts\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-36\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"606\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"chartModule_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"chart/page\";s:5:\"title\";s:18:\"Forecast as charts\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:608;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"608\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/82\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:4:\"Tide\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-34\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"608\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:614;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"614\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"contact\";s:11:\"router_path\";s:7:\"contact\";s:10:\"link_title\";s:7:\"Contact\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-37\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"614\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"access site-wide contact form\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:35:\"a:1:{i:0;s:17:\"contact_site_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:7:\"contact\";s:5:\"title\";s:7:\"Contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:615;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"615\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"forum\";s:11:\"router_path\";s:5:\"forum\";s:10:\"link_title\";s:6:\"Forums\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-35\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"615\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:10:\"forum_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"forum\";s:5:\"title\";s:6:\"Forums\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:790;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"790\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/124\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2015/16 - PNRA XXXI\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-48\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"790\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:791;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"791\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/129\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2016/17 - PNRA XXXII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-49\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"791\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:997;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"997\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/130\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:21:\"2017/18 - PNRA XXXIII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"997\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:10:{i:3;a:1:{i:383;R:380;}i:13;a:1:{i:430;R:428;}i:14;a:1:{i:431;R:476;}i:15;a:1:{i:432;R:524;}i:33;a:1:{i:506;R:666;}i:45;a:1:{i:531;R:714;}i:82;a:1:{i:608;R:809;}i:124;a:1:{i:790;R:951;}i:129;a:1:{i:791;R:999;}i:130;a:1:{i:997;R:1047;}}}',0,1539156650,1),('links:navigation:tree-data:en:b5c6a274890baf24d5b9887cd16c9d3d8f0678635fa51a7035462697d9c4df2a','a:2:{s:4:\"tree\";a:23:{i:3;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"3\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:9:\"comment/%\";s:11:\"router_path\";s:9:\"comment/%\";s:10:\"link_title\";s:17:\"Comment permalink\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"3\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:1;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"access comments\";}\";s:13:\"page_callback\";s:17:\"comment_permalink\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:9:\"comment/%\";s:5:\"title\";s:17:\"Comment permalink\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:4;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"4\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"filter/tips\";s:11:\"router_path\";s:11:\"filter/tips\";s:10:\"link_title\";s:12:\"Compose tips\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-43\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"4\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"filter_tips_long\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"filter/tips\";s:5:\"title\";s:12:\"Compose tips\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:5;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"5\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/%\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:0:\"\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:6;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"6\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/add\";s:11:\"router_path\";s:8:\"node/add\";s:10:\"link_title\";s:11:\"Add content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-44\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:18:\"i18n_node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:17;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"17\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"user/%\";s:11:\"router_path\";s:6:\"user/%\";s:10:\"link_title\";s:10:\"My account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_view_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"user_view_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:10:\"My account\";s:14:\"title_callback\";s:15:\"user_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:6:{i:31;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"31\";s:4:\"plid\";s:2:\"17\";s:9:\"link_path\";s:13:\"user/%/cancel\";s:11:\"router_path\";s:13:\"user/%/cancel\";s:10:\"link_title\";s:14:\"Cancel account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:2:\"31\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:18:\"user_cancel_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:50:\"a:2:{i:0;s:24:\"user_cancel_confirm_form\";i:1;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"user/%/cancel\";s:5:\"title\";s:14:\"Cancel account\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:40;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"40\";s:4:\"plid\";s:2:\"17\";s:9:\"link_path\";s:11:\"user/%/edit\";s:11:\"router_path\";s:11:\"user/%/edit\";s:10:\"link_title\";s:4:\"Edit\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:2:\"40\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_edit_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:43:\"a:2:{i:0;s:17:\"user_profile_form\";i:1;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"user/%\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:4:\"Edit\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:63;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"63\";s:4:\"plid\";s:2:\"17\";s:9:\"link_path\";s:11:\"user/%/view\";s:11:\"router_path\";s:11:\"user/%/view\";s:10:\"link_title\";s:4:\"View\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:2:\"63\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_view_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"user_view_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"user/%\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:4:\"View\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:191;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"191\";s:4:\"plid\";s:2:\"17\";s:9:\"link_path\";s:16:\"user/%/shortcuts\";s:11:\"router_path\";s:16:\"user/%/shortcuts\";s:10:\"link_title\";s:9:\"Shortcuts\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:3:\"191\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:26:\"shortcut_set_switch_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:45:\"a:2:{i:0;s:19:\"shortcut_set_switch\";i:1;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"user/%\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:9:\"Shortcuts\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:418;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"418\";s:4:\"plid\";s:2:\"17\";s:9:\"link_path\";s:11:\"user/%/imce\";s:11:\"router_path\";s:11:\"user/%/imce\";s:10:\"link_title\";s:12:\"File browser\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:3:\"418\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:21:\"imce_user_page_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"imce_user_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"user/%\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:12:\"File browser\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:617;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"617\";s:4:\"plid\";s:2:\"17\";s:9:\"link_path\";s:14:\"user/%/contact\";s:11:\"router_path\";s:14:\"user/%/contact\";s:10:\"link_title\";s:7:\"Contact\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:3:\"617\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:28:\"_contact_personal_tab_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:47:\"a:2:{i:0;s:21:\"contact_personal_form\";i:1;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"user/%\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:7:\"Contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:23;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"23\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"comment/reply/%\";s:11:\"router_path\";s:15:\"comment/reply/%\";s:10:\"link_title\";s:15:\"Add new comment\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"23\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:2;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:2;}\";s:13:\"page_callback\";s:13:\"comment_reply\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"comment/reply/%\";s:5:\"title\";s:15:\"Add new comment\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:27;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"27\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"taxonomy/term/%\";s:11:\"router_path\";s:15:\"taxonomy/term/%\";s:10:\"link_title\";s:13:\"Taxonomy term\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"27\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:36:\"a:1:{i:2;s:18:\"taxonomy_term_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:23:\"i18n_taxonomy_term_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"taxonomy/term/%\";s:5:\"title\";s:13:\"Taxonomy term\";s:14:\"title_callback\";s:23:\"i18n_taxonomy_term_name\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:187;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"187\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"search\";s:11:\"router_path\";s:6:\"search\";s:10:\"link_title\";s:6:\"Search\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"187\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:383;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"383\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/3\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:12:\"Cooperations\";s:7:\"options\";s:76:\"a:2:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-39\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"383\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:430;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"430\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/13\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2011/12 - PNRA XXVII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"430\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:431;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"431\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/14\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2013/14 - PNRA XXIX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-46\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"431\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:432;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"432\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/15\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:13:\"Pubblications\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-41\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"432\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:441;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"441\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/node\";s:11:\"router_path\";s:8:\"map/node\";s:10:\"link_title\";s:14:\"Node locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-42\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"441\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view node map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_node_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/node\";s:5:\"title\";s:14:\"Node locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:442;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"442\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/user\";s:11:\"router_path\";s:8:\"map/user\";s:10:\"link_title\";s:14:\"User locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-38\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"442\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view user map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/user\";s:5:\"title\";s:14:\"User locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:506;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"506\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/33\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-40\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"506\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:531;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"531\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/45\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:18:\"2014/15 - PNRA XXX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-47\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"531\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:606;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"606\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:10:\"chart/page\";s:11:\"router_path\";s:10:\"chart/page\";s:10:\"link_title\";s:18:\"Forecast as charts\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-36\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"606\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"chartModule_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"chart/page\";s:5:\"title\";s:18:\"Forecast as charts\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:608;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"608\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/82\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:4:\"Tide\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-34\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"608\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:614;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"614\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"contact\";s:11:\"router_path\";s:7:\"contact\";s:10:\"link_title\";s:7:\"Contact\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-37\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"614\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"access site-wide contact form\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:35:\"a:1:{i:0;s:17:\"contact_site_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:7:\"contact\";s:5:\"title\";s:7:\"Contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:615;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"615\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"forum\";s:11:\"router_path\";s:5:\"forum\";s:10:\"link_title\";s:6:\"Forums\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-35\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"615\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:10:\"forum_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"forum\";s:5:\"title\";s:6:\"Forums\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:790;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"790\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/124\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2015/16 - PNRA XXXI\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-48\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"790\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:791;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"791\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/129\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2016/17 - PNRA XXXII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-49\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"791\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:997;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"997\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/130\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:21:\"2017/18 - PNRA XXXIII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"997\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:10:{i:3;a:1:{i:383;R:662;}i:13;a:1:{i:430;R:710;}i:14;a:1:{i:431;R:758;}i:15;a:1:{i:432;R:806;}i:33;a:1:{i:506;R:948;}i:45;a:1:{i:531;R:996;}i:82;a:1:{i:608;R:1091;}i:124;a:1:{i:790;R:1233;}i:129;a:1:{i:791;R:1281;}i:130;a:1:{i:997;R:1329;}}}',0,1538751620,1),('links:navigation:tree-data:en:c13cf4ac30d5d512e0be06ec1afc00bd44743035cce482432763e2047f19e5a7','a:2:{s:4:\"tree\";a:23:{i:3;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"3\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:9:\"comment/%\";s:11:\"router_path\";s:9:\"comment/%\";s:10:\"link_title\";s:17:\"Comment permalink\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"3\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:1;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"access comments\";}\";s:13:\"page_callback\";s:17:\"comment_permalink\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:9:\"comment/%\";s:5:\"title\";s:17:\"Comment permalink\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:4;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"4\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"filter/tips\";s:11:\"router_path\";s:11:\"filter/tips\";s:10:\"link_title\";s:12:\"Compose tips\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-43\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"4\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"filter_tips_long\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"filter/tips\";s:5:\"title\";s:12:\"Compose tips\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:5;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"5\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/%\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:0:\"\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:6;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"6\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/add\";s:11:\"router_path\";s:8:\"node/add\";s:10:\"link_title\";s:11:\"Add content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-44\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:18:\"i18n_node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:17;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"17\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"user/%\";s:11:\"router_path\";s:6:\"user/%\";s:10:\"link_title\";s:10:\"My account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_view_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"user_view_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:10:\"My account\";s:14:\"title_callback\";s:15:\"user_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:23;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"23\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"comment/reply/%\";s:11:\"router_path\";s:15:\"comment/reply/%\";s:10:\"link_title\";s:15:\"Add new comment\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"23\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:2;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:2;}\";s:13:\"page_callback\";s:13:\"comment_reply\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"comment/reply/%\";s:5:\"title\";s:15:\"Add new comment\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:27;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"27\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"taxonomy/term/%\";s:11:\"router_path\";s:15:\"taxonomy/term/%\";s:10:\"link_title\";s:13:\"Taxonomy term\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"27\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:36:\"a:1:{i:2;s:18:\"taxonomy_term_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:23:\"i18n_taxonomy_term_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"taxonomy/term/%\";s:5:\"title\";s:13:\"Taxonomy term\";s:14:\"title_callback\";s:23:\"i18n_taxonomy_term_name\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:187;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"187\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"search\";s:11:\"router_path\";s:6:\"search\";s:10:\"link_title\";s:6:\"Search\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"187\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:383;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"383\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/3\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:12:\"Cooperations\";s:7:\"options\";s:76:\"a:2:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-39\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"383\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:430;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"430\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/13\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2011/12 - PNRA XXVII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"430\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:431;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"431\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/14\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2013/14 - PNRA XXIX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-46\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"431\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:432;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"432\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/15\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:13:\"Pubblications\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-41\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"432\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:441;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"441\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/node\";s:11:\"router_path\";s:8:\"map/node\";s:10:\"link_title\";s:14:\"Node locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-42\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"441\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view node map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_node_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/node\";s:5:\"title\";s:14:\"Node locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:442;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"442\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/user\";s:11:\"router_path\";s:8:\"map/user\";s:10:\"link_title\";s:14:\"User locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-38\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"442\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view user map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/user\";s:5:\"title\";s:14:\"User locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:506;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"506\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/33\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-40\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"506\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:531;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"531\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/45\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:18:\"2014/15 - PNRA XXX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-47\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"531\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:606;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"606\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:10:\"chart/page\";s:11:\"router_path\";s:10:\"chart/page\";s:10:\"link_title\";s:18:\"Forecast as charts\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-36\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"606\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"chartModule_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"chart/page\";s:5:\"title\";s:18:\"Forecast as charts\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:608;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"608\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/82\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:4:\"Tide\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-34\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"608\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:614;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"614\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"contact\";s:11:\"router_path\";s:7:\"contact\";s:10:\"link_title\";s:7:\"Contact\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-37\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"614\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"access site-wide contact form\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:35:\"a:1:{i:0;s:17:\"contact_site_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:7:\"contact\";s:5:\"title\";s:7:\"Contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:615;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"615\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"forum\";s:11:\"router_path\";s:5:\"forum\";s:10:\"link_title\";s:6:\"Forums\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-35\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"615\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:10:\"forum_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"forum\";s:5:\"title\";s:6:\"Forums\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:790;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"790\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/124\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2015/16 - PNRA XXXI\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-48\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"790\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:791;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"791\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/129\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2016/17 - PNRA XXXII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-49\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"791\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:997;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"997\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/130\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:21:\"2017/18 - PNRA XXXIII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"997\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:10:{i:3;a:1:{i:383;R:380;}i:13;a:1:{i:430;R:428;}i:14;a:1:{i:431;R:476;}i:15;a:1:{i:432;R:524;}i:33;a:1:{i:506;R:666;}i:45;a:1:{i:531;R:714;}i:82;a:1:{i:608;R:809;}i:124;a:1:{i:790;R:951;}i:129;a:1:{i:791;R:999;}i:130;a:1:{i:997;R:1047;}}}',0,1538751790,1),('links:navigation:tree-data:en:c23e6c560aeaf50eff01e1f990e2ce31a69244b15effbdd58f8cbc4466320100','a:2:{s:4:\"tree\";a:23:{i:3;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"3\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:9:\"comment/%\";s:11:\"router_path\";s:9:\"comment/%\";s:10:\"link_title\";s:17:\"Comment permalink\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"3\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:1;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"access comments\";}\";s:13:\"page_callback\";s:17:\"comment_permalink\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:9:\"comment/%\";s:5:\"title\";s:17:\"Comment permalink\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:4;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"4\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"filter/tips\";s:11:\"router_path\";s:11:\"filter/tips\";s:10:\"link_title\";s:12:\"Compose tips\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-43\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"4\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"filter_tips_long\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"filter/tips\";s:5:\"title\";s:12:\"Compose tips\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:5;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"5\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/%\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:0:\"\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:6;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"6\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/add\";s:11:\"router_path\";s:8:\"node/add\";s:10:\"link_title\";s:11:\"Add content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-44\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:18:\"i18n_node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:10:{i:219;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"219\";s:4:\"plid\";s:1:\"6\";s:9:\"link_path\";s:16:\"node/add/article\";s:11:\"router_path\";s:16:\"node/add/article\";s:10:\"link_title\";s:7:\"Article\";s:7:\"options\";s:139:\"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.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-49\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:3:\"219\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:41:\"a:2:{i:0;s:6:\"create\";i:1;s:7:\"article\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:24:\"a:1:{i:0;s:7:\"article\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"node/add/article\";s:5:\"title\";s:7:\"Article\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:42:\"a:2:{i:0;s:7:\"article\";i:1;s:7:\"Article\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:89:\"Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:220;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"220\";s:4:\"plid\";s:1:\"6\";s:9:\"link_path\";s:13:\"node/add/page\";s:11:\"router_path\";s:13:\"node/add/page\";s:10:\"link_title\";s:10:\"Basic page\";s:7:\"options\";s:127:\"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.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-48\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:3:\"220\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:38:\"a:2:{i:0;s:6:\"create\";i:1;s:4:\"page\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"page\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"node/add/page\";s:5:\"title\";s:10:\"Basic page\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:43:\"a:2:{i:0;s:4:\"page\";i:1;s:10:\"Basic page\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:77:\"Use <em>basic pages</em> for your static content, such as an \'About us\' page.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:395;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"395\";s:4:\"plid\";s:1:\"6\";s:9:\"link_path\";s:15:\"node/add/photos\";s:11:\"router_path\";s:15:\"node/add/photos\";s:10:\"link_title\";s:5:\"Album\";s:7:\"options\";s:74:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:24:\"Create new photo albums.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:3:\"395\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:40:\"a:2:{i:0;s:6:\"create\";i:1;s:6:\"photos\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:23:\"a:1:{i:0;s:6:\"photos\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"node/add/photos\";s:5:\"title\";s:5:\"Album\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:39:\"a:2:{i:0;s:6:\"photos\";i:1;s:5:\"Album\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:24:\"Create new photo albums.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:484;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"484\";s:4:\"plid\";s:1:\"6\";s:9:\"link_path\";s:35:\"node/add/openlayers-example-content\";s:11:\"router_path\";s:35:\"node/add/openlayers-example-content\";s:10:\"link_title\";s:26:\"OpenLayers Example Content\";s:7:\"options\";s:108:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:58:\"This is an example content type for the OpenLayers module.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-44\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:3:\"484\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:61:\"a:2:{i:0;s:6:\"create\";i:1;s:26:\"openlayers_example_content\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:44:\"a:1:{i:0;s:26:\"openlayers_example_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:35:\"node/add/openlayers-example-content\";s:5:\"title\";s:26:\"OpenLayers Example Content\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:82:\"a:2:{i:0;s:26:\"openlayers_example_content\";i:1;s:26:\"OpenLayers Example Content\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:58:\"This is an example content type for the OpenLayers module.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:498;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"498\";s:4:\"plid\";s:1:\"6\";s:9:\"link_path\";s:16:\"node/add/mooring\";s:11:\"router_path\";s:16:\"node/add/mooring\";s:10:\"link_title\";s:7:\"Mooring\";s:7:\"options\";s:58:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"A mooring\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:3:\"498\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:41:\"a:2:{i:0;s:6:\"create\";i:1;s:7:\"mooring\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:24:\"a:1:{i:0;s:7:\"mooring\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"node/add/mooring\";s:5:\"title\";s:7:\"Mooring\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:42:\"a:2:{i:0;s:7:\"mooring\";i:1;s:7:\"Mooring\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:9:\"A mooring\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:499;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"499\";s:4:\"plid\";s:1:\"6\";s:9:\"link_path\";s:14:\"node/add/photo\";s:11:\"router_path\";s:8:\"node/add\";s:10:\"link_title\";s:19:\"Photo Moorings 2014\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-41\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:3:\"499\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:18:\"i18n_node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:500;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"500\";s:4:\"plid\";s:1:\"6\";s:9:\"link_path\";s:28:\"node/add/photo-moorings-2012\";s:11:\"router_path\";s:28:\"node/add/photo-moorings-2012\";s:10:\"link_title\";s:19:\"Photo Moorings 2012\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-42\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:3:\"500\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:54:\"a:2:{i:0;s:6:\"create\";i:1;s:19:\"photo_moorings_2012\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:37:\"a:1:{i:0;s:19:\"photo_moorings_2012\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:28:\"node/add/photo-moorings-2012\";s:5:\"title\";s:19:\"Photo Moorings 2012\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:68:\"a:2:{i:0;s:19:\"photo_moorings_2012\";i:1;s:19:\"Photo Moorings 2012\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:522;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"522\";s:4:\"plid\";s:1:\"6\";s:9:\"link_path\";s:28:\"node/add/photo-moorings-2014\";s:11:\"router_path\";s:28:\"node/add/photo-moorings-2014\";s:10:\"link_title\";s:19:\"Photo Moorings 2014\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-40\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:3:\"522\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:54:\"a:2:{i:0;s:6:\"create\";i:1;s:19:\"photo_moorings_2014\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:37:\"a:1:{i:0;s:19:\"photo_moorings_2014\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:28:\"node/add/photo-moorings-2014\";s:5:\"title\";s:19:\"Photo Moorings 2014\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:68:\"a:2:{i:0;s:19:\"photo_moorings_2014\";i:1;s:19:\"Photo Moorings 2014\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:619;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"619\";s:4:\"plid\";s:1:\"6\";s:9:\"link_path\";s:14:\"node/add/forum\";s:11:\"router_path\";s:14:\"node/add/forum\";s:10:\"link_title\";s:11:\"Forum topic\";s:7:\"options\";s:119:\"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.\";}}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-46\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:3:\"619\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:39:\"a:2:{i:0;s:6:\"create\";i:1;s:5:\"forum\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:22:\"a:1:{i:0;s:5:\"forum\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:14:\"node/add/forum\";s:5:\"title\";s:11:\"Forum topic\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:45:\"a:2:{i:0;s:5:\"forum\";i:1;s:11:\"Forum topic\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:69:\"A <em>forum topic</em> starts a new discussion thread within a forum.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:708;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"708\";s:4:\"plid\";s:1:\"6\";s:9:\"link_path\";s:28:\"node/add/photo-moorings-2010\";s:11:\"router_path\";s:28:\"node/add/photo-moorings-2010\";s:10:\"link_title\";s:19:\"Photo Moorings 2010\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-43\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:3:\"708\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:54:\"a:2:{i:0;s:6:\"create\";i:1;s:19:\"photo_moorings_2010\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:37:\"a:1:{i:0;s:19:\"photo_moorings_2010\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:28:\"node/add/photo-moorings-2010\";s:5:\"title\";s:19:\"Photo Moorings 2010\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:68:\"a:2:{i:0;s:19:\"photo_moorings_2010\";i:1;s:19:\"Photo Moorings 2010\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:17;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"17\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"user/%\";s:11:\"router_path\";s:6:\"user/%\";s:10:\"link_title\";s:10:\"My account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_view_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"user_view_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:10:\"My account\";s:14:\"title_callback\";s:15:\"user_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:23;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"23\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"comment/reply/%\";s:11:\"router_path\";s:15:\"comment/reply/%\";s:10:\"link_title\";s:15:\"Add new comment\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"23\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:2;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:2;}\";s:13:\"page_callback\";s:13:\"comment_reply\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"comment/reply/%\";s:5:\"title\";s:15:\"Add new comment\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:27;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"27\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"taxonomy/term/%\";s:11:\"router_path\";s:15:\"taxonomy/term/%\";s:10:\"link_title\";s:13:\"Taxonomy term\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"27\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:36:\"a:1:{i:2;s:18:\"taxonomy_term_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:23:\"i18n_taxonomy_term_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"taxonomy/term/%\";s:5:\"title\";s:13:\"Taxonomy term\";s:14:\"title_callback\";s:23:\"i18n_taxonomy_term_name\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:187;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"187\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"search\";s:11:\"router_path\";s:6:\"search\";s:10:\"link_title\";s:6:\"Search\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"187\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:383;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"383\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/3\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:12:\"Cooperations\";s:7:\"options\";s:76:\"a:2:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-39\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"383\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:430;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"430\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/13\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2011/12 - PNRA XXVII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"430\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:431;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"431\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/14\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2013/14 - PNRA XXIX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-46\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"431\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:432;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"432\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/15\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:13:\"Pubblications\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-41\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"432\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:441;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"441\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/node\";s:11:\"router_path\";s:8:\"map/node\";s:10:\"link_title\";s:14:\"Node locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-42\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"441\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view node map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_node_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/node\";s:5:\"title\";s:14:\"Node locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:442;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"442\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/user\";s:11:\"router_path\";s:8:\"map/user\";s:10:\"link_title\";s:14:\"User locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-38\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"442\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view user map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/user\";s:5:\"title\";s:14:\"User locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:506;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"506\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/33\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-40\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"506\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:531;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"531\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/45\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:18:\"2014/15 - PNRA XXX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-47\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"531\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:606;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"606\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:10:\"chart/page\";s:11:\"router_path\";s:10:\"chart/page\";s:10:\"link_title\";s:18:\"Forecast as charts\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-36\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"606\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"chartModule_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"chart/page\";s:5:\"title\";s:18:\"Forecast as charts\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:608;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"608\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/82\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:4:\"Tide\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-34\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"608\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:614;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"614\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"contact\";s:11:\"router_path\";s:7:\"contact\";s:10:\"link_title\";s:7:\"Contact\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-37\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"614\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"access site-wide contact form\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:35:\"a:1:{i:0;s:17:\"contact_site_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:7:\"contact\";s:5:\"title\";s:7:\"Contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:615;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"615\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"forum\";s:11:\"router_path\";s:5:\"forum\";s:10:\"link_title\";s:6:\"Forums\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-35\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"615\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:10:\"forum_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"forum\";s:5:\"title\";s:6:\"Forums\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:790;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"790\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/124\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2015/16 - PNRA XXXI\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-48\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"790\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:791;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"791\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/129\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2016/17 - PNRA XXXII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-49\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"791\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:997;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"997\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/130\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:21:\"2017/18 - PNRA XXXIII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"997\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:10:{i:3;a:1:{i:383;R:850;}i:13;a:1:{i:430;R:898;}i:14;a:1:{i:431;R:946;}i:15;a:1:{i:432;R:994;}i:33;a:1:{i:506;R:1136;}i:45;a:1:{i:531;R:1184;}i:82;a:1:{i:608;R:1279;}i:124;a:1:{i:790;R:1421;}i:129;a:1:{i:791;R:1469;}i:130;a:1:{i:997;R:1517;}}}',0,1652163414,1),('links:navigation:tree-data:en:c5d2b02d14f21aee014481f360cf0680f2751db5e63c1392f809251b4116b08c','a:2:{s:4:\"tree\";a:23:{i:3;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"3\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:9:\"comment/%\";s:11:\"router_path\";s:9:\"comment/%\";s:10:\"link_title\";s:17:\"Comment permalink\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"3\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:1;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"access comments\";}\";s:13:\"page_callback\";s:17:\"comment_permalink\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:9:\"comment/%\";s:5:\"title\";s:17:\"Comment permalink\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:4;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"4\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"filter/tips\";s:11:\"router_path\";s:11:\"filter/tips\";s:10:\"link_title\";s:12:\"Compose tips\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-43\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"4\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"filter_tips_long\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"filter/tips\";s:5:\"title\";s:12:\"Compose tips\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:5;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"5\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/%\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:0:\"\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:6;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"6\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/add\";s:11:\"router_path\";s:8:\"node/add\";s:10:\"link_title\";s:11:\"Add content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-44\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:18:\"i18n_node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:17;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"17\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"user/%\";s:11:\"router_path\";s:6:\"user/%\";s:10:\"link_title\";s:10:\"My account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_view_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"user_view_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:10:\"My account\";s:14:\"title_callback\";s:15:\"user_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:23;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"23\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"comment/reply/%\";s:11:\"router_path\";s:15:\"comment/reply/%\";s:10:\"link_title\";s:15:\"Add new comment\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"23\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:2;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:2;}\";s:13:\"page_callback\";s:13:\"comment_reply\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"comment/reply/%\";s:5:\"title\";s:15:\"Add new comment\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:27;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"27\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"taxonomy/term/%\";s:11:\"router_path\";s:15:\"taxonomy/term/%\";s:10:\"link_title\";s:13:\"Taxonomy term\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"27\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:36:\"a:1:{i:2;s:18:\"taxonomy_term_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:23:\"i18n_taxonomy_term_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"taxonomy/term/%\";s:5:\"title\";s:13:\"Taxonomy term\";s:14:\"title_callback\";s:23:\"i18n_taxonomy_term_name\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:187;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"187\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"search\";s:11:\"router_path\";s:6:\"search\";s:10:\"link_title\";s:6:\"Search\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"187\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:383;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"383\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/3\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:12:\"Cooperations\";s:7:\"options\";s:76:\"a:2:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-39\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"383\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:430;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"430\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/13\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2011/12 - PNRA XXVII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"430\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:431;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"431\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/14\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2013/14 - PNRA XXIX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-46\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"431\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:432;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"432\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/15\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:13:\"Pubblications\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-41\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"432\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:441;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"441\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/node\";s:11:\"router_path\";s:8:\"map/node\";s:10:\"link_title\";s:14:\"Node locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-42\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"441\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view node map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_node_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/node\";s:5:\"title\";s:14:\"Node locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:442;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"442\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/user\";s:11:\"router_path\";s:8:\"map/user\";s:10:\"link_title\";s:14:\"User locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-38\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"442\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view user map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/user\";s:5:\"title\";s:14:\"User locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:506;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"506\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/33\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-40\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"506\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:531;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"531\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/45\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:18:\"2014/15 - PNRA XXX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-47\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"531\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:606;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"606\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:10:\"chart/page\";s:11:\"router_path\";s:10:\"chart/page\";s:10:\"link_title\";s:18:\"Forecast as charts\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-36\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"606\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"chartModule_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"chart/page\";s:5:\"title\";s:18:\"Forecast as charts\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:608;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"608\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/82\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:4:\"Tide\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-34\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"608\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:614;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"614\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"contact\";s:11:\"router_path\";s:7:\"contact\";s:10:\"link_title\";s:7:\"Contact\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-37\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"614\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"access site-wide contact form\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:35:\"a:1:{i:0;s:17:\"contact_site_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:7:\"contact\";s:5:\"title\";s:7:\"Contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:615;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"615\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"forum\";s:11:\"router_path\";s:5:\"forum\";s:10:\"link_title\";s:6:\"Forums\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-35\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"615\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:10:\"forum_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"forum\";s:5:\"title\";s:6:\"Forums\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:790;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"790\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/124\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2015/16 - PNRA XXXI\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-48\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"790\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:791;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"791\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/129\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2016/17 - PNRA XXXII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-49\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"791\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:997;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"997\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/130\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:21:\"2017/18 - PNRA XXXIII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"997\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:10:{i:3;a:1:{i:383;R:380;}i:13;a:1:{i:430;R:428;}i:14;a:1:{i:431;R:476;}i:15;a:1:{i:432;R:524;}i:33;a:1:{i:506;R:666;}i:45;a:1:{i:531;R:714;}i:82;a:1:{i:608;R:809;}i:124;a:1:{i:790;R:951;}i:129;a:1:{i:791;R:999;}i:130;a:1:{i:997;R:1047;}}}',0,1539006232,1),('links:navigation:tree-data:en:cc28db15f733c5521ab9feb7aad41fec644ccfa0b83430f01eb3231cb6543148','a:2:{s:4:\"tree\";a:23:{i:3;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"3\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:9:\"comment/%\";s:11:\"router_path\";s:9:\"comment/%\";s:10:\"link_title\";s:17:\"Comment permalink\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"3\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:1;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"access comments\";}\";s:13:\"page_callback\";s:17:\"comment_permalink\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:9:\"comment/%\";s:5:\"title\";s:17:\"Comment permalink\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:4;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"4\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"filter/tips\";s:11:\"router_path\";s:11:\"filter/tips\";s:10:\"link_title\";s:12:\"Compose tips\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-43\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"4\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"filter_tips_long\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"filter/tips\";s:5:\"title\";s:12:\"Compose tips\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:5;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"5\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/%\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:0:\"\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:6;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"6\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/add\";s:11:\"router_path\";s:8:\"node/add\";s:10:\"link_title\";s:11:\"Add content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-44\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:18:\"i18n_node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:17;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"17\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"user/%\";s:11:\"router_path\";s:6:\"user/%\";s:10:\"link_title\";s:10:\"My account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_view_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"user_view_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:10:\"My account\";s:14:\"title_callback\";s:15:\"user_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:23;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"23\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"comment/reply/%\";s:11:\"router_path\";s:15:\"comment/reply/%\";s:10:\"link_title\";s:15:\"Add new comment\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"23\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:2;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:2;}\";s:13:\"page_callback\";s:13:\"comment_reply\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"comment/reply/%\";s:5:\"title\";s:15:\"Add new comment\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:27;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"27\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"taxonomy/term/%\";s:11:\"router_path\";s:15:\"taxonomy/term/%\";s:10:\"link_title\";s:13:\"Taxonomy term\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"27\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:36:\"a:1:{i:2;s:18:\"taxonomy_term_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:23:\"i18n_taxonomy_term_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"taxonomy/term/%\";s:5:\"title\";s:13:\"Taxonomy term\";s:14:\"title_callback\";s:23:\"i18n_taxonomy_term_name\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:187;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"187\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"search\";s:11:\"router_path\";s:6:\"search\";s:10:\"link_title\";s:6:\"Search\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"187\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:383;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"383\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/3\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:12:\"Cooperations\";s:7:\"options\";s:76:\"a:2:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-39\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"383\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:430;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"430\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/13\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2011/12 - PNRA XXVII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"430\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:431;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"431\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/14\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2013/14 - PNRA XXIX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-46\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"431\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:432;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"432\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/15\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:13:\"Pubblications\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-41\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"432\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:441;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"441\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/node\";s:11:\"router_path\";s:8:\"map/node\";s:10:\"link_title\";s:14:\"Node locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-42\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"441\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view node map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_node_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/node\";s:5:\"title\";s:14:\"Node locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:442;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"442\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/user\";s:11:\"router_path\";s:8:\"map/user\";s:10:\"link_title\";s:14:\"User locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-38\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"442\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view user map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/user\";s:5:\"title\";s:14:\"User locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:506;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"506\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/33\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-40\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"506\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:531;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"531\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/45\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:18:\"2014/15 - PNRA XXX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-47\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"531\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:606;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"606\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:10:\"chart/page\";s:11:\"router_path\";s:10:\"chart/page\";s:10:\"link_title\";s:18:\"Forecast as charts\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-36\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"606\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"chartModule_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"chart/page\";s:5:\"title\";s:18:\"Forecast as charts\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:608;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"608\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/82\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:4:\"Tide\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-34\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"608\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:614;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"614\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"contact\";s:11:\"router_path\";s:7:\"contact\";s:10:\"link_title\";s:7:\"Contact\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-37\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"614\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"access site-wide contact form\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:35:\"a:1:{i:0;s:17:\"contact_site_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:7:\"contact\";s:5:\"title\";s:7:\"Contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:615;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"615\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"forum\";s:11:\"router_path\";s:5:\"forum\";s:10:\"link_title\";s:6:\"Forums\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-35\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"615\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:10:\"forum_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"forum\";s:5:\"title\";s:6:\"Forums\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:790;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"790\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/124\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2015/16 - PNRA XXXI\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-48\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"790\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:791;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"791\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/129\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2016/17 - PNRA XXXII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-49\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"791\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:997;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"997\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/130\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:21:\"2017/18 - PNRA XXXIII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"997\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:10:{i:3;a:1:{i:383;R:380;}i:13;a:1:{i:430;R:428;}i:14;a:1:{i:431;R:476;}i:15;a:1:{i:432;R:524;}i:33;a:1:{i:506;R:666;}i:45;a:1:{i:531;R:714;}i:82;a:1:{i:608;R:809;}i:124;a:1:{i:790;R:951;}i:129;a:1:{i:791;R:999;}i:130;a:1:{i:997;R:1047;}}}',0,1538751274,1),('links:navigation:tree-data:en:dd5bd999d09fe5662035ef988fc6325d7e7645e11a95d9506da93336f34898a7','a:2:{s:4:\"tree\";a:23:{i:3;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"3\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:9:\"comment/%\";s:11:\"router_path\";s:9:\"comment/%\";s:10:\"link_title\";s:17:\"Comment permalink\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"3\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:1;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"access comments\";}\";s:13:\"page_callback\";s:17:\"comment_permalink\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:9:\"comment/%\";s:5:\"title\";s:17:\"Comment permalink\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:4;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"4\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"filter/tips\";s:11:\"router_path\";s:11:\"filter/tips\";s:10:\"link_title\";s:12:\"Compose tips\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-43\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"4\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"filter_tips_long\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"filter/tips\";s:5:\"title\";s:12:\"Compose tips\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:5;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"5\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/%\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:0:\"\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:7:{i:38;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"38\";s:4:\"plid\";s:1:\"5\";s:9:\"link_path\";s:13:\"node/%/delete\";s:11:\"router_path\";s:13:\"node/%/delete\";s:10:\"link_title\";s:6:\"Delete\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"1\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:2:\"38\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:31:\"a:2:{i:0;s:6:\"delete\";i:1;i:1;}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:45:\"a:2:{i:0;s:19:\"node_delete_confirm\";i:1;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:6:\"Delete\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:41;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"41\";s:4:\"plid\";s:1:\"5\";s:9:\"link_path\";s:11:\"node/%/edit\";s:11:\"router_path\";s:11:\"node/%/edit\";s:10:\"link_title\";s:4:\"Edit\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:2:\"41\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:30:\"entity_translation_edit_access\";s:16:\"access_arguments\";s:381:\"a:6:{i:0;s:4:\"node\";i:1;i:1;i:2;b:0;i:3;a:10:{s:5:\"title\";s:4:\"Edit\";s:13:\"page callback\";s:14:\"node_page_edit\";s:14:\"page arguments\";a:1:{i:0;i:1;}s:15:\"access callback\";s:11:\"node_access\";s:16:\"access arguments\";a:2:{i:0;s:6:\"update\";i:1;i:1;}s:6:\"weight\";i:0;s:4:\"type\";i:132;s:7:\"context\";i:3;s:4:\"file\";s:14:\"node.pages.inc\";s:6:\"module\";s:4:\"node\";}i:4;s:6:\"update\";i:5;i:1;}\";s:13:\"page_callback\";s:28:\"entity_translation_edit_page\";s:14:\"page_arguments\";s:364:\"a:5:{i:0;s:4:\"node\";i:1;i:1;i:2;b:0;i:3;a:10:{s:5:\"title\";s:4:\"Edit\";s:13:\"page callback\";s:14:\"node_page_edit\";s:14:\"page arguments\";a:1:{i:0;i:1;}s:15:\"access callback\";s:11:\"node_access\";s:16:\"access arguments\";a:2:{i:0;s:6:\"update\";i:1;i:1;}s:6:\"weight\";i:0;s:4:\"type\";i:132;s:7:\"context\";i:3;s:4:\"file\";s:14:\"node.pages.inc\";s:6:\"module\";s:4:\"node\";}i:4;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:4:\"Edit\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:52;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"52\";s:4:\"plid\";s:1:\"5\";s:9:\"link_path\";s:16:\"node/%/revisions\";s:11:\"router_path\";s:16:\"node/%/revisions\";s:10:\"link_title\";s:9:\"Revisions\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:2:\"52\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:21:\"_node_revision_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:22:\"node_revision_overview\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"Revisions\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:62;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"62\";s:4:\"plid\";s:1:\"5\";s:9:\"link_path\";s:11:\"node/%/view\";s:11:\"router_path\";s:11:\"node/%/view\";s:10:\"link_title\";s:4:\"View\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:2:\"62\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:4:\"View\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:308;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"308\";s:4:\"plid\";s:1:\"5\";s:9:\"link_path\";s:16:\"node/%/translate\";s:11:\"router_path\";s:16:\"node/%/translate\";s:10:\"link_title\";s:9:\"Translate\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"1\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:3:\"308\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:34:\"entity_translation_node_tab_access\";s:16:\"access_arguments\";s:57:\"a:3:{i:0;i:1;i:1;s:23:\"_translation_tab_access\";i:2;i:1;}\";s:13:\"page_callback\";s:27:\"entity_translation_overview\";s:14:\"page_arguments\";s:173:\"a:4:{i:0;s:4:\"node\";i:1;i:1;i:2;a:3:{s:13:\"page callback\";s:30:\"i18n_node_translation_overview\";s:4:\"file\";s:19:\"i18n_node.pages.inc\";s:6:\"module\";s:9:\"i18n_node\";}i:3;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"Translate\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:396;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"396\";s:4:\"plid\";s:1:\"5\";s:9:\"link_path\";s:13:\"node/%/photos\";s:11:\"router_path\";s:13:\"node/%/photos\";s:10:\"link_title\";s:17:\"Images Management\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:3:\"396\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:14:\"_photos_access\";s:16:\"access_arguments\";s:34:\"a:2:{i:0;s:9:\"editAlbum\";i:1;i:1;}\";s:13:\"page_callback\";s:16:\"photos_edit_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:17:\"Images Management\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:397;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"397\";s:4:\"plid\";s:1:\"5\";s:9:\"link_path\";s:18:\"node/%/photos-sort\";s:11:\"router_path\";s:18:\"node/%/photos-sort\";s:10:\"link_title\";s:10:\"Re-arrange\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:3:\"397\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:14:\"_photos_access\";s:16:\"access_arguments\";s:34:\"a:2:{i:0;s:9:\"editAlbum\";i:1;i:1;}\";s:13:\"page_callback\";s:21:\"photos_edit_sort_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:10:\"Re-arrange\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:6;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"6\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/add\";s:11:\"router_path\";s:8:\"node/add\";s:10:\"link_title\";s:11:\"Add content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-44\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:18:\"i18n_node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:17;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"17\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"user/%\";s:11:\"router_path\";s:6:\"user/%\";s:10:\"link_title\";s:10:\"My account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_view_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"user_view_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:10:\"My account\";s:14:\"title_callback\";s:15:\"user_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:23;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"23\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"comment/reply/%\";s:11:\"router_path\";s:15:\"comment/reply/%\";s:10:\"link_title\";s:15:\"Add new comment\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"23\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:2;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:2;}\";s:13:\"page_callback\";s:13:\"comment_reply\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"comment/reply/%\";s:5:\"title\";s:15:\"Add new comment\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:27;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"27\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"taxonomy/term/%\";s:11:\"router_path\";s:15:\"taxonomy/term/%\";s:10:\"link_title\";s:13:\"Taxonomy term\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"27\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:36:\"a:1:{i:2;s:18:\"taxonomy_term_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:23:\"i18n_taxonomy_term_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"taxonomy/term/%\";s:5:\"title\";s:13:\"Taxonomy term\";s:14:\"title_callback\";s:23:\"i18n_taxonomy_term_name\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:187;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"187\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"search\";s:11:\"router_path\";s:6:\"search\";s:10:\"link_title\";s:6:\"Search\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"187\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:383;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"383\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/3\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:12:\"Cooperations\";s:7:\"options\";s:76:\"a:2:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-39\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"383\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:430;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"430\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/13\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2011/12 - PNRA XXVII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"430\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:431;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"431\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/14\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2013/14 - PNRA XXIX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-46\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"431\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:432;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"432\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/15\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:13:\"Pubblications\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-41\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"432\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:441;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"441\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/node\";s:11:\"router_path\";s:8:\"map/node\";s:10:\"link_title\";s:14:\"Node locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-42\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"441\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view node map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_node_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/node\";s:5:\"title\";s:14:\"Node locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:442;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"442\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/user\";s:11:\"router_path\";s:8:\"map/user\";s:10:\"link_title\";s:14:\"User locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-38\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"442\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view user map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/user\";s:5:\"title\";s:14:\"User locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:506;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"506\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/33\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-40\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"506\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:531;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"531\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/45\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:18:\"2014/15 - PNRA XXX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-47\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"531\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:606;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"606\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:10:\"chart/page\";s:11:\"router_path\";s:10:\"chart/page\";s:10:\"link_title\";s:18:\"Forecast as charts\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-36\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"606\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"chartModule_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"chart/page\";s:5:\"title\";s:18:\"Forecast as charts\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:608;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"608\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/82\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:4:\"Tide\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-34\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"608\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:614;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"614\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"contact\";s:11:\"router_path\";s:7:\"contact\";s:10:\"link_title\";s:7:\"Contact\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-37\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"614\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"access site-wide contact form\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:35:\"a:1:{i:0;s:17:\"contact_site_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:7:\"contact\";s:5:\"title\";s:7:\"Contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:615;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"615\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"forum\";s:11:\"router_path\";s:5:\"forum\";s:10:\"link_title\";s:6:\"Forums\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-35\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"615\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:10:\"forum_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"forum\";s:5:\"title\";s:6:\"Forums\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:790;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"790\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/124\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2015/16 - PNRA XXXI\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-48\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"790\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:791;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"791\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/129\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2016/17 - PNRA XXXII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-49\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"791\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:997;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"997\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/130\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:21:\"2017/18 - PNRA XXXIII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"997\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:10:{i:3;a:1:{i:383;R:709;}i:13;a:1:{i:430;R:757;}i:14;a:1:{i:431;R:805;}i:15;a:1:{i:432;R:853;}i:33;a:1:{i:506;R:995;}i:45;a:1:{i:531;R:1043;}i:82;a:1:{i:608;R:1138;}i:124;a:1:{i:790;R:1280;}i:129;a:1:{i:791;R:1328;}i:130;a:1:{i:997;R:1376;}}}',0,1542128828,1),('links:navigation:tree-data:en:efdf11e5f338c1568e75e558148dc8341df920560f4ad353c4890f2dad3e3fb8','a:2:{s:4:\"tree\";a:23:{i:3;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"3\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:9:\"comment/%\";s:11:\"router_path\";s:9:\"comment/%\";s:10:\"link_title\";s:17:\"Comment permalink\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"3\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:1;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"access comments\";}\";s:13:\"page_callback\";s:17:\"comment_permalink\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:9:\"comment/%\";s:5:\"title\";s:17:\"Comment permalink\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:4;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"4\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"filter/tips\";s:11:\"router_path\";s:11:\"filter/tips\";s:10:\"link_title\";s:12:\"Compose tips\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-43\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"4\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"filter_tips_long\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"filter/tips\";s:5:\"title\";s:12:\"Compose tips\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:5;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"5\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/%\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:0:\"\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:6;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"6\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/add\";s:11:\"router_path\";s:8:\"node/add\";s:10:\"link_title\";s:11:\"Add content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-44\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:18:\"i18n_node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:17;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"17\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"user/%\";s:11:\"router_path\";s:6:\"user/%\";s:10:\"link_title\";s:10:\"My account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_view_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"user_view_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:10:\"My account\";s:14:\"title_callback\";s:15:\"user_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:23;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"23\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"comment/reply/%\";s:11:\"router_path\";s:15:\"comment/reply/%\";s:10:\"link_title\";s:15:\"Add new comment\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"23\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:2;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:2;}\";s:13:\"page_callback\";s:13:\"comment_reply\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"comment/reply/%\";s:5:\"title\";s:15:\"Add new comment\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:27;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"27\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"taxonomy/term/%\";s:11:\"router_path\";s:15:\"taxonomy/term/%\";s:10:\"link_title\";s:13:\"Taxonomy term\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"27\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:36:\"a:1:{i:2;s:18:\"taxonomy_term_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:23:\"i18n_taxonomy_term_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"taxonomy/term/%\";s:5:\"title\";s:13:\"Taxonomy term\";s:14:\"title_callback\";s:23:\"i18n_taxonomy_term_name\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:187;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"187\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"search\";s:11:\"router_path\";s:6:\"search\";s:10:\"link_title\";s:6:\"Search\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"187\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:383;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"383\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/3\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:12:\"Cooperations\";s:7:\"options\";s:76:\"a:2:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-39\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"383\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:430;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"430\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/13\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2011/12 - PNRA XXVII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"430\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:431;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"431\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/14\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2013/14 - PNRA XXIX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-46\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"431\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:432;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"432\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/15\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:13:\"Pubblications\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-41\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"432\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:441;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"441\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/node\";s:11:\"router_path\";s:8:\"map/node\";s:10:\"link_title\";s:14:\"Node locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-42\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"441\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view node map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_node_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/node\";s:5:\"title\";s:14:\"Node locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:442;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"442\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/user\";s:11:\"router_path\";s:8:\"map/user\";s:10:\"link_title\";s:14:\"User locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-38\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"442\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view user map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/user\";s:5:\"title\";s:14:\"User locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:506;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"506\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/33\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-40\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"506\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:531;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"531\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/45\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:18:\"2014/15 - PNRA XXX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-47\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"531\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:606;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"606\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:10:\"chart/page\";s:11:\"router_path\";s:10:\"chart/page\";s:10:\"link_title\";s:18:\"Forecast as charts\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-36\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"606\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"chartModule_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"chart/page\";s:5:\"title\";s:18:\"Forecast as charts\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:0:{}}i:608;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"608\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/82\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:4:\"Tide\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-34\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"608\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:614;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"614\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"contact\";s:11:\"router_path\";s:7:\"contact\";s:10:\"link_title\";s:7:\"Contact\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-37\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"614\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"access site-wide contact form\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:35:\"a:1:{i:0;s:17:\"contact_site_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:7:\"contact\";s:5:\"title\";s:7:\"Contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:615;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"615\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"forum\";s:11:\"router_path\";s:5:\"forum\";s:10:\"link_title\";s:6:\"Forums\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-35\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"615\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:10:\"forum_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"forum\";s:5:\"title\";s:6:\"Forums\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:790;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"790\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/124\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2015/16 - PNRA XXXI\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-48\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"790\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:791;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"791\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/129\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2016/17 - PNRA XXXII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-49\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"791\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:997;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"997\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/130\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:21:\"2017/18 - PNRA XXXIII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"997\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:10:{i:3;a:1:{i:383;R:380;}i:13;a:1:{i:430;R:428;}i:14;a:1:{i:431;R:476;}i:15;a:1:{i:432;R:524;}i:33;a:1:{i:506;R:666;}i:45;a:1:{i:531;R:714;}i:82;a:1:{i:608;R:809;}i:124;a:1:{i:790;R:951;}i:129;a:1:{i:791;R:999;}i:130;a:1:{i:997;R:1047;}}}',0,1538751321,1),('links:navigation:tree-data:en:f1ae772ecba8ed1dd81fd3ea5c7528dd9d7e46f7464b87e15d9c32a6a1ab7141','a:2:{s:4:\"tree\";a:23:{i:3;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"3\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:9:\"comment/%\";s:11:\"router_path\";s:9:\"comment/%\";s:10:\"link_title\";s:17:\"Comment permalink\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"3\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:1;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"access comments\";}\";s:13:\"page_callback\";s:17:\"comment_permalink\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:9:\"comment/%\";s:5:\"title\";s:17:\"Comment permalink\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:4;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"4\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"filter/tips\";s:11:\"router_path\";s:11:\"filter/tips\";s:10:\"link_title\";s:12:\"Compose tips\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-43\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"4\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"filter_tips_long\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"filter/tips\";s:5:\"title\";s:12:\"Compose tips\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:5;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"5\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/%\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:0:\"\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:6;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"6\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/add\";s:11:\"router_path\";s:8:\"node/add\";s:10:\"link_title\";s:11:\"Add content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-44\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:18:\"i18n_node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:17;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"17\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"user/%\";s:11:\"router_path\";s:6:\"user/%\";s:10:\"link_title\";s:10:\"My account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_view_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"user_view_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:10:\"My account\";s:14:\"title_callback\";s:15:\"user_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:23;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"23\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"comment/reply/%\";s:11:\"router_path\";s:15:\"comment/reply/%\";s:10:\"link_title\";s:15:\"Add new comment\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"23\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:2;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:2;}\";s:13:\"page_callback\";s:13:\"comment_reply\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"comment/reply/%\";s:5:\"title\";s:15:\"Add new comment\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:27;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"27\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"taxonomy/term/%\";s:11:\"router_path\";s:15:\"taxonomy/term/%\";s:10:\"link_title\";s:13:\"Taxonomy term\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"27\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:36:\"a:1:{i:2;s:18:\"taxonomy_term_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:23:\"i18n_taxonomy_term_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"taxonomy/term/%\";s:5:\"title\";s:13:\"Taxonomy term\";s:14:\"title_callback\";s:23:\"i18n_taxonomy_term_name\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:187;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"187\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"search\";s:11:\"router_path\";s:6:\"search\";s:10:\"link_title\";s:6:\"Search\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"187\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:383;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"383\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/3\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:12:\"Cooperations\";s:7:\"options\";s:76:\"a:2:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-39\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"383\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:430;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"430\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/13\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2011/12 - PNRA XXVII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"430\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:431;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"431\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/14\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2013/14 - PNRA XXIX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-46\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"431\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:432;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"432\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/15\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:13:\"Pubblications\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-41\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"432\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:441;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"441\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/node\";s:11:\"router_path\";s:8:\"map/node\";s:10:\"link_title\";s:14:\"Node locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-42\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"441\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view node map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_node_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/node\";s:5:\"title\";s:14:\"Node locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:442;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"442\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/user\";s:11:\"router_path\";s:8:\"map/user\";s:10:\"link_title\";s:14:\"User locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-38\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"442\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view user map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/user\";s:5:\"title\";s:14:\"User locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:506;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"506\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/33\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-40\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"506\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:531;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"531\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/45\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:18:\"2014/15 - PNRA XXX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-47\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"531\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:606;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"606\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:10:\"chart/page\";s:11:\"router_path\";s:10:\"chart/page\";s:10:\"link_title\";s:18:\"Forecast as charts\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-36\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"606\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"chartModule_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"chart/page\";s:5:\"title\";s:18:\"Forecast as charts\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:608;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"608\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/82\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:4:\"Tide\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-34\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"608\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:614;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"614\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"contact\";s:11:\"router_path\";s:7:\"contact\";s:10:\"link_title\";s:7:\"Contact\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-37\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"614\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"access site-wide contact form\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:35:\"a:1:{i:0;s:17:\"contact_site_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:7:\"contact\";s:5:\"title\";s:7:\"Contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:615;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"615\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"forum\";s:11:\"router_path\";s:5:\"forum\";s:10:\"link_title\";s:6:\"Forums\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-35\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"615\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:10:\"forum_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"forum\";s:5:\"title\";s:6:\"Forums\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:790;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"790\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/124\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2015/16 - PNRA XXXI\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-48\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"790\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:791;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"791\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/129\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2016/17 - PNRA XXXII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-49\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"791\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:997;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"997\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/130\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:21:\"2017/18 - PNRA XXXIII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"997\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:10:{i:3;a:1:{i:383;R:380;}i:13;a:1:{i:430;R:428;}i:14;a:1:{i:431;R:476;}i:15;a:1:{i:432;R:524;}i:33;a:1:{i:506;R:666;}i:45;a:1:{i:531;R:714;}i:82;a:1:{i:608;R:809;}i:124;a:1:{i:790;R:951;}i:129;a:1:{i:791;R:999;}i:130;a:1:{i:997;R:1047;}}}',0,1652162651,1),('links:navigation:tree-data:en:f922818cfacd1a604d30ff55416c4383e8a65ff86ac7901322c5ea7ed97e7411','a:2:{s:4:\"tree\";a:23:{i:3;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"3\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:9:\"comment/%\";s:11:\"router_path\";s:9:\"comment/%\";s:10:\"link_title\";s:17:\"Comment permalink\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"3\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:1;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"access comments\";}\";s:13:\"page_callback\";s:17:\"comment_permalink\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:9:\"comment/%\";s:5:\"title\";s:17:\"Comment permalink\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:4;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"4\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"filter/tips\";s:11:\"router_path\";s:11:\"filter/tips\";s:10:\"link_title\";s:12:\"Compose tips\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-43\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"4\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"filter_tips_long\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"filter/tips\";s:5:\"title\";s:12:\"Compose tips\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:5;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"5\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/%\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:0:\"\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:6;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"6\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/add\";s:11:\"router_path\";s:8:\"node/add\";s:10:\"link_title\";s:11:\"Add content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-44\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:18:\"i18n_node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:17;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"17\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"user/%\";s:11:\"router_path\";s:6:\"user/%\";s:10:\"link_title\";s:10:\"My account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_view_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"user_view_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:10:\"My account\";s:14:\"title_callback\";s:15:\"user_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:23;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"23\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"comment/reply/%\";s:11:\"router_path\";s:15:\"comment/reply/%\";s:10:\"link_title\";s:15:\"Add new comment\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"23\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:2;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:2;}\";s:13:\"page_callback\";s:13:\"comment_reply\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"comment/reply/%\";s:5:\"title\";s:15:\"Add new comment\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:27;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"27\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"taxonomy/term/%\";s:11:\"router_path\";s:15:\"taxonomy/term/%\";s:10:\"link_title\";s:13:\"Taxonomy term\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"27\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:36:\"a:1:{i:2;s:18:\"taxonomy_term_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:23:\"i18n_taxonomy_term_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"taxonomy/term/%\";s:5:\"title\";s:13:\"Taxonomy term\";s:14:\"title_callback\";s:23:\"i18n_taxonomy_term_name\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:187;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"187\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"search\";s:11:\"router_path\";s:6:\"search\";s:10:\"link_title\";s:6:\"Search\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"187\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:383;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"383\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/3\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:12:\"Cooperations\";s:7:\"options\";s:76:\"a:2:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-39\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"383\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:430;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"430\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/13\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2011/12 - PNRA XXVII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"430\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:431;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"431\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/14\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2013/14 - PNRA XXIX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-46\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"431\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:432;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"432\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/15\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:13:\"Pubblications\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-41\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"432\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:441;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"441\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/node\";s:11:\"router_path\";s:8:\"map/node\";s:10:\"link_title\";s:14:\"Node locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-42\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"441\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view node map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_node_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/node\";s:5:\"title\";s:14:\"Node locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:442;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"442\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/user\";s:11:\"router_path\";s:8:\"map/user\";s:10:\"link_title\";s:14:\"User locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-38\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"442\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view user map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/user\";s:5:\"title\";s:14:\"User locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:506;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"506\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/33\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-40\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"506\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:531;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"531\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/45\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:18:\"2014/15 - PNRA XXX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-47\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"531\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:606;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"606\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:10:\"chart/page\";s:11:\"router_path\";s:10:\"chart/page\";s:10:\"link_title\";s:18:\"Forecast as charts\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-36\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"606\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"chartModule_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"chart/page\";s:5:\"title\";s:18:\"Forecast as charts\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:608;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"608\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/82\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:4:\"Tide\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-34\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"608\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:614;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"614\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"contact\";s:11:\"router_path\";s:7:\"contact\";s:10:\"link_title\";s:7:\"Contact\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-37\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"614\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"access site-wide contact form\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:35:\"a:1:{i:0;s:17:\"contact_site_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:7:\"contact\";s:5:\"title\";s:7:\"Contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:615;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"615\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"forum\";s:11:\"router_path\";s:5:\"forum\";s:10:\"link_title\";s:6:\"Forums\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-35\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"615\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:10:\"forum_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"forum\";s:5:\"title\";s:6:\"Forums\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:790;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"790\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/124\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2015/16 - PNRA XXXI\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-48\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"790\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:791;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"791\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/129\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2016/17 - PNRA XXXII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-49\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"791\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:997;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"997\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/130\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:21:\"2017/18 - PNRA XXXIII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"997\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:10:{i:3;a:1:{i:383;R:380;}i:13;a:1:{i:430;R:428;}i:14;a:1:{i:431;R:476;}i:15;a:1:{i:432;R:524;}i:33;a:1:{i:506;R:666;}i:45;a:1:{i:531;R:714;}i:82;a:1:{i:608;R:809;}i:124;a:1:{i:790;R:951;}i:129;a:1:{i:791;R:999;}i:130;a:1:{i:997;R:1047;}}}',0,1539006152,1),('links:navigation:tree-data:it:04e8280bf0e0325b1bbba5a8cf4726ba28349ad8f0c9932e3125b12e01b3e2f9','a:2:{s:4:\"tree\";a:23:{i:3;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"3\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:9:\"comment/%\";s:11:\"router_path\";s:9:\"comment/%\";s:10:\"link_title\";s:17:\"Comment permalink\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"3\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:1;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"access comments\";}\";s:13:\"page_callback\";s:17:\"comment_permalink\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:9:\"comment/%\";s:5:\"title\";s:17:\"Comment permalink\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:4;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"4\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"filter/tips\";s:11:\"router_path\";s:11:\"filter/tips\";s:10:\"link_title\";s:12:\"Compose tips\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-43\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"4\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"filter_tips_long\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"filter/tips\";s:5:\"title\";s:12:\"Compose tips\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:5;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"5\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/%\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:0:\"\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:6;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"6\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/add\";s:11:\"router_path\";s:8:\"node/add\";s:10:\"link_title\";s:11:\"Add content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-44\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:18:\"i18n_node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:17;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"17\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"user/%\";s:11:\"router_path\";s:6:\"user/%\";s:10:\"link_title\";s:10:\"My account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_view_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"user_view_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:10:\"My account\";s:14:\"title_callback\";s:15:\"user_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:23;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"23\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"comment/reply/%\";s:11:\"router_path\";s:15:\"comment/reply/%\";s:10:\"link_title\";s:15:\"Add new comment\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"23\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:2;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:2;}\";s:13:\"page_callback\";s:13:\"comment_reply\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"comment/reply/%\";s:5:\"title\";s:15:\"Add new comment\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:27;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"27\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"taxonomy/term/%\";s:11:\"router_path\";s:15:\"taxonomy/term/%\";s:10:\"link_title\";s:13:\"Taxonomy term\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"27\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:36:\"a:1:{i:2;s:18:\"taxonomy_term_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:23:\"i18n_taxonomy_term_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"taxonomy/term/%\";s:5:\"title\";s:13:\"Taxonomy term\";s:14:\"title_callback\";s:23:\"i18n_taxonomy_term_name\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:187;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"187\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"search\";s:11:\"router_path\";s:6:\"search\";s:10:\"link_title\";s:6:\"Search\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"187\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:383;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"383\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/3\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:12:\"Cooperations\";s:7:\"options\";s:76:\"a:2:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-39\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"383\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:430;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"430\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/13\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2011/12 - PNRA XXVII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"430\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:431;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"431\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/14\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2013/14 - PNRA XXIX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-46\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"431\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:432;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"432\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/15\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:13:\"Pubblications\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-41\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"432\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:441;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"441\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/node\";s:11:\"router_path\";s:8:\"map/node\";s:10:\"link_title\";s:14:\"Node locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-42\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"441\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view node map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_node_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/node\";s:5:\"title\";s:14:\"Node locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:442;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"442\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/user\";s:11:\"router_path\";s:8:\"map/user\";s:10:\"link_title\";s:14:\"User locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-38\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"442\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view user map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/user\";s:5:\"title\";s:14:\"User locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:506;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"506\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/33\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-40\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"506\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:531;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"531\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/45\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:18:\"2014/15 - PNRA XXX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-47\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"531\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:606;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"606\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:10:\"chart/page\";s:11:\"router_path\";s:10:\"chart/page\";s:10:\"link_title\";s:18:\"Forecast as charts\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-36\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"606\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"chartModule_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"chart/page\";s:5:\"title\";s:18:\"Forecast as charts\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:608;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"608\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/82\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:4:\"Tide\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-34\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"608\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:614;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"614\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"contact\";s:11:\"router_path\";s:7:\"contact\";s:10:\"link_title\";s:7:\"Contact\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-37\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"614\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"access site-wide contact form\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:35:\"a:1:{i:0;s:17:\"contact_site_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:7:\"contact\";s:5:\"title\";s:7:\"Contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:615;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"615\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"forum\";s:11:\"router_path\";s:5:\"forum\";s:10:\"link_title\";s:6:\"Forums\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-35\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"615\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:10:\"forum_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"forum\";s:5:\"title\";s:6:\"Forums\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:790;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"790\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/124\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2015/16 - PNRA XXXI\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-48\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"790\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:791;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"791\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/129\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2016/17 - PNRA XXXII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-49\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"791\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:997;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"997\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/130\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:21:\"2017/18 - PNRA XXXIII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"997\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:10:{i:3;a:1:{i:383;R:380;}i:13;a:1:{i:430;R:428;}i:14;a:1:{i:431;R:476;}i:15;a:1:{i:432;R:524;}i:33;a:1:{i:506;R:666;}i:45;a:1:{i:531;R:714;}i:82;a:1:{i:608;R:809;}i:124;a:1:{i:790;R:951;}i:129;a:1:{i:791;R:999;}i:130;a:1:{i:997;R:1047;}}}',0,1539006589,1),('links:navigation:tree-data:it:9bd1605e2280833450478f9083b7f8714c2fa28f1012455e2744e5af1a13eec5','a:2:{s:4:\"tree\";a:23:{i:3;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"3\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:9:\"comment/%\";s:11:\"router_path\";s:9:\"comment/%\";s:10:\"link_title\";s:17:\"Comment permalink\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"3\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:1;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"access comments\";}\";s:13:\"page_callback\";s:17:\"comment_permalink\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:9:\"comment/%\";s:5:\"title\";s:17:\"Comment permalink\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:4;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"4\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"filter/tips\";s:11:\"router_path\";s:11:\"filter/tips\";s:10:\"link_title\";s:12:\"Compose tips\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-43\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"4\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"filter_tips_long\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"filter/tips\";s:5:\"title\";s:12:\"Compose tips\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:5;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"5\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/%\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:0:\"\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:6;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"6\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/add\";s:11:\"router_path\";s:8:\"node/add\";s:10:\"link_title\";s:11:\"Add content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-44\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:18:\"i18n_node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:17;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"17\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"user/%\";s:11:\"router_path\";s:6:\"user/%\";s:10:\"link_title\";s:10:\"My account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_view_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"user_view_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:10:\"My account\";s:14:\"title_callback\";s:15:\"user_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:23;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"23\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"comment/reply/%\";s:11:\"router_path\";s:15:\"comment/reply/%\";s:10:\"link_title\";s:15:\"Add new comment\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"23\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:2;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:2;}\";s:13:\"page_callback\";s:13:\"comment_reply\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"comment/reply/%\";s:5:\"title\";s:15:\"Add new comment\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:27;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"27\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"taxonomy/term/%\";s:11:\"router_path\";s:15:\"taxonomy/term/%\";s:10:\"link_title\";s:13:\"Taxonomy term\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"27\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:36:\"a:1:{i:2;s:18:\"taxonomy_term_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:23:\"i18n_taxonomy_term_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"taxonomy/term/%\";s:5:\"title\";s:13:\"Taxonomy term\";s:14:\"title_callback\";s:23:\"i18n_taxonomy_term_name\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:187;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"187\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"search\";s:11:\"router_path\";s:6:\"search\";s:10:\"link_title\";s:6:\"Search\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"187\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:383;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"383\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/3\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:12:\"Cooperations\";s:7:\"options\";s:76:\"a:2:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-39\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"383\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:430;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"430\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/13\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2011/12 - PNRA XXVII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"430\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:431;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"431\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/14\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2013/14 - PNRA XXIX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-46\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"431\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:432;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"432\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/15\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:13:\"Pubblications\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-41\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"432\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:441;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"441\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/node\";s:11:\"router_path\";s:8:\"map/node\";s:10:\"link_title\";s:14:\"Node locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-42\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"441\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view node map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_node_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/node\";s:5:\"title\";s:14:\"Node locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:442;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"442\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/user\";s:11:\"router_path\";s:8:\"map/user\";s:10:\"link_title\";s:14:\"User locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-38\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"442\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view user map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/user\";s:5:\"title\";s:14:\"User locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:506;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"506\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/33\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-40\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"506\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:531;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"531\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/45\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:18:\"2014/15 - PNRA XXX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-47\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"531\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:606;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"606\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:10:\"chart/page\";s:11:\"router_path\";s:10:\"chart/page\";s:10:\"link_title\";s:18:\"Forecast as charts\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-36\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"606\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"chartModule_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"chart/page\";s:5:\"title\";s:18:\"Forecast as charts\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:608;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"608\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/82\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:4:\"Tide\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-34\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"608\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:614;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"614\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"contact\";s:11:\"router_path\";s:7:\"contact\";s:10:\"link_title\";s:7:\"Contact\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-37\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"614\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"access site-wide contact form\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:35:\"a:1:{i:0;s:17:\"contact_site_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:7:\"contact\";s:5:\"title\";s:7:\"Contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:615;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"615\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"forum\";s:11:\"router_path\";s:5:\"forum\";s:10:\"link_title\";s:6:\"Forums\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-35\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"615\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:10:\"forum_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"forum\";s:5:\"title\";s:6:\"Forums\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:790;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"790\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/124\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2015/16 - PNRA XXXI\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-48\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"790\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:791;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"791\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/129\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2016/17 - PNRA XXXII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-49\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"791\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:997;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"997\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/130\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:21:\"2017/18 - PNRA XXXIII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"997\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:10:{i:3;a:1:{i:383;R:380;}i:13;a:1:{i:430;R:428;}i:14;a:1:{i:431;R:476;}i:15;a:1:{i:432;R:524;}i:33;a:1:{i:506;R:666;}i:45;a:1:{i:531;R:714;}i:82;a:1:{i:608;R:809;}i:124;a:1:{i:790;R:951;}i:129;a:1:{i:791;R:999;}i:130;a:1:{i:997;R:1047;}}}',0,1538751395,1),('links:navigation:tree-data:it:a3962e11cb88333ee69c8ba3d957203cac9f0bc7e1d79c7e09c9826d9f935486','a:2:{s:4:\"tree\";a:23:{i:3;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"3\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:9:\"comment/%\";s:11:\"router_path\";s:9:\"comment/%\";s:10:\"link_title\";s:17:\"Comment permalink\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"3\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:1;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"access comments\";}\";s:13:\"page_callback\";s:17:\"comment_permalink\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:9:\"comment/%\";s:5:\"title\";s:17:\"Comment permalink\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:4;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"4\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"filter/tips\";s:11:\"router_path\";s:11:\"filter/tips\";s:10:\"link_title\";s:12:\"Compose tips\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-43\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"4\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"filter_tips_long\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"filter/tips\";s:5:\"title\";s:12:\"Compose tips\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:5;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"5\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/%\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:0:\"\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:7:{i:38;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"38\";s:4:\"plid\";s:1:\"5\";s:9:\"link_path\";s:13:\"node/%/delete\";s:11:\"router_path\";s:13:\"node/%/delete\";s:10:\"link_title\";s:6:\"Delete\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"1\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:2:\"38\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:31:\"a:2:{i:0;s:6:\"delete\";i:1;i:1;}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:45:\"a:2:{i:0;s:19:\"node_delete_confirm\";i:1;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:6:\"Delete\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:41;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"41\";s:4:\"plid\";s:1:\"5\";s:9:\"link_path\";s:11:\"node/%/edit\";s:11:\"router_path\";s:11:\"node/%/edit\";s:10:\"link_title\";s:4:\"Edit\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:2:\"41\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:30:\"entity_translation_edit_access\";s:16:\"access_arguments\";s:381:\"a:6:{i:0;s:4:\"node\";i:1;i:1;i:2;b:0;i:3;a:10:{s:5:\"title\";s:4:\"Edit\";s:13:\"page callback\";s:14:\"node_page_edit\";s:14:\"page arguments\";a:1:{i:0;i:1;}s:15:\"access callback\";s:11:\"node_access\";s:16:\"access arguments\";a:2:{i:0;s:6:\"update\";i:1;i:1;}s:6:\"weight\";i:0;s:4:\"type\";i:132;s:7:\"context\";i:3;s:4:\"file\";s:14:\"node.pages.inc\";s:6:\"module\";s:4:\"node\";}i:4;s:6:\"update\";i:5;i:1;}\";s:13:\"page_callback\";s:28:\"entity_translation_edit_page\";s:14:\"page_arguments\";s:364:\"a:5:{i:0;s:4:\"node\";i:1;i:1;i:2;b:0;i:3;a:10:{s:5:\"title\";s:4:\"Edit\";s:13:\"page callback\";s:14:\"node_page_edit\";s:14:\"page arguments\";a:1:{i:0;i:1;}s:15:\"access callback\";s:11:\"node_access\";s:16:\"access arguments\";a:2:{i:0;s:6:\"update\";i:1;i:1;}s:6:\"weight\";i:0;s:4:\"type\";i:132;s:7:\"context\";i:3;s:4:\"file\";s:14:\"node.pages.inc\";s:6:\"module\";s:4:\"node\";}i:4;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:4:\"Edit\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:52;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"52\";s:4:\"plid\";s:1:\"5\";s:9:\"link_path\";s:16:\"node/%/revisions\";s:11:\"router_path\";s:16:\"node/%/revisions\";s:10:\"link_title\";s:9:\"Revisions\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"2\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:2:\"52\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:21:\"_node_revision_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:22:\"node_revision_overview\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"Revisions\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:62;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"62\";s:4:\"plid\";s:1:\"5\";s:9:\"link_path\";s:11:\"node/%/view\";s:11:\"router_path\";s:11:\"node/%/view\";s:10:\"link_title\";s:4:\"View\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:2:\"62\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:4:\"View\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:308;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"308\";s:4:\"plid\";s:1:\"5\";s:9:\"link_path\";s:16:\"node/%/translate\";s:11:\"router_path\";s:16:\"node/%/translate\";s:10:\"link_title\";s:9:\"Translate\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"1\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:3:\"308\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:34:\"entity_translation_node_tab_access\";s:16:\"access_arguments\";s:57:\"a:3:{i:0;i:1;i:1;s:23:\"_translation_tab_access\";i:2;i:1;}\";s:13:\"page_callback\";s:27:\"entity_translation_overview\";s:14:\"page_arguments\";s:173:\"a:4:{i:0;s:4:\"node\";i:1;i:1;i:2;a:3:{s:13:\"page callback\";s:30:\"i18n_node_translation_overview\";s:4:\"file\";s:19:\"i18n_node.pages.inc\";s:6:\"module\";s:9:\"i18n_node\";}i:3;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"Translate\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:396;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"396\";s:4:\"plid\";s:1:\"5\";s:9:\"link_path\";s:13:\"node/%/photos\";s:11:\"router_path\";s:13:\"node/%/photos\";s:10:\"link_title\";s:17:\"Images Management\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:3:\"396\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:14:\"_photos_access\";s:16:\"access_arguments\";s:34:\"a:2:{i:0;s:9:\"editAlbum\";i:1;i:1;}\";s:13:\"page_callback\";s:16:\"photos_edit_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:17:\"Images Management\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:397;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"397\";s:4:\"plid\";s:1:\"5\";s:9:\"link_path\";s:18:\"node/%/photos-sort\";s:11:\"router_path\";s:18:\"node/%/photos-sort\";s:10:\"link_title\";s:10:\"Re-arrange\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:3:\"397\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:14:\"_photos_access\";s:16:\"access_arguments\";s:34:\"a:2:{i:0;s:9:\"editAlbum\";i:1;i:1;}\";s:13:\"page_callback\";s:21:\"photos_edit_sort_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:10:\"Re-arrange\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:6;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"6\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/add\";s:11:\"router_path\";s:8:\"node/add\";s:10:\"link_title\";s:11:\"Add content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-44\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:18:\"i18n_node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:17;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"17\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"user/%\";s:11:\"router_path\";s:6:\"user/%\";s:10:\"link_title\";s:10:\"My account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_view_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"user_view_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:10:\"My account\";s:14:\"title_callback\";s:15:\"user_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:23;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"23\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"comment/reply/%\";s:11:\"router_path\";s:15:\"comment/reply/%\";s:10:\"link_title\";s:15:\"Add new comment\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"23\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:2;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:2;}\";s:13:\"page_callback\";s:13:\"comment_reply\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"comment/reply/%\";s:5:\"title\";s:15:\"Add new comment\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:27;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"27\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"taxonomy/term/%\";s:11:\"router_path\";s:15:\"taxonomy/term/%\";s:10:\"link_title\";s:13:\"Taxonomy term\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"27\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:36:\"a:1:{i:2;s:18:\"taxonomy_term_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:23:\"i18n_taxonomy_term_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"taxonomy/term/%\";s:5:\"title\";s:13:\"Taxonomy term\";s:14:\"title_callback\";s:23:\"i18n_taxonomy_term_name\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:187;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"187\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"search\";s:11:\"router_path\";s:6:\"search\";s:10:\"link_title\";s:6:\"Search\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"187\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:383;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"383\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/3\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:12:\"Cooperations\";s:7:\"options\";s:76:\"a:2:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-39\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"383\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:430;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"430\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/13\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2011/12 - PNRA XXVII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"430\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:431;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"431\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/14\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2013/14 - PNRA XXIX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-46\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"431\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:432;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"432\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/15\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:13:\"Pubblications\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-41\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"432\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:441;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"441\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/node\";s:11:\"router_path\";s:8:\"map/node\";s:10:\"link_title\";s:14:\"Node locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-42\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"441\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view node map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_node_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/node\";s:5:\"title\";s:14:\"Node locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:442;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"442\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/user\";s:11:\"router_path\";s:8:\"map/user\";s:10:\"link_title\";s:14:\"User locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-38\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"442\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view user map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/user\";s:5:\"title\";s:14:\"User locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:506;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"506\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/33\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-40\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"506\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:531;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"531\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/45\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:18:\"2014/15 - PNRA XXX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-47\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"531\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:606;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"606\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:10:\"chart/page\";s:11:\"router_path\";s:10:\"chart/page\";s:10:\"link_title\";s:18:\"Forecast as charts\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-36\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"606\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"chartModule_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"chart/page\";s:5:\"title\";s:18:\"Forecast as charts\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:608;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"608\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/82\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:4:\"Tide\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-34\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"608\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:614;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"614\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"contact\";s:11:\"router_path\";s:7:\"contact\";s:10:\"link_title\";s:7:\"Contact\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-37\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"614\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"access site-wide contact form\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:35:\"a:1:{i:0;s:17:\"contact_site_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:7:\"contact\";s:5:\"title\";s:7:\"Contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:615;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"615\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"forum\";s:11:\"router_path\";s:5:\"forum\";s:10:\"link_title\";s:6:\"Forums\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-35\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"615\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:10:\"forum_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"forum\";s:5:\"title\";s:6:\"Forums\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:790;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"790\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/124\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2015/16 - PNRA XXXI\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-48\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"790\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:791;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"791\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/129\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2016/17 - PNRA XXXII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-49\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"791\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:997;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"997\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/130\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:21:\"2017/18 - PNRA XXXIII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"997\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:10:{i:3;a:1:{i:383;R:709;}i:13;a:1:{i:430;R:757;}i:14;a:1:{i:431;R:805;}i:15;a:1:{i:432;R:853;}i:33;a:1:{i:506;R:995;}i:45;a:1:{i:531;R:1043;}i:82;a:1:{i:608;R:1138;}i:124;a:1:{i:790;R:1280;}i:129;a:1:{i:791;R:1328;}i:130;a:1:{i:997;R:1376;}}}',0,1538751382,1),('links:navigation:tree-data:it:abc1e55954bee69352688de9f54eddc849f712c95c2cc09d8e58371bfcaaa458','a:2:{s:4:\"tree\";a:23:{i:3;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"3\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:9:\"comment/%\";s:11:\"router_path\";s:9:\"comment/%\";s:10:\"link_title\";s:17:\"Comment permalink\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"3\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:1;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"access comments\";}\";s:13:\"page_callback\";s:17:\"comment_permalink\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:9:\"comment/%\";s:5:\"title\";s:17:\"Comment permalink\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:4;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"4\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"filter/tips\";s:11:\"router_path\";s:11:\"filter/tips\";s:10:\"link_title\";s:12:\"Compose tips\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-43\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"4\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"filter_tips_long\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"filter/tips\";s:5:\"title\";s:12:\"Compose tips\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:5;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"5\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/%\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:0:\"\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:6;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"6\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/add\";s:11:\"router_path\";s:8:\"node/add\";s:10:\"link_title\";s:11:\"Add content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-44\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:18:\"i18n_node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:17;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"17\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"user/%\";s:11:\"router_path\";s:6:\"user/%\";s:10:\"link_title\";s:10:\"My account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_view_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"user_view_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:10:\"My account\";s:14:\"title_callback\";s:15:\"user_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:23;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"23\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"comment/reply/%\";s:11:\"router_path\";s:15:\"comment/reply/%\";s:10:\"link_title\";s:15:\"Add new comment\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"23\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:2;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:2;}\";s:13:\"page_callback\";s:13:\"comment_reply\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"comment/reply/%\";s:5:\"title\";s:15:\"Add new comment\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:27;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"27\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"taxonomy/term/%\";s:11:\"router_path\";s:15:\"taxonomy/term/%\";s:10:\"link_title\";s:13:\"Taxonomy term\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"27\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:36:\"a:1:{i:2;s:18:\"taxonomy_term_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:23:\"i18n_taxonomy_term_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"taxonomy/term/%\";s:5:\"title\";s:13:\"Taxonomy term\";s:14:\"title_callback\";s:23:\"i18n_taxonomy_term_name\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:187;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"187\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"search\";s:11:\"router_path\";s:6:\"search\";s:10:\"link_title\";s:6:\"Search\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"187\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:383;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"383\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/3\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:12:\"Cooperations\";s:7:\"options\";s:76:\"a:2:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-39\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"383\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:430;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"430\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/13\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2011/12 - PNRA XXVII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"430\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:431;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"431\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/14\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2013/14 - PNRA XXIX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-46\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"431\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:432;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"432\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/15\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:13:\"Pubblications\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-41\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"432\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:441;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"441\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/node\";s:11:\"router_path\";s:8:\"map/node\";s:10:\"link_title\";s:14:\"Node locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-42\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"441\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view node map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_node_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/node\";s:5:\"title\";s:14:\"Node locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:442;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"442\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/user\";s:11:\"router_path\";s:8:\"map/user\";s:10:\"link_title\";s:14:\"User locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-38\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"442\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view user map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/user\";s:5:\"title\";s:14:\"User locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:506;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"506\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/33\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-40\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"506\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:531;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"531\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/45\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:18:\"2014/15 - PNRA XXX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-47\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"531\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:606;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"606\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:10:\"chart/page\";s:11:\"router_path\";s:10:\"chart/page\";s:10:\"link_title\";s:18:\"Forecast as charts\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-36\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"606\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"chartModule_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"chart/page\";s:5:\"title\";s:18:\"Forecast as charts\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:608;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"608\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/82\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:4:\"Tide\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-34\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"608\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:614;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"614\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"contact\";s:11:\"router_path\";s:7:\"contact\";s:10:\"link_title\";s:7:\"Contact\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-37\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"614\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"access site-wide contact form\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:35:\"a:1:{i:0;s:17:\"contact_site_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:7:\"contact\";s:5:\"title\";s:7:\"Contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:615;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"615\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"forum\";s:11:\"router_path\";s:5:\"forum\";s:10:\"link_title\";s:6:\"Forums\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-35\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"615\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:10:\"forum_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"forum\";s:5:\"title\";s:6:\"Forums\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:790;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"790\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/124\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2015/16 - PNRA XXXI\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-48\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"790\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:791;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"791\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/129\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2016/17 - PNRA XXXII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-49\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"791\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:997;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"997\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/130\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:21:\"2017/18 - PNRA XXXIII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"997\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:10:{i:3;a:1:{i:383;R:380;}i:13;a:1:{i:430;R:428;}i:14;a:1:{i:431;R:476;}i:15;a:1:{i:432;R:524;}i:33;a:1:{i:506;R:666;}i:45;a:1:{i:531;R:714;}i:82;a:1:{i:608;R:809;}i:124;a:1:{i:790;R:951;}i:129;a:1:{i:791;R:999;}i:130;a:1:{i:997;R:1047;}}}',0,1539329946,1),('links:navigation:tree-data:it:c13cf4ac30d5d512e0be06ec1afc00bd44743035cce482432763e2047f19e5a7','a:2:{s:4:\"tree\";a:23:{i:3;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"3\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:9:\"comment/%\";s:11:\"router_path\";s:9:\"comment/%\";s:10:\"link_title\";s:17:\"Comment permalink\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"3\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:1;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"access comments\";}\";s:13:\"page_callback\";s:17:\"comment_permalink\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:9:\"comment/%\";s:5:\"title\";s:17:\"Comment permalink\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:4;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"4\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"filter/tips\";s:11:\"router_path\";s:11:\"filter/tips\";s:10:\"link_title\";s:12:\"Compose tips\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-43\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"4\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"filter_tips_long\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"filter/tips\";s:5:\"title\";s:12:\"Compose tips\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:5;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"5\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/%\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:0:\"\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:6;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"6\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/add\";s:11:\"router_path\";s:8:\"node/add\";s:10:\"link_title\";s:11:\"Add content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-44\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:18:\"i18n_node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:17;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"17\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"user/%\";s:11:\"router_path\";s:6:\"user/%\";s:10:\"link_title\";s:10:\"My account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_view_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"user_view_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:10:\"My account\";s:14:\"title_callback\";s:15:\"user_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:23;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"23\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"comment/reply/%\";s:11:\"router_path\";s:15:\"comment/reply/%\";s:10:\"link_title\";s:15:\"Add new comment\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"23\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:2;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:2;}\";s:13:\"page_callback\";s:13:\"comment_reply\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"comment/reply/%\";s:5:\"title\";s:15:\"Add new comment\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:27;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"27\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"taxonomy/term/%\";s:11:\"router_path\";s:15:\"taxonomy/term/%\";s:10:\"link_title\";s:13:\"Taxonomy term\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"27\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:36:\"a:1:{i:2;s:18:\"taxonomy_term_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:23:\"i18n_taxonomy_term_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"taxonomy/term/%\";s:5:\"title\";s:13:\"Taxonomy term\";s:14:\"title_callback\";s:23:\"i18n_taxonomy_term_name\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:187;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"187\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"search\";s:11:\"router_path\";s:6:\"search\";s:10:\"link_title\";s:6:\"Search\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"187\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:383;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"383\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/3\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:12:\"Cooperations\";s:7:\"options\";s:76:\"a:2:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-39\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"383\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:430;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"430\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/13\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2011/12 - PNRA XXVII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"430\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:431;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"431\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/14\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2013/14 - PNRA XXIX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-46\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"431\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:432;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"432\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/15\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:13:\"Pubblications\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-41\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"432\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:441;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"441\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/node\";s:11:\"router_path\";s:8:\"map/node\";s:10:\"link_title\";s:14:\"Node locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-42\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"441\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view node map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_node_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/node\";s:5:\"title\";s:14:\"Node locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:442;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"442\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/user\";s:11:\"router_path\";s:8:\"map/user\";s:10:\"link_title\";s:14:\"User locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-38\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"442\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view user map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/user\";s:5:\"title\";s:14:\"User locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:506;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"506\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/33\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-40\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"506\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:531;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"531\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/45\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:18:\"2014/15 - PNRA XXX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-47\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"531\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:606;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"606\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:10:\"chart/page\";s:11:\"router_path\";s:10:\"chart/page\";s:10:\"link_title\";s:18:\"Forecast as charts\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-36\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"606\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"chartModule_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"chart/page\";s:5:\"title\";s:18:\"Forecast as charts\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:608;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"608\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/82\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:4:\"Tide\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-34\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"608\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:614;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"614\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"contact\";s:11:\"router_path\";s:7:\"contact\";s:10:\"link_title\";s:7:\"Contact\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-37\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"614\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"access site-wide contact form\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:35:\"a:1:{i:0;s:17:\"contact_site_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:7:\"contact\";s:5:\"title\";s:7:\"Contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:615;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"615\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"forum\";s:11:\"router_path\";s:5:\"forum\";s:10:\"link_title\";s:6:\"Forums\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-35\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"615\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:10:\"forum_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"forum\";s:5:\"title\";s:6:\"Forums\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:790;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"790\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/124\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2015/16 - PNRA XXXI\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-48\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"790\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:791;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"791\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/129\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2016/17 - PNRA XXXII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-49\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"791\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:997;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"997\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/130\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:21:\"2017/18 - PNRA XXXIII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"997\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:10:{i:3;a:1:{i:383;R:380;}i:13;a:1:{i:430;R:428;}i:14;a:1:{i:431;R:476;}i:15;a:1:{i:432;R:524;}i:33;a:1:{i:506;R:666;}i:45;a:1:{i:531;R:714;}i:82;a:1:{i:608;R:809;}i:124;a:1:{i:790;R:951;}i:129;a:1:{i:791;R:999;}i:130;a:1:{i:997;R:1047;}}}',0,1539006649,1),('links:navigation:tree-data:it:c5d2b02d14f21aee014481f360cf0680f2751db5e63c1392f809251b4116b08c','a:2:{s:4:\"tree\";a:23:{i:3;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"3\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:9:\"comment/%\";s:11:\"router_path\";s:9:\"comment/%\";s:10:\"link_title\";s:17:\"Comment permalink\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"3\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:1;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"access comments\";}\";s:13:\"page_callback\";s:17:\"comment_permalink\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:9:\"comment/%\";s:5:\"title\";s:17:\"Comment permalink\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:4;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"4\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"filter/tips\";s:11:\"router_path\";s:11:\"filter/tips\";s:10:\"link_title\";s:12:\"Compose tips\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-43\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"4\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"filter_tips_long\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"filter/tips\";s:5:\"title\";s:12:\"Compose tips\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:5;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"5\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/%\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:0:\"\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:6;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"6\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/add\";s:11:\"router_path\";s:8:\"node/add\";s:10:\"link_title\";s:11:\"Add content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-44\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:18:\"i18n_node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:17;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"17\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"user/%\";s:11:\"router_path\";s:6:\"user/%\";s:10:\"link_title\";s:10:\"My account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_view_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"user_view_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:10:\"My account\";s:14:\"title_callback\";s:15:\"user_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:23;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"23\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"comment/reply/%\";s:11:\"router_path\";s:15:\"comment/reply/%\";s:10:\"link_title\";s:15:\"Add new comment\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"23\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:2;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:2;}\";s:13:\"page_callback\";s:13:\"comment_reply\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"comment/reply/%\";s:5:\"title\";s:15:\"Add new comment\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:27;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"27\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"taxonomy/term/%\";s:11:\"router_path\";s:15:\"taxonomy/term/%\";s:10:\"link_title\";s:13:\"Taxonomy term\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"27\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:36:\"a:1:{i:2;s:18:\"taxonomy_term_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:23:\"i18n_taxonomy_term_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"taxonomy/term/%\";s:5:\"title\";s:13:\"Taxonomy term\";s:14:\"title_callback\";s:23:\"i18n_taxonomy_term_name\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:187;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"187\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"search\";s:11:\"router_path\";s:6:\"search\";s:10:\"link_title\";s:6:\"Search\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"187\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:383;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"383\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/3\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:12:\"Cooperations\";s:7:\"options\";s:76:\"a:2:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-39\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"383\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:430;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"430\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/13\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2011/12 - PNRA XXVII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"430\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:431;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"431\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/14\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2013/14 - PNRA XXIX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-46\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"431\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:432;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"432\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/15\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:13:\"Pubblications\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-41\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"432\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:441;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"441\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/node\";s:11:\"router_path\";s:8:\"map/node\";s:10:\"link_title\";s:14:\"Node locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-42\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"441\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view node map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_node_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/node\";s:5:\"title\";s:14:\"Node locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:442;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"442\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/user\";s:11:\"router_path\";s:8:\"map/user\";s:10:\"link_title\";s:14:\"User locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-38\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"442\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view user map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/user\";s:5:\"title\";s:14:\"User locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:506;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"506\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/33\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-40\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"506\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:531;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"531\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/45\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:18:\"2014/15 - PNRA XXX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-47\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"531\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:606;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"606\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:10:\"chart/page\";s:11:\"router_path\";s:10:\"chart/page\";s:10:\"link_title\";s:18:\"Forecast as charts\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-36\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"606\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"chartModule_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"chart/page\";s:5:\"title\";s:18:\"Forecast as charts\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:608;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"608\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/82\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:4:\"Tide\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-34\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"608\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:614;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"614\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"contact\";s:11:\"router_path\";s:7:\"contact\";s:10:\"link_title\";s:7:\"Contact\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-37\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"614\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"access site-wide contact form\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:35:\"a:1:{i:0;s:17:\"contact_site_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:7:\"contact\";s:5:\"title\";s:7:\"Contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:615;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"615\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"forum\";s:11:\"router_path\";s:5:\"forum\";s:10:\"link_title\";s:6:\"Forums\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-35\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"615\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:10:\"forum_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"forum\";s:5:\"title\";s:6:\"Forums\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:790;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"790\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/124\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2015/16 - PNRA XXXI\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-48\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"790\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:791;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"791\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/129\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2016/17 - PNRA XXXII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-49\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"791\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:997;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"997\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/130\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:21:\"2017/18 - PNRA XXXIII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"997\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:10:{i:3;a:1:{i:383;R:380;}i:13;a:1:{i:430;R:428;}i:14;a:1:{i:431;R:476;}i:15;a:1:{i:432;R:524;}i:33;a:1:{i:506;R:666;}i:45;a:1:{i:531;R:714;}i:82;a:1:{i:608;R:809;}i:124;a:1:{i:790;R:951;}i:129;a:1:{i:791;R:999;}i:130;a:1:{i:997;R:1047;}}}',0,1539006692,1),('links:navigation:tree-data:it:cc28db15f733c5521ab9feb7aad41fec644ccfa0b83430f01eb3231cb6543148','a:2:{s:4:\"tree\";a:23:{i:3;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"3\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:9:\"comment/%\";s:11:\"router_path\";s:9:\"comment/%\";s:10:\"link_title\";s:17:\"Comment permalink\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"3\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:1;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"access comments\";}\";s:13:\"page_callback\";s:17:\"comment_permalink\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:9:\"comment/%\";s:5:\"title\";s:17:\"Comment permalink\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:4;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"4\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"filter/tips\";s:11:\"router_path\";s:11:\"filter/tips\";s:10:\"link_title\";s:12:\"Compose tips\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-43\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"4\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"filter_tips_long\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"filter/tips\";s:5:\"title\";s:12:\"Compose tips\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:5;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"5\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/%\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:0:\"\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:6;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"6\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/add\";s:11:\"router_path\";s:8:\"node/add\";s:10:\"link_title\";s:11:\"Add content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-44\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:18:\"i18n_node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:17;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"17\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"user/%\";s:11:\"router_path\";s:6:\"user/%\";s:10:\"link_title\";s:10:\"My account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_view_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"user_view_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:10:\"My account\";s:14:\"title_callback\";s:15:\"user_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:23;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"23\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"comment/reply/%\";s:11:\"router_path\";s:15:\"comment/reply/%\";s:10:\"link_title\";s:15:\"Add new comment\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"23\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:2;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:2;}\";s:13:\"page_callback\";s:13:\"comment_reply\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"comment/reply/%\";s:5:\"title\";s:15:\"Add new comment\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:27;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"27\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"taxonomy/term/%\";s:11:\"router_path\";s:15:\"taxonomy/term/%\";s:10:\"link_title\";s:13:\"Taxonomy term\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"27\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:36:\"a:1:{i:2;s:18:\"taxonomy_term_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:23:\"i18n_taxonomy_term_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"taxonomy/term/%\";s:5:\"title\";s:13:\"Taxonomy term\";s:14:\"title_callback\";s:23:\"i18n_taxonomy_term_name\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:187;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"187\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"search\";s:11:\"router_path\";s:6:\"search\";s:10:\"link_title\";s:6:\"Search\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"187\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:383;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"383\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/3\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:12:\"Cooperations\";s:7:\"options\";s:76:\"a:2:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-39\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"383\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:430;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"430\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/13\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2011/12 - PNRA XXVII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"430\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:431;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"431\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/14\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2013/14 - PNRA XXIX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-46\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"431\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:432;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"432\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/15\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:13:\"Pubblications\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-41\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"432\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:441;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"441\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/node\";s:11:\"router_path\";s:8:\"map/node\";s:10:\"link_title\";s:14:\"Node locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-42\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"441\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view node map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_node_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/node\";s:5:\"title\";s:14:\"Node locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:442;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"442\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/user\";s:11:\"router_path\";s:8:\"map/user\";s:10:\"link_title\";s:14:\"User locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-38\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"442\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view user map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/user\";s:5:\"title\";s:14:\"User locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:506;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"506\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/33\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-40\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"506\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:531;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"531\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/45\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:18:\"2014/15 - PNRA XXX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-47\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"531\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:606;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"606\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:10:\"chart/page\";s:11:\"router_path\";s:10:\"chart/page\";s:10:\"link_title\";s:18:\"Forecast as charts\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-36\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"606\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"chartModule_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"chart/page\";s:5:\"title\";s:18:\"Forecast as charts\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:608;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"608\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/82\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:4:\"Tide\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-34\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"608\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:614;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"614\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"contact\";s:11:\"router_path\";s:7:\"contact\";s:10:\"link_title\";s:7:\"Contact\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-37\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"614\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"access site-wide contact form\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:35:\"a:1:{i:0;s:17:\"contact_site_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:7:\"contact\";s:5:\"title\";s:7:\"Contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:615;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"615\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"forum\";s:11:\"router_path\";s:5:\"forum\";s:10:\"link_title\";s:6:\"Forums\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-35\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"615\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:10:\"forum_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"forum\";s:5:\"title\";s:6:\"Forums\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:790;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"790\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/124\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2015/16 - PNRA XXXI\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-48\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"790\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:791;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"791\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/129\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2016/17 - PNRA XXXII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-49\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"791\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:997;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"997\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/130\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:21:\"2017/18 - PNRA XXXIII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"997\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:10:{i:3;a:1:{i:383;R:380;}i:13;a:1:{i:430;R:428;}i:14;a:1:{i:431;R:476;}i:15;a:1:{i:432;R:524;}i:33;a:1:{i:506;R:666;}i:45;a:1:{i:531;R:714;}i:82;a:1:{i:608;R:809;}i:124;a:1:{i:790;R:951;}i:129;a:1:{i:791;R:999;}i:130;a:1:{i:997;R:1047;}}}',0,1539116733,1),('links:navigation:tree-data:it:f922818cfacd1a604d30ff55416c4383e8a65ff86ac7901322c5ea7ed97e7411','a:2:{s:4:\"tree\";a:23:{i:3;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"3\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:9:\"comment/%\";s:11:\"router_path\";s:9:\"comment/%\";s:10:\"link_title\";s:17:\"Comment permalink\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"3\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:12:\"a:1:{i:1;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:33:\"a:1:{i:0;s:15:\"access comments\";}\";s:13:\"page_callback\";s:17:\"comment_permalink\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:9:\"comment/%\";s:5:\"title\";s:17:\"Comment permalink\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:4;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"4\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"filter/tips\";s:11:\"router_path\";s:11:\"filter/tips\";s:10:\"link_title\";s:12:\"Compose tips\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-43\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"4\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"filter_tips_long\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"filter/tips\";s:5:\"title\";s:12:\"Compose tips\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:5;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"5\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/%\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:0:\"\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"5\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:6;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:1:\"6\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/add\";s:11:\"router_path\";s:8:\"node/add\";s:10:\"link_title\";s:11:\"Add content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-44\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:1:\"6\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:18:\"i18n_node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:17;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"17\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"user/%\";s:11:\"router_path\";s:6:\"user/%\";s:10:\"link_title\";s:10:\"My account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"17\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_view_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"user_view_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:10:\"My account\";s:14:\"title_callback\";s:15:\"user_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:23;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"23\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"comment/reply/%\";s:11:\"router_path\";s:15:\"comment/reply/%\";s:10:\"link_title\";s:15:\"Add new comment\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"23\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:2;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:29:\"a:2:{i:0;s:4:\"view\";i:1;i:2;}\";s:13:\"page_callback\";s:13:\"comment_reply\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"comment/reply/%\";s:5:\"title\";s:15:\"Add new comment\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:27;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:2:\"27\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"taxonomy/term/%\";s:11:\"router_path\";s:15:\"taxonomy/term/%\";s:10:\"link_title\";s:13:\"Taxonomy term\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"27\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:36:\"a:1:{i:2;s:18:\"taxonomy_term_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:23:\"i18n_taxonomy_term_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"taxonomy/term/%\";s:5:\"title\";s:13:\"Taxonomy term\";s:14:\"title_callback\";s:23:\"i18n_taxonomy_term_name\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:187;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"187\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"search\";s:11:\"router_path\";s:6:\"search\";s:10:\"link_title\";s:6:\"Search\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"187\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:383;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"383\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:6:\"node/3\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:12:\"Cooperations\";s:7:\"options\";s:76:\"a:2:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-39\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"383\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:430;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"430\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/13\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2011/12 - PNRA XXVII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-45\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"430\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:431;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"431\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/14\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2013/14 - PNRA XXIX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-46\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"431\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:432;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"432\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/15\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:13:\"Pubblications\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-41\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"432\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:441;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"441\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/node\";s:11:\"router_path\";s:8:\"map/node\";s:10:\"link_title\";s:14:\"Node locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-42\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"441\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view node map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_node_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/node\";s:5:\"title\";s:14:\"Node locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:442;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"442\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"map/user\";s:11:\"router_path\";s:8:\"map/user\";s:10:\"link_title\";s:14:\"User locations\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-38\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"442\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:31:\"a:1:{i:0;s:13:\"view user map\";}\";s:13:\"page_callback\";s:23:\"gmap_location_user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"map/user\";s:5:\"title\";s:14:\"User locations\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:506;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"506\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/33\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:6:\"People\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-40\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"506\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:531;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"531\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/45\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:18:\"2014/15 - PNRA XXX\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-47\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"531\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:606;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"606\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:10:\"chart/page\";s:11:\"router_path\";s:10:\"chart/page\";s:10:\"link_title\";s:18:\"Forecast as charts\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-36\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"606\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"chartModule_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"chart/page\";s:5:\"title\";s:18:\"Forecast as charts\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:608;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"608\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"node/82\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:4:\"Tide\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-34\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"608\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:614;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"614\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"contact\";s:11:\"router_path\";s:7:\"contact\";s:10:\"link_title\";s:7:\"Contact\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-37\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"614\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"access site-wide contact form\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:35:\"a:1:{i:0;s:17:\"contact_site_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:7:\"contact\";s:5:\"title\";s:7:\"Contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:2:\"20\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:615;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"615\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:5:\"forum\";s:11:\"router_path\";s:5:\"forum\";s:10:\"link_title\";s:6:\"Forums\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-35\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"615\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:10:\"forum_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:5:\"forum\";s:5:\"title\";s:6:\"Forums\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:790;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"790\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/124\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:19:\"2015/16 - PNRA XXXI\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-48\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"790\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:791;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"791\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/129\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:20:\"2016/17 - PNRA XXXII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-49\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"791\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}i:997;a:2:{s:4:\"link\";a:45:{s:9:\"menu_name\";s:10:\"navigation\";s:4:\"mlid\";s:3:\"997\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/130\";s:11:\"router_path\";s:6:\"node/%\";s:10:\"link_title\";s:21:\"2017/18 - PNRA XXXIII\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"997\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;s:6:\"access\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:10:{i:3;a:1:{i:383;R:380;}i:13;a:1:{i:430;R:428;}i:14;a:1:{i:431;R:476;}i:15;a:1:{i:432;R:524;}i:33;a:1:{i:506;R:666;}i:45;a:1:{i:531;R:714;}i:82;a:1:{i:608;R:809;}i:124;a:1:{i:790;R:951;}i:129;a:1:{i:791;R:999;}i:130;a:1:{i:997;R:1047;}}}',0,1539006637,1),('links:shortcut-set-1:page:admin/config/development/maintenance:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1652171428,1),('links:shortcut-set-1:page:admin/config/development/maintenance:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538751545,1),('links:shortcut-set-1:page:admin/config/development/performance:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538750670,1),('links:shortcut-set-1:page:chart/page:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538751321,1),('links:shortcut-set-1:page:node/129:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1652162647,1),('links:shortcut-set-1:page:node/12:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538751349,1),('links:shortcut-set-1:page:node/130:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538751274,1),('links:shortcut-set-1:page:node/29:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1652162920,1),('links:shortcut-set-1:page:node/37:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538751292,1),('links:shortcut-set-1:page:node/4/edit:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1652168648,1),('links:shortcut-set-1:page:node/40:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538751301,1),('links:shortcut-set-1:page:node/4:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538751288,1),('links:shortcut-set-1:page:node/98:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538751382,1),('links:shortcut-set-1:page:node/add/page:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1652167761,1),('links:shortcut-set-1:page:node:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538751263,1),('links:shortcut-set-1:page:node:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538751395,1),('links:shortcut-set-1:page:sites/default/files/styles/thumbnail:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1652162920,1),('links:shortcut-set-1:page:user/1:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538751620,1),('links:shortcut-set-1:tree-data:en:9bd1605e2280833450478f9083b7f8714c2fa28f1012455e2744e5af1a13eec5','a:2:{s:4:\"tree\";a:2:{i:216;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:14:\"shortcut-set-1\";s:4:\"mlid\";s:3:\"216\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/add\";s:11:\"router_path\";s:8:\"node/add\";s:10:\"link_title\";s:11:\"Add content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"216\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:18:\"i18n_node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:217;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:14:\"shortcut-set-1\";s:4:\"mlid\";s:3:\"217\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:13:\"admin/content\";s:11:\"router_path\";s:13:\"admin/content\";s:10:\"link_title\";s:12:\"Find content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-49\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"217\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:32:\"Administer content and comments.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1538750670,1),('links:shortcut-set-1:tree-data:it:9bd1605e2280833450478f9083b7f8714c2fa28f1012455e2744e5af1a13eec5','a:2:{s:4:\"tree\";a:2:{i:216;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:14:\"shortcut-set-1\";s:4:\"mlid\";s:3:\"216\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:8:\"node/add\";s:11:\"router_path\";s:8:\"node/add\";s:10:\"link_title\";s:11:\"Add content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-50\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"216\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:18:\"i18n_node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:217;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:14:\"shortcut-set-1\";s:4:\"mlid\";s:3:\"217\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:13:\"admin/content\";s:11:\"router_path\";s:13:\"admin/content\";s:10:\"link_title\";s:12:\"Find content\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-49\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"217\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:41:\"a:1:{i:0;s:23:\"access content overview\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"node_admin_content\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/content\";s:5:\"title\";s:7:\"Content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:32:\"Administer content and comments.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1538751382,1),('links:user-menu:page:admin/config/development/maintenance:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1652171422,1),('links:user-menu:page:admin/config/development/maintenance:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538751536,1),('links:user-menu:page:admin/config/development/performance:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538750673,1),('links:user-menu:page:admin/config/people/accounts/display:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1652162448,1),('links:user-menu:page:admin/config/people/accounts:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1652162436,1),('links:user-menu:page:admin/config/system/site-information:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1652162705,1),('links:user-menu:page:admin/config:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538750697,1),('links:user-menu:page:admin/config:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538751565,1),('links:user-menu:page:admin/dashboard:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1652162507,1),('links:user-menu:page:admin/help/update:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1652162541,1),('links:user-menu:page:admin/help:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1652162454,1),('links:user-menu:page:admin/modules:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1652162471,1),('links:user-menu:page:admin/people/create:en:0:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1546962858,1),('links:user-menu:page:admin/people/create:en:0:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1546962858,1),('links:user-menu:page:admin/people:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1652162474,1),('links:user-menu:page:admin/reports:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1652162467,1),('links:user-menu:page:admin/structure/block/manage/block/2/configure:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1652163127,1),('links:user-menu:page:admin/structure/block/manage/system/user-menu/configure:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1652170178,1),('links:user-menu:page:admin:en:0:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1549595045,1),('links:user-menu:page:admin:en:0:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1549595045,1),('links:user-menu:page:chart/page:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538751321,1),('links:user-menu:page:node/108:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538946684,1),('links:user-menu:page:node/108:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538946684,1),('links:user-menu:page:node/109:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007815,1),('links:user-menu:page:node/109:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007815,1),('links:user-menu:page:node/110:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007824,1),('links:user-menu:page:node/110:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007824,1),('links:user-menu:page:node/111:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538846535,1),('links:user-menu:page:node/111:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538846535,1),('links:user-menu:page:node/112:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007848,1),('links:user-menu:page:node/112:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007848,1),('links:user-menu:page:node/113:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539009730,1),('links:user-menu:page:node/113:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539009730,1),('links:user-menu:page:node/115:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006802,1),('links:user-menu:page:node/115:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006802,1),('links:user-menu:page:node/116:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006813,1),('links:user-menu:page:node/116:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006813,1),('links:user-menu:page:node/117:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006824,1),('links:user-menu:page:node/117:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006824,1),('links:user-menu:page:node/118:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007858,1),('links:user-menu:page:node/118:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007858,1),('links:user-menu:page:node/118:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539009742,1),('links:user-menu:page:node/118:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539009742,1),('links:user-menu:page:node/119:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538960681,1),('links:user-menu:page:node/119:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538960681,1),('links:user-menu:page:node/12/translate:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1652162975,1),('links:user-menu:page:node/120:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006271,1),('links:user-menu:page:node/120:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006271,1),('links:user-menu:page:node/121:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006396,1),('links:user-menu:page:node/121:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006396,1),('links:user-menu:page:node/122:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006429,1),('links:user-menu:page:node/122:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006429,1),('links:user-menu:page:node/123:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006549,1),('links:user-menu:page:node/123:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006549,1),('links:user-menu:page:node/124:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539133215,1),('links:user-menu:page:node/124:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539133215,1),('links:user-menu:page:node/125:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006574,1),('links:user-menu:page:node/125:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006574,1),('links:user-menu:page:node/126:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538911468,1),('links:user-menu:page:node/126:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538911468,1),('links:user-menu:page:node/127:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006670,1),('links:user-menu:page:node/127:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006670,1),('links:user-menu:page:node/128:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539156643,1),('links:user-menu:page:node/128:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539156643,1),('links:user-menu:page:node/129/edit:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1652162651,1),('links:user-menu:page:node/129:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539156650,1),('links:user-menu:page:node/129:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539156650,1),('links:user-menu:page:node/129:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539329946,1),('links:user-menu:page:node/129:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539329946,1),('links:user-menu:page:node/12:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538751349,1),('links:user-menu:page:node/12:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538751349,1),('links:user-menu:page:node/130:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538751274,1),('links:user-menu:page:node/130:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538751274,1),('links:user-menu:page:node/130:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539116733,1),('links:user-menu:page:node/130:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539116733,1),('links:user-menu:page:node/13:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539005959,1),('links:user-menu:page:node/13:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539005959,1),('links:user-menu:page:node/14:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539005969,1),('links:user-menu:page:node/14:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539005969,1),('links:user-menu:page:node/15:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539005980,1),('links:user-menu:page:node/15:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539005980,1),('links:user-menu:page:node/15:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006589,1),('links:user-menu:page:node/15:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006589,1),('links:user-menu:page:node/1:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1550775912,1),('links:user-menu:page:node/1:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1550775912,1),('links:user-menu:page:node/21:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007866,1),('links:user-menu:page:node/21:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007866,1),('links:user-menu:page:node/22:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007882,1),('links:user-menu:page:node/22:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007882,1),('links:user-menu:page:node/23:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007891,1),('links:user-menu:page:node/23:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007891,1),('links:user-menu:page:node/24:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007909,1),('links:user-menu:page:node/24:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007909,1),('links:user-menu:page:node/26:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538830894,1),('links:user-menu:page:node/26:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538830894,1),('links:user-menu:page:node/28:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006854,1),('links:user-menu:page:node/28:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006854,1),('links:user-menu:page:node/29:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006142,1),('links:user-menu:page:node/29:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006142,1),('links:user-menu:page:node/29:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006624,1),('links:user-menu:page:node/29:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006624,1),('links:user-menu:page:node/2:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539005997,1),('links:user-menu:page:node/2:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539005997,1),('links:user-menu:page:node/2:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006611,1),('links:user-menu:page:node/2:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006611,1),('links:user-menu:page:node/30:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006865,1),('links:user-menu:page:node/30:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006865,1),('links:user-menu:page:node/31:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006874,1),('links:user-menu:page:node/31:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006874,1),('links:user-menu:page:node/31:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007380,1),('links:user-menu:page:node/31:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007380,1),('links:user-menu:page:node/32:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538822054,1),('links:user-menu:page:node/32:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538822054,1),('links:user-menu:page:node/33:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538751790,1),('links:user-menu:page:node/33:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538751790,1),('links:user-menu:page:node/33:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006649,1),('links:user-menu:page:node/33:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006649,1),('links:user-menu:page:node/34:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007920,1),('links:user-menu:page:node/34:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007920,1),('links:user-menu:page:node/35:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007933,1),('links:user-menu:page:node/35:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007933,1),('links:user-menu:page:node/36:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007947,1),('links:user-menu:page:node/36:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007947,1),('links:user-menu:page:node/37:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538751292,1),('links:user-menu:page:node/37:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538751292,1),('links:user-menu:page:node/3:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006152,1),('links:user-menu:page:node/3:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006152,1),('links:user-menu:page:node/3:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006637,1),('links:user-menu:page:node/3:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006637,1),('links:user-menu:page:node/4/edit:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1652168572,1),('links:user-menu:page:node/40:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538751301,1),('links:user-menu:page:node/40:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538751301,1),('links:user-menu:page:node/43:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1543954382,1),('links:user-menu:page:node/43:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1543954382,1),('links:user-menu:page:node/45:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006189,1),('links:user-menu:page:node/45:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006189,1),('links:user-menu:page:node/46:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006207,1),('links:user-menu:page:node/46:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006207,1),('links:user-menu:page:node/4:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538751288,1),('links:user-menu:page:node/4:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538751288,1),('links:user-menu:page:node/4:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006659,1),('links:user-menu:page:node/4:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006659,1),('links:user-menu:page:node/61:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1543954450,1),('links:user-menu:page:node/63:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1543954403,1),('links:user-menu:page:node/7:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006218,1),('links:user-menu:page:node/7:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006218,1),('links:user-menu:page:node/80:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1542128828,1),('links:user-menu:page:node/82:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006232,1),('links:user-menu:page:node/82:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006232,1),('links:user-menu:page:node/82:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006692,1),('links:user-menu:page:node/82:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006692,1),('links:user-menu:page:node/84:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1542249898,1),('links:user-menu:page:node/84:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1542249898,1),('links:user-menu:page:node/85:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007969,1),('links:user-menu:page:node/85:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007969,1),('links:user-menu:page:node/85:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539009758,1),('links:user-menu:page:node/85:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539009758,1),('links:user-menu:page:node/86:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007983,1),('links:user-menu:page:node/86:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007983,1),('links:user-menu:page:node/86:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538787856,1),('links:user-menu:page:node/86:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538787856,1),('links:user-menu:page:node/87:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007994,1),('links:user-menu:page:node/87:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007994,1),('links:user-menu:page:node/87:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538771242,1),('links:user-menu:page:node/87:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538771242,1),('links:user-menu:page:node/88:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539008012,1),('links:user-menu:page:node/88:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539008012,1),('links:user-menu:page:node/88:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539009832,1),('links:user-menu:page:node/88:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539009832,1),('links:user-menu:page:node/89:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539008027,1),('links:user-menu:page:node/89:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539008027,1),('links:user-menu:page:node/89:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539009858,1),('links:user-menu:page:node/89:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539009858,1),('links:user-menu:page:node/8:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1557101648,1),('links:user-menu:page:node/8:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1557101648,1),('links:user-menu:page:node/90:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539008040,1),('links:user-menu:page:node/90:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539008040,1),('links:user-menu:page:node/90:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539009918,1),('links:user-menu:page:node/90:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539009918,1),('links:user-menu:page:node/91:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539008056,1),('links:user-menu:page:node/91:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539008056,1),('links:user-menu:page:node/91:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538754804,1),('links:user-menu:page:node/91:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538754804,1),('links:user-menu:page:node/92:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539008766,1),('links:user-menu:page:node/92:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539008766,1),('links:user-menu:page:node/92:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539009971,1),('links:user-menu:page:node/92:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539009971,1),('links:user-menu:page:node/93:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538795814,1),('links:user-menu:page:node/93:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538795814,1),('links:user-menu:page:node/93:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539009993,1),('links:user-menu:page:node/93:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539009993,1),('links:user-menu:page:node/94:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539009084,1),('links:user-menu:page:node/94:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539009084,1),('links:user-menu:page:node/94:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539010032,1),('links:user-menu:page:node/94:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539010032,1),('links:user-menu:page:node/95:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539009106,1),('links:user-menu:page:node/95:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539009106,1),('links:user-menu:page:node/95:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539010064,1),('links:user-menu:page:node/95:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539010064,1),('links:user-menu:page:node/96:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006680,1),('links:user-menu:page:node/96:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006680,1),('links:user-menu:page:node/98:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538751382,1),('links:user-menu:page:node/98:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538751382,1),('links:user-menu:page:node/99/delete:en:0:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538794866,1),('links:user-menu:page:node/99/delete:en:0:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538794866,1),('links:user-menu:page:node/add/article:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:2:{i:0;i:0;i:423;s:3:\"423\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:423;s:3:\"423\";}}',0,1652163438,1),('links:user-menu:page:node/add/page:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:2:{i:0;i:0;i:421;s:3:\"421\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:421;s:3:\"421\";}}',0,1652167722,1),('links:user-menu:page:node/add:en:0:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1542149786,1),('links:user-menu:page:node/add:en:0:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1542149786,1),('links:user-menu:page:node/add:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1652163414,1),('links:user-menu:page:node:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538751263,1),('links:user-menu:page:node:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538751263,1),('links:user-menu:page:node:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538751395,1),('links:user-menu:page:node:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538751395,1),('links:user-menu:page:photos/album/29:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538783477,1),('links:user-menu:page:photos/album/29:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538783477,1),('links:user-menu:page:photos/album/29:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007162,1),('links:user-menu:page:photos/album/29:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007162,1),('links:user-menu:page:photos/image/18:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006907,1),('links:user-menu:page:photos/image/18:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006907,1),('links:user-menu:page:photos/image/18:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007420,1),('links:user-menu:page:photos/image/18:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007420,1),('links:user-menu:page:photos/image/19:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538964691,1),('links:user-menu:page:photos/image/19:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538964691,1),('links:user-menu:page:photos/image/19:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007433,1),('links:user-menu:page:photos/image/19:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007433,1),('links:user-menu:page:photos/image/20:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006939,1),('links:user-menu:page:photos/image/20:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006939,1),('links:user-menu:page:photos/image/20:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007444,1),('links:user-menu:page:photos/image/20:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007444,1),('links:user-menu:page:photos/image/21:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006949,1),('links:user-menu:page:photos/image/21:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006949,1),('links:user-menu:page:photos/image/21:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007453,1),('links:user-menu:page:photos/image/21:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007453,1),('links:user-menu:page:photos/image/22:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006973,1),('links:user-menu:page:photos/image/22:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006973,1),('links:user-menu:page:photos/image/22:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007466,1),('links:user-menu:page:photos/image/22:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007466,1),('links:user-menu:page:photos/image/24:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006986,1),('links:user-menu:page:photos/image/24:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539006986,1),('links:user-menu:page:photos/image/24:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007491,1),('links:user-menu:page:photos/image/24:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007491,1),('links:user-menu:page:photos/image/25:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539608236,1),('links:user-menu:page:photos/image/25:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539608236,1),('links:user-menu:page:photos/image/25:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007502,1),('links:user-menu:page:photos/image/25:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007502,1),('links:user-menu:page:photos/image/26:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007004,1),('links:user-menu:page:photos/image/26:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007004,1),('links:user-menu:page:photos/image/26:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007515,1),('links:user-menu:page:photos/image/26:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007515,1),('links:user-menu:page:photos/image/27:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007019,1),('links:user-menu:page:photos/image/27:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007019,1),('links:user-menu:page:photos/image/27:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007521,1),('links:user-menu:page:photos/image/27:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007521,1),('links:user-menu:page:photos/image/28:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007027,1),('links:user-menu:page:photos/image/28:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007027,1),('links:user-menu:page:photos/image/28:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538805923,1),('links:user-menu:page:photos/image/28:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538805923,1),('links:user-menu:page:photos/image/29:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007061,1),('links:user-menu:page:photos/image/29:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007061,1),('links:user-menu:page:photos/image/29:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007706,1),('links:user-menu:page:photos/image/29:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007706,1),('links:user-menu:page:photos/image/36:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007070,1),('links:user-menu:page:photos/image/36:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007070,1),('links:user-menu:page:photos/image/36:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007717,1),('links:user-menu:page:photos/image/36:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007717,1),('links:user-menu:page:photos/image/37:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007080,1),('links:user-menu:page:photos/image/37:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007080,1),('links:user-menu:page:photos/image/37:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007725,1),('links:user-menu:page:photos/image/37:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007725,1),('links:user-menu:page:photos/image/38:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007089,1),('links:user-menu:page:photos/image/38:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007089,1),('links:user-menu:page:photos/image/38:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007762,1),('links:user-menu:page:photos/image/38:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007762,1),('links:user-menu:page:photos/image/39:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538873493,1),('links:user-menu:page:photos/image/39:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538873493,1),('links:user-menu:page:photos/image/39:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007772,1),('links:user-menu:page:photos/image/39:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539007772,1),('links:user-menu:page:photos/image/:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539407107,1),('links:user-menu:page:photos/image/:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539407107,1),('links:user-menu:page:photos/zoom/18:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538944773,1),('links:user-menu:page:photos/zoom/18:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538944773,1),('links:user-menu:page:photos/zoom/18:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539010098,1),('links:user-menu:page:photos/zoom/18:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539010098,1),('links:user-menu:page:photos/zoom/19:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539009131,1),('links:user-menu:page:photos/zoom/19:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539009131,1),('links:user-menu:page:photos/zoom/19:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538827167,1),('links:user-menu:page:photos/zoom/19:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538827167,1),('links:user-menu:page:photos/zoom/20:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539009461,1),('links:user-menu:page:photos/zoom/20:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539009461,1),('links:user-menu:page:photos/zoom/20:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538891309,1),('links:user-menu:page:photos/zoom/20:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538891309,1),('links:user-menu:page:photos/zoom/21:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539009473,1),('links:user-menu:page:photos/zoom/21:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539009473,1),('links:user-menu:page:photos/zoom/21:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538921658,1),('links:user-menu:page:photos/zoom/21:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538921658,1),('links:user-menu:page:photos/zoom/22:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538786045,1),('links:user-menu:page:photos/zoom/22:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538786045,1),('links:user-menu:page:photos/zoom/22:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538757252,1),('links:user-menu:page:photos/zoom/22:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538757252,1),('links:user-menu:page:photos/zoom/24:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539009512,1),('links:user-menu:page:photos/zoom/24:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539009512,1),('links:user-menu:page:photos/zoom/24:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539010273,1),('links:user-menu:page:photos/zoom/24:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539010273,1),('links:user-menu:page:photos/zoom/25:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538988000,1),('links:user-menu:page:photos/zoom/25:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538988000,1),('links:user-menu:page:photos/zoom/25:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539010297,1),('links:user-menu:page:photos/zoom/25:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539010297,1),('links:user-menu:page:photos/zoom/26:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538988012,1),('links:user-menu:page:photos/zoom/26:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538988012,1),('links:user-menu:page:photos/zoom/26:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539010318,1),('links:user-menu:page:photos/zoom/26:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539010318,1),('links:user-menu:page:photos/zoom/27:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539009615,1),('links:user-menu:page:photos/zoom/27:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539009615,1),('links:user-menu:page:photos/zoom/27:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538958215,1),('links:user-menu:page:photos/zoom/27:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538958215,1),('links:user-menu:page:photos/zoom/28:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538980054,1),('links:user-menu:page:photos/zoom/28:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538980054,1),('links:user-menu:page:photos/zoom/28:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539010361,1),('links:user-menu:page:photos/zoom/28:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539010361,1),('links:user-menu:page:photos/zoom/29:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539001815,1),('links:user-menu:page:photos/zoom/29:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539001815,1),('links:user-menu:page:photos/zoom/29:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538902480,1),('links:user-menu:page:photos/zoom/29:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538902480,1),('links:user-menu:page:photos/zoom/36:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538796799,1),('links:user-menu:page:photos/zoom/36:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538796799,1),('links:user-menu:page:photos/zoom/36:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539010408,1),('links:user-menu:page:photos/zoom/36:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539010408,1),('links:user-menu:page:photos/zoom/37:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539009685,1),('links:user-menu:page:photos/zoom/37:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539009685,1),('links:user-menu:page:photos/zoom/37:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539010434,1),('links:user-menu:page:photos/zoom/37:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539010434,1),('links:user-menu:page:photos/zoom/38:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538960937,1),('links:user-menu:page:photos/zoom/38:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538960937,1),('links:user-menu:page:photos/zoom/38:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539010467,1),('links:user-menu:page:photos/zoom/38:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539010467,1),('links:user-menu:page:photos/zoom/39:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538974442,1),('links:user-menu:page:photos/zoom/39:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538974442,1),('links:user-menu:page:photos/zoom/39:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538795204,1),('links:user-menu:page:photos/zoom/39:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538795204,1),('links:user-menu:page:sites/default/files/styles/large:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1544031571,1),('links:user-menu:page:sites/default/files/styles/large:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1544031571,1),('links:user-menu:page:sites/default/files/styles/large:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1541000795,1),('links:user-menu:page:sites/default/files/styles/large:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1541000795,1),('links:user-menu:page:sites/default/files/styles/medium:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1550656838,1),('links:user-menu:page:sites/default/files/styles/medium:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1550656838,1),('links:user-menu:page:sites/default/files/styles/medium:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1556776917,1),('links:user-menu:page:sites/default/files/styles/medium:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1556776917,1),('links:user-menu:page:sites/default/files/styles/thumbnail:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539531937,1),('links:user-menu:page:sites/default/files/styles/thumbnail:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1539531937,1),('links:user-menu:page:sites/default/files/styles/thumbnail:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1548343011,1),('links:user-menu:page:sites/default/files/styles/thumbnail:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1548343011,1),('links:user-menu:page:user/1/edit:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1652162414,1),('links:user-menu:page:user/1:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538751620,1),('links:user-menu:page:user/1:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538751620,1),('links:user-menu:page:user/login:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:3:{i:0;i:0;i:2;s:1:\"2\";i:14;s:2:\"14\";}s:12:\"active_trail\";a:3:{i:0;i:0;i:2;s:1:\"2\";i:14;s:2:\"14\";}}',0,1538751178,1),('links:user-menu:page:user/login:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:3:{i:0;i:0;i:2;s:1:\"2\";i:14;s:2:\"14\";}s:12:\"active_trail\";a:3:{i:0;i:0;i:2;s:1:\"2\";i:14;s:2:\"14\";}}',0,1538751178,1),('links:user-menu:page:user/login:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:3:{i:0;i:0;i:2;s:1:\"2\";i:14;s:2:\"14\";}s:12:\"active_trail\";a:3:{i:0;i:0;i:2;s:1:\"2\";i:14;s:2:\"14\";}}',0,1553105063,1),('links:user-menu:page:user/login:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:3:{i:0;i:0;i:2;s:1:\"2\";i:14;s:2:\"14\";}s:12:\"active_trail\";a:3:{i:0;i:0;i:2;s:1:\"2\";i:14;s:2:\"14\";}}',0,1553105063,1),('links:user-menu:page:user/password:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:3:{i:0;i:0;i:2;s:1:\"2\";i:20;s:2:\"20\";}s:12:\"active_trail\";a:3:{i:0;i:0;i:2;s:1:\"2\";i:20;s:2:\"20\";}}',0,1538750977,1),('links:user-menu:page:user/password:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:3:{i:0;i:0;i:2;s:1:\"2\";i:20;s:2:\"20\";}s:12:\"active_trail\";a:3:{i:0;i:0;i:2;s:1:\"2\";i:20;s:2:\"20\";}}',0,1538750977,1),('links:user-menu:page:user/password:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:3:{i:0;i:0;i:2;s:1:\"2\";i:20;s:2:\"20\";}s:12:\"active_trail\";a:3:{i:0;i:0;i:2;s:1:\"2\";i:20;s:2:\"20\";}}',0,1539006747,1),('links:user-menu:page:user/password:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:3:{i:0;i:0;i:2;s:1:\"2\";i:20;s:2:\"20\";}s:12:\"active_trail\";a:3:{i:0;i:0;i:2;s:1:\"2\";i:20;s:2:\"20\";}}',0,1539006747,1),('links:user-menu:page:user/register:en:0:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538794854,1),('links:user-menu:page:user/register:en:0:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1538794854,1),('links:user-menu:page:user:en:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:2;s:1:\"2\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:2;s:1:\"2\";}}',0,1538753160,1),('links:user-menu:page:user:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:2:{i:0;i:0;i:2;s:1:\"2\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:2;s:1:\"2\";}}',0,1538753160,1),('links:user-menu:page:user:it:1:0','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;s:8:\"expanded\";a:2:{i:0;i:0;i:2;s:1:\"2\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:2;s:1:\"2\";}}',0,1539007784,1),('links:user-menu:page:user:it:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:2:{i:0;i:0;i:2;s:1:\"2\";}s:12:\"active_trail\";a:2:{i:0;i:0;i:2;s:1:\"2\";}}',0,1539007784,1),('links:user-menu:tree-data:en:220b0d67aa9e79723f379074489a3b705b45e30c2d8501c016ffb0c6fa80b909','a:2:{s:4:\"tree\";a:5:{i:2;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:1:\"2\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:4:\"user\";s:11:\"router_path\";s:4:\"user\";s:10:\"link_title\";s:12:\"User account\";s:7:\"options\";s:22:\"a:1:{s:5:\"alter\";b:1;}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:12:\"User account\";s:14:\"title_callback\";s:15:\"user_menu_title\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:0:{}}i:15;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"15\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"user/logout\";s:11:\"router_path\";s:11:\"user/logout\";s:10:\"link_title\";s:7:\"Log out\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"15\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_logged_in\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:11:\"user_logout\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"user/logout\";s:5:\"title\";s:7:\"Log out\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:421;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"421\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:13:\"node/add/page\";s:11:\"router_path\";s:13:\"node/add/page\";s:10:\"link_title\";s:12:\"Add new page\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"421\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:38:\"a:2:{i:0;s:6:\"create\";i:1;s:4:\"page\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"page\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"node/add/page\";s:5:\"title\";s:10:\"Basic page\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:43:\"a:2:{i:0;s:4:\"page\";i:1;s:10:\"Basic page\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:77:\"Use <em>basic pages</em> for your static content, such as an \'About us\' page.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:422;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"422\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"node/add/photos\";s:11:\"router_path\";s:15:\"node/add/photos\";s:10:\"link_title\";s:19:\"Add new photo album\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"422\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:40:\"a:2:{i:0;s:6:\"create\";i:1;s:6:\"photos\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:23:\"a:1:{i:0;s:6:\"photos\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"node/add/photos\";s:5:\"title\";s:5:\"Album\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:39:\"a:2:{i:0;s:6:\"photos\";i:1;s:5:\"Album\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:24:\"Create new photo albums.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:423;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"423\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:16:\"node/add/article\";s:11:\"router_path\";s:16:\"node/add/article\";s:10:\"link_title\";s:15:\"Add new article\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"423\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:41:\"a:2:{i:0;s:6:\"create\";i:1;s:7:\"article\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:24:\"a:1:{i:0;s:7:\"article\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"node/add/article\";s:5:\"title\";s:7:\"Article\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:42:\"a:2:{i:0;s:7:\"article\";i:1;s:7:\"Article\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:89:\"Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1538753160,1),('links:user-menu:tree-data:en:2ea3e9edb30dbcd504cc04884c7c2dc967d5541d4799e45208bcf7f611a4e26a','a:2:{s:4:\"tree\";a:5:{i:2;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:1:\"2\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:4:\"user\";s:11:\"router_path\";s:4:\"user\";s:10:\"link_title\";s:12:\"User account\";s:7:\"options\";s:22:\"a:1:{s:5:\"alter\";b:1;}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:12:\"User account\";s:14:\"title_callback\";s:15:\"user_menu_title\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:15;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"15\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"user/logout\";s:11:\"router_path\";s:11:\"user/logout\";s:10:\"link_title\";s:7:\"Log out\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"15\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_logged_in\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:11:\"user_logout\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"user/logout\";s:5:\"title\";s:7:\"Log out\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:421;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"421\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:13:\"node/add/page\";s:11:\"router_path\";s:13:\"node/add/page\";s:10:\"link_title\";s:12:\"Add new page\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"421\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:38:\"a:2:{i:0;s:6:\"create\";i:1;s:4:\"page\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"page\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"node/add/page\";s:5:\"title\";s:10:\"Basic page\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:43:\"a:2:{i:0;s:4:\"page\";i:1;s:10:\"Basic page\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:77:\"Use <em>basic pages</em> for your static content, such as an \'About us\' page.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:0:{}}i:422;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"422\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"node/add/photos\";s:11:\"router_path\";s:15:\"node/add/photos\";s:10:\"link_title\";s:19:\"Add new photo album\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"422\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:40:\"a:2:{i:0;s:6:\"create\";i:1;s:6:\"photos\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:23:\"a:1:{i:0;s:6:\"photos\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"node/add/photos\";s:5:\"title\";s:5:\"Album\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:39:\"a:2:{i:0;s:6:\"photos\";i:1;s:5:\"Album\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:24:\"Create new photo albums.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:423;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"423\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:16:\"node/add/article\";s:11:\"router_path\";s:16:\"node/add/article\";s:10:\"link_title\";s:15:\"Add new article\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"423\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:41:\"a:2:{i:0;s:6:\"create\";i:1;s:7:\"article\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:24:\"a:1:{i:0;s:7:\"article\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"node/add/article\";s:5:\"title\";s:7:\"Article\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:42:\"a:2:{i:0;s:7:\"article\";i:1;s:7:\"Article\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:89:\"Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1652167722,1),('links:user-menu:tree-data:en:4be0cc08f8fcb46c3e82912c41c40d6a28a3a6b3ac4c4b2d5513d2e270a34179','a:2:{s:4:\"tree\";a:5:{i:2;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:1:\"2\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:4:\"user\";s:11:\"router_path\";s:4:\"user\";s:10:\"link_title\";s:12:\"User account\";s:7:\"options\";s:22:\"a:1:{s:5:\"alter\";b:1;}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:12:\"User account\";s:14:\"title_callback\";s:15:\"user_menu_title\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:3:{i:10;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"10\";s:4:\"plid\";s:1:\"2\";s:9:\"link_path\";s:13:\"user/register\";s:11:\"router_path\";s:13:\"user/register\";s:10:\"link_title\";s:18:\"Create new account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:2:\"10\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:20:\"user_register_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"user_register_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:18:\"Create new account\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:14;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"14\";s:4:\"plid\";s:1:\"2\";s:9:\"link_path\";s:10:\"user/login\";s:11:\"router_path\";s:10:\"user/login\";s:10:\"link_title\";s:6:\"Log in\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:2:\"14\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_anonymous\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:6:\"Log in\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:0:{}}i:20;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"20\";s:4:\"plid\";s:1:\"2\";s:9:\"link_path\";s:13:\"user/password\";s:11:\"router_path\";s:13:\"user/password\";s:10:\"link_title\";s:20:\"Request new password\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:2:\"20\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:26:\"a:1:{i:0;s:9:\"user_pass\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:20:\"Request new password\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:15;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"15\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"user/logout\";s:11:\"router_path\";s:11:\"user/logout\";s:10:\"link_title\";s:7:\"Log out\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"15\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_logged_in\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:11:\"user_logout\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"user/logout\";s:5:\"title\";s:7:\"Log out\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:421;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"421\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:13:\"node/add/page\";s:11:\"router_path\";s:13:\"node/add/page\";s:10:\"link_title\";s:12:\"Add new page\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"421\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:38:\"a:2:{i:0;s:6:\"create\";i:1;s:4:\"page\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"page\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"node/add/page\";s:5:\"title\";s:10:\"Basic page\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:43:\"a:2:{i:0;s:4:\"page\";i:1;s:10:\"Basic page\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:77:\"Use <em>basic pages</em> for your static content, such as an \'About us\' page.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:422;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"422\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"node/add/photos\";s:11:\"router_path\";s:15:\"node/add/photos\";s:10:\"link_title\";s:19:\"Add new photo album\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"422\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:40:\"a:2:{i:0;s:6:\"create\";i:1;s:6:\"photos\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:23:\"a:1:{i:0;s:6:\"photos\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"node/add/photos\";s:5:\"title\";s:5:\"Album\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:39:\"a:2:{i:0;s:6:\"photos\";i:1;s:5:\"Album\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:24:\"Create new photo albums.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:423;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"423\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:16:\"node/add/article\";s:11:\"router_path\";s:16:\"node/add/article\";s:10:\"link_title\";s:15:\"Add new article\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"423\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:41:\"a:2:{i:0;s:6:\"create\";i:1;s:7:\"article\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:24:\"a:1:{i:0;s:7:\"article\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"node/add/article\";s:5:\"title\";s:7:\"Article\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:42:\"a:2:{i:0;s:7:\"article\";i:1;s:7:\"Article\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:89:\"Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1538751178,1),('links:user-menu:tree-data:en:612dadedf1d6b0d48a520a4769268423ef06f1904c9ff2f06d96d8e6494320bc','a:2:{s:4:\"tree\";a:5:{i:2;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:1:\"2\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:4:\"user\";s:11:\"router_path\";s:4:\"user\";s:10:\"link_title\";s:12:\"User account\";s:7:\"options\";s:22:\"a:1:{s:5:\"alter\";b:1;}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:12:\"User account\";s:14:\"title_callback\";s:15:\"user_menu_title\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:15;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"15\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"user/logout\";s:11:\"router_path\";s:11:\"user/logout\";s:10:\"link_title\";s:7:\"Log out\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"15\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_logged_in\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:11:\"user_logout\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"user/logout\";s:5:\"title\";s:7:\"Log out\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:421;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"421\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:13:\"node/add/page\";s:11:\"router_path\";s:13:\"node/add/page\";s:10:\"link_title\";s:12:\"Add new page\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"421\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:38:\"a:2:{i:0;s:6:\"create\";i:1;s:4:\"page\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"page\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"node/add/page\";s:5:\"title\";s:10:\"Basic page\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:43:\"a:2:{i:0;s:4:\"page\";i:1;s:10:\"Basic page\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:77:\"Use <em>basic pages</em> for your static content, such as an \'About us\' page.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:422;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"422\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"node/add/photos\";s:11:\"router_path\";s:15:\"node/add/photos\";s:10:\"link_title\";s:19:\"Add new photo album\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"422\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:40:\"a:2:{i:0;s:6:\"create\";i:1;s:6:\"photos\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:23:\"a:1:{i:0;s:6:\"photos\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"node/add/photos\";s:5:\"title\";s:5:\"Album\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:39:\"a:2:{i:0;s:6:\"photos\";i:1;s:5:\"Album\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:24:\"Create new photo albums.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:423;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"423\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:16:\"node/add/article\";s:11:\"router_path\";s:16:\"node/add/article\";s:10:\"link_title\";s:15:\"Add new article\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"423\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:41:\"a:2:{i:0;s:6:\"create\";i:1;s:7:\"article\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:24:\"a:1:{i:0;s:7:\"article\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"node/add/article\";s:5:\"title\";s:7:\"Article\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:42:\"a:2:{i:0;s:7:\"article\";i:1;s:7:\"Article\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:89:\"Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1652163438,1),('links:user-menu:tree-data:en:748dd6d28b004aaae1c5adb20e9fb30e8a0a55bb2291fd8e1ed7199ff4266657','a:2:{s:4:\"tree\";a:5:{i:2;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:1:\"2\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:4:\"user\";s:11:\"router_path\";s:4:\"user\";s:10:\"link_title\";s:12:\"User account\";s:7:\"options\";s:22:\"a:1:{s:5:\"alter\";b:1;}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:12:\"User account\";s:14:\"title_callback\";s:15:\"user_menu_title\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:3:{i:10;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"10\";s:4:\"plid\";s:1:\"2\";s:9:\"link_path\";s:13:\"user/register\";s:11:\"router_path\";s:13:\"user/register\";s:10:\"link_title\";s:18:\"Create new account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:2:\"10\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:20:\"user_register_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"user_register_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:18:\"Create new account\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:14;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"14\";s:4:\"plid\";s:1:\"2\";s:9:\"link_path\";s:10:\"user/login\";s:11:\"router_path\";s:10:\"user/login\";s:10:\"link_title\";s:6:\"Log in\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:2:\"14\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_anonymous\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:6:\"Log in\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:20;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"20\";s:4:\"plid\";s:1:\"2\";s:9:\"link_path\";s:13:\"user/password\";s:11:\"router_path\";s:13:\"user/password\";s:10:\"link_title\";s:20:\"Request new password\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:2:\"20\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:26:\"a:1:{i:0;s:9:\"user_pass\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:20:\"Request new password\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:15;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"15\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"user/logout\";s:11:\"router_path\";s:11:\"user/logout\";s:10:\"link_title\";s:7:\"Log out\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"15\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_logged_in\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:11:\"user_logout\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"user/logout\";s:5:\"title\";s:7:\"Log out\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:421;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"421\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:13:\"node/add/page\";s:11:\"router_path\";s:13:\"node/add/page\";s:10:\"link_title\";s:12:\"Add new page\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"421\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:38:\"a:2:{i:0;s:6:\"create\";i:1;s:4:\"page\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"page\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"node/add/page\";s:5:\"title\";s:10:\"Basic page\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:43:\"a:2:{i:0;s:4:\"page\";i:1;s:10:\"Basic page\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:77:\"Use <em>basic pages</em> for your static content, such as an \'About us\' page.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:422;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"422\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"node/add/photos\";s:11:\"router_path\";s:15:\"node/add/photos\";s:10:\"link_title\";s:19:\"Add new photo album\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"422\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:40:\"a:2:{i:0;s:6:\"create\";i:1;s:6:\"photos\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:23:\"a:1:{i:0;s:6:\"photos\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"node/add/photos\";s:5:\"title\";s:5:\"Album\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:39:\"a:2:{i:0;s:6:\"photos\";i:1;s:5:\"Album\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:24:\"Create new photo albums.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:423;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"423\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:16:\"node/add/article\";s:11:\"router_path\";s:16:\"node/add/article\";s:10:\"link_title\";s:15:\"Add new article\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"423\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:41:\"a:2:{i:0;s:6:\"create\";i:1;s:7:\"article\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:24:\"a:1:{i:0;s:7:\"article\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"node/add/article\";s:5:\"title\";s:7:\"Article\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:42:\"a:2:{i:0;s:7:\"article\";i:1;s:7:\"Article\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:89:\"Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1538753160,1),('links:user-menu:tree-data:en:9bd1605e2280833450478f9083b7f8714c2fa28f1012455e2744e5af1a13eec5','a:2:{s:4:\"tree\";a:5:{i:2;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:1:\"2\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:4:\"user\";s:11:\"router_path\";s:4:\"user\";s:10:\"link_title\";s:12:\"User account\";s:7:\"options\";s:22:\"a:1:{s:5:\"alter\";b:1;}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:12:\"User account\";s:14:\"title_callback\";s:15:\"user_menu_title\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:15;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"15\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"user/logout\";s:11:\"router_path\";s:11:\"user/logout\";s:10:\"link_title\";s:7:\"Log out\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"15\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_logged_in\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:11:\"user_logout\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"user/logout\";s:5:\"title\";s:7:\"Log out\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:421;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"421\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:13:\"node/add/page\";s:11:\"router_path\";s:13:\"node/add/page\";s:10:\"link_title\";s:12:\"Add new page\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"421\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:38:\"a:2:{i:0;s:6:\"create\";i:1;s:4:\"page\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"page\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"node/add/page\";s:5:\"title\";s:10:\"Basic page\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:43:\"a:2:{i:0;s:4:\"page\";i:1;s:10:\"Basic page\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:77:\"Use <em>basic pages</em> for your static content, such as an \'About us\' page.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:422;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"422\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"node/add/photos\";s:11:\"router_path\";s:15:\"node/add/photos\";s:10:\"link_title\";s:19:\"Add new photo album\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"422\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:40:\"a:2:{i:0;s:6:\"create\";i:1;s:6:\"photos\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:23:\"a:1:{i:0;s:6:\"photos\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"node/add/photos\";s:5:\"title\";s:5:\"Album\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:39:\"a:2:{i:0;s:6:\"photos\";i:1;s:5:\"Album\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:24:\"Create new photo albums.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:423;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"423\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:16:\"node/add/article\";s:11:\"router_path\";s:16:\"node/add/article\";s:10:\"link_title\";s:15:\"Add new article\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"423\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:41:\"a:2:{i:0;s:6:\"create\";i:1;s:7:\"article\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:24:\"a:1:{i:0;s:7:\"article\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"node/add/article\";s:5:\"title\";s:7:\"Article\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:42:\"a:2:{i:0;s:7:\"article\";i:1;s:7:\"Article\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:89:\"Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1538751263,1),('links:user-menu:tree-data:en:9e07ff5e3845b1deb061974fe21209253a18f7bc96698d0fc38dbc29c4dd0f99','a:2:{s:4:\"tree\";a:5:{i:2;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:1:\"2\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:4:\"user\";s:11:\"router_path\";s:4:\"user\";s:10:\"link_title\";s:12:\"User account\";s:7:\"options\";s:22:\"a:1:{s:5:\"alter\";b:1;}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:12:\"User account\";s:14:\"title_callback\";s:15:\"user_menu_title\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:3:{i:10;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"10\";s:4:\"plid\";s:1:\"2\";s:9:\"link_path\";s:13:\"user/register\";s:11:\"router_path\";s:13:\"user/register\";s:10:\"link_title\";s:18:\"Create new account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:2:\"10\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:20:\"user_register_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"user_register_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:18:\"Create new account\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:14;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"14\";s:4:\"plid\";s:1:\"2\";s:9:\"link_path\";s:10:\"user/login\";s:11:\"router_path\";s:10:\"user/login\";s:10:\"link_title\";s:6:\"Log in\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:2:\"14\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_anonymous\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:6:\"Log in\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:20;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"20\";s:4:\"plid\";s:1:\"2\";s:9:\"link_path\";s:13:\"user/password\";s:11:\"router_path\";s:13:\"user/password\";s:10:\"link_title\";s:20:\"Request new password\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:2:\"20\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:26:\"a:1:{i:0;s:9:\"user_pass\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:20:\"Request new password\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:0:{}}}}i:15;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"15\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"user/logout\";s:11:\"router_path\";s:11:\"user/logout\";s:10:\"link_title\";s:7:\"Log out\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"15\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_logged_in\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:11:\"user_logout\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"user/logout\";s:5:\"title\";s:7:\"Log out\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:421;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"421\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:13:\"node/add/page\";s:11:\"router_path\";s:13:\"node/add/page\";s:10:\"link_title\";s:12:\"Add new page\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"421\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:38:\"a:2:{i:0;s:6:\"create\";i:1;s:4:\"page\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"page\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"node/add/page\";s:5:\"title\";s:10:\"Basic page\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:43:\"a:2:{i:0;s:4:\"page\";i:1;s:10:\"Basic page\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:77:\"Use <em>basic pages</em> for your static content, such as an \'About us\' page.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:422;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"422\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"node/add/photos\";s:11:\"router_path\";s:15:\"node/add/photos\";s:10:\"link_title\";s:19:\"Add new photo album\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"422\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:40:\"a:2:{i:0;s:6:\"create\";i:1;s:6:\"photos\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:23:\"a:1:{i:0;s:6:\"photos\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"node/add/photos\";s:5:\"title\";s:5:\"Album\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:39:\"a:2:{i:0;s:6:\"photos\";i:1;s:5:\"Album\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:24:\"Create new photo albums.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:423;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"423\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:16:\"node/add/article\";s:11:\"router_path\";s:16:\"node/add/article\";s:10:\"link_title\";s:15:\"Add new article\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"423\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:41:\"a:2:{i:0;s:6:\"create\";i:1;s:7:\"article\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:24:\"a:1:{i:0;s:7:\"article\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"node/add/article\";s:5:\"title\";s:7:\"Article\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:42:\"a:2:{i:0;s:7:\"article\";i:1;s:7:\"Article\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:89:\"Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1538750977,1),('links:user-menu:tree-data:en:9ec01ec58bf82a695e4acd636af283e0585fe8cd8a6e54eb140188a3e284ab1c','a:2:{s:4:\"tree\";a:5:{i:2;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:1:\"2\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:4:\"user\";s:11:\"router_path\";s:4:\"user\";s:10:\"link_title\";s:12:\"User account\";s:7:\"options\";s:22:\"a:1:{s:5:\"alter\";b:1;}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:12:\"User account\";s:14:\"title_callback\";s:15:\"user_menu_title\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:15;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"15\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"user/logout\";s:11:\"router_path\";s:11:\"user/logout\";s:10:\"link_title\";s:7:\"Log out\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"15\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_logged_in\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:11:\"user_logout\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"user/logout\";s:5:\"title\";s:7:\"Log out\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:421;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"421\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:13:\"node/add/page\";s:11:\"router_path\";s:13:\"node/add/page\";s:10:\"link_title\";s:12:\"Add new page\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"421\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:38:\"a:2:{i:0;s:6:\"create\";i:1;s:4:\"page\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"page\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"node/add/page\";s:5:\"title\";s:10:\"Basic page\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:43:\"a:2:{i:0;s:4:\"page\";i:1;s:10:\"Basic page\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:77:\"Use <em>basic pages</em> for your static content, such as an \'About us\' page.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:422;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"422\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"node/add/photos\";s:11:\"router_path\";s:15:\"node/add/photos\";s:10:\"link_title\";s:19:\"Add new photo album\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"422\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:40:\"a:2:{i:0;s:6:\"create\";i:1;s:6:\"photos\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:23:\"a:1:{i:0;s:6:\"photos\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"node/add/photos\";s:5:\"title\";s:5:\"Album\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:39:\"a:2:{i:0;s:6:\"photos\";i:1;s:5:\"Album\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:24:\"Create new photo albums.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:423;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"423\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:16:\"node/add/article\";s:11:\"router_path\";s:16:\"node/add/article\";s:10:\"link_title\";s:15:\"Add new article\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"423\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:41:\"a:2:{i:0;s:6:\"create\";i:1;s:7:\"article\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:24:\"a:1:{i:0;s:7:\"article\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"node/add/article\";s:5:\"title\";s:7:\"Article\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:42:\"a:2:{i:0;s:7:\"article\";i:1;s:7:\"Article\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:89:\"Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1538750673,1),('links:user-menu:tree-data:en:bcf621265748b33736f3e83b1c8818308ca1fd410197843c3d264c6ac13b91ad','a:2:{s:4:\"tree\";a:5:{i:2;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:1:\"2\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:4:\"user\";s:11:\"router_path\";s:4:\"user\";s:10:\"link_title\";s:12:\"User account\";s:7:\"options\";s:22:\"a:1:{s:5:\"alter\";b:1;}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:12:\"User account\";s:14:\"title_callback\";s:15:\"user_menu_title\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:0:{}}i:15;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"15\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"user/logout\";s:11:\"router_path\";s:11:\"user/logout\";s:10:\"link_title\";s:7:\"Log out\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"15\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_logged_in\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:11:\"user_logout\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"user/logout\";s:5:\"title\";s:7:\"Log out\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:421;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"421\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:13:\"node/add/page\";s:11:\"router_path\";s:13:\"node/add/page\";s:10:\"link_title\";s:12:\"Add new page\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"421\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:38:\"a:2:{i:0;s:6:\"create\";i:1;s:4:\"page\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"page\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"node/add/page\";s:5:\"title\";s:10:\"Basic page\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:43:\"a:2:{i:0;s:4:\"page\";i:1;s:10:\"Basic page\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:77:\"Use <em>basic pages</em> for your static content, such as an \'About us\' page.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:422;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"422\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"node/add/photos\";s:11:\"router_path\";s:15:\"node/add/photos\";s:10:\"link_title\";s:19:\"Add new photo album\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"422\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:40:\"a:2:{i:0;s:6:\"create\";i:1;s:6:\"photos\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:23:\"a:1:{i:0;s:6:\"photos\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"node/add/photos\";s:5:\"title\";s:5:\"Album\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:39:\"a:2:{i:0;s:6:\"photos\";i:1;s:5:\"Album\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:24:\"Create new photo albums.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:423;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"423\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:16:\"node/add/article\";s:11:\"router_path\";s:16:\"node/add/article\";s:10:\"link_title\";s:15:\"Add new article\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"423\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:41:\"a:2:{i:0;s:6:\"create\";i:1;s:7:\"article\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:24:\"a:1:{i:0;s:7:\"article\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"node/add/article\";s:5:\"title\";s:7:\"Article\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:42:\"a:2:{i:0;s:7:\"article\";i:1;s:7:\"Article\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:89:\"Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1538750977,1),('links:user-menu:tree-data:en:cac14999cdc7d5f7f0196586b48c5f900ac44bd30d369d40c831ed506555dcc1','a:2:{s:4:\"tree\";a:5:{i:2;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:1:\"2\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:4:\"user\";s:11:\"router_path\";s:4:\"user\";s:10:\"link_title\";s:12:\"User account\";s:7:\"options\";s:22:\"a:1:{s:5:\"alter\";b:1;}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:12:\"User account\";s:14:\"title_callback\";s:15:\"user_menu_title\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:0:{}}i:15;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"15\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"user/logout\";s:11:\"router_path\";s:11:\"user/logout\";s:10:\"link_title\";s:7:\"Log out\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"15\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_logged_in\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:11:\"user_logout\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"user/logout\";s:5:\"title\";s:7:\"Log out\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:421;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"421\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:13:\"node/add/page\";s:11:\"router_path\";s:13:\"node/add/page\";s:10:\"link_title\";s:12:\"Add new page\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"421\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:38:\"a:2:{i:0;s:6:\"create\";i:1;s:4:\"page\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"page\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"node/add/page\";s:5:\"title\";s:10:\"Basic page\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:43:\"a:2:{i:0;s:4:\"page\";i:1;s:10:\"Basic page\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:77:\"Use <em>basic pages</em> for your static content, such as an \'About us\' page.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:422;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"422\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"node/add/photos\";s:11:\"router_path\";s:15:\"node/add/photos\";s:10:\"link_title\";s:19:\"Add new photo album\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"422\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:40:\"a:2:{i:0;s:6:\"create\";i:1;s:6:\"photos\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:23:\"a:1:{i:0;s:6:\"photos\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"node/add/photos\";s:5:\"title\";s:5:\"Album\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:39:\"a:2:{i:0;s:6:\"photos\";i:1;s:5:\"Album\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:24:\"Create new photo albums.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:423;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"423\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:16:\"node/add/article\";s:11:\"router_path\";s:16:\"node/add/article\";s:10:\"link_title\";s:15:\"Add new article\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"423\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:41:\"a:2:{i:0;s:6:\"create\";i:1;s:7:\"article\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:24:\"a:1:{i:0;s:7:\"article\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"node/add/article\";s:5:\"title\";s:7:\"Article\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:42:\"a:2:{i:0;s:7:\"article\";i:1;s:7:\"Article\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:89:\"Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1538751178,1),('links:user-menu:tree-data:it:220b0d67aa9e79723f379074489a3b705b45e30c2d8501c016ffb0c6fa80b909','a:2:{s:4:\"tree\";a:5:{i:2;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:1:\"2\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:4:\"user\";s:11:\"router_path\";s:4:\"user\";s:10:\"link_title\";s:12:\"User account\";s:7:\"options\";s:22:\"a:1:{s:5:\"alter\";b:1;}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:12:\"User account\";s:14:\"title_callback\";s:15:\"user_menu_title\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:0:{}}i:15;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"15\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"user/logout\";s:11:\"router_path\";s:11:\"user/logout\";s:10:\"link_title\";s:7:\"Log out\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"15\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_logged_in\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:11:\"user_logout\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"user/logout\";s:5:\"title\";s:7:\"Log out\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:421;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"421\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:13:\"node/add/page\";s:11:\"router_path\";s:13:\"node/add/page\";s:10:\"link_title\";s:12:\"Add new page\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"421\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:38:\"a:2:{i:0;s:6:\"create\";i:1;s:4:\"page\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"page\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"node/add/page\";s:5:\"title\";s:10:\"Basic page\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:43:\"a:2:{i:0;s:4:\"page\";i:1;s:10:\"Basic page\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:77:\"Use <em>basic pages</em> for your static content, such as an \'About us\' page.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:422;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"422\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"node/add/photos\";s:11:\"router_path\";s:15:\"node/add/photos\";s:10:\"link_title\";s:19:\"Add new photo album\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"422\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:40:\"a:2:{i:0;s:6:\"create\";i:1;s:6:\"photos\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:23:\"a:1:{i:0;s:6:\"photos\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"node/add/photos\";s:5:\"title\";s:5:\"Album\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:39:\"a:2:{i:0;s:6:\"photos\";i:1;s:5:\"Album\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:24:\"Create new photo albums.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:423;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"423\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:16:\"node/add/article\";s:11:\"router_path\";s:16:\"node/add/article\";s:10:\"link_title\";s:15:\"Add new article\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"423\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:41:\"a:2:{i:0;s:6:\"create\";i:1;s:7:\"article\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:24:\"a:1:{i:0;s:7:\"article\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"node/add/article\";s:5:\"title\";s:7:\"Article\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:42:\"a:2:{i:0;s:7:\"article\";i:1;s:7:\"Article\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:89:\"Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1539007784,1);
INSERT INTO `cache_menu` VALUES ('links:user-menu:tree-data:it:4be0cc08f8fcb46c3e82912c41c40d6a28a3a6b3ac4c4b2d5513d2e270a34179','a:2:{s:4:\"tree\";a:5:{i:2;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:1:\"2\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:4:\"user\";s:11:\"router_path\";s:4:\"user\";s:10:\"link_title\";s:12:\"User account\";s:7:\"options\";s:22:\"a:1:{s:5:\"alter\";b:1;}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:12:\"User account\";s:14:\"title_callback\";s:15:\"user_menu_title\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:3:{i:10;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"10\";s:4:\"plid\";s:1:\"2\";s:9:\"link_path\";s:13:\"user/register\";s:11:\"router_path\";s:13:\"user/register\";s:10:\"link_title\";s:18:\"Create new account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:2:\"10\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:20:\"user_register_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"user_register_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:18:\"Create new account\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:14;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"14\";s:4:\"plid\";s:1:\"2\";s:9:\"link_path\";s:10:\"user/login\";s:11:\"router_path\";s:10:\"user/login\";s:10:\"link_title\";s:6:\"Log in\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:2:\"14\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_anonymous\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:6:\"Log in\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:0:{}}i:20;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"20\";s:4:\"plid\";s:1:\"2\";s:9:\"link_path\";s:13:\"user/password\";s:11:\"router_path\";s:13:\"user/password\";s:10:\"link_title\";s:20:\"Request new password\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:2:\"20\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:26:\"a:1:{i:0;s:9:\"user_pass\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:20:\"Request new password\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:15;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"15\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"user/logout\";s:11:\"router_path\";s:11:\"user/logout\";s:10:\"link_title\";s:7:\"Log out\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"15\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_logged_in\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:11:\"user_logout\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"user/logout\";s:5:\"title\";s:7:\"Log out\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:421;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"421\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:13:\"node/add/page\";s:11:\"router_path\";s:13:\"node/add/page\";s:10:\"link_title\";s:12:\"Add new page\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"421\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:38:\"a:2:{i:0;s:6:\"create\";i:1;s:4:\"page\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"page\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"node/add/page\";s:5:\"title\";s:10:\"Basic page\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:43:\"a:2:{i:0;s:4:\"page\";i:1;s:10:\"Basic page\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:77:\"Use <em>basic pages</em> for your static content, such as an \'About us\' page.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:422;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"422\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"node/add/photos\";s:11:\"router_path\";s:15:\"node/add/photos\";s:10:\"link_title\";s:19:\"Add new photo album\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"422\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:40:\"a:2:{i:0;s:6:\"create\";i:1;s:6:\"photos\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:23:\"a:1:{i:0;s:6:\"photos\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"node/add/photos\";s:5:\"title\";s:5:\"Album\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:39:\"a:2:{i:0;s:6:\"photos\";i:1;s:5:\"Album\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:24:\"Create new photo albums.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:423;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"423\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:16:\"node/add/article\";s:11:\"router_path\";s:16:\"node/add/article\";s:10:\"link_title\";s:15:\"Add new article\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"423\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:41:\"a:2:{i:0;s:6:\"create\";i:1;s:7:\"article\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:24:\"a:1:{i:0;s:7:\"article\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"node/add/article\";s:5:\"title\";s:7:\"Article\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:42:\"a:2:{i:0;s:7:\"article\";i:1;s:7:\"Article\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:89:\"Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1553105063,1),('links:user-menu:tree-data:it:748dd6d28b004aaae1c5adb20e9fb30e8a0a55bb2291fd8e1ed7199ff4266657','a:2:{s:4:\"tree\";a:5:{i:2;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:1:\"2\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:4:\"user\";s:11:\"router_path\";s:4:\"user\";s:10:\"link_title\";s:12:\"User account\";s:7:\"options\";s:22:\"a:1:{s:5:\"alter\";b:1;}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:12:\"User account\";s:14:\"title_callback\";s:15:\"user_menu_title\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:3:{i:10;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"10\";s:4:\"plid\";s:1:\"2\";s:9:\"link_path\";s:13:\"user/register\";s:11:\"router_path\";s:13:\"user/register\";s:10:\"link_title\";s:18:\"Create new account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:2:\"10\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:20:\"user_register_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"user_register_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:18:\"Create new account\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:14;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"14\";s:4:\"plid\";s:1:\"2\";s:9:\"link_path\";s:10:\"user/login\";s:11:\"router_path\";s:10:\"user/login\";s:10:\"link_title\";s:6:\"Log in\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:2:\"14\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_anonymous\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:6:\"Log in\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:20;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"20\";s:4:\"plid\";s:1:\"2\";s:9:\"link_path\";s:13:\"user/password\";s:11:\"router_path\";s:13:\"user/password\";s:10:\"link_title\";s:20:\"Request new password\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:2:\"20\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:26:\"a:1:{i:0;s:9:\"user_pass\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:20:\"Request new password\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}}i:15;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"15\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"user/logout\";s:11:\"router_path\";s:11:\"user/logout\";s:10:\"link_title\";s:7:\"Log out\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"15\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_logged_in\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:11:\"user_logout\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"user/logout\";s:5:\"title\";s:7:\"Log out\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:421;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"421\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:13:\"node/add/page\";s:11:\"router_path\";s:13:\"node/add/page\";s:10:\"link_title\";s:12:\"Add new page\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"421\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:38:\"a:2:{i:0;s:6:\"create\";i:1;s:4:\"page\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"page\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"node/add/page\";s:5:\"title\";s:10:\"Basic page\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:43:\"a:2:{i:0;s:4:\"page\";i:1;s:10:\"Basic page\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:77:\"Use <em>basic pages</em> for your static content, such as an \'About us\' page.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:422;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"422\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"node/add/photos\";s:11:\"router_path\";s:15:\"node/add/photos\";s:10:\"link_title\";s:19:\"Add new photo album\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"422\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:40:\"a:2:{i:0;s:6:\"create\";i:1;s:6:\"photos\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:23:\"a:1:{i:0;s:6:\"photos\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"node/add/photos\";s:5:\"title\";s:5:\"Album\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:39:\"a:2:{i:0;s:6:\"photos\";i:1;s:5:\"Album\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:24:\"Create new photo albums.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:423;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"423\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:16:\"node/add/article\";s:11:\"router_path\";s:16:\"node/add/article\";s:10:\"link_title\";s:15:\"Add new article\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"423\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:41:\"a:2:{i:0;s:6:\"create\";i:1;s:7:\"article\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:24:\"a:1:{i:0;s:7:\"article\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"node/add/article\";s:5:\"title\";s:7:\"Article\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:42:\"a:2:{i:0;s:7:\"article\";i:1;s:7:\"Article\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:89:\"Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1539007784,1),('links:user-menu:tree-data:it:9bd1605e2280833450478f9083b7f8714c2fa28f1012455e2744e5af1a13eec5','a:2:{s:4:\"tree\";a:5:{i:2;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:1:\"2\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:4:\"user\";s:11:\"router_path\";s:4:\"user\";s:10:\"link_title\";s:12:\"User account\";s:7:\"options\";s:22:\"a:1:{s:5:\"alter\";b:1;}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:12:\"User account\";s:14:\"title_callback\";s:15:\"user_menu_title\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:15;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"15\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"user/logout\";s:11:\"router_path\";s:11:\"user/logout\";s:10:\"link_title\";s:7:\"Log out\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"15\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_logged_in\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:11:\"user_logout\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"user/logout\";s:5:\"title\";s:7:\"Log out\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:421;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"421\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:13:\"node/add/page\";s:11:\"router_path\";s:13:\"node/add/page\";s:10:\"link_title\";s:12:\"Add new page\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"421\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:38:\"a:2:{i:0;s:6:\"create\";i:1;s:4:\"page\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"page\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"node/add/page\";s:5:\"title\";s:10:\"Basic page\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:43:\"a:2:{i:0;s:4:\"page\";i:1;s:10:\"Basic page\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:77:\"Use <em>basic pages</em> for your static content, such as an \'About us\' page.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:422;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"422\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"node/add/photos\";s:11:\"router_path\";s:15:\"node/add/photos\";s:10:\"link_title\";s:19:\"Add new photo album\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"422\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:40:\"a:2:{i:0;s:6:\"create\";i:1;s:6:\"photos\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:23:\"a:1:{i:0;s:6:\"photos\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"node/add/photos\";s:5:\"title\";s:5:\"Album\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:39:\"a:2:{i:0;s:6:\"photos\";i:1;s:5:\"Album\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:24:\"Create new photo albums.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:423;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"423\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:16:\"node/add/article\";s:11:\"router_path\";s:16:\"node/add/article\";s:10:\"link_title\";s:15:\"Add new article\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"423\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:41:\"a:2:{i:0;s:6:\"create\";i:1;s:7:\"article\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:24:\"a:1:{i:0;s:7:\"article\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"node/add/article\";s:5:\"title\";s:7:\"Article\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:42:\"a:2:{i:0;s:7:\"article\";i:1;s:7:\"Article\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:89:\"Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1538751382,1),('links:user-menu:tree-data:it:9e07ff5e3845b1deb061974fe21209253a18f7bc96698d0fc38dbc29c4dd0f99','a:2:{s:4:\"tree\";a:5:{i:2;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:1:\"2\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:4:\"user\";s:11:\"router_path\";s:4:\"user\";s:10:\"link_title\";s:12:\"User account\";s:7:\"options\";s:22:\"a:1:{s:5:\"alter\";b:1;}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:12:\"User account\";s:14:\"title_callback\";s:15:\"user_menu_title\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:3:{i:10;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"10\";s:4:\"plid\";s:1:\"2\";s:9:\"link_path\";s:13:\"user/register\";s:11:\"router_path\";s:13:\"user/register\";s:10:\"link_title\";s:18:\"Create new account\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:2:\"10\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:20:\"user_register_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"user_register_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:18:\"Create new account\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:14;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"14\";s:4:\"plid\";s:1:\"2\";s:9:\"link_path\";s:10:\"user/login\";s:11:\"router_path\";s:10:\"user/login\";s:10:\"link_title\";s:6:\"Log in\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:2:\"14\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_anonymous\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:6:\"Log in\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:20;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"20\";s:4:\"plid\";s:1:\"2\";s:9:\"link_path\";s:13:\"user/password\";s:11:\"router_path\";s:13:\"user/password\";s:10:\"link_title\";s:20:\"Request new password\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:2:\"-1\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"2\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:2:\"20\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:26:\"a:1:{i:0;s:9:\"user_pass\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:20:\"Request new password\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:0:{}}}}i:15;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"15\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"user/logout\";s:11:\"router_path\";s:11:\"user/logout\";s:10:\"link_title\";s:7:\"Log out\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"15\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_logged_in\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:11:\"user_logout\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"user/logout\";s:5:\"title\";s:7:\"Log out\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:421;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"421\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:13:\"node/add/page\";s:11:\"router_path\";s:13:\"node/add/page\";s:10:\"link_title\";s:12:\"Add new page\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"421\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:38:\"a:2:{i:0;s:6:\"create\";i:1;s:4:\"page\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"page\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"node/add/page\";s:5:\"title\";s:10:\"Basic page\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:43:\"a:2:{i:0;s:4:\"page\";i:1;s:10:\"Basic page\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:77:\"Use <em>basic pages</em> for your static content, such as an \'About us\' page.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:422;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"422\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"node/add/photos\";s:11:\"router_path\";s:15:\"node/add/photos\";s:10:\"link_title\";s:19:\"Add new photo album\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"422\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:40:\"a:2:{i:0;s:6:\"create\";i:1;s:6:\"photos\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:23:\"a:1:{i:0;s:6:\"photos\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"node/add/photos\";s:5:\"title\";s:5:\"Album\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:39:\"a:2:{i:0;s:6:\"photos\";i:1;s:5:\"Album\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:24:\"Create new photo albums.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:423;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"423\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:16:\"node/add/article\";s:11:\"router_path\";s:16:\"node/add/article\";s:10:\"link_title\";s:15:\"Add new article\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"423\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:41:\"a:2:{i:0;s:6:\"create\";i:1;s:7:\"article\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:24:\"a:1:{i:0;s:7:\"article\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"node/add/article\";s:5:\"title\";s:7:\"Article\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:42:\"a:2:{i:0;s:7:\"article\";i:1;s:7:\"Article\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:89:\"Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1539006747,1),('links:user-menu:tree-data:it:9ec01ec58bf82a695e4acd636af283e0585fe8cd8a6e54eb140188a3e284ab1c','a:2:{s:4:\"tree\";a:5:{i:2;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:1:\"2\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:4:\"user\";s:11:\"router_path\";s:4:\"user\";s:10:\"link_title\";s:12:\"User account\";s:7:\"options\";s:22:\"a:1:{s:5:\"alter\";b:1;}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:12:\"User account\";s:14:\"title_callback\";s:15:\"user_menu_title\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:15;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"15\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"user/logout\";s:11:\"router_path\";s:11:\"user/logout\";s:10:\"link_title\";s:7:\"Log out\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"15\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_logged_in\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:11:\"user_logout\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"user/logout\";s:5:\"title\";s:7:\"Log out\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:421;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"421\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:13:\"node/add/page\";s:11:\"router_path\";s:13:\"node/add/page\";s:10:\"link_title\";s:12:\"Add new page\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"421\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:38:\"a:2:{i:0;s:6:\"create\";i:1;s:4:\"page\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"page\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"node/add/page\";s:5:\"title\";s:10:\"Basic page\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:43:\"a:2:{i:0;s:4:\"page\";i:1;s:10:\"Basic page\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:77:\"Use <em>basic pages</em> for your static content, such as an \'About us\' page.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:422;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"422\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"node/add/photos\";s:11:\"router_path\";s:15:\"node/add/photos\";s:10:\"link_title\";s:19:\"Add new photo album\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"422\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:40:\"a:2:{i:0;s:6:\"create\";i:1;s:6:\"photos\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:23:\"a:1:{i:0;s:6:\"photos\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"node/add/photos\";s:5:\"title\";s:5:\"Album\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:39:\"a:2:{i:0;s:6:\"photos\";i:1;s:5:\"Album\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:24:\"Create new photo albums.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:423;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"423\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:16:\"node/add/article\";s:11:\"router_path\";s:16:\"node/add/article\";s:10:\"link_title\";s:15:\"Add new article\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"423\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:41:\"a:2:{i:0;s:6:\"create\";i:1;s:7:\"article\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:24:\"a:1:{i:0;s:7:\"article\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"node/add/article\";s:5:\"title\";s:7:\"Article\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:42:\"a:2:{i:0;s:7:\"article\";i:1;s:7:\"Article\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:89:\"Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1538751382,1),('links:user-menu:tree-data:it:bcf621265748b33736f3e83b1c8818308ca1fd410197843c3d264c6ac13b91ad','a:2:{s:4:\"tree\";a:5:{i:2;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:1:\"2\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:4:\"user\";s:11:\"router_path\";s:4:\"user\";s:10:\"link_title\";s:12:\"User account\";s:7:\"options\";s:22:\"a:1:{s:5:\"alter\";b:1;}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:12:\"User account\";s:14:\"title_callback\";s:15:\"user_menu_title\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:0:{}}i:15;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"15\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"user/logout\";s:11:\"router_path\";s:11:\"user/logout\";s:10:\"link_title\";s:7:\"Log out\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"15\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_logged_in\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:11:\"user_logout\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"user/logout\";s:5:\"title\";s:7:\"Log out\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:421;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"421\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:13:\"node/add/page\";s:11:\"router_path\";s:13:\"node/add/page\";s:10:\"link_title\";s:12:\"Add new page\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"421\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:38:\"a:2:{i:0;s:6:\"create\";i:1;s:4:\"page\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"page\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"node/add/page\";s:5:\"title\";s:10:\"Basic page\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:43:\"a:2:{i:0;s:4:\"page\";i:1;s:10:\"Basic page\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:77:\"Use <em>basic pages</em> for your static content, such as an \'About us\' page.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:422;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"422\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"node/add/photos\";s:11:\"router_path\";s:15:\"node/add/photos\";s:10:\"link_title\";s:19:\"Add new photo album\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"422\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:40:\"a:2:{i:0;s:6:\"create\";i:1;s:6:\"photos\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:23:\"a:1:{i:0;s:6:\"photos\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"node/add/photos\";s:5:\"title\";s:5:\"Album\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:39:\"a:2:{i:0;s:6:\"photos\";i:1;s:5:\"Album\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:24:\"Create new photo albums.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:423;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"423\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:16:\"node/add/article\";s:11:\"router_path\";s:16:\"node/add/article\";s:10:\"link_title\";s:15:\"Add new article\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"423\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:41:\"a:2:{i:0;s:6:\"create\";i:1;s:7:\"article\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:24:\"a:1:{i:0;s:7:\"article\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"node/add/article\";s:5:\"title\";s:7:\"Article\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:42:\"a:2:{i:0;s:7:\"article\";i:1;s:7:\"Article\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:89:\"Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1539006747,1),('links:user-menu:tree-data:it:cac14999cdc7d5f7f0196586b48c5f900ac44bd30d369d40c831ed506555dcc1','a:2:{s:4:\"tree\";a:5:{i:2;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:1:\"2\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:4:\"user\";s:11:\"router_path\";s:4:\"user\";s:10:\"link_title\";s:12:\"User account\";s:7:\"options\";s:22:\"a:1:{s:5:\"alter\";b:1;}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:3:\"-10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:1:\"2\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:12:\"User account\";s:14:\"title_callback\";s:15:\"user_menu_title\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:1;}s:5:\"below\";a:0:{}}i:15;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:2:\"15\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:11:\"user/logout\";s:11:\"router_path\";s:11:\"user/logout\";s:10:\"link_title\";s:7:\"Log out\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:6:\"system\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:2:\"10\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:2:\"15\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_logged_in\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:11:\"user_logout\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:11:\"user/logout\";s:5:\"title\";s:7:\"Log out\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:421;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"421\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:13:\"node/add/page\";s:11:\"router_path\";s:13:\"node/add/page\";s:10:\"link_title\";s:12:\"Add new page\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"421\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:38:\"a:2:{i:0;s:6:\"create\";i:1;s:4:\"page\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"page\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"node/add/page\";s:5:\"title\";s:10:\"Basic page\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:43:\"a:2:{i:0;s:4:\"page\";i:1;s:10:\"Basic page\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:77:\"Use <em>basic pages</em> for your static content, such as an \'About us\' page.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:422;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"422\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:15:\"node/add/photos\";s:11:\"router_path\";s:15:\"node/add/photos\";s:10:\"link_title\";s:19:\"Add new photo album\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"422\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:40:\"a:2:{i:0;s:6:\"create\";i:1;s:6:\"photos\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:23:\"a:1:{i:0;s:6:\"photos\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"node/add/photos\";s:5:\"title\";s:5:\"Album\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:39:\"a:2:{i:0;s:6:\"photos\";i:1;s:5:\"Album\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:24:\"Create new photo albums.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}i:423;a:2:{s:4:\"link\";a:44:{s:9:\"menu_name\";s:9:\"user-menu\";s:4:\"mlid\";s:3:\"423\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:16:\"node/add/article\";s:11:\"router_path\";s:16:\"node/add/article\";s:10:\"link_title\";s:15:\"Add new article\";s:7:\"options\";s:49:\"a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"0\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"1\";s:2:\"p1\";s:3:\"423\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_tsid\";s:1:\"0\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:41:\"a:2:{i:0;s:6:\"create\";i:1;s:7:\"article\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:24:\"a:1:{i:0;s:7:\"article\";}\";s:17:\"delivery_callback\";s:0:\"\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"node/add/article\";s:5:\"title\";s:7:\"Article\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:42:\"a:2:{i:0;s:7:\"article\";i:1;s:7:\"Article\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:89:\"Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.\";s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1553105063,1),('local_tasks:admin/config','a:1:{i:0;a:23:{s:4:\"path\";s:12:\"admin/config\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:24:\"system_admin_config_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"3\";s:12:\"number_parts\";s:1:\"2\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/config\";s:5:\"title\";s:13:\"Configuration\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:20:\"Administer settings.\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:31:\"modules/system/system.admin.inc\";}}',0,1538750697,1),('local_tasks:admin/config/development/maintenance','a:1:{i:0;a:23:{s:4:\"path\";s:36:\"admin/config/development/maintenance\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"administer site configuration\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:46:\"a:1:{i:0;s:28:\"system_site_maintenance_mode\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"15\";s:12:\"number_parts\";s:1:\"4\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:36:\"admin/config/development/maintenance\";s:5:\"title\";s:16:\"Maintenance mode\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:62:\"Take the site offline for maintenance or bring it back online.\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:3:\"-10\";s:12:\"include_file\";s:31:\"modules/system/system.admin.inc\";}}',0,1538751536,1),('local_tasks:admin/config/development/performance','a:1:{i:0;a:23:{s:4:\"path\";s:36:\"admin/config/development/performance\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"administer site configuration\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:45:\"a:1:{i:0;s:27:\"system_performance_settings\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"15\";s:12:\"number_parts\";s:1:\"4\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:36:\"admin/config/development/performance\";s:5:\"title\";s:11:\"Performance\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:101:\"Enable or disable page caching for anonymous users and set CSS and JS bandwidth optimization options.\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:3:\"-20\";s:12:\"include_file\";s:31:\"modules/system/system.admin.inc\";}}',0,1538750673,1),('local_tasks:admin/config/people/accounts','a:6:{i:0;a:23:{s:4:\"path\";s:28:\"admin/config/people/accounts\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:37:\"a:1:{i:0;s:19:\"user_admin_settings\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"15\";s:12:\"number_parts\";s:1:\"4\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:28:\"admin/config/people/accounts\";s:5:\"title\";s:16:\"Account settings\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:109:\"Configure default behavior of users, including registration requirements, e-mails, fields, and user pictures.\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:3:\"-10\";s:12:\"include_file\";s:27:\"modules/user/user.admin.inc\";}i:1;a:23:{s:4:\"path\";s:44:\"admin/config/people/accounts/display/default\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:31:\"_field_ui_view_mode_menu_access\";s:16:\"access_arguments\";s:148:\"a:6:{i:0;s:4:\"user\";i:1;s:4:\"user\";i:2;s:7:\"default\";i:3;s:21:\"field_ui_admin_access\";i:4;s:11:\"user_access\";i:5;a:1:{i:0;s:16:\"administer users\";}}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:96:\"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\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"63\";s:12:\"number_parts\";s:1:\"6\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:36:\"admin/config/people/accounts/display\";s:8:\"tab_root\";s:28:\"admin/config/people/accounts\";s:5:\"title\";s:7:\"Default\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:3:\"-10\";s:12:\"include_file\";s:35:\"modules/field_ui/field_ui.admin.inc\";}i:2;a:23:{s:4:\"path\";s:37:\"admin/config/people/accounts/settings\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:37:\"a:1:{i:0;s:19:\"user_admin_settings\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"31\";s:12:\"number_parts\";s:1:\"5\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:28:\"admin/config/people/accounts\";s:8:\"tab_root\";s:28:\"admin/config/people/accounts\";s:5:\"title\";s:8:\"Settings\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:3:\"-10\";s:12:\"include_file\";s:27:\"modules/user/user.admin.inc\";}i:3;a:23:{s:4:\"path\";s:41:\"admin/config/people/accounts/display/full\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:31:\"_field_ui_view_mode_menu_access\";s:16:\"access_arguments\";s:145:\"a:6:{i:0;s:4:\"user\";i:1;s:4:\"user\";i:2;s:4:\"full\";i:3;s:21:\"field_ui_admin_access\";i:4;s:11:\"user_access\";i:5;a:1:{i:0;s:16:\"administer users\";}}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:93:\"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\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"63\";s:12:\"number_parts\";s:1:\"6\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:36:\"admin/config/people/accounts/display\";s:8:\"tab_root\";s:28:\"admin/config/people/accounts\";s:5:\"title\";s:12:\"User account\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:35:\"modules/field_ui/field_ui.admin.inc\";}i:4;a:23:{s:4:\"path\";s:35:\"admin/config/people/accounts/fields\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:21:\"field_ui_admin_access\";s:16:\"access_arguments\";s:67:\"a:2:{i:0;s:11:\"user_access\";i:1;a:1:{i:0;s:16:\"administer users\";}}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:76:\"a:3:{i:0;s:28:\"field_ui_field_overview_form\";i:1;s:4:\"user\";i:2;s:4:\"user\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"31\";s:12:\"number_parts\";s:1:\"5\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:28:\"admin/config/people/accounts\";s:8:\"tab_root\";s:28:\"admin/config/people/accounts\";s:5:\"title\";s:13:\"Manage fields\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"1\";s:12:\"include_file\";s:35:\"modules/field_ui/field_ui.admin.inc\";}i:5;a:23:{s:4:\"path\";s:36:\"admin/config/people/accounts/display\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:21:\"field_ui_admin_access\";s:16:\"access_arguments\";s:67:\"a:2:{i:0;s:11:\"user_access\";i:1;a:1:{i:0;s:16:\"administer users\";}}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:96:\"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\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"31\";s:12:\"number_parts\";s:1:\"5\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:28:\"admin/config/people/accounts\";s:8:\"tab_root\";s:28:\"admin/config/people/accounts\";s:5:\"title\";s:14:\"Manage display\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"2\";s:12:\"include_file\";s:35:\"modules/field_ui/field_ui.admin.inc\";}}',0,1652162436,1),('local_tasks:admin/config/system/site-information','a:1:{i:0;a:23:{s:4:\"path\";s:36:\"admin/config/system/site-information\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:47:\"a:1:{i:0;s:29:\"administer site configuration\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:50:\"a:1:{i:0;s:32:\"system_site_information_settings\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"15\";s:12:\"number_parts\";s:1:\"4\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:36:\"admin/config/system/site-information\";s:5:\"title\";s:16:\"Site information\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:104:\"Change site name, e-mail address, slogan, default front page, and number of posts per page, error pages.\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:3:\"-20\";s:12:\"include_file\";s:31:\"modules/system/system.admin.inc\";}}',0,1652162705,1),('local_tasks:admin/dashboard','a:1:{i:0;a:23:{s:4:\"path\";s:15:\"admin/dashboard\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"access dashboard\";}\";s:13:\"page_callback\";s:15:\"dashboard_admin\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"3\";s:12:\"number_parts\";s:1:\"2\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:15:\"admin/dashboard\";s:5:\"title\";s:9:\"Dashboard\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View and customize your dashboard.\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:3:\"-15\";s:12:\"include_file\";s:0:\"\";}}',0,1652162507,1),('local_tasks:admin/help','a:1:{i:0;a:23:{s:4:\"path\";s:10:\"admin/help\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_main\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"3\";s:12:\"number_parts\";s:1:\"2\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"admin/help\";s:5:\"title\";s:4:\"Help\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:48:\"Reference for usage, configuration, and modules.\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"9\";s:12:\"include_file\";s:27:\"modules/help/help.admin.inc\";}}',0,1652162454,1),('local_tasks:admin/help/update','a:1:{i:0;a:23:{s:4:\"path\";s:17:\"admin/help/update\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:45:\"a:1:{i:0;s:27:\"access administration pages\";}\";s:13:\"page_callback\";s:9:\"help_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"7\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:17:\"admin/help/update\";s:5:\"title\";s:6:\"update\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"4\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:27:\"modules/help/help.admin.inc\";}}',0,1652162541,1),('local_tasks:admin/modules','a:5:{i:0;a:23:{s:4:\"path\";s:13:\"admin/modules\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"3\";s:12:\"number_parts\";s:1:\"2\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:7:\"Modules\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:26:\"Extend site functionality.\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:2:\"-2\";s:12:\"include_file\";s:31:\"modules/system/system.admin.inc\";}i:1;a:23:{s:4:\"path\";s:18:\"admin/modules/list\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:32:\"a:1:{i:0;s:14:\"system_modules\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"7\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:13:\"admin/modules\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:4:\"List\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:31:\"modules/system/system.admin.inc\";}i:2;a:23:{s:4:\"path\";s:20:\"admin/modules/update\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:21:\"update_manager_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:61:\"a:2:{i:0;s:26:\"update_manager_update_form\";i:1;s:6:\"module\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"7\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:13:\"admin/modules\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:6:\"Update\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:2:\"10\";s:12:\"include_file\";s:33:\"modules/update/update.manager.inc\";}i:3;a:23:{s:4:\"path\";s:23:\"admin/modules/uninstall\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:36:\"a:1:{i:0;s:18:\"administer modules\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:42:\"a:1:{i:0;s:24:\"system_modules_uninstall\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"7\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:13:\"admin/modules\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:9:\"Uninstall\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:2:\"20\";s:12:\"include_file\";s:31:\"modules/system/system.admin.inc\";}i:4;a:23:{s:4:\"path\";s:21:\"admin/modules/install\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:21:\"update_manager_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:62:\"a:2:{i:0;s:27:\"update_manager_install_form\";i:1;s:6:\"module\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"7\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:13:\"admin/modules\";s:8:\"tab_root\";s:13:\"admin/modules\";s:5:\"title\";s:18:\"Install new module\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"388\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:2:\"25\";s:12:\"include_file\";s:33:\"modules/update/update.manager.inc\";}}',0,1652162471,1),('local_tasks:admin/people','a:6:{i:0;a:23:{s:4:\"path\";s:19:\"admin/people/people\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"7\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:12:\"admin/people\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:4:\"List\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:50:\"Find and manage people interacting with your site.\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:3:\"-10\";s:12:\"include_file\";s:27:\"modules/user/user.admin.inc\";}i:1;a:23:{s:4:\"path\";s:29:\"admin/people/permissions/list\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:40:\"a:1:{i:0;s:22:\"administer permissions\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:40:\"a:1:{i:0;s:22:\"user_admin_permissions\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"15\";s:12:\"number_parts\";s:1:\"4\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:24:\"admin/people/permissions\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:11:\"Permissions\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:64:\"Determine access to features by selecting permissions for roles.\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:2:\"-8\";s:12:\"include_file\";s:27:\"modules/user/user.admin.inc\";}i:2;a:23:{s:4:\"path\";s:30:\"admin/people/permissions/roles\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:40:\"a:1:{i:0;s:22:\"administer permissions\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:34:\"a:1:{i:0;s:16:\"user_admin_roles\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"15\";s:12:\"number_parts\";s:1:\"4\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:24:\"admin/people/permissions\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:5:\"Roles\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:30:\"List, edit, or add user roles.\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:2:\"-5\";s:12:\"include_file\";s:27:\"modules/user/user.admin.inc\";}i:3;a:23:{s:4:\"path\";s:12:\"admin/people\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"list\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"3\";s:12:\"number_parts\";s:1:\"2\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:6:\"People\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:45:\"Manage user accounts, roles, and permissions.\";s:8:\"position\";s:4:\"left\";s:6:\"weight\";s:2:\"-4\";s:12:\"include_file\";s:27:\"modules/user/user.admin.inc\";}i:4;a:23:{s:4:\"path\";s:19:\"admin/people/create\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:34:\"a:1:{i:0;s:16:\"administer users\";}\";s:13:\"page_callback\";s:10:\"user_admin\";s:14:\"page_arguments\";s:23:\"a:1:{i:0;s:6:\"create\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"7\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:12:\"admin/people\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:8:\"Add user\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"388\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:27:\"modules/user/user.admin.inc\";}i:5;a:23:{s:4:\"path\";s:24:\"admin/people/permissions\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:40:\"a:1:{i:0;s:22:\"administer permissions\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:40:\"a:1:{i:0;s:22:\"user_admin_permissions\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"7\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:12:\"admin/people\";s:8:\"tab_root\";s:12:\"admin/people\";s:5:\"title\";s:11:\"Permissions\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:64:\"Determine access to features by selecting permissions for roles.\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:27:\"modules/user/user.admin.inc\";}}',0,1652162474,1),('local_tasks:admin/reports','a:1:{i:0;a:23:{s:4:\"path\";s:13:\"admin/reports\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:37:\"a:1:{i:0;s:19:\"access site reports\";}\";s:13:\"page_callback\";s:28:\"system_admin_menu_block_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"3\";s:12:\"number_parts\";s:1:\"2\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"admin/reports\";s:5:\"title\";s:7:\"Reports\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:34:\"View reports, updates, and errors.\";s:8:\"position\";s:4:\"left\";s:6:\"weight\";s:1:\"5\";s:12:\"include_file\";s:31:\"modules/system/system.admin.inc\";}}',0,1652162467,1),('local_tasks:admin/structure/block/manage/%/%','a:3:{i:0;a:23:{s:4:\"path\";s:42:\"admin/structure/block/manage/%/%/configure\";s:14:\"load_functions\";s:18:\"a:2:{i:4;N;i:5;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer blocks\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:55:\"a:3:{i:0;s:21:\"block_admin_configure\";i:1;i:4;i:2;i:5;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:3:\"121\";s:12:\"number_parts\";s:1:\"7\";s:7:\"context\";s:1:\"3\";s:10:\"tab_parent\";s:32:\"admin/structure/block/manage/%/%\";s:8:\"tab_root\";s:32:\"admin/structure/block/manage/%/%\";s:5:\"title\";s:9:\"Configure\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:4:\"-100\";s:12:\"include_file\";s:29:\"modules/block/block.admin.inc\";}i:1;a:23:{s:4:\"path\";s:32:\"admin/structure/block/manage/%/%\";s:14:\"load_functions\";s:18:\"a:2:{i:4;N;i:5;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:35:\"a:1:{i:0;s:17:\"administer blocks\";}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:55:\"a:3:{i:0;s:21:\"block_admin_configure\";i:1;i:4;i:2;i:5;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"60\";s:12:\"number_parts\";s:1:\"6\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:32:\"admin/structure/block/manage/%/%\";s:5:\"title\";s:15:\"Configure block\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:29:\"modules/block/block.admin.inc\";}i:2;a:23:{s:4:\"path\";s:42:\"admin/structure/block/manage/%/%/translate\";s:14:\"load_functions\";s:18:\"a:2:{i:4;N;i:5;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:31:\"i18n_block_translate_tab_access\";s:16:\"access_arguments\";s:22:\"a:2:{i:0;i:4;i:1;i:5;}\";s:13:\"page_callback\";s:29:\"i18n_block_translate_tab_page\";s:14:\"page_arguments\";s:22:\"a:2:{i:0;i:4;i:1;i:5;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:3:\"121\";s:12:\"number_parts\";s:1:\"7\";s:7:\"context\";s:1:\"3\";s:10:\"tab_parent\";s:32:\"admin/structure/block/manage/%/%\";s:8:\"tab_root\";s:32:\"admin/structure/block/manage/%/%\";s:5:\"title\";s:9:\"Translate\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:2:\"10\";s:12:\"include_file\";s:0:\"\";}}',0,1652163127,1),('local_tasks:chart/page','a:1:{i:0;a:23:{s:4:\"path\";s:10:\"chart/page\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:16:\"chartModule_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"3\";s:12:\"number_parts\";s:1:\"2\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:10:\"chart/page\";s:5:\"title\";s:18:\"Forecast as charts\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:0:\"\";}}',0,1538751321,1),('local_tasks:node','a:1:{i:0;a:23:{s:4:\"path\";s:4:\"node\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"user_access\";s:16:\"access_arguments\";s:32:\"a:1:{i:0;s:14:\"access content\";}\";s:13:\"page_callback\";s:17:\"node_page_default\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"1\";s:12:\"number_parts\";s:1:\"1\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:4:\"node\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"0\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:0:\"\";}}',0,1538751263,1),('local_tasks:node/%','a:9:{i:0;a:23:{s:4:\"path\";s:11:\"node/%/view\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"5\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:4:\"View\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:3:\"-10\";s:12:\"include_file\";s:0:\"\";}i:1;a:23:{s:4:\"path\";s:6:\"node/%\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:33:\"entity_translation_upgrade_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"node_page_view\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:15:\"node_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:0:\"\";}i:2;a:23:{s:4:\"path\";s:11:\"node/%/edit\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:30:\"entity_translation_edit_access\";s:16:\"access_arguments\";s:381:\"a:6:{i:0;s:4:\"node\";i:1;i:1;i:2;b:0;i:3;a:10:{s:5:\"title\";s:4:\"Edit\";s:13:\"page callback\";s:14:\"node_page_edit\";s:14:\"page arguments\";a:1:{i:0;i:1;}s:15:\"access callback\";s:11:\"node_access\";s:16:\"access arguments\";a:2:{i:0;s:6:\"update\";i:1;i:1;}s:6:\"weight\";i:0;s:4:\"type\";i:132;s:7:\"context\";i:3;s:4:\"file\";s:14:\"node.pages.inc\";s:6:\"module\";s:4:\"node\";}i:4;s:6:\"update\";i:5;i:1;}\";s:13:\"page_callback\";s:28:\"entity_translation_edit_page\";s:14:\"page_arguments\";s:364:\"a:5:{i:0;s:4:\"node\";i:1;i:1;i:2;b:0;i:3;a:10:{s:5:\"title\";s:4:\"Edit\";s:13:\"page callback\";s:14:\"node_page_edit\";s:14:\"page arguments\";a:1:{i:0;i:1;}s:15:\"access callback\";s:11:\"node_access\";s:16:\"access arguments\";a:2:{i:0;s:6:\"update\";i:1;i:1;}s:6:\"weight\";i:0;s:4:\"type\";i:132;s:7:\"context\";i:3;s:4:\"file\";s:14:\"node.pages.inc\";s:6:\"module\";s:4:\"node\";}i:4;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"5\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"3\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:4:\"Edit\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:27:\"modules/node/node.pages.inc\";}i:3;a:23:{s:4:\"path\";s:13:\"node/%/edit/%\";s:14:\"load_functions\";s:70:\"a:2:{i:1;s:9:\"node_load\";i:3;s:32:\"entity_translation_language_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:30:\"entity_translation_edit_access\";s:16:\"access_arguments\";s:381:\"a:6:{i:0;s:4:\"node\";i:1;i:1;i:2;i:3;i:3;a:10:{s:5:\"title\";s:4:\"Edit\";s:13:\"page callback\";s:14:\"node_page_edit\";s:14:\"page arguments\";a:1:{i:0;i:1;}s:15:\"access callback\";s:11:\"node_access\";s:16:\"access arguments\";a:2:{i:0;s:6:\"update\";i:1;i:1;}s:6:\"weight\";i:0;s:4:\"type\";i:132;s:7:\"context\";i:3;s:4:\"file\";s:14:\"node.pages.inc\";s:6:\"module\";s:4:\"node\";}i:4;s:6:\"update\";i:5;i:1;}\";s:13:\"page_callback\";s:28:\"entity_translation_edit_page\";s:14:\"page_arguments\";s:364:\"a:5:{i:0;s:4:\"node\";i:1;i:1;i:2;i:3;i:3;a:10:{s:5:\"title\";s:4:\"Edit\";s:13:\"page callback\";s:14:\"node_page_edit\";s:14:\"page arguments\";a:1:{i:0;i:1;}s:15:\"access callback\";s:11:\"node_access\";s:16:\"access arguments\";a:2:{i:0;s:6:\"update\";i:1;i:1;}s:6:\"weight\";i:0;s:4:\"type\";i:132;s:7:\"context\";i:3;s:4:\"file\";s:14:\"node.pages.inc\";s:6:\"module\";s:4:\"node\";}i:4;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"10\";s:12:\"number_parts\";s:1:\"4\";s:7:\"context\";s:1:\"3\";s:10:\"tab_parent\";s:11:\"node/%/edit\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:4:\"Edit\";s:14:\"title_callback\";s:29:\"entity_translation_edit_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:3;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:27:\"modules/node/node.pages.inc\";}i:4;a:23:{s:4:\"path\";s:19:\"node/%/edit/add/%/%\";s:14:\"load_functions\";s:114:\"a:3:{i:1;s:9:\"node_load\";i:4;s:32:\"entity_translation_language_load\";i:5;s:32:\"entity_translation_language_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:29:\"entity_translation_add_access\";s:16:\"access_arguments\";s:389:\"a:7:{i:0;s:4:\"node\";i:1;i:1;i:2;i:4;i:3;i:5;i:4;a:10:{s:5:\"title\";s:4:\"Edit\";s:13:\"page callback\";s:14:\"node_page_edit\";s:14:\"page arguments\";a:1:{i:0;i:1;}s:15:\"access callback\";s:11:\"node_access\";s:16:\"access arguments\";a:2:{i:0;s:6:\"update\";i:1;i:1;}s:6:\"weight\";i:0;s:4:\"type\";i:132;s:7:\"context\";i:3;s:4:\"file\";s:14:\"node.pages.inc\";s:6:\"module\";s:4:\"node\";}i:5;s:6:\"update\";i:6;i:1;}\";s:13:\"page_callback\";s:27:\"entity_translation_add_page\";s:14:\"page_arguments\";s:372:\"a:6:{i:0;s:4:\"node\";i:1;i:1;i:2;i:4;i:3;i:5;i:4;a:10:{s:5:\"title\";s:4:\"Edit\";s:13:\"page callback\";s:14:\"node_page_edit\";s:14:\"page arguments\";a:1:{i:0;i:1;}s:15:\"access callback\";s:11:\"node_access\";s:16:\"access arguments\";a:2:{i:0;s:6:\"update\";i:1;i:1;}s:6:\"weight\";i:0;s:4:\"type\";i:132;s:7:\"context\";i:3;s:4:\"file\";s:14:\"node.pages.inc\";s:6:\"module\";s:4:\"node\";}i:5;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"44\";s:12:\"number_parts\";s:1:\"6\";s:7:\"context\";s:1:\"3\";s:10:\"tab_parent\";s:11:\"node/%/edit\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:4:\"Edit\";s:14:\"title_callback\";s:15:\"Add translation\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:27:\"modules/node/node.pages.inc\";}i:5;a:23:{s:4:\"path\";s:13:\"node/%/photos\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:14:\"_photos_access\";s:16:\"access_arguments\";s:34:\"a:2:{i:0;s:9:\"editAlbum\";i:1;i:1;}\";s:13:\"page_callback\";s:16:\"photos_edit_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"5\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:17:\"Images Management\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:44:\"sites/all/modules/photos/inc/photos.edit.inc\";}i:6;a:23:{s:4:\"path\";s:18:\"node/%/photos-sort\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:14:\"_photos_access\";s:16:\"access_arguments\";s:34:\"a:2:{i:0;s:9:\"editAlbum\";i:1;i:1;}\";s:13:\"page_callback\";s:21:\"photos_edit_sort_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"5\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:10:\"Re-arrange\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:44:\"sites/all/modules/photos/inc/photos.edit.inc\";}i:7;a:23:{s:4:\"path\";s:16:\"node/%/translate\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:34:\"entity_translation_node_tab_access\";s:16:\"access_arguments\";s:57:\"a:3:{i:0;i:1;i:1;s:23:\"_translation_tab_access\";i:2;i:1;}\";s:13:\"page_callback\";s:27:\"entity_translation_overview\";s:14:\"page_arguments\";s:173:\"a:4:{i:0;s:4:\"node\";i:1;i:1;i:2;a:3:{s:13:\"page callback\";s:30:\"i18n_node_translation_overview\";s:4:\"file\";s:19:\"i18n_node.pages.inc\";s:6:\"module\";s:9:\"i18n_node\";}i:3;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"5\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"3\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"Translate\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"1\";s:12:\"include_file\";s:65:\"sites/all/modules/entity_translation/entity_translation.admin.inc\";}i:8;a:23:{s:4:\"path\";s:16:\"node/%/revisions\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:21:\"_node_revision_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:22:\"node_revision_overview\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"5\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:6:\"node/%\";s:8:\"tab_root\";s:6:\"node/%\";s:5:\"title\";s:9:\"Revisions\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"2\";s:12:\"include_file\";s:27:\"modules/node/node.pages.inc\";}}',0,1538751274,1),('local_tasks:node/add','a:1:{i:0;a:23:{s:4:\"path\";s:8:\"node/add\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"_node_add_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:18:\"i18n_node_add_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"3\";s:12:\"number_parts\";s:1:\"2\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:8:\"node/add\";s:5:\"title\";s:11:\"Add content\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:52:\"sites/all/modules/i18n/i18n_node/i18n_node.pages.inc\";}}',0,1652163414,1),('local_tasks:node/add/article','a:1:{i:0;a:23:{s:4:\"path\";s:16:\"node/add/article\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:41:\"a:2:{i:0;s:6:\"create\";i:1;s:7:\"article\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:24:\"a:1:{i:0;s:7:\"article\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"7\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:16:\"node/add/article\";s:5:\"title\";s:7:\"Article\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:42:\"a:2:{i:0;s:7:\"article\";i:1;s:7:\"Article\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:89:\"Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:27:\"modules/node/node.pages.inc\";}}',0,1652163438,1),('local_tasks:node/add/page','a:1:{i:0;a:23:{s:4:\"path\";s:13:\"node/add/page\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:11:\"node_access\";s:16:\"access_arguments\";s:38:\"a:2:{i:0;s:6:\"create\";i:1;s:4:\"page\";}\";s:13:\"page_callback\";s:8:\"node_add\";s:14:\"page_arguments\";s:21:\"a:1:{i:0;s:4:\"page\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"7\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"node/add/page\";s:5:\"title\";s:10:\"Basic page\";s:14:\"title_callback\";s:19:\"i18n_node_type_name\";s:15:\"title_arguments\";s:43:\"a:2:{i:0;s:4:\"page\";i:1;s:10:\"Basic page\";}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:77:\"Use <em>basic pages</em> for your static content, such as an \'About us\' page.\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:27:\"modules/node/node.pages.inc\";}}',0,1652167722,1),('local_tasks:photos/album/%','a:1:{i:0;a:23:{s:4:\"path\";s:14:\"photos/album/%\";s:14:\"load_functions\";s:26:\"a:1:{i:2;s:9:\"node_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:14:\"_photos_access\";s:16:\"access_arguments\";s:30:\"a:2:{i:0;s:5:\"album\";i:1;i:2;}\";s:13:\"page_callback\";s:17:\"photos_album_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"6\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:14:\"photos/album/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"0\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:45:\"sites/all/modules/photos/inc/photos.album.inc\";}}',0,1538783477,1),('local_tasks:photos/image/%','a:1:{i:0;a:23:{s:4:\"path\";s:14:\"photos/image/%\";s:14:\"load_functions\";s:12:\"a:1:{i:2;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:14:\"_photos_access\";s:16:\"access_arguments\";s:34:\"a:2:{i:0;s:9:\"imageView\";i:1;i:2;}\";s:13:\"page_callback\";s:17:\"photos_image_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"6\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:14:\"photos/image/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"0\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:45:\"sites/all/modules/photos/inc/photos.image.inc\";}}',0,1538805923,1),('local_tasks:photos/zoom/%','a:1:{i:0;a:23:{s:4:\"path\";s:13:\"photos/zoom/%\";s:14:\"load_functions\";s:12:\"a:1:{i:2;N;}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:14:\"_photos_access\";s:16:\"access_arguments\";s:34:\"a:2:{i:0;s:9:\"imageView\";i:1;i:2;}\";s:13:\"page_callback\";s:16:\"photos_down_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:2;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"6\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:13:\"photos/zoom/%\";s:5:\"title\";s:0:\"\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"0\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:44:\"sites/all/modules/photos/inc/photos.down.inc\";}}',0,1538757252,1),('local_tasks:sites/default/files/styles/%','a:1:{i:0;a:23:{s:4:\"path\";s:28:\"sites/default/files/styles/%\";s:14:\"load_functions\";s:34:\"a:1:{i:4;s:16:\"image_style_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:19:\"image_style_deliver\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:4;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"30\";s:12:\"number_parts\";s:1:\"5\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:28:\"sites/default/files/styles/%\";s:5:\"title\";s:20:\"Generate image style\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"0\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:0:\"\";}}',0,1539531937,1),('local_tasks:user','a:4:{i:0;a:23:{s:4:\"path\";s:4:\"user\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"1\";s:12:\"number_parts\";s:1:\"1\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:12:\"User account\";s:14:\"title_callback\";s:15:\"user_menu_title\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:3:\"-10\";s:12:\"include_file\";s:27:\"modules/user/user.pages.inc\";}i:1;a:23:{s:4:\"path\";s:13:\"user/register\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:20:\"user_register_access\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:36:\"a:1:{i:0;s:18:\"user_register_form\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"3\";s:12:\"number_parts\";s:1:\"2\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:18:\"Create new account\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:0:\"\";}i:2;a:23:{s:4:\"path\";s:10:\"user/login\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:17:\"user_is_anonymous\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:9:\"user_page\";s:14:\"page_arguments\";s:6:\"a:0:{}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"3\";s:12:\"number_parts\";s:1:\"2\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:6:\"Log in\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:27:\"modules/user/user.pages.inc\";}i:3;a:23:{s:4:\"path\";s:13:\"user/password\";s:14:\"load_functions\";s:0:\"\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:1:\"1\";s:16:\"access_arguments\";s:6:\"a:0:{}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:26:\"a:1:{i:0;s:9:\"user_pass\";}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"3\";s:12:\"number_parts\";s:1:\"2\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:4:\"user\";s:8:\"tab_root\";s:4:\"user\";s:5:\"title\";s:20:\"Request new password\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:27:\"modules/user/user.pages.inc\";}}',0,1538750977,1),('local_tasks:user/%','a:7:{i:0;a:23:{s:4:\"path\";s:11:\"user/%/view\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_view_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"user_view_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"5\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:6:\"user/%\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:4:\"View\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:3:\"-10\";s:12:\"include_file\";s:0:\"\";}i:1;a:23:{s:4:\"path\";s:19:\"user/%/edit/account\";s:14:\"load_functions\";s:80:\"a:1:{i:1;a:1:{s:18:\"user_category_load\";a:2:{i:0;s:4:\"%map\";i:1;s:6:\"%index\";}}}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_edit_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:43:\"a:2:{i:0;s:17:\"user_profile_form\";i:1;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:2:\"11\";s:12:\"number_parts\";s:1:\"4\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:11:\"user/%/edit\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:7:\"Account\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"140\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:27:\"modules/user/user.pages.inc\";}i:2;a:23:{s:4:\"path\";s:11:\"user/%/edit\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_edit_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:43:\"a:2:{i:0;s:17:\"user_profile_form\";i:1;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"5\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:6:\"user/%\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:4:\"Edit\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:27:\"modules/user/user.pages.inc\";}i:3;a:23:{s:4:\"path\";s:6:\"user/%\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:16:\"user_view_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"user_view_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"2\";s:12:\"number_parts\";s:1:\"2\";s:7:\"context\";s:1:\"0\";s:10:\"tab_parent\";s:0:\"\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:10:\"My account\";s:14:\"title_callback\";s:15:\"user_page_title\";s:15:\"title_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:1:\"6\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:0:\"\";}i:4;a:23:{s:4:\"path\";s:16:\"user/%/shortcuts\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:26:\"shortcut_set_switch_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:45:\"a:2:{i:0;s:19:\"shortcut_set_switch\";i:1;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"5\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:6:\"user/%\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:9:\"Shortcuts\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"0\";s:12:\"include_file\";s:35:\"modules/shortcut/shortcut.admin.inc\";}i:5;a:23:{s:4:\"path\";s:14:\"user/%/contact\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:28:\"_contact_personal_tab_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:15:\"drupal_get_form\";s:14:\"page_arguments\";s:47:\"a:2:{i:0;s:21:\"contact_personal_form\";i:1;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"5\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:6:\"user/%\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:7:\"Contact\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:1:\"2\";s:12:\"include_file\";s:33:\"modules/contact/contact.pages.inc\";}i:6;a:23:{s:4:\"path\";s:11:\"user/%/imce\";s:14:\"load_functions\";s:26:\"a:1:{i:1;s:9:\"user_load\";}\";s:16:\"to_arg_functions\";s:0:\"\";s:15:\"access_callback\";s:21:\"imce_user_page_access\";s:16:\"access_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:13:\"page_callback\";s:14:\"imce_user_page\";s:14:\"page_arguments\";s:14:\"a:1:{i:0;i:1;}\";s:17:\"delivery_callback\";s:0:\"\";s:3:\"fit\";s:1:\"5\";s:12:\"number_parts\";s:1:\"3\";s:7:\"context\";s:1:\"1\";s:10:\"tab_parent\";s:6:\"user/%\";s:8:\"tab_root\";s:6:\"user/%\";s:5:\"title\";s:12:\"File browser\";s:14:\"title_callback\";s:1:\"t\";s:15:\"title_arguments\";s:0:\"\";s:14:\"theme_callback\";s:0:\"\";s:15:\"theme_arguments\";s:6:\"a:0:{}\";s:4:\"type\";s:3:\"132\";s:11:\"description\";s:0:\"\";s:8:\"position\";s:0:\"\";s:6:\"weight\";s:2:\"10\";s:12:\"include_file\";s:40:\"sites/all/modules/imce/inc/imce.page.inc\";}}',0,1538751620,1),('menu_custom','a:5:{s:8:\"features\";a:5:{s:9:\"menu_name\";s:8:\"features\";s:5:\"title\";s:8:\"Features\";s:11:\"description\";s:36:\"Menu items for any enabled features.\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_mode\";s:1:\"0\";}s:9:\"main-menu\";a:5:{s:9:\"menu_name\";s:9:\"main-menu\";s:5:\"title\";s:9:\"Main menu\";s:11:\"description\";s:115:\"The <em>Main</em> menu is used on many sites to show the major sections of the site, often in a top navigation bar.\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_mode\";s:1:\"5\";}s:10:\"management\";a:5:{s:9:\"menu_name\";s:10:\"management\";s:5:\"title\";s:10:\"Management\";s:11:\"description\";s:69:\"The <em>Management</em> menu contains links for administrative tasks.\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_mode\";s:1:\"0\";}s:10:\"navigation\";a:5:{s:9:\"menu_name\";s:10:\"navigation\";s:5:\"title\";s:10:\"Navigation\";s:11:\"description\";s:150:\"The <em>Navigation</em> menu contains links intended for site visitors. Links are added to the <em>Navigation</em> menu automatically by some modules.\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_mode\";s:1:\"0\";}s:9:\"user-menu\";a:5:{s:9:\"menu_name\";s:9:\"user-menu\";s:5:\"title\";s:9:\"User menu\";s:11:\"description\";s:99:\"The <em>User</em> menu contains links related to the user\'s account, as well as the \'Log out\' link.\";s:8:\"language\";s:3:\"und\";s:9:\"i18n_mode\";s:1:\"0\";}}',0,1538750670,1);
/*!40000 ALTER TABLE `cache_menu` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cache_page`
--

DROP TABLE IF EXISTS `cache_page`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cache_page` (
  `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
  `data` longblob DEFAULT NULL COMMENT 'A collection of data to cache.',
  `expire` int(11) NOT NULL DEFAULT 0 COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
  `created` int(11) NOT NULL DEFAULT 0 COMMENT 'A Unix timestamp indicating when the cache entry was created.',
  `serialized` smallint(6) NOT NULL DEFAULT 0 COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
  PRIMARY KEY (`cid`),
  KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cache table used to store compressed pages for anonymous...';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cache_page`
--

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

--
-- Table structure for table `cache_path`
--

DROP TABLE IF EXISTS `cache_path`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cache_path` (
  `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
  `data` longblob DEFAULT NULL COMMENT 'A collection of data to cache.',
  `expire` int(11) NOT NULL DEFAULT 0 COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
  `created` int(11) NOT NULL DEFAULT 0 COMMENT 'A Unix timestamp indicating when the cache entry was created.',
  `serialized` smallint(6) NOT NULL DEFAULT 0 COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
  PRIMARY KEY (`cid`),
  KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cache table for path alias lookup.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cache_path`
--

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

--
-- Table structure for table `cache_photos`
--

DROP TABLE IF EXISTS `cache_photos`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cache_photos` (
  `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
  `data` longblob DEFAULT NULL COMMENT 'A collection of data to cache.',
  `expire` int(11) NOT NULL DEFAULT 0 COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
  `created` int(11) NOT NULL DEFAULT 0 COMMENT 'A Unix timestamp indicating when the cache entry was created.',
  `serialized` smallint(6) NOT NULL DEFAULT 0 COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
  PRIMARY KEY (`cid`),
  KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Generic cache table for caching things not separated out...';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cache_photos`
--

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

--
-- Table structure for table `cache_update`
--

DROP TABLE IF EXISTS `cache_update`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cache_update` (
  `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
  `data` longblob DEFAULT NULL COMMENT 'A collection of data to cache.',
  `expire` int(11) NOT NULL DEFAULT 0 COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
  `created` int(11) NOT NULL DEFAULT 0 COMMENT 'A Unix timestamp indicating when the cache entry was created.',
  `serialized` smallint(6) NOT NULL DEFAULT 0 COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
  PRIMARY KEY (`cid`),
  KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cache table for the Update module to store information...';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cache_update`
--

LOCK TABLES `cache_update` WRITE;
/*!40000 ALTER TABLE `cache_update` DISABLE KEYS */;
INSERT INTO `cache_update` VALUES ('fetch_failures','a:0:{}',1557864091,1557863788,1),('fetch_task::addressfield',NULL,0,1651056044,0),('fetch_task::alpha_responsive_theme',NULL,0,1651056044,0),('fetch_task::ctools',NULL,0,1651056044,0),('fetch_task::drupal',NULL,0,1651056044,0),('fetch_task::entity',NULL,0,1651056044,0),('fetch_task::entity_translation',NULL,0,1651056044,0),('fetch_task::features',NULL,0,1651056044,0),('fetch_task::geocoder',NULL,0,1651056044,0),('fetch_task::geofield',NULL,0,1651056044,0),('fetch_task::geophp',NULL,0,1651056044,0),('fetch_task::gmap',NULL,0,1651056044,0),('fetch_task::i18n',NULL,0,1651056044,0),('fetch_task::imce',NULL,0,1651056044,0),('fetch_task::l10n_update',NULL,0,1651056044,0),('fetch_task::languageicons',NULL,0,1651056044,0),('fetch_task::libraries',NULL,0,1651056044,0),('fetch_task::location',NULL,0,1651056044,0),('fetch_task::multipurpose',NULL,0,1651056044,0),('fetch_task::photos',NULL,0,1651056044,0),('fetch_task::proj4js',NULL,0,1651056044,0),('fetch_task::title',NULL,0,1651056044,0),('fetch_task::variable',NULL,0,1651056044,0),('fetch_task::venture_theme',NULL,0,1651056044,0),('fetch_task::views',NULL,0,1651056044,0),('update_project_projects','a:24:{s:12:\"addressfield\";a:8:{s:4:\"name\";s:12:\"addressfield\";s:4:\"info\";a:6:{s:4:\"name\";s:13:\"Address Field\";s:7:\"package\";s:6:\"Fields\";s:7:\"version\";s:7:\"7.x-1.2\";s:7:\"project\";s:12:\"addressfield\";s:9:\"datestamp\";s:10:\"1444254070\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1444254070\";s:8:\"includes\";a:1:{s:12:\"addressfield\";s:13:\"Address Field\";}s:12:\"project_type\";s:6:\"module\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}s:6:\"drupal\";a:8:{s:4:\"name\";s:6:\"drupal\";s:4:\"info\";a:6:{s:4:\"name\";s:5:\"Block\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.59\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1524673284\";s:8:\"includes\";a:35:{s:5:\"block\";s:5:\"Block\";s:5:\"color\";s:5:\"Color\";s:7:\"comment\";s:7:\"Comment\";s:7:\"contact\";s:7:\"Contact\";s:10:\"contextual\";s:16:\"Contextual links\";s:9:\"dashboard\";s:9:\"Dashboard\";s:5:\"dblog\";s:16:\"Database logging\";s:5:\"field\";s:5:\"Field\";s:17:\"field_sql_storage\";s:17:\"Field SQL storage\";s:8:\"field_ui\";s:8:\"Field UI\";s:4:\"file\";s:4:\"File\";s:6:\"filter\";s:6:\"Filter\";s:5:\"forum\";s:5:\"Forum\";s:4:\"help\";s:4:\"Help\";s:5:\"image\";s:5:\"Image\";s:4:\"list\";s:4:\"List\";s:6:\"locale\";s:6:\"Locale\";s:4:\"menu\";s:4:\"Menu\";s:4:\"node\";s:4:\"Node\";s:6:\"number\";s:6:\"Number\";s:7:\"options\";s:7:\"Options\";s:7:\"overlay\";s:7:\"Overlay\";s:4:\"path\";s:4:\"Path\";s:3:\"php\";s:10:\"PHP filter\";s:3:\"rdf\";s:3:\"RDF\";s:8:\"shortcut\";s:8:\"Shortcut\";s:6:\"system\";s:6:\"System\";s:8:\"taxonomy\";s:8:\"Taxonomy\";s:4:\"text\";s:4:\"Text\";s:7:\"toolbar\";s:7:\"Toolbar\";s:11:\"translation\";s:19:\"Content translation\";s:6:\"update\";s:14:\"Update manager\";s:4:\"user\";s:4:\"User\";s:6:\"bartik\";s:6:\"Bartik\";s:5:\"seven\";s:5:\"Seven\";}s:12:\"project_type\";s:4:\"core\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}s:6:\"ctools\";a:8:{s:4:\"name\";s:6:\"ctools\";s:4:\"info\";a:6:{s:4:\"name\";s:11:\"Chaos tools\";s:7:\"package\";s:16:\"Chaos tool suite\";s:7:\"version\";s:8:\"7.x-1.14\";s:7:\"project\";s:6:\"ctools\";s:9:\"datestamp\";s:10:\"1519455788\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1519455788\";s:8:\"includes\";a:1:{s:6:\"ctools\";s:11:\"Chaos tools\";}s:12:\"project_type\";s:6:\"module\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}s:6:\"entity\";a:8:{s:4:\"name\";s:6:\"entity\";s:4:\"info\";a:6:{s:4:\"name\";s:10:\"Entity API\";s:7:\"version\";s:7:\"7.x-1.9\";s:7:\"project\";s:6:\"entity\";s:9:\"datestamp\";s:10:\"1518620551\";s:7:\"package\";s:5:\"Other\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1518620551\";s:8:\"includes\";a:2:{s:6:\"entity\";s:10:\"Entity API\";s:12:\"entity_token\";s:13:\"Entity tokens\";}s:12:\"project_type\";s:6:\"module\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}s:18:\"entity_translation\";a:8:{s:4:\"name\";s:18:\"entity_translation\";s:4:\"info\";a:6:{s:4:\"name\";s:18:\"Entity Translation\";s:7:\"package\";s:33:\"Multilingual - Entity Translation\";s:7:\"version\";s:7:\"7.x-1.0\";s:7:\"project\";s:18:\"entity_translation\";s:9:\"datestamp\";s:10:\"1522600694\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1522600694\";s:8:\"includes\";a:2:{s:18:\"entity_translation\";s:18:\"Entity Translation\";s:26:\"entity_translation_upgrade\";s:26:\"Entity Translation Upgrade\";}s:12:\"project_type\";s:6:\"module\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}s:8:\"features\";a:8:{s:4:\"name\";s:8:\"features\";s:4:\"info\";a:6:{s:4:\"name\";s:8:\"Features\";s:7:\"package\";s:8:\"Features\";s:7:\"version\";s:8:\"7.x-2.10\";s:7:\"project\";s:8:\"features\";s:9:\"datestamp\";s:10:\"1461011641\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1461011641\";s:8:\"includes\";a:1:{s:8:\"features\";s:8:\"Features\";}s:12:\"project_type\";s:6:\"module\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}s:8:\"geocoder\";a:8:{s:4:\"name\";s:8:\"geocoder\";s:4:\"info\";a:6:{s:4:\"name\";s:8:\"Geocoder\";s:7:\"version\";s:7:\"7.x-1.4\";s:7:\"project\";s:8:\"geocoder\";s:9:\"datestamp\";s:10:\"1536073093\";s:7:\"package\";s:5:\"Other\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1536073093\";s:8:\"includes\";a:1:{s:8:\"geocoder\";s:8:\"Geocoder\";}s:12:\"project_type\";s:6:\"module\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}s:8:\"geofield\";a:8:{s:4:\"name\";s:8:\"geofield\";s:4:\"info\";a:6:{s:4:\"name\";s:8:\"Geofield\";s:7:\"package\";s:6:\"Fields\";s:7:\"version\";s:7:\"7.x-2.3\";s:7:\"project\";s:8:\"geofield\";s:9:\"datestamp\";s:10:\"1411337638\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1411337638\";s:8:\"includes\";a:1:{s:8:\"geofield\";s:8:\"Geofield\";}s:12:\"project_type\";s:6:\"module\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}s:6:\"geophp\";a:8:{s:4:\"name\";s:6:\"geophp\";s:4:\"info\";a:6:{s:4:\"name\";s:6:\"geoPHP\";s:7:\"version\";s:7:\"7.x-1.7\";s:7:\"project\";s:6:\"geophp\";s:9:\"datestamp\";s:10:\"1352084822\";s:7:\"package\";s:5:\"Other\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1352084822\";s:8:\"includes\";a:1:{s:6:\"geophp\";s:6:\"geoPHP\";}s:12:\"project_type\";s:6:\"module\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}s:4:\"gmap\";a:8:{s:4:\"name\";s:4:\"gmap\";s:4:\"info\";a:6:{s:4:\"name\";s:4:\"GMap\";s:7:\"package\";s:8:\"Location\";s:7:\"version\";s:8:\"7.x-2.11\";s:7:\"project\";s:4:\"gmap\";s:9:\"datestamp\";s:10:\"1457698170\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1457698170\";s:8:\"includes\";a:3:{s:4:\"gmap\";s:4:\"GMap\";s:13:\"gmap_location\";s:13:\"GMap Location\";s:26:\"location_gmap_find_address\";s:37:\"Location + Gmap \'Find Address\' button\";}s:12:\"project_type\";s:6:\"module\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}s:4:\"i18n\";a:8:{s:4:\"name\";s:4:\"i18n\";s:4:\"info\";a:6:{s:4:\"name\";s:20:\"Internationalization\";s:7:\"package\";s:35:\"Multilingual - Internationalization\";s:7:\"version\";s:8:\"7.x-1.26\";s:7:\"project\";s:4:\"i18n\";s:9:\"datestamp\";s:10:\"1534531985\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1534531985\";s:8:\"includes\";a:16:{s:4:\"i18n\";s:20:\"Internationalization\";s:10:\"i18n_block\";s:15:\"Block languages\";s:12:\"i18n_contact\";s:19:\"Contact translation\";s:10:\"i18n_field\";s:17:\"Field translation\";s:10:\"i18n_forum\";s:18:\"Multilingual forum\";s:9:\"i18n_menu\";s:16:\"Menu translation\";s:9:\"i18n_node\";s:20:\"Multilingual content\";s:9:\"i18n_path\";s:16:\"Path translation\";s:13:\"i18n_redirect\";s:20:\"Translation redirect\";s:11:\"i18n_select\";s:19:\"Multilingual select\";s:11:\"i18n_string\";s:18:\"String translation\";s:9:\"i18n_sync\";s:24:\"Synchronize translations\";s:13:\"i18n_taxonomy\";s:20:\"Taxonomy translation\";s:16:\"i18n_translation\";s:16:\"Translation sets\";s:9:\"i18n_user\";s:21:\"User mail translation\";s:13:\"i18n_variable\";s:20:\"Variable translation\";}s:12:\"project_type\";s:6:\"module\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}s:4:\"imce\";a:8:{s:4:\"name\";s:4:\"imce\";s:4:\"info\";a:6:{s:4:\"name\";s:4:\"IMCE\";s:7:\"package\";s:5:\"Media\";s:7:\"version\";s:8:\"7.x-1.11\";s:7:\"project\";s:4:\"imce\";s:9:\"datestamp\";s:10:\"1495890787\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1495890787\";s:8:\"includes\";a:1:{s:4:\"imce\";s:4:\"IMCE\";}s:12:\"project_type\";s:6:\"module\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}s:11:\"l10n_update\";a:8:{s:4:\"name\";s:11:\"l10n_update\";s:4:\"info\";a:6:{s:4:\"name\";s:19:\"Localization update\";s:7:\"package\";s:12:\"Multilingual\";s:7:\"version\";s:7:\"7.x-1.1\";s:7:\"project\";s:11:\"l10n_update\";s:9:\"datestamp\";s:10:\"1415605322\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1415605322\";s:8:\"includes\";a:1:{s:11:\"l10n_update\";s:19:\"Localization update\";}s:12:\"project_type\";s:6:\"module\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}s:13:\"languageicons\";a:8:{s:4:\"name\";s:13:\"languageicons\";s:4:\"info\";a:6:{s:4:\"name\";s:14:\"Language Icons\";s:7:\"package\";s:12:\"Multilingual\";s:7:\"version\";s:7:\"7.x-1.1\";s:7:\"project\";s:13:\"languageicons\";s:9:\"datestamp\";s:10:\"1399825730\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1399825730\";s:8:\"includes\";a:1:{s:13:\"languageicons\";s:14:\"Language Icons\";}s:12:\"project_type\";s:6:\"module\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}s:9:\"libraries\";a:8:{s:4:\"name\";s:9:\"libraries\";s:4:\"info\";a:6:{s:4:\"name\";s:9:\"Libraries\";s:7:\"version\";s:7:\"7.x-2.4\";s:7:\"project\";s:9:\"libraries\";s:9:\"datestamp\";s:10:\"1536581584\";s:7:\"package\";s:5:\"Other\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1536581584\";s:8:\"includes\";a:1:{s:9:\"libraries\";s:9:\"Libraries\";}s:12:\"project_type\";s:6:\"module\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}s:8:\"location\";a:8:{s:4:\"name\";s:8:\"location\";s:4:\"info\";a:6:{s:4:\"name\";s:8:\"Location\";s:7:\"package\";s:8:\"Location\";s:7:\"version\";s:7:\"7.x-3.7\";s:7:\"project\";s:8:\"location\";s:9:\"datestamp\";s:10:\"1438695672\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1438695672\";s:8:\"includes\";a:3:{s:8:\"location\";s:8:\"Location\";s:12:\"location_cck\";s:12:\"Location CCK\";s:13:\"location_node\";s:14:\"Node Locations\";}s:12:\"project_type\";s:6:\"module\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}s:6:\"photos\";a:8:{s:4:\"name\";s:6:\"photos\";s:4:\"info\";a:6:{s:4:\"name\";s:12:\"Album photos\";s:7:\"package\";s:12:\"album photos\";s:7:\"version\";s:11:\"7.x-3.0-rc4\";s:7:\"project\";s:6:\"photos\";s:9:\"datestamp\";s:10:\"1465340041\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1465340041\";s:8:\"includes\";a:2:{s:6:\"photos\";s:12:\"Album photos\";s:13:\"photos_access\";s:13:\"Photos access\";}s:12:\"project_type\";s:6:\"module\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}s:7:\"proj4js\";a:8:{s:4:\"name\";s:7:\"proj4js\";s:4:\"info\";a:6:{s:4:\"name\";s:7:\"Proj4JS\";s:7:\"version\";s:7:\"7.x-1.2\";s:7:\"project\";s:7:\"proj4js\";s:9:\"datestamp\";s:10:\"1363209312\";s:7:\"package\";s:5:\"Other\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1363209312\";s:8:\"includes\";a:1:{s:7:\"proj4js\";s:7:\"Proj4JS\";}s:12:\"project_type\";s:6:\"module\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}s:5:\"title\";a:8:{s:4:\"name\";s:5:\"title\";s:4:\"info\";a:6:{s:4:\"name\";s:5:\"Title\";s:7:\"package\";s:6:\"Fields\";s:7:\"version\";s:14:\"7.x-1.0-alpha9\";s:7:\"project\";s:5:\"title\";s:9:\"datestamp\";s:10:\"1484302985\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1484302985\";s:8:\"includes\";a:1:{s:5:\"title\";s:5:\"Title\";}s:12:\"project_type\";s:6:\"module\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}s:8:\"variable\";a:8:{s:4:\"name\";s:8:\"variable\";s:4:\"info\";a:6:{s:4:\"name\";s:8:\"Variable\";s:7:\"package\";s:8:\"Variable\";s:7:\"version\";s:7:\"7.x-2.5\";s:7:\"project\";s:8:\"variable\";s:9:\"datestamp\";s:10:\"1398250128\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1398250128\";s:8:\"includes\";a:3:{s:8:\"variable\";s:8:\"Variable\";s:14:\"variable_realm\";s:14:\"Variable realm\";s:14:\"variable_store\";s:14:\"Variable store\";}s:12:\"project_type\";s:6:\"module\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}s:5:\"views\";a:8:{s:4:\"name\";s:5:\"views\";s:4:\"info\";a:6:{s:4:\"name\";s:5:\"Views\";s:7:\"package\";s:5:\"Views\";s:7:\"version\";s:8:\"7.x-3.24\";s:7:\"project\";s:5:\"views\";s:9:\"datestamp\";s:10:\"1583615732\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1583615732\";s:8:\"includes\";a:2:{s:5:\"views\";s:5:\"Views\";s:8:\"views_ui\";s:8:\"Views UI\";}s:12:\"project_type\";s:6:\"module\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}s:22:\"alpha_responsive_theme\";a:8:{s:4:\"name\";s:22:\"alpha_responsive_theme\";s:4:\"info\";a:5:{s:4:\"name\";s:22:\"Alpha Responsive Theme\";s:7:\"version\";s:7:\"7.x-1.4\";s:7:\"project\";s:22:\"alpha_responsive_theme\";s:9:\"datestamp\";s:10:\"1511889487\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1511889487\";s:8:\"includes\";a:1:{s:22:\"alpha_responsive_theme\";s:22:\"Alpha Responsive Theme\";}s:12:\"project_type\";s:5:\"theme\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}s:12:\"multipurpose\";a:8:{s:4:\"name\";s:12:\"multipurpose\";s:4:\"info\";a:5:{s:4:\"name\";s:18:\"Multipurpose Theme\";s:7:\"version\";s:7:\"7.x-1.0\";s:7:\"project\";s:12:\"multipurpose\";s:9:\"datestamp\";s:10:\"1409600329\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1409600329\";s:8:\"includes\";a:1:{s:12:\"multipurpose\";s:18:\"Multipurpose Theme\";}s:12:\"project_type\";s:5:\"theme\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}s:13:\"venture_theme\";a:8:{s:4:\"name\";s:13:\"venture_theme\";s:4:\"info\";a:5:{s:4:\"name\";s:13:\"Venture Theme\";s:7:\"version\";s:7:\"7.x-1.1\";s:7:\"project\";s:13:\"venture_theme\";s:9:\"datestamp\";s:10:\"1402425233\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1402425233\";s:8:\"includes\";a:1:{s:13:\"venture_theme\";s:13:\"Venture Theme\";}s:12:\"project_type\";s:5:\"theme\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}}',1652175042,1652171442,1);
/*!40000 ALTER TABLE `cache_update` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cache_variable`
--

DROP TABLE IF EXISTS `cache_variable`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cache_variable` (
  `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
  `data` longblob DEFAULT NULL COMMENT 'A collection of data to cache.',
  `expire` int(11) NOT NULL DEFAULT 0 COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
  `created` int(11) NOT NULL DEFAULT 0 COMMENT 'A Unix timestamp indicating when the cache entry was created.',
  `serialized` smallint(6) NOT NULL DEFAULT 0 COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
  PRIMARY KEY (`cid`),
  KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cache table for variables.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cache_variable`
--

LOCK TABLES `cache_variable` WRITE;
/*!40000 ALTER TABLE `cache_variable` DISABLE KEYS */;
INSERT INTO `cache_variable` VALUES ('type:default','a:37:{s:14:\"variable_realm\";a:4:{s:5:\"title\";s:14:\"Variable realm\";s:4:\"type\";s:6:\"select\";s:16:\"options callback\";s:19:\"variable_realm_list\";s:6:\"module\";s:14:\"variable_realm\";}s:8:\"language\";a:4:{s:5:\"title\";s:8:\"Language\";s:16:\"options callback\";s:32:\"locale_variable_options_language\";s:4:\"type\";s:6:\"select\";s:6:\"module\";s:6:\"locale\";}s:4:\"menu\";a:4:{s:5:\"title\";s:4:\"Menu\";s:4:\"type\";s:6:\"select\";s:16:\"options callback\";s:23:\"menu_variable_menu_list\";s:6:\"module\";s:4:\"menu\";}s:9:\"node_type\";a:4:{s:5:\"title\";s:9:\"Node type\";s:16:\"options callback\";s:19:\"node_type_get_names\";s:4:\"type\";s:6:\"select\";s:6:\"module\";s:4:\"node\";}s:11:\"text_length\";a:4:{s:5:\"title\";s:11:\"Text length\";s:16:\"options callback\";s:32:\"node_variable_option_text_length\";s:4:\"type\";s:6:\"select\";s:6:\"module\";s:4:\"node\";}s:11:\"drupal_path\";a:4:{s:5:\"title\";s:11:\"Drupal path\";s:16:\"element callback\";s:28:\"system_variable_path_element\";s:8:\"localize\";b:1;s:6:\"module\";s:6:\"system\";}s:9:\"file_path\";a:4:{s:5:\"title\";s:9:\"File path\";s:7:\"default\";s:19:\"sites/default/files\";s:7:\"element\";a:3:{s:5:\"#type\";s:9:\"textfield\";s:10:\"#maxlength\";i:255;s:12:\"#after_build\";a:1:{i:0;s:22:\"system_check_directory\";}}s:6:\"module\";s:6:\"system\";}s:7:\"weekday\";a:4:{s:5:\"title\";s:11:\"Day of week\";s:4:\"type\";s:6:\"select\";s:16:\"options callback\";s:30:\"system_variable_option_weekday\";s:6:\"module\";s:6:\"system\";}s:5:\"theme\";a:5:{s:5:\"title\";s:5:\"Theme\";s:4:\"type\";s:6:\"select\";s:16:\"options callback\";s:28:\"system_variable_option_theme\";s:5:\"cache\";b:1;s:6:\"module\";s:6:\"system\";}s:7:\"country\";a:5:{s:5:\"title\";s:7:\"Country\";s:4:\"type\";s:6:\"select\";s:16:\"options callback\";s:30:\"system_variable_option_country\";s:5:\"cache\";b:1;s:6:\"module\";s:6:\"system\";}s:8:\"timezone\";a:5:{s:5:\"title\";s:9:\"Time zone\";s:4:\"type\";s:6:\"select\";s:16:\"options callback\";s:17:\"system_time_zones\";s:5:\"cache\";b:1;s:6:\"module\";s:6:\"system\";}s:9:\"date_type\";a:4:{s:5:\"title\";s:9:\"Date type\";s:4:\"type\";s:6:\"select\";s:16:\"options callback\";s:32:\"system_variable_option_date_type\";s:6:\"module\";s:6:\"system\";}s:11:\"date_format\";a:4:{s:5:\"title\";s:11:\"Date format\";s:4:\"type\";s:6:\"select\";s:16:\"options callback\";s:34:\"system_variable_option_date_format\";s:6:\"module\";s:6:\"system\";}s:13:\"time_interval\";a:4:{s:5:\"title\";s:13:\"Time interval\";s:4:\"type\";s:6:\"select\";s:16:\"options callback\";s:36:\"system_variable_option_time_interval\";s:6:\"module\";s:6:\"system\";}s:14:\"vocabulary_vid\";a:3:{s:5:\"title\";s:10:\"Vocabulary\";s:16:\"options callback\";s:37:\"taxonomy_variable_vocabulary_vid_list\";s:6:\"module\";s:8:\"taxonomy\";}s:15:\"vocabulary_name\";a:3:{s:5:\"title\";s:10:\"Vocabulary\";s:16:\"options callback\";s:38:\"taxonomy_variable_vocabulary_name_list\";s:6:\"module\";s:8:\"taxonomy\";}s:9:\"user_mail\";a:4:{s:5:\"title\";s:14:\"User mail text\";s:4:\"type\";s:9:\"mail_text\";s:6:\"repeat\";a:1:{s:16:\"default callback\";s:26:\"user_variable_mail_default\";}s:6:\"module\";s:4:\"user\";}s:5:\"array\";a:7:{s:5:\"title\";s:5:\"Array\";s:7:\"element\";a:2:{s:5:\"#type\";s:8:\"fieldset\";s:5:\"#tree\";b:1;}s:6:\"repeat\";a:1:{s:7:\"element\";a:1:{s:5:\"#type\";s:9:\"textfield\";}}s:15:\"format callback\";s:21:\"variable_format_array\";s:16:\"element callback\";s:27:\"variable_form_element_array\";s:7:\"default\";a:0:{}s:6:\"module\";s:8:\"variable\";}s:10:\"properties\";a:4:{s:5:\"title\";s:10:\"Properties\";s:15:\"format callback\";s:26:\"variable_format_properties\";s:4:\"type\";s:5:\"array\";s:6:\"module\";s:8:\"variable\";}s:7:\"boolean\";a:4:{s:5:\"title\";s:7:\"Boolean\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"checkbox\";}s:15:\"format callback\";s:23:\"variable_format_boolean\";s:6:\"module\";s:8:\"variable\";}s:7:\"default\";a:4:{s:5:\"title\";s:7:\"Default\";s:7:\"element\";a:1:{s:5:\"#type\";s:9:\"textfield\";}s:6:\"access\";s:29:\"administer site configuration\";s:6:\"module\";s:8:\"variable\";}s:6:\"enable\";a:6:{s:5:\"title\";s:6:\"Enable\";s:7:\"options\";a:2:{i:0;s:8:\"Disabled\";i:1;s:7:\"Enabled\";}s:7:\"default\";i:0;s:7:\"element\";a:1:{s:5:\"#type\";s:6:\"radios\";}s:15:\"format callback\";s:25:\"variable_format_selection\";s:6:\"module\";s:8:\"variable\";}s:8:\"multiple\";a:8:{s:5:\"title\";s:8:\"Multiple\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:14:\"build callback\";s:23:\"variable_build_multiple\";s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";s:6:\"module\";s:8:\"variable\";}s:12:\"mail_address\";a:4:{s:5:\"title\";s:14:\"E-mail address\";s:7:\"element\";a:1:{s:5:\"#type\";s:9:\"textfield\";}s:5:\"token\";b:1;s:6:\"module\";s:8:\"variable\";}s:9:\"mail_text\";a:6:{s:5:\"title\";s:9:\"Mail text\";s:8:\"multiple\";a:2:{s:7:\"subject\";s:7:\"Subject\";s:4:\"body\";s:4:\"Body\";}s:14:\"build callback\";s:24:\"variable_build_mail_text\";s:8:\"localize\";b:1;s:4:\"type\";s:8:\"multiple\";s:6:\"module\";s:8:\"variable\";}s:6:\"number\";a:6:{s:5:\"title\";s:6:\"Number\";s:7:\"element\";a:3:{s:5:\"#type\";s:9:\"textfield\";s:5:\"#size\";i:15;s:10:\"#maxlength\";i:10;}s:5:\"token\";b:1;s:17:\"validate callback\";s:24:\"variable_validate_number\";s:15:\"format callback\";s:22:\"variable_format_number\";s:6:\"module\";s:8:\"variable\";}s:7:\"options\";a:6:{s:5:\"title\";s:7:\"Options\";s:7:\"options\";b:1;s:7:\"element\";a:1:{s:5:\"#type\";s:10:\"checkboxes\";}s:16:\"element callback\";s:29:\"variable_form_element_options\";s:15:\"format callback\";s:23:\"variable_format_options\";s:6:\"module\";s:8:\"variable\";}s:6:\"select\";a:5:{s:5:\"title\";s:6:\"Select\";s:7:\"options\";b:1;s:16:\"element callback\";s:29:\"variable_form_element_options\";s:15:\"format callback\";s:25:\"variable_format_selection\";s:6:\"module\";s:8:\"variable\";}s:13:\"select_number\";a:5:{s:5:\"title\";s:6:\"Select\";s:7:\"options\";b:1;s:16:\"element callback\";s:29:\"variable_form_element_options\";s:16:\"options callback\";s:30:\"variable_options_select_number\";s:6:\"module\";s:8:\"variable\";}s:6:\"string\";a:7:{s:5:\"title\";s:6:\"String\";s:7:\"element\";a:1:{s:5:\"#type\";s:9:\"textfield\";}s:8:\"localize\";b:1;s:15:\"format callback\";s:22:\"variable_format_string\";s:5:\"token\";b:1;s:12:\"allowed tags\";a:0:{}s:6:\"module\";s:8:\"variable\";}s:4:\"text\";a:7:{s:5:\"title\";s:4:\"Text\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"textarea\";}s:8:\"localize\";b:1;s:15:\"format callback\";s:20:\"variable_format_text\";s:5:\"token\";b:1;s:12:\"allowed tags\";a:0:{}s:6:\"module\";s:8:\"variable\";}s:7:\"unknown\";a:6:{s:5:\"title\";s:7:\"Unknown\";s:6:\"access\";s:29:\"administer site configuration\";s:6:\"format\";s:23:\"variable_format_unknown\";s:16:\"element callback\";s:29:\"variable_form_element_unknown\";s:7:\"element\";a:1:{s:5:\"#type\";s:4:\"item\";}s:6:\"module\";s:8:\"variable\";}s:3:\"url\";a:4:{s:5:\"title\";s:3:\"URL\";s:7:\"element\";a:3:{s:5:\"#type\";s:9:\"textfield\";s:5:\"#size\";i:80;s:10:\"#maxlength\";i:255;}s:5:\"token\";b:1;s:6:\"module\";s:8:\"variable\";}s:9:\"mail_part\";a:3:{s:5:\"title\";s:10:\"Mail parts\";s:7:\"options\";a:2:{s:7:\"subject\";s:7:\"Subject\";s:4:\"body\";s:4:\"Body\";}s:6:\"module\";s:8:\"variable\";}s:11:\"text_format\";a:7:{s:5:\"title\";s:14:\"Formatted text\";s:7:\"element\";a:1:{s:5:\"#type\";s:11:\"text_format\";}s:16:\"element callback\";s:33:\"variable_form_element_text_format\";s:15:\"format callback\";s:27:\"variable_format_text_format\";s:16:\"default callback\";s:28:\"variable_text_format_default\";s:8:\"localize\";b:1;s:6:\"module\";s:8:\"variable\";}s:17:\"multiple_language\";a:10:{s:5:\"title\";s:17:\"Multiple language\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:14:\"build callback\";s:23:\"variable_build_multiple\";s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";s:17:\"multiple callback\";s:39:\"i18n_variable_multiple_language_options\";s:13:\"language list\";i:4;s:6:\"module\";s:4:\"i18n\";}s:9:\"textgroup\";a:4:{s:5:\"title\";s:10:\"Text group\";s:4:\"type\";s:6:\"select\";s:16:\"options callback\";s:35:\"i18n_string_variable_textgroup_list\";s:6:\"module\";s:11:\"i18n_string\";}}',0,1538750673,1),('variable:en','a:86:{s:36:\"variable_realm_list_[variable_realm]\";a:14:{s:4:\"type\";s:8:\"multiple\";s:5:\"group\";s:8:\"variable\";s:8:\"multiple\";s:14:\"variable_realm\";s:5:\"title\";s:10:\"Realm list\";s:11:\"description\";s:46:\"List of variables that can be set for a realm.\";s:6:\"repeat\";a:1:{s:4:\"type\";s:5:\"array\";}s:4:\"name\";s:36:\"variable_realm_list_[variable_realm]\";s:6:\"module\";s:14:\"variable_realm\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:14:\"build callback\";s:23:\"variable_build_multiple\";s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";}s:38:\"variable_realm_weight_[variable_realm]\";a:14:{s:4:\"type\";s:8:\"multiple\";s:5:\"group\";s:8:\"variable\";s:8:\"multiple\";s:14:\"variable_realm\";s:5:\"title\";s:12:\"Realm weight\";s:11:\"description\";s:44:\"Override default weight for realm variables.\";s:6:\"repeat\";a:1:{s:4:\"type\";s:6:\"number\";}s:4:\"name\";s:38:\"variable_realm_weight_[variable_realm]\";s:6:\"module\";s:14:\"variable_realm\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:14:\"build callback\";s:23:\"variable_build_multiple\";s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";}s:18:\"i18n_variable_conf\";a:10:{s:5:\"title\";s:44:\"Multilingual variables, main variable names.\";s:4:\"type\";s:5:\"array\";s:5:\"group\";s:4:\"i18n\";s:4:\"name\";s:18:\"i18n_variable_conf\";s:6:\"module\";s:13:\"i18n_variable\";s:7:\"element\";a:2:{s:5:\"#type\";s:8:\"fieldset\";s:5:\"#tree\";b:1;}s:6:\"repeat\";a:1:{s:7:\"element\";a:1:{s:5:\"#type\";s:9:\"textfield\";}}s:15:\"format callback\";s:21:\"variable_format_array\";s:16:\"element callback\";s:27:\"variable_form_element_array\";s:7:\"default\";a:0:{}}s:18:\"i18n_variable_list\";a:10:{s:5:\"title\";s:44:\"Multilingual variables, real variable names.\";s:4:\"type\";s:5:\"array\";s:5:\"group\";s:4:\"i18n\";s:4:\"name\";s:18:\"i18n_variable_list\";s:6:\"module\";s:13:\"i18n_variable\";s:7:\"element\";a:2:{s:5:\"#type\";s:8:\"fieldset\";s:5:\"#tree\";b:1;}s:6:\"repeat\";a:1:{s:7:\"element\";a:1:{s:5:\"#type\";s:9:\"textfield\";}}s:15:\"format callback\";s:21:\"variable_format_array\";s:16:\"element callback\";s:27:\"variable_form_element_array\";s:7:\"default\";a:0:{}}s:27:\"i18n_hide_translation_links\";a:9:{s:4:\"type\";s:7:\"boolean\";s:5:\"title\";s:30:\"Hide content translation links\";s:11:\"description\";s:162:\"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.\";s:7:\"default\";i:0;s:5:\"group\";s:9:\"i18n_node\";s:4:\"name\";s:27:\"i18n_hide_translation_links\";s:6:\"module\";s:9:\"i18n_node\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"checkbox\";}s:15:\"format callback\";s:23:\"variable_format_boolean\";}s:31:\"i18n_node_default_language_none\";a:10:{s:5:\"title\";s:70:\"Default language for content types with Multilingual support disabled.\";s:11:\"description\";s:118:\"Determines which language will be set for newly created content of types that don\'t have Multilingual support enabled.\";s:4:\"type\";s:6:\"select\";s:7:\"options\";a:2:{i:0;s:48:\"The site\'s default language (Default behaviour).\";i:1;s:31:\"Language neutral (Recommended).\";}s:7:\"default\";i:0;s:5:\"group\";s:9:\"i18n_node\";s:4:\"name\";s:31:\"i18n_node_default_language_none\";s:6:\"module\";s:9:\"i18n_node\";s:16:\"element callback\";s:29:\"variable_form_element_options\";s:15:\"format callback\";s:25:\"variable_format_selection\";}s:29:\"i18n_node_options_[node_type]\";a:13:{s:4:\"type\";s:8:\"multiple\";s:5:\"title\";s:25:\"Extended language options\";s:6:\"repeat\";a:2:{s:4:\"type\";s:7:\"options\";s:7:\"options\";a:3:{s:7:\"current\";s:47:\"Set custom language as default for new content.\";s:8:\"required\";s:49:\"Require language (Do not allow Language Neutral).\";s:4:\"lock\";s:34:\"Lock language (Cannot be changed).\";}}s:5:\"group\";s:4:\"i18n\";s:4:\"name\";s:29:\"i18n_node_options_[node_type]\";s:6:\"module\";s:9:\"i18n_node\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:14:\"build callback\";s:23:\"variable_build_multiple\";s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";s:8:\"multiple\";s:9:\"node_type\";}s:42:\"i18n_node_default_language_for_[node_type]\";a:13:{s:4:\"type\";s:8:\"multiple\";s:5:\"title\";s:23:\"Custom default language\";s:6:\"repeat\";a:3:{s:4:\"type\";s:6:\"select\";s:7:\"options\";a:3:{s:13:\"-- current --\";s:16:\"Current language\";s:2:\"en\";s:7:\"English\";s:2:\"it\";s:7:\"Italian\";}s:7:\"default\";s:13:\"-- current --\";}s:5:\"group\";s:4:\"i18n\";s:4:\"name\";s:42:\"i18n_node_default_language_for_[node_type]\";s:6:\"module\";s:9:\"i18n_node\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:14:\"build callback\";s:23:\"variable_build_multiple\";s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";s:8:\"multiple\";s:9:\"node_type\";}s:30:\"i18n_node_extended_[node_type]\";a:14:{s:4:\"type\";s:8:\"multiple\";s:5:\"title\";s:25:\"Extended language support\";s:6:\"repeat\";a:3:{s:4:\"type\";s:6:\"select\";s:16:\"options callback\";s:35:\"i18n_node_variable_extended_options\";s:7:\"default\";i:1;}s:11:\"description\";s:179:\"If enabled, all defined languages will be allowed for this content type in addition to only enabled ones. This is useful to have more languages for content than for the interface.\";s:5:\"group\";s:4:\"i18n\";s:4:\"name\";s:30:\"i18n_node_extended_[node_type]\";s:6:\"module\";s:9:\"i18n_node\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:14:\"build callback\";s:23:\"variable_build_multiple\";s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";s:8:\"multiple\";s:9:\"node_type\";}s:17:\"i18n_select_nodes\";a:8:{s:5:\"title\";s:24:\"Select nodes by language\";s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:1;s:5:\"group\";s:4:\"i18n\";s:4:\"name\";s:17:\"i18n_select_nodes\";s:6:\"module\";s:11:\"i18n_select\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"checkbox\";}s:15:\"format callback\";s:23:\"variable_format_boolean\";}s:20:\"i18n_select_taxonomy\";a:8:{s:5:\"title\";s:33:\"Select taxonomy terms by language\";s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:1;s:5:\"group\";s:4:\"i18n\";s:7:\"element\";a:1:{s:9:\"#disabled\";b:0;}s:4:\"name\";s:20:\"i18n_select_taxonomy\";s:6:\"module\";s:11:\"i18n_select\";s:15:\"format callback\";s:23:\"variable_format_boolean\";}s:21:\"i18n_select_page_mode\";a:10:{s:4:\"type\";s:6:\"select\";s:16:\"options callback\";s:32:\"i18n_select_variable_option_list\";s:7:\"default\";i:0;s:4:\"name\";s:21:\"i18n_select_page_mode\";s:6:\"module\";s:11:\"i18n_select\";s:5:\"group\";s:7:\"default\";s:5:\"title\";s:6:\"Select\";s:7:\"options\";b:1;s:16:\"element callback\";s:29:\"variable_form_element_options\";s:15:\"format callback\";s:25:\"variable_format_selection\";}s:21:\"i18n_select_page_list\";a:12:{s:4:\"type\";s:4:\"text\";s:5:\"title\";s:17:\"Pages or PHP code\";s:7:\"default\";s:7:\"admin/*\";s:11:\"description\";s:454:\"Specify pages by using their paths. Enter one path per line. The \'*\' character is a wildcard. Example paths are <em class=\"placeholder\">blog</em> for the blog page and <em class=\"placeholder\">blog/*</em> for every personal blog. <em class=\"placeholder\">&lt;front&gt;</em> is the front page. If the PHP option is chosen, enter PHP code between <em class=\"placeholder\">&lt;?php ?&gt;</em>. Note that executing incorrect PHP code can break your Drupal site.\";s:4:\"name\";s:21:\"i18n_select_page_list\";s:6:\"module\";s:11:\"i18n_select\";s:5:\"group\";s:7:\"default\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"textarea\";}s:8:\"localize\";b:1;s:15:\"format callback\";s:20:\"variable_format_text\";s:5:\"token\";b:1;s:12:\"allowed tags\";a:0:{}}s:22:\"i18n_select_page_block\";a:8:{s:4:\"type\";s:7:\"boolean\";s:5:\"title\";s:70:\"Enable always for block content though it may be disabled for the page\";s:7:\"default\";b:1;s:4:\"name\";s:22:\"i18n_select_page_block\";s:6:\"module\";s:11:\"i18n_select\";s:5:\"group\";s:7:\"default\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"checkbox\";}s:15:\"format callback\";s:23:\"variable_format_boolean\";}s:21:\"i18n_select_skip_tags\";a:12:{s:5:\"title\";s:9:\"Skip tags\";s:4:\"type\";s:6:\"string\";s:7:\"default\";s:5:\"views\";s:5:\"group\";s:4:\"i18n\";s:11:\"description\";s:71:\"Skip queries with these tags. Enter a list of tags separated by commas.\";s:8:\"localize\";b:0;s:4:\"name\";s:21:\"i18n_select_skip_tags\";s:6:\"module\";s:11:\"i18n_select\";s:7:\"element\";a:1:{s:5:\"#type\";s:9:\"textfield\";}s:15:\"format callback\";s:22:\"variable_format_string\";s:5:\"token\";b:1;s:12:\"allowed tags\";a:0:{}}s:33:\"language_content_type_[node_type]\";a:14:{s:4:\"type\";s:8:\"multiple\";s:5:\"title\";s:20:\"Multilingual support\";s:6:\"repeat\";a:2:{s:4:\"type\";s:6:\"enable\";s:7:\"options\";a:3:{i:0;s:8:\"Disabled\";i:1;s:7:\"Enabled\";i:2;s:25:\"Enabled, with translation\";}}s:11:\"description\";s:482:\"Enable multilingual support for this content type. If enabled, a language selection field will be added to the editing form, allowing you to select from one of the <a href=\"/?q=admin/config/regional/language\">enabled languages</a>. You can also turn on translation for this content type, which lets you have content translated to any of the enabled languages. If disabled, new posts are saved with the default language. Existing content will not be affected by changing this option.\";s:5:\"group\";s:18:\"node_type_settings\";s:4:\"name\";s:33:\"language_content_type_[node_type]\";s:6:\"module\";s:6:\"locale\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:14:\"build callback\";s:23:\"variable_build_multiple\";s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";s:8:\"multiple\";s:9:\"node_type\";}s:16:\"language_default\";a:10:{s:5:\"title\";s:21:\"Site default language\";s:4:\"type\";s:6:\"select\";s:5:\"group\";s:17:\"regional_settings\";s:16:\"options callback\";s:32:\"locale_variable_options_language\";s:15:\"format callback\";s:39:\"locale_variable_language_default_format\";s:16:\"element callback\";s:40:\"locale_variable_language_default_element\";s:16:\"default callback\";s:32:\"locale_variable_language_default\";s:4:\"name\";s:16:\"language_default\";s:6:\"module\";s:6:\"locale\";s:7:\"options\";b:1;}s:22:\"menu_main_links_source\";a:12:{s:4:\"type\";s:6:\"select\";s:5:\"title\";s:25:\"Source for the Main links\";s:7:\"options\";s:4:\"menu\";s:7:\"default\";s:9:\"main-menu\";s:7:\"element\";a:1:{s:13:\"#empty_option\";s:13:\"No Main links\";}s:11:\"description\";s:85:\"Select what should be displayed as the Main links (typically at the top of the page).\";s:5:\"group\";s:13:\"menu_settings\";s:4:\"name\";s:22:\"menu_main_links_source\";s:6:\"module\";s:4:\"menu\";s:16:\"element callback\";s:29:\"variable_form_element_options\";s:15:\"format callback\";s:25:\"variable_format_selection\";s:8:\"localize\";b:1;}s:27:\"menu_secondary_links_source\";a:12:{s:4:\"type\";s:6:\"select\";s:5:\"title\";s:30:\"Source for the Secondary links\";s:7:\"options\";s:4:\"menu\";s:7:\"default\";s:9:\"user-menu\";s:7:\"element\";a:1:{s:13:\"#empty_option\";s:18:\"No Secondary links\";}s:11:\"description\";s:42:\"Select the source for the Secondary links.\";s:5:\"group\";s:13:\"menu_settings\";s:4:\"name\";s:27:\"menu_secondary_links_source\";s:6:\"module\";s:4:\"menu\";s:16:\"element callback\";s:29:\"variable_form_element_options\";s:15:\"format callback\";s:25:\"variable_format_selection\";s:8:\"localize\";b:1;}s:23:\"menu_parent_[node_type]\";a:15:{s:4:\"type\";s:8:\"multiple\";s:5:\"title\";s:11:\"Menu parent\";s:6:\"repeat\";a:2:{s:4:\"type\";s:6:\"select\";s:7:\"options\";s:4:\"menu\";}s:5:\"group\";s:13:\"menu_settings\";s:11:\"description\";s:22:\"Select the menu parent\";s:4:\"name\";s:23:\"menu_parent_[node_type]\";s:6:\"module\";s:4:\"menu\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:14:\"build callback\";s:23:\"variable_build_multiple\";s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";s:8:\"multiple\";s:9:\"node_type\";s:8:\"localize\";b:1;}s:24:\"menu_options_[node_type]\";a:15:{s:4:\"type\";s:8:\"multiple\";s:5:\"title\";s:12:\"Menu options\";s:6:\"repeat\";a:2:{s:4:\"type\";s:7:\"options\";s:7:\"options\";s:4:\"menu\";}s:11:\"description\";s:26:\"Select the available menus\";s:5:\"group\";s:13:\"menu_settings\";s:4:\"name\";s:24:\"menu_options_[node_type]\";s:6:\"module\";s:4:\"menu\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:14:\"build callback\";s:23:\"variable_build_multiple\";s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";s:8:\"multiple\";s:9:\"node_type\";s:8:\"localize\";b:1;}s:25:\"teaser_length_[node_type]\";a:14:{s:4:\"type\";s:8:\"multiple\";s:5:\"title\";s:23:\"Length of trimmed posts\";s:6:\"repeat\";a:3:{s:4:\"type\";s:6:\"select\";s:7:\"default\";i:600;s:7:\"options\";s:11:\"text_length\";}s:11:\"description\";s:422:\"The maximum number of characters used in the trimmed version of a post. Drupal will use this setting to determine at which offset long posts should be trimmed. The trimmed version of a post is typically used as a teaser when displaying the post on the main page, in XML feeds, etc. To disable teasers, set to \'Unlimited\'. Note that this setting will only affect new or updated content and will not affect existing teasers.\";s:5:\"group\";s:18:\"node_type_settings\";s:4:\"name\";s:25:\"teaser_length_[node_type]\";s:6:\"module\";s:4:\"node\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:14:\"build callback\";s:23:\"variable_build_multiple\";s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";s:8:\"multiple\";s:9:\"node_type\";}s:24:\"node_preview_[node_type]\";a:14:{s:4:\"type\";s:8:\"multiple\";s:5:\"title\";s:25:\"Preview before submitting\";s:6:\"repeat\";a:3:{s:4:\"type\";s:6:\"select\";s:7:\"default\";i:1;s:16:\"options callback\";s:25:\"node_variable_option_list\";}s:11:\"description\";s:43:\"Must users preview posts before submitting?\";s:5:\"group\";s:18:\"node_type_settings\";s:4:\"name\";s:24:\"node_preview_[node_type]\";s:6:\"module\";s:4:\"node\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:14:\"build callback\";s:23:\"variable_build_multiple\";s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";s:8:\"multiple\";s:9:\"node_type\";}s:24:\"node_options_[node_type]\";a:14:{s:4:\"type\";s:8:\"multiple\";s:5:\"title\";s:15:\"Default options\";s:6:\"repeat\";a:3:{s:4:\"type\";s:7:\"options\";s:7:\"default\";a:2:{i:0;s:6:\"status\";i:1;s:7:\"promote\";}s:16:\"options callback\";s:25:\"node_variable_option_list\";}s:11:\"description\";s:91:\"Users with the <em>administer nodes</em> permission will be able to override these options.\";s:5:\"group\";s:18:\"node_type_settings\";s:4:\"name\";s:24:\"node_options_[node_type]\";s:6:\"module\";s:4:\"node\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:14:\"build callback\";s:23:\"variable_build_multiple\";s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";s:8:\"multiple\";s:9:\"node_type\";}s:26:\"node_submitted_[node_type]\";a:14:{s:4:\"type\";s:8:\"multiple\";s:5:\"title\";s:36:\"Display author and date information.\";s:6:\"repeat\";a:2:{s:7:\"default\";b:1;s:4:\"type\";s:7:\"boolean\";}s:11:\"description\";s:51:\"Author username and publish date will be displayed.\";s:5:\"group\";s:18:\"node_type_settings\";s:4:\"name\";s:26:\"node_submitted_[node_type]\";s:6:\"module\";s:4:\"node\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:14:\"build callback\";s:23:\"variable_build_multiple\";s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";s:8:\"multiple\";s:9:\"node_type\";}s:9:\"site_name\";a:13:{s:4:\"type\";s:6:\"string\";s:5:\"title\";s:9:\"Site name\";s:7:\"default\";s:6:\"Drupal\";s:11:\"description\";s:25:\"The name of this website.\";s:8:\"required\";b:1;s:5:\"group\";s:16:\"site_information\";s:4:\"name\";s:9:\"site_name\";s:6:\"module\";s:6:\"system\";s:7:\"element\";a:1:{s:5:\"#type\";s:9:\"textfield\";}s:8:\"localize\";b:1;s:15:\"format callback\";s:22:\"variable_format_string\";s:5:\"token\";b:1;s:12:\"allowed tags\";a:0:{}}s:9:\"site_mail\";a:10:{s:4:\"type\";s:12:\"mail_address\";s:5:\"title\";s:18:\"Site email address\";s:7:\"default\";s:0:\"\";s:11:\"description\";s:220:\"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.)\";s:8:\"required\";b:1;s:5:\"group\";s:16:\"site_information\";s:4:\"name\";s:9:\"site_mail\";s:6:\"module\";s:6:\"system\";s:7:\"element\";a:1:{s:5:\"#type\";s:9:\"textfield\";}s:5:\"token\";b:1;}s:11:\"site_slogan\";a:12:{s:4:\"type\";s:4:\"text\";s:5:\"title\";s:11:\"Site slogan\";s:7:\"default\";s:0:\"\";s:11:\"description\";s:94:\"Your site\'s motto, tag line, or catchphrase (often displayed alongside the title of the site).\";s:5:\"group\";s:16:\"site_information\";s:4:\"name\";s:11:\"site_slogan\";s:6:\"module\";s:6:\"system\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"textarea\";}s:8:\"localize\";b:1;s:15:\"format callback\";s:20:\"variable_format_text\";s:5:\"token\";b:1;s:12:\"allowed tags\";a:0:{}}s:9:\"anonymous\";a:13:{s:4:\"type\";s:6:\"string\";s:5:\"title\";s:14:\"Anonymous user\";s:7:\"default\";s:9:\"Anonymous\";s:11:\"description\";s:42:\"The name used to indicate anonymous users.\";s:8:\"required\";b:1;s:5:\"group\";s:16:\"site_information\";s:4:\"name\";s:9:\"anonymous\";s:6:\"module\";s:6:\"system\";s:7:\"element\";a:1:{s:5:\"#type\";s:9:\"textfield\";}s:8:\"localize\";b:1;s:15:\"format callback\";s:22:\"variable_format_string\";s:5:\"token\";b:1;s:12:\"allowed tags\";a:0:{}}s:14:\"site_frontpage\";a:10:{s:4:\"type\";s:11:\"drupal_path\";s:5:\"title\";s:18:\"Default front page\";s:7:\"default\";s:4:\"node\";s:11:\"description\";s:81:\"The home page displays content from this relative URL. If unsure, specify \"node\".\";s:8:\"required\";b:1;s:5:\"group\";s:16:\"site_information\";s:4:\"name\";s:14:\"site_frontpage\";s:6:\"module\";s:6:\"system\";s:16:\"element callback\";s:28:\"system_variable_path_element\";s:8:\"localize\";b:1;}s:18:\"default_nodes_main\";a:10:{s:4:\"type\";s:13:\"select_number\";s:5:\"title\";s:28:\"Number of posts on main page\";s:7:\"default\";i:10;s:7:\"options\";a:14:{i:0;i:1;i:1;i:2;i:2;i:3;i:3;i:4;i:4;i:5;i:5;i:6;i:6;i:7;i:7;i:8;i:8;i:9;i:9;i:10;i:10;i:15;i:11;i:20;i:12;i:25;i:13;i:30;}s:11:\"description\";s:79:\"The maximum number of posts displayed on overview pages such as the front page.\";s:5:\"group\";s:16:\"site_information\";s:4:\"name\";s:18:\"default_nodes_main\";s:6:\"module\";s:6:\"system\";s:16:\"element callback\";s:29:\"variable_form_element_options\";s:16:\"options callback\";s:30:\"variable_options_select_number\";}s:8:\"site_403\";a:9:{s:4:\"type\";s:11:\"drupal_path\";s:5:\"title\";s:32:\"Default 403 (access denied) page\";s:7:\"default\";s:0:\"\";s:11:\"description\";s:136:\"This page is displayed when the requested document is denied to the current user. Leave blank to display a generic \"access denied\" page.\";s:5:\"group\";s:16:\"site_information\";s:4:\"name\";s:8:\"site_403\";s:6:\"module\";s:6:\"system\";s:16:\"element callback\";s:28:\"system_variable_path_element\";s:8:\"localize\";b:1;}s:8:\"site_404\";a:9:{s:4:\"type\";s:11:\"drupal_path\";s:5:\"title\";s:28:\"Default 404 (not found) page\";s:7:\"default\";s:0:\"\";s:11:\"description\";s:132:\"This page is displayed when no other content matches the requested document. Leave blank to display a generic \"page not found\" page.\";s:5:\"group\";s:16:\"site_information\";s:4:\"name\";s:8:\"site_404\";s:6:\"module\";s:6:\"system\";s:16:\"element callback\";s:28:\"system_variable_path_element\";s:8:\"localize\";b:1;}s:16:\"feed_description\";a:12:{s:4:\"type\";s:4:\"text\";s:5:\"title\";s:16:\"Feed description\";s:7:\"default\";s:0:\"\";s:11:\"description\";s:48:\"Description of your site, included in each feed.\";s:5:\"group\";s:13:\"feed_settings\";s:4:\"name\";s:16:\"feed_description\";s:6:\"module\";s:6:\"system\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"textarea\";}s:8:\"localize\";b:1;s:15:\"format callback\";s:20:\"variable_format_text\";s:5:\"token\";b:1;s:12:\"allowed tags\";a:0:{}}s:18:\"feed_default_items\";a:10:{s:4:\"type\";s:13:\"select_number\";s:5:\"title\";s:28:\"Number of items in each feed\";s:7:\"default\";i:10;s:7:\"options\";a:14:{i:0;i:1;i:1;i:2;i:2;i:3;i:3;i:4;i:4;i:5;i:5;i:6;i:6;i:7;i:7;i:8;i:8;i:9;i:9;i:10;i:10;i:15;i:11;i:20;i:12;i:25;i:13;i:30;}s:11:\"description\";s:48:\"Default number of items to include in each feed.\";s:5:\"group\";s:13:\"feed_settings\";s:4:\"name\";s:18:\"feed_default_items\";s:6:\"module\";s:6:\"system\";s:16:\"element callback\";s:29:\"variable_form_element_options\";s:16:\"options callback\";s:30:\"variable_options_select_number\";}s:16:\"feed_item_length\";a:10:{s:4:\"type\";s:6:\"select\";s:5:\"title\";s:12:\"Feed content\";s:7:\"default\";s:8:\"fulltext\";s:7:\"options\";a:3:{s:5:\"title\";s:11:\"Titles only\";s:6:\"teaser\";s:18:\"Titles plus teaser\";s:8:\"fulltext\";s:9:\"Full text\";}s:11:\"description\";s:69:\"Global setting for the default display of content items in each feed.\";s:5:\"group\";s:13:\"feed_settings\";s:4:\"name\";s:16:\"feed_item_length\";s:6:\"module\";s:6:\"system\";s:16:\"element callback\";s:29:\"variable_form_element_options\";s:15:\"format callback\";s:25:\"variable_format_selection\";}s:20:\"site_default_country\";a:9:{s:4:\"type\";s:6:\"select\";s:7:\"options\";s:7:\"country\";s:5:\"title\";s:15:\"Default country\";s:7:\"element\";a:2:{s:5:\"#type\";s:6:\"select\";s:11:\"#attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:14:\"country-detect\";}}}s:5:\"group\";s:17:\"regional_settings\";s:4:\"name\";s:20:\"site_default_country\";s:6:\"module\";s:6:\"system\";s:16:\"element callback\";s:29:\"variable_form_element_options\";s:15:\"format callback\";s:25:\"variable_format_selection\";}s:14:\"date_first_day\";a:10:{s:4:\"type\";s:6:\"select\";s:7:\"options\";s:7:\"weekday\";s:5:\"title\";s:17:\"First day of week\";s:7:\"default\";i:0;s:8:\"localize\";b:1;s:5:\"group\";s:17:\"regional_settings\";s:4:\"name\";s:14:\"date_first_day\";s:6:\"module\";s:6:\"system\";s:16:\"element callback\";s:29:\"variable_form_element_options\";s:15:\"format callback\";s:25:\"variable_format_selection\";}s:21:\"date_default_timezone\";a:9:{s:4:\"type\";s:6:\"select\";s:7:\"options\";s:8:\"timezone\";s:5:\"title\";s:17:\"Default time zone\";s:16:\"default callback\";s:25:\"date_default_timezone_get\";s:5:\"group\";s:17:\"regional_settings\";s:4:\"name\";s:21:\"date_default_timezone\";s:6:\"module\";s:6:\"system\";s:16:\"element callback\";s:29:\"variable_form_element_options\";s:15:\"format callback\";s:25:\"variable_format_selection\";}s:22:\"configurable_timezones\";a:8:{s:4:\"type\";s:7:\"boolean\";s:5:\"title\";s:34:\"Users may set their own time zone.\";s:7:\"default\";i:1;s:5:\"group\";s:17:\"regional_settings\";s:4:\"name\";s:22:\"configurable_timezones\";s:6:\"module\";s:6:\"system\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"checkbox\";}s:15:\"format callback\";s:23:\"variable_format_boolean\";}s:22:\"empty_timezone_message\";a:9:{s:4:\"type\";s:7:\"boolean\";s:5:\"title\";s:52:\"Remind users at login if their time zone is not set.\";s:7:\"default\";i:0;s:11:\"description\";s:50:\"Only applied if users may set their own time zone.\";s:5:\"group\";s:17:\"regional_settings\";s:4:\"name\";s:22:\"empty_timezone_message\";s:6:\"module\";s:6:\"system\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"checkbox\";}s:15:\"format callback\";s:23:\"variable_format_boolean\";}s:21:\"user_default_timezone\";a:11:{s:4:\"type\";s:6:\"select\";s:5:\"title\";s:23:\"Time zone for new users\";s:7:\"default\";i:0;s:7:\"options\";a:3:{i:0;s:18:\"Default time zone.\";i:1;s:16:\"Empty time zone.\";i:2;s:50:\"Users may set their own time zone at registration.\";}s:11:\"description\";s:50:\"Only applied if users may set their own time zone.\";s:8:\"localize\";b:1;s:5:\"group\";s:17:\"regional_settings\";s:4:\"name\";s:21:\"user_default_timezone\";s:6:\"module\";s:6:\"system\";s:16:\"element callback\";s:29:\"variable_form_element_options\";s:15:\"format callback\";s:25:\"variable_format_selection\";}s:23:\"date_format_[date_type]\";a:13:{s:4:\"type\";s:8:\"multiple\";s:5:\"title\";s:11:\"Date format\";s:6:\"repeat\";a:2:{s:4:\"type\";s:6:\"select\";s:7:\"options\";s:11:\"date_format\";}s:5:\"group\";s:17:\"regional_settings\";s:4:\"name\";s:23:\"date_format_[date_type]\";s:6:\"module\";s:6:\"system\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:14:\"build callback\";s:23:\"variable_build_multiple\";s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";s:8:\"multiple\";s:9:\"date_type\";}s:16:\"maintenance_mode\";a:9:{s:4:\"type\";s:7:\"boolean\";s:5:\"title\";s:30:\"Put site into maintenance mode\";s:7:\"default\";i:0;s:11:\"description\";s:330:\"When enabled, only users with the \"Use the site in maintenance mode\" <a href=\"/?q=admin/people/permissions\">permission</a> are able to access your site to perform maintenance; all other visitors see the maintenance mode message configured below. Authorized users can log in directly via the <a href=\"/?q=user\">user login</a> page.\";s:5:\"group\";s:16:\"site_information\";s:4:\"name\";s:16:\"maintenance_mode\";s:6:\"module\";s:6:\"system\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"checkbox\";}s:15:\"format callback\";s:23:\"variable_format_boolean\";}s:24:\"maintenance_mode_message\";a:12:{s:4:\"type\";s:4:\"text\";s:5:\"title\";s:24:\"Maintenance mode message\";s:7:\"default\";s:95:\" MORSea is currently under maintenance. We should be back shortly. Thank you for your patience.\";s:11:\"description\";s:62:\"Message to show visitors when the site is in maintenance mode.\";s:5:\"group\";s:16:\"site_information\";s:4:\"name\";s:24:\"maintenance_mode_message\";s:6:\"module\";s:6:\"system\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"textarea\";}s:8:\"localize\";b:1;s:15:\"format callback\";s:20:\"variable_format_text\";s:5:\"token\";b:1;s:12:\"allowed tags\";a:0:{}}s:14:\"theme_settings\";a:12:{s:4:\"type\";s:10:\"properties\";s:5:\"title\";s:22:\"Global theme settings.\";s:5:\"group\";s:14:\"theme_settings\";s:16:\"default callback\";s:30:\"system_variable_theme_defaults\";s:8:\"localize\";b:1;s:4:\"name\";s:14:\"theme_settings\";s:6:\"module\";s:6:\"system\";s:15:\"format callback\";s:26:\"variable_format_properties\";s:7:\"element\";a:2:{s:5:\"#type\";s:8:\"fieldset\";s:5:\"#tree\";b:1;}s:6:\"repeat\";a:1:{s:7:\"element\";a:1:{s:5:\"#type\";s:9:\"textfield\";}}s:16:\"element callback\";s:27:\"variable_form_element_array\";s:7:\"default\";a:0:{}}s:22:\"theme_[theme]_settings\";a:15:{s:4:\"type\";s:8:\"multiple\";s:8:\"multiple\";s:5:\"theme\";s:5:\"title\";s:14:\"Theme settings\";s:11:\"description\";s:46:\"Logo, icons and other specific theme settings.\";s:6:\"repeat\";a:2:{s:4:\"type\";s:10:\"properties\";s:16:\"default callback\";s:30:\"system_variable_theme_defaults\";}s:5:\"group\";s:14:\"theme_settings\";s:8:\"localize\";b:1;s:4:\"name\";s:22:\"theme_[theme]_settings\";s:6:\"module\";s:6:\"system\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:14:\"build callback\";s:23:\"variable_build_multiple\";s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";}s:5:\"cache\";a:8:{s:4:\"type\";s:7:\"boolean\";s:5:\"title\";s:31:\"Cache pages for anonymous users\";s:7:\"default\";i:0;s:5:\"group\";s:18:\"system_performance\";s:4:\"name\";s:5:\"cache\";s:6:\"module\";s:6:\"system\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"checkbox\";}s:15:\"format callback\";s:23:\"variable_format_boolean\";}s:11:\"block_cache\";a:9:{s:4:\"type\";s:7:\"boolean\";s:5:\"title\";s:12:\"Cache blocks\";s:7:\"default\";b:0;s:11:\"description\";s:91:\"Block caching is inactive if you have enabled modules defining content access restrictions.\";s:5:\"group\";s:18:\"system_performance\";s:4:\"name\";s:11:\"block_cache\";s:6:\"module\";s:6:\"system\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"checkbox\";}s:15:\"format callback\";s:23:\"variable_format_boolean\";}s:14:\"cache_lifetime\";a:12:{s:4:\"type\";s:13:\"time_interval\";s:5:\"title\";s:22:\"Minimum cache lifetime\";s:7:\"default\";i:0;s:15:\"interval values\";a:14:{i:0;i:0;i:1;i:60;i:2;i:180;i:3;i:300;i:4;i:600;i:5;i:900;i:6;i:1800;i:7;i:2700;i:8;i:3600;i:9;i:10800;i:10;i:21600;i:11;i:32400;i:12;i:43200;i:13;i:86400;}s:11:\"description\";s:78:\"Cached pages will not be re-created until at least this much time has elapsed.\";s:5:\"group\";s:18:\"system_performance\";s:4:\"name\";s:14:\"cache_lifetime\";s:6:\"module\";s:6:\"system\";s:16:\"options callback\";s:36:\"system_variable_option_time_interval\";s:7:\"options\";b:1;s:16:\"element callback\";s:29:\"variable_form_element_options\";s:15:\"format callback\";s:25:\"variable_format_selection\";}s:22:\"page_cache_maximum_age\";a:12:{s:4:\"type\";s:13:\"time_interval\";s:5:\"title\";s:26:\"Expiration of cached pages\";s:7:\"default\";i:0;s:15:\"interval values\";a:14:{i:0;i:0;i:1;i:60;i:2;i:180;i:3;i:300;i:4;i:600;i:5;i:900;i:6;i:1800;i:7;i:2700;i:8;i:3600;i:9;i:10800;i:10;i:21600;i:11;i:32400;i:12;i:43200;i:13;i:86400;}s:11:\"description\";s:68:\"The maximum time an external cache can use an old version of a page.\";s:5:\"group\";s:18:\"system_performance\";s:4:\"name\";s:22:\"page_cache_maximum_age\";s:6:\"module\";s:6:\"system\";s:16:\"options callback\";s:36:\"system_variable_option_time_interval\";s:7:\"options\";b:1;s:16:\"element callback\";s:29:\"variable_form_element_options\";s:15:\"format callback\";s:25:\"variable_format_selection\";}s:16:\"page_compression\";a:10:{s:4:\"type\";s:6:\"enable\";s:5:\"title\";s:22:\"Compress cached pages.\";s:11:\"description\";s:126:\"External resources can be optimized automatically, which can reduce both the size and number of requests made to your website.\";s:7:\"default\";b:1;s:5:\"group\";s:18:\"system_performance\";s:4:\"name\";s:16:\"page_compression\";s:6:\"module\";s:6:\"system\";s:7:\"options\";a:2:{i:0;s:8:\"Disabled\";i:1;s:7:\"Enabled\";}s:7:\"element\";a:1:{s:5:\"#type\";s:6:\"radios\";}s:15:\"format callback\";s:25:\"variable_format_selection\";}s:14:\"preprocess_css\";a:9:{s:4:\"type\";s:7:\"boolean\";s:5:\"title\";s:33:\"Aggregate and compress CSS files.\";s:11:\"description\";s:126:\"External resources can be optimized automatically, which can reduce both the size and number of requests made to your website.\";s:7:\"default\";i:0;s:5:\"group\";s:18:\"system_performance\";s:4:\"name\";s:14:\"preprocess_css\";s:6:\"module\";s:6:\"system\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"checkbox\";}s:15:\"format callback\";s:23:\"variable_format_boolean\";}s:13:\"preprocess_js\";a:9:{s:4:\"type\";s:7:\"boolean\";s:5:\"title\";s:27:\"Aggregate JavaScript files.\";s:11:\"description\";s:126:\"External resources can be optimized automatically, which can reduce both the size and number of requests made to your website.\";s:7:\"default\";i:0;s:5:\"group\";s:18:\"system_performance\";s:4:\"name\";s:13:\"preprocess_js\";s:6:\"module\";s:6:\"system\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"checkbox\";}s:15:\"format callback\";s:23:\"variable_format_boolean\";}s:13:\"user_register\";a:10:{s:4:\"type\";s:6:\"select\";s:5:\"title\";s:20:\"Public registrations\";s:7:\"default\";i:1;s:7:\"options\";b:1;s:16:\"options callback\";s:25:\"user_variable_option_list\";s:5:\"group\";s:13:\"user_settings\";s:4:\"name\";s:13:\"user_register\";s:6:\"module\";s:4:\"user\";s:16:\"element callback\";s:29:\"variable_form_element_options\";s:15:\"format callback\";s:25:\"variable_format_selection\";}s:23:\"user_email_verification\";a:9:{s:4:\"type\";s:7:\"boolean\";s:5:\"title\";s:61:\"Require e-mail verification when a visitor creates an account\";s:7:\"default\";b:1;s:11:\"description\";s:294:\"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.\";s:5:\"group\";s:13:\"user_settings\";s:4:\"name\";s:23:\"user_email_verification\";s:6:\"module\";s:4:\"user\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"checkbox\";}s:15:\"format callback\";s:23:\"variable_format_boolean\";}s:22:\"user_registration_help\";a:12:{s:4:\"type\";s:4:\"text\";s:5:\"title\";s:28:\"User registration guidelines\";s:7:\"default\";s:0:\"\";s:11:\"description\";s:116:\"This text is displayed at the top of the user registration form and is useful for helping or instructing your users.\";s:5:\"group\";s:13:\"user_settings\";s:4:\"name\";s:22:\"user_registration_help\";s:6:\"module\";s:4:\"user\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"textarea\";}s:8:\"localize\";b:1;s:15:\"format callback\";s:20:\"variable_format_text\";s:5:\"token\";b:1;s:12:\"allowed tags\";a:0:{}}s:44:\"user_mail_register_admin_created_[mail_part]\";a:15:{s:4:\"type\";s:9:\"user_mail\";s:5:\"title\";s:42:\"Welcome, new user created by administrator\";s:11:\"description\";s:265:\"Customize welcome e-mail messages sent to new member accounts created by an administrator. Available variables are: [site:name], [site:url], [user:name], [user:mail], [site:login-url], [site:url-brief], [user:edit-url], [user:one-time-login-url], [user:cancel-url].\";s:5:\"group\";s:10:\"user_mails\";s:4:\"name\";s:44:\"user_mail_register_admin_created_[mail_part]\";s:6:\"module\";s:4:\"user\";s:6:\"repeat\";a:1:{s:16:\"default callback\";s:26:\"user_variable_mail_default\";}s:8:\"multiple\";a:2:{s:7:\"subject\";s:7:\"Subject\";s:4:\"body\";s:4:\"Body\";}s:14:\"build callback\";s:24:\"variable_build_mail_text\";s:8:\"localize\";b:1;s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";}s:51:\"user_mail_register_no_approval_required_[mail_part]\";a:15:{s:4:\"type\";s:9:\"user_mail\";s:5:\"title\";s:29:\"Welcome, no approval required\";s:11:\"description\";s:290:\"Customize welcome e-mail messages sent to new members upon registering, when no administrator approval is required. Available variables are: [site:name], [site:url], [user:name], [user:mail], [site:login-url], [site:url-brief], [user:edit-url], [user:one-time-login-url], [user:cancel-url].\";s:5:\"group\";s:10:\"user_mails\";s:4:\"name\";s:51:\"user_mail_register_no_approval_required_[mail_part]\";s:6:\"module\";s:4:\"user\";s:6:\"repeat\";a:1:{s:16:\"default callback\";s:26:\"user_variable_mail_default\";}s:8:\"multiple\";a:2:{s:7:\"subject\";s:7:\"Subject\";s:4:\"body\";s:4:\"Body\";}s:14:\"build callback\";s:24:\"variable_build_mail_text\";s:8:\"localize\";b:1;s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";}s:47:\"user_mail_register_pending_approval_[mail_part]\";a:15:{s:4:\"type\";s:9:\"user_mail\";s:5:\"title\";s:40:\"Welcome, awaiting administrator approval\";s:11:\"description\";s:288:\"Customize welcome e-mail messages sent to new members upon registering, when administrative approval is required. Available variables are: [site:name], [site:url], [user:name], [user:mail], [site:login-url], [site:url-brief], [user:edit-url], [user:one-time-login-url], [user:cancel-url].\";s:5:\"group\";s:10:\"user_mails\";s:4:\"name\";s:47:\"user_mail_register_pending_approval_[mail_part]\";s:6:\"module\";s:4:\"user\";s:6:\"repeat\";a:1:{s:16:\"default callback\";s:26:\"user_variable_mail_default\";}s:8:\"multiple\";a:2:{s:7:\"subject\";s:7:\"Subject\";s:4:\"body\";s:4:\"Body\";}s:14:\"build callback\";s:24:\"variable_build_mail_text\";s:8:\"localize\";b:1;s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";}s:36:\"user_mail_password_reset_[mail_part]\";a:15:{s:4:\"type\";s:9:\"user_mail\";s:5:\"title\";s:23:\"Password recovery email\";s:11:\"description\";s:242:\"Customize e-mail messages sent to users who request a new password. Available variables are: [site:name], [site:url], [user:name], [user:mail], [site:login-url], [site:url-brief], [user:edit-url], [user:one-time-login-url], [user:cancel-url].\";s:5:\"group\";s:10:\"user_mails\";s:4:\"name\";s:36:\"user_mail_password_reset_[mail_part]\";s:6:\"module\";s:4:\"user\";s:6:\"repeat\";a:1:{s:16:\"default callback\";s:26:\"user_variable_mail_default\";}s:8:\"multiple\";a:2:{s:7:\"subject\";s:7:\"Subject\";s:4:\"body\";s:4:\"Body\";}s:14:\"build callback\";s:24:\"variable_build_mail_text\";s:8:\"localize\";b:1;s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";}s:38:\"user_mail_status_activated_[mail_part]\";a:15:{s:4:\"type\";s:9:\"user_mail\";s:5:\"title\";s:24:\"Account activation email\";s:11:\"description\";s:385:\"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). Available variables are: [site:name], [site:url], [user:name], [user:mail], [site:login-url], [site:url-brief], [user:edit-url], [user:one-time-login-url], [user:cancel-url].\";s:5:\"group\";s:10:\"user_mails\";s:4:\"name\";s:38:\"user_mail_status_activated_[mail_part]\";s:6:\"module\";s:4:\"user\";s:6:\"repeat\";a:1:{s:16:\"default callback\";s:26:\"user_variable_mail_default\";}s:8:\"multiple\";a:2:{s:7:\"subject\";s:7:\"Subject\";s:4:\"body\";s:4:\"Body\";}s:14:\"build callback\";s:24:\"variable_build_mail_text\";s:8:\"localize\";b:1;s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";}s:33:\"user_mail_status_activated_notify\";a:8:{s:4:\"type\";s:7:\"boolean\";s:5:\"title\";s:38:\"Notify user when account is activated.\";s:7:\"default\";b:1;s:5:\"group\";s:13:\"user_settings\";s:4:\"name\";s:33:\"user_mail_status_activated_notify\";s:6:\"module\";s:4:\"user\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"checkbox\";}s:15:\"format callback\";s:23:\"variable_format_boolean\";}s:36:\"user_mail_status_blocked_[mail_part]\";a:15:{s:4:\"type\";s:9:\"user_mail\";s:5:\"title\";s:21:\"Account blocked email\";s:11:\"description\";s:258:\"Enable and customize e-mail messages sent to users when their accounts are blocked. Available variables are: [site:name], [site:url], [user:name], [user:mail], [site:login-url], [site:url-brief], [user:edit-url], [user:one-time-login-url], [user:cancel-url].\";s:5:\"group\";s:10:\"user_mails\";s:4:\"name\";s:36:\"user_mail_status_blocked_[mail_part]\";s:6:\"module\";s:4:\"user\";s:6:\"repeat\";a:1:{s:16:\"default callback\";s:26:\"user_variable_mail_default\";}s:8:\"multiple\";a:2:{s:7:\"subject\";s:7:\"Subject\";s:4:\"body\";s:4:\"Body\";}s:14:\"build callback\";s:24:\"variable_build_mail_text\";s:8:\"localize\";b:1;s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";}s:31:\"user_mail_status_blocked_notify\";a:8:{s:4:\"type\";s:7:\"boolean\";s:5:\"title\";s:36:\"Notify user when account is blocked.\";s:7:\"default\";b:0;s:5:\"group\";s:13:\"user_settings\";s:4:\"name\";s:31:\"user_mail_status_blocked_notify\";s:6:\"module\";s:4:\"user\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"checkbox\";}s:15:\"format callback\";s:23:\"variable_format_boolean\";}s:36:\"user_mail_cancel_confirm_[mail_part]\";a:15:{s:4:\"type\";s:9:\"user_mail\";s:5:\"title\";s:33:\"Account cancellation confirmation\";s:11:\"description\";s:257:\"Edit the e-mail messages sent to users when they attempt to cancel their accounts. Available variables are: [site:name], [site:url], [user:name], [user:mail], [site:login-url], [site:url-brief], [user:edit-url], [user:one-time-login-url], [user:cancel-url].\";s:5:\"group\";s:10:\"user_mails\";s:4:\"name\";s:36:\"user_mail_cancel_confirm_[mail_part]\";s:6:\"module\";s:4:\"user\";s:6:\"repeat\";a:1:{s:16:\"default callback\";s:26:\"user_variable_mail_default\";}s:8:\"multiple\";a:2:{s:7:\"subject\";s:7:\"Subject\";s:4:\"body\";s:4:\"Body\";}s:14:\"build callback\";s:24:\"variable_build_mail_text\";s:8:\"localize\";b:1;s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";}s:37:\"user_mail_status_canceled_[mail_part]\";a:15:{s:4:\"type\";s:9:\"user_mail\";s:5:\"title\";s:21:\"Account deleted email\";s:11:\"description\";s:258:\"Enable and customize e-mail messages sent to users when their accounts are deleted. Available variables are: [site:name], [site:url], [user:name], [user:mail], [site:login-url], [site:url-brief], [user:edit-url], [user:one-time-login-url], [user:cancel-url].\";s:5:\"group\";s:10:\"user_mails\";s:4:\"name\";s:37:\"user_mail_status_canceled_[mail_part]\";s:6:\"module\";s:4:\"user\";s:6:\"repeat\";a:1:{s:16:\"default callback\";s:26:\"user_variable_mail_default\";}s:8:\"multiple\";a:2:{s:7:\"subject\";s:7:\"Subject\";s:4:\"body\";s:4:\"Body\";}s:14:\"build callback\";s:24:\"variable_build_mail_text\";s:8:\"localize\";b:1;s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";}s:31:\"user_mail_status_deleted_notify\";a:8:{s:4:\"type\";s:7:\"boolean\";s:5:\"title\";s:36:\"Notify user when account is deleted.\";s:7:\"default\";b:0;s:5:\"group\";s:13:\"user_settings\";s:4:\"name\";s:31:\"user_mail_status_deleted_notify\";s:6:\"module\";s:4:\"user\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"checkbox\";}s:15:\"format callback\";s:23:\"variable_format_boolean\";}s:15:\"user_signatures\";a:9:{s:4:\"type\";s:6:\"enable\";s:5:\"title\";s:17:\"Signature support\";s:7:\"default\";i:0;s:5:\"group\";s:13:\"user_settings\";s:4:\"name\";s:15:\"user_signatures\";s:6:\"module\";s:4:\"user\";s:7:\"options\";a:2:{i:0;s:8:\"Disabled\";i:1;s:7:\"Enabled\";}s:7:\"element\";a:1:{s:5:\"#type\";s:6:\"radios\";}s:15:\"format callback\";s:25:\"variable_format_selection\";}s:17:\"user_picture_path\";a:8:{s:4:\"type\";s:9:\"file_path\";s:5:\"title\";s:17:\"Picture directory\";s:7:\"default\";s:8:\"pictures\";s:7:\"element\";a:2:{s:5:\"#size\";i:30;s:10:\"#maxlength\";i:255;}s:11:\"description\";s:72:\"Subdirectory in the file upload directory where pictures will be stored.\";s:5:\"group\";s:13:\"user_settings\";s:4:\"name\";s:17:\"user_picture_path\";s:6:\"module\";s:4:\"user\";}s:20:\"user_picture_default\";a:9:{s:4:\"type\";s:3:\"url\";s:5:\"title\";s:15:\"Default picture\";s:7:\"default\";s:0:\"\";s:11:\"description\";s:90:\"URL of picture to display for users with no custom picture selected. Leave blank for none.\";s:5:\"group\";s:13:\"user_settings\";s:4:\"name\";s:20:\"user_picture_default\";s:6:\"module\";s:4:\"user\";s:7:\"element\";a:3:{s:5:\"#type\";s:9:\"textfield\";s:5:\"#size\";i:80;s:10:\"#maxlength\";i:255;}s:5:\"token\";b:1;}s:23:\"user_picture_dimensions\";a:12:{s:4:\"type\";s:6:\"string\";s:5:\"title\";s:26:\"Picture maximum dimensions\";s:7:\"default\";s:5:\"85x85\";s:11:\"description\";s:43:\"Maximum dimensions for pictures, in pixels.\";s:7:\"element\";a:2:{s:5:\"#size\";i:15;s:10:\"#maxlength\";i:10;}s:5:\"group\";s:13:\"user_settings\";s:4:\"name\";s:23:\"user_picture_dimensions\";s:6:\"module\";s:4:\"user\";s:8:\"localize\";b:1;s:15:\"format callback\";s:22:\"variable_format_string\";s:5:\"token\";b:1;s:12:\"allowed tags\";a:0:{}}s:22:\"user_picture_file_size\";a:11:{s:4:\"type\";s:6:\"number\";s:5:\"title\";s:25:\"Picture maximum file size\";s:7:\"default\";i:30;s:11:\"description\";s:38:\"Maximum file size for pictures, in kB.\";s:5:\"group\";s:13:\"user_settings\";s:4:\"name\";s:22:\"user_picture_file_size\";s:6:\"module\";s:4:\"user\";s:7:\"element\";a:3:{s:5:\"#type\";s:9:\"textfield\";s:5:\"#size\";i:15;s:10:\"#maxlength\";i:10;}s:5:\"token\";b:1;s:17:\"validate callback\";s:24:\"variable_validate_number\";s:15:\"format callback\";s:22:\"variable_format_number\";}s:23:\"user_picture_guidelines\";a:12:{s:4:\"type\";s:4:\"text\";s:5:\"title\";s:18:\"Picture guidelines\";s:7:\"default\";s:0:\"\";s:11:\"description\";s:139:\"This text is displayed at the picture upload form in addition to the default guidelines. It\'s useful for helping or instructing your users.\";s:5:\"group\";s:13:\"user_settings\";s:4:\"name\";s:23:\"user_picture_guidelines\";s:6:\"module\";s:4:\"user\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"textarea\";}s:8:\"localize\";b:1;s:15:\"format callback\";s:20:\"variable_format_text\";s:5:\"token\";b:1;s:12:\"allowed tags\";a:0:{}}s:15:\"forum_hot_topic\";a:10:{s:5:\"title\";s:19:\"Hot topic threshold\";s:4:\"type\";s:13:\"select_number\";s:7:\"default\";i:15;s:7:\"options\";a:19:{i:0;i:5;i:1;i:10;i:2;i:15;i:3;i:20;i:4;i:25;i:5;i:30;i:6;i:35;i:7;i:40;i:8;i:50;i:9;i:60;i:10;i:80;i:11;i:100;i:12;i:150;i:13;i:200;i:14;i:250;i:15;i:300;i:16;i:350;i:17;i:400;i:18;i:500;}s:11:\"description\";s:63:\"The number of replies a topic must have to be considered \"hot\".\";s:5:\"group\";s:14:\"forum_settings\";s:4:\"name\";s:15:\"forum_hot_topic\";s:6:\"module\";s:5:\"forum\";s:16:\"element callback\";s:29:\"variable_form_element_options\";s:16:\"options callback\";s:30:\"variable_options_select_number\";}s:14:\"forum_per_page\";a:10:{s:5:\"title\";s:15:\"Topics per page\";s:4:\"type\";s:13:\"select_number\";s:7:\"default\";i:25;s:7:\"options\";a:5:{i:0;i:10;i:1;i:25;i:2;i:50;i:3;i:75;i:4;i:100;}s:11:\"description\";s:50:\"Default number of forum topics displayed per page.\";s:5:\"group\";s:14:\"forum_settings\";s:4:\"name\";s:14:\"forum_per_page\";s:6:\"module\";s:5:\"forum\";s:16:\"element callback\";s:29:\"variable_form_element_options\";s:16:\"options callback\";s:30:\"variable_options_select_number\";}s:11:\"forum_order\";a:10:{s:5:\"title\";s:13:\"Default order\";s:4:\"type\";s:6:\"select\";s:7:\"default\";i:1;s:7:\"options\";a:4:{i:1;s:19:\"Date - newest first\";i:2;s:19:\"Date - oldest first\";i:3;s:25:\"Posts - most active first\";i:4;s:26:\"Posts - least active first\";}s:11:\"description\";s:33:\"Default display order for topics.\";s:5:\"group\";s:14:\"forum_settings\";s:4:\"name\";s:11:\"forum_order\";s:6:\"module\";s:5:\"forum\";s:16:\"element callback\";s:29:\"variable_form_element_options\";s:15:\"format callback\";s:25:\"variable_format_selection\";}s:20:\"forum_nav_vocabulary\";a:10:{s:4:\"type\";s:6:\"select\";s:7:\"options\";s:14:\"vocabulary_vid\";s:5:\"title\";s:27:\"Forum navigation vocabulary\";s:7:\"default\";i:0;s:5:\"group\";s:14:\"forum_settings\";s:8:\"localize\";b:1;s:4:\"name\";s:20:\"forum_nav_vocabulary\";s:6:\"module\";s:5:\"forum\";s:16:\"element callback\";s:29:\"variable_form_element_options\";s:15:\"format callback\";s:25:\"variable_format_selection\";}s:16:\"forum_containers\";a:10:{s:4:\"type\";s:5:\"array\";s:5:\"title\";s:16:\"Forum containers\";s:5:\"group\";s:14:\"forum_settings\";s:4:\"name\";s:16:\"forum_containers\";s:6:\"module\";s:5:\"forum\";s:7:\"element\";a:2:{s:5:\"#type\";s:8:\"fieldset\";s:5:\"#tree\";b:1;}s:6:\"repeat\";a:1:{s:7:\"element\";a:1:{s:5:\"#type\";s:9:\"textfield\";}}s:15:\"format callback\";s:21:\"variable_format_array\";s:16:\"element callback\";s:27:\"variable_form_element_array\";s:7:\"default\";a:0:{}}s:18:\"i18n_language_list\";a:11:{s:5:\"title\";s:21:\"Languages for content\";s:11:\"description\";s:64:\"Determines which languages will be allowed for content creation.\";s:4:\"type\";s:6:\"select\";s:16:\"options callback\";s:25:\"i18n_variable_option_list\";s:7:\"default\";i:1;s:5:\"group\";s:4:\"i18n\";s:4:\"name\";s:18:\"i18n_language_list\";s:6:\"module\";s:4:\"i18n\";s:7:\"options\";b:1;s:16:\"element callback\";s:29:\"variable_form_element_options\";s:15:\"format callback\";s:25:\"variable_format_selection\";}s:41:\"i18n_string_translate_langcode_[language]\";a:15:{s:4:\"type\";s:17:\"multiple_language\";s:5:\"title\";s:31:\"Enable translation for language\";s:15:\"multiple values\";a:1:{s:4:\"type\";s:7:\"boolean\";}s:5:\"group\";s:4:\"i18n\";s:4:\"name\";s:41:\"i18n_string_translate_langcode_[language]\";s:6:\"module\";s:11:\"i18n_string\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:14:\"build callback\";s:23:\"variable_build_multiple\";s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";s:17:\"multiple callback\";s:39:\"i18n_variable_multiple_language_options\";s:13:\"language list\";i:4;s:8:\"multiple\";s:8:\"language\";}s:27:\"i18n_string_allowed_formats\";a:13:{s:5:\"title\";s:25:\"Translatable text formats\";s:16:\"options callback\";s:32:\"i18n_string_variable_format_list\";s:4:\"type\";s:7:\"options\";s:16:\"default callback\";s:35:\"i18n_string_variable_format_default\";s:6:\"access\";s:18:\"administer filters\";s:11:\"description\";s:163:\"The translation system only translates strings with the selected text formats. All other strings will be ignored and removed from the list of translatable strings.\";s:4:\"name\";s:27:\"i18n_string_allowed_formats\";s:6:\"module\";s:11:\"i18n_string\";s:5:\"group\";s:7:\"default\";s:7:\"options\";b:1;s:7:\"element\";a:1:{s:5:\"#type\";s:10:\"checkboxes\";}s:16:\"element callback\";s:29:\"variable_form_element_options\";s:15:\"format callback\";s:23:\"variable_format_options\";}s:27:\"i18n_string_source_language\";a:11:{s:5:\"title\";s:15:\"Source language\";s:4:\"type\";s:8:\"language\";s:16:\"default callback\";s:27:\"i18n_string_source_language\";s:11:\"description\";s:116:\"Language that will be used as the source language for string translations. The default is the site default language.\";s:4:\"name\";s:27:\"i18n_string_source_language\";s:6:\"module\";s:11:\"i18n_string\";s:5:\"group\";s:7:\"default\";s:16:\"options callback\";s:32:\"locale_variable_options_language\";s:7:\"options\";b:1;s:16:\"element callback\";s:29:\"variable_form_element_options\";s:15:\"format callback\";s:25:\"variable_format_selection\";}s:17:\"i18n_string_debug\";a:9:{s:4:\"type\";s:6:\"enable\";s:5:\"title\";s:24:\"Debug string translation\";s:7:\"default\";i:0;s:5:\"group\";s:5:\"debug\";s:4:\"name\";s:17:\"i18n_string_debug\";s:6:\"module\";s:11:\"i18n_string\";s:7:\"options\";a:2:{i:0;s:8:\"Disabled\";i:1;s:7:\"Enabled\";}s:7:\"element\";a:1:{s:5:\"#type\";s:6:\"radios\";}s:15:\"format callback\";s:25:\"variable_format_selection\";}s:39:\"i18n_string_textgroup_class_[textgroup]\";a:15:{s:5:\"title\";s:31:\"Class to use for the text group\";s:11:\"description\";s:80:\"Determines which the class will be use for string translation in the text group.\";s:6:\"repeat\";a:3:{s:4:\"type\";s:6:\"select\";s:7:\"default\";s:29:\"i18n_string_textgroup_default\";s:16:\"options callback\";s:41:\"i18n_string_variable_textgroup_class_list\";}s:15:\"submit callback\";s:52:\"i18n_string_variable_textgroup_class_submit_callback\";s:5:\"group\";s:4:\"i18n\";s:4:\"name\";s:39:\"i18n_string_textgroup_class_[textgroup]\";s:6:\"module\";s:11:\"i18n_string\";s:4:\"type\";s:8:\"multiple\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:14:\"build callback\";s:23:\"variable_build_multiple\";s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";s:8:\"multiple\";s:9:\"textgroup\";}s:31:\"i18n_sync_node_type_[node_type]\";a:13:{s:5:\"title\";s:33:\"Synchronize fields for node type.\";s:4:\"type\";s:8:\"multiple\";s:6:\"repeat\";a:1:{s:4:\"type\";s:5:\"array\";}s:5:\"group\";s:4:\"i18n\";s:4:\"name\";s:31:\"i18n_sync_node_type_[node_type]\";s:6:\"module\";s:9:\"i18n_sync\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:14:\"build callback\";s:23:\"variable_build_multiple\";s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";s:8:\"multiple\";s:9:\"node_type\";}}',0,1538750673,1),('variable:it','a:86:{s:36:\"variable_realm_list_[variable_realm]\";a:14:{s:4:\"type\";s:8:\"multiple\";s:5:\"group\";s:8:\"variable\";s:8:\"multiple\";s:14:\"variable_realm\";s:5:\"title\";s:10:\"Realm list\";s:11:\"description\";s:46:\"List of variables that can be set for a realm.\";s:6:\"repeat\";a:1:{s:4:\"type\";s:5:\"array\";}s:4:\"name\";s:36:\"variable_realm_list_[variable_realm]\";s:6:\"module\";s:14:\"variable_realm\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:14:\"build callback\";s:23:\"variable_build_multiple\";s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";}s:38:\"variable_realm_weight_[variable_realm]\";a:14:{s:4:\"type\";s:8:\"multiple\";s:5:\"group\";s:8:\"variable\";s:8:\"multiple\";s:14:\"variable_realm\";s:5:\"title\";s:12:\"Realm weight\";s:11:\"description\";s:44:\"Override default weight for realm variables.\";s:6:\"repeat\";a:1:{s:4:\"type\";s:6:\"number\";}s:4:\"name\";s:38:\"variable_realm_weight_[variable_realm]\";s:6:\"module\";s:14:\"variable_realm\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:14:\"build callback\";s:23:\"variable_build_multiple\";s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";}s:18:\"i18n_variable_conf\";a:10:{s:5:\"title\";s:44:\"Multilingual variables, main variable names.\";s:4:\"type\";s:5:\"array\";s:5:\"group\";s:4:\"i18n\";s:4:\"name\";s:18:\"i18n_variable_conf\";s:6:\"module\";s:13:\"i18n_variable\";s:7:\"element\";a:2:{s:5:\"#type\";s:8:\"fieldset\";s:5:\"#tree\";b:1;}s:6:\"repeat\";a:1:{s:7:\"element\";a:1:{s:5:\"#type\";s:9:\"textfield\";}}s:15:\"format callback\";s:21:\"variable_format_array\";s:16:\"element callback\";s:27:\"variable_form_element_array\";s:7:\"default\";a:0:{}}s:18:\"i18n_variable_list\";a:10:{s:5:\"title\";s:44:\"Multilingual variables, real variable names.\";s:4:\"type\";s:5:\"array\";s:5:\"group\";s:4:\"i18n\";s:4:\"name\";s:18:\"i18n_variable_list\";s:6:\"module\";s:13:\"i18n_variable\";s:7:\"element\";a:2:{s:5:\"#type\";s:8:\"fieldset\";s:5:\"#tree\";b:1;}s:6:\"repeat\";a:1:{s:7:\"element\";a:1:{s:5:\"#type\";s:9:\"textfield\";}}s:15:\"format callback\";s:21:\"variable_format_array\";s:16:\"element callback\";s:27:\"variable_form_element_array\";s:7:\"default\";a:0:{}}s:27:\"i18n_hide_translation_links\";a:9:{s:4:\"type\";s:7:\"boolean\";s:5:\"title\";s:30:\"Hide content translation links\";s:11:\"description\";s:162:\"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.\";s:7:\"default\";i:0;s:5:\"group\";s:9:\"i18n_node\";s:4:\"name\";s:27:\"i18n_hide_translation_links\";s:6:\"module\";s:9:\"i18n_node\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"checkbox\";}s:15:\"format callback\";s:23:\"variable_format_boolean\";}s:31:\"i18n_node_default_language_none\";a:10:{s:5:\"title\";s:70:\"Default language for content types with Multilingual support disabled.\";s:11:\"description\";s:118:\"Determines which language will be set for newly created content of types that don\'t have Multilingual support enabled.\";s:4:\"type\";s:6:\"select\";s:7:\"options\";a:2:{i:0;s:48:\"The site\'s default language (Default behaviour).\";i:1;s:31:\"Language neutral (Recommended).\";}s:7:\"default\";i:0;s:5:\"group\";s:9:\"i18n_node\";s:4:\"name\";s:31:\"i18n_node_default_language_none\";s:6:\"module\";s:9:\"i18n_node\";s:16:\"element callback\";s:29:\"variable_form_element_options\";s:15:\"format callback\";s:25:\"variable_format_selection\";}s:29:\"i18n_node_options_[node_type]\";a:13:{s:4:\"type\";s:8:\"multiple\";s:5:\"title\";s:25:\"Extended language options\";s:6:\"repeat\";a:2:{s:4:\"type\";s:7:\"options\";s:7:\"options\";a:3:{s:7:\"current\";s:47:\"Set custom language as default for new content.\";s:8:\"required\";s:49:\"Require language (Do not allow Language Neutral).\";s:4:\"lock\";s:34:\"Lock language (Cannot be changed).\";}}s:5:\"group\";s:4:\"i18n\";s:4:\"name\";s:29:\"i18n_node_options_[node_type]\";s:6:\"module\";s:9:\"i18n_node\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:14:\"build callback\";s:23:\"variable_build_multiple\";s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";s:8:\"multiple\";s:9:\"node_type\";}s:42:\"i18n_node_default_language_for_[node_type]\";a:13:{s:4:\"type\";s:8:\"multiple\";s:5:\"title\";s:23:\"Custom default language\";s:6:\"repeat\";a:3:{s:4:\"type\";s:6:\"select\";s:7:\"options\";a:3:{s:13:\"-- current --\";s:16:\"Current language\";s:2:\"en\";s:7:\"Inglese\";s:2:\"it\";s:8:\"Italiano\";}s:7:\"default\";s:13:\"-- current --\";}s:5:\"group\";s:4:\"i18n\";s:4:\"name\";s:42:\"i18n_node_default_language_for_[node_type]\";s:6:\"module\";s:9:\"i18n_node\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:14:\"build callback\";s:23:\"variable_build_multiple\";s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";s:8:\"multiple\";s:9:\"node_type\";}s:30:\"i18n_node_extended_[node_type]\";a:14:{s:4:\"type\";s:8:\"multiple\";s:5:\"title\";s:25:\"Extended language support\";s:6:\"repeat\";a:3:{s:4:\"type\";s:6:\"select\";s:16:\"options callback\";s:35:\"i18n_node_variable_extended_options\";s:7:\"default\";i:1;}s:11:\"description\";s:179:\"If enabled, all defined languages will be allowed for this content type in addition to only enabled ones. This is useful to have more languages for content than for the interface.\";s:5:\"group\";s:4:\"i18n\";s:4:\"name\";s:30:\"i18n_node_extended_[node_type]\";s:6:\"module\";s:9:\"i18n_node\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:14:\"build callback\";s:23:\"variable_build_multiple\";s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";s:8:\"multiple\";s:9:\"node_type\";}s:17:\"i18n_select_nodes\";a:8:{s:5:\"title\";s:24:\"Select nodes by language\";s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:1;s:5:\"group\";s:4:\"i18n\";s:4:\"name\";s:17:\"i18n_select_nodes\";s:6:\"module\";s:11:\"i18n_select\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"checkbox\";}s:15:\"format callback\";s:23:\"variable_format_boolean\";}s:20:\"i18n_select_taxonomy\";a:8:{s:5:\"title\";s:33:\"Select taxonomy terms by language\";s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:1;s:5:\"group\";s:4:\"i18n\";s:7:\"element\";a:1:{s:9:\"#disabled\";b:0;}s:4:\"name\";s:20:\"i18n_select_taxonomy\";s:6:\"module\";s:11:\"i18n_select\";s:15:\"format callback\";s:23:\"variable_format_boolean\";}s:21:\"i18n_select_page_mode\";a:10:{s:4:\"type\";s:6:\"select\";s:16:\"options callback\";s:32:\"i18n_select_variable_option_list\";s:7:\"default\";i:0;s:4:\"name\";s:21:\"i18n_select_page_mode\";s:6:\"module\";s:11:\"i18n_select\";s:5:\"group\";s:7:\"default\";s:5:\"title\";s:6:\"Select\";s:7:\"options\";b:1;s:16:\"element callback\";s:29:\"variable_form_element_options\";s:15:\"format callback\";s:25:\"variable_format_selection\";}s:21:\"i18n_select_page_list\";a:12:{s:4:\"type\";s:4:\"text\";s:5:\"title\";s:19:\"Pagine o codice PHP\";s:7:\"default\";s:7:\"admin/*\";s:11:\"description\";s:528:\"Specificare le pagine usando i rispettivi percorsi. Inserire un percorso per riga. Usare \'*\' come carattere jolly. Alcuni percorsi di esempio possono essere <em class=\"placeholder\">blog</em> per la pagina del blog e <em class=\"placeholder\">blog/*</em> per i blog personali. <em class=\"placeholder\">&lt;front&gt;</em> è la prima pagina. Se l\'opzione PHP è selezionata, inserire codice PHP racchiuso da <em class=\"placeholder\">&lt;?php ?&gt;</em>. Notare che l\'esecuzione di codice PHP non corretto può bloccare il sito Drupal.\";s:4:\"name\";s:21:\"i18n_select_page_list\";s:6:\"module\";s:11:\"i18n_select\";s:5:\"group\";s:7:\"default\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"textarea\";}s:8:\"localize\";b:1;s:15:\"format callback\";s:20:\"variable_format_text\";s:5:\"token\";b:1;s:12:\"allowed tags\";a:0:{}}s:22:\"i18n_select_page_block\";a:8:{s:4:\"type\";s:7:\"boolean\";s:5:\"title\";s:70:\"Enable always for block content though it may be disabled for the page\";s:7:\"default\";b:1;s:4:\"name\";s:22:\"i18n_select_page_block\";s:6:\"module\";s:11:\"i18n_select\";s:5:\"group\";s:7:\"default\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"checkbox\";}s:15:\"format callback\";s:23:\"variable_format_boolean\";}s:21:\"i18n_select_skip_tags\";a:12:{s:5:\"title\";s:9:\"Skip tags\";s:4:\"type\";s:6:\"string\";s:7:\"default\";s:5:\"views\";s:5:\"group\";s:4:\"i18n\";s:11:\"description\";s:71:\"Skip queries with these tags. Enter a list of tags separated by commas.\";s:8:\"localize\";b:0;s:4:\"name\";s:21:\"i18n_select_skip_tags\";s:6:\"module\";s:11:\"i18n_select\";s:7:\"element\";a:1:{s:5:\"#type\";s:9:\"textfield\";}s:15:\"format callback\";s:22:\"variable_format_string\";s:5:\"token\";b:1;s:12:\"allowed tags\";a:0:{}}s:33:\"language_content_type_[node_type]\";a:14:{s:4:\"type\";s:8:\"multiple\";s:5:\"title\";s:20:\"Supporto multilingue\";s:6:\"repeat\";a:2:{s:4:\"type\";s:6:\"enable\";s:7:\"options\";a:3:{i:0;s:11:\"Disattivato\";i:1;s:8:\"Attivato\";i:2;s:29:\"Abilitato, traduzione inclusa\";}}s:11:\"description\";s:485:\"Enable multilingual support for this content type. If enabled, a language selection field will be added to the editing form, allowing you to select from one of the <a href=\"/?q=it/admin/config/regional/language\">enabled languages</a>. You can also turn on translation for this content type, which lets you have content translated to any of the enabled languages. If disabled, new posts are saved with the default language. Existing content will not be affected by changing this option.\";s:5:\"group\";s:18:\"node_type_settings\";s:4:\"name\";s:33:\"language_content_type_[node_type]\";s:6:\"module\";s:6:\"locale\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:14:\"build callback\";s:23:\"variable_build_multiple\";s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";s:8:\"multiple\";s:9:\"node_type\";}s:16:\"language_default\";a:10:{s:5:\"title\";s:21:\"Site default language\";s:4:\"type\";s:6:\"select\";s:5:\"group\";s:17:\"regional_settings\";s:16:\"options callback\";s:32:\"locale_variable_options_language\";s:15:\"format callback\";s:39:\"locale_variable_language_default_format\";s:16:\"element callback\";s:40:\"locale_variable_language_default_element\";s:16:\"default callback\";s:32:\"locale_variable_language_default\";s:4:\"name\";s:16:\"language_default\";s:6:\"module\";s:6:\"locale\";s:7:\"options\";b:1;}s:22:\"menu_main_links_source\";a:12:{s:4:\"type\";s:6:\"select\";s:5:\"title\";s:27:\"Origine dei link Principali\";s:7:\"options\";s:4:\"menu\";s:7:\"default\";s:9:\"main-menu\";s:7:\"element\";a:1:{s:13:\"#empty_option\";s:22:\"Nessun link Principale\";}s:11:\"description\";s:101:\"Seleziona il menu da visualizzare per i link principali (generalmente nella parte alta della pagina).\";s:5:\"group\";s:13:\"menu_settings\";s:4:\"name\";s:22:\"menu_main_links_source\";s:6:\"module\";s:4:\"menu\";s:16:\"element callback\";s:29:\"variable_form_element_options\";s:15:\"format callback\";s:25:\"variable_format_selection\";s:8:\"localize\";b:1;}s:27:\"menu_secondary_links_source\";a:12:{s:4:\"type\";s:6:\"select\";s:5:\"title\";s:26:\"Origine dei link Secondari\";s:7:\"options\";s:4:\"menu\";s:7:\"default\";s:9:\"user-menu\";s:7:\"element\";a:1:{s:13:\"#empty_option\";s:30:\"Nessun collegamento Secondario\";}s:11:\"description\";s:42:\"Select the source for the Secondary links.\";s:5:\"group\";s:13:\"menu_settings\";s:4:\"name\";s:27:\"menu_secondary_links_source\";s:6:\"module\";s:4:\"menu\";s:16:\"element callback\";s:29:\"variable_form_element_options\";s:15:\"format callback\";s:25:\"variable_format_selection\";s:8:\"localize\";b:1;}s:23:\"menu_parent_[node_type]\";a:15:{s:4:\"type\";s:8:\"multiple\";s:5:\"title\";s:11:\"Menu parent\";s:6:\"repeat\";a:2:{s:4:\"type\";s:6:\"select\";s:7:\"options\";s:4:\"menu\";}s:5:\"group\";s:13:\"menu_settings\";s:11:\"description\";s:22:\"Select the menu parent\";s:4:\"name\";s:23:\"menu_parent_[node_type]\";s:6:\"module\";s:4:\"menu\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:14:\"build callback\";s:23:\"variable_build_multiple\";s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";s:8:\"multiple\";s:9:\"node_type\";s:8:\"localize\";b:1;}s:24:\"menu_options_[node_type]\";a:15:{s:4:\"type\";s:8:\"multiple\";s:5:\"title\";s:12:\"Menu options\";s:6:\"repeat\";a:2:{s:4:\"type\";s:7:\"options\";s:7:\"options\";s:4:\"menu\";}s:11:\"description\";s:26:\"Select the available menus\";s:5:\"group\";s:13:\"menu_settings\";s:4:\"name\";s:24:\"menu_options_[node_type]\";s:6:\"module\";s:4:\"menu\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:14:\"build callback\";s:23:\"variable_build_multiple\";s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";s:8:\"multiple\";s:9:\"node_type\";s:8:\"localize\";b:1;}s:25:\"teaser_length_[node_type]\";a:14:{s:4:\"type\";s:8:\"multiple\";s:5:\"title\";s:23:\"Length of trimmed posts\";s:6:\"repeat\";a:3:{s:4:\"type\";s:6:\"select\";s:7:\"default\";i:600;s:7:\"options\";s:11:\"text_length\";}s:11:\"description\";s:422:\"The maximum number of characters used in the trimmed version of a post. Drupal will use this setting to determine at which offset long posts should be trimmed. The trimmed version of a post is typically used as a teaser when displaying the post on the main page, in XML feeds, etc. To disable teasers, set to \'Unlimited\'. Note that this setting will only affect new or updated content and will not affect existing teasers.\";s:5:\"group\";s:18:\"node_type_settings\";s:4:\"name\";s:25:\"teaser_length_[node_type]\";s:6:\"module\";s:4:\"node\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:14:\"build callback\";s:23:\"variable_build_multiple\";s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";s:8:\"multiple\";s:9:\"node_type\";}s:24:\"node_preview_[node_type]\";a:14:{s:4:\"type\";s:8:\"multiple\";s:5:\"title\";s:53:\"Visualizza un\'anteprima prima di salvare il contenuto\";s:6:\"repeat\";a:3:{s:4:\"type\";s:6:\"select\";s:7:\"default\";i:1;s:16:\"options callback\";s:25:\"node_variable_option_list\";}s:11:\"description\";s:43:\"Must users preview posts before submitting?\";s:5:\"group\";s:18:\"node_type_settings\";s:4:\"name\";s:24:\"node_preview_[node_type]\";s:6:\"module\";s:4:\"node\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:14:\"build callback\";s:23:\"variable_build_multiple\";s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";s:8:\"multiple\";s:9:\"node_type\";}s:24:\"node_options_[node_type]\";a:14:{s:4:\"type\";s:8:\"multiple\";s:5:\"title\";s:19:\"Opzioni predefinite\";s:6:\"repeat\";a:3:{s:4:\"type\";s:7:\"options\";s:7:\"default\";a:2:{i:0;s:6:\"status\";i:1;s:7:\"promote\";}s:16:\"options callback\";s:25:\"node_variable_option_list\";}s:11:\"description\";s:91:\"Users with the <em>administer nodes</em> permission will be able to override these options.\";s:5:\"group\";s:18:\"node_type_settings\";s:4:\"name\";s:24:\"node_options_[node_type]\";s:6:\"module\";s:4:\"node\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:14:\"build callback\";s:23:\"variable_build_multiple\";s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";s:8:\"multiple\";s:9:\"node_type\";}s:26:\"node_submitted_[node_type]\";a:14:{s:4:\"type\";s:8:\"multiple\";s:5:\"title\";s:37:\"Mostra informazioni su autore e data.\";s:6:\"repeat\";a:2:{s:7:\"default\";b:1;s:4:\"type\";s:7:\"boolean\";}s:11:\"description\";s:76:\"Verranno visualizzati il nome utente dell\'autore e la data di pubblicazione.\";s:5:\"group\";s:18:\"node_type_settings\";s:4:\"name\";s:26:\"node_submitted_[node_type]\";s:6:\"module\";s:4:\"node\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:14:\"build callback\";s:23:\"variable_build_multiple\";s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";s:8:\"multiple\";s:9:\"node_type\";}s:9:\"site_name\";a:13:{s:4:\"type\";s:6:\"string\";s:5:\"title\";s:13:\"Nome del sito\";s:7:\"default\";s:6:\"Drupal\";s:11:\"description\";s:25:\"The name of this website.\";s:8:\"required\";b:1;s:5:\"group\";s:16:\"site_information\";s:4:\"name\";s:9:\"site_name\";s:6:\"module\";s:6:\"system\";s:7:\"element\";a:1:{s:5:\"#type\";s:9:\"textfield\";}s:8:\"localize\";b:1;s:15:\"format callback\";s:22:\"variable_format_string\";s:5:\"token\";b:1;s:12:\"allowed tags\";a:0:{}}s:9:\"site_mail\";a:10:{s:4:\"type\";s:12:\"mail_address\";s:5:\"title\";s:18:\"Site email address\";s:7:\"default\";s:0:\"\";s:11:\"description\";s:270:\"L\'indirizzo <em>From</em> nelle e-mail inviate automaticamente nella procedura di registrazione, per le richieste di nuova password e altre notifiche. (Usare un indirizzo che appartiene allo stesso dominio del sito, per evitare che i messaggi vengano marcati come spam.)\";s:8:\"required\";b:1;s:5:\"group\";s:16:\"site_information\";s:4:\"name\";s:9:\"site_mail\";s:6:\"module\";s:6:\"system\";s:7:\"element\";a:1:{s:5:\"#type\";s:9:\"textfield\";}s:5:\"token\";b:1;}s:11:\"site_slogan\";a:12:{s:4:\"type\";s:4:\"text\";s:5:\"title\";s:15:\"Slogan del sito\";s:7:\"default\";s:0:\"\";s:11:\"description\";s:94:\"Your site\'s motto, tag line, or catchphrase (often displayed alongside the title of the site).\";s:5:\"group\";s:16:\"site_information\";s:4:\"name\";s:11:\"site_slogan\";s:6:\"module\";s:6:\"system\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"textarea\";}s:8:\"localize\";b:1;s:15:\"format callback\";s:20:\"variable_format_text\";s:5:\"token\";b:1;s:12:\"allowed tags\";a:0:{}}s:9:\"anonymous\";a:13:{s:4:\"type\";s:6:\"string\";s:5:\"title\";s:14:\"Anonymous user\";s:7:\"default\";s:7:\"Anonimo\";s:11:\"description\";s:50:\"Il nome utilizzato per indicare gli utenti anonimi\";s:8:\"required\";b:1;s:5:\"group\";s:16:\"site_information\";s:4:\"name\";s:9:\"anonymous\";s:6:\"module\";s:6:\"system\";s:7:\"element\";a:1:{s:5:\"#type\";s:9:\"textfield\";}s:8:\"localize\";b:1;s:15:\"format callback\";s:22:\"variable_format_string\";s:5:\"token\";b:1;s:12:\"allowed tags\";a:0:{}}s:14:\"site_frontpage\";a:10:{s:4:\"type\";s:11:\"drupal_path\";s:5:\"title\";s:24:\"Prima pagina predefinita\";s:7:\"default\";s:4:\"node\";s:11:\"description\";s:81:\"The home page displays content from this relative URL. If unsure, specify \"node\".\";s:8:\"required\";b:1;s:5:\"group\";s:16:\"site_information\";s:4:\"name\";s:14:\"site_frontpage\";s:6:\"module\";s:6:\"system\";s:16:\"element callback\";s:28:\"system_variable_path_element\";s:8:\"localize\";b:1;}s:18:\"default_nodes_main\";a:10:{s:4:\"type\";s:13:\"select_number\";s:5:\"title\";s:28:\"Number of posts on main page\";s:7:\"default\";i:10;s:7:\"options\";a:14:{i:0;i:1;i:1;i:2;i:2;i:3;i:3;i:4;i:4;i:5;i:5;i:6;i:6;i:7;i:7;i:8;i:8;i:9;i:9;i:10;i:10;i:15;i:11;i:20;i:12;i:25;i:13;i:30;}s:11:\"description\";s:94:\"Il numero massimo di post visualizzati sulle pagine di sommario come la prima pagina del sito.\";s:5:\"group\";s:16:\"site_information\";s:4:\"name\";s:18:\"default_nodes_main\";s:6:\"module\";s:6:\"system\";s:16:\"element callback\";s:29:\"variable_form_element_options\";s:16:\"options callback\";s:30:\"variable_options_select_number\";}s:8:\"site_403\";a:9:{s:4:\"type\";s:11:\"drupal_path\";s:5:\"title\";s:39:\"Pagina 403 predefinita (accesso negato)\";s:7:\"default\";s:0:\"\";s:11:\"description\";s:163:\"Questa pagina viene mostrata quando l\'accesso al documento richiesto è negato all\'utente corrente. Lascia vuoto per mostrare una pagina \"accesso negato\" generica.\";s:5:\"group\";s:16:\"site_information\";s:4:\"name\";s:8:\"site_403\";s:6:\"module\";s:6:\"system\";s:16:\"element callback\";s:28:\"system_variable_path_element\";s:8:\"localize\";b:1;}s:8:\"site_404\";a:9:{s:4:\"type\";s:11:\"drupal_path\";s:5:\"title\";s:36:\"Pagina 404 predefinita (non trovato)\";s:7:\"default\";s:0:\"\";s:11:\"description\";s:165:\"Questa pagina viene visualizzata quando nessun altro contenuto corrisponde al documento richiesto. Lascia vuoto per mostrare una pagina generica \"pagina non trovata\"\";s:5:\"group\";s:16:\"site_information\";s:4:\"name\";s:8:\"site_404\";s:6:\"module\";s:6:\"system\";s:16:\"element callback\";s:28:\"system_variable_path_element\";s:8:\"localize\";b:1;}s:16:\"feed_description\";a:12:{s:4:\"type\";s:4:\"text\";s:5:\"title\";s:20:\"Descrizione del feed\";s:7:\"default\";s:0:\"\";s:11:\"description\";s:47:\"Descrizione del tuo sito, inclusa in ogni feed.\";s:5:\"group\";s:13:\"feed_settings\";s:4:\"name\";s:16:\"feed_description\";s:6:\"module\";s:6:\"system\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"textarea\";}s:8:\"localize\";b:1;s:15:\"format callback\";s:20:\"variable_format_text\";s:5:\"token\";b:1;s:12:\"allowed tags\";a:0:{}}s:18:\"feed_default_items\";a:10:{s:4:\"type\";s:13:\"select_number\";s:5:\"title\";s:34:\"Numero di elementi in ciascun feed\";s:7:\"default\";i:10;s:7:\"options\";a:14:{i:0;i:1;i:1;i:2;i:2;i:3;i:3;i:4;i:4;i:5;i:5;i:6;i:6;i:7;i:7;i:8;i:8;i:9;i:9;i:10;i:10;i:15;i:11;i:20;i:12;i:25;i:13;i:30;}s:11:\"description\";s:56:\"Numero predefinito di voci da includere in ciascun feed.\";s:5:\"group\";s:13:\"feed_settings\";s:4:\"name\";s:18:\"feed_default_items\";s:6:\"module\";s:6:\"system\";s:16:\"element callback\";s:29:\"variable_form_element_options\";s:16:\"options callback\";s:30:\"variable_options_select_number\";}s:16:\"feed_item_length\";a:10:{s:4:\"type\";s:6:\"select\";s:5:\"title\";s:18:\"Contenuto del feed\";s:7:\"default\";s:8:\"fulltext\";s:7:\"options\";a:3:{s:5:\"title\";s:11:\"Solo titoli\";s:6:\"teaser\";s:18:\"Titoli e anteprime\";s:8:\"fulltext\";s:14:\"Testo completo\";}s:11:\"description\";s:96:\"Impostazione globale per la visualizzazione predefinita degli oggetti contenuti in ciascun feed.\";s:5:\"group\";s:13:\"feed_settings\";s:4:\"name\";s:16:\"feed_item_length\";s:6:\"module\";s:6:\"system\";s:16:\"element callback\";s:29:\"variable_form_element_options\";s:15:\"format callback\";s:25:\"variable_format_selection\";}s:20:\"site_default_country\";a:9:{s:4:\"type\";s:6:\"select\";s:7:\"options\";s:7:\"country\";s:5:\"title\";s:17:\"Paese predefinito\";s:7:\"element\";a:2:{s:5:\"#type\";s:6:\"select\";s:11:\"#attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:14:\"country-detect\";}}}s:5:\"group\";s:17:\"regional_settings\";s:4:\"name\";s:20:\"site_default_country\";s:6:\"module\";s:6:\"system\";s:16:\"element callback\";s:29:\"variable_form_element_options\";s:15:\"format callback\";s:25:\"variable_format_selection\";}s:14:\"date_first_day\";a:10:{s:4:\"type\";s:6:\"select\";s:7:\"options\";s:7:\"weekday\";s:5:\"title\";s:28:\"Primo giorno della settimana\";s:7:\"default\";i:0;s:8:\"localize\";b:1;s:5:\"group\";s:17:\"regional_settings\";s:4:\"name\";s:14:\"date_first_day\";s:6:\"module\";s:6:\"system\";s:16:\"element callback\";s:29:\"variable_form_element_options\";s:15:\"format callback\";s:25:\"variable_format_selection\";}s:21:\"date_default_timezone\";a:9:{s:4:\"type\";s:6:\"select\";s:7:\"options\";s:8:\"timezone\";s:5:\"title\";s:23:\"Fuso orario predefinito\";s:16:\"default callback\";s:25:\"date_default_timezone_get\";s:5:\"group\";s:17:\"regional_settings\";s:4:\"name\";s:21:\"date_default_timezone\";s:6:\"module\";s:6:\"system\";s:16:\"element callback\";s:29:\"variable_form_element_options\";s:15:\"format callback\";s:25:\"variable_format_selection\";}s:22:\"configurable_timezones\";a:8:{s:4:\"type\";s:7:\"boolean\";s:5:\"title\";s:52:\"Gli utenti possono impostare il proprio fuso orario.\";s:7:\"default\";i:1;s:5:\"group\";s:17:\"regional_settings\";s:4:\"name\";s:22:\"configurable_timezones\";s:6:\"module\";s:6:\"system\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"checkbox\";}s:15:\"format callback\";s:23:\"variable_format_boolean\";}s:22:\"empty_timezone_message\";a:9:{s:4:\"type\";s:7:\"boolean\";s:5:\"title\";s:81:\"Ricorda agli utenti al momento del login se il loro fuso orario non è impostato.\";s:7:\"default\";i:0;s:11:\"description\";s:72:\"Applicabile solo se gli utenti possono impostare il proprio fuso orario.\";s:5:\"group\";s:17:\"regional_settings\";s:4:\"name\";s:22:\"empty_timezone_message\";s:6:\"module\";s:6:\"system\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"checkbox\";}s:15:\"format callback\";s:23:\"variable_format_boolean\";}s:21:\"user_default_timezone\";a:11:{s:4:\"type\";s:6:\"select\";s:5:\"title\";s:30:\"Fuso orario per i nuovi utenti\";s:7:\"default\";i:0;s:7:\"options\";a:3:{i:0;s:24:\"Fuso orario predefinito.\";i:1;s:18:\"Fuso orario vuoto.\";i:2;s:83:\"Gli utenti possono impostare il proprio fuso orario al momento della registrazione.\";}s:11:\"description\";s:72:\"Applicabile solo se gli utenti possono impostare il proprio fuso orario.\";s:8:\"localize\";b:1;s:5:\"group\";s:17:\"regional_settings\";s:4:\"name\";s:21:\"user_default_timezone\";s:6:\"module\";s:6:\"system\";s:16:\"element callback\";s:29:\"variable_form_element_options\";s:15:\"format callback\";s:25:\"variable_format_selection\";}s:23:\"date_format_[date_type]\";a:13:{s:4:\"type\";s:8:\"multiple\";s:5:\"title\";s:12:\"Formato data\";s:6:\"repeat\";a:2:{s:4:\"type\";s:6:\"select\";s:7:\"options\";s:11:\"date_format\";}s:5:\"group\";s:17:\"regional_settings\";s:4:\"name\";s:23:\"date_format_[date_type]\";s:6:\"module\";s:6:\"system\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:14:\"build callback\";s:23:\"variable_build_multiple\";s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";s:8:\"multiple\";s:9:\"date_type\";}s:16:\"maintenance_mode\";a:9:{s:4:\"type\";s:7:\"boolean\";s:5:\"title\";s:29:\"Metti il sito in manutenzione\";s:7:\"default\";i:0;s:11:\"description\";s:415:\"Quando attivato, solo gli utenti con il permesso <a href=\"/?q=it/admin/people/permissions\">Usa il sito quando è in manutenzione</a> potranno accedere al sito per operazioni di manutenzione;  tutti gli altri utenti o visitatori vedranno il messaggio di sito in manutenzione configurabile qui di seguito. Gli utenti autorizzati potranno accedere direttamente dalla pagina di <a href=\"/?q=it/user\">accesso utente</a>.\";s:5:\"group\";s:16:\"site_information\";s:4:\"name\";s:16:\"maintenance_mode\";s:6:\"module\";s:6:\"system\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"checkbox\";}s:15:\"format callback\";s:23:\"variable_format_boolean\";}s:24:\"maintenance_mode_message\";a:12:{s:4:\"type\";s:4:\"text\";s:5:\"title\";s:45:\"Messaggio della modalità «In manutenzione»\";s:7:\"default\";s:103:\" MORSea è attualmente in manutenzione. Dovrebbe tornare attivo a breve. Grazie per la vostra pazienza.\";s:11:\"description\";s:70:\"Messaggio da mostrare ai visitatori quando il sito è in manutenzione.\";s:5:\"group\";s:16:\"site_information\";s:4:\"name\";s:24:\"maintenance_mode_message\";s:6:\"module\";s:6:\"system\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"textarea\";}s:8:\"localize\";b:1;s:15:\"format callback\";s:20:\"variable_format_text\";s:5:\"token\";b:1;s:12:\"allowed tags\";a:0:{}}s:14:\"theme_settings\";a:12:{s:4:\"type\";s:10:\"properties\";s:5:\"title\";s:22:\"Global theme settings.\";s:5:\"group\";s:14:\"theme_settings\";s:16:\"default callback\";s:30:\"system_variable_theme_defaults\";s:8:\"localize\";b:1;s:4:\"name\";s:14:\"theme_settings\";s:6:\"module\";s:6:\"system\";s:15:\"format callback\";s:26:\"variable_format_properties\";s:7:\"element\";a:2:{s:5:\"#type\";s:8:\"fieldset\";s:5:\"#tree\";b:1;}s:6:\"repeat\";a:1:{s:7:\"element\";a:1:{s:5:\"#type\";s:9:\"textfield\";}}s:16:\"element callback\";s:27:\"variable_form_element_array\";s:7:\"default\";a:0:{}}s:22:\"theme_[theme]_settings\";a:15:{s:4:\"type\";s:8:\"multiple\";s:8:\"multiple\";s:5:\"theme\";s:5:\"title\";s:14:\"Theme settings\";s:11:\"description\";s:46:\"Logo, icons and other specific theme settings.\";s:6:\"repeat\";a:2:{s:4:\"type\";s:10:\"properties\";s:16:\"default callback\";s:30:\"system_variable_theme_defaults\";}s:5:\"group\";s:14:\"theme_settings\";s:8:\"localize\";b:1;s:4:\"name\";s:22:\"theme_[theme]_settings\";s:6:\"module\";s:6:\"system\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:14:\"build callback\";s:23:\"variable_build_multiple\";s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";}s:5:\"cache\";a:8:{s:4:\"type\";s:7:\"boolean\";s:5:\"title\";s:38:\"Pagine in cache per gli utenti anonimi\";s:7:\"default\";i:0;s:5:\"group\";s:18:\"system_performance\";s:4:\"name\";s:5:\"cache\";s:6:\"module\";s:6:\"system\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"checkbox\";}s:15:\"format callback\";s:23:\"variable_format_boolean\";}s:11:\"block_cache\";a:9:{s:4:\"type\";s:7:\"boolean\";s:5:\"title\";s:17:\"Cache dei blocchi\";s:7:\"default\";b:0;s:11:\"description\";s:91:\"Block caching is inactive if you have enabled modules defining content access restrictions.\";s:5:\"group\";s:18:\"system_performance\";s:4:\"name\";s:11:\"block_cache\";s:6:\"module\";s:6:\"system\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"checkbox\";}s:15:\"format callback\";s:23:\"variable_format_boolean\";}s:14:\"cache_lifetime\";a:12:{s:4:\"type\";s:13:\"time_interval\";s:5:\"title\";s:19:\"Durata minima cache\";s:7:\"default\";i:0;s:15:\"interval values\";a:14:{i:0;i:0;i:1;i:60;i:2;i:180;i:3;i:300;i:4;i:600;i:5;i:900;i:6;i:1800;i:7;i:2700;i:8;i:3600;i:9;i:10800;i:10;i:21600;i:11;i:32400;i:12;i:43200;i:13;i:86400;}s:11:\"description\";s:86:\"Le pagine in cache non verranno ricreate prima del passaggio di questo lasso di tempo.\";s:5:\"group\";s:18:\"system_performance\";s:4:\"name\";s:14:\"cache_lifetime\";s:6:\"module\";s:6:\"system\";s:16:\"options callback\";s:36:\"system_variable_option_time_interval\";s:7:\"options\";b:1;s:16:\"element callback\";s:29:\"variable_form_element_options\";s:15:\"format callback\";s:25:\"variable_format_selection\";}s:22:\"page_cache_maximum_age\";a:12:{s:4:\"type\";s:13:\"time_interval\";s:5:\"title\";s:30:\"Scadenza delle pagine in cache\";s:7:\"default\";i:0;s:15:\"interval values\";a:14:{i:0;i:0;i:1;i:60;i:2;i:180;i:3;i:300;i:4;i:600;i:5;i:900;i:6;i:1800;i:7;i:2700;i:8;i:3600;i:9;i:10800;i:10;i:21600;i:11;i:32400;i:12;i:43200;i:13;i:86400;}s:11:\"description\";s:90:\"Tempo massimo per cui una cache esterna può utilizzare una vecchia versione della pagina.\";s:5:\"group\";s:18:\"system_performance\";s:4:\"name\";s:22:\"page_cache_maximum_age\";s:6:\"module\";s:6:\"system\";s:16:\"options callback\";s:36:\"system_variable_option_time_interval\";s:7:\"options\";b:1;s:16:\"element callback\";s:29:\"variable_form_element_options\";s:15:\"format callback\";s:25:\"variable_format_selection\";}s:16:\"page_compression\";a:10:{s:4:\"type\";s:6:\"enable\";s:5:\"title\";s:39:\"Comprimi le pagine incluse nella cache.\";s:11:\"description\";s:143:\"Le risorse esterne possono essere ottimizzate automaticamente, possono ridurre sia la dimensione che il numero di richieste effettuate al sito.\";s:7:\"default\";b:1;s:5:\"group\";s:18:\"system_performance\";s:4:\"name\";s:16:\"page_compression\";s:6:\"module\";s:6:\"system\";s:7:\"options\";a:2:{i:0;s:8:\"Disabled\";i:1;s:7:\"Enabled\";}s:7:\"element\";a:1:{s:5:\"#type\";s:6:\"radios\";}s:15:\"format callback\";s:25:\"variable_format_selection\";}s:14:\"preprocess_css\";a:9:{s:4:\"type\";s:7:\"boolean\";s:5:\"title\";s:30:\"Aggrega e comprimi i file CSS.\";s:11:\"description\";s:143:\"Le risorse esterne possono essere ottimizzate automaticamente, possono ridurre sia la dimensione che il numero di richieste effettuate al sito.\";s:7:\"default\";i:0;s:5:\"group\";s:18:\"system_performance\";s:4:\"name\";s:14:\"preprocess_css\";s:6:\"module\";s:6:\"system\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"checkbox\";}s:15:\"format callback\";s:23:\"variable_format_boolean\";}s:13:\"preprocess_js\";a:9:{s:4:\"type\";s:7:\"boolean\";s:5:\"title\";s:26:\"Aggrega i file JavaScript.\";s:11:\"description\";s:143:\"Le risorse esterne possono essere ottimizzate automaticamente, possono ridurre sia la dimensione che il numero di richieste effettuate al sito.\";s:7:\"default\";i:0;s:5:\"group\";s:18:\"system_performance\";s:4:\"name\";s:13:\"preprocess_js\";s:6:\"module\";s:6:\"system\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"checkbox\";}s:15:\"format callback\";s:23:\"variable_format_boolean\";}s:13:\"user_register\";a:10:{s:4:\"type\";s:6:\"select\";s:5:\"title\";s:20:\"Public registrations\";s:7:\"default\";i:1;s:7:\"options\";b:1;s:16:\"options callback\";s:25:\"user_variable_option_list\";s:5:\"group\";s:13:\"user_settings\";s:4:\"name\";s:13:\"user_register\";s:6:\"module\";s:4:\"user\";s:16:\"element callback\";s:29:\"variable_form_element_options\";s:15:\"format callback\";s:25:\"variable_format_selection\";}s:23:\"user_email_verification\";a:9:{s:4:\"type\";s:7:\"boolean\";s:5:\"title\";s:61:\"Require e-mail verification when a visitor creates an account\";s:7:\"default\";b:1;s:11:\"description\";s:294:\"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.\";s:5:\"group\";s:13:\"user_settings\";s:4:\"name\";s:23:\"user_email_verification\";s:6:\"module\";s:4:\"user\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"checkbox\";}s:15:\"format callback\";s:23:\"variable_format_boolean\";}s:22:\"user_registration_help\";a:12:{s:4:\"type\";s:4:\"text\";s:5:\"title\";s:28:\"User registration guidelines\";s:7:\"default\";s:0:\"\";s:11:\"description\";s:116:\"This text is displayed at the top of the user registration form and is useful for helping or instructing your users.\";s:5:\"group\";s:13:\"user_settings\";s:4:\"name\";s:22:\"user_registration_help\";s:6:\"module\";s:4:\"user\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"textarea\";}s:8:\"localize\";b:1;s:15:\"format callback\";s:20:\"variable_format_text\";s:5:\"token\";b:1;s:12:\"allowed tags\";a:0:{}}s:44:\"user_mail_register_admin_created_[mail_part]\";a:15:{s:4:\"type\";s:9:\"user_mail\";s:5:\"title\";s:42:\"Welcome, new user created by administrator\";s:11:\"description\";s:271:\"Customize welcome e-mail messages sent to new member accounts created by an administrator. Le variabili disponibili sono: [site:name], [site:url], [user:name], [user:mail], [site:login-url], [site:url-brief], [user:edit-url], [user:one-time-login-url], [user:cancel-url].\";s:5:\"group\";s:10:\"user_mails\";s:4:\"name\";s:44:\"user_mail_register_admin_created_[mail_part]\";s:6:\"module\";s:4:\"user\";s:6:\"repeat\";a:1:{s:16:\"default callback\";s:26:\"user_variable_mail_default\";}s:8:\"multiple\";a:2:{s:7:\"subject\";s:7:\"Subject\";s:4:\"body\";s:4:\"Body\";}s:14:\"build callback\";s:24:\"variable_build_mail_text\";s:8:\"localize\";b:1;s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";}s:51:\"user_mail_register_no_approval_required_[mail_part]\";a:15:{s:4:\"type\";s:9:\"user_mail\";s:5:\"title\";s:29:\"Welcome, no approval required\";s:11:\"description\";s:296:\"Customize welcome e-mail messages sent to new members upon registering, when no administrator approval is required. Le variabili disponibili sono: [site:name], [site:url], [user:name], [user:mail], [site:login-url], [site:url-brief], [user:edit-url], [user:one-time-login-url], [user:cancel-url].\";s:5:\"group\";s:10:\"user_mails\";s:4:\"name\";s:51:\"user_mail_register_no_approval_required_[mail_part]\";s:6:\"module\";s:4:\"user\";s:6:\"repeat\";a:1:{s:16:\"default callback\";s:26:\"user_variable_mail_default\";}s:8:\"multiple\";a:2:{s:7:\"subject\";s:7:\"Subject\";s:4:\"body\";s:4:\"Body\";}s:14:\"build callback\";s:24:\"variable_build_mail_text\";s:8:\"localize\";b:1;s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";}s:47:\"user_mail_register_pending_approval_[mail_part]\";a:15:{s:4:\"type\";s:9:\"user_mail\";s:5:\"title\";s:40:\"Welcome, awaiting administrator approval\";s:11:\"description\";s:294:\"Customize welcome e-mail messages sent to new members upon registering, when administrative approval is required. Le variabili disponibili sono: [site:name], [site:url], [user:name], [user:mail], [site:login-url], [site:url-brief], [user:edit-url], [user:one-time-login-url], [user:cancel-url].\";s:5:\"group\";s:10:\"user_mails\";s:4:\"name\";s:47:\"user_mail_register_pending_approval_[mail_part]\";s:6:\"module\";s:4:\"user\";s:6:\"repeat\";a:1:{s:16:\"default callback\";s:26:\"user_variable_mail_default\";}s:8:\"multiple\";a:2:{s:7:\"subject\";s:7:\"Subject\";s:4:\"body\";s:4:\"Body\";}s:14:\"build callback\";s:24:\"variable_build_mail_text\";s:8:\"localize\";b:1;s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";}s:36:\"user_mail_password_reset_[mail_part]\";a:15:{s:4:\"type\";s:9:\"user_mail\";s:5:\"title\";s:23:\"Password recovery email\";s:11:\"description\";s:248:\"Customize e-mail messages sent to users who request a new password. Le variabili disponibili sono: [site:name], [site:url], [user:name], [user:mail], [site:login-url], [site:url-brief], [user:edit-url], [user:one-time-login-url], [user:cancel-url].\";s:5:\"group\";s:10:\"user_mails\";s:4:\"name\";s:36:\"user_mail_password_reset_[mail_part]\";s:6:\"module\";s:4:\"user\";s:6:\"repeat\";a:1:{s:16:\"default callback\";s:26:\"user_variable_mail_default\";}s:8:\"multiple\";a:2:{s:7:\"subject\";s:7:\"Subject\";s:4:\"body\";s:4:\"Body\";}s:14:\"build callback\";s:24:\"variable_build_mail_text\";s:8:\"localize\";b:1;s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";}s:38:\"user_mail_status_activated_[mail_part]\";a:15:{s:4:\"type\";s:9:\"user_mail\";s:5:\"title\";s:24:\"Account activation email\";s:11:\"description\";s:391:\"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). Le variabili disponibili sono: [site:name], [site:url], [user:name], [user:mail], [site:login-url], [site:url-brief], [user:edit-url], [user:one-time-login-url], [user:cancel-url].\";s:5:\"group\";s:10:\"user_mails\";s:4:\"name\";s:38:\"user_mail_status_activated_[mail_part]\";s:6:\"module\";s:4:\"user\";s:6:\"repeat\";a:1:{s:16:\"default callback\";s:26:\"user_variable_mail_default\";}s:8:\"multiple\";a:2:{s:7:\"subject\";s:7:\"Subject\";s:4:\"body\";s:4:\"Body\";}s:14:\"build callback\";s:24:\"variable_build_mail_text\";s:8:\"localize\";b:1;s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";}s:33:\"user_mail_status_activated_notify\";a:8:{s:4:\"type\";s:7:\"boolean\";s:5:\"title\";s:53:\"Avvisa l\'utente quando il suo profilo viene attivato.\";s:7:\"default\";b:1;s:5:\"group\";s:13:\"user_settings\";s:4:\"name\";s:33:\"user_mail_status_activated_notify\";s:6:\"module\";s:4:\"user\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"checkbox\";}s:15:\"format callback\";s:23:\"variable_format_boolean\";}s:36:\"user_mail_status_blocked_[mail_part]\";a:15:{s:4:\"type\";s:9:\"user_mail\";s:5:\"title\";s:21:\"Account blocked email\";s:11:\"description\";s:264:\"Enable and customize e-mail messages sent to users when their accounts are blocked. Le variabili disponibili sono: [site:name], [site:url], [user:name], [user:mail], [site:login-url], [site:url-brief], [user:edit-url], [user:one-time-login-url], [user:cancel-url].\";s:5:\"group\";s:10:\"user_mails\";s:4:\"name\";s:36:\"user_mail_status_blocked_[mail_part]\";s:6:\"module\";s:4:\"user\";s:6:\"repeat\";a:1:{s:16:\"default callback\";s:26:\"user_variable_mail_default\";}s:8:\"multiple\";a:2:{s:7:\"subject\";s:7:\"Subject\";s:4:\"body\";s:4:\"Body\";}s:14:\"build callback\";s:24:\"variable_build_mail_text\";s:8:\"localize\";b:1;s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";}s:31:\"user_mail_status_blocked_notify\";a:8:{s:4:\"type\";s:7:\"boolean\";s:5:\"title\";s:50:\"Avvisa l\'utente quando il suo profilo è bloccato.\";s:7:\"default\";b:0;s:5:\"group\";s:13:\"user_settings\";s:4:\"name\";s:31:\"user_mail_status_blocked_notify\";s:6:\"module\";s:4:\"user\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"checkbox\";}s:15:\"format callback\";s:23:\"variable_format_boolean\";}s:36:\"user_mail_cancel_confirm_[mail_part]\";a:15:{s:4:\"type\";s:9:\"user_mail\";s:5:\"title\";s:43:\"Conferma di eliminazione del profilo utente\";s:11:\"description\";s:281:\"Modifica i messaggi e-mail inviati agli utenti quando tentano di cancellare i propri profili utente. Le variabili disponibili sono: [site:name], [site:url], [user:name], [user:mail], [site:login-url], [site:url-brief], [user:edit-url], [user:one-time-login-url], [user:cancel-url].\";s:5:\"group\";s:10:\"user_mails\";s:4:\"name\";s:36:\"user_mail_cancel_confirm_[mail_part]\";s:6:\"module\";s:4:\"user\";s:6:\"repeat\";a:1:{s:16:\"default callback\";s:26:\"user_variable_mail_default\";}s:8:\"multiple\";a:2:{s:7:\"subject\";s:7:\"Subject\";s:4:\"body\";s:4:\"Body\";}s:14:\"build callback\";s:24:\"variable_build_mail_text\";s:8:\"localize\";b:1;s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";}s:37:\"user_mail_status_canceled_[mail_part]\";a:15:{s:4:\"type\";s:9:\"user_mail\";s:5:\"title\";s:21:\"Account deleted email\";s:11:\"description\";s:264:\"Enable and customize e-mail messages sent to users when their accounts are deleted. Le variabili disponibili sono: [site:name], [site:url], [user:name], [user:mail], [site:login-url], [site:url-brief], [user:edit-url], [user:one-time-login-url], [user:cancel-url].\";s:5:\"group\";s:10:\"user_mails\";s:4:\"name\";s:37:\"user_mail_status_canceled_[mail_part]\";s:6:\"module\";s:4:\"user\";s:6:\"repeat\";a:1:{s:16:\"default callback\";s:26:\"user_variable_mail_default\";}s:8:\"multiple\";a:2:{s:7:\"subject\";s:7:\"Subject\";s:4:\"body\";s:4:\"Body\";}s:14:\"build callback\";s:24:\"variable_build_mail_text\";s:8:\"localize\";b:1;s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";}s:31:\"user_mail_status_deleted_notify\";a:8:{s:4:\"type\";s:7:\"boolean\";s:5:\"title\";s:36:\"Notify user when account is deleted.\";s:7:\"default\";b:0;s:5:\"group\";s:13:\"user_settings\";s:4:\"name\";s:31:\"user_mail_status_deleted_notify\";s:6:\"module\";s:4:\"user\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"checkbox\";}s:15:\"format callback\";s:23:\"variable_format_boolean\";}s:15:\"user_signatures\";a:9:{s:4:\"type\";s:6:\"enable\";s:5:\"title\";s:17:\"Signature support\";s:7:\"default\";i:0;s:5:\"group\";s:13:\"user_settings\";s:4:\"name\";s:15:\"user_signatures\";s:6:\"module\";s:4:\"user\";s:7:\"options\";a:2:{i:0;s:8:\"Disabled\";i:1;s:7:\"Enabled\";}s:7:\"element\";a:1:{s:5:\"#type\";s:6:\"radios\";}s:15:\"format callback\";s:25:\"variable_format_selection\";}s:17:\"user_picture_path\";a:8:{s:4:\"type\";s:9:\"file_path\";s:5:\"title\";s:24:\"Cartella per le immagini\";s:7:\"default\";s:8:\"pictures\";s:7:\"element\";a:2:{s:5:\"#size\";i:30;s:10:\"#maxlength\";i:255;}s:11:\"description\";s:89:\"Sottocartella nella cartella di caricamento dei file dove le immagini verranno archiviate\";s:5:\"group\";s:13:\"user_settings\";s:4:\"name\";s:17:\"user_picture_path\";s:6:\"module\";s:4:\"user\";}s:20:\"user_picture_default\";a:9:{s:4:\"type\";s:3:\"url\";s:5:\"title\";s:20:\"Ritratto predefinito\";s:7:\"default\";s:0:\"\";s:11:\"description\";s:116:\"URL del ritratto da mostrare per gli utenti privi di un ritratto personalizzato. Lasciare vuoto per nessun ritratto.\";s:5:\"group\";s:13:\"user_settings\";s:4:\"name\";s:20:\"user_picture_default\";s:6:\"module\";s:4:\"user\";s:7:\"element\";a:3:{s:5:\"#type\";s:9:\"textfield\";s:5:\"#size\";i:80;s:10:\"#maxlength\";i:255;}s:5:\"token\";b:1;}s:23:\"user_picture_dimensions\";a:12:{s:4:\"type\";s:6:\"string\";s:5:\"title\";s:26:\"Picture maximum dimensions\";s:7:\"default\";s:5:\"85x85\";s:11:\"description\";s:43:\"Maximum dimensions for pictures, in pixels.\";s:7:\"element\";a:2:{s:5:\"#size\";i:15;s:10:\"#maxlength\";i:10;}s:5:\"group\";s:13:\"user_settings\";s:4:\"name\";s:23:\"user_picture_dimensions\";s:6:\"module\";s:4:\"user\";s:8:\"localize\";b:1;s:15:\"format callback\";s:22:\"variable_format_string\";s:5:\"token\";b:1;s:12:\"allowed tags\";a:0:{}}s:22:\"user_picture_file_size\";a:11:{s:4:\"type\";s:6:\"number\";s:5:\"title\";s:25:\"Picture maximum file size\";s:7:\"default\";i:30;s:11:\"description\";s:38:\"Maximum file size for pictures, in kB.\";s:5:\"group\";s:13:\"user_settings\";s:4:\"name\";s:22:\"user_picture_file_size\";s:6:\"module\";s:4:\"user\";s:7:\"element\";a:3:{s:5:\"#type\";s:9:\"textfield\";s:5:\"#size\";i:15;s:10:\"#maxlength\";i:10;}s:5:\"token\";b:1;s:17:\"validate callback\";s:24:\"variable_validate_number\";s:15:\"format callback\";s:22:\"variable_format_number\";}s:23:\"user_picture_guidelines\";a:12:{s:4:\"type\";s:4:\"text\";s:5:\"title\";s:27:\"Linee guida per il ritratto\";s:7:\"default\";s:0:\"\";s:11:\"description\";s:156:\"Questo testo viene mostrato vicino al form di caricamento del ritratto in aggiunta alle linee guida predefinite.  È utile per guidare o aiutare gli utenti.\";s:5:\"group\";s:13:\"user_settings\";s:4:\"name\";s:23:\"user_picture_guidelines\";s:6:\"module\";s:4:\"user\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"textarea\";}s:8:\"localize\";b:1;s:15:\"format callback\";s:20:\"variable_format_text\";s:5:\"token\";b:1;s:12:\"allowed tags\";a:0:{}}s:15:\"forum_hot_topic\";a:10:{s:5:\"title\";s:31:\"Soglia degli argomenti \'caldi\'.\";s:4:\"type\";s:13:\"select_number\";s:7:\"default\";i:15;s:7:\"options\";a:19:{i:0;i:5;i:1;i:10;i:2;i:15;i:3;i:20;i:4;i:25;i:5;i:30;i:6;i:35;i:7;i:40;i:8;i:50;i:9;i:60;i:10;i:80;i:11;i:100;i:12;i:150;i:13;i:200;i:14;i:250;i:15;i:300;i:16;i:350;i:17;i:400;i:18;i:500;}s:11:\"description\";s:81:\"Il numero di risposte che deve avere un argomento per essere considerato \"caldo\".\";s:5:\"group\";s:14:\"forum_settings\";s:4:\"name\";s:15:\"forum_hot_topic\";s:6:\"module\";s:5:\"forum\";s:16:\"element callback\";s:29:\"variable_form_element_options\";s:16:\"options callback\";s:30:\"variable_options_select_number\";}s:14:\"forum_per_page\";a:10:{s:5:\"title\";s:20:\"Argomenti per pagina\";s:4:\"type\";s:13:\"select_number\";s:7:\"default\";i:25;s:7:\"options\";a:5:{i:0;i:10;i:1;i:25;i:2;i:50;i:3;i:75;i:4;i:100;}s:11:\"description\";s:65:\"Numero di default di argomenti del forum visualizzati per pagina.\";s:5:\"group\";s:14:\"forum_settings\";s:4:\"name\";s:14:\"forum_per_page\";s:6:\"module\";s:5:\"forum\";s:16:\"element callback\";s:29:\"variable_form_element_options\";s:16:\"options callback\";s:30:\"variable_options_select_number\";}s:11:\"forum_order\";a:10:{s:5:\"title\";s:18:\"Ordine predefinito\";s:4:\"type\";s:6:\"select\";s:7:\"default\";i:1;s:7:\"options\";a:4:{i:1;s:25:\"Data - prima i più nuovi\";i:2;s:26:\"Data - prima i più vecchi\";i:3;s:31:\"Contenuti - prima i più attivi\";i:4;s:31:\"Contenuti - prima i meno attivi\";}s:11:\"description\";s:55:\"Ordine di visualizzazione predefinito per gli argomenti\";s:5:\"group\";s:14:\"forum_settings\";s:4:\"name\";s:11:\"forum_order\";s:6:\"module\";s:5:\"forum\";s:16:\"element callback\";s:29:\"variable_form_element_options\";s:15:\"format callback\";s:25:\"variable_format_selection\";}s:20:\"forum_nav_vocabulary\";a:10:{s:4:\"type\";s:6:\"select\";s:7:\"options\";s:14:\"vocabulary_vid\";s:5:\"title\";s:40:\"Vocabolario per la navigazione del forum\";s:7:\"default\";i:0;s:5:\"group\";s:14:\"forum_settings\";s:8:\"localize\";b:1;s:4:\"name\";s:20:\"forum_nav_vocabulary\";s:6:\"module\";s:5:\"forum\";s:16:\"element callback\";s:29:\"variable_form_element_options\";s:15:\"format callback\";s:25:\"variable_format_selection\";}s:16:\"forum_containers\";a:10:{s:4:\"type\";s:5:\"array\";s:5:\"title\";s:16:\"Forum containers\";s:5:\"group\";s:14:\"forum_settings\";s:4:\"name\";s:16:\"forum_containers\";s:6:\"module\";s:5:\"forum\";s:7:\"element\";a:2:{s:5:\"#type\";s:8:\"fieldset\";s:5:\"#tree\";b:1;}s:6:\"repeat\";a:1:{s:7:\"element\";a:1:{s:5:\"#type\";s:9:\"textfield\";}}s:15:\"format callback\";s:21:\"variable_format_array\";s:16:\"element callback\";s:27:\"variable_form_element_array\";s:7:\"default\";a:0:{}}s:18:\"i18n_language_list\";a:11:{s:5:\"title\";s:21:\"Languages for content\";s:11:\"description\";s:64:\"Determines which languages will be allowed for content creation.\";s:4:\"type\";s:6:\"select\";s:16:\"options callback\";s:25:\"i18n_variable_option_list\";s:7:\"default\";i:1;s:5:\"group\";s:4:\"i18n\";s:4:\"name\";s:18:\"i18n_language_list\";s:6:\"module\";s:4:\"i18n\";s:7:\"options\";b:1;s:16:\"element callback\";s:29:\"variable_form_element_options\";s:15:\"format callback\";s:25:\"variable_format_selection\";}s:41:\"i18n_string_translate_langcode_[language]\";a:15:{s:4:\"type\";s:17:\"multiple_language\";s:5:\"title\";s:31:\"Enable translation for language\";s:15:\"multiple values\";a:1:{s:4:\"type\";s:7:\"boolean\";}s:5:\"group\";s:4:\"i18n\";s:4:\"name\";s:41:\"i18n_string_translate_langcode_[language]\";s:6:\"module\";s:11:\"i18n_string\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:14:\"build callback\";s:23:\"variable_build_multiple\";s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";s:17:\"multiple callback\";s:39:\"i18n_variable_multiple_language_options\";s:13:\"language list\";i:4;s:8:\"multiple\";s:8:\"language\";}s:27:\"i18n_string_allowed_formats\";a:13:{s:5:\"title\";s:25:\"Translatable text formats\";s:16:\"options callback\";s:32:\"i18n_string_variable_format_list\";s:4:\"type\";s:7:\"options\";s:16:\"default callback\";s:35:\"i18n_string_variable_format_default\";s:6:\"access\";s:18:\"administer filters\";s:11:\"description\";s:163:\"The translation system only translates strings with the selected text formats. All other strings will be ignored and removed from the list of translatable strings.\";s:4:\"name\";s:27:\"i18n_string_allowed_formats\";s:6:\"module\";s:11:\"i18n_string\";s:5:\"group\";s:7:\"default\";s:7:\"options\";b:1;s:7:\"element\";a:1:{s:5:\"#type\";s:10:\"checkboxes\";}s:16:\"element callback\";s:29:\"variable_form_element_options\";s:15:\"format callback\";s:23:\"variable_format_options\";}s:27:\"i18n_string_source_language\";a:11:{s:5:\"title\";s:15:\"Source language\";s:4:\"type\";s:8:\"language\";s:16:\"default callback\";s:27:\"i18n_string_source_language\";s:11:\"description\";s:116:\"Language that will be used as the source language for string translations. The default is the site default language.\";s:4:\"name\";s:27:\"i18n_string_source_language\";s:6:\"module\";s:11:\"i18n_string\";s:5:\"group\";s:7:\"default\";s:16:\"options callback\";s:32:\"locale_variable_options_language\";s:7:\"options\";b:1;s:16:\"element callback\";s:29:\"variable_form_element_options\";s:15:\"format callback\";s:25:\"variable_format_selection\";}s:17:\"i18n_string_debug\";a:9:{s:4:\"type\";s:6:\"enable\";s:5:\"title\";s:24:\"Debug string translation\";s:7:\"default\";i:0;s:5:\"group\";s:5:\"debug\";s:4:\"name\";s:17:\"i18n_string_debug\";s:6:\"module\";s:11:\"i18n_string\";s:7:\"options\";a:2:{i:0;s:8:\"Disabled\";i:1;s:7:\"Enabled\";}s:7:\"element\";a:1:{s:5:\"#type\";s:6:\"radios\";}s:15:\"format callback\";s:25:\"variable_format_selection\";}s:39:\"i18n_string_textgroup_class_[textgroup]\";a:15:{s:5:\"title\";s:31:\"Class to use for the text group\";s:11:\"description\";s:80:\"Determines which the class will be use for string translation in the text group.\";s:6:\"repeat\";a:3:{s:4:\"type\";s:6:\"select\";s:7:\"default\";s:29:\"i18n_string_textgroup_default\";s:16:\"options callback\";s:41:\"i18n_string_variable_textgroup_class_list\";}s:15:\"submit callback\";s:52:\"i18n_string_variable_textgroup_class_submit_callback\";s:5:\"group\";s:4:\"i18n\";s:4:\"name\";s:39:\"i18n_string_textgroup_class_[textgroup]\";s:6:\"module\";s:11:\"i18n_string\";s:4:\"type\";s:8:\"multiple\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:14:\"build callback\";s:23:\"variable_build_multiple\";s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";s:8:\"multiple\";s:9:\"textgroup\";}s:31:\"i18n_sync_node_type_[node_type]\";a:13:{s:5:\"title\";s:33:\"Synchronize fields for node type.\";s:4:\"type\";s:8:\"multiple\";s:6:\"repeat\";a:1:{s:4:\"type\";s:5:\"array\";}s:5:\"group\";s:4:\"i18n\";s:4:\"name\";s:31:\"i18n_sync_node_type_[node_type]\";s:6:\"module\";s:9:\"i18n_sync\";s:7:\"element\";a:1:{s:5:\"#type\";s:8:\"fieldset\";}s:14:\"build callback\";s:23:\"variable_build_multiple\";s:15:\"format callback\";s:24:\"variable_format_multiple\";s:16:\"element callback\";s:30:\"variable_form_element_multiple\";s:14:\"value callback\";s:27:\"variable_multiple_get_value\";s:16:\"default callback\";s:29:\"variable_multiple_get_default\";s:8:\"multiple\";s:9:\"node_type\";}}',0,1538751536,1);
/*!40000 ALTER TABLE `cache_variable` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cache_views`
--

DROP TABLE IF EXISTS `cache_views`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cache_views` (
  `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
  `data` longblob DEFAULT NULL COMMENT 'A collection of data to cache.',
  `expire` int(11) NOT NULL DEFAULT 0 COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
  `created` int(11) NOT NULL DEFAULT 0 COMMENT 'A Unix timestamp indicating when the cache entry was created.',
  `serialized` smallint(6) NOT NULL DEFAULT 0 COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
  PRIMARY KEY (`cid`),
  KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Generic cache table for caching things not separated out...';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cache_views`
--

LOCK TABLES `cache_views` WRITE;
/*!40000 ALTER TABLE `cache_views` DISABLE KEYS */;
INSERT INTO `cache_views` VALUES ('ctools_export:views_view:archive','O:4:\"view\":49:{s:8:\"db_table\";s:10:\"views_view\";s:10:\"base_table\";s:4:\"node\";s:10:\"base_field\";s:3:\"nid\";s:4:\"name\";s:7:\"archive\";s:3:\"vid\";s:0:\"\";s:11:\"description\";s:61:\"Display a list of months that link to content for that month.\";s:3:\"tag\";s:7:\"default\";s:10:\"human_name\";s:7:\"Archive\";s:4:\"core\";i:0;s:11:\"api_version\";s:3:\"3.0\";s:8:\"disabled\";b:1;s:5:\"built\";b:0;s:8:\"executed\";b:0;s:7:\"editing\";b:0;s:4:\"args\";a:0:{}s:10:\"build_info\";a:0:{}s:8:\"use_ajax\";b:0;s:6:\"result\";a:0:{}s:12:\"current_page\";N;s:14:\"items_per_page\";N;s:6:\"offset\";N;s:10:\"total_rows\";N;s:17:\"attachment_before\";s:0:\"\";s:16:\"attachment_after\";s:0:\"\";s:12:\"exposed_data\";a:0:{}s:13:\"exposed_input\";a:0:{}s:17:\"exposed_raw_input\";a:0:{}s:8:\"old_view\";a:0:{}s:12:\"parent_views\";a:0:{}s:13:\"is_attachment\";N;s:15:\"current_display\";N;s:5:\"query\";N;s:15:\"display_handler\";N;s:7:\"display\";a:3:{s:7:\"default\";O:13:\"views_display\":8:{s:7:\"handler\";O:28:\"views_plugin_display_default\":9:{s:4:\"view\";r:1;s:8:\"handlers\";a:0:{}s:8:\"extender\";a:0:{}s:7:\"display\";R:36;s:11:\"plugin_type\";s:7:\"display\";s:11:\"plugin_name\";s:7:\"default\";s:7:\"options\";a:38:{s:5:\"title\";s:0:\"\";s:7:\"enabled\";b:1;s:15:\"display_comment\";s:0:\"\";s:9:\"css_class\";s:0:\"\";s:19:\"display_description\";s:0:\"\";s:8:\"use_ajax\";b:0;s:23:\"hide_attachment_summary\";b:0;s:16:\"hide_admin_links\";b:0;s:14:\"items_per_page\";i:10;s:6:\"offset\";i:0;s:9:\"use_pager\";b:0;s:8:\"use_more\";b:0;s:15:\"use_more_always\";b:0;s:13:\"use_more_text\";s:4:\"more\";s:12:\"link_display\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:0;s:14:\"field_language\";s:22:\"***CURRENT_LANGUAGE***\";s:27:\"field_language_add_to_query\";i:1;s:6:\"access\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"cache\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:12:\"exposed_form\";a:2:{s:4:\"type\";s:5:\"basic\";s:7:\"options\";a:0:{}}s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"full\";s:7:\"options\";a:0:{}}s:12:\"style_plugin\";s:7:\"default\";s:13:\"style_options\";a:0:{}s:10:\"row_plugin\";s:6:\"fields\";s:11:\"row_options\";a:0:{}s:13:\"exposed_block\";b:0;s:6:\"header\";a:0:{}s:6:\"footer\";a:0:{}s:5:\"empty\";a:0:{}s:13:\"relationships\";a:0:{}s:6:\"fields\";a:0:{}s:5:\"sorts\";a:0:{}s:9:\"arguments\";a:0:{}s:13:\"filter_groups\";a:2:{s:8:\"operator\";s:3:\"AND\";s:6:\"groups\";a:1:{i:1;s:3:\"AND\";}}s:7:\"filters\";a:0:{}}s:10:\"definition\";a:20:{s:5:\"title\";s:6:\"Master\";s:4:\"help\";s:31:\"Default settings for this view.\";s:7:\"handler\";s:28:\"views_plugin_display_default\";s:5:\"theme\";s:10:\"views_view\";s:5:\"no ui\";b:1;s:9:\"no remove\";b:1;s:2:\"js\";a:6:{i:0;s:12:\"misc/form.js\";i:1;s:16:\"misc/collapse.js\";i:2;s:16:\"misc/textarea.js\";i:3;s:17:\"misc/tabledrag.js\";i:4;s:20:\"misc/autocomplete.js\";i:5;s:40:\"sites/all/modules/ctools/js/dependent.js\";}s:8:\"use ajax\";b:1;s:9:\"use pager\";b:1;s:8:\"use more\";b:1;s:18:\"accept attachments\";b:1;s:10:\"help topic\";s:15:\"display-default\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:32:\"views_plugin_display_default.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:7:\"default\";s:16:\"contextual links\";a:1:{s:8:\"views_ui\";a:2:{s:11:\"parent path\";s:26:\"admin/structure/views/view\";s:19:\"argument properties\";a:1:{i:0;s:4:\"name\";}}}}s:9:\"is_plugin\";b:1;}s:15:\"display_options\";a:11:{s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:1:{s:13:\"query_comment\";b:0;}}s:5:\"title\";s:15:\"Monthly archive\";s:6:\"access\";a:2:{s:4:\"type\";s:4:\"perm\";s:4:\"perm\";s:14:\"access content\";}s:5:\"cache\";a:1:{s:4:\"type\";s:4:\"none\";}s:12:\"exposed_form\";a:1:{s:4:\"type\";s:5:\"basic\";}s:5:\"pager\";a:1:{s:4:\"type\";s:4:\"full\";}s:12:\"style_plugin\";s:7:\"default\";s:10:\"row_plugin\";s:4:\"node\";s:5:\"sorts\";a:1:{s:7:\"created\";a:4:{s:2:\"id\";s:7:\"created\";s:5:\"table\";s:4:\"node\";s:5:\"field\";s:7:\"created\";s:5:\"order\";s:4:\"DESC\";}}s:9:\"arguments\";a:1:{s:18:\"created_year_month\";a:11:{s:2:\"id\";s:18:\"created_year_month\";s:5:\"table\";s:4:\"node\";s:5:\"field\";s:18:\"created_year_month\";s:14:\"default_action\";s:7:\"summary\";s:9:\"exception\";a:1:{s:12:\"title_enable\";i:1;}s:12:\"title_enable\";i:1;s:5:\"title\";s:2:\"%1\";s:21:\"default_argument_type\";s:5:\"fixed\";s:7:\"summary\";a:2:{s:10:\"sort_order\";s:4:\"desc\";s:6:\"format\";s:15:\"default_summary\";}s:15:\"summary_options\";a:2:{s:8:\"override\";b:1;s:14:\"items_per_page\";s:2:\"30\";}s:18:\"specify_validation\";i:1;}}s:7:\"filters\";a:1:{s:6:\"status\";a:6:{s:2:\"id\";s:6:\"status\";s:5:\"table\";s:4:\"node\";s:5:\"field\";s:6:\"status\";s:5:\"value\";i:1;s:5:\"group\";i:0;s:6:\"expose\";a:1:{s:8:\"operator\";b:0;}}}}s:8:\"db_table\";s:13:\"views_display\";s:3:\"vid\";i:0;s:2:\"id\";s:7:\"default\";s:13:\"display_title\";s:6:\"Master\";s:14:\"display_plugin\";s:7:\"default\";s:8:\"position\";i:0;}s:4:\"page\";O:13:\"views_display\":8:{s:7:\"handler\";O:25:\"views_plugin_display_page\":10:{s:4:\"view\";r:1;s:8:\"handlers\";a:0:{}s:8:\"extender\";a:0:{}s:7:\"display\";R:181;s:11:\"plugin_type\";s:7:\"display\";s:11:\"plugin_name\";s:4:\"page\";s:7:\"options\";a:42:{s:8:\"defaults\";a:33:{s:6:\"access\";b:1;s:5:\"cache\";b:1;s:5:\"query\";b:1;s:5:\"title\";b:1;s:9:\"css_class\";b:1;s:19:\"display_description\";b:0;s:8:\"use_ajax\";b:1;s:23:\"hide_attachment_summary\";b:1;s:16:\"hide_admin_links\";b:1;s:5:\"pager\";b:1;s:13:\"pager_options\";b:1;s:8:\"use_more\";b:1;s:15:\"use_more_always\";b:1;s:15:\"open_new_window\";b:0;s:13:\"use_more_text\";b:1;s:12:\"exposed_form\";b:1;s:20:\"exposed_form_options\";b:1;s:12:\"link_display\";b:1;s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:1;s:12:\"style_plugin\";b:1;s:13:\"style_options\";b:1;s:10:\"row_plugin\";b:1;s:11:\"row_options\";b:1;s:6:\"header\";b:1;s:6:\"footer\";b:1;s:5:\"empty\";b:1;s:13:\"relationships\";b:1;s:6:\"fields\";b:1;s:5:\"sorts\";b:1;s:9:\"arguments\";b:1;s:7:\"filters\";b:1;s:13:\"filter_groups\";b:1;}s:5:\"title\";s:0:\"\";s:7:\"enabled\";b:1;s:15:\"display_comment\";s:0:\"\";s:9:\"css_class\";s:0:\"\";s:19:\"display_description\";s:0:\"\";s:8:\"use_ajax\";b:0;s:23:\"hide_attachment_summary\";b:0;s:16:\"hide_admin_links\";b:0;s:14:\"items_per_page\";i:10;s:6:\"offset\";i:0;s:9:\"use_pager\";b:0;s:8:\"use_more\";b:0;s:15:\"use_more_always\";b:0;s:13:\"use_more_text\";s:4:\"more\";s:12:\"link_display\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:0;s:14:\"field_language\";s:22:\"***CURRENT_LANGUAGE***\";s:27:\"field_language_add_to_query\";i:1;s:6:\"access\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"cache\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:12:\"exposed_form\";a:2:{s:4:\"type\";s:5:\"basic\";s:7:\"options\";a:0:{}}s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"full\";s:7:\"options\";a:0:{}}s:12:\"style_plugin\";s:7:\"default\";s:13:\"style_options\";a:0:{}s:10:\"row_plugin\";s:6:\"fields\";s:11:\"row_options\";a:0:{}s:13:\"exposed_block\";b:0;s:6:\"header\";a:0:{}s:6:\"footer\";a:0:{}s:5:\"empty\";a:0:{}s:13:\"relationships\";a:0:{}s:6:\"fields\";a:0:{}s:5:\"sorts\";a:0:{}s:9:\"arguments\";a:0:{}s:13:\"filter_groups\";a:2:{s:8:\"operator\";s:3:\"AND\";s:6:\"groups\";a:1:{i:1;s:3:\"AND\";}}s:7:\"filters\";a:0:{}s:4:\"path\";s:0:\"\";s:4:\"menu\";a:7:{s:4:\"type\";s:4:\"none\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:6:\"weight\";i:0;s:4:\"name\";s:10:\"navigation\";s:7:\"context\";s:0:\"\";s:19:\"context_only_inline\";b:0;}s:11:\"tab_options\";a:5:{s:4:\"type\";s:4:\"none\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:6:\"weight\";i:0;s:4:\"name\";s:10:\"navigation\";}}s:10:\"definition\";a:20:{s:5:\"title\";s:4:\"Page\";s:4:\"help\";s:54:\"Display the view as a page, with a URL and menu links.\";s:7:\"handler\";s:25:\"views_plugin_display_page\";s:5:\"theme\";s:10:\"views_view\";s:14:\"uses hook menu\";b:1;s:26:\"contextual links locations\";a:1:{i:0;s:4:\"page\";}s:8:\"use ajax\";b:1;s:9:\"use pager\";b:1;s:8:\"use more\";b:1;s:18:\"accept attachments\";b:1;s:5:\"admin\";s:4:\"Page\";s:10:\"help topic\";s:12:\"display-page\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:29:\"views_plugin_display_page.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"page\";s:16:\"contextual links\";a:1:{s:8:\"views_ui\";a:2:{s:11:\"parent path\";s:26:\"admin/structure/views/view\";s:19:\"argument properties\";a:1:{i:0;s:4:\"name\";}}}}s:9:\"is_plugin\";b:1;s:15:\"default_display\";R:37;}s:15:\"display_options\";a:2:{s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:4:\"path\";s:7:\"archive\";}s:8:\"db_table\";s:13:\"views_display\";s:3:\"vid\";i:0;s:2:\"id\";s:4:\"page\";s:13:\"display_title\";s:4:\"Page\";s:14:\"display_plugin\";s:4:\"page\";s:8:\"position\";i:0;}s:5:\"block\";O:13:\"views_display\":8:{s:7:\"handler\";O:26:\"views_plugin_display_block\":10:{s:4:\"view\";r:1;s:8:\"handlers\";a:0:{}s:8:\"extender\";a:0:{}s:7:\"display\";R:325;s:11:\"plugin_type\";s:7:\"display\";s:11:\"plugin_name\";s:5:\"block\";s:7:\"options\";a:41:{s:8:\"defaults\";a:33:{s:6:\"access\";b:1;s:5:\"cache\";b:1;s:5:\"query\";b:1;s:5:\"title\";b:1;s:9:\"css_class\";b:1;s:19:\"display_description\";b:0;s:8:\"use_ajax\";b:1;s:23:\"hide_attachment_summary\";b:1;s:16:\"hide_admin_links\";b:1;s:5:\"pager\";b:1;s:13:\"pager_options\";b:1;s:8:\"use_more\";b:1;s:15:\"use_more_always\";b:1;s:15:\"open_new_window\";b:0;s:13:\"use_more_text\";b:1;s:12:\"exposed_form\";b:1;s:20:\"exposed_form_options\";b:1;s:12:\"link_display\";b:1;s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:1;s:12:\"style_plugin\";b:1;s:13:\"style_options\";b:1;s:10:\"row_plugin\";b:1;s:11:\"row_options\";b:1;s:6:\"header\";b:1;s:6:\"footer\";b:1;s:5:\"empty\";b:1;s:13:\"relationships\";b:1;s:6:\"fields\";b:1;s:5:\"sorts\";b:1;s:9:\"arguments\";b:1;s:7:\"filters\";b:1;s:13:\"filter_groups\";b:1;}s:5:\"title\";s:0:\"\";s:7:\"enabled\";b:1;s:15:\"display_comment\";s:0:\"\";s:9:\"css_class\";s:0:\"\";s:19:\"display_description\";s:0:\"\";s:8:\"use_ajax\";b:0;s:23:\"hide_attachment_summary\";b:0;s:16:\"hide_admin_links\";b:0;s:14:\"items_per_page\";i:10;s:6:\"offset\";i:0;s:9:\"use_pager\";b:0;s:8:\"use_more\";b:0;s:15:\"use_more_always\";b:0;s:13:\"use_more_text\";s:4:\"more\";s:12:\"link_display\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:0;s:14:\"field_language\";s:22:\"***CURRENT_LANGUAGE***\";s:27:\"field_language_add_to_query\";i:1;s:6:\"access\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"cache\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:12:\"exposed_form\";a:2:{s:4:\"type\";s:5:\"basic\";s:7:\"options\";a:0:{}}s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"full\";s:7:\"options\";a:0:{}}s:12:\"style_plugin\";s:7:\"default\";s:13:\"style_options\";a:0:{}s:10:\"row_plugin\";s:6:\"fields\";s:11:\"row_options\";a:0:{}s:13:\"exposed_block\";b:0;s:6:\"header\";a:0:{}s:6:\"footer\";a:0:{}s:5:\"empty\";a:0:{}s:13:\"relationships\";a:0:{}s:6:\"fields\";a:0:{}s:5:\"sorts\";a:0:{}s:9:\"arguments\";a:0:{}s:13:\"filter_groups\";a:2:{s:8:\"operator\";s:3:\"AND\";s:6:\"groups\";a:1:{i:1;s:3:\"AND\";}}s:7:\"filters\";a:0:{}s:17:\"block_description\";s:0:\"\";s:13:\"block_caching\";i:-1;}s:10:\"definition\";a:20:{s:5:\"title\";s:5:\"Block\";s:4:\"help\";s:28:\"Display the view as a block.\";s:7:\"handler\";s:26:\"views_plugin_display_block\";s:5:\"theme\";s:10:\"views_view\";s:15:\"uses hook block\";b:1;s:26:\"contextual links locations\";a:1:{i:0;s:5:\"block\";}s:8:\"use ajax\";b:1;s:9:\"use pager\";b:1;s:8:\"use more\";b:1;s:18:\"accept attachments\";b:1;s:5:\"admin\";s:5:\"Block\";s:10:\"help topic\";s:13:\"display-block\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:30:\"views_plugin_display_block.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:5:\"block\";s:16:\"contextual links\";a:1:{s:8:\"views_ui\";a:2:{s:11:\"parent path\";s:26:\"admin/structure/views/view\";s:19:\"argument properties\";a:1:{i:0;s:4:\"name\";}}}}s:9:\"is_plugin\";b:1;s:15:\"default_display\";R:37;}s:15:\"display_options\";a:3:{s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:8:\"defaults\";a:1:{s:9:\"arguments\";b:0;}s:9:\"arguments\";a:1:{s:18:\"created_year_month\";a:11:{s:2:\"id\";s:18:\"created_year_month\";s:5:\"table\";s:4:\"node\";s:5:\"field\";s:18:\"created_year_month\";s:14:\"default_action\";s:7:\"summary\";s:9:\"exception\";a:1:{s:12:\"title_enable\";i:1;}s:12:\"title_enable\";i:1;s:5:\"title\";s:2:\"%1\";s:21:\"default_argument_type\";s:5:\"fixed\";s:7:\"summary\";a:1:{s:6:\"format\";s:15:\"default_summary\";}s:15:\"summary_options\";a:1:{s:14:\"items_per_page\";s:2:\"30\";}s:18:\"specify_validation\";i:1;}}}s:8:\"db_table\";s:13:\"views_display\";s:3:\"vid\";i:0;s:2:\"id\";s:5:\"block\";s:13:\"display_title\";s:5:\"Block\";s:14:\"display_plugin\";s:5:\"block\";s:8:\"position\";i:0;}}s:12:\"style_plugin\";N;s:13:\"style_options\";N;s:9:\"row_index\";N;s:12:\"override_url\";N;s:13:\"override_path\";N;s:13:\"base_database\";N;s:5:\"field\";N;s:8:\"argument\";N;s:4:\"sort\";N;s:6:\"filter\";N;s:12:\"relationship\";N;s:6:\"header\";N;s:6:\"footer\";N;s:5:\"empty\";N;s:13:\"export_module\";s:4:\"node\";}',0,1538750977,1),('ctools_export:views_view:comments_recent','O:4:\"view\":50:{s:8:\"db_table\";s:10:\"views_view\";s:10:\"base_table\";s:7:\"comment\";s:10:\"base_field\";s:3:\"nid\";s:4:\"name\";s:15:\"comments_recent\";s:3:\"vid\";s:0:\"\";s:11:\"description\";s:162:\"Contains a block and a page to list recent comments; the block will automatically link to the page, which displays the comment body as well as a link to the node.\";s:3:\"tag\";s:7:\"default\";s:10:\"human_name\";s:15:\"Recent comments\";s:4:\"core\";i:0;s:11:\"api_version\";s:3:\"3.0\";s:8:\"disabled\";b:1;s:5:\"built\";b:0;s:8:\"executed\";b:0;s:7:\"editing\";b:0;s:4:\"args\";a:0:{}s:10:\"build_info\";a:0:{}s:8:\"use_ajax\";b:0;s:6:\"result\";a:0:{}s:12:\"current_page\";N;s:14:\"items_per_page\";N;s:6:\"offset\";N;s:10:\"total_rows\";N;s:17:\"attachment_before\";s:0:\"\";s:16:\"attachment_after\";s:0:\"\";s:12:\"exposed_data\";a:0:{}s:13:\"exposed_input\";a:0:{}s:17:\"exposed_raw_input\";a:0:{}s:8:\"old_view\";a:0:{}s:12:\"parent_views\";a:0:{}s:13:\"is_attachment\";N;s:15:\"current_display\";N;s:5:\"query\";N;s:15:\"display_handler\";N;s:7:\"display\";a:3:{s:7:\"default\";O:13:\"views_display\":8:{s:7:\"handler\";O:28:\"views_plugin_display_default\":9:{s:4:\"view\";r:1;s:8:\"handlers\";a:0:{}s:8:\"extender\";a:0:{}s:7:\"display\";R:36;s:11:\"plugin_type\";s:7:\"display\";s:11:\"plugin_name\";s:7:\"default\";s:7:\"options\";a:38:{s:5:\"title\";s:0:\"\";s:7:\"enabled\";b:1;s:15:\"display_comment\";s:0:\"\";s:9:\"css_class\";s:0:\"\";s:19:\"display_description\";s:0:\"\";s:8:\"use_ajax\";b:0;s:23:\"hide_attachment_summary\";b:0;s:16:\"hide_admin_links\";b:0;s:14:\"items_per_page\";i:10;s:6:\"offset\";i:0;s:9:\"use_pager\";b:0;s:8:\"use_more\";b:0;s:15:\"use_more_always\";b:0;s:13:\"use_more_text\";s:4:\"more\";s:12:\"link_display\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:0;s:14:\"field_language\";s:22:\"***CURRENT_LANGUAGE***\";s:27:\"field_language_add_to_query\";i:1;s:6:\"access\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"cache\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:12:\"exposed_form\";a:2:{s:4:\"type\";s:5:\"basic\";s:7:\"options\";a:0:{}}s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"full\";s:7:\"options\";a:0:{}}s:12:\"style_plugin\";s:7:\"default\";s:13:\"style_options\";a:0:{}s:10:\"row_plugin\";s:6:\"fields\";s:11:\"row_options\";a:0:{}s:13:\"exposed_block\";b:0;s:6:\"header\";a:0:{}s:6:\"footer\";a:0:{}s:5:\"empty\";a:0:{}s:13:\"relationships\";a:0:{}s:6:\"fields\";a:0:{}s:5:\"sorts\";a:0:{}s:9:\"arguments\";a:0:{}s:13:\"filter_groups\";a:2:{s:8:\"operator\";s:3:\"AND\";s:6:\"groups\";a:1:{i:1;s:3:\"AND\";}}s:7:\"filters\";a:0:{}}s:10:\"definition\";a:20:{s:5:\"title\";s:6:\"Master\";s:4:\"help\";s:31:\"Default settings for this view.\";s:7:\"handler\";s:28:\"views_plugin_display_default\";s:5:\"theme\";s:10:\"views_view\";s:5:\"no ui\";b:1;s:9:\"no remove\";b:1;s:2:\"js\";a:6:{i:0;s:12:\"misc/form.js\";i:1;s:16:\"misc/collapse.js\";i:2;s:16:\"misc/textarea.js\";i:3;s:17:\"misc/tabledrag.js\";i:4;s:20:\"misc/autocomplete.js\";i:5;s:40:\"sites/all/modules/ctools/js/dependent.js\";}s:8:\"use ajax\";b:1;s:9:\"use pager\";b:1;s:8:\"use more\";b:1;s:18:\"accept attachments\";b:1;s:10:\"help topic\";s:15:\"display-default\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:32:\"views_plugin_display_default.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:7:\"default\";s:16:\"contextual links\";a:1:{s:8:\"views_ui\";a:2:{s:11:\"parent path\";s:26:\"admin/structure/views/view\";s:19:\"argument properties\";a:1:{i:0;s:4:\"name\";}}}}s:9:\"is_plugin\";b:1;}s:15:\"display_options\";a:13:{s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:1:{s:13:\"query_comment\";b:0;}}s:5:\"title\";s:15:\"Recent comments\";s:8:\"use_more\";b:1;s:6:\"access\";a:2:{s:4:\"type\";s:4:\"perm\";s:4:\"perm\";s:15:\"access comments\";}s:5:\"cache\";a:1:{s:4:\"type\";s:4:\"none\";}s:12:\"exposed_form\";a:1:{s:4:\"type\";s:5:\"basic\";}s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"some\";s:7:\"options\";a:1:{s:14:\"items_per_page\";i:5;}}s:12:\"style_plugin\";s:4:\"list\";s:10:\"row_plugin\";s:6:\"fields\";s:13:\"relationships\";a:1:{s:3:\"nid\";a:3:{s:2:\"id\";s:3:\"nid\";s:5:\"table\";s:7:\"comment\";s:5:\"field\";s:3:\"nid\";}}s:6:\"fields\";a:2:{s:7:\"subject\";a:5:{s:2:\"id\";s:7:\"subject\";s:5:\"table\";s:7:\"comment\";s:5:\"field\";s:7:\"subject\";s:5:\"label\";s:0:\"\";s:15:\"link_to_comment\";i:1;}s:9:\"timestamp\";a:5:{s:2:\"id\";s:9:\"timestamp\";s:5:\"table\";s:7:\"comment\";s:5:\"field\";s:7:\"changed\";s:5:\"label\";s:0:\"\";s:11:\"date_format\";s:8:\"time ago\";}}s:5:\"sorts\";a:1:{s:9:\"timestamp\";a:4:{s:2:\"id\";s:9:\"timestamp\";s:5:\"table\";s:7:\"comment\";s:5:\"field\";s:7:\"changed\";s:5:\"order\";s:4:\"DESC\";}}s:7:\"filters\";a:1:{s:12:\"status_extra\";a:5:{s:2:\"id\";s:12:\"status_extra\";s:5:\"table\";s:4:\"node\";s:5:\"field\";s:12:\"status_extra\";s:12:\"relationship\";s:3:\"nid\";s:5:\"group\";i:0;}}}s:8:\"db_table\";s:13:\"views_display\";s:3:\"vid\";i:0;s:2:\"id\";s:7:\"default\";s:13:\"display_title\";s:6:\"Master\";s:14:\"display_plugin\";s:7:\"default\";s:8:\"position\";i:0;}s:4:\"page\";O:13:\"views_display\":8:{s:7:\"handler\";O:25:\"views_plugin_display_page\":10:{s:4:\"view\";r:1;s:8:\"handlers\";a:0:{}s:8:\"extender\";a:0:{}s:7:\"display\";R:182;s:11:\"plugin_type\";s:7:\"display\";s:11:\"plugin_name\";s:4:\"page\";s:7:\"options\";a:42:{s:8:\"defaults\";a:33:{s:6:\"access\";b:1;s:5:\"cache\";b:1;s:5:\"query\";b:1;s:5:\"title\";b:1;s:9:\"css_class\";b:1;s:19:\"display_description\";b:0;s:8:\"use_ajax\";b:1;s:23:\"hide_attachment_summary\";b:1;s:16:\"hide_admin_links\";b:1;s:5:\"pager\";b:1;s:13:\"pager_options\";b:1;s:8:\"use_more\";b:1;s:15:\"use_more_always\";b:1;s:15:\"open_new_window\";b:0;s:13:\"use_more_text\";b:1;s:12:\"exposed_form\";b:1;s:20:\"exposed_form_options\";b:1;s:12:\"link_display\";b:1;s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:1;s:12:\"style_plugin\";b:1;s:13:\"style_options\";b:1;s:10:\"row_plugin\";b:1;s:11:\"row_options\";b:1;s:6:\"header\";b:1;s:6:\"footer\";b:1;s:5:\"empty\";b:1;s:13:\"relationships\";b:1;s:6:\"fields\";b:1;s:5:\"sorts\";b:1;s:9:\"arguments\";b:1;s:7:\"filters\";b:1;s:13:\"filter_groups\";b:1;}s:5:\"title\";s:0:\"\";s:7:\"enabled\";b:1;s:15:\"display_comment\";s:0:\"\";s:9:\"css_class\";s:0:\"\";s:19:\"display_description\";s:0:\"\";s:8:\"use_ajax\";b:0;s:23:\"hide_attachment_summary\";b:0;s:16:\"hide_admin_links\";b:0;s:14:\"items_per_page\";i:10;s:6:\"offset\";i:0;s:9:\"use_pager\";b:0;s:8:\"use_more\";b:0;s:15:\"use_more_always\";b:0;s:13:\"use_more_text\";s:4:\"more\";s:12:\"link_display\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:0;s:14:\"field_language\";s:22:\"***CURRENT_LANGUAGE***\";s:27:\"field_language_add_to_query\";i:1;s:6:\"access\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"cache\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:12:\"exposed_form\";a:2:{s:4:\"type\";s:5:\"basic\";s:7:\"options\";a:0:{}}s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"full\";s:7:\"options\";a:0:{}}s:12:\"style_plugin\";s:7:\"default\";s:13:\"style_options\";a:0:{}s:10:\"row_plugin\";s:6:\"fields\";s:11:\"row_options\";a:0:{}s:13:\"exposed_block\";b:0;s:6:\"header\";a:0:{}s:6:\"footer\";a:0:{}s:5:\"empty\";a:0:{}s:13:\"relationships\";a:0:{}s:6:\"fields\";a:0:{}s:5:\"sorts\";a:0:{}s:9:\"arguments\";a:0:{}s:13:\"filter_groups\";a:2:{s:8:\"operator\";s:3:\"AND\";s:6:\"groups\";a:1:{i:1;s:3:\"AND\";}}s:7:\"filters\";a:0:{}s:4:\"path\";s:0:\"\";s:4:\"menu\";a:7:{s:4:\"type\";s:4:\"none\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:6:\"weight\";i:0;s:4:\"name\";s:10:\"navigation\";s:7:\"context\";s:0:\"\";s:19:\"context_only_inline\";b:0;}s:11:\"tab_options\";a:5:{s:4:\"type\";s:4:\"none\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:6:\"weight\";i:0;s:4:\"name\";s:10:\"navigation\";}}s:10:\"definition\";a:20:{s:5:\"title\";s:4:\"Page\";s:4:\"help\";s:54:\"Display the view as a page, with a URL and menu links.\";s:7:\"handler\";s:25:\"views_plugin_display_page\";s:5:\"theme\";s:10:\"views_view\";s:14:\"uses hook menu\";b:1;s:26:\"contextual links locations\";a:1:{i:0;s:4:\"page\";}s:8:\"use ajax\";b:1;s:9:\"use pager\";b:1;s:8:\"use more\";b:1;s:18:\"accept attachments\";b:1;s:5:\"admin\";s:4:\"Page\";s:10:\"help topic\";s:12:\"display-page\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:29:\"views_plugin_display_page.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"page\";s:16:\"contextual links\";a:1:{s:8:\"views_ui\";a:2:{s:11:\"parent path\";s:26:\"admin/structure/views/view\";s:19:\"argument properties\";a:1:{i:0;s:4:\"name\";}}}}s:9:\"is_plugin\";b:1;s:15:\"default_display\";R:37;}s:15:\"display_options\";a:7:{s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:8:\"defaults\";a:5:{s:12:\"style_plugin\";b:0;s:13:\"style_options\";b:0;s:10:\"row_plugin\";b:0;s:11:\"row_options\";b:0;s:6:\"fields\";b:0;}s:12:\"style_plugin\";s:4:\"list\";s:10:\"row_plugin\";s:6:\"fields\";s:11:\"row_options\";a:2:{s:6:\"inline\";a:2:{s:5:\"title\";s:5:\"title\";s:9:\"timestamp\";s:9:\"timestamp\";}s:9:\"separator\";s:6:\"&nbsp;\";}s:6:\"fields\";a:4:{s:5:\"title\";a:6:{s:2:\"id\";s:5:\"title\";s:5:\"table\";s:4:\"node\";s:5:\"field\";s:5:\"title\";s:12:\"relationship\";s:3:\"nid\";s:5:\"label\";s:8:\"Reply to\";s:12:\"link_to_node\";i:1;}s:9:\"timestamp\";a:5:{s:2:\"id\";s:9:\"timestamp\";s:5:\"table\";s:7:\"comment\";s:5:\"field\";s:7:\"changed\";s:5:\"label\";s:0:\"\";s:11:\"date_format\";s:8:\"time ago\";}s:7:\"subject\";a:5:{s:2:\"id\";s:7:\"subject\";s:5:\"table\";s:7:\"comment\";s:5:\"field\";s:7:\"subject\";s:5:\"label\";s:0:\"\";s:15:\"link_to_comment\";i:1;}s:7:\"comment\";a:4:{s:2:\"id\";s:7:\"comment\";s:5:\"table\";s:23:\"field_data_comment_body\";s:5:\"field\";s:12:\"comment_body\";s:5:\"label\";s:0:\"\";}}s:4:\"path\";s:15:\"comments/recent\";}s:8:\"db_table\";s:13:\"views_display\";s:3:\"vid\";i:0;s:2:\"id\";s:4:\"page\";s:13:\"display_title\";s:4:\"Page\";s:14:\"display_plugin\";s:4:\"page\";s:8:\"position\";i:0;}s:5:\"block\";O:13:\"views_display\":8:{s:7:\"handler\";O:26:\"views_plugin_display_block\":10:{s:4:\"view\";r:1;s:8:\"handlers\";a:0:{}s:8:\"extender\";a:0:{}s:7:\"display\";R:364;s:11:\"plugin_type\";s:7:\"display\";s:11:\"plugin_name\";s:5:\"block\";s:7:\"options\";a:41:{s:8:\"defaults\";a:33:{s:6:\"access\";b:1;s:5:\"cache\";b:1;s:5:\"query\";b:1;s:5:\"title\";b:1;s:9:\"css_class\";b:1;s:19:\"display_description\";b:0;s:8:\"use_ajax\";b:1;s:23:\"hide_attachment_summary\";b:1;s:16:\"hide_admin_links\";b:1;s:5:\"pager\";b:1;s:13:\"pager_options\";b:1;s:8:\"use_more\";b:1;s:15:\"use_more_always\";b:1;s:15:\"open_new_window\";b:0;s:13:\"use_more_text\";b:1;s:12:\"exposed_form\";b:1;s:20:\"exposed_form_options\";b:1;s:12:\"link_display\";b:1;s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:1;s:12:\"style_plugin\";b:1;s:13:\"style_options\";b:1;s:10:\"row_plugin\";b:1;s:11:\"row_options\";b:1;s:6:\"header\";b:1;s:6:\"footer\";b:1;s:5:\"empty\";b:1;s:13:\"relationships\";b:1;s:6:\"fields\";b:1;s:5:\"sorts\";b:1;s:9:\"arguments\";b:1;s:7:\"filters\";b:1;s:13:\"filter_groups\";b:1;}s:5:\"title\";s:0:\"\";s:7:\"enabled\";b:1;s:15:\"display_comment\";s:0:\"\";s:9:\"css_class\";s:0:\"\";s:19:\"display_description\";s:0:\"\";s:8:\"use_ajax\";b:0;s:23:\"hide_attachment_summary\";b:0;s:16:\"hide_admin_links\";b:0;s:14:\"items_per_page\";i:10;s:6:\"offset\";i:0;s:9:\"use_pager\";b:0;s:8:\"use_more\";b:0;s:15:\"use_more_always\";b:0;s:13:\"use_more_text\";s:4:\"more\";s:12:\"link_display\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:0;s:14:\"field_language\";s:22:\"***CURRENT_LANGUAGE***\";s:27:\"field_language_add_to_query\";i:1;s:6:\"access\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"cache\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:12:\"exposed_form\";a:2:{s:4:\"type\";s:5:\"basic\";s:7:\"options\";a:0:{}}s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"full\";s:7:\"options\";a:0:{}}s:12:\"style_plugin\";s:7:\"default\";s:13:\"style_options\";a:0:{}s:10:\"row_plugin\";s:6:\"fields\";s:11:\"row_options\";a:0:{}s:13:\"exposed_block\";b:0;s:6:\"header\";a:0:{}s:6:\"footer\";a:0:{}s:5:\"empty\";a:0:{}s:13:\"relationships\";a:0:{}s:6:\"fields\";a:0:{}s:5:\"sorts\";a:0:{}s:9:\"arguments\";a:0:{}s:13:\"filter_groups\";a:2:{s:8:\"operator\";s:3:\"AND\";s:6:\"groups\";a:1:{i:1;s:3:\"AND\";}}s:7:\"filters\";a:0:{}s:17:\"block_description\";s:0:\"\";s:13:\"block_caching\";i:-1;}s:10:\"definition\";a:20:{s:5:\"title\";s:5:\"Block\";s:4:\"help\";s:28:\"Display the view as a block.\";s:7:\"handler\";s:26:\"views_plugin_display_block\";s:5:\"theme\";s:10:\"views_view\";s:15:\"uses hook block\";b:1;s:26:\"contextual links locations\";a:1:{i:0;s:5:\"block\";}s:8:\"use ajax\";b:1;s:9:\"use pager\";b:1;s:8:\"use more\";b:1;s:18:\"accept attachments\";b:1;s:5:\"admin\";s:5:\"Block\";s:10:\"help topic\";s:13:\"display-block\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:30:\"views_plugin_display_block.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:5:\"block\";s:16:\"contextual links\";a:1:{s:8:\"views_ui\";a:2:{s:11:\"parent path\";s:26:\"admin/structure/views/view\";s:19:\"argument properties\";a:1:{i:0;s:4:\"name\";}}}}s:9:\"is_plugin\";b:1;s:15:\"default_display\";R:37;}s:15:\"display_options\";a:1:{s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}}s:8:\"db_table\";s:13:\"views_display\";s:3:\"vid\";i:0;s:2:\"id\";s:5:\"block\";s:13:\"display_title\";s:5:\"Block\";s:14:\"display_plugin\";s:5:\"block\";s:8:\"position\";i:0;}}s:12:\"style_plugin\";N;s:13:\"style_options\";N;s:9:\"row_index\";N;s:12:\"override_url\";N;s:13:\"override_path\";N;s:13:\"base_database\";N;s:5:\"field\";N;s:8:\"argument\";N;s:4:\"sort\";N;s:6:\"filter\";N;s:12:\"relationship\";N;s:6:\"header\";N;s:6:\"footer\";N;s:5:\"empty\";N;s:19:\"localization_plugin\";O:30:\"views_plugin_localization_core\":9:{s:14:\"export_strings\";a:0:{}s:9:\"translate\";b:1;s:4:\"view\";r:1;s:7:\"display\";N;s:11:\"plugin_type\";s:12:\"localization\";s:11:\"plugin_name\";s:4:\"core\";s:7:\"options\";a:0:{}s:10:\"definition\";a:11:{s:5:\"title\";s:4:\"Core\";s:4:\"help\";s:283:\"Use Drupal core t() function. Not recommended, as it doesn\'t support updates to existing strings. If you need to translate Views labels into other languages, consider installing the <a href=\"http://drupal.org/project/i18n\">Internationalization</a> package\'s Views translation module.\";s:7:\"handler\";s:30:\"views_plugin_localization_core\";s:10:\"help topic\";s:17:\"localization-core\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:34:\"views_plugin_localization_core.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"core\";}s:9:\"is_plugin\";b:1;}s:13:\"export_module\";s:7:\"comment\";}',0,1538750977,1),('ctools_export:views_view:frontpage','O:4:\"view\":50:{s:8:\"db_table\";s:10:\"views_view\";s:10:\"base_table\";s:4:\"node\";s:10:\"base_field\";s:3:\"nid\";s:4:\"name\";s:9:\"frontpage\";s:3:\"vid\";s:0:\"\";s:11:\"description\";s:119:\"Emulates the default Drupal front page; you may set the default home page path to this view to make it your front page.\";s:3:\"tag\";s:7:\"default\";s:10:\"human_name\";s:10:\"Front page\";s:4:\"core\";i:0;s:11:\"api_version\";s:3:\"3.0\";s:8:\"disabled\";b:1;s:5:\"built\";b:0;s:8:\"executed\";b:0;s:7:\"editing\";b:0;s:4:\"args\";a:0:{}s:10:\"build_info\";a:0:{}s:8:\"use_ajax\";b:0;s:6:\"result\";a:0:{}s:12:\"current_page\";N;s:14:\"items_per_page\";N;s:6:\"offset\";N;s:10:\"total_rows\";N;s:17:\"attachment_before\";s:0:\"\";s:16:\"attachment_after\";s:0:\"\";s:12:\"exposed_data\";a:0:{}s:13:\"exposed_input\";a:0:{}s:17:\"exposed_raw_input\";a:0:{}s:8:\"old_view\";a:0:{}s:12:\"parent_views\";a:0:{}s:13:\"is_attachment\";N;s:15:\"current_display\";N;s:5:\"query\";N;s:15:\"display_handler\";N;s:7:\"display\";a:3:{s:7:\"default\";O:13:\"views_display\":8:{s:7:\"handler\";O:28:\"views_plugin_display_default\":9:{s:4:\"view\";r:1;s:8:\"handlers\";a:0:{}s:8:\"extender\";a:0:{}s:7:\"display\";R:36;s:11:\"plugin_type\";s:7:\"display\";s:11:\"plugin_name\";s:7:\"default\";s:7:\"options\";a:38:{s:5:\"title\";s:0:\"\";s:7:\"enabled\";b:1;s:15:\"display_comment\";s:0:\"\";s:9:\"css_class\";s:0:\"\";s:19:\"display_description\";s:0:\"\";s:8:\"use_ajax\";b:0;s:23:\"hide_attachment_summary\";b:0;s:16:\"hide_admin_links\";b:0;s:14:\"items_per_page\";i:10;s:6:\"offset\";i:0;s:9:\"use_pager\";b:0;s:8:\"use_more\";b:0;s:15:\"use_more_always\";b:0;s:13:\"use_more_text\";s:4:\"more\";s:12:\"link_display\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:0;s:14:\"field_language\";s:22:\"***CURRENT_LANGUAGE***\";s:27:\"field_language_add_to_query\";i:1;s:6:\"access\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"cache\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:12:\"exposed_form\";a:2:{s:4:\"type\";s:5:\"basic\";s:7:\"options\";a:0:{}}s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"full\";s:7:\"options\";a:0:{}}s:12:\"style_plugin\";s:7:\"default\";s:13:\"style_options\";a:0:{}s:10:\"row_plugin\";s:6:\"fields\";s:11:\"row_options\";a:0:{}s:13:\"exposed_block\";b:0;s:6:\"header\";a:0:{}s:6:\"footer\";a:0:{}s:5:\"empty\";a:0:{}s:13:\"relationships\";a:0:{}s:6:\"fields\";a:0:{}s:5:\"sorts\";a:0:{}s:9:\"arguments\";a:0:{}s:13:\"filter_groups\";a:2:{s:8:\"operator\";s:3:\"AND\";s:6:\"groups\";a:1:{i:1;s:3:\"AND\";}}s:7:\"filters\";a:0:{}}s:10:\"definition\";a:20:{s:5:\"title\";s:6:\"Master\";s:4:\"help\";s:31:\"Default settings for this view.\";s:7:\"handler\";s:28:\"views_plugin_display_default\";s:5:\"theme\";s:10:\"views_view\";s:5:\"no ui\";b:1;s:9:\"no remove\";b:1;s:2:\"js\";a:6:{i:0;s:12:\"misc/form.js\";i:1;s:16:\"misc/collapse.js\";i:2;s:16:\"misc/textarea.js\";i:3;s:17:\"misc/tabledrag.js\";i:4;s:20:\"misc/autocomplete.js\";i:5;s:40:\"sites/all/modules/ctools/js/dependent.js\";}s:8:\"use ajax\";b:1;s:9:\"use pager\";b:1;s:8:\"use more\";b:1;s:18:\"accept attachments\";b:1;s:10:\"help topic\";s:15:\"display-default\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:32:\"views_plugin_display_default.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:7:\"default\";s:16:\"contextual links\";a:1:{s:8:\"views_ui\";a:2:{s:11:\"parent path\";s:26:\"admin/structure/views/view\";s:19:\"argument properties\";a:1:{i:0;s:4:\"name\";}}}}s:9:\"is_plugin\";b:1;}s:15:\"display_options\";a:10:{s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:1:{s:13:\"query_comment\";b:0;}}s:6:\"access\";a:2:{s:4:\"type\";s:4:\"perm\";s:4:\"perm\";s:14:\"access content\";}s:5:\"cache\";a:1:{s:4:\"type\";s:4:\"none\";}s:12:\"exposed_form\";a:1:{s:4:\"type\";s:5:\"basic\";}s:5:\"pager\";a:1:{s:4:\"type\";s:4:\"full\";}s:12:\"style_plugin\";s:7:\"default\";s:10:\"row_plugin\";s:4:\"node\";s:11:\"row_options\";a:1:{s:5:\"links\";i:1;}s:5:\"sorts\";a:2:{s:6:\"sticky\";a:4:{s:2:\"id\";s:6:\"sticky\";s:5:\"table\";s:4:\"node\";s:5:\"field\";s:6:\"sticky\";s:5:\"order\";s:4:\"DESC\";}s:7:\"created\";a:4:{s:2:\"id\";s:7:\"created\";s:5:\"table\";s:4:\"node\";s:5:\"field\";s:7:\"created\";s:5:\"order\";s:4:\"DESC\";}}s:7:\"filters\";a:2:{s:7:\"promote\";a:6:{s:2:\"id\";s:7:\"promote\";s:5:\"table\";s:4:\"node\";s:5:\"field\";s:7:\"promote\";s:5:\"value\";s:1:\"1\";s:5:\"group\";i:0;s:6:\"expose\";a:1:{s:8:\"operator\";b:0;}}s:6:\"status\";a:6:{s:2:\"id\";s:6:\"status\";s:5:\"table\";s:4:\"node\";s:5:\"field\";s:6:\"status\";s:5:\"value\";s:1:\"1\";s:5:\"group\";i:0;s:6:\"expose\";a:1:{s:8:\"operator\";b:0;}}}}s:8:\"db_table\";s:13:\"views_display\";s:3:\"vid\";i:0;s:2:\"id\";s:7:\"default\";s:13:\"display_title\";s:6:\"Master\";s:14:\"display_plugin\";s:7:\"default\";s:8:\"position\";i:0;}s:4:\"page\";O:13:\"views_display\":8:{s:7:\"handler\";O:25:\"views_plugin_display_page\":10:{s:4:\"view\";r:1;s:8:\"handlers\";a:0:{}s:8:\"extender\";a:0:{}s:7:\"display\";R:177;s:11:\"plugin_type\";s:7:\"display\";s:11:\"plugin_name\";s:4:\"page\";s:7:\"options\";a:42:{s:8:\"defaults\";a:33:{s:6:\"access\";b:1;s:5:\"cache\";b:1;s:5:\"query\";b:1;s:5:\"title\";b:1;s:9:\"css_class\";b:1;s:19:\"display_description\";b:0;s:8:\"use_ajax\";b:1;s:23:\"hide_attachment_summary\";b:1;s:16:\"hide_admin_links\";b:1;s:5:\"pager\";b:1;s:13:\"pager_options\";b:1;s:8:\"use_more\";b:1;s:15:\"use_more_always\";b:1;s:15:\"open_new_window\";b:0;s:13:\"use_more_text\";b:1;s:12:\"exposed_form\";b:1;s:20:\"exposed_form_options\";b:1;s:12:\"link_display\";b:1;s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:1;s:12:\"style_plugin\";b:1;s:13:\"style_options\";b:1;s:10:\"row_plugin\";b:1;s:11:\"row_options\";b:1;s:6:\"header\";b:1;s:6:\"footer\";b:1;s:5:\"empty\";b:1;s:13:\"relationships\";b:1;s:6:\"fields\";b:1;s:5:\"sorts\";b:1;s:9:\"arguments\";b:1;s:7:\"filters\";b:1;s:13:\"filter_groups\";b:1;}s:5:\"title\";s:0:\"\";s:7:\"enabled\";b:1;s:15:\"display_comment\";s:0:\"\";s:9:\"css_class\";s:0:\"\";s:19:\"display_description\";s:0:\"\";s:8:\"use_ajax\";b:0;s:23:\"hide_attachment_summary\";b:0;s:16:\"hide_admin_links\";b:0;s:14:\"items_per_page\";i:10;s:6:\"offset\";i:0;s:9:\"use_pager\";b:0;s:8:\"use_more\";b:0;s:15:\"use_more_always\";b:0;s:13:\"use_more_text\";s:4:\"more\";s:12:\"link_display\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:0;s:14:\"field_language\";s:22:\"***CURRENT_LANGUAGE***\";s:27:\"field_language_add_to_query\";i:1;s:6:\"access\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"cache\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:12:\"exposed_form\";a:2:{s:4:\"type\";s:5:\"basic\";s:7:\"options\";a:0:{}}s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"full\";s:7:\"options\";a:0:{}}s:12:\"style_plugin\";s:7:\"default\";s:13:\"style_options\";a:0:{}s:10:\"row_plugin\";s:6:\"fields\";s:11:\"row_options\";a:0:{}s:13:\"exposed_block\";b:0;s:6:\"header\";a:0:{}s:6:\"footer\";a:0:{}s:5:\"empty\";a:0:{}s:13:\"relationships\";a:0:{}s:6:\"fields\";a:0:{}s:5:\"sorts\";a:0:{}s:9:\"arguments\";a:0:{}s:13:\"filter_groups\";a:2:{s:8:\"operator\";s:3:\"AND\";s:6:\"groups\";a:1:{i:1;s:3:\"AND\";}}s:7:\"filters\";a:0:{}s:4:\"path\";s:0:\"\";s:4:\"menu\";a:7:{s:4:\"type\";s:4:\"none\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:6:\"weight\";i:0;s:4:\"name\";s:10:\"navigation\";s:7:\"context\";s:0:\"\";s:19:\"context_only_inline\";b:0;}s:11:\"tab_options\";a:5:{s:4:\"type\";s:4:\"none\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:6:\"weight\";i:0;s:4:\"name\";s:10:\"navigation\";}}s:10:\"definition\";a:20:{s:5:\"title\";s:4:\"Page\";s:4:\"help\";s:54:\"Display the view as a page, with a URL and menu links.\";s:7:\"handler\";s:25:\"views_plugin_display_page\";s:5:\"theme\";s:10:\"views_view\";s:14:\"uses hook menu\";b:1;s:26:\"contextual links locations\";a:1:{i:0;s:4:\"page\";}s:8:\"use ajax\";b:1;s:9:\"use pager\";b:1;s:8:\"use more\";b:1;s:18:\"accept attachments\";b:1;s:5:\"admin\";s:4:\"Page\";s:10:\"help topic\";s:12:\"display-page\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:29:\"views_plugin_display_page.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"page\";s:16:\"contextual links\";a:1:{s:8:\"views_ui\";a:2:{s:11:\"parent path\";s:26:\"admin/structure/views/view\";s:19:\"argument properties\";a:1:{i:0;s:4:\"name\";}}}}s:9:\"is_plugin\";b:1;s:15:\"default_display\";R:37;}s:15:\"display_options\";a:2:{s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:4:\"path\";s:9:\"frontpage\";}s:8:\"db_table\";s:13:\"views_display\";s:3:\"vid\";i:0;s:2:\"id\";s:4:\"page\";s:13:\"display_title\";s:4:\"Page\";s:14:\"display_plugin\";s:4:\"page\";s:8:\"position\";i:0;}s:4:\"feed\";O:13:\"views_display\":8:{s:7:\"handler\";O:25:\"views_plugin_display_feed\":10:{s:4:\"view\";r:1;s:8:\"handlers\";a:0:{}s:8:\"extender\";a:0:{}s:7:\"display\";R:321;s:11:\"plugin_type\";s:7:\"display\";s:11:\"plugin_name\";s:4:\"feed\";s:7:\"options\";a:44:{s:8:\"defaults\";a:36:{s:6:\"access\";b:1;s:5:\"cache\";b:1;s:5:\"query\";b:1;s:5:\"title\";b:1;s:9:\"css_class\";b:1;s:19:\"display_description\";b:0;s:8:\"use_ajax\";b:1;s:23:\"hide_attachment_summary\";b:1;s:16:\"hide_admin_links\";b:1;s:5:\"pager\";b:0;s:13:\"pager_options\";b:1;s:8:\"use_more\";b:1;s:15:\"use_more_always\";b:1;s:15:\"open_new_window\";b:0;s:13:\"use_more_text\";b:1;s:12:\"exposed_form\";b:1;s:20:\"exposed_form_options\";b:1;s:12:\"link_display\";b:1;s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:1;s:12:\"style_plugin\";b:0;s:13:\"style_options\";b:0;s:10:\"row_plugin\";b:0;s:11:\"row_options\";b:0;s:6:\"header\";b:1;s:6:\"footer\";b:1;s:5:\"empty\";b:1;s:13:\"relationships\";b:1;s:6:\"fields\";b:1;s:5:\"sorts\";b:1;s:9:\"arguments\";b:1;s:7:\"filters\";b:1;s:13:\"filter_groups\";b:1;s:9:\"use_pager\";b:0;s:14:\"items_per_page\";b:0;s:6:\"offset\";b:0;}s:5:\"title\";s:0:\"\";s:7:\"enabled\";b:1;s:15:\"display_comment\";s:0:\"\";s:9:\"css_class\";s:0:\"\";s:19:\"display_description\";s:0:\"\";s:8:\"use_ajax\";b:0;s:23:\"hide_attachment_summary\";b:0;s:16:\"hide_admin_links\";b:0;s:14:\"items_per_page\";i:10;s:6:\"offset\";i:0;s:9:\"use_pager\";b:0;s:8:\"use_more\";b:0;s:15:\"use_more_always\";b:0;s:13:\"use_more_text\";s:4:\"more\";s:12:\"link_display\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:0;s:14:\"field_language\";s:22:\"***CURRENT_LANGUAGE***\";s:27:\"field_language_add_to_query\";i:1;s:6:\"access\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"cache\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:12:\"exposed_form\";a:2:{s:4:\"type\";s:5:\"basic\";s:7:\"options\";a:0:{}}s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"some\";s:7:\"options\";a:0:{}}s:12:\"style_plugin\";s:3:\"rss\";s:13:\"style_options\";a:1:{s:11:\"description\";s:0:\"\";}s:10:\"row_plugin\";s:8:\"node_rss\";s:11:\"row_options\";a:0:{}s:13:\"exposed_block\";b:0;s:6:\"header\";a:0:{}s:6:\"footer\";a:0:{}s:5:\"empty\";a:0:{}s:13:\"relationships\";a:0:{}s:6:\"fields\";a:0:{}s:5:\"sorts\";a:0:{}s:9:\"arguments\";a:0:{}s:13:\"filter_groups\";a:2:{s:8:\"operator\";s:3:\"AND\";s:6:\"groups\";a:1:{i:1;s:3:\"AND\";}}s:7:\"filters\";a:0:{}s:4:\"path\";s:0:\"\";s:4:\"menu\";a:7:{s:4:\"type\";s:4:\"none\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:6:\"weight\";i:0;s:4:\"name\";s:10:\"navigation\";s:7:\"context\";s:0:\"\";s:19:\"context_only_inline\";b:0;}s:11:\"tab_options\";a:5:{s:4:\"type\";s:4:\"none\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:6:\"weight\";i:0;s:4:\"name\";s:10:\"navigation\";}s:8:\"displays\";a:0:{}s:14:\"sitename_title\";b:0;}s:10:\"definition\";a:17:{s:5:\"title\";s:4:\"Feed\";s:4:\"help\";s:48:\"Display the view as a feed, such as an RSS feed.\";s:7:\"handler\";s:25:\"views_plugin_display_feed\";s:14:\"uses hook menu\";b:1;s:8:\"use ajax\";b:0;s:9:\"use pager\";b:0;s:18:\"accept attachments\";b:0;s:5:\"admin\";s:4:\"Feed\";s:10:\"help topic\";s:12:\"display-feed\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:29:\"views_plugin_display_feed.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"feed\";s:16:\"contextual links\";a:1:{s:8:\"views_ui\";a:2:{s:11:\"parent path\";s:26:\"admin/structure/views/view\";s:19:\"argument properties\";a:1:{i:0;s:4:\"name\";}}}}s:9:\"is_plugin\";b:1;s:15:\"default_display\";R:37;}s:15:\"display_options\";a:9:{s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:8:\"defaults\";a:1:{s:5:\"title\";b:0;}s:5:\"title\";s:15:\"Front page feed\";s:5:\"pager\";a:1:{s:4:\"type\";s:4:\"some\";}s:12:\"style_plugin\";s:3:\"rss\";s:10:\"row_plugin\";s:8:\"node_rss\";s:4:\"path\";s:7:\"rss.xml\";s:8:\"displays\";a:2:{s:7:\"default\";s:7:\"default\";s:4:\"page\";s:4:\"page\";}s:14:\"sitename_title\";s:1:\"1\";}s:8:\"db_table\";s:13:\"views_display\";s:3:\"vid\";i:0;s:2:\"id\";s:4:\"feed\";s:13:\"display_title\";s:4:\"Feed\";s:14:\"display_plugin\";s:4:\"feed\";s:8:\"position\";i:0;}}s:12:\"style_plugin\";N;s:13:\"style_options\";N;s:9:\"row_index\";N;s:12:\"override_url\";N;s:13:\"override_path\";N;s:13:\"base_database\";N;s:5:\"field\";N;s:8:\"argument\";N;s:4:\"sort\";N;s:6:\"filter\";N;s:12:\"relationship\";N;s:6:\"header\";N;s:6:\"footer\";N;s:5:\"empty\";N;s:19:\"localization_plugin\";O:30:\"views_plugin_localization_core\":9:{s:14:\"export_strings\";a:0:{}s:9:\"translate\";b:1;s:4:\"view\";r:1;s:7:\"display\";N;s:11:\"plugin_type\";s:12:\"localization\";s:11:\"plugin_name\";s:4:\"core\";s:7:\"options\";a:0:{}s:10:\"definition\";a:11:{s:5:\"title\";s:4:\"Core\";s:4:\"help\";s:283:\"Use Drupal core t() function. Not recommended, as it doesn\'t support updates to existing strings. If you need to translate Views labels into other languages, consider installing the <a href=\"http://drupal.org/project/i18n\">Internationalization</a> package\'s Views translation module.\";s:7:\"handler\";s:30:\"views_plugin_localization_core\";s:10:\"help topic\";s:17:\"localization-core\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:34:\"views_plugin_localization_core.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"core\";}s:9:\"is_plugin\";b:1;}s:13:\"export_module\";s:4:\"node\";}',0,1538750977,1),('ctools_export:views_view:glossary','O:4:\"view\":50:{s:8:\"db_table\";s:10:\"views_view\";s:10:\"base_table\";s:4:\"node\";s:10:\"base_field\";s:3:\"nid\";s:4:\"name\";s:8:\"glossary\";s:3:\"vid\";s:0:\"\";s:11:\"description\";s:33:\"A list of all content, by letter.\";s:3:\"tag\";s:7:\"default\";s:10:\"human_name\";s:8:\"Glossary\";s:4:\"core\";i:0;s:11:\"api_version\";s:3:\"3.0\";s:8:\"disabled\";b:1;s:5:\"built\";b:0;s:8:\"executed\";b:0;s:7:\"editing\";b:0;s:4:\"args\";a:0:{}s:10:\"build_info\";a:0:{}s:8:\"use_ajax\";b:0;s:6:\"result\";a:0:{}s:12:\"current_page\";N;s:14:\"items_per_page\";N;s:6:\"offset\";N;s:10:\"total_rows\";N;s:17:\"attachment_before\";s:0:\"\";s:16:\"attachment_after\";s:0:\"\";s:12:\"exposed_data\";a:0:{}s:13:\"exposed_input\";a:0:{}s:17:\"exposed_raw_input\";a:0:{}s:8:\"old_view\";a:0:{}s:12:\"parent_views\";a:0:{}s:13:\"is_attachment\";N;s:15:\"current_display\";N;s:5:\"query\";N;s:15:\"display_handler\";N;s:7:\"display\";a:3:{s:7:\"default\";O:13:\"views_display\":8:{s:7:\"handler\";O:28:\"views_plugin_display_default\":9:{s:4:\"view\";r:1;s:8:\"handlers\";a:0:{}s:8:\"extender\";a:0:{}s:7:\"display\";R:36;s:11:\"plugin_type\";s:7:\"display\";s:11:\"plugin_name\";s:7:\"default\";s:7:\"options\";a:38:{s:5:\"title\";s:0:\"\";s:7:\"enabled\";b:1;s:15:\"display_comment\";s:0:\"\";s:9:\"css_class\";s:0:\"\";s:19:\"display_description\";s:0:\"\";s:8:\"use_ajax\";b:0;s:23:\"hide_attachment_summary\";b:0;s:16:\"hide_admin_links\";b:0;s:14:\"items_per_page\";i:10;s:6:\"offset\";i:0;s:9:\"use_pager\";b:0;s:8:\"use_more\";b:0;s:15:\"use_more_always\";b:0;s:13:\"use_more_text\";s:4:\"more\";s:12:\"link_display\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:0;s:14:\"field_language\";s:22:\"***CURRENT_LANGUAGE***\";s:27:\"field_language_add_to_query\";i:1;s:6:\"access\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"cache\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:12:\"exposed_form\";a:2:{s:4:\"type\";s:5:\"basic\";s:7:\"options\";a:0:{}}s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"full\";s:7:\"options\";a:0:{}}s:12:\"style_plugin\";s:7:\"default\";s:13:\"style_options\";a:0:{}s:10:\"row_plugin\";s:6:\"fields\";s:11:\"row_options\";a:0:{}s:13:\"exposed_block\";b:0;s:6:\"header\";a:0:{}s:6:\"footer\";a:0:{}s:5:\"empty\";a:0:{}s:13:\"relationships\";a:0:{}s:6:\"fields\";a:0:{}s:5:\"sorts\";a:0:{}s:9:\"arguments\";a:0:{}s:13:\"filter_groups\";a:2:{s:8:\"operator\";s:3:\"AND\";s:6:\"groups\";a:1:{i:1;s:3:\"AND\";}}s:7:\"filters\";a:0:{}}s:10:\"definition\";a:20:{s:5:\"title\";s:6:\"Master\";s:4:\"help\";s:31:\"Default settings for this view.\";s:7:\"handler\";s:28:\"views_plugin_display_default\";s:5:\"theme\";s:10:\"views_view\";s:5:\"no ui\";b:1;s:9:\"no remove\";b:1;s:2:\"js\";a:6:{i:0;s:12:\"misc/form.js\";i:1;s:16:\"misc/collapse.js\";i:2;s:16:\"misc/textarea.js\";i:3;s:17:\"misc/tabledrag.js\";i:4;s:20:\"misc/autocomplete.js\";i:5;s:40:\"sites/all/modules/ctools/js/dependent.js\";}s:8:\"use ajax\";b:1;s:9:\"use pager\";b:1;s:8:\"use more\";b:1;s:18:\"accept attachments\";b:1;s:10:\"help topic\";s:15:\"display-default\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:32:\"views_plugin_display_default.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:7:\"default\";s:16:\"contextual links\";a:1:{s:8:\"views_ui\";a:2:{s:11:\"parent path\";s:26:\"admin/structure/views/view\";s:19:\"argument properties\";a:1:{i:0;s:4:\"name\";}}}}s:9:\"is_plugin\";b:1;}s:15:\"display_options\";a:10:{s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:1:{s:13:\"query_comment\";b:0;}}s:8:\"use_ajax\";b:1;s:6:\"access\";a:2:{s:4:\"type\";s:4:\"perm\";s:4:\"perm\";s:14:\"access content\";}s:5:\"cache\";a:1:{s:4:\"type\";s:4:\"none\";}s:12:\"exposed_form\";a:1:{s:4:\"type\";s:5:\"basic\";}s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"full\";s:7:\"options\";a:1:{s:14:\"items_per_page\";i:36;}}s:12:\"style_plugin\";s:5:\"table\";s:13:\"style_options\";a:5:{s:7:\"columns\";a:3:{s:5:\"title\";s:5:\"title\";s:4:\"name\";s:4:\"name\";s:7:\"changed\";s:7:\"changed\";}s:7:\"default\";s:5:\"title\";s:4:\"info\";a:3:{s:5:\"title\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}s:4:\"name\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}s:7:\"changed\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}}s:8:\"override\";i:1;s:6:\"sticky\";i:0;}s:6:\"fields\";a:3:{s:5:\"title\";a:4:{s:2:\"id\";s:5:\"title\";s:5:\"table\";s:4:\"node\";s:5:\"field\";s:5:\"title\";s:12:\"link_to_node\";i:1;}s:4:\"name\";a:5:{s:2:\"id\";s:4:\"name\";s:5:\"table\";s:5:\"users\";s:5:\"field\";s:4:\"name\";s:5:\"label\";s:6:\"Author\";s:12:\"link_to_user\";i:1;}s:7:\"changed\";a:5:{s:2:\"id\";s:7:\"changed\";s:5:\"table\";s:4:\"node\";s:5:\"field\";s:7:\"changed\";s:5:\"label\";s:11:\"Last update\";s:11:\"date_format\";s:5:\"large\";}}s:9:\"arguments\";a:1:{s:5:\"title\";a:14:{s:2:\"id\";s:5:\"title\";s:5:\"table\";s:4:\"node\";s:5:\"field\";s:5:\"title\";s:14:\"default_action\";s:7:\"default\";s:9:\"exception\";a:1:{s:12:\"title_enable\";i:1;}s:21:\"default_argument_type\";s:5:\"fixed\";s:24:\"default_argument_options\";a:1:{s:8:\"argument\";s:1:\"a\";}s:7:\"summary\";a:1:{s:6:\"format\";s:15:\"default_summary\";}s:18:\"specify_validation\";i:1;s:8:\"glossary\";i:1;s:5:\"limit\";s:1:\"1\";s:4:\"case\";s:5:\"upper\";s:9:\"path_case\";s:5:\"lower\";s:14:\"transform_dash\";i:0;}}}s:8:\"db_table\";s:13:\"views_display\";s:3:\"vid\";i:0;s:2:\"id\";s:7:\"default\";s:13:\"display_title\";s:6:\"Master\";s:14:\"display_plugin\";s:7:\"default\";s:8:\"position\";i:0;}s:4:\"page\";O:13:\"views_display\":8:{s:7:\"handler\";O:25:\"views_plugin_display_page\":10:{s:4:\"view\";r:1;s:8:\"handlers\";a:0:{}s:8:\"extender\";a:0:{}s:7:\"display\";R:204;s:11:\"plugin_type\";s:7:\"display\";s:11:\"plugin_name\";s:4:\"page\";s:7:\"options\";a:42:{s:8:\"defaults\";a:33:{s:6:\"access\";b:1;s:5:\"cache\";b:1;s:5:\"query\";b:1;s:5:\"title\";b:1;s:9:\"css_class\";b:1;s:19:\"display_description\";b:0;s:8:\"use_ajax\";b:1;s:23:\"hide_attachment_summary\";b:1;s:16:\"hide_admin_links\";b:1;s:5:\"pager\";b:1;s:13:\"pager_options\";b:1;s:8:\"use_more\";b:1;s:15:\"use_more_always\";b:1;s:15:\"open_new_window\";b:0;s:13:\"use_more_text\";b:1;s:12:\"exposed_form\";b:1;s:20:\"exposed_form_options\";b:1;s:12:\"link_display\";b:1;s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:1;s:12:\"style_plugin\";b:1;s:13:\"style_options\";b:1;s:10:\"row_plugin\";b:1;s:11:\"row_options\";b:1;s:6:\"header\";b:1;s:6:\"footer\";b:1;s:5:\"empty\";b:1;s:13:\"relationships\";b:1;s:6:\"fields\";b:1;s:5:\"sorts\";b:1;s:9:\"arguments\";b:1;s:7:\"filters\";b:1;s:13:\"filter_groups\";b:1;}s:5:\"title\";s:0:\"\";s:7:\"enabled\";b:1;s:15:\"display_comment\";s:0:\"\";s:9:\"css_class\";s:0:\"\";s:19:\"display_description\";s:0:\"\";s:8:\"use_ajax\";b:0;s:23:\"hide_attachment_summary\";b:0;s:16:\"hide_admin_links\";b:0;s:14:\"items_per_page\";i:10;s:6:\"offset\";i:0;s:9:\"use_pager\";b:0;s:8:\"use_more\";b:0;s:15:\"use_more_always\";b:0;s:13:\"use_more_text\";s:4:\"more\";s:12:\"link_display\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:0;s:14:\"field_language\";s:22:\"***CURRENT_LANGUAGE***\";s:27:\"field_language_add_to_query\";i:1;s:6:\"access\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"cache\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:12:\"exposed_form\";a:2:{s:4:\"type\";s:5:\"basic\";s:7:\"options\";a:0:{}}s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"full\";s:7:\"options\";a:0:{}}s:12:\"style_plugin\";s:7:\"default\";s:13:\"style_options\";a:0:{}s:10:\"row_plugin\";s:6:\"fields\";s:11:\"row_options\";a:0:{}s:13:\"exposed_block\";b:0;s:6:\"header\";a:0:{}s:6:\"footer\";a:0:{}s:5:\"empty\";a:0:{}s:13:\"relationships\";a:0:{}s:6:\"fields\";a:0:{}s:5:\"sorts\";a:0:{}s:9:\"arguments\";a:0:{}s:13:\"filter_groups\";a:2:{s:8:\"operator\";s:3:\"AND\";s:6:\"groups\";a:1:{i:1;s:3:\"AND\";}}s:7:\"filters\";a:0:{}s:4:\"path\";s:0:\"\";s:4:\"menu\";a:7:{s:4:\"type\";s:4:\"none\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:6:\"weight\";i:0;s:4:\"name\";s:10:\"navigation\";s:7:\"context\";s:0:\"\";s:19:\"context_only_inline\";b:0;}s:11:\"tab_options\";a:5:{s:4:\"type\";s:4:\"none\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:6:\"weight\";i:0;s:4:\"name\";s:10:\"navigation\";}}s:10:\"definition\";a:20:{s:5:\"title\";s:4:\"Page\";s:4:\"help\";s:54:\"Display the view as a page, with a URL and menu links.\";s:7:\"handler\";s:25:\"views_plugin_display_page\";s:5:\"theme\";s:10:\"views_view\";s:14:\"uses hook menu\";b:1;s:26:\"contextual links locations\";a:1:{i:0;s:4:\"page\";}s:8:\"use ajax\";b:1;s:9:\"use pager\";b:1;s:8:\"use more\";b:1;s:18:\"accept attachments\";b:1;s:5:\"admin\";s:4:\"Page\";s:10:\"help topic\";s:12:\"display-page\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:29:\"views_plugin_display_page.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"page\";s:16:\"contextual links\";a:1:{s:8:\"views_ui\";a:2:{s:11:\"parent path\";s:26:\"admin/structure/views/view\";s:19:\"argument properties\";a:1:{i:0;s:4:\"name\";}}}}s:9:\"is_plugin\";b:1;s:15:\"default_display\";R:37;}s:15:\"display_options\";a:3:{s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:4:\"path\";s:8:\"glossary\";s:4:\"menu\";a:3:{s:4:\"type\";s:6:\"normal\";s:5:\"title\";s:8:\"Glossary\";s:6:\"weight\";s:1:\"0\";}}s:8:\"db_table\";s:13:\"views_display\";s:3:\"vid\";i:0;s:2:\"id\";s:4:\"page\";s:13:\"display_title\";s:4:\"Page\";s:14:\"display_plugin\";s:4:\"page\";s:8:\"position\";i:0;}s:10:\"attachment\";O:13:\"views_display\":8:{s:7:\"handler\";O:31:\"views_plugin_display_attachment\":10:{s:4:\"view\";r:1;s:8:\"handlers\";a:0:{}s:8:\"extender\";a:0:{}s:7:\"display\";R:352;s:11:\"plugin_type\";s:7:\"display\";s:11:\"plugin_name\";s:10:\"attachment\";s:7:\"options\";a:45:{s:8:\"defaults\";a:36:{s:6:\"access\";b:1;s:5:\"cache\";b:1;s:5:\"query\";b:1;s:5:\"title\";b:1;s:9:\"css_class\";b:1;s:19:\"display_description\";b:0;s:8:\"use_ajax\";b:1;s:23:\"hide_attachment_summary\";b:1;s:16:\"hide_admin_links\";b:1;s:5:\"pager\";b:0;s:13:\"pager_options\";b:1;s:8:\"use_more\";b:1;s:15:\"use_more_always\";b:1;s:15:\"open_new_window\";b:0;s:13:\"use_more_text\";b:1;s:12:\"exposed_form\";b:1;s:20:\"exposed_form_options\";b:1;s:12:\"link_display\";b:1;s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:1;s:12:\"style_plugin\";b:1;s:13:\"style_options\";b:1;s:10:\"row_plugin\";b:1;s:11:\"row_options\";b:1;s:6:\"header\";b:1;s:6:\"footer\";b:1;s:5:\"empty\";b:1;s:13:\"relationships\";b:1;s:6:\"fields\";b:1;s:5:\"sorts\";b:1;s:9:\"arguments\";b:1;s:7:\"filters\";b:1;s:13:\"filter_groups\";b:1;s:9:\"use_pager\";b:0;s:14:\"items_per_page\";b:0;s:6:\"offset\";b:0;}s:5:\"title\";s:0:\"\";s:7:\"enabled\";b:1;s:15:\"display_comment\";s:0:\"\";s:9:\"css_class\";s:0:\"\";s:19:\"display_description\";s:0:\"\";s:8:\"use_ajax\";b:0;s:23:\"hide_attachment_summary\";b:0;s:16:\"hide_admin_links\";b:0;s:14:\"items_per_page\";i:10;s:6:\"offset\";i:0;s:9:\"use_pager\";b:0;s:8:\"use_more\";b:0;s:15:\"use_more_always\";b:0;s:13:\"use_more_text\";s:4:\"more\";s:12:\"link_display\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:0;s:14:\"field_language\";s:22:\"***CURRENT_LANGUAGE***\";s:27:\"field_language_add_to_query\";i:1;s:6:\"access\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"cache\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:12:\"exposed_form\";a:2:{s:4:\"type\";s:5:\"basic\";s:7:\"options\";a:0:{}}s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"some\";s:7:\"options\";a:0:{}}s:12:\"style_plugin\";s:7:\"default\";s:13:\"style_options\";a:0:{}s:10:\"row_plugin\";s:6:\"fields\";s:11:\"row_options\";a:0:{}s:13:\"exposed_block\";b:0;s:6:\"header\";a:0:{}s:6:\"footer\";a:0:{}s:5:\"empty\";a:0:{}s:13:\"relationships\";a:0:{}s:6:\"fields\";a:0:{}s:5:\"sorts\";a:0:{}s:9:\"arguments\";a:0:{}s:13:\"filter_groups\";a:2:{s:8:\"operator\";s:3:\"AND\";s:6:\"groups\";a:1:{i:1;s:3:\"AND\";}}s:7:\"filters\";a:0:{}s:8:\"displays\";a:0:{}s:19:\"attachment_position\";s:6:\"before\";s:17:\"inherit_arguments\";b:1;s:23:\"inherit_exposed_filters\";b:0;s:13:\"inherit_pager\";b:0;s:12:\"render_pager\";b:0;}s:10:\"definition\";a:18:{s:5:\"title\";s:10:\"Attachment\";s:4:\"help\";s:79:\"Attachments added to other displays to achieve multiple views in the same view.\";s:7:\"handler\";s:31:\"views_plugin_display_attachment\";s:5:\"theme\";s:10:\"views_view\";s:26:\"contextual links locations\";a:0:{}s:8:\"use ajax\";b:1;s:9:\"use pager\";b:0;s:8:\"use more\";b:1;s:18:\"accept attachments\";b:0;s:10:\"help topic\";s:18:\"display-attachment\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:35:\"views_plugin_display_attachment.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:10:\"attachment\";s:16:\"contextual links\";a:1:{s:8:\"views_ui\";a:2:{s:11:\"parent path\";s:26:\"admin/structure/views/view\";s:19:\"argument properties\";a:1:{i:0;s:4:\"name\";}}}}s:9:\"is_plugin\";b:1;s:15:\"default_display\";R:37;}s:15:\"display_options\";a:6:{s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"none\";s:7:\"options\";a:1:{s:6:\"offset\";s:1:\"0\";}}s:8:\"defaults\";a:1:{s:9:\"arguments\";b:0;}s:9:\"arguments\";a:1:{s:5:\"title\";a:15:{s:2:\"id\";s:5:\"title\";s:5:\"table\";s:4:\"node\";s:5:\"field\";s:5:\"title\";s:14:\"default_action\";s:7:\"summary\";s:9:\"exception\";a:1:{s:12:\"title_enable\";i:1;}s:21:\"default_argument_type\";s:5:\"fixed\";s:24:\"default_argument_options\";a:1:{s:8:\"argument\";s:1:\"a\";}s:7:\"summary\";a:1:{s:6:\"format\";s:19:\"unformatted_summary\";}s:15:\"summary_options\";a:3:{s:14:\"items_per_page\";s:2:\"25\";s:6:\"inline\";i:1;s:9:\"separator\";s:3:\" | \";}s:18:\"specify_validation\";i:1;s:8:\"glossary\";i:1;s:5:\"limit\";s:1:\"1\";s:4:\"case\";s:5:\"upper\";s:9:\"path_case\";s:5:\"lower\";s:14:\"transform_dash\";i:0;}}s:8:\"displays\";a:2:{s:7:\"default\";s:7:\"default\";s:4:\"page\";s:4:\"page\";}s:17:\"inherit_arguments\";i:0;}s:8:\"db_table\";s:13:\"views_display\";s:3:\"vid\";i:0;s:2:\"id\";s:10:\"attachment\";s:13:\"display_title\";s:10:\"Attachment\";s:14:\"display_plugin\";s:10:\"attachment\";s:8:\"position\";i:0;}}s:12:\"style_plugin\";N;s:13:\"style_options\";N;s:9:\"row_index\";N;s:12:\"override_url\";N;s:13:\"override_path\";N;s:13:\"base_database\";N;s:5:\"field\";N;s:8:\"argument\";N;s:4:\"sort\";N;s:6:\"filter\";N;s:12:\"relationship\";N;s:6:\"header\";N;s:6:\"footer\";N;s:5:\"empty\";N;s:19:\"localization_plugin\";O:30:\"views_plugin_localization_core\":9:{s:14:\"export_strings\";a:0:{}s:9:\"translate\";b:1;s:4:\"view\";r:1;s:7:\"display\";N;s:11:\"plugin_type\";s:12:\"localization\";s:11:\"plugin_name\";s:4:\"core\";s:7:\"options\";a:0:{}s:10:\"definition\";a:11:{s:5:\"title\";s:4:\"Core\";s:4:\"help\";s:283:\"Use Drupal core t() function. Not recommended, as it doesn\'t support updates to existing strings. If you need to translate Views labels into other languages, consider installing the <a href=\"http://drupal.org/project/i18n\">Internationalization</a> package\'s Views translation module.\";s:7:\"handler\";s:30:\"views_plugin_localization_core\";s:10:\"help topic\";s:17:\"localization-core\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:34:\"views_plugin_localization_core.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"core\";}s:9:\"is_plugin\";b:1;}s:13:\"export_module\";s:4:\"node\";}',0,1538750977,1),('ctools_export:views_view:location_directory','O:4:\"view\":52:{s:8:\"db_table\";s:10:\"views_view\";s:10:\"base_table\";s:4:\"node\";s:10:\"base_field\";s:3:\"nid\";s:4:\"name\";s:18:\"location_directory\";s:3:\"vid\";s:0:\"\";s:11:\"description\";s:52:\"Location directory filtered by arguments in the url.\";s:3:\"tag\";s:0:\"\";s:10:\"human_name\";s:0:\"\";s:4:\"core\";i:0;s:11:\"api_version\";i:2;s:8:\"disabled\";b:1;s:5:\"built\";b:0;s:8:\"executed\";b:0;s:7:\"editing\";b:0;s:4:\"args\";a:0:{}s:10:\"build_info\";a:0:{}s:8:\"use_ajax\";b:0;s:6:\"result\";a:0:{}s:12:\"current_page\";N;s:14:\"items_per_page\";N;s:6:\"offset\";N;s:10:\"total_rows\";N;s:17:\"attachment_before\";s:0:\"\";s:16:\"attachment_after\";s:0:\"\";s:12:\"exposed_data\";a:0:{}s:13:\"exposed_input\";a:0:{}s:17:\"exposed_raw_input\";a:0:{}s:8:\"old_view\";a:0:{}s:12:\"parent_views\";a:0:{}s:13:\"is_attachment\";N;s:15:\"current_display\";N;s:5:\"query\";N;s:15:\"display_handler\";N;s:7:\"display\";a:2:{s:7:\"default\";O:13:\"views_display\":8:{s:7:\"handler\";O:28:\"views_plugin_display_default\":9:{s:4:\"view\";r:1;s:8:\"handlers\";a:0:{}s:8:\"extender\";a:0:{}s:7:\"display\";R:36;s:11:\"plugin_type\";s:7:\"display\";s:11:\"plugin_name\";s:7:\"default\";s:7:\"options\";a:40:{s:5:\"title\";s:0:\"\";s:7:\"enabled\";b:1;s:15:\"display_comment\";s:0:\"\";s:9:\"css_class\";s:0:\"\";s:19:\"display_description\";s:0:\"\";s:8:\"use_ajax\";b:0;s:23:\"hide_attachment_summary\";b:0;s:16:\"hide_admin_links\";b:0;s:14:\"items_per_page\";N;s:6:\"offset\";N;s:9:\"use_pager\";N;s:8:\"use_more\";b:0;s:15:\"use_more_always\";b:0;s:13:\"use_more_text\";s:4:\"more\";s:12:\"link_display\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:0;s:14:\"field_language\";s:22:\"***CURRENT_LANGUAGE***\";s:27:\"field_language_add_to_query\";i:1;s:6:\"access\";a:2:{s:4:\"type\";s:4:\"perm\";s:4:\"perm\";s:23:\"view location directory\";}s:5:\"cache\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:12:\"exposed_form\";a:2:{s:4:\"type\";s:5:\"basic\";s:7:\"options\";a:0:{}}s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"some\";s:7:\"options\";a:2:{s:6:\"offset\";i:0;s:14:\"items_per_page\";i:10;}}s:12:\"style_plugin\";s:5:\"table\";s:13:\"style_options\";a:7:{s:8:\"grouping\";s:0:\"\";s:8:\"override\";i:1;s:6:\"sticky\";i:0;s:5:\"order\";s:3:\"asc\";s:7:\"columns\";a:6:{s:5:\"title\";s:5:\"title\";s:6:\"street\";s:6:\"street\";s:4:\"city\";s:4:\"city\";s:8:\"province\";s:8:\"province\";s:11:\"postal_code\";s:11:\"postal_code\";s:7:\"country\";s:7:\"country\";}s:4:\"info\";a:6:{s:5:\"title\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}s:6:\"street\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}s:4:\"city\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}s:8:\"province\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}s:11:\"postal_code\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}s:7:\"country\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}}s:7:\"default\";s:2:\"-1\";}s:10:\"row_plugin\";s:6:\"fields\";s:11:\"row_options\";a:0:{}s:13:\"exposed_block\";b:0;s:6:\"header\";a:0:{}s:6:\"footer\";a:0:{}s:5:\"empty\";a:0:{}s:13:\"relationships\";a:0:{}s:6:\"fields\";a:6:{s:5:\"title\";a:7:{s:5:\"label\";s:5:\"Title\";s:12:\"link_to_node\";i:1;s:7:\"exclude\";i:0;s:2:\"id\";s:5:\"title\";s:5:\"table\";s:4:\"node\";s:5:\"field\";s:5:\"title\";s:12:\"relationship\";s:4:\"none\";}s:6:\"street\";a:7:{s:5:\"label\";s:6:\"Street\";s:5:\"style\";s:4:\"both\";s:7:\"exclude\";i:0;s:2:\"id\";s:6:\"street\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:6:\"street\";s:12:\"relationship\";s:4:\"none\";}s:4:\"city\";a:6:{s:5:\"label\";s:4:\"City\";s:7:\"exclude\";i:0;s:2:\"id\";s:4:\"city\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:4:\"city\";s:12:\"relationship\";s:4:\"none\";}s:8:\"province\";a:7:{s:5:\"label\";s:8:\"Province\";s:5:\"style\";s:4:\"name\";s:7:\"exclude\";i:0;s:2:\"id\";s:8:\"province\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:8:\"province\";s:12:\"relationship\";s:4:\"none\";}s:11:\"postal_code\";a:6:{s:5:\"label\";s:11:\"Postal Code\";s:7:\"exclude\";i:0;s:2:\"id\";s:11:\"postal_code\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:11:\"postal_code\";s:12:\"relationship\";s:4:\"none\";}s:7:\"country\";a:7:{s:5:\"label\";s:7:\"Country\";s:5:\"style\";s:4:\"name\";s:7:\"exclude\";i:0;s:2:\"id\";s:7:\"country\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:7:\"country\";s:12:\"relationship\";s:4:\"none\";}}s:5:\"sorts\";a:0:{}s:9:\"arguments\";a:3:{s:7:\"country\";a:21:{s:14:\"default_action\";s:11:\"summary asc\";s:12:\"style_plugin\";s:15:\"default_summary\";s:13:\"style_options\";a:3:{s:5:\"count\";i:1;s:8:\"override\";i:0;s:14:\"items_per_page\";s:2:\"25\";}s:8:\"wildcard\";s:3:\"all\";s:21:\"wildcard_substitution\";s:3:\"All\";s:5:\"title\";s:2:\"%1\";s:21:\"default_argument_type\";s:5:\"fixed\";s:16:\"default_argument\";s:0:\"\";s:13:\"validate_type\";s:4:\"none\";s:13:\"validate_fail\";s:9:\"not found\";s:2:\"id\";s:7:\"country\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:7:\"country\";s:12:\"relationship\";s:4:\"none\";s:26:\"default_options_div_prefix\";s:0:\"\";s:22:\"default_argument_fixed\";s:0:\"\";s:20:\"default_argument_php\";s:0:\"\";s:27:\"validate_argument_node_type\";a:2:{s:4:\"page\";i:0;s:5:\"story\";i:0;}s:29:\"validate_argument_node_access\";i:0;s:26:\"validate_argument_nid_type\";s:3:\"nid\";s:21:\"validate_argument_php\";s:0:\"\";}s:8:\"province\";a:21:{s:14:\"default_action\";s:11:\"summary asc\";s:12:\"style_plugin\";s:15:\"default_summary\";s:13:\"style_options\";a:3:{s:5:\"count\";i:1;s:8:\"override\";i:0;s:14:\"items_per_page\";s:2:\"25\";}s:8:\"wildcard\";s:3:\"all\";s:21:\"wildcard_substitution\";s:3:\"All\";s:5:\"title\";s:2:\"%2\";s:21:\"default_argument_type\";s:5:\"fixed\";s:16:\"default_argument\";s:0:\"\";s:13:\"validate_type\";s:4:\"none\";s:13:\"validate_fail\";s:9:\"not found\";s:2:\"id\";s:8:\"province\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:8:\"province\";s:12:\"relationship\";s:4:\"none\";s:26:\"default_options_div_prefix\";s:0:\"\";s:22:\"default_argument_fixed\";s:0:\"\";s:20:\"default_argument_php\";s:0:\"\";s:27:\"validate_argument_node_type\";a:2:{s:4:\"page\";i:0;s:5:\"story\";i:0;}s:29:\"validate_argument_node_access\";i:0;s:26:\"validate_argument_nid_type\";s:3:\"nid\";s:21:\"validate_argument_php\";s:0:\"\";}s:4:\"city\";a:26:{s:14:\"default_action\";s:11:\"summary asc\";s:12:\"style_plugin\";s:15:\"default_summary\";s:13:\"style_options\";a:3:{s:5:\"count\";i:1;s:8:\"override\";i:0;s:14:\"items_per_page\";s:2:\"25\";}s:8:\"wildcard\";s:3:\"all\";s:21:\"wildcard_substitution\";s:3:\"All\";s:5:\"title\";s:2:\"%3\";s:21:\"default_argument_type\";s:5:\"fixed\";s:16:\"default_argument\";s:0:\"\";s:13:\"validate_type\";s:4:\"none\";s:13:\"validate_fail\";s:9:\"not found\";s:8:\"glossary\";i:1;s:5:\"limit\";s:1:\"1\";s:4:\"case\";s:4:\"none\";s:9:\"path_case\";s:4:\"none\";s:14:\"transform_dash\";i:0;s:2:\"id\";s:4:\"city\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:4:\"city\";s:12:\"relationship\";s:4:\"none\";s:26:\"default_options_div_prefix\";s:0:\"\";s:22:\"default_argument_fixed\";s:0:\"\";s:20:\"default_argument_php\";s:0:\"\";s:27:\"validate_argument_node_type\";a:2:{s:4:\"page\";i:0;s:5:\"story\";i:0;}s:29:\"validate_argument_node_access\";i:0;s:26:\"validate_argument_nid_type\";s:3:\"nid\";s:21:\"validate_argument_php\";s:0:\"\";}}s:13:\"filter_groups\";a:2:{s:8:\"operator\";s:3:\"AND\";s:6:\"groups\";a:1:{i:1;s:3:\"AND\";}}s:7:\"filters\";a:2:{s:12:\"status_extra\";a:9:{s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:0:\"\";s:5:\"group\";s:1:\"0\";s:7:\"exposed\";b:0;s:6:\"expose\";a:2:{s:8:\"operator\";b:0;s:5:\"label\";s:0:\"\";}s:2:\"id\";s:12:\"status_extra\";s:5:\"table\";s:4:\"node\";s:5:\"field\";s:12:\"status_extra\";s:12:\"relationship\";s:4:\"none\";}s:3:\"lid\";a:9:{s:8:\"operator\";s:9:\"not empty\";s:5:\"value\";a:3:{s:5:\"value\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:5:\"group\";s:1:\"0\";s:7:\"exposed\";b:0;s:6:\"expose\";a:2:{s:8:\"operator\";b:0;s:5:\"label\";s:0:\"\";}s:2:\"id\";s:3:\"lid\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:3:\"lid\";s:12:\"relationship\";s:4:\"none\";}}s:8:\"defaults\";a:10:{s:6:\"fields\";b:0;s:9:\"arguments\";b:0;s:7:\"filters\";b:0;s:13:\"filter_groups\";b:0;s:6:\"access\";b:0;s:14:\"access_options\";b:0;s:12:\"style_plugin\";b:0;s:13:\"style_options\";b:0;s:10:\"row_plugin\";b:0;s:11:\"row_options\";b:0;}s:14:\"access_options\";N;}s:10:\"definition\";a:20:{s:5:\"title\";s:6:\"Master\";s:4:\"help\";s:31:\"Default settings for this view.\";s:7:\"handler\";s:28:\"views_plugin_display_default\";s:5:\"theme\";s:10:\"views_view\";s:5:\"no ui\";b:1;s:9:\"no remove\";b:1;s:2:\"js\";a:6:{i:0;s:12:\"misc/form.js\";i:1;s:16:\"misc/collapse.js\";i:2;s:16:\"misc/textarea.js\";i:3;s:17:\"misc/tabledrag.js\";i:4;s:20:\"misc/autocomplete.js\";i:5;s:40:\"sites/all/modules/ctools/js/dependent.js\";}s:8:\"use ajax\";b:1;s:9:\"use pager\";b:1;s:8:\"use more\";b:1;s:18:\"accept attachments\";b:1;s:10:\"help topic\";s:15:\"display-default\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:32:\"views_plugin_display_default.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:7:\"default\";s:16:\"contextual links\";a:1:{s:8:\"views_ui\";a:2:{s:11:\"parent path\";s:26:\"admin/structure/views/view\";s:19:\"argument properties\";a:1:{i:0;s:4:\"name\";}}}}s:9:\"is_plugin\";b:1;}s:15:\"display_options\";a:16:{s:14:\"items_per_page\";N;s:6:\"offset\";N;s:9:\"use_pager\";N;s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"some\";s:7:\"options\";a:2:{s:6:\"offset\";i:0;s:14:\"items_per_page\";i:10;}}s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:6:\"fields\";a:6:{s:5:\"title\";a:7:{s:5:\"label\";s:5:\"Title\";s:12:\"link_to_node\";i:1;s:7:\"exclude\";i:0;s:2:\"id\";s:5:\"title\";s:5:\"table\";s:4:\"node\";s:5:\"field\";s:5:\"title\";s:12:\"relationship\";s:4:\"none\";}s:6:\"street\";a:7:{s:5:\"label\";s:6:\"Street\";s:5:\"style\";s:4:\"both\";s:7:\"exclude\";i:0;s:2:\"id\";s:6:\"street\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:6:\"street\";s:12:\"relationship\";s:4:\"none\";}s:4:\"city\";a:6:{s:5:\"label\";s:4:\"City\";s:7:\"exclude\";i:0;s:2:\"id\";s:4:\"city\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:4:\"city\";s:12:\"relationship\";s:4:\"none\";}s:8:\"province\";a:7:{s:5:\"label\";s:8:\"Province\";s:5:\"style\";s:4:\"name\";s:7:\"exclude\";i:0;s:2:\"id\";s:8:\"province\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:8:\"province\";s:12:\"relationship\";s:4:\"none\";}s:11:\"postal_code\";a:6:{s:5:\"label\";s:11:\"Postal Code\";s:7:\"exclude\";i:0;s:2:\"id\";s:11:\"postal_code\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:11:\"postal_code\";s:12:\"relationship\";s:4:\"none\";}s:7:\"country\";a:7:{s:5:\"label\";s:7:\"Country\";s:5:\"style\";s:4:\"name\";s:7:\"exclude\";i:0;s:2:\"id\";s:7:\"country\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:7:\"country\";s:12:\"relationship\";s:4:\"none\";}}s:8:\"defaults\";a:10:{s:6:\"fields\";b:0;s:9:\"arguments\";b:0;s:7:\"filters\";b:0;s:13:\"filter_groups\";b:0;s:6:\"access\";b:0;s:14:\"access_options\";b:0;s:12:\"style_plugin\";b:0;s:13:\"style_options\";b:0;s:10:\"row_plugin\";b:0;s:11:\"row_options\";b:0;}s:9:\"arguments\";a:3:{s:7:\"country\";a:21:{s:14:\"default_action\";s:11:\"summary asc\";s:12:\"style_plugin\";s:15:\"default_summary\";s:13:\"style_options\";a:3:{s:5:\"count\";i:1;s:8:\"override\";i:0;s:14:\"items_per_page\";s:2:\"25\";}s:8:\"wildcard\";s:3:\"all\";s:21:\"wildcard_substitution\";s:3:\"All\";s:5:\"title\";s:2:\"%1\";s:21:\"default_argument_type\";s:5:\"fixed\";s:16:\"default_argument\";s:0:\"\";s:13:\"validate_type\";s:4:\"none\";s:13:\"validate_fail\";s:9:\"not found\";s:2:\"id\";s:7:\"country\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:7:\"country\";s:12:\"relationship\";s:4:\"none\";s:26:\"default_options_div_prefix\";s:0:\"\";s:22:\"default_argument_fixed\";s:0:\"\";s:20:\"default_argument_php\";s:0:\"\";s:27:\"validate_argument_node_type\";a:2:{s:4:\"page\";i:0;s:5:\"story\";i:0;}s:29:\"validate_argument_node_access\";i:0;s:26:\"validate_argument_nid_type\";s:3:\"nid\";s:21:\"validate_argument_php\";s:0:\"\";}s:8:\"province\";a:21:{s:14:\"default_action\";s:11:\"summary asc\";s:12:\"style_plugin\";s:15:\"default_summary\";s:13:\"style_options\";a:3:{s:5:\"count\";i:1;s:8:\"override\";i:0;s:14:\"items_per_page\";s:2:\"25\";}s:8:\"wildcard\";s:3:\"all\";s:21:\"wildcard_substitution\";s:3:\"All\";s:5:\"title\";s:2:\"%2\";s:21:\"default_argument_type\";s:5:\"fixed\";s:16:\"default_argument\";s:0:\"\";s:13:\"validate_type\";s:4:\"none\";s:13:\"validate_fail\";s:9:\"not found\";s:2:\"id\";s:8:\"province\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:8:\"province\";s:12:\"relationship\";s:4:\"none\";s:26:\"default_options_div_prefix\";s:0:\"\";s:22:\"default_argument_fixed\";s:0:\"\";s:20:\"default_argument_php\";s:0:\"\";s:27:\"validate_argument_node_type\";a:2:{s:4:\"page\";i:0;s:5:\"story\";i:0;}s:29:\"validate_argument_node_access\";i:0;s:26:\"validate_argument_nid_type\";s:3:\"nid\";s:21:\"validate_argument_php\";s:0:\"\";}s:4:\"city\";a:26:{s:14:\"default_action\";s:11:\"summary asc\";s:12:\"style_plugin\";s:15:\"default_summary\";s:13:\"style_options\";a:3:{s:5:\"count\";i:1;s:8:\"override\";i:0;s:14:\"items_per_page\";s:2:\"25\";}s:8:\"wildcard\";s:3:\"all\";s:21:\"wildcard_substitution\";s:3:\"All\";s:5:\"title\";s:2:\"%3\";s:21:\"default_argument_type\";s:5:\"fixed\";s:16:\"default_argument\";s:0:\"\";s:13:\"validate_type\";s:4:\"none\";s:13:\"validate_fail\";s:9:\"not found\";s:8:\"glossary\";i:1;s:5:\"limit\";s:1:\"1\";s:4:\"case\";s:4:\"none\";s:9:\"path_case\";s:4:\"none\";s:14:\"transform_dash\";i:0;s:2:\"id\";s:4:\"city\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:4:\"city\";s:12:\"relationship\";s:4:\"none\";s:26:\"default_options_div_prefix\";s:0:\"\";s:22:\"default_argument_fixed\";s:0:\"\";s:20:\"default_argument_php\";s:0:\"\";s:27:\"validate_argument_node_type\";a:2:{s:4:\"page\";i:0;s:5:\"story\";i:0;}s:29:\"validate_argument_node_access\";i:0;s:26:\"validate_argument_nid_type\";s:3:\"nid\";s:21:\"validate_argument_php\";s:0:\"\";}}s:7:\"filters\";a:2:{s:12:\"status_extra\";a:9:{s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:0:\"\";s:5:\"group\";s:1:\"0\";s:7:\"exposed\";b:0;s:6:\"expose\";a:2:{s:8:\"operator\";b:0;s:5:\"label\";s:0:\"\";}s:2:\"id\";s:12:\"status_extra\";s:5:\"table\";s:4:\"node\";s:5:\"field\";s:12:\"status_extra\";s:12:\"relationship\";s:4:\"none\";}s:3:\"lid\";a:9:{s:8:\"operator\";s:9:\"not empty\";s:5:\"value\";a:3:{s:5:\"value\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:5:\"group\";s:1:\"0\";s:7:\"exposed\";b:0;s:6:\"expose\";a:2:{s:8:\"operator\";b:0;s:5:\"label\";s:0:\"\";}s:2:\"id\";s:3:\"lid\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:3:\"lid\";s:12:\"relationship\";s:4:\"none\";}}s:13:\"filter_groups\";a:2:{s:8:\"operator\";s:3:\"AND\";s:6:\"groups\";a:1:{i:1;s:3:\"AND\";}}s:6:\"access\";a:2:{s:4:\"type\";s:4:\"perm\";s:4:\"perm\";s:23:\"view location directory\";}s:14:\"access_options\";N;s:12:\"style_plugin\";s:5:\"table\";s:13:\"style_options\";a:7:{s:8:\"grouping\";s:0:\"\";s:8:\"override\";i:1;s:6:\"sticky\";i:0;s:5:\"order\";s:3:\"asc\";s:7:\"columns\";a:6:{s:5:\"title\";s:5:\"title\";s:6:\"street\";s:6:\"street\";s:4:\"city\";s:4:\"city\";s:8:\"province\";s:8:\"province\";s:11:\"postal_code\";s:11:\"postal_code\";s:7:\"country\";s:7:\"country\";}s:4:\"info\";a:6:{s:5:\"title\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}s:6:\"street\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}s:4:\"city\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}s:8:\"province\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}s:11:\"postal_code\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}s:7:\"country\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}}s:7:\"default\";s:2:\"-1\";}s:10:\"row_plugin\";s:6:\"fields\";s:11:\"row_options\";a:0:{}}s:8:\"db_table\";s:13:\"views_display\";s:3:\"vid\";i:0;s:2:\"id\";s:7:\"default\";s:13:\"display_title\";s:8:\"Defaults\";s:14:\"display_plugin\";s:7:\"default\";s:8:\"position\";i:0;}s:6:\"page_1\";O:13:\"views_display\":8:{s:7:\"handler\";O:25:\"views_plugin_display_page\":10:{s:4:\"view\";r:1;s:8:\"handlers\";a:0:{}s:8:\"extender\";a:0:{}s:7:\"display\";R:564;s:11:\"plugin_type\";s:7:\"display\";s:11:\"plugin_name\";s:4:\"page\";s:7:\"options\";a:42:{s:8:\"defaults\";a:33:{s:6:\"access\";b:1;s:5:\"cache\";b:1;s:5:\"query\";b:1;s:5:\"title\";b:0;s:9:\"css_class\";b:1;s:19:\"display_description\";b:0;s:8:\"use_ajax\";b:1;s:23:\"hide_attachment_summary\";b:1;s:16:\"hide_admin_links\";b:1;s:5:\"pager\";b:1;s:13:\"pager_options\";b:1;s:8:\"use_more\";b:1;s:15:\"use_more_always\";b:1;s:15:\"open_new_window\";b:0;s:13:\"use_more_text\";b:1;s:12:\"exposed_form\";b:1;s:20:\"exposed_form_options\";b:1;s:12:\"link_display\";b:1;s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:1;s:12:\"style_plugin\";b:1;s:13:\"style_options\";b:1;s:10:\"row_plugin\";b:1;s:11:\"row_options\";b:1;s:6:\"header\";b:1;s:6:\"footer\";b:1;s:5:\"empty\";b:1;s:13:\"relationships\";b:1;s:6:\"fields\";b:1;s:5:\"sorts\";b:1;s:9:\"arguments\";b:1;s:7:\"filters\";b:1;s:13:\"filter_groups\";b:1;}s:5:\"title\";s:9:\"Locations\";s:7:\"enabled\";b:1;s:15:\"display_comment\";s:0:\"\";s:9:\"css_class\";s:0:\"\";s:19:\"display_description\";s:0:\"\";s:8:\"use_ajax\";b:0;s:23:\"hide_attachment_summary\";b:0;s:16:\"hide_admin_links\";b:0;s:14:\"items_per_page\";N;s:6:\"offset\";N;s:9:\"use_pager\";N;s:8:\"use_more\";b:0;s:15:\"use_more_always\";b:0;s:13:\"use_more_text\";s:4:\"more\";s:12:\"link_display\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:0;s:14:\"field_language\";s:22:\"***CURRENT_LANGUAGE***\";s:27:\"field_language_add_to_query\";i:1;s:6:\"access\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"cache\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:12:\"exposed_form\";a:2:{s:4:\"type\";s:5:\"basic\";s:7:\"options\";a:0:{}}s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"some\";s:7:\"options\";a:2:{s:6:\"offset\";i:0;s:14:\"items_per_page\";i:10;}}s:12:\"style_plugin\";s:7:\"default\";s:13:\"style_options\";a:0:{}s:10:\"row_plugin\";s:6:\"fields\";s:11:\"row_options\";a:0:{}s:13:\"exposed_block\";b:0;s:6:\"header\";a:0:{}s:6:\"footer\";a:0:{}s:5:\"empty\";a:0:{}s:13:\"relationships\";a:0:{}s:6:\"fields\";a:0:{}s:5:\"sorts\";a:0:{}s:9:\"arguments\";a:0:{}s:13:\"filter_groups\";a:2:{s:8:\"operator\";s:3:\"AND\";s:6:\"groups\";a:1:{i:1;s:3:\"AND\";}}s:7:\"filters\";a:0:{}s:4:\"path\";s:18:\"location/directory\";s:4:\"menu\";a:3:{s:4:\"type\";s:6:\"normal\";s:5:\"title\";s:9:\"Locations\";s:6:\"weight\";s:1:\"0\";}s:11:\"tab_options\";a:3:{s:4:\"type\";s:4:\"none\";s:5:\"title\";s:0:\"\";s:6:\"weight\";i:0;}}s:10:\"definition\";a:20:{s:5:\"title\";s:4:\"Page\";s:4:\"help\";s:54:\"Display the view as a page, with a URL and menu links.\";s:7:\"handler\";s:25:\"views_plugin_display_page\";s:5:\"theme\";s:10:\"views_view\";s:14:\"uses hook menu\";b:1;s:26:\"contextual links locations\";a:1:{i:0;s:4:\"page\";}s:8:\"use ajax\";b:1;s:9:\"use pager\";b:1;s:8:\"use more\";b:1;s:18:\"accept attachments\";b:1;s:5:\"admin\";s:4:\"Page\";s:10:\"help topic\";s:12:\"display-page\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:29:\"views_plugin_display_page.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"page\";s:16:\"contextual links\";a:1:{s:8:\"views_ui\";a:2:{s:11:\"parent path\";s:26:\"admin/structure/views/view\";s:19:\"argument properties\";a:1:{i:0;s:4:\"name\";}}}}s:9:\"is_plugin\";b:1;s:15:\"default_display\";R:37;}s:15:\"display_options\";a:10:{s:14:\"items_per_page\";N;s:6:\"offset\";N;s:9:\"use_pager\";N;s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"some\";s:7:\"options\";a:2:{s:6:\"offset\";i:0;s:14:\"items_per_page\";i:10;}}s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:5:\"title\";s:9:\"Locations\";s:8:\"defaults\";a:1:{s:5:\"title\";b:0;}s:4:\"path\";s:18:\"location/directory\";s:4:\"menu\";a:3:{s:4:\"type\";s:6:\"normal\";s:5:\"title\";s:9:\"Locations\";s:6:\"weight\";s:1:\"0\";}s:11:\"tab_options\";a:3:{s:4:\"type\";s:4:\"none\";s:5:\"title\";s:0:\"\";s:6:\"weight\";i:0;}}s:8:\"db_table\";s:13:\"views_display\";s:3:\"vid\";i:0;s:2:\"id\";s:6:\"page_1\";s:13:\"display_title\";s:4:\"Page\";s:14:\"display_plugin\";s:4:\"page\";s:8:\"position\";i:0;}}s:12:\"style_plugin\";N;s:13:\"style_options\";N;s:9:\"row_index\";N;s:12:\"override_url\";N;s:13:\"override_path\";N;s:13:\"base_database\";N;s:5:\"field\";N;s:8:\"argument\";N;s:4:\"sort\";N;s:6:\"filter\";N;s:12:\"relationship\";N;s:6:\"header\";N;s:6:\"footer\";N;s:5:\"empty\";N;s:8:\"view_php\";s:0:\"\";s:12:\"is_cacheable\";b:0;s:7:\"changed\";b:1;s:13:\"export_module\";s:8:\"location\";}',0,1538750977,1),('ctools_export:views_view:location_table','O:4:\"view\":52:{s:8:\"db_table\";s:10:\"views_view\";s:10:\"base_table\";s:4:\"node\";s:10:\"base_field\";s:3:\"nid\";s:4:\"name\";s:14:\"location_table\";s:3:\"vid\";s:0:\"\";s:11:\"description\";s:20:\"Node location table.\";s:3:\"tag\";s:0:\"\";s:10:\"human_name\";s:0:\"\";s:4:\"core\";i:0;s:11:\"api_version\";i:2;s:8:\"disabled\";b:1;s:5:\"built\";b:0;s:8:\"executed\";b:0;s:7:\"editing\";b:0;s:4:\"args\";a:0:{}s:10:\"build_info\";a:0:{}s:8:\"use_ajax\";b:0;s:6:\"result\";a:0:{}s:12:\"current_page\";N;s:14:\"items_per_page\";N;s:6:\"offset\";N;s:10:\"total_rows\";N;s:17:\"attachment_before\";s:0:\"\";s:16:\"attachment_after\";s:0:\"\";s:12:\"exposed_data\";a:0:{}s:13:\"exposed_input\";a:0:{}s:17:\"exposed_raw_input\";a:0:{}s:8:\"old_view\";a:0:{}s:12:\"parent_views\";a:0:{}s:13:\"is_attachment\";N;s:15:\"current_display\";N;s:5:\"query\";N;s:15:\"display_handler\";N;s:7:\"display\";a:2:{s:7:\"default\";O:13:\"views_display\":8:{s:7:\"handler\";O:28:\"views_plugin_display_default\":9:{s:4:\"view\";r:1;s:8:\"handlers\";a:0:{}s:8:\"extender\";a:0:{}s:7:\"display\";R:36;s:11:\"plugin_type\";s:7:\"display\";s:11:\"plugin_name\";s:7:\"default\";s:7:\"options\";a:40:{s:5:\"title\";s:0:\"\";s:7:\"enabled\";b:1;s:15:\"display_comment\";s:0:\"\";s:9:\"css_class\";s:0:\"\";s:19:\"display_description\";s:0:\"\";s:8:\"use_ajax\";b:0;s:23:\"hide_attachment_summary\";b:0;s:16:\"hide_admin_links\";b:0;s:14:\"items_per_page\";N;s:6:\"offset\";N;s:9:\"use_pager\";N;s:8:\"use_more\";b:0;s:15:\"use_more_always\";b:0;s:13:\"use_more_text\";s:4:\"more\";s:12:\"link_display\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:0;s:14:\"field_language\";s:22:\"***CURRENT_LANGUAGE***\";s:27:\"field_language_add_to_query\";i:1;s:6:\"access\";a:2:{s:4:\"type\";s:4:\"perm\";s:4:\"perm\";s:24:\"view node location table\";}s:5:\"cache\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:12:\"exposed_form\";a:2:{s:4:\"type\";s:5:\"basic\";s:7:\"options\";a:0:{}}s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"some\";s:7:\"options\";a:2:{s:6:\"offset\";i:0;s:14:\"items_per_page\";i:10;}}s:12:\"style_plugin\";s:5:\"table\";s:13:\"style_options\";a:7:{s:8:\"grouping\";s:0:\"\";s:8:\"override\";i:1;s:6:\"sticky\";i:0;s:5:\"order\";s:3:\"asc\";s:7:\"columns\";a:6:{s:5:\"title\";s:5:\"title\";s:6:\"street\";s:6:\"street\";s:4:\"city\";s:4:\"city\";s:8:\"province\";s:8:\"province\";s:11:\"postal_code\";s:11:\"postal_code\";s:7:\"country\";s:7:\"country\";}s:4:\"info\";a:6:{s:5:\"title\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}s:6:\"street\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}s:4:\"city\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}s:8:\"province\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}s:11:\"postal_code\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}s:7:\"country\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}}s:7:\"default\";s:2:\"-1\";}s:10:\"row_plugin\";s:6:\"fields\";s:11:\"row_options\";a:0:{}s:13:\"exposed_block\";b:0;s:6:\"header\";a:0:{}s:6:\"footer\";a:0:{}s:5:\"empty\";a:0:{}s:13:\"relationships\";a:0:{}s:6:\"fields\";a:6:{s:5:\"title\";a:8:{s:5:\"label\";s:5:\"Title\";s:12:\"link_to_node\";i:1;s:7:\"exclude\";i:0;s:2:\"id\";s:5:\"title\";s:5:\"table\";s:4:\"node\";s:5:\"field\";s:5:\"title\";s:8:\"override\";a:1:{s:6:\"button\";s:8:\"Override\";}s:12:\"relationship\";s:4:\"none\";}s:6:\"street\";a:8:{s:5:\"label\";s:6:\"Street\";s:5:\"style\";s:4:\"both\";s:7:\"exclude\";i:0;s:2:\"id\";s:6:\"street\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:6:\"street\";s:8:\"override\";a:1:{s:6:\"button\";s:8:\"Override\";}s:12:\"relationship\";s:4:\"none\";}s:4:\"city\";a:7:{s:5:\"label\";s:4:\"City\";s:7:\"exclude\";i:0;s:2:\"id\";s:4:\"city\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:4:\"city\";s:8:\"override\";a:1:{s:6:\"button\";s:8:\"Override\";}s:12:\"relationship\";s:4:\"none\";}s:8:\"province\";a:7:{s:5:\"label\";s:8:\"Province\";s:5:\"style\";s:4:\"name\";s:7:\"exclude\";i:0;s:2:\"id\";s:8:\"province\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:8:\"province\";s:12:\"relationship\";s:4:\"none\";}s:11:\"postal_code\";a:7:{s:5:\"label\";s:11:\"Postal Code\";s:7:\"exclude\";i:0;s:2:\"id\";s:11:\"postal_code\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:11:\"postal_code\";s:8:\"override\";a:1:{s:6:\"button\";s:8:\"Override\";}s:12:\"relationship\";s:4:\"none\";}s:7:\"country\";a:7:{s:5:\"label\";s:7:\"Country\";s:5:\"style\";s:4:\"name\";s:7:\"exclude\";i:0;s:2:\"id\";s:7:\"country\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:7:\"country\";s:12:\"relationship\";s:4:\"none\";}}s:5:\"sorts\";a:0:{}s:9:\"arguments\";a:0:{}s:13:\"filter_groups\";a:2:{s:8:\"operator\";s:3:\"AND\";s:6:\"groups\";a:1:{i:1;s:3:\"AND\";}}s:7:\"filters\";a:2:{s:12:\"status_extra\";a:10:{s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:0:\"\";s:5:\"group\";s:1:\"0\";s:7:\"exposed\";b:0;s:6:\"expose\";a:2:{s:8:\"operator\";b:0;s:5:\"label\";s:0:\"\";}s:2:\"id\";s:12:\"status_extra\";s:5:\"table\";s:4:\"node\";s:5:\"field\";s:12:\"status_extra\";s:8:\"override\";a:1:{s:6:\"button\";s:8:\"Override\";}s:12:\"relationship\";s:4:\"none\";}s:3:\"lid\";a:9:{s:8:\"operator\";s:9:\"not empty\";s:5:\"value\";a:3:{s:5:\"value\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:5:\"group\";s:1:\"0\";s:7:\"exposed\";b:0;s:6:\"expose\";a:2:{s:8:\"operator\";b:0;s:5:\"label\";s:0:\"\";}s:2:\"id\";s:3:\"lid\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:3:\"lid\";s:12:\"relationship\";s:4:\"none\";}}s:8:\"defaults\";a:9:{s:6:\"fields\";b:0;s:7:\"filters\";b:0;s:13:\"filter_groups\";b:0;s:6:\"access\";b:0;s:14:\"access_options\";b:0;s:12:\"style_plugin\";b:0;s:13:\"style_options\";b:0;s:10:\"row_plugin\";b:0;s:11:\"row_options\";b:0;}s:14:\"access_options\";N;}s:10:\"definition\";a:20:{s:5:\"title\";s:6:\"Master\";s:4:\"help\";s:31:\"Default settings for this view.\";s:7:\"handler\";s:28:\"views_plugin_display_default\";s:5:\"theme\";s:10:\"views_view\";s:5:\"no ui\";b:1;s:9:\"no remove\";b:1;s:2:\"js\";a:6:{i:0;s:12:\"misc/form.js\";i:1;s:16:\"misc/collapse.js\";i:2;s:16:\"misc/textarea.js\";i:3;s:17:\"misc/tabledrag.js\";i:4;s:20:\"misc/autocomplete.js\";i:5;s:40:\"sites/all/modules/ctools/js/dependent.js\";}s:8:\"use ajax\";b:1;s:9:\"use pager\";b:1;s:8:\"use more\";b:1;s:18:\"accept attachments\";b:1;s:10:\"help topic\";s:15:\"display-default\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:32:\"views_plugin_display_default.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:7:\"default\";s:16:\"contextual links\";a:1:{s:8:\"views_ui\";a:2:{s:11:\"parent path\";s:26:\"admin/structure/views/view\";s:19:\"argument properties\";a:1:{i:0;s:4:\"name\";}}}}s:9:\"is_plugin\";b:1;}s:15:\"display_options\";a:15:{s:14:\"items_per_page\";N;s:6:\"offset\";N;s:9:\"use_pager\";N;s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"some\";s:7:\"options\";a:2:{s:6:\"offset\";i:0;s:14:\"items_per_page\";i:10;}}s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:6:\"fields\";a:6:{s:5:\"title\";a:8:{s:5:\"label\";s:5:\"Title\";s:12:\"link_to_node\";i:1;s:7:\"exclude\";i:0;s:2:\"id\";s:5:\"title\";s:5:\"table\";s:4:\"node\";s:5:\"field\";s:5:\"title\";s:8:\"override\";a:1:{s:6:\"button\";s:8:\"Override\";}s:12:\"relationship\";s:4:\"none\";}s:6:\"street\";a:8:{s:5:\"label\";s:6:\"Street\";s:5:\"style\";s:4:\"both\";s:7:\"exclude\";i:0;s:2:\"id\";s:6:\"street\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:6:\"street\";s:8:\"override\";a:1:{s:6:\"button\";s:8:\"Override\";}s:12:\"relationship\";s:4:\"none\";}s:4:\"city\";a:7:{s:5:\"label\";s:4:\"City\";s:7:\"exclude\";i:0;s:2:\"id\";s:4:\"city\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:4:\"city\";s:8:\"override\";a:1:{s:6:\"button\";s:8:\"Override\";}s:12:\"relationship\";s:4:\"none\";}s:8:\"province\";a:7:{s:5:\"label\";s:8:\"Province\";s:5:\"style\";s:4:\"name\";s:7:\"exclude\";i:0;s:2:\"id\";s:8:\"province\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:8:\"province\";s:12:\"relationship\";s:4:\"none\";}s:11:\"postal_code\";a:7:{s:5:\"label\";s:11:\"Postal Code\";s:7:\"exclude\";i:0;s:2:\"id\";s:11:\"postal_code\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:11:\"postal_code\";s:8:\"override\";a:1:{s:6:\"button\";s:8:\"Override\";}s:12:\"relationship\";s:4:\"none\";}s:7:\"country\";a:7:{s:5:\"label\";s:7:\"Country\";s:5:\"style\";s:4:\"name\";s:7:\"exclude\";i:0;s:2:\"id\";s:7:\"country\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:7:\"country\";s:12:\"relationship\";s:4:\"none\";}}s:8:\"defaults\";a:9:{s:6:\"fields\";b:0;s:7:\"filters\";b:0;s:13:\"filter_groups\";b:0;s:6:\"access\";b:0;s:14:\"access_options\";b:0;s:12:\"style_plugin\";b:0;s:13:\"style_options\";b:0;s:10:\"row_plugin\";b:0;s:11:\"row_options\";b:0;}s:7:\"filters\";a:2:{s:12:\"status_extra\";a:10:{s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:0:\"\";s:5:\"group\";s:1:\"0\";s:7:\"exposed\";b:0;s:6:\"expose\";a:2:{s:8:\"operator\";b:0;s:5:\"label\";s:0:\"\";}s:2:\"id\";s:12:\"status_extra\";s:5:\"table\";s:4:\"node\";s:5:\"field\";s:12:\"status_extra\";s:8:\"override\";a:1:{s:6:\"button\";s:8:\"Override\";}s:12:\"relationship\";s:4:\"none\";}s:3:\"lid\";a:9:{s:8:\"operator\";s:9:\"not empty\";s:5:\"value\";a:3:{s:5:\"value\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:5:\"group\";s:1:\"0\";s:7:\"exposed\";b:0;s:6:\"expose\";a:2:{s:8:\"operator\";b:0;s:5:\"label\";s:0:\"\";}s:2:\"id\";s:3:\"lid\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:3:\"lid\";s:12:\"relationship\";s:4:\"none\";}}s:13:\"filter_groups\";a:2:{s:8:\"operator\";s:3:\"AND\";s:6:\"groups\";a:1:{i:1;s:3:\"AND\";}}s:6:\"access\";a:2:{s:4:\"type\";s:4:\"perm\";s:4:\"perm\";s:24:\"view node location table\";}s:14:\"access_options\";N;s:12:\"style_plugin\";s:5:\"table\";s:13:\"style_options\";a:7:{s:8:\"grouping\";s:0:\"\";s:8:\"override\";i:1;s:6:\"sticky\";i:0;s:5:\"order\";s:3:\"asc\";s:7:\"columns\";a:6:{s:5:\"title\";s:5:\"title\";s:6:\"street\";s:6:\"street\";s:4:\"city\";s:4:\"city\";s:8:\"province\";s:8:\"province\";s:11:\"postal_code\";s:11:\"postal_code\";s:7:\"country\";s:7:\"country\";}s:4:\"info\";a:6:{s:5:\"title\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}s:6:\"street\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}s:4:\"city\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}s:8:\"province\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}s:11:\"postal_code\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}s:7:\"country\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}}s:7:\"default\";s:2:\"-1\";}s:10:\"row_plugin\";s:6:\"fields\";s:11:\"row_options\";a:0:{}}s:8:\"db_table\";s:13:\"views_display\";s:3:\"vid\";i:0;s:2:\"id\";s:7:\"default\";s:13:\"display_title\";s:8:\"Defaults\";s:14:\"display_plugin\";s:7:\"default\";s:8:\"position\";i:0;}s:6:\"page_1\";O:13:\"views_display\":8:{s:7:\"handler\";O:25:\"views_plugin_display_page\":10:{s:4:\"view\";r:1;s:8:\"handlers\";a:0:{}s:8:\"extender\";a:0:{}s:7:\"display\";R:409;s:11:\"plugin_type\";s:7:\"display\";s:11:\"plugin_name\";s:4:\"page\";s:7:\"options\";a:42:{s:8:\"defaults\";a:33:{s:6:\"access\";b:1;s:5:\"cache\";b:1;s:5:\"query\";b:1;s:5:\"title\";b:1;s:9:\"css_class\";b:1;s:19:\"display_description\";b:0;s:8:\"use_ajax\";b:1;s:23:\"hide_attachment_summary\";b:1;s:16:\"hide_admin_links\";b:1;s:5:\"pager\";b:1;s:13:\"pager_options\";b:1;s:8:\"use_more\";b:1;s:15:\"use_more_always\";b:1;s:15:\"open_new_window\";b:0;s:13:\"use_more_text\";b:1;s:12:\"exposed_form\";b:1;s:20:\"exposed_form_options\";b:1;s:12:\"link_display\";b:1;s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:1;s:12:\"style_plugin\";b:1;s:13:\"style_options\";b:1;s:10:\"row_plugin\";b:1;s:11:\"row_options\";b:1;s:6:\"header\";b:1;s:6:\"footer\";b:1;s:5:\"empty\";b:1;s:13:\"relationships\";b:1;s:6:\"fields\";b:1;s:5:\"sorts\";b:1;s:9:\"arguments\";b:1;s:7:\"filters\";b:1;s:13:\"filter_groups\";b:1;}s:5:\"title\";s:0:\"\";s:7:\"enabled\";b:1;s:15:\"display_comment\";s:0:\"\";s:9:\"css_class\";s:0:\"\";s:19:\"display_description\";s:0:\"\";s:8:\"use_ajax\";b:0;s:23:\"hide_attachment_summary\";b:0;s:16:\"hide_admin_links\";b:0;s:14:\"items_per_page\";N;s:6:\"offset\";N;s:9:\"use_pager\";N;s:8:\"use_more\";b:0;s:15:\"use_more_always\";b:0;s:13:\"use_more_text\";s:4:\"more\";s:12:\"link_display\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:0;s:14:\"field_language\";s:22:\"***CURRENT_LANGUAGE***\";s:27:\"field_language_add_to_query\";i:1;s:6:\"access\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"cache\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:12:\"exposed_form\";a:2:{s:4:\"type\";s:5:\"basic\";s:7:\"options\";a:0:{}}s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"some\";s:7:\"options\";a:2:{s:6:\"offset\";i:0;s:14:\"items_per_page\";i:10;}}s:12:\"style_plugin\";s:7:\"default\";s:13:\"style_options\";a:0:{}s:10:\"row_plugin\";s:6:\"fields\";s:11:\"row_options\";a:0:{}s:13:\"exposed_block\";b:0;s:6:\"header\";a:0:{}s:6:\"footer\";a:0:{}s:5:\"empty\";a:0:{}s:13:\"relationships\";a:0:{}s:6:\"fields\";a:0:{}s:5:\"sorts\";a:0:{}s:9:\"arguments\";a:0:{}s:13:\"filter_groups\";a:2:{s:8:\"operator\";s:3:\"AND\";s:6:\"groups\";a:1:{i:1;s:3:\"AND\";}}s:7:\"filters\";a:0:{}s:4:\"path\";s:14:\"location/views\";s:4:\"menu\";a:3:{s:4:\"type\";s:6:\"normal\";s:5:\"title\";s:14:\"Location table\";s:6:\"weight\";s:1:\"0\";}s:11:\"tab_options\";a:3:{s:4:\"type\";s:4:\"none\";s:5:\"title\";s:0:\"\";s:6:\"weight\";i:0;}}s:10:\"definition\";a:20:{s:5:\"title\";s:4:\"Page\";s:4:\"help\";s:54:\"Display the view as a page, with a URL and menu links.\";s:7:\"handler\";s:25:\"views_plugin_display_page\";s:5:\"theme\";s:10:\"views_view\";s:14:\"uses hook menu\";b:1;s:26:\"contextual links locations\";a:1:{i:0;s:4:\"page\";}s:8:\"use ajax\";b:1;s:9:\"use pager\";b:1;s:8:\"use more\";b:1;s:18:\"accept attachments\";b:1;s:5:\"admin\";s:4:\"Page\";s:10:\"help topic\";s:12:\"display-page\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:29:\"views_plugin_display_page.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"page\";s:16:\"contextual links\";a:1:{s:8:\"views_ui\";a:2:{s:11:\"parent path\";s:26:\"admin/structure/views/view\";s:19:\"argument properties\";a:1:{i:0;s:4:\"name\";}}}}s:9:\"is_plugin\";b:1;s:15:\"default_display\";R:37;}s:15:\"display_options\";a:8:{s:14:\"items_per_page\";N;s:6:\"offset\";N;s:9:\"use_pager\";N;s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"some\";s:7:\"options\";a:2:{s:6:\"offset\";i:0;s:14:\"items_per_page\";i:10;}}s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:4:\"path\";s:14:\"location/views\";s:4:\"menu\";a:3:{s:4:\"type\";s:6:\"normal\";s:5:\"title\";s:14:\"Location table\";s:6:\"weight\";s:1:\"0\";}s:11:\"tab_options\";a:3:{s:4:\"type\";s:4:\"none\";s:5:\"title\";s:0:\"\";s:6:\"weight\";i:0;}}s:8:\"db_table\";s:13:\"views_display\";s:3:\"vid\";i:0;s:2:\"id\";s:6:\"page_1\";s:13:\"display_title\";s:4:\"Page\";s:14:\"display_plugin\";s:4:\"page\";s:8:\"position\";i:0;}}s:12:\"style_plugin\";N;s:13:\"style_options\";N;s:9:\"row_index\";N;s:12:\"override_url\";N;s:13:\"override_path\";N;s:13:\"base_database\";N;s:5:\"field\";N;s:8:\"argument\";N;s:4:\"sort\";N;s:6:\"filter\";N;s:12:\"relationship\";N;s:6:\"header\";N;s:6:\"footer\";N;s:5:\"empty\";N;s:8:\"view_php\";s:0:\"\";s:12:\"is_cacheable\";b:0;s:7:\"changed\";b:1;s:13:\"export_module\";s:8:\"location\";}',0,1538750977,1),('ctools_export:views_view:taxonomy_term','O:4:\"view\":49:{s:8:\"db_table\";s:10:\"views_view\";s:10:\"base_table\";s:4:\"node\";s:10:\"base_field\";s:3:\"nid\";s:4:\"name\";s:13:\"taxonomy_term\";s:3:\"vid\";s:0:\"\";s:11:\"description\";s:58:\"A view to emulate Drupal core\'s handling of taxonomy/term.\";s:3:\"tag\";s:7:\"default\";s:10:\"human_name\";s:13:\"Taxonomy term\";s:4:\"core\";i:7;s:11:\"api_version\";s:3:\"3.0\";s:8:\"disabled\";b:1;s:5:\"built\";b:0;s:8:\"executed\";b:0;s:7:\"editing\";b:0;s:4:\"args\";a:0:{}s:10:\"build_info\";a:0:{}s:8:\"use_ajax\";b:0;s:6:\"result\";a:0:{}s:12:\"current_page\";N;s:14:\"items_per_page\";N;s:6:\"offset\";N;s:10:\"total_rows\";N;s:17:\"attachment_before\";s:0:\"\";s:16:\"attachment_after\";s:0:\"\";s:12:\"exposed_data\";a:0:{}s:13:\"exposed_input\";a:0:{}s:17:\"exposed_raw_input\";a:0:{}s:8:\"old_view\";a:0:{}s:12:\"parent_views\";a:0:{}s:13:\"is_attachment\";N;s:15:\"current_display\";N;s:5:\"query\";N;s:15:\"display_handler\";N;s:7:\"display\";a:3:{s:7:\"default\";O:13:\"views_display\":8:{s:7:\"handler\";O:28:\"views_plugin_display_default\":9:{s:4:\"view\";r:1;s:8:\"handlers\";a:0:{}s:8:\"extender\";a:0:{}s:7:\"display\";R:36;s:11:\"plugin_type\";s:7:\"display\";s:11:\"plugin_name\";s:7:\"default\";s:7:\"options\";a:38:{s:5:\"title\";s:0:\"\";s:7:\"enabled\";b:1;s:15:\"display_comment\";s:0:\"\";s:9:\"css_class\";s:0:\"\";s:19:\"display_description\";s:0:\"\";s:8:\"use_ajax\";b:0;s:23:\"hide_attachment_summary\";b:0;s:16:\"hide_admin_links\";b:0;s:14:\"items_per_page\";i:10;s:6:\"offset\";i:0;s:9:\"use_pager\";b:0;s:8:\"use_more\";b:0;s:15:\"use_more_always\";b:0;s:13:\"use_more_text\";s:4:\"more\";s:12:\"link_display\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:0;s:14:\"field_language\";s:22:\"***CURRENT_LANGUAGE***\";s:27:\"field_language_add_to_query\";i:1;s:6:\"access\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"cache\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:12:\"exposed_form\";a:2:{s:4:\"type\";s:5:\"basic\";s:7:\"options\";a:0:{}}s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"full\";s:7:\"options\";a:0:{}}s:12:\"style_plugin\";s:7:\"default\";s:13:\"style_options\";a:0:{}s:10:\"row_plugin\";s:6:\"fields\";s:11:\"row_options\";a:0:{}s:13:\"exposed_block\";b:0;s:6:\"header\";a:0:{}s:6:\"footer\";a:0:{}s:5:\"empty\";a:0:{}s:13:\"relationships\";a:0:{}s:6:\"fields\";a:0:{}s:5:\"sorts\";a:0:{}s:9:\"arguments\";a:0:{}s:13:\"filter_groups\";a:2:{s:8:\"operator\";s:3:\"AND\";s:6:\"groups\";a:1:{i:1;s:3:\"AND\";}}s:7:\"filters\";a:0:{}}s:10:\"definition\";a:20:{s:5:\"title\";s:6:\"Master\";s:4:\"help\";s:31:\"Default settings for this view.\";s:7:\"handler\";s:28:\"views_plugin_display_default\";s:5:\"theme\";s:10:\"views_view\";s:5:\"no ui\";b:1;s:9:\"no remove\";b:1;s:2:\"js\";a:6:{i:0;s:12:\"misc/form.js\";i:1;s:16:\"misc/collapse.js\";i:2;s:16:\"misc/textarea.js\";i:3;s:17:\"misc/tabledrag.js\";i:4;s:20:\"misc/autocomplete.js\";i:5;s:40:\"sites/all/modules/ctools/js/dependent.js\";}s:8:\"use ajax\";b:1;s:9:\"use pager\";b:1;s:8:\"use more\";b:1;s:18:\"accept attachments\";b:1;s:10:\"help topic\";s:15:\"display-default\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:32:\"views_plugin_display_default.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:7:\"default\";s:16:\"contextual links\";a:1:{s:8:\"views_ui\";a:2:{s:11:\"parent path\";s:26:\"admin/structure/views/view\";s:19:\"argument properties\";a:1:{i:0;s:4:\"name\";}}}}s:9:\"is_plugin\";b:1;}s:15:\"display_options\";a:10:{s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:1:{s:13:\"query_comment\";b:0;}}s:6:\"access\";a:2:{s:4:\"type\";s:4:\"perm\";s:4:\"perm\";s:14:\"access content\";}s:5:\"cache\";a:1:{s:4:\"type\";s:4:\"none\";}s:12:\"exposed_form\";a:1:{s:4:\"type\";s:5:\"basic\";}s:5:\"pager\";a:1:{s:4:\"type\";s:4:\"full\";}s:12:\"style_plugin\";s:7:\"default\";s:10:\"row_plugin\";s:4:\"node\";s:5:\"sorts\";a:2:{s:6:\"sticky\";a:4:{s:2:\"id\";s:6:\"sticky\";s:5:\"table\";s:4:\"node\";s:5:\"field\";s:6:\"sticky\";s:5:\"order\";s:4:\"DESC\";}s:7:\"created\";a:4:{s:2:\"id\";s:7:\"created\";s:5:\"table\";s:4:\"node\";s:5:\"field\";s:7:\"created\";s:5:\"order\";s:4:\"DESC\";}}s:9:\"arguments\";a:2:{s:19:\"term_node_tid_depth\";a:13:{s:2:\"id\";s:19:\"term_node_tid_depth\";s:5:\"table\";s:4:\"node\";s:5:\"field\";s:19:\"term_node_tid_depth\";s:14:\"default_action\";s:9:\"not found\";s:9:\"exception\";a:1:{s:12:\"title_enable\";i:1;}s:12:\"title_enable\";i:1;s:5:\"title\";s:2:\"%1\";s:21:\"default_argument_type\";s:5:\"fixed\";s:7:\"summary\";a:1:{s:6:\"format\";s:15:\"default_summary\";}s:18:\"specify_validation\";i:1;s:8:\"validate\";a:1:{s:4:\"type\";s:13:\"taxonomy_term\";}s:5:\"depth\";s:1:\"0\";s:12:\"break_phrase\";i:1;}s:28:\"term_node_tid_depth_modifier\";a:7:{s:2:\"id\";s:28:\"term_node_tid_depth_modifier\";s:5:\"table\";s:4:\"node\";s:5:\"field\";s:28:\"term_node_tid_depth_modifier\";s:9:\"exception\";a:1:{s:12:\"title_enable\";i:1;}s:21:\"default_argument_type\";s:5:\"fixed\";s:7:\"summary\";a:1:{s:6:\"format\";s:15:\"default_summary\";}s:18:\"specify_validation\";i:1;}}s:7:\"filters\";a:1:{s:12:\"status_extra\";a:5:{s:2:\"id\";s:12:\"status_extra\";s:5:\"table\";s:4:\"node\";s:5:\"field\";s:12:\"status_extra\";s:5:\"group\";i:0;s:6:\"expose\";a:1:{s:8:\"operator\";b:0;}}}}s:8:\"db_table\";s:13:\"views_display\";s:3:\"vid\";i:0;s:2:\"id\";s:7:\"default\";s:13:\"display_title\";s:6:\"Master\";s:14:\"display_plugin\";s:7:\"default\";s:8:\"position\";i:0;}s:4:\"page\";O:13:\"views_display\":8:{s:7:\"handler\";O:25:\"views_plugin_display_page\":10:{s:4:\"view\";r:1;s:8:\"handlers\";a:0:{}s:8:\"extender\";a:0:{}s:7:\"display\";R:194;s:11:\"plugin_type\";s:7:\"display\";s:11:\"plugin_name\";s:4:\"page\";s:7:\"options\";a:42:{s:8:\"defaults\";a:33:{s:6:\"access\";b:1;s:5:\"cache\";b:1;s:5:\"query\";b:1;s:5:\"title\";b:1;s:9:\"css_class\";b:1;s:19:\"display_description\";b:0;s:8:\"use_ajax\";b:1;s:23:\"hide_attachment_summary\";b:1;s:16:\"hide_admin_links\";b:1;s:5:\"pager\";b:1;s:13:\"pager_options\";b:1;s:8:\"use_more\";b:1;s:15:\"use_more_always\";b:1;s:15:\"open_new_window\";b:0;s:13:\"use_more_text\";b:1;s:12:\"exposed_form\";b:1;s:20:\"exposed_form_options\";b:1;s:12:\"link_display\";b:1;s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:1;s:12:\"style_plugin\";b:1;s:13:\"style_options\";b:1;s:10:\"row_plugin\";b:1;s:11:\"row_options\";b:1;s:6:\"header\";b:1;s:6:\"footer\";b:1;s:5:\"empty\";b:1;s:13:\"relationships\";b:1;s:6:\"fields\";b:1;s:5:\"sorts\";b:1;s:9:\"arguments\";b:1;s:7:\"filters\";b:1;s:13:\"filter_groups\";b:1;}s:5:\"title\";s:0:\"\";s:7:\"enabled\";b:1;s:15:\"display_comment\";s:0:\"\";s:9:\"css_class\";s:0:\"\";s:19:\"display_description\";s:0:\"\";s:8:\"use_ajax\";b:0;s:23:\"hide_attachment_summary\";b:0;s:16:\"hide_admin_links\";b:0;s:14:\"items_per_page\";i:10;s:6:\"offset\";i:0;s:9:\"use_pager\";b:0;s:8:\"use_more\";b:0;s:15:\"use_more_always\";b:0;s:13:\"use_more_text\";s:4:\"more\";s:12:\"link_display\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:0;s:14:\"field_language\";s:22:\"***CURRENT_LANGUAGE***\";s:27:\"field_language_add_to_query\";i:1;s:6:\"access\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"cache\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:12:\"exposed_form\";a:2:{s:4:\"type\";s:5:\"basic\";s:7:\"options\";a:0:{}}s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"full\";s:7:\"options\";a:0:{}}s:12:\"style_plugin\";s:7:\"default\";s:13:\"style_options\";a:0:{}s:10:\"row_plugin\";s:6:\"fields\";s:11:\"row_options\";a:0:{}s:13:\"exposed_block\";b:0;s:6:\"header\";a:0:{}s:6:\"footer\";a:0:{}s:5:\"empty\";a:0:{}s:13:\"relationships\";a:0:{}s:6:\"fields\";a:0:{}s:5:\"sorts\";a:0:{}s:9:\"arguments\";a:0:{}s:13:\"filter_groups\";a:2:{s:8:\"operator\";s:3:\"AND\";s:6:\"groups\";a:1:{i:1;s:3:\"AND\";}}s:7:\"filters\";a:0:{}s:4:\"path\";s:0:\"\";s:4:\"menu\";a:7:{s:4:\"type\";s:4:\"none\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:6:\"weight\";i:0;s:4:\"name\";s:10:\"navigation\";s:7:\"context\";s:0:\"\";s:19:\"context_only_inline\";b:0;}s:11:\"tab_options\";a:5:{s:4:\"type\";s:4:\"none\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:6:\"weight\";i:0;s:4:\"name\";s:10:\"navigation\";}}s:10:\"definition\";a:20:{s:5:\"title\";s:4:\"Page\";s:4:\"help\";s:54:\"Display the view as a page, with a URL and menu links.\";s:7:\"handler\";s:25:\"views_plugin_display_page\";s:5:\"theme\";s:10:\"views_view\";s:14:\"uses hook menu\";b:1;s:26:\"contextual links locations\";a:1:{i:0;s:4:\"page\";}s:8:\"use ajax\";b:1;s:9:\"use pager\";b:1;s:8:\"use more\";b:1;s:18:\"accept attachments\";b:1;s:5:\"admin\";s:4:\"Page\";s:10:\"help topic\";s:12:\"display-page\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:29:\"views_plugin_display_page.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"page\";s:16:\"contextual links\";a:1:{s:8:\"views_ui\";a:2:{s:11:\"parent path\";s:26:\"admin/structure/views/view\";s:19:\"argument properties\";a:1:{i:0;s:4:\"name\";}}}}s:9:\"is_plugin\";b:1;s:15:\"default_display\";R:37;}s:15:\"display_options\";a:2:{s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:4:\"path\";s:15:\"taxonomy/term/%\";}s:8:\"db_table\";s:13:\"views_display\";s:3:\"vid\";i:0;s:2:\"id\";s:4:\"page\";s:13:\"display_title\";s:4:\"Page\";s:14:\"display_plugin\";s:4:\"page\";s:8:\"position\";i:0;}s:4:\"feed\";O:13:\"views_display\":8:{s:7:\"handler\";O:25:\"views_plugin_display_feed\":10:{s:4:\"view\";r:1;s:8:\"handlers\";a:0:{}s:8:\"extender\";a:0:{}s:7:\"display\";R:338;s:11:\"plugin_type\";s:7:\"display\";s:11:\"plugin_name\";s:4:\"feed\";s:7:\"options\";a:44:{s:8:\"defaults\";a:36:{s:6:\"access\";b:1;s:5:\"cache\";b:1;s:5:\"query\";b:1;s:5:\"title\";b:1;s:9:\"css_class\";b:1;s:19:\"display_description\";b:0;s:8:\"use_ajax\";b:1;s:23:\"hide_attachment_summary\";b:1;s:16:\"hide_admin_links\";b:1;s:5:\"pager\";b:0;s:13:\"pager_options\";b:1;s:8:\"use_more\";b:1;s:15:\"use_more_always\";b:1;s:15:\"open_new_window\";b:0;s:13:\"use_more_text\";b:1;s:12:\"exposed_form\";b:1;s:20:\"exposed_form_options\";b:1;s:12:\"link_display\";b:1;s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:1;s:12:\"style_plugin\";b:0;s:13:\"style_options\";b:0;s:10:\"row_plugin\";b:0;s:11:\"row_options\";b:0;s:6:\"header\";b:1;s:6:\"footer\";b:1;s:5:\"empty\";b:1;s:13:\"relationships\";b:1;s:6:\"fields\";b:1;s:5:\"sorts\";b:1;s:9:\"arguments\";b:1;s:7:\"filters\";b:1;s:13:\"filter_groups\";b:1;s:9:\"use_pager\";b:0;s:14:\"items_per_page\";b:0;s:6:\"offset\";b:0;}s:5:\"title\";s:0:\"\";s:7:\"enabled\";b:1;s:15:\"display_comment\";s:0:\"\";s:9:\"css_class\";s:0:\"\";s:19:\"display_description\";s:0:\"\";s:8:\"use_ajax\";b:0;s:23:\"hide_attachment_summary\";b:0;s:16:\"hide_admin_links\";b:0;s:14:\"items_per_page\";i:10;s:6:\"offset\";i:0;s:9:\"use_pager\";b:0;s:8:\"use_more\";b:0;s:15:\"use_more_always\";b:0;s:13:\"use_more_text\";s:4:\"more\";s:12:\"link_display\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:0;s:14:\"field_language\";s:22:\"***CURRENT_LANGUAGE***\";s:27:\"field_language_add_to_query\";i:1;s:6:\"access\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"cache\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:12:\"exposed_form\";a:2:{s:4:\"type\";s:5:\"basic\";s:7:\"options\";a:0:{}}s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"some\";s:7:\"options\";a:0:{}}s:12:\"style_plugin\";s:3:\"rss\";s:13:\"style_options\";a:1:{s:11:\"description\";s:0:\"\";}s:10:\"row_plugin\";s:8:\"node_rss\";s:11:\"row_options\";a:0:{}s:13:\"exposed_block\";b:0;s:6:\"header\";a:0:{}s:6:\"footer\";a:0:{}s:5:\"empty\";a:0:{}s:13:\"relationships\";a:0:{}s:6:\"fields\";a:0:{}s:5:\"sorts\";a:0:{}s:9:\"arguments\";a:0:{}s:13:\"filter_groups\";a:2:{s:8:\"operator\";s:3:\"AND\";s:6:\"groups\";a:1:{i:1;s:3:\"AND\";}}s:7:\"filters\";a:0:{}s:4:\"path\";s:0:\"\";s:4:\"menu\";a:7:{s:4:\"type\";s:4:\"none\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:6:\"weight\";i:0;s:4:\"name\";s:10:\"navigation\";s:7:\"context\";s:0:\"\";s:19:\"context_only_inline\";b:0;}s:11:\"tab_options\";a:5:{s:4:\"type\";s:4:\"none\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:6:\"weight\";i:0;s:4:\"name\";s:10:\"navigation\";}s:8:\"displays\";a:0:{}s:14:\"sitename_title\";b:0;}s:10:\"definition\";a:17:{s:5:\"title\";s:4:\"Feed\";s:4:\"help\";s:48:\"Display the view as a feed, such as an RSS feed.\";s:7:\"handler\";s:25:\"views_plugin_display_feed\";s:14:\"uses hook menu\";b:1;s:8:\"use ajax\";b:0;s:9:\"use pager\";b:0;s:18:\"accept attachments\";b:0;s:5:\"admin\";s:4:\"Feed\";s:10:\"help topic\";s:12:\"display-feed\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:29:\"views_plugin_display_feed.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"feed\";s:16:\"contextual links\";a:1:{s:8:\"views_ui\";a:2:{s:11:\"parent path\";s:26:\"admin/structure/views/view\";s:19:\"argument properties\";a:1:{i:0;s:4:\"name\";}}}}s:9:\"is_plugin\";b:1;s:15:\"default_display\";R:37;}s:15:\"display_options\";a:6:{s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"full\";s:7:\"options\";a:1:{s:14:\"items_per_page\";i:15;}}s:12:\"style_plugin\";s:3:\"rss\";s:10:\"row_plugin\";s:8:\"node_rss\";s:4:\"path\";s:22:\"taxonomy/term/%/%/feed\";s:8:\"displays\";a:2:{s:4:\"page\";s:4:\"page\";s:7:\"default\";i:0;}}s:8:\"db_table\";s:13:\"views_display\";s:3:\"vid\";i:0;s:2:\"id\";s:4:\"feed\";s:13:\"display_title\";s:4:\"Feed\";s:14:\"display_plugin\";s:4:\"feed\";s:8:\"position\";i:0;}}s:12:\"style_plugin\";N;s:13:\"style_options\";N;s:9:\"row_index\";N;s:12:\"override_url\";N;s:13:\"override_path\";N;s:13:\"base_database\";N;s:5:\"field\";N;s:8:\"argument\";N;s:4:\"sort\";N;s:6:\"filter\";N;s:12:\"relationship\";N;s:6:\"header\";N;s:6:\"footer\";N;s:5:\"empty\";N;s:13:\"export_module\";s:8:\"taxonomy\";}',0,1538750977,1),('ctools_export:views_view:tracker','O:4:\"view\":49:{s:8:\"db_table\";s:10:\"views_view\";s:10:\"base_table\";s:4:\"node\";s:10:\"base_field\";s:3:\"nid\";s:4:\"name\";s:7:\"tracker\";s:3:\"vid\";s:0:\"\";s:11:\"description\";s:33:\"Shows all new activity on system.\";s:3:\"tag\";s:7:\"default\";s:10:\"human_name\";s:7:\"Tracker\";s:4:\"core\";i:0;s:11:\"api_version\";s:3:\"3.0\";s:8:\"disabled\";b:1;s:5:\"built\";b:0;s:8:\"executed\";b:0;s:7:\"editing\";b:0;s:4:\"args\";a:0:{}s:10:\"build_info\";a:0:{}s:8:\"use_ajax\";b:0;s:6:\"result\";a:0:{}s:12:\"current_page\";N;s:14:\"items_per_page\";N;s:6:\"offset\";N;s:10:\"total_rows\";N;s:17:\"attachment_before\";s:0:\"\";s:16:\"attachment_after\";s:0:\"\";s:12:\"exposed_data\";a:0:{}s:13:\"exposed_input\";a:0:{}s:17:\"exposed_raw_input\";a:0:{}s:8:\"old_view\";a:0:{}s:12:\"parent_views\";a:0:{}s:13:\"is_attachment\";N;s:15:\"current_display\";N;s:5:\"query\";N;s:15:\"display_handler\";N;s:7:\"display\";a:2:{s:7:\"default\";O:13:\"views_display\":8:{s:7:\"handler\";O:28:\"views_plugin_display_default\":9:{s:4:\"view\";r:1;s:8:\"handlers\";a:0:{}s:8:\"extender\";a:0:{}s:7:\"display\";R:36;s:11:\"plugin_type\";s:7:\"display\";s:11:\"plugin_name\";s:7:\"default\";s:7:\"options\";a:38:{s:5:\"title\";s:0:\"\";s:7:\"enabled\";b:1;s:15:\"display_comment\";s:0:\"\";s:9:\"css_class\";s:0:\"\";s:19:\"display_description\";s:0:\"\";s:8:\"use_ajax\";b:0;s:23:\"hide_attachment_summary\";b:0;s:16:\"hide_admin_links\";b:0;s:14:\"items_per_page\";i:10;s:6:\"offset\";i:0;s:9:\"use_pager\";b:0;s:8:\"use_more\";b:0;s:15:\"use_more_always\";b:0;s:13:\"use_more_text\";s:4:\"more\";s:12:\"link_display\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:0;s:14:\"field_language\";s:22:\"***CURRENT_LANGUAGE***\";s:27:\"field_language_add_to_query\";i:1;s:6:\"access\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"cache\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:12:\"exposed_form\";a:2:{s:4:\"type\";s:5:\"basic\";s:7:\"options\";a:0:{}}s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"full\";s:7:\"options\";a:0:{}}s:12:\"style_plugin\";s:7:\"default\";s:13:\"style_options\";a:0:{}s:10:\"row_plugin\";s:6:\"fields\";s:11:\"row_options\";a:0:{}s:13:\"exposed_block\";b:0;s:6:\"header\";a:0:{}s:6:\"footer\";a:0:{}s:5:\"empty\";a:0:{}s:13:\"relationships\";a:0:{}s:6:\"fields\";a:0:{}s:5:\"sorts\";a:0:{}s:9:\"arguments\";a:0:{}s:13:\"filter_groups\";a:2:{s:8:\"operator\";s:3:\"AND\";s:6:\"groups\";a:1:{i:1;s:3:\"AND\";}}s:7:\"filters\";a:0:{}}s:10:\"definition\";a:20:{s:5:\"title\";s:6:\"Master\";s:4:\"help\";s:31:\"Default settings for this view.\";s:7:\"handler\";s:28:\"views_plugin_display_default\";s:5:\"theme\";s:10:\"views_view\";s:5:\"no ui\";b:1;s:9:\"no remove\";b:1;s:2:\"js\";a:6:{i:0;s:12:\"misc/form.js\";i:1;s:16:\"misc/collapse.js\";i:2;s:16:\"misc/textarea.js\";i:3;s:17:\"misc/tabledrag.js\";i:4;s:20:\"misc/autocomplete.js\";i:5;s:40:\"sites/all/modules/ctools/js/dependent.js\";}s:8:\"use ajax\";b:1;s:9:\"use pager\";b:1;s:8:\"use more\";b:1;s:18:\"accept attachments\";b:1;s:10:\"help topic\";s:15:\"display-default\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:32:\"views_plugin_display_default.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:7:\"default\";s:16:\"contextual links\";a:1:{s:8:\"views_ui\";a:2:{s:11:\"parent path\";s:26:\"admin/structure/views/view\";s:19:\"argument properties\";a:1:{i:0;s:4:\"name\";}}}}s:9:\"is_plugin\";b:1;}s:15:\"display_options\";a:13:{s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:1:{s:13:\"query_comment\";b:0;}}s:5:\"title\";s:12:\"Recent posts\";s:6:\"access\";a:2:{s:4:\"type\";s:4:\"perm\";s:4:\"perm\";s:14:\"access content\";}s:5:\"cache\";a:1:{s:4:\"type\";s:4:\"none\";}s:12:\"exposed_form\";a:1:{s:4:\"type\";s:5:\"basic\";}s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"full\";s:7:\"options\";a:1:{s:14:\"items_per_page\";s:2:\"25\";}}s:12:\"style_plugin\";s:5:\"table\";s:13:\"style_options\";a:5:{s:7:\"columns\";a:7:{s:4:\"type\";s:4:\"type\";s:5:\"title\";s:5:\"title\";s:4:\"name\";s:4:\"name\";s:13:\"comment_count\";s:13:\"comment_count\";s:22:\"last_comment_timestamp\";s:22:\"last_comment_timestamp\";s:9:\"timestamp\";s:5:\"title\";s:12:\"new_comments\";s:13:\"comment_count\";}s:7:\"default\";s:22:\"last_comment_timestamp\";s:4:\"info\";a:7:{s:4:\"type\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}s:5:\"title\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:6:\"&nbsp;\";}s:4:\"name\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}s:13:\"comment_count\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:6:\"<br />\";}s:22:\"last_comment_timestamp\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:6:\"&nbsp;\";}s:9:\"timestamp\";a:1:{s:9:\"separator\";s:0:\"\";}s:12:\"new_comments\";a:1:{s:9:\"separator\";s:0:\"\";}}s:8:\"override\";i:1;s:5:\"order\";s:4:\"desc\";}s:13:\"relationships\";a:1:{s:3:\"uid\";a:3:{s:2:\"id\";s:3:\"uid\";s:5:\"table\";s:4:\"node\";s:5:\"field\";s:3:\"uid\";}}s:6:\"fields\";a:7:{s:4:\"type\";a:3:{s:2:\"id\";s:4:\"type\";s:5:\"table\";s:4:\"node\";s:5:\"field\";s:4:\"type\";}s:5:\"title\";a:3:{s:2:\"id\";s:5:\"title\";s:5:\"table\";s:4:\"node\";s:5:\"field\";s:5:\"title\";}s:4:\"name\";a:5:{s:2:\"id\";s:4:\"name\";s:5:\"table\";s:5:\"users\";s:5:\"field\";s:4:\"name\";s:12:\"relationship\";s:3:\"uid\";s:5:\"label\";s:6:\"Author\";}s:13:\"comment_count\";a:4:{s:2:\"id\";s:13:\"comment_count\";s:5:\"table\";s:23:\"node_comment_statistics\";s:5:\"field\";s:13:\"comment_count\";s:5:\"label\";s:7:\"Replies\";}s:22:\"last_comment_timestamp\";a:4:{s:2:\"id\";s:22:\"last_comment_timestamp\";s:5:\"table\";s:23:\"node_comment_statistics\";s:5:\"field\";s:22:\"last_comment_timestamp\";s:5:\"label\";s:9:\"Last Post\";}s:9:\"timestamp\";a:6:{s:2:\"id\";s:9:\"timestamp\";s:5:\"table\";s:7:\"history\";s:5:\"field\";s:9:\"timestamp\";s:5:\"label\";s:0:\"\";s:12:\"link_to_node\";i:0;s:8:\"comments\";i:1;}s:12:\"new_comments\";a:7:{s:2:\"id\";s:12:\"new_comments\";s:5:\"table\";s:4:\"node\";s:5:\"field\";s:12:\"new_comments\";s:5:\"label\";s:0:\"\";s:10:\"hide_empty\";b:1;s:6:\"suffix\";s:4:\" new\";s:15:\"link_to_comment\";i:1;}}s:5:\"sorts\";a:1:{s:22:\"last_comment_timestamp\";a:3:{s:2:\"id\";s:22:\"last_comment_timestamp\";s:5:\"table\";s:23:\"node_comment_statistics\";s:5:\"field\";s:22:\"last_comment_timestamp\";}}s:9:\"arguments\";a:1:{s:9:\"uid_touch\";a:9:{s:2:\"id\";s:9:\"uid_touch\";s:5:\"table\";s:4:\"node\";s:5:\"field\";s:9:\"uid_touch\";s:9:\"exception\";a:1:{s:12:\"title_enable\";i:1;}s:12:\"title_enable\";i:1;s:5:\"title\";s:19:\"Recent posts for %1\";s:21:\"default_argument_type\";s:5:\"fixed\";s:7:\"summary\";a:1:{s:6:\"format\";s:15:\"default_summary\";}s:18:\"specify_validation\";i:1;}}s:7:\"filters\";a:1:{s:6:\"status\";a:6:{s:2:\"id\";s:6:\"status\";s:5:\"table\";s:4:\"node\";s:5:\"field\";s:6:\"status\";s:5:\"value\";s:1:\"1\";s:5:\"group\";i:0;s:6:\"expose\";a:1:{s:8:\"operator\";b:0;}}}}s:8:\"db_table\";s:13:\"views_display\";s:3:\"vid\";i:0;s:2:\"id\";s:7:\"default\";s:13:\"display_title\";s:6:\"Master\";s:14:\"display_plugin\";s:7:\"default\";s:8:\"position\";i:0;}s:4:\"page\";O:13:\"views_display\":8:{s:7:\"handler\";O:25:\"views_plugin_display_page\":10:{s:4:\"view\";r:1;s:8:\"handlers\";a:0:{}s:8:\"extender\";a:0:{}s:7:\"display\";R:253;s:11:\"plugin_type\";s:7:\"display\";s:11:\"plugin_name\";s:4:\"page\";s:7:\"options\";a:42:{s:8:\"defaults\";a:33:{s:6:\"access\";b:1;s:5:\"cache\";b:1;s:5:\"query\";b:1;s:5:\"title\";b:1;s:9:\"css_class\";b:1;s:19:\"display_description\";b:0;s:8:\"use_ajax\";b:1;s:23:\"hide_attachment_summary\";b:1;s:16:\"hide_admin_links\";b:1;s:5:\"pager\";b:1;s:13:\"pager_options\";b:1;s:8:\"use_more\";b:1;s:15:\"use_more_always\";b:1;s:15:\"open_new_window\";b:0;s:13:\"use_more_text\";b:1;s:12:\"exposed_form\";b:1;s:20:\"exposed_form_options\";b:1;s:12:\"link_display\";b:1;s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:1;s:12:\"style_plugin\";b:1;s:13:\"style_options\";b:1;s:10:\"row_plugin\";b:1;s:11:\"row_options\";b:1;s:6:\"header\";b:1;s:6:\"footer\";b:1;s:5:\"empty\";b:1;s:13:\"relationships\";b:1;s:6:\"fields\";b:1;s:5:\"sorts\";b:1;s:9:\"arguments\";b:1;s:7:\"filters\";b:1;s:13:\"filter_groups\";b:1;}s:5:\"title\";s:0:\"\";s:7:\"enabled\";b:1;s:15:\"display_comment\";s:0:\"\";s:9:\"css_class\";s:0:\"\";s:19:\"display_description\";s:0:\"\";s:8:\"use_ajax\";b:0;s:23:\"hide_attachment_summary\";b:0;s:16:\"hide_admin_links\";b:0;s:14:\"items_per_page\";i:10;s:6:\"offset\";i:0;s:9:\"use_pager\";b:0;s:8:\"use_more\";b:0;s:15:\"use_more_always\";b:0;s:13:\"use_more_text\";s:4:\"more\";s:12:\"link_display\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:0;s:14:\"field_language\";s:22:\"***CURRENT_LANGUAGE***\";s:27:\"field_language_add_to_query\";i:1;s:6:\"access\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"cache\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:12:\"exposed_form\";a:2:{s:4:\"type\";s:5:\"basic\";s:7:\"options\";a:0:{}}s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"full\";s:7:\"options\";a:0:{}}s:12:\"style_plugin\";s:7:\"default\";s:13:\"style_options\";a:0:{}s:10:\"row_plugin\";s:6:\"fields\";s:11:\"row_options\";a:0:{}s:13:\"exposed_block\";b:0;s:6:\"header\";a:0:{}s:6:\"footer\";a:0:{}s:5:\"empty\";a:0:{}s:13:\"relationships\";a:0:{}s:6:\"fields\";a:0:{}s:5:\"sorts\";a:0:{}s:9:\"arguments\";a:0:{}s:13:\"filter_groups\";a:2:{s:8:\"operator\";s:3:\"AND\";s:6:\"groups\";a:1:{i:1;s:3:\"AND\";}}s:7:\"filters\";a:0:{}s:4:\"path\";s:0:\"\";s:4:\"menu\";a:7:{s:4:\"type\";s:4:\"none\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:6:\"weight\";i:0;s:4:\"name\";s:10:\"navigation\";s:7:\"context\";s:0:\"\";s:19:\"context_only_inline\";b:0;}s:11:\"tab_options\";a:5:{s:4:\"type\";s:4:\"none\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:6:\"weight\";i:0;s:4:\"name\";s:10:\"navigation\";}}s:10:\"definition\";a:20:{s:5:\"title\";s:4:\"Page\";s:4:\"help\";s:54:\"Display the view as a page, with a URL and menu links.\";s:7:\"handler\";s:25:\"views_plugin_display_page\";s:5:\"theme\";s:10:\"views_view\";s:14:\"uses hook menu\";b:1;s:26:\"contextual links locations\";a:1:{i:0;s:4:\"page\";}s:8:\"use ajax\";b:1;s:9:\"use pager\";b:1;s:8:\"use more\";b:1;s:18:\"accept attachments\";b:1;s:5:\"admin\";s:4:\"Page\";s:10:\"help topic\";s:12:\"display-page\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:29:\"views_plugin_display_page.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"page\";s:16:\"contextual links\";a:1:{s:8:\"views_ui\";a:2:{s:11:\"parent path\";s:26:\"admin/structure/views/view\";s:19:\"argument properties\";a:1:{i:0;s:4:\"name\";}}}}s:9:\"is_plugin\";b:1;s:15:\"default_display\";R:37;}s:15:\"display_options\";a:3:{s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:4:\"path\";s:7:\"tracker\";s:4:\"menu\";a:2:{s:4:\"type\";s:6:\"normal\";s:5:\"title\";s:12:\"Recent posts\";}}s:8:\"db_table\";s:13:\"views_display\";s:3:\"vid\";i:0;s:2:\"id\";s:4:\"page\";s:13:\"display_title\";s:4:\"Page\";s:14:\"display_plugin\";s:4:\"page\";s:8:\"position\";i:0;}}s:12:\"style_plugin\";N;s:13:\"style_options\";N;s:9:\"row_index\";N;s:12:\"override_url\";N;s:13:\"override_path\";N;s:13:\"base_database\";N;s:5:\"field\";N;s:8:\"argument\";N;s:4:\"sort\";N;s:6:\"filter\";N;s:12:\"relationship\";N;s:6:\"header\";N;s:6:\"footer\";N;s:5:\"empty\";N;s:13:\"export_module\";s:7:\"comment\";}',0,1538750977,1),('ctools_export:views_view:user_location_table','O:4:\"view\":52:{s:8:\"db_table\";s:10:\"views_view\";s:10:\"base_table\";s:5:\"users\";s:10:\"base_field\";s:3:\"nid\";s:4:\"name\";s:19:\"user_location_table\";s:3:\"vid\";s:0:\"\";s:11:\"description\";s:20:\"User location table.\";s:3:\"tag\";s:0:\"\";s:10:\"human_name\";s:0:\"\";s:4:\"core\";i:0;s:11:\"api_version\";i:2;s:8:\"disabled\";b:1;s:5:\"built\";b:0;s:8:\"executed\";b:0;s:7:\"editing\";b:0;s:4:\"args\";a:0:{}s:10:\"build_info\";a:0:{}s:8:\"use_ajax\";b:0;s:6:\"result\";a:0:{}s:12:\"current_page\";N;s:14:\"items_per_page\";N;s:6:\"offset\";N;s:10:\"total_rows\";N;s:17:\"attachment_before\";s:0:\"\";s:16:\"attachment_after\";s:0:\"\";s:12:\"exposed_data\";a:0:{}s:13:\"exposed_input\";a:0:{}s:17:\"exposed_raw_input\";a:0:{}s:8:\"old_view\";a:0:{}s:12:\"parent_views\";a:0:{}s:13:\"is_attachment\";N;s:15:\"current_display\";N;s:5:\"query\";N;s:15:\"display_handler\";N;s:7:\"display\";a:2:{s:7:\"default\";O:13:\"views_display\":8:{s:7:\"handler\";O:28:\"views_plugin_display_default\":9:{s:4:\"view\";r:1;s:8:\"handlers\";a:0:{}s:8:\"extender\";a:0:{}s:7:\"display\";R:36;s:11:\"plugin_type\";s:7:\"display\";s:11:\"plugin_name\";s:7:\"default\";s:7:\"options\";a:40:{s:5:\"title\";s:0:\"\";s:7:\"enabled\";b:1;s:15:\"display_comment\";s:0:\"\";s:9:\"css_class\";s:0:\"\";s:19:\"display_description\";s:0:\"\";s:8:\"use_ajax\";b:0;s:23:\"hide_attachment_summary\";b:0;s:16:\"hide_admin_links\";b:0;s:14:\"items_per_page\";N;s:6:\"offset\";N;s:9:\"use_pager\";N;s:8:\"use_more\";b:0;s:15:\"use_more_always\";b:0;s:13:\"use_more_text\";s:4:\"more\";s:12:\"link_display\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:0;s:14:\"field_language\";s:22:\"***CURRENT_LANGUAGE***\";s:27:\"field_language_add_to_query\";i:1;s:6:\"access\";a:2:{s:4:\"type\";s:4:\"perm\";s:4:\"perm\";s:24:\"view user location table\";}s:5:\"cache\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:12:\"exposed_form\";a:2:{s:4:\"type\";s:5:\"basic\";s:7:\"options\";a:0:{}}s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"some\";s:7:\"options\";a:2:{s:6:\"offset\";i:0;s:14:\"items_per_page\";i:10;}}s:12:\"style_plugin\";s:5:\"table\";s:13:\"style_options\";a:7:{s:8:\"grouping\";s:0:\"\";s:8:\"override\";i:1;s:6:\"sticky\";i:0;s:5:\"order\";s:3:\"asc\";s:7:\"columns\";a:6:{s:4:\"name\";s:4:\"name\";s:6:\"street\";s:6:\"street\";s:4:\"city\";s:4:\"city\";s:8:\"province\";s:8:\"province\";s:11:\"postal_code\";s:11:\"postal_code\";s:7:\"country\";s:7:\"country\";}s:4:\"info\";a:6:{s:4:\"name\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}s:6:\"street\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}s:4:\"city\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}s:8:\"province\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}s:11:\"postal_code\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}s:7:\"country\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}}s:7:\"default\";s:2:\"-1\";}s:10:\"row_plugin\";s:6:\"fields\";s:11:\"row_options\";a:0:{}s:13:\"exposed_block\";b:0;s:6:\"header\";a:0:{}s:6:\"footer\";a:0:{}s:5:\"empty\";a:0:{}s:13:\"relationships\";a:0:{}s:6:\"fields\";a:6:{s:4:\"name\";a:8:{s:5:\"label\";s:4:\"Name\";s:12:\"link_to_user\";i:1;s:7:\"exclude\";i:0;s:2:\"id\";s:4:\"name\";s:5:\"table\";s:5:\"users\";s:5:\"field\";s:4:\"name\";s:8:\"override\";a:1:{s:6:\"button\";s:8:\"Override\";}s:12:\"relationship\";s:4:\"none\";}s:6:\"street\";a:8:{s:5:\"label\";s:6:\"Street\";s:5:\"style\";s:4:\"both\";s:7:\"exclude\";i:0;s:2:\"id\";s:6:\"street\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:6:\"street\";s:8:\"override\";a:1:{s:6:\"button\";s:8:\"Override\";}s:12:\"relationship\";s:4:\"none\";}s:4:\"city\";a:7:{s:5:\"label\";s:4:\"City\";s:7:\"exclude\";i:0;s:2:\"id\";s:4:\"city\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:4:\"city\";s:8:\"override\";a:1:{s:6:\"button\";s:8:\"Override\";}s:12:\"relationship\";s:4:\"none\";}s:8:\"province\";a:8:{s:5:\"label\";s:8:\"Province\";s:5:\"style\";s:4:\"name\";s:7:\"exclude\";i:0;s:2:\"id\";s:8:\"province\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:8:\"province\";s:8:\"override\";a:1:{s:6:\"button\";s:8:\"Override\";}s:12:\"relationship\";s:4:\"none\";}s:11:\"postal_code\";a:7:{s:5:\"label\";s:11:\"Postal Code\";s:7:\"exclude\";i:0;s:2:\"id\";s:11:\"postal_code\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:11:\"postal_code\";s:8:\"override\";a:1:{s:6:\"button\";s:8:\"Override\";}s:12:\"relationship\";s:4:\"none\";}s:7:\"country\";a:8:{s:5:\"label\";s:7:\"Country\";s:5:\"style\";s:4:\"name\";s:7:\"exclude\";i:0;s:2:\"id\";s:7:\"country\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:7:\"country\";s:8:\"override\";a:1:{s:6:\"button\";s:8:\"Override\";}s:12:\"relationship\";s:4:\"none\";}}s:5:\"sorts\";a:0:{}s:9:\"arguments\";a:0:{}s:13:\"filter_groups\";a:2:{s:8:\"operator\";s:3:\"AND\";s:6:\"groups\";a:1:{i:1;s:3:\"AND\";}}s:7:\"filters\";a:2:{s:6:\"status\";a:9:{s:8:\"operator\";s:1:\"=\";s:5:\"value\";i:1;s:5:\"group\";s:1:\"0\";s:7:\"exposed\";b:0;s:6:\"expose\";a:2:{s:8:\"operator\";b:0;s:5:\"label\";s:0:\"\";}s:2:\"id\";s:6:\"status\";s:5:\"table\";s:5:\"users\";s:5:\"field\";s:6:\"status\";s:12:\"relationship\";s:4:\"none\";}s:3:\"lid\";a:9:{s:8:\"operator\";s:9:\"not empty\";s:5:\"value\";a:3:{s:5:\"value\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:5:\"group\";s:1:\"0\";s:7:\"exposed\";b:0;s:6:\"expose\";a:2:{s:8:\"operator\";b:0;s:5:\"label\";s:0:\"\";}s:2:\"id\";s:3:\"lid\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:3:\"lid\";s:12:\"relationship\";s:4:\"none\";}}s:8:\"defaults\";a:9:{s:6:\"fields\";b:0;s:7:\"filters\";b:0;s:13:\"filter_groups\";b:0;s:6:\"access\";b:0;s:14:\"access_options\";b:0;s:12:\"style_plugin\";b:0;s:13:\"style_options\";b:0;s:10:\"row_plugin\";b:0;s:11:\"row_options\";b:0;}s:14:\"access_options\";N;}s:10:\"definition\";a:20:{s:5:\"title\";s:6:\"Master\";s:4:\"help\";s:31:\"Default settings for this view.\";s:7:\"handler\";s:28:\"views_plugin_display_default\";s:5:\"theme\";s:10:\"views_view\";s:5:\"no ui\";b:1;s:9:\"no remove\";b:1;s:2:\"js\";a:6:{i:0;s:12:\"misc/form.js\";i:1;s:16:\"misc/collapse.js\";i:2;s:16:\"misc/textarea.js\";i:3;s:17:\"misc/tabledrag.js\";i:4;s:20:\"misc/autocomplete.js\";i:5;s:40:\"sites/all/modules/ctools/js/dependent.js\";}s:8:\"use ajax\";b:1;s:9:\"use pager\";b:1;s:8:\"use more\";b:1;s:18:\"accept attachments\";b:1;s:10:\"help topic\";s:15:\"display-default\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:32:\"views_plugin_display_default.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:7:\"default\";s:16:\"contextual links\";a:1:{s:8:\"views_ui\";a:2:{s:11:\"parent path\";s:26:\"admin/structure/views/view\";s:19:\"argument properties\";a:1:{i:0;s:4:\"name\";}}}}s:9:\"is_plugin\";b:1;}s:15:\"display_options\";a:15:{s:14:\"items_per_page\";N;s:6:\"offset\";N;s:9:\"use_pager\";N;s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"some\";s:7:\"options\";a:2:{s:6:\"offset\";i:0;s:14:\"items_per_page\";i:10;}}s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:6:\"fields\";a:6:{s:4:\"name\";a:8:{s:5:\"label\";s:4:\"Name\";s:12:\"link_to_user\";i:1;s:7:\"exclude\";i:0;s:2:\"id\";s:4:\"name\";s:5:\"table\";s:5:\"users\";s:5:\"field\";s:4:\"name\";s:8:\"override\";a:1:{s:6:\"button\";s:8:\"Override\";}s:12:\"relationship\";s:4:\"none\";}s:6:\"street\";a:8:{s:5:\"label\";s:6:\"Street\";s:5:\"style\";s:4:\"both\";s:7:\"exclude\";i:0;s:2:\"id\";s:6:\"street\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:6:\"street\";s:8:\"override\";a:1:{s:6:\"button\";s:8:\"Override\";}s:12:\"relationship\";s:4:\"none\";}s:4:\"city\";a:7:{s:5:\"label\";s:4:\"City\";s:7:\"exclude\";i:0;s:2:\"id\";s:4:\"city\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:4:\"city\";s:8:\"override\";a:1:{s:6:\"button\";s:8:\"Override\";}s:12:\"relationship\";s:4:\"none\";}s:8:\"province\";a:8:{s:5:\"label\";s:8:\"Province\";s:5:\"style\";s:4:\"name\";s:7:\"exclude\";i:0;s:2:\"id\";s:8:\"province\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:8:\"province\";s:8:\"override\";a:1:{s:6:\"button\";s:8:\"Override\";}s:12:\"relationship\";s:4:\"none\";}s:11:\"postal_code\";a:7:{s:5:\"label\";s:11:\"Postal Code\";s:7:\"exclude\";i:0;s:2:\"id\";s:11:\"postal_code\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:11:\"postal_code\";s:8:\"override\";a:1:{s:6:\"button\";s:8:\"Override\";}s:12:\"relationship\";s:4:\"none\";}s:7:\"country\";a:8:{s:5:\"label\";s:7:\"Country\";s:5:\"style\";s:4:\"name\";s:7:\"exclude\";i:0;s:2:\"id\";s:7:\"country\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:7:\"country\";s:8:\"override\";a:1:{s:6:\"button\";s:8:\"Override\";}s:12:\"relationship\";s:4:\"none\";}}s:8:\"defaults\";a:9:{s:6:\"fields\";b:0;s:7:\"filters\";b:0;s:13:\"filter_groups\";b:0;s:6:\"access\";b:0;s:14:\"access_options\";b:0;s:12:\"style_plugin\";b:0;s:13:\"style_options\";b:0;s:10:\"row_plugin\";b:0;s:11:\"row_options\";b:0;}s:7:\"filters\";a:2:{s:6:\"status\";a:9:{s:8:\"operator\";s:1:\"=\";s:5:\"value\";i:1;s:5:\"group\";s:1:\"0\";s:7:\"exposed\";b:0;s:6:\"expose\";a:2:{s:8:\"operator\";b:0;s:5:\"label\";s:0:\"\";}s:2:\"id\";s:6:\"status\";s:5:\"table\";s:5:\"users\";s:5:\"field\";s:6:\"status\";s:12:\"relationship\";s:4:\"none\";}s:3:\"lid\";a:9:{s:8:\"operator\";s:9:\"not empty\";s:5:\"value\";a:3:{s:5:\"value\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:5:\"group\";s:1:\"0\";s:7:\"exposed\";b:0;s:6:\"expose\";a:2:{s:8:\"operator\";b:0;s:5:\"label\";s:0:\"\";}s:2:\"id\";s:3:\"lid\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:3:\"lid\";s:12:\"relationship\";s:4:\"none\";}}s:13:\"filter_groups\";a:2:{s:8:\"operator\";s:3:\"AND\";s:6:\"groups\";a:1:{i:1;s:3:\"AND\";}}s:6:\"access\";a:2:{s:4:\"type\";s:4:\"perm\";s:4:\"perm\";s:24:\"view user location table\";}s:14:\"access_options\";N;s:12:\"style_plugin\";s:5:\"table\";s:13:\"style_options\";a:7:{s:8:\"grouping\";s:0:\"\";s:8:\"override\";i:1;s:6:\"sticky\";i:0;s:5:\"order\";s:3:\"asc\";s:7:\"columns\";a:6:{s:4:\"name\";s:4:\"name\";s:6:\"street\";s:6:\"street\";s:4:\"city\";s:4:\"city\";s:8:\"province\";s:8:\"province\";s:11:\"postal_code\";s:11:\"postal_code\";s:7:\"country\";s:7:\"country\";}s:4:\"info\";a:6:{s:4:\"name\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}s:6:\"street\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}s:4:\"city\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}s:8:\"province\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}s:11:\"postal_code\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}s:7:\"country\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}}s:7:\"default\";s:2:\"-1\";}s:10:\"row_plugin\";s:6:\"fields\";s:11:\"row_options\";a:0:{}}s:8:\"db_table\";s:13:\"views_display\";s:3:\"vid\";i:0;s:2:\"id\";s:7:\"default\";s:13:\"display_title\";s:8:\"Defaults\";s:14:\"display_plugin\";s:7:\"default\";s:8:\"position\";i:0;}s:6:\"page_1\";O:13:\"views_display\":8:{s:7:\"handler\";O:25:\"views_plugin_display_page\":10:{s:4:\"view\";r:1;s:8:\"handlers\";a:0:{}s:8:\"extender\";a:0:{}s:7:\"display\";R:413;s:11:\"plugin_type\";s:7:\"display\";s:11:\"plugin_name\";s:4:\"page\";s:7:\"options\";a:42:{s:8:\"defaults\";a:33:{s:6:\"access\";b:1;s:5:\"cache\";b:1;s:5:\"query\";b:1;s:5:\"title\";b:1;s:9:\"css_class\";b:1;s:19:\"display_description\";b:0;s:8:\"use_ajax\";b:1;s:23:\"hide_attachment_summary\";b:1;s:16:\"hide_admin_links\";b:1;s:5:\"pager\";b:1;s:13:\"pager_options\";b:1;s:8:\"use_more\";b:1;s:15:\"use_more_always\";b:1;s:15:\"open_new_window\";b:0;s:13:\"use_more_text\";b:1;s:12:\"exposed_form\";b:1;s:20:\"exposed_form_options\";b:1;s:12:\"link_display\";b:1;s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:1;s:12:\"style_plugin\";b:1;s:13:\"style_options\";b:1;s:10:\"row_plugin\";b:1;s:11:\"row_options\";b:1;s:6:\"header\";b:1;s:6:\"footer\";b:1;s:5:\"empty\";b:1;s:13:\"relationships\";b:1;s:6:\"fields\";b:1;s:5:\"sorts\";b:1;s:9:\"arguments\";b:1;s:7:\"filters\";b:1;s:13:\"filter_groups\";b:1;}s:5:\"title\";s:0:\"\";s:7:\"enabled\";b:1;s:15:\"display_comment\";s:0:\"\";s:9:\"css_class\";s:0:\"\";s:19:\"display_description\";s:0:\"\";s:8:\"use_ajax\";b:0;s:23:\"hide_attachment_summary\";b:0;s:16:\"hide_admin_links\";b:0;s:14:\"items_per_page\";N;s:6:\"offset\";N;s:9:\"use_pager\";N;s:8:\"use_more\";b:0;s:15:\"use_more_always\";b:0;s:13:\"use_more_text\";s:4:\"more\";s:12:\"link_display\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:0;s:14:\"field_language\";s:22:\"***CURRENT_LANGUAGE***\";s:27:\"field_language_add_to_query\";i:1;s:6:\"access\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"cache\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:12:\"exposed_form\";a:2:{s:4:\"type\";s:5:\"basic\";s:7:\"options\";a:0:{}}s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"some\";s:7:\"options\";a:2:{s:6:\"offset\";i:0;s:14:\"items_per_page\";i:10;}}s:12:\"style_plugin\";s:7:\"default\";s:13:\"style_options\";a:0:{}s:10:\"row_plugin\";s:6:\"fields\";s:11:\"row_options\";a:0:{}s:13:\"exposed_block\";b:0;s:6:\"header\";a:0:{}s:6:\"footer\";a:0:{}s:5:\"empty\";a:0:{}s:13:\"relationships\";a:0:{}s:6:\"fields\";a:0:{}s:5:\"sorts\";a:0:{}s:9:\"arguments\";a:0:{}s:13:\"filter_groups\";a:2:{s:8:\"operator\";s:3:\"AND\";s:6:\"groups\";a:1:{i:1;s:3:\"AND\";}}s:7:\"filters\";a:0:{}s:4:\"path\";s:14:\"location/users\";s:4:\"menu\";a:3:{s:4:\"type\";s:6:\"normal\";s:5:\"title\";s:19:\"User location table\";s:6:\"weight\";s:1:\"0\";}s:11:\"tab_options\";a:3:{s:4:\"type\";s:4:\"none\";s:5:\"title\";s:0:\"\";s:6:\"weight\";i:0;}}s:10:\"definition\";a:20:{s:5:\"title\";s:4:\"Page\";s:4:\"help\";s:54:\"Display the view as a page, with a URL and menu links.\";s:7:\"handler\";s:25:\"views_plugin_display_page\";s:5:\"theme\";s:10:\"views_view\";s:14:\"uses hook menu\";b:1;s:26:\"contextual links locations\";a:1:{i:0;s:4:\"page\";}s:8:\"use ajax\";b:1;s:9:\"use pager\";b:1;s:8:\"use more\";b:1;s:18:\"accept attachments\";b:1;s:5:\"admin\";s:4:\"Page\";s:10:\"help topic\";s:12:\"display-page\";s:6:\"module\";s:5:\"views\";s:10:\"theme path\";s:29:\"sites/all/modules/views/theme\";s:10:\"theme file\";s:9:\"theme.inc\";s:4:\"path\";s:31:\"sites/all/modules/views/plugins\";s:4:\"file\";s:29:\"views_plugin_display_page.inc\";s:6:\"parent\";s:6:\"parent\";s:4:\"name\";s:4:\"page\";s:16:\"contextual links\";a:1:{s:8:\"views_ui\";a:2:{s:11:\"parent path\";s:26:\"admin/structure/views/view\";s:19:\"argument properties\";a:1:{i:0;s:4:\"name\";}}}}s:9:\"is_plugin\";b:1;s:15:\"default_display\";R:37;}s:15:\"display_options\";a:8:{s:14:\"items_per_page\";N;s:6:\"offset\";N;s:9:\"use_pager\";N;s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"some\";s:7:\"options\";a:2:{s:6:\"offset\";i:0;s:14:\"items_per_page\";i:10;}}s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:4:\"path\";s:14:\"location/users\";s:4:\"menu\";a:3:{s:4:\"type\";s:6:\"normal\";s:5:\"title\";s:19:\"User location table\";s:6:\"weight\";s:1:\"0\";}s:11:\"tab_options\";a:3:{s:4:\"type\";s:4:\"none\";s:5:\"title\";s:0:\"\";s:6:\"weight\";i:0;}}s:8:\"db_table\";s:13:\"views_display\";s:3:\"vid\";i:0;s:2:\"id\";s:6:\"page_1\";s:13:\"display_title\";s:4:\"Page\";s:14:\"display_plugin\";s:4:\"page\";s:8:\"position\";i:0;}}s:12:\"style_plugin\";N;s:13:\"style_options\";N;s:9:\"row_index\";N;s:12:\"override_url\";N;s:13:\"override_path\";N;s:13:\"base_database\";N;s:5:\"field\";N;s:8:\"argument\";N;s:4:\"sort\";N;s:6:\"filter\";N;s:12:\"relationship\";N;s:6:\"header\";N;s:6:\"footer\";N;s:5:\"empty\";N;s:8:\"view_php\";s:0:\"\";s:12:\"is_cacheable\";b:0;s:7:\"changed\";b:1;s:13:\"export_module\";s:8:\"location\";}',0,1538750977,1),('ctools_export_index:views_view','a:9:{i:0;s:15:\"comments_recent\";i:1;s:7:\"tracker\";i:2;s:14:\"location_table\";i:3;s:18:\"location_directory\";i:4;s:19:\"user_location_table\";i:5;s:7:\"archive\";i:6;s:9:\"frontpage\";i:7;s:8:\"glossary\";i:8;s:13:\"taxonomy_term\";}',0,1538750977,1),('entity_base_tables:en','a:6:{i:0;s:7:\"comment\";i:1;s:4:\"node\";i:2;s:13:\"node_revision\";i:3;s:18:\"taxonomy_term_data\";i:4;s:5:\"users\";i:5;s:12:\"file_managed\";}',0,1538750977,1),('entity_base_tables:it','a:6:{i:0;s:7:\"comment\";i:1;s:4:\"node\";i:2;s:13:\"node_revision\";i:3;s:18:\"taxonomy_term_data\";i:4;s:5:\"users\";i:5;s:12:\"file_managed\";}',0,1538751382,1),('unpack_options:151dbb5ffe94cc163b1b8258bade715c:it','a:38:{s:5:\"title\";s:0:\"\";s:7:\"enabled\";b:1;s:15:\"display_comment\";s:0:\"\";s:9:\"css_class\";s:0:\"\";s:19:\"display_description\";s:0:\"\";s:8:\"use_ajax\";b:0;s:23:\"hide_attachment_summary\";b:0;s:16:\"hide_admin_links\";b:0;s:14:\"items_per_page\";i:10;s:6:\"offset\";i:0;s:9:\"use_pager\";b:0;s:8:\"use_more\";b:0;s:15:\"use_more_always\";b:0;s:13:\"use_more_text\";s:4:\"more\";s:12:\"link_display\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:0;s:14:\"field_language\";s:22:\"***CURRENT_LANGUAGE***\";s:27:\"field_language_add_to_query\";i:1;s:6:\"access\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"cache\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:12:\"exposed_form\";a:2:{s:4:\"type\";s:5:\"basic\";s:7:\"options\";a:0:{}}s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"full\";s:7:\"options\";a:0:{}}s:12:\"style_plugin\";s:7:\"default\";s:13:\"style_options\";a:0:{}s:10:\"row_plugin\";s:6:\"fields\";s:11:\"row_options\";a:0:{}s:13:\"exposed_block\";b:0;s:6:\"header\";a:0:{}s:6:\"footer\";a:0:{}s:5:\"empty\";a:0:{}s:13:\"relationships\";a:0:{}s:6:\"fields\";a:1:{s:3:\"lid\";a:3:{s:5:\"table\";s:8:\"location\";s:5:\"field\";s:3:\"lid\";s:2:\"id\";s:3:\"lid\";}}s:5:\"sorts\";a:0:{}s:9:\"arguments\";a:0:{}s:13:\"filter_groups\";a:2:{s:8:\"operator\";s:3:\"AND\";s:6:\"groups\";a:1:{i:1;s:3:\"AND\";}}s:7:\"filters\";a:0:{}}',0,1538756379,1),('unpack_options:4009640be90a72e2d179258c4b462a32:en','a:45:{s:8:\"defaults\";a:36:{s:6:\"access\";b:1;s:5:\"cache\";b:1;s:5:\"query\";b:1;s:5:\"title\";b:1;s:9:\"css_class\";b:1;s:19:\"display_description\";b:0;s:8:\"use_ajax\";b:1;s:23:\"hide_attachment_summary\";b:1;s:16:\"hide_admin_links\";b:1;s:5:\"pager\";b:0;s:13:\"pager_options\";b:1;s:8:\"use_more\";b:1;s:15:\"use_more_always\";b:1;s:15:\"open_new_window\";b:0;s:13:\"use_more_text\";b:1;s:12:\"exposed_form\";b:1;s:20:\"exposed_form_options\";b:1;s:12:\"link_display\";b:1;s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:1;s:12:\"style_plugin\";b:1;s:13:\"style_options\";b:1;s:10:\"row_plugin\";b:1;s:11:\"row_options\";b:1;s:6:\"header\";b:1;s:6:\"footer\";b:1;s:5:\"empty\";b:1;s:13:\"relationships\";b:1;s:6:\"fields\";b:1;s:5:\"sorts\";b:1;s:9:\"arguments\";b:1;s:7:\"filters\";b:1;s:13:\"filter_groups\";b:1;s:9:\"use_pager\";b:0;s:14:\"items_per_page\";b:0;s:6:\"offset\";b:0;}s:5:\"title\";s:0:\"\";s:7:\"enabled\";b:1;s:15:\"display_comment\";s:0:\"\";s:9:\"css_class\";s:0:\"\";s:19:\"display_description\";s:0:\"\";s:8:\"use_ajax\";b:0;s:23:\"hide_attachment_summary\";b:0;s:16:\"hide_admin_links\";b:0;s:14:\"items_per_page\";i:10;s:6:\"offset\";i:0;s:9:\"use_pager\";b:0;s:8:\"use_more\";b:0;s:15:\"use_more_always\";b:0;s:13:\"use_more_text\";s:4:\"more\";s:12:\"link_display\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:0;s:14:\"field_language\";s:22:\"***CURRENT_LANGUAGE***\";s:27:\"field_language_add_to_query\";i:1;s:6:\"access\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"cache\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:12:\"exposed_form\";a:2:{s:4:\"type\";s:5:\"basic\";s:7:\"options\";a:0:{}}s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"some\";s:7:\"options\";a:0:{}}s:12:\"style_plugin\";s:7:\"default\";s:13:\"style_options\";a:0:{}s:10:\"row_plugin\";s:6:\"fields\";s:11:\"row_options\";a:0:{}s:13:\"exposed_block\";b:0;s:6:\"header\";a:0:{}s:6:\"footer\";a:0:{}s:5:\"empty\";a:0:{}s:13:\"relationships\";a:0:{}s:6:\"fields\";a:0:{}s:5:\"sorts\";a:0:{}s:9:\"arguments\";a:0:{}s:13:\"filter_groups\";a:2:{s:8:\"operator\";s:3:\"AND\";s:6:\"groups\";a:1:{i:1;s:3:\"AND\";}}s:7:\"filters\";a:0:{}s:8:\"displays\";a:0:{}s:19:\"attachment_position\";s:6:\"before\";s:17:\"inherit_arguments\";b:1;s:23:\"inherit_exposed_filters\";b:0;s:13:\"inherit_pager\";b:0;s:12:\"render_pager\";b:0;}',0,1538750977,1),('unpack_options:582eca9eda274e2a37dee44ffef3781e:en','a:38:{s:5:\"title\";s:8:\"Articles\";s:7:\"enabled\";b:1;s:15:\"display_comment\";s:0:\"\";s:9:\"css_class\";s:0:\"\";s:19:\"display_description\";s:0:\"\";s:8:\"use_ajax\";b:0;s:23:\"hide_attachment_summary\";b:0;s:16:\"hide_admin_links\";b:0;s:14:\"items_per_page\";i:10;s:6:\"offset\";i:0;s:9:\"use_pager\";b:0;s:8:\"use_more\";b:0;s:15:\"use_more_always\";b:0;s:13:\"use_more_text\";s:4:\"more\";s:12:\"link_display\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:0;s:14:\"field_language\";s:22:\"***CURRENT_LANGUAGE***\";s:27:\"field_language_add_to_query\";i:1;s:6:\"access\";a:1:{s:4:\"type\";s:4:\"perm\";}s:5:\"cache\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:12:\"exposed_form\";a:2:{s:4:\"type\";s:5:\"basic\";s:7:\"options\";a:0:{}}s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"full\";s:7:\"options\";a:1:{s:14:\"items_per_page\";s:2:\"10\";}}s:12:\"style_plugin\";s:7:\"default\";s:13:\"style_options\";a:0:{}s:10:\"row_plugin\";s:6:\"fields\";s:11:\"row_options\";a:0:{}s:13:\"exposed_block\";b:0;s:6:\"header\";a:0:{}s:6:\"footer\";a:0:{}s:5:\"empty\";a:0:{}s:13:\"relationships\";a:0:{}s:6:\"fields\";a:1:{s:5:\"title\";a:8:{s:2:\"id\";s:5:\"title\";s:5:\"table\";s:4:\"node\";s:5:\"field\";s:5:\"title\";s:5:\"label\";s:0:\"\";s:5:\"alter\";a:8:{s:10:\"alter_text\";i:0;s:9:\"make_link\";i:0;s:8:\"absolute\";i:0;s:4:\"trim\";i:0;s:13:\"word_boundary\";i:0;s:8:\"ellipsis\";i:0;s:10:\"strip_tags\";i:0;s:4:\"html\";i:0;}s:10:\"hide_empty\";i:0;s:10:\"empty_zero\";i:0;s:12:\"link_to_node\";i:1;}}s:5:\"sorts\";a:1:{s:7:\"created\";a:4:{s:2:\"id\";s:7:\"created\";s:5:\"table\";s:4:\"node\";s:5:\"field\";s:7:\"created\";s:5:\"order\";s:4:\"DESC\";}}s:9:\"arguments\";a:0:{}s:13:\"filter_groups\";a:2:{s:8:\"operator\";s:3:\"AND\";s:6:\"groups\";a:1:{i:1;s:3:\"AND\";}}s:7:\"filters\";a:2:{s:6:\"status\";a:6:{s:5:\"value\";i:1;s:5:\"table\";s:4:\"node\";s:5:\"field\";s:6:\"status\";s:2:\"id\";s:6:\"status\";s:6:\"expose\";a:1:{s:8:\"operator\";b:0;}s:5:\"group\";i:1;}s:4:\"type\";a:4:{s:2:\"id\";s:4:\"type\";s:5:\"table\";s:4:\"node\";s:5:\"field\";s:4:\"type\";s:5:\"value\";a:1:{s:7:\"article\";s:7:\"article\";}}}}',0,1538750977,1),('unpack_options:582eca9eda274e2a37dee44ffef3781e:it','a:38:{s:5:\"title\";s:8:\"Articles\";s:7:\"enabled\";b:1;s:15:\"display_comment\";s:0:\"\";s:9:\"css_class\";s:0:\"\";s:19:\"display_description\";s:0:\"\";s:8:\"use_ajax\";b:0;s:23:\"hide_attachment_summary\";b:0;s:16:\"hide_admin_links\";b:0;s:14:\"items_per_page\";i:10;s:6:\"offset\";i:0;s:9:\"use_pager\";b:0;s:8:\"use_more\";b:0;s:15:\"use_more_always\";b:0;s:13:\"use_more_text\";s:4:\"more\";s:12:\"link_display\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:0;s:14:\"field_language\";s:22:\"***CURRENT_LANGUAGE***\";s:27:\"field_language_add_to_query\";i:1;s:6:\"access\";a:1:{s:4:\"type\";s:4:\"perm\";}s:5:\"cache\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:12:\"exposed_form\";a:2:{s:4:\"type\";s:5:\"basic\";s:7:\"options\";a:0:{}}s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"full\";s:7:\"options\";a:1:{s:14:\"items_per_page\";s:2:\"10\";}}s:12:\"style_plugin\";s:7:\"default\";s:13:\"style_options\";a:0:{}s:10:\"row_plugin\";s:6:\"fields\";s:11:\"row_options\";a:0:{}s:13:\"exposed_block\";b:0;s:6:\"header\";a:0:{}s:6:\"footer\";a:0:{}s:5:\"empty\";a:0:{}s:13:\"relationships\";a:0:{}s:6:\"fields\";a:1:{s:5:\"title\";a:8:{s:2:\"id\";s:5:\"title\";s:5:\"table\";s:4:\"node\";s:5:\"field\";s:5:\"title\";s:5:\"label\";s:0:\"\";s:5:\"alter\";a:8:{s:10:\"alter_text\";i:0;s:9:\"make_link\";i:0;s:8:\"absolute\";i:0;s:4:\"trim\";i:0;s:13:\"word_boundary\";i:0;s:8:\"ellipsis\";i:0;s:10:\"strip_tags\";i:0;s:4:\"html\";i:0;}s:10:\"hide_empty\";i:0;s:10:\"empty_zero\";i:0;s:12:\"link_to_node\";i:1;}}s:5:\"sorts\";a:1:{s:7:\"created\";a:4:{s:2:\"id\";s:7:\"created\";s:5:\"table\";s:4:\"node\";s:5:\"field\";s:7:\"created\";s:5:\"order\";s:4:\"DESC\";}}s:9:\"arguments\";a:0:{}s:13:\"filter_groups\";a:2:{s:8:\"operator\";s:3:\"AND\";s:6:\"groups\";a:1:{i:1;s:3:\"AND\";}}s:7:\"filters\";a:2:{s:6:\"status\";a:6:{s:5:\"value\";i:1;s:5:\"table\";s:4:\"node\";s:5:\"field\";s:6:\"status\";s:2:\"id\";s:6:\"status\";s:6:\"expose\";a:1:{s:8:\"operator\";b:0;}s:5:\"group\";i:1;}s:4:\"type\";a:4:{s:2:\"id\";s:4:\"type\";s:5:\"table\";s:4:\"node\";s:5:\"field\";s:4:\"type\";s:5:\"value\";a:1:{s:7:\"article\";s:7:\"article\";}}}}',0,1538751382,1),('unpack_options:68da8b35375752ec6bbbb25bffa67af6:en','a:44:{s:8:\"defaults\";a:36:{s:6:\"access\";b:1;s:5:\"cache\";b:1;s:5:\"query\";b:1;s:5:\"title\";b:1;s:9:\"css_class\";b:1;s:19:\"display_description\";b:0;s:8:\"use_ajax\";b:1;s:23:\"hide_attachment_summary\";b:1;s:16:\"hide_admin_links\";b:1;s:5:\"pager\";b:0;s:13:\"pager_options\";b:1;s:8:\"use_more\";b:1;s:15:\"use_more_always\";b:1;s:15:\"open_new_window\";b:0;s:13:\"use_more_text\";b:1;s:12:\"exposed_form\";b:1;s:20:\"exposed_form_options\";b:1;s:12:\"link_display\";b:1;s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:1;s:12:\"style_plugin\";b:0;s:13:\"style_options\";b:0;s:10:\"row_plugin\";b:0;s:11:\"row_options\";b:0;s:6:\"header\";b:1;s:6:\"footer\";b:1;s:5:\"empty\";b:1;s:13:\"relationships\";b:1;s:6:\"fields\";b:1;s:5:\"sorts\";b:1;s:9:\"arguments\";b:1;s:7:\"filters\";b:1;s:13:\"filter_groups\";b:1;s:9:\"use_pager\";b:0;s:14:\"items_per_page\";b:0;s:6:\"offset\";b:0;}s:5:\"title\";s:0:\"\";s:7:\"enabled\";b:1;s:15:\"display_comment\";s:0:\"\";s:9:\"css_class\";s:0:\"\";s:19:\"display_description\";s:0:\"\";s:8:\"use_ajax\";b:0;s:23:\"hide_attachment_summary\";b:0;s:16:\"hide_admin_links\";b:0;s:14:\"items_per_page\";i:10;s:6:\"offset\";i:0;s:9:\"use_pager\";b:0;s:8:\"use_more\";b:0;s:15:\"use_more_always\";b:0;s:13:\"use_more_text\";s:4:\"more\";s:12:\"link_display\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:0;s:14:\"field_language\";s:22:\"***CURRENT_LANGUAGE***\";s:27:\"field_language_add_to_query\";i:1;s:6:\"access\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"cache\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:12:\"exposed_form\";a:2:{s:4:\"type\";s:5:\"basic\";s:7:\"options\";a:0:{}}s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"some\";s:7:\"options\";a:0:{}}s:12:\"style_plugin\";s:3:\"rss\";s:13:\"style_options\";a:1:{s:11:\"description\";s:0:\"\";}s:10:\"row_plugin\";s:0:\"\";s:11:\"row_options\";a:0:{}s:13:\"exposed_block\";b:0;s:6:\"header\";a:0:{}s:6:\"footer\";a:0:{}s:5:\"empty\";a:0:{}s:13:\"relationships\";a:0:{}s:6:\"fields\";a:0:{}s:5:\"sorts\";a:0:{}s:9:\"arguments\";a:0:{}s:13:\"filter_groups\";a:2:{s:8:\"operator\";s:3:\"AND\";s:6:\"groups\";a:1:{i:1;s:3:\"AND\";}}s:7:\"filters\";a:0:{}s:4:\"path\";s:0:\"\";s:4:\"menu\";a:7:{s:4:\"type\";s:4:\"none\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:6:\"weight\";i:0;s:4:\"name\";s:10:\"navigation\";s:7:\"context\";s:0:\"\";s:19:\"context_only_inline\";b:0;}s:11:\"tab_options\";a:5:{s:4:\"type\";s:4:\"none\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:6:\"weight\";i:0;s:4:\"name\";s:10:\"navigation\";}s:8:\"displays\";a:0:{}s:14:\"sitename_title\";b:0;}',0,1538750977,1),('unpack_options:9f93361121c2101949257a2dcc4d7894:en','a:42:{s:8:\"defaults\";a:33:{s:6:\"access\";b:1;s:5:\"cache\";b:1;s:5:\"query\";b:1;s:5:\"title\";b:1;s:9:\"css_class\";b:1;s:19:\"display_description\";b:0;s:8:\"use_ajax\";b:1;s:23:\"hide_attachment_summary\";b:1;s:16:\"hide_admin_links\";b:1;s:5:\"pager\";b:1;s:13:\"pager_options\";b:1;s:8:\"use_more\";b:1;s:15:\"use_more_always\";b:1;s:15:\"open_new_window\";b:0;s:13:\"use_more_text\";b:1;s:12:\"exposed_form\";b:1;s:20:\"exposed_form_options\";b:1;s:12:\"link_display\";b:1;s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:1;s:12:\"style_plugin\";b:1;s:13:\"style_options\";b:1;s:10:\"row_plugin\";b:1;s:11:\"row_options\";b:1;s:6:\"header\";b:1;s:6:\"footer\";b:1;s:5:\"empty\";b:1;s:13:\"relationships\";b:1;s:6:\"fields\";b:1;s:5:\"sorts\";b:1;s:9:\"arguments\";b:1;s:7:\"filters\";b:1;s:13:\"filter_groups\";b:1;}s:5:\"title\";s:0:\"\";s:7:\"enabled\";b:1;s:15:\"display_comment\";s:0:\"\";s:9:\"css_class\";s:0:\"\";s:19:\"display_description\";s:0:\"\";s:8:\"use_ajax\";b:0;s:23:\"hide_attachment_summary\";b:0;s:16:\"hide_admin_links\";b:0;s:14:\"items_per_page\";i:10;s:6:\"offset\";i:0;s:9:\"use_pager\";b:0;s:8:\"use_more\";b:0;s:15:\"use_more_always\";b:0;s:13:\"use_more_text\";s:4:\"more\";s:12:\"link_display\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:0;s:14:\"field_language\";s:22:\"***CURRENT_LANGUAGE***\";s:27:\"field_language_add_to_query\";i:1;s:6:\"access\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"cache\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:12:\"exposed_form\";a:2:{s:4:\"type\";s:5:\"basic\";s:7:\"options\";a:0:{}}s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"full\";s:7:\"options\";a:0:{}}s:12:\"style_plugin\";s:7:\"default\";s:13:\"style_options\";a:0:{}s:10:\"row_plugin\";s:6:\"fields\";s:11:\"row_options\";a:0:{}s:13:\"exposed_block\";b:0;s:6:\"header\";a:0:{}s:6:\"footer\";a:0:{}s:5:\"empty\";a:0:{}s:13:\"relationships\";a:0:{}s:6:\"fields\";a:0:{}s:5:\"sorts\";a:0:{}s:9:\"arguments\";a:0:{}s:13:\"filter_groups\";a:2:{s:8:\"operator\";s:3:\"AND\";s:6:\"groups\";a:1:{i:1;s:3:\"AND\";}}s:7:\"filters\";a:0:{}s:4:\"path\";s:0:\"\";s:4:\"menu\";a:7:{s:4:\"type\";s:4:\"none\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:6:\"weight\";i:0;s:4:\"name\";s:10:\"navigation\";s:7:\"context\";s:0:\"\";s:19:\"context_only_inline\";b:0;}s:11:\"tab_options\";a:5:{s:4:\"type\";s:4:\"none\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:6:\"weight\";i:0;s:4:\"name\";s:10:\"navigation\";}}',0,1538750977,1),('unpack_options:be5908b0264faaafe70825bcc0777243:en','a:43:{s:8:\"defaults\";a:33:{s:6:\"access\";b:1;s:5:\"cache\";b:1;s:5:\"query\";b:1;s:5:\"title\";b:1;s:9:\"css_class\";b:1;s:19:\"display_description\";b:0;s:8:\"use_ajax\";b:1;s:23:\"hide_attachment_summary\";b:1;s:16:\"hide_admin_links\";b:1;s:5:\"pager\";b:0;s:13:\"pager_options\";b:0;s:8:\"use_more\";b:1;s:15:\"use_more_always\";b:1;s:15:\"open_new_window\";b:0;s:13:\"use_more_text\";b:1;s:12:\"exposed_form\";b:1;s:20:\"exposed_form_options\";b:1;s:12:\"link_display\";b:1;s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:1;s:12:\"style_plugin\";b:1;s:13:\"style_options\";b:1;s:10:\"row_plugin\";b:1;s:11:\"row_options\";b:1;s:6:\"header\";b:1;s:6:\"footer\";b:1;s:5:\"empty\";b:1;s:13:\"relationships\";b:1;s:6:\"fields\";b:1;s:5:\"sorts\";b:1;s:9:\"arguments\";b:1;s:7:\"filters\";b:1;s:13:\"filter_groups\";b:1;}s:5:\"title\";s:0:\"\";s:7:\"enabled\";b:1;s:15:\"display_comment\";s:0:\"\";s:9:\"css_class\";s:0:\"\";s:19:\"display_description\";s:0:\"\";s:8:\"use_ajax\";b:0;s:23:\"hide_attachment_summary\";b:0;s:16:\"hide_admin_links\";b:0;s:14:\"items_per_page\";i:10;s:6:\"offset\";i:0;s:9:\"use_pager\";b:0;s:8:\"use_more\";b:0;s:15:\"use_more_always\";b:0;s:13:\"use_more_text\";s:4:\"more\";s:12:\"link_display\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:0;s:14:\"field_language\";s:22:\"***CURRENT_LANGUAGE***\";s:27:\"field_language_add_to_query\";i:1;s:6:\"access\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"cache\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:12:\"exposed_form\";a:2:{s:4:\"type\";s:5:\"basic\";s:7:\"options\";a:0:{}}s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"some\";s:7:\"options\";a:1:{s:14:\"items_per_page\";s:1:\"5\";}}s:12:\"style_plugin\";s:7:\"default\";s:13:\"style_options\";a:0:{}s:10:\"row_plugin\";s:6:\"fields\";s:11:\"row_options\";a:0:{}s:13:\"exposed_block\";b:0;s:6:\"header\";a:0:{}s:6:\"footer\";a:0:{}s:5:\"empty\";a:0:{}s:13:\"relationships\";a:0:{}s:6:\"fields\";a:0:{}s:5:\"sorts\";a:0:{}s:9:\"arguments\";a:0:{}s:13:\"filter_groups\";a:2:{s:8:\"operator\";s:3:\"AND\";s:6:\"groups\";a:1:{i:1;s:3:\"AND\";}}s:7:\"filters\";a:0:{}s:17:\"block_description\";s:0:\"\";s:13:\"block_caching\";i:-1;s:13:\"pager_options\";N;s:5:\"field\";a:1:{s:5:\"title\";a:1:{s:12:\"link_to_node\";i:1;}}}',0,1538750977,1),('unpack_options:be5908b0264faaafe70825bcc0777243:it','a:43:{s:8:\"defaults\";a:33:{s:6:\"access\";b:1;s:5:\"cache\";b:1;s:5:\"query\";b:1;s:5:\"title\";b:1;s:9:\"css_class\";b:1;s:19:\"display_description\";b:0;s:8:\"use_ajax\";b:1;s:23:\"hide_attachment_summary\";b:1;s:16:\"hide_admin_links\";b:1;s:5:\"pager\";b:0;s:13:\"pager_options\";b:0;s:8:\"use_more\";b:1;s:15:\"use_more_always\";b:1;s:15:\"open_new_window\";b:0;s:13:\"use_more_text\";b:1;s:12:\"exposed_form\";b:1;s:20:\"exposed_form_options\";b:1;s:12:\"link_display\";b:1;s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:1;s:12:\"style_plugin\";b:1;s:13:\"style_options\";b:1;s:10:\"row_plugin\";b:1;s:11:\"row_options\";b:1;s:6:\"header\";b:1;s:6:\"footer\";b:1;s:5:\"empty\";b:1;s:13:\"relationships\";b:1;s:6:\"fields\";b:1;s:5:\"sorts\";b:1;s:9:\"arguments\";b:1;s:7:\"filters\";b:1;s:13:\"filter_groups\";b:1;}s:5:\"title\";s:0:\"\";s:7:\"enabled\";b:1;s:15:\"display_comment\";s:0:\"\";s:9:\"css_class\";s:0:\"\";s:19:\"display_description\";s:0:\"\";s:8:\"use_ajax\";b:0;s:23:\"hide_attachment_summary\";b:0;s:16:\"hide_admin_links\";b:0;s:14:\"items_per_page\";i:10;s:6:\"offset\";i:0;s:9:\"use_pager\";b:0;s:8:\"use_more\";b:0;s:15:\"use_more_always\";b:0;s:13:\"use_more_text\";s:4:\"more\";s:12:\"link_display\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:0;s:14:\"field_language\";s:22:\"***CURRENT_LANGUAGE***\";s:27:\"field_language_add_to_query\";i:1;s:6:\"access\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"cache\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:12:\"exposed_form\";a:2:{s:4:\"type\";s:5:\"basic\";s:7:\"options\";a:0:{}}s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"some\";s:7:\"options\";a:1:{s:14:\"items_per_page\";s:1:\"5\";}}s:12:\"style_plugin\";s:7:\"default\";s:13:\"style_options\";a:0:{}s:10:\"row_plugin\";s:6:\"fields\";s:11:\"row_options\";a:0:{}s:13:\"exposed_block\";b:0;s:6:\"header\";a:0:{}s:6:\"footer\";a:0:{}s:5:\"empty\";a:0:{}s:13:\"relationships\";a:0:{}s:6:\"fields\";a:0:{}s:5:\"sorts\";a:0:{}s:9:\"arguments\";a:0:{}s:13:\"filter_groups\";a:2:{s:8:\"operator\";s:3:\"AND\";s:6:\"groups\";a:1:{i:1;s:3:\"AND\";}}s:7:\"filters\";a:0:{}s:17:\"block_description\";s:0:\"\";s:13:\"block_caching\";i:-1;s:13:\"pager_options\";N;s:5:\"field\";a:1:{s:5:\"title\";a:1:{s:12:\"link_to_node\";i:1;}}}',0,1538751382,1),('unpack_options:e25ba9e50cc13d7b33248d068aa95e63:en','a:38:{s:5:\"title\";s:0:\"\";s:7:\"enabled\";b:1;s:15:\"display_comment\";s:0:\"\";s:9:\"css_class\";s:0:\"\";s:19:\"display_description\";s:0:\"\";s:8:\"use_ajax\";b:0;s:23:\"hide_attachment_summary\";b:0;s:16:\"hide_admin_links\";b:0;s:14:\"items_per_page\";i:10;s:6:\"offset\";i:0;s:9:\"use_pager\";b:0;s:8:\"use_more\";b:0;s:15:\"use_more_always\";b:0;s:13:\"use_more_text\";s:4:\"more\";s:12:\"link_display\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:0;s:14:\"field_language\";s:22:\"***CURRENT_LANGUAGE***\";s:27:\"field_language_add_to_query\";i:1;s:6:\"access\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"cache\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:12:\"exposed_form\";a:2:{s:4:\"type\";s:5:\"basic\";s:7:\"options\";a:0:{}}s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"full\";s:7:\"options\";a:0:{}}s:12:\"style_plugin\";s:7:\"default\";s:13:\"style_options\";a:0:{}s:10:\"row_plugin\";s:6:\"fields\";s:11:\"row_options\";a:0:{}s:13:\"exposed_block\";b:0;s:6:\"header\";a:0:{}s:6:\"footer\";a:0:{}s:5:\"empty\";a:0:{}s:13:\"relationships\";a:0:{}s:6:\"fields\";a:0:{}s:5:\"sorts\";a:0:{}s:9:\"arguments\";a:0:{}s:13:\"filter_groups\";a:2:{s:8:\"operator\";s:3:\"AND\";s:6:\"groups\";a:1:{i:1;s:3:\"AND\";}}s:7:\"filters\";a:0:{}}',0,1538750977,1),('unpack_options:e3f313773805f9c601f40e11b932e90f:en','a:43:{s:8:\"defaults\";a:33:{s:6:\"access\";b:1;s:5:\"cache\";b:1;s:5:\"query\";b:1;s:5:\"title\";b:1;s:9:\"css_class\";b:1;s:19:\"display_description\";b:0;s:8:\"use_ajax\";b:1;s:23:\"hide_attachment_summary\";b:1;s:16:\"hide_admin_links\";b:1;s:5:\"pager\";b:1;s:13:\"pager_options\";b:1;s:8:\"use_more\";b:1;s:15:\"use_more_always\";b:1;s:15:\"open_new_window\";b:0;s:13:\"use_more_text\";b:1;s:12:\"exposed_form\";b:1;s:20:\"exposed_form_options\";b:1;s:12:\"link_display\";b:1;s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:1;s:12:\"style_plugin\";b:1;s:13:\"style_options\";b:1;s:10:\"row_plugin\";b:1;s:11:\"row_options\";b:1;s:6:\"header\";b:1;s:6:\"footer\";b:1;s:5:\"empty\";b:1;s:13:\"relationships\";b:1;s:6:\"fields\";b:1;s:5:\"sorts\";b:1;s:9:\"arguments\";b:1;s:7:\"filters\";b:1;s:13:\"filter_groups\";b:1;}s:5:\"title\";s:0:\"\";s:7:\"enabled\";b:1;s:15:\"display_comment\";s:0:\"\";s:9:\"css_class\";s:0:\"\";s:19:\"display_description\";s:0:\"\";s:8:\"use_ajax\";b:0;s:23:\"hide_attachment_summary\";b:0;s:16:\"hide_admin_links\";b:0;s:14:\"items_per_page\";i:10;s:6:\"offset\";i:0;s:9:\"use_pager\";b:0;s:8:\"use_more\";b:0;s:15:\"use_more_always\";b:0;s:13:\"use_more_text\";s:4:\"more\";s:12:\"link_display\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:0;s:14:\"field_language\";s:22:\"***CURRENT_LANGUAGE***\";s:27:\"field_language_add_to_query\";i:1;s:6:\"access\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"cache\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:12:\"exposed_form\";a:2:{s:4:\"type\";s:5:\"basic\";s:7:\"options\";a:0:{}}s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"full\";s:7:\"options\";a:0:{}}s:12:\"style_plugin\";s:7:\"default\";s:13:\"style_options\";a:0:{}s:10:\"row_plugin\";s:6:\"fields\";s:11:\"row_options\";a:0:{}s:13:\"exposed_block\";b:0;s:6:\"header\";a:0:{}s:6:\"footer\";a:0:{}s:5:\"empty\";a:0:{}s:13:\"relationships\";a:0:{}s:6:\"fields\";a:0:{}s:5:\"sorts\";a:0:{}s:9:\"arguments\";a:0:{}s:13:\"filter_groups\";a:2:{s:8:\"operator\";s:3:\"AND\";s:6:\"groups\";a:1:{i:1;s:3:\"AND\";}}s:7:\"filters\";a:0:{}s:4:\"path\";s:8:\"articles\";s:4:\"menu\";a:7:{s:4:\"type\";s:4:\"none\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:6:\"weight\";i:0;s:4:\"name\";s:10:\"navigation\";s:7:\"context\";s:0:\"\";s:19:\"context_only_inline\";b:0;}s:11:\"tab_options\";a:5:{s:4:\"type\";s:4:\"none\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:6:\"weight\";i:0;s:4:\"name\";s:10:\"navigation\";}s:5:\"field\";a:1:{s:5:\"title\";a:1:{s:12:\"link_to_node\";i:1;}}}',0,1538750977,1),('unpack_options:e3f313773805f9c601f40e11b932e90f:it','a:43:{s:8:\"defaults\";a:33:{s:6:\"access\";b:1;s:5:\"cache\";b:1;s:5:\"query\";b:1;s:5:\"title\";b:1;s:9:\"css_class\";b:1;s:19:\"display_description\";b:0;s:8:\"use_ajax\";b:1;s:23:\"hide_attachment_summary\";b:1;s:16:\"hide_admin_links\";b:1;s:5:\"pager\";b:1;s:13:\"pager_options\";b:1;s:8:\"use_more\";b:1;s:15:\"use_more_always\";b:1;s:15:\"open_new_window\";b:0;s:13:\"use_more_text\";b:1;s:12:\"exposed_form\";b:1;s:20:\"exposed_form_options\";b:1;s:12:\"link_display\";b:1;s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:1;s:12:\"style_plugin\";b:1;s:13:\"style_options\";b:1;s:10:\"row_plugin\";b:1;s:11:\"row_options\";b:1;s:6:\"header\";b:1;s:6:\"footer\";b:1;s:5:\"empty\";b:1;s:13:\"relationships\";b:1;s:6:\"fields\";b:1;s:5:\"sorts\";b:1;s:9:\"arguments\";b:1;s:7:\"filters\";b:1;s:13:\"filter_groups\";b:1;}s:5:\"title\";s:0:\"\";s:7:\"enabled\";b:1;s:15:\"display_comment\";s:0:\"\";s:9:\"css_class\";s:0:\"\";s:19:\"display_description\";s:0:\"\";s:8:\"use_ajax\";b:0;s:23:\"hide_attachment_summary\";b:0;s:16:\"hide_admin_links\";b:0;s:14:\"items_per_page\";i:10;s:6:\"offset\";i:0;s:9:\"use_pager\";b:0;s:8:\"use_more\";b:0;s:15:\"use_more_always\";b:0;s:13:\"use_more_text\";s:4:\"more\";s:12:\"link_display\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:0;s:14:\"field_language\";s:22:\"***CURRENT_LANGUAGE***\";s:27:\"field_language_add_to_query\";i:1;s:6:\"access\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"cache\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:12:\"exposed_form\";a:2:{s:4:\"type\";s:5:\"basic\";s:7:\"options\";a:0:{}}s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"full\";s:7:\"options\";a:0:{}}s:12:\"style_plugin\";s:7:\"default\";s:13:\"style_options\";a:0:{}s:10:\"row_plugin\";s:6:\"fields\";s:11:\"row_options\";a:0:{}s:13:\"exposed_block\";b:0;s:6:\"header\";a:0:{}s:6:\"footer\";a:0:{}s:5:\"empty\";a:0:{}s:13:\"relationships\";a:0:{}s:6:\"fields\";a:0:{}s:5:\"sorts\";a:0:{}s:9:\"arguments\";a:0:{}s:13:\"filter_groups\";a:2:{s:8:\"operator\";s:3:\"AND\";s:6:\"groups\";a:1:{i:1;s:3:\"AND\";}}s:7:\"filters\";a:0:{}s:4:\"path\";s:8:\"articles\";s:4:\"menu\";a:7:{s:4:\"type\";s:4:\"none\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:6:\"weight\";i:0;s:4:\"name\";s:10:\"navigation\";s:7:\"context\";s:0:\"\";s:19:\"context_only_inline\";b:0;}s:11:\"tab_options\";a:5:{s:4:\"type\";s:4:\"none\";s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:6:\"weight\";i:0;s:4:\"name\";s:10:\"navigation\";}s:5:\"field\";a:1:{s:5:\"title\";a:1:{s:12:\"link_to_node\";i:1;}}}',0,1538751382,1),('unpack_options:fee8e54274b22324c4d794dea04582b3:en','a:41:{s:8:\"defaults\";a:33:{s:6:\"access\";b:1;s:5:\"cache\";b:1;s:5:\"query\";b:1;s:5:\"title\";b:1;s:9:\"css_class\";b:1;s:19:\"display_description\";b:0;s:8:\"use_ajax\";b:1;s:23:\"hide_attachment_summary\";b:1;s:16:\"hide_admin_links\";b:1;s:5:\"pager\";b:1;s:13:\"pager_options\";b:1;s:8:\"use_more\";b:1;s:15:\"use_more_always\";b:1;s:15:\"open_new_window\";b:0;s:13:\"use_more_text\";b:1;s:12:\"exposed_form\";b:1;s:20:\"exposed_form_options\";b:1;s:12:\"link_display\";b:1;s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:1;s:12:\"style_plugin\";b:1;s:13:\"style_options\";b:1;s:10:\"row_plugin\";b:1;s:11:\"row_options\";b:1;s:6:\"header\";b:1;s:6:\"footer\";b:1;s:5:\"empty\";b:1;s:13:\"relationships\";b:1;s:6:\"fields\";b:1;s:5:\"sorts\";b:1;s:9:\"arguments\";b:1;s:7:\"filters\";b:1;s:13:\"filter_groups\";b:1;}s:5:\"title\";s:0:\"\";s:7:\"enabled\";b:1;s:15:\"display_comment\";s:0:\"\";s:9:\"css_class\";s:0:\"\";s:19:\"display_description\";s:0:\"\";s:8:\"use_ajax\";b:0;s:23:\"hide_attachment_summary\";b:0;s:16:\"hide_admin_links\";b:0;s:14:\"items_per_page\";i:10;s:6:\"offset\";i:0;s:9:\"use_pager\";b:0;s:8:\"use_more\";b:0;s:15:\"use_more_always\";b:0;s:13:\"use_more_text\";s:4:\"more\";s:12:\"link_display\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:0;s:14:\"field_language\";s:22:\"***CURRENT_LANGUAGE***\";s:27:\"field_language_add_to_query\";i:1;s:6:\"access\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"cache\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:12:\"exposed_form\";a:2:{s:4:\"type\";s:5:\"basic\";s:7:\"options\";a:0:{}}s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"full\";s:7:\"options\";a:0:{}}s:12:\"style_plugin\";s:7:\"default\";s:13:\"style_options\";a:0:{}s:10:\"row_plugin\";s:6:\"fields\";s:11:\"row_options\";a:0:{}s:13:\"exposed_block\";b:0;s:6:\"header\";a:0:{}s:6:\"footer\";a:0:{}s:5:\"empty\";a:0:{}s:13:\"relationships\";a:0:{}s:6:\"fields\";a:0:{}s:5:\"sorts\";a:0:{}s:9:\"arguments\";a:0:{}s:13:\"filter_groups\";a:2:{s:8:\"operator\";s:3:\"AND\";s:6:\"groups\";a:1:{i:1;s:3:\"AND\";}}s:7:\"filters\";a:0:{}s:17:\"block_description\";s:0:\"\";s:13:\"block_caching\";i:-1;}',0,1538750977,1),('views_block_items:it','a:1:{s:14:\"articles-block\";a:2:{s:4:\"info\";s:21:\"View: Articles: Block\";s:5:\"cache\";i:-1;}}',0,1538756379,1),('views_data:en','a:73:{s:8:\"comments\";a:8:{s:8:\"moved to\";s:7:\"comment\";s:9:\"timestamp\";a:1:{s:8:\"moved to\";a:2:{i:0;s:7:\"comment\";i:1;s:7:\"changed\";}}s:18:\"timestamp_fulldate\";a:1:{s:8:\"moved to\";a:2:{i:0;s:7:\"comment\";i:1;s:16:\"changed_fulldata\";}}s:20:\"timestamp_year_month\";a:1:{s:8:\"moved to\";a:2:{i:0;s:7:\"comment\";i:1;s:18:\"changed_year_month\";}}s:14:\"timestamp_year\";a:1:{s:8:\"moved to\";a:2:{i:0;s:7:\"comment\";i:1;s:12:\"changed_year\";}}s:15:\"timestamp_month\";a:1:{s:8:\"moved to\";a:2:{i:0;s:7:\"comment\";i:1;s:13:\"changed_month\";}}s:13:\"timestamp_day\";a:1:{s:8:\"moved to\";a:2:{i:0;s:7:\"comment\";i:1;s:11:\"changed_day\";}}s:14:\"timestamp_week\";a:1:{s:8:\"moved to\";a:2:{i:0;s:7:\"comment\";i:1;s:12:\"changed_week\";}}}s:7:\"comment\";a:34:{s:7:\"comment\";a:2:{s:8:\"moved to\";a:2:{i:0;s:23:\"field_data_comment_body\";i:1;s:12:\"comment_body\";}s:5:\"field\";a:1:{s:8:\"moved to\";a:2:{i:0;s:23:\"field_data_comment_body\";i:1;s:12:\"comment_body\";}}}s:5:\"table\";a:4:{s:5:\"group\";s:7:\"Comment\";s:4:\"base\";a:4:{s:5:\"field\";s:3:\"cid\";s:5:\"title\";s:7:\"Comment\";s:4:\"help\";s:39:\"Comments are responses to node content.\";s:16:\"access query tag\";s:14:\"comment_access\";}s:11:\"entity type\";s:7:\"comment\";s:20:\"default_relationship\";a:1:{s:4:\"node\";a:2:{s:5:\"table\";s:4:\"node\";s:5:\"field\";s:3:\"cid\";}}}s:7:\"subject\";a:6:{s:5:\"title\";s:5:\"Title\";s:4:\"help\";s:25:\"The title of the comment.\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_comment\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:29:\"views_handler_argument_string\";}}s:3:\"cid\";a:6:{s:5:\"title\";s:2:\"ID\";s:4:\"help\";s:27:\"The comment ID of the field\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_comment\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:30:\"views_handler_argument_numeric\";}}s:4:\"name\";a:6:{s:5:\"title\";s:6:\"Author\";s:4:\"help\";s:85:\"The name of the comment\'s author. Can be rendered as a link to the author\'s homepage.\";s:5:\"field\";a:2:{s:7:\"handler\";s:36:\"views_handler_field_comment_username\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:29:\"views_handler_argument_string\";}}s:8:\"homepage\";a:6:{s:5:\"title\";s:16:\"Author\'s website\";s:4:\"help\";s:121:\"The website address of the comment\'s author. Can be rendered as a link. Will be empty if the author is a registered user.\";s:5:\"field\";a:2:{s:7:\"handler\";s:23:\"views_handler_field_url\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:29:\"views_handler_argument_string\";}}s:8:\"hostname\";a:6:{s:5:\"title\";s:8:\"Hostname\";s:4:\"help\";s:41:\"Hostname of user that posted the comment.\";s:5:\"field\";a:2:{s:7:\"handler\";s:19:\"views_handler_field\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:29:\"views_handler_argument_string\";}}s:4:\"mail\";a:6:{s:5:\"title\";s:4:\"Mail\";s:4:\"help\";s:88:\"Email of user that posted the comment. Will be empty if the author is a registered user.\";s:5:\"field\";a:2:{s:7:\"handler\";s:19:\"views_handler_field\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:29:\"views_handler_argument_string\";}}s:7:\"created\";a:5:{s:5:\"title\";s:9:\"Post date\";s:4:\"help\";s:46:\"Date and time of when the comment was created.\";s:5:\"field\";a:2:{s:7:\"handler\";s:24:\"views_handler_field_date\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:23:\"views_handler_sort_date\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:25:\"views_handler_filter_date\";}}s:16:\"created_fulldata\";a:3:{s:5:\"title\";s:12:\"Created date\";s:4:\"help\";s:29:\"Date in the form of CCYYMMDD.\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:44:\"views_handler_argument_node_created_fulldate\";}}s:18:\"created_year_month\";a:3:{s:5:\"title\";s:20:\"Created year + month\";s:4:\"help\";s:27:\"Date in the form of YYYYMM.\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:46:\"views_handler_argument_node_created_year_month\";}}s:12:\"created_year\";a:3:{s:5:\"title\";s:12:\"Created year\";s:4:\"help\";s:25:\"Date in the form of YYYY.\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:40:\"views_handler_argument_node_created_year\";}}s:13:\"created_month\";a:3:{s:5:\"title\";s:13:\"Created month\";s:4:\"help\";s:33:\"Date in the form of MM (01 - 12).\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:41:\"views_handler_argument_node_created_month\";}}s:11:\"created_day\";a:3:{s:5:\"title\";s:11:\"Created day\";s:4:\"help\";s:33:\"Date in the form of DD (01 - 31).\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:39:\"views_handler_argument_node_created_day\";}}s:12:\"created_week\";a:3:{s:5:\"title\";s:12:\"Created week\";s:4:\"help\";s:33:\"Date in the form of WW (01 - 53).\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:40:\"views_handler_argument_node_created_week\";}}s:8:\"language\";a:6:{s:5:\"title\";s:8:\"Language\";s:4:\"help\";s:31:\"The language the comment is in.\";s:5:\"field\";a:2:{s:7:\"handler\";s:35:\"views_handler_field_locale_language\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:36:\"views_handler_filter_locale_language\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:38:\"views_handler_argument_locale_language\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:7:\"changed\";a:5:{s:5:\"title\";s:12:\"Updated date\";s:4:\"help\";s:51:\"Date and time of when the comment was last updated.\";s:5:\"field\";a:2:{s:7:\"handler\";s:24:\"views_handler_field_date\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:23:\"views_handler_sort_date\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:25:\"views_handler_filter_date\";}}s:16:\"changed_fulldata\";a:3:{s:5:\"title\";s:12:\"Changed date\";s:4:\"help\";s:29:\"Date in the form of CCYYMMDD.\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"changed\";s:7:\"handler\";s:44:\"views_handler_argument_node_created_fulldate\";}}s:18:\"changed_year_month\";a:3:{s:5:\"title\";s:20:\"Changed year + month\";s:4:\"help\";s:27:\"Date in the form of YYYYMM.\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"changed\";s:7:\"handler\";s:46:\"views_handler_argument_node_created_year_month\";}}s:12:\"changed_year\";a:3:{s:5:\"title\";s:12:\"Changed year\";s:4:\"help\";s:25:\"Date in the form of YYYY.\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"changed\";s:7:\"handler\";s:40:\"views_handler_argument_node_created_year\";}}s:13:\"changed_month\";a:3:{s:5:\"title\";s:13:\"Changed month\";s:4:\"help\";s:33:\"Date in the form of MM (01 - 12).\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"changed\";s:7:\"handler\";s:41:\"views_handler_argument_node_created_month\";}}s:11:\"changed_day\";a:3:{s:5:\"title\";s:11:\"Changed day\";s:4:\"help\";s:33:\"Date in the form of DD (01 - 31).\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"changed\";s:7:\"handler\";s:39:\"views_handler_argument_node_created_day\";}}s:12:\"changed_week\";a:3:{s:5:\"title\";s:12:\"Changed week\";s:4:\"help\";s:33:\"Date in the form of WW (01 - 53).\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"changed\";s:7:\"handler\";s:40:\"views_handler_argument_node_created_week\";}}s:6:\"status\";a:5:{s:5:\"title\";s:8:\"Approved\";s:4:\"help\";s:67:\"Whether the comment is approved (or still in the moderation queue).\";s:5:\"field\";a:3:{s:7:\"handler\";s:27:\"views_handler_field_boolean\";s:14:\"click sortable\";b:1;s:14:\"output formats\";a:1:{s:21:\"approved-not-approved\";a:2:{i:0;s:8:\"Approved\";i:1;s:12:\"Not Approved\";}}}s:6:\"filter\";a:3:{s:7:\"handler\";s:37:\"views_handler_filter_boolean_operator\";s:5:\"label\";s:16:\"Approved comment\";s:4:\"type\";s:6:\"yes-no\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:12:\"view_comment\";a:1:{s:5:\"field\";a:3:{s:5:\"title\";s:9:\"View link\";s:4:\"help\";s:42:\"Provide a simple link to view the comment.\";s:7:\"handler\";s:32:\"views_handler_field_comment_link\";}}s:12:\"edit_comment\";a:1:{s:5:\"field\";a:3:{s:5:\"title\";s:9:\"Edit link\";s:4:\"help\";s:42:\"Provide a simple link to edit the comment.\";s:7:\"handler\";s:37:\"views_handler_field_comment_link_edit\";}}s:14:\"delete_comment\";a:1:{s:5:\"field\";a:3:{s:5:\"title\";s:11:\"Delete link\";s:4:\"help\";s:44:\"Provide a simple link to delete the comment.\";s:7:\"handler\";s:39:\"views_handler_field_comment_link_delete\";}}s:15:\"approve_comment\";a:1:{s:5:\"field\";a:3:{s:5:\"title\";s:12:\"Approve link\";s:4:\"help\";s:45:\"Provide a simple link to approve the comment.\";s:7:\"handler\";s:40:\"views_handler_field_comment_link_approve\";}}s:15:\"replyto_comment\";a:1:{s:5:\"field\";a:3:{s:5:\"title\";s:13:\"Reply-to link\";s:4:\"help\";s:46:\"Provide a simple link to reply to the comment.\";s:7:\"handler\";s:38:\"views_handler_field_comment_link_reply\";}}s:6:\"thread\";a:2:{s:5:\"field\";a:3:{s:5:\"title\";s:5:\"Depth\";s:4:\"help\";s:51:\"Display the depth of the comment if it is threaded.\";s:7:\"handler\";s:33:\"views_handler_field_comment_depth\";}s:4:\"sort\";a:3:{s:5:\"title\";s:6:\"Thread\";s:4:\"help\";s:86:\"Sort by the threaded order. This will keep child comments together with their parents.\";s:7:\"handler\";s:33:\"views_handler_sort_comment_thread\";}}s:3:\"nid\";a:6:{s:5:\"title\";s:3:\"Nid\";s:4:\"help\";s:47:\"The node ID to which the comment is a reply to.\";s:12:\"relationship\";a:6:{s:5:\"title\";s:7:\"Content\";s:4:\"help\";s:47:\"The content to which the comment is a reply to.\";s:4:\"base\";s:4:\"node\";s:10:\"base field\";s:3:\"nid\";s:7:\"handler\";s:26:\"views_handler_relationship\";s:5:\"label\";s:7:\"Content\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:30:\"views_handler_argument_numeric\";}s:5:\"field\";a:1:{s:7:\"handler\";s:27:\"views_handler_field_numeric\";}}s:3:\"uid\";a:6:{s:5:\"title\";s:10:\"Author uid\";s:4:\"help\";s:73:\"If you need more fields than the uid add the comment: author relationship\";s:12:\"relationship\";a:6:{s:5:\"title\";s:6:\"Author\";s:4:\"help\";s:36:\"The User ID of the comment\'s author.\";s:4:\"base\";s:5:\"users\";s:10:\"base field\";s:3:\"uid\";s:7:\"handler\";s:26:\"views_handler_relationship\";s:5:\"label\";s:6:\"author\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:30:\"views_handler_argument_numeric\";}s:5:\"field\";a:1:{s:7:\"handler\";s:24:\"views_handler_field_user\";}}s:3:\"pid\";a:4:{s:5:\"title\";s:10:\"Parent CID\";s:4:\"help\";s:37:\"The Comment ID of the parent comment.\";s:5:\"field\";a:1:{s:7:\"handler\";s:19:\"views_handler_field\";}s:12:\"relationship\";a:6:{s:5:\"title\";s:14:\"Parent comment\";s:4:\"help\";s:19:\"The parent comment.\";s:4:\"base\";s:7:\"comment\";s:10:\"base field\";s:3:\"cid\";s:7:\"handler\";s:26:\"views_handler_relationship\";s:5:\"label\";s:14:\"Parent comment\";}}s:19:\"entity_translations\";a:3:{s:5:\"title\";s:32:\"Entity translation: translations\";s:4:\"help\";s:24:\"Translation information.\";s:12:\"relationship\";a:8:{s:5:\"label\";s:12:\"Translations\";s:4:\"base\";s:18:\"entity_translation\";s:10:\"base field\";s:9:\"entity_id\";s:18:\"relationship field\";s:3:\"cid\";s:7:\"handler\";s:39:\"entity_translation_handler_relationship\";s:10:\"left_table\";s:7:\"comment\";s:10:\"left_field\";s:3:\"cid\";s:11:\"entity type\";s:7:\"comment\";}}}s:23:\"node_comment_statistics\";a:7:{s:5:\"table\";a:2:{s:5:\"group\";s:7:\"Content\";s:4:\"join\";a:1:{s:4:\"node\";a:3:{s:4:\"type\";s:5:\"INNER\";s:10:\"left_field\";s:3:\"nid\";s:5:\"field\";s:3:\"nid\";}}}s:22:\"last_comment_timestamp\";a:5:{s:5:\"title\";s:17:\"Last comment time\";s:4:\"help\";s:50:\"Date and time of when the last comment was posted.\";s:5:\"field\";a:2:{s:7:\"handler\";s:42:\"views_handler_field_last_comment_timestamp\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:23:\"views_handler_sort_date\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:25:\"views_handler_filter_date\";}}s:17:\"last_comment_name\";a:4:{s:5:\"title\";s:19:\"Last comment author\";s:4:\"help\";s:50:\"The name of the author of the last posted comment.\";s:5:\"field\";a:3:{s:7:\"handler\";s:41:\"views_handler_field_ncs_last_comment_name\";s:14:\"click sortable\";b:1;s:11:\"no group by\";b:1;}s:4:\"sort\";a:2:{s:7:\"handler\";s:40:\"views_handler_sort_ncs_last_comment_name\";s:11:\"no group by\";b:1;}}s:13:\"comment_count\";a:6:{s:5:\"title\";s:13:\"Comment count\";s:4:\"help\";s:34:\"The number of comments a node has.\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_numeric\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:22:\"views_handler_argument\";}}s:12:\"last_updated\";a:5:{s:5:\"title\";s:22:\"Updated/commented date\";s:4:\"help\";s:60:\"The most recent of last comment posted or node updated time.\";s:5:\"field\";a:3:{s:7:\"handler\";s:36:\"views_handler_field_ncs_last_updated\";s:14:\"click sortable\";b:1;s:11:\"no group by\";b:1;}s:4:\"sort\";a:2:{s:7:\"handler\";s:35:\"views_handler_sort_ncs_last_updated\";s:11:\"no group by\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:37:\"views_handler_filter_ncs_last_updated\";}}s:3:\"cid\";a:3:{s:5:\"title\";s:16:\"Last comment CID\";s:4:\"help\";s:34:\"Display the last comment of a node\";s:12:\"relationship\";a:7:{s:5:\"title\";s:12:\"Last Comment\";s:4:\"help\";s:27:\"The last comment of a node.\";s:5:\"group\";s:7:\"Comment\";s:4:\"base\";s:7:\"comment\";s:10:\"base field\";s:3:\"cid\";s:7:\"handler\";s:26:\"views_handler_relationship\";s:5:\"label\";s:12:\"Last Comment\";}}s:16:\"last_comment_uid\";a:6:{s:5:\"title\";s:16:\"Last comment uid\";s:4:\"help\";s:56:\"The User ID of the author of the last comment of a node.\";s:12:\"relationship\";a:5:{s:5:\"title\";s:19:\"Last comment author\";s:4:\"base\";s:5:\"users\";s:10:\"base field\";s:3:\"uid\";s:7:\"handler\";s:26:\"views_handler_relationship\";s:5:\"label\";s:19:\"Last comment author\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:30:\"views_handler_argument_numeric\";}s:5:\"field\";a:1:{s:7:\"handler\";s:27:\"views_handler_field_numeric\";}}}s:11:\"entity_node\";a:58:{s:5:\"table\";a:2:{s:5:\"group\";s:4:\"Node\";s:11:\"entity type\";s:4:\"node\";}s:3:\"nid\";a:3:{s:5:\"title\";s:7:\"Node ID\";s:4:\"help\";s:26:\"The unique ID of the node.\";s:5:\"field\";a:2:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"integer\";}}s:3:\"vid\";a:3:{s:5:\"title\";s:11:\"Revision ID\";s:4:\"help\";s:37:\"The unique ID of the node\'s revision.\";s:5:\"field\";a:2:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"integer\";}}s:6:\"is_new\";a:3:{s:5:\"title\";s:6:\"Is new\";s:4:\"help\";s:58:\"Whether the node is new and not saved to the database yet.\";s:5:\"field\";a:2:{s:7:\"handler\";s:34:\"entity_views_handler_field_boolean\";s:4:\"type\";s:7:\"boolean\";}}s:4:\"type\";a:3:{s:5:\"title\";s:12:\"Content type\";s:4:\"help\";s:21:\"The type of the node.\";s:5:\"field\";a:3:{s:7:\"handler\";s:34:\"entity_views_handler_field_options\";s:4:\"type\";s:5:\"token\";s:16:\"options callback\";a:2:{s:8:\"function\";s:19:\"node_type_get_names\";s:4:\"info\";a:9:{s:5:\"label\";s:12:\"Content type\";s:4:\"type\";s:5:\"token\";s:11:\"description\";s:21:\"The type of the node.\";s:15:\"setter callback\";s:28:\"entity_property_verbatim_set\";s:17:\"setter permission\";s:16:\"administer nodes\";s:12:\"options list\";s:19:\"node_type_get_names\";s:8:\"required\";b:1;s:12:\"schema field\";s:4:\"type\";s:15:\"getter callback\";s:28:\"entity_property_verbatim_get\";}}}}s:5:\"title\";a:3:{s:5:\"title\";s:5:\"Title\";s:4:\"help\";s:22:\"The title of the node.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:4:\"text\";}}s:8:\"language\";a:3:{s:5:\"title\";s:8:\"Language\";s:4:\"help\";s:36:\"The language the node is written in.\";s:5:\"field\";a:3:{s:7:\"handler\";s:34:\"entity_views_handler_field_options\";s:4:\"type\";s:5:\"token\";s:16:\"options callback\";a:2:{s:8:\"function\";s:29:\"entity_metadata_language_list\";s:4:\"info\";a:8:{s:5:\"label\";s:8:\"Language\";s:4:\"type\";s:5:\"token\";s:11:\"description\";s:36:\"The language the node is written in.\";s:15:\"setter callback\";s:28:\"entity_property_verbatim_set\";s:12:\"options list\";s:29:\"entity_metadata_language_list\";s:12:\"schema field\";s:8:\"language\";s:17:\"setter permission\";s:16:\"administer nodes\";s:15:\"getter callback\";s:28:\"entity_property_verbatim_get\";}}}}s:3:\"url\";a:3:{s:5:\"title\";s:3:\"URL\";s:4:\"help\";s:20:\"The URL of the node.\";s:5:\"field\";a:2:{s:7:\"handler\";s:30:\"entity_views_handler_field_uri\";s:4:\"type\";s:3:\"uri\";}}s:8:\"edit_url\";a:3:{s:5:\"title\";s:8:\"Edit URL\";s:4:\"help\";s:32:\"The URL of the node\'s edit page.\";s:5:\"field\";a:2:{s:7:\"handler\";s:30:\"entity_views_handler_field_uri\";s:4:\"type\";s:3:\"uri\";}}s:6:\"status\";a:3:{s:5:\"title\";s:6:\"Status\";s:4:\"help\";s:45:\"Whether the node is published or unpublished.\";s:5:\"field\";a:3:{s:7:\"handler\";s:34:\"entity_views_handler_field_options\";s:4:\"type\";s:7:\"integer\";s:16:\"options callback\";a:2:{s:8:\"function\";s:35:\"entity_metadata_status_options_list\";s:4:\"info\";a:8:{s:5:\"label\";s:6:\"Status\";s:11:\"description\";s:45:\"Whether the node is published or unpublished.\";s:4:\"type\";s:7:\"integer\";s:12:\"options list\";s:35:\"entity_metadata_status_options_list\";s:15:\"setter callback\";s:28:\"entity_property_verbatim_set\";s:17:\"setter permission\";s:16:\"administer nodes\";s:12:\"schema field\";s:6:\"status\";s:15:\"getter callback\";s:28:\"entity_property_verbatim_get\";}}}}s:7:\"promote\";a:3:{s:5:\"title\";s:21:\"Promoted to frontpage\";s:4:\"help\";s:46:\"Whether the node is promoted to the frontpage.\";s:5:\"field\";a:2:{s:7:\"handler\";s:34:\"entity_views_handler_field_boolean\";s:4:\"type\";s:7:\"boolean\";}}s:6:\"sticky\";a:3:{s:5:\"title\";s:15:\"Sticky in lists\";s:4:\"help\";s:70:\"Whether the node is displayed at the top of lists in which it appears.\";s:5:\"field\";a:2:{s:7:\"handler\";s:34:\"entity_views_handler_field_boolean\";s:4:\"type\";s:7:\"boolean\";}}s:7:\"created\";a:3:{s:5:\"title\";s:12:\"Date created\";s:4:\"help\";s:29:\"The date the node was posted.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_date\";s:4:\"type\";s:4:\"date\";}}s:7:\"changed\";a:3:{s:5:\"title\";s:12:\"Date changed\";s:4:\"help\";s:44:\"The date the node was most recently updated.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_date\";s:4:\"type\";s:4:\"date\";}}s:6:\"author\";a:4:{s:5:\"title\";s:6:\"Author\";s:4:\"help\";s:23:\"The author of the node.\";s:5:\"field\";a:2:{s:7:\"handler\";s:33:\"entity_views_handler_field_entity\";s:4:\"type\";s:4:\"user\";}s:12:\"relationship\";a:5:{s:7:\"handler\";s:33:\"entity_views_handler_relationship\";s:4:\"base\";s:11:\"entity_user\";s:10:\"base field\";s:3:\"uid\";s:18:\"relationship field\";s:6:\"author\";s:5:\"label\";s:6:\"Author\";}}s:6:\"source\";a:4:{s:5:\"title\";s:23:\"Translation source node\";s:4:\"help\";s:58:\"The original-language version of this node, if one exists.\";s:5:\"field\";a:2:{s:7:\"handler\";s:33:\"entity_views_handler_field_entity\";s:4:\"type\";s:4:\"node\";}s:12:\"relationship\";a:5:{s:7:\"handler\";s:33:\"entity_views_handler_relationship\";s:4:\"base\";s:11:\"entity_node\";s:10:\"base field\";s:3:\"nid\";s:18:\"relationship field\";s:6:\"source\";s:5:\"label\";s:23:\"Translation source node\";}}s:3:\"log\";a:3:{s:5:\"title\";s:20:\"Revision log message\";s:4:\"help\";s:93:\"In case a new revision is to be saved, the log entry explaining the changes for this version.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:4:\"text\";}}s:8:\"revision\";a:3:{s:5:\"title\";s:16:\"Creates revision\";s:4:\"help\";s:48:\"Whether saving this node creates a new revision.\";s:5:\"field\";a:2:{s:7:\"handler\";s:34:\"entity_views_handler_field_boolean\";s:4:\"type\";s:7:\"boolean\";}}s:7:\"comment\";a:3:{s:5:\"title\";s:16:\"Comments allowed\";s:4:\"help\";s:97:\"Whether comments are allowed on this node: 0 = no, 1 = closed (read only), 2 = open (read/write).\";s:5:\"field\";a:2:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"integer\";}}s:8:\"comments\";a:4:{s:5:\"title\";s:8:\"Comments\";s:4:\"help\";s:18:\"The node comments.\";s:5:\"field\";a:2:{s:7:\"handler\";s:33:\"entity_views_handler_field_entity\";s:4:\"type\";s:13:\"list<comment>\";}s:12:\"relationship\";a:6:{s:7:\"handler\";s:33:\"entity_views_handler_relationship\";s:4:\"base\";s:14:\"entity_comment\";s:10:\"base field\";s:3:\"cid\";s:18:\"relationship field\";s:8:\"comments\";s:5:\"label\";s:8:\"Comments\";s:8:\"multiple\";b:1;}}s:13:\"comment_count\";a:3:{s:5:\"title\";s:13:\"Comment count\";s:4:\"help\";s:40:\"The number of comments posted on a node.\";s:5:\"field\";a:2:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"integer\";}}s:17:\"comment_count_new\";a:3:{s:5:\"title\";s:17:\"New comment count\";s:4:\"help\";s:72:\"The number of comments posted on a node since the reader last viewed it.\";s:5:\"field\";a:2:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"integer\";}}s:4:\"body\";a:3:{s:5:\"title\";s:18:\"The main body text\";s:4:\"help\";s:26:\"(No information available)\";s:5:\"field\";a:6:{s:7:\"handler\";s:32:\"entity_views_handler_field_field\";s:4:\"type\";s:14:\"text_formatted\";s:10:\"field_name\";s:4:\"body\";s:13:\"entity_tables\";a:0:{}s:11:\"entity type\";s:4:\"node\";s:11:\"is revision\";b:0;}}s:10:\"body_value\";a:4:{s:5:\"title\";s:26:\"The main body text » Text\";s:4:\"help\";s:26:\"(No information available)\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:4:\"text\";}s:10:\"real field\";s:10:\"body:value\";}s:12:\"body_summary\";a:4:{s:5:\"title\";s:29:\"The main body text » Summary\";s:4:\"help\";s:26:\"(No information available)\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:4:\"text\";}s:10:\"real field\";s:12:\"body:summary\";}s:11:\"body_format\";a:4:{s:5:\"title\";s:33:\"The main body text » Text format\";s:4:\"help\";s:26:\"(No information available)\";s:5:\"field\";a:3:{s:7:\"handler\";s:34:\"entity_views_handler_field_options\";s:4:\"type\";s:5:\"token\";s:16:\"options callback\";a:2:{s:8:\"function\";s:34:\"entity_metadata_field_text_formats\";s:4:\"info\";a:6:{s:4:\"type\";s:5:\"token\";s:5:\"label\";s:11:\"Text format\";s:12:\"options list\";s:34:\"entity_metadata_field_text_formats\";s:15:\"getter callback\";s:28:\"entity_property_verbatim_get\";s:15:\"setter callback\";s:28:\"entity_property_verbatim_set\";s:18:\"setter permissions\";s:18:\"administer filters\";}}}s:10:\"real field\";s:11:\"body:format\";}s:11:\"title_field\";a:3:{s:5:\"title\";s:5:\"Title\";s:4:\"help\";s:20:\"Field \"title_field\".\";s:5:\"field\";a:6:{s:7:\"handler\";s:32:\"entity_views_handler_field_field\";s:4:\"type\";s:4:\"text\";s:10:\"field_name\";s:11:\"title_field\";s:13:\"entity_tables\";a:0:{}s:11:\"entity type\";s:4:\"node\";s:11:\"is revision\";b:0;}}s:10:\"field_tags\";a:4:{s:5:\"title\";s:4:\"Tags\";s:4:\"help\";s:19:\"Field \"field_tags\".\";s:5:\"field\";a:2:{s:7:\"handler\";s:33:\"entity_views_handler_field_entity\";s:4:\"type\";s:19:\"list<taxonomy_term>\";}s:12:\"relationship\";a:6:{s:7:\"handler\";s:33:\"entity_views_handler_relationship\";s:4:\"base\";s:20:\"entity_taxonomy_term\";s:10:\"base field\";s:3:\"tid\";s:18:\"relationship field\";s:10:\"field_tags\";s:5:\"label\";s:4:\"Tags\";s:8:\"multiple\";b:1;}}s:11:\"field_image\";a:3:{s:5:\"title\";s:5:\"Image\";s:4:\"help\";s:20:\"Field \"field_image\".\";s:5:\"field\";a:6:{s:7:\"handler\";s:32:\"entity_views_handler_field_field\";s:4:\"type\";s:16:\"field_item_image\";s:10:\"field_name\";s:11:\"field_image\";s:13:\"entity_tables\";a:0:{}s:11:\"entity type\";s:4:\"node\";s:11:\"is revision\";b:0;}}s:16:\"field_image_file\";a:5:{s:5:\"title\";s:24:\"Image » The image file.\";s:4:\"help\";s:26:\"(No information available)\";s:5:\"field\";a:2:{s:7:\"handler\";s:33:\"entity_views_handler_field_entity\";s:4:\"type\";s:4:\"file\";}s:10:\"real field\";s:16:\"field_image:file\";s:12:\"relationship\";a:5:{s:7:\"handler\";s:33:\"entity_views_handler_relationship\";s:4:\"base\";s:11:\"entity_file\";s:10:\"base field\";s:3:\"fid\";s:18:\"relationship field\";s:16:\"field_image:file\";s:5:\"label\";s:24:\"Image » The image file.\";}}s:15:\"field_image_alt\";a:4:{s:5:\"title\";s:33:\"Image » The \"Alt\" attribute text\";s:4:\"help\";s:26:\"(No information available)\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:4:\"text\";}s:10:\"real field\";s:15:\"field_image:alt\";}s:30:\"field_openlayers_example_input\";a:3:{s:5:\"title\";s:33:\"OpenLayers Example Geofield Input\";s:4:\"help\";s:39:\"Field \"field_openlayers_example_input\".\";s:5:\"field\";a:6:{s:7:\"handler\";s:32:\"entity_views_handler_field_field\";s:4:\"type\";s:8:\"geofield\";s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:13:\"entity_tables\";a:0:{}s:11:\"entity type\";s:4:\"node\";s:11:\"is revision\";b:0;}}s:35:\"field_openlayers_example_input_geom\";a:4:{s:5:\"title\";s:52:\"OpenLayers Example Geofield Input » Well-known text\";s:4:\"help\";s:62:\"Well-known text of field <em class=\"placeholder\">Geofield</em>\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:4:\"text\";}s:10:\"real field\";s:35:\"field_openlayers_example_input:geom\";}s:39:\"field_openlayers_example_input_geo_type\";a:4:{s:5:\"title\";s:45:\"OpenLayers Example Geofield Input » Geo Type\";s:4:\"help\";s:55:\"Geo Type of field <em class=\"placeholder\">Geofield</em>\";s:5:\"field\";a:3:{s:7:\"handler\";s:34:\"entity_views_handler_field_options\";s:4:\"type\";s:4:\"text\";s:16:\"options callback\";a:2:{s:8:\"function\";s:36:\"_geofield_geo_types_options_callback\";s:4:\"info\";a:7:{s:5:\"label\";s:8:\"Geo Type\";s:12:\"options list\";s:36:\"_geofield_geo_types_options_callback\";s:8:\"required\";b:1;s:9:\"microdata\";b:0;s:11:\"description\";s:55:\"Geo Type of field <em class=\"placeholder\">Geofield</em>\";s:15:\"getter callback\";s:28:\"entity_property_verbatim_get\";s:4:\"type\";s:4:\"text\";}}}s:10:\"real field\";s:39:\"field_openlayers_example_input:geo_type\";}s:34:\"field_openlayers_example_input_lat\";a:4:{s:5:\"title\";s:45:\"OpenLayers Example Geofield Input » Latitude\";s:4:\"help\";s:55:\"Latitude of field <em class=\"placeholder\">Geofield</em>\";s:5:\"field\";a:3:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"decimal\";s:5:\"float\";b:1;}s:10:\"real field\";s:34:\"field_openlayers_example_input:lat\";}s:34:\"field_openlayers_example_input_lon\";a:4:{s:5:\"title\";s:46:\"OpenLayers Example Geofield Input » Longitude\";s:4:\"help\";s:56:\"Longitude of field <em class=\"placeholder\">Geofield</em>\";s:5:\"field\";a:3:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"decimal\";s:5:\"float\";b:1;}s:10:\"real field\";s:34:\"field_openlayers_example_input:lon\";}s:35:\"field_openlayers_example_input_left\";a:4:{s:5:\"title\";s:50:\"OpenLayers Example Geofield Input » Left Latitude\";s:4:\"help\";s:60:\"Left Latitude of field <em class=\"placeholder\">Geofield</em>\";s:5:\"field\";a:3:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"decimal\";s:5:\"float\";b:1;}s:10:\"real field\";s:35:\"field_openlayers_example_input:left\";}s:34:\"field_openlayers_example_input_top\";a:4:{s:5:\"title\";s:50:\"OpenLayers Example Geofield Input » Top Longitude\";s:4:\"help\";s:60:\"Top Longitude of field <em class=\"placeholder\">Geofield</em>\";s:5:\"field\";a:3:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"decimal\";s:5:\"float\";b:1;}s:10:\"real field\";s:34:\"field_openlayers_example_input:top\";}s:36:\"field_openlayers_example_input_right\";a:4:{s:5:\"title\";s:51:\"OpenLayers Example Geofield Input » Right Latitude\";s:4:\"help\";s:61:\"Right Latitude of field <em class=\"placeholder\">Geofield</em>\";s:5:\"field\";a:3:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"decimal\";s:5:\"float\";b:1;}s:10:\"real field\";s:36:\"field_openlayers_example_input:right\";}s:37:\"field_openlayers_example_input_bottom\";a:4:{s:5:\"title\";s:53:\"OpenLayers Example Geofield Input » Bottom Longitude\";s:4:\"help\";s:63:\"Bottom Longitude of field <em class=\"placeholder\">Geofield</em>\";s:5:\"field\";a:3:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"decimal\";s:5:\"float\";b:1;}s:10:\"real field\";s:37:\"field_openlayers_example_input:bottom\";}s:35:\"field_openlayers_example_input_srid\";a:4:{s:5:\"title\";s:54:\"OpenLayers Example Geofield Input » Projection (SRID)\";s:4:\"help\";s:64:\"Projection (SRID) of field <em class=\"placeholder\">Geofield</em>\";s:5:\"field\";a:2:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"integer\";}s:10:\"real field\";s:35:\"field_openlayers_example_input:srid\";}s:12:\"field_gfdata\";a:3:{s:5:\"title\";s:4:\"Data\";s:4:\"help\";s:21:\"Field \"field_gfdata\".\";s:5:\"field\";a:6:{s:7:\"handler\";s:32:\"entity_views_handler_field_field\";s:4:\"type\";s:8:\"geofield\";s:10:\"field_name\";s:12:\"field_gfdata\";s:13:\"entity_tables\";a:0:{}s:11:\"entity type\";s:4:\"node\";s:11:\"is revision\";b:0;}}s:17:\"field_gfdata_geom\";a:4:{s:5:\"title\";s:23:\"Data » Well-known text\";s:4:\"help\";s:62:\"Well-known text of field <em class=\"placeholder\">Geofield</em>\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:4:\"text\";}s:10:\"real field\";s:17:\"field_gfdata:geom\";}s:21:\"field_gfdata_geo_type\";a:4:{s:5:\"title\";s:16:\"Data » Geo Type\";s:4:\"help\";s:55:\"Geo Type of field <em class=\"placeholder\">Geofield</em>\";s:5:\"field\";a:3:{s:7:\"handler\";s:34:\"entity_views_handler_field_options\";s:4:\"type\";s:4:\"text\";s:16:\"options callback\";a:2:{s:8:\"function\";s:36:\"_geofield_geo_types_options_callback\";s:4:\"info\";a:7:{s:5:\"label\";s:8:\"Geo Type\";s:12:\"options list\";s:36:\"_geofield_geo_types_options_callback\";s:8:\"required\";b:1;s:9:\"microdata\";b:0;s:11:\"description\";s:55:\"Geo Type of field <em class=\"placeholder\">Geofield</em>\";s:15:\"getter callback\";s:28:\"entity_property_verbatim_get\";s:4:\"type\";s:4:\"text\";}}}s:10:\"real field\";s:21:\"field_gfdata:geo_type\";}s:16:\"field_gfdata_lat\";a:4:{s:5:\"title\";s:16:\"Data » Latitude\";s:4:\"help\";s:55:\"Latitude of field <em class=\"placeholder\">Geofield</em>\";s:5:\"field\";a:3:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"decimal\";s:5:\"float\";b:1;}s:10:\"real field\";s:16:\"field_gfdata:lat\";}s:16:\"field_gfdata_lon\";a:4:{s:5:\"title\";s:17:\"Data » Longitude\";s:4:\"help\";s:56:\"Longitude of field <em class=\"placeholder\">Geofield</em>\";s:5:\"field\";a:3:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"decimal\";s:5:\"float\";b:1;}s:10:\"real field\";s:16:\"field_gfdata:lon\";}s:17:\"field_gfdata_left\";a:4:{s:5:\"title\";s:21:\"Data » Left Latitude\";s:4:\"help\";s:60:\"Left Latitude of field <em class=\"placeholder\">Geofield</em>\";s:5:\"field\";a:3:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"decimal\";s:5:\"float\";b:1;}s:10:\"real field\";s:17:\"field_gfdata:left\";}s:16:\"field_gfdata_top\";a:4:{s:5:\"title\";s:21:\"Data » Top Longitude\";s:4:\"help\";s:60:\"Top Longitude of field <em class=\"placeholder\">Geofield</em>\";s:5:\"field\";a:3:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"decimal\";s:5:\"float\";b:1;}s:10:\"real field\";s:16:\"field_gfdata:top\";}s:18:\"field_gfdata_right\";a:4:{s:5:\"title\";s:22:\"Data » Right Latitude\";s:4:\"help\";s:61:\"Right Latitude of field <em class=\"placeholder\">Geofield</em>\";s:5:\"field\";a:3:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"decimal\";s:5:\"float\";b:1;}s:10:\"real field\";s:18:\"field_gfdata:right\";}s:19:\"field_gfdata_bottom\";a:4:{s:5:\"title\";s:24:\"Data » Bottom Longitude\";s:4:\"help\";s:63:\"Bottom Longitude of field <em class=\"placeholder\">Geofield</em>\";s:5:\"field\";a:3:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"decimal\";s:5:\"float\";b:1;}s:10:\"real field\";s:19:\"field_gfdata:bottom\";}s:17:\"field_gfdata_srid\";a:4:{s:5:\"title\";s:25:\"Data » Projection (SRID)\";s:4:\"help\";s:64:\"Projection (SRID) of field <em class=\"placeholder\">Geofield</em>\";s:5:\"field\";a:2:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"integer\";}s:10:\"real field\";s:17:\"field_gfdata:srid\";}s:11:\"field_photo\";a:3:{s:5:\"title\";s:19:\"Photo Moorings 2014\";s:4:\"help\";s:20:\"Field \"field_photo\".\";s:5:\"field\";a:6:{s:7:\"handler\";s:32:\"entity_views_handler_field_field\";s:4:\"type\";s:16:\"field_item_image\";s:10:\"field_name\";s:11:\"field_photo\";s:13:\"entity_tables\";a:0:{}s:11:\"entity type\";s:4:\"node\";s:11:\"is revision\";b:0;}}s:16:\"field_photo_file\";a:5:{s:5:\"title\";s:38:\"Photo Moorings 2014 » The image file.\";s:4:\"help\";s:26:\"(No information available)\";s:5:\"field\";a:2:{s:7:\"handler\";s:33:\"entity_views_handler_field_entity\";s:4:\"type\";s:4:\"file\";}s:10:\"real field\";s:16:\"field_photo:file\";s:12:\"relationship\";a:5:{s:7:\"handler\";s:33:\"entity_views_handler_relationship\";s:4:\"base\";s:11:\"entity_file\";s:10:\"base field\";s:3:\"fid\";s:18:\"relationship field\";s:16:\"field_photo:file\";s:5:\"label\";s:38:\"Photo Moorings 2014 » The image file.\";}}s:25:\"field_photo_moorings_2012\";a:3:{s:5:\"title\";s:19:\"Photo Moorings 2012\";s:4:\"help\";s:34:\"Field \"field_photo_moorings_2012\".\";s:5:\"field\";a:6:{s:7:\"handler\";s:32:\"entity_views_handler_field_field\";s:4:\"type\";s:16:\"field_item_image\";s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:13:\"entity_tables\";a:0:{}s:11:\"entity type\";s:4:\"node\";s:11:\"is revision\";b:0;}}s:30:\"field_photo_moorings_2012_file\";a:5:{s:5:\"title\";s:38:\"Photo Moorings 2012 » The image file.\";s:4:\"help\";s:26:\"(No information available)\";s:5:\"field\";a:2:{s:7:\"handler\";s:33:\"entity_views_handler_field_entity\";s:4:\"type\";s:4:\"file\";}s:10:\"real field\";s:30:\"field_photo_moorings_2012:file\";s:12:\"relationship\";a:5:{s:7:\"handler\";s:33:\"entity_views_handler_relationship\";s:4:\"base\";s:11:\"entity_file\";s:10:\"base field\";s:3:\"fid\";s:18:\"relationship field\";s:30:\"field_photo_moorings_2012:file\";s:5:\"label\";s:38:\"Photo Moorings 2012 » The image file.\";}}s:15:\"taxonomy_forums\";a:4:{s:5:\"title\";s:6:\"Forums\";s:4:\"help\";s:24:\"Field \"taxonomy_forums\".\";s:5:\"field\";a:2:{s:7:\"handler\";s:33:\"entity_views_handler_field_entity\";s:4:\"type\";s:13:\"taxonomy_term\";}s:12:\"relationship\";a:5:{s:7:\"handler\";s:33:\"entity_views_handler_relationship\";s:4:\"base\";s:20:\"entity_taxonomy_term\";s:10:\"base field\";s:3:\"tid\";s:18:\"relationship field\";s:15:\"taxonomy_forums\";s:5:\"label\";s:6:\"Forums\";}}s:25:\"field_photo_moorings_2010\";a:3:{s:5:\"title\";s:19:\"Photo Moorings 2010\";s:4:\"help\";s:34:\"Field \"field_photo_moorings_2010\".\";s:5:\"field\";a:6:{s:7:\"handler\";s:32:\"entity_views_handler_field_field\";s:4:\"type\";s:16:\"field_item_image\";s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:13:\"entity_tables\";a:0:{}s:11:\"entity type\";s:4:\"node\";s:11:\"is revision\";b:0;}}s:30:\"field_photo_moorings_2010_file\";a:5:{s:5:\"title\";s:38:\"Photo Moorings 2010 » The image file.\";s:4:\"help\";s:26:\"(No information available)\";s:5:\"field\";a:2:{s:7:\"handler\";s:33:\"entity_views_handler_field_entity\";s:4:\"type\";s:4:\"file\";}s:10:\"real field\";s:30:\"field_photo_moorings_2010:file\";s:12:\"relationship\";a:5:{s:7:\"handler\";s:33:\"entity_views_handler_relationship\";s:4:\"base\";s:11:\"entity_file\";s:10:\"base field\";s:3:\"fid\";s:18:\"relationship field\";s:30:\"field_photo_moorings_2010:file\";s:5:\"label\";s:38:\"Photo Moorings 2010 » The image file.\";}}}s:17:\"views_entity_node\";a:5:{s:15:\"rendered_entity\";a:3:{s:5:\"title\";s:13:\"Rendered Node\";s:4:\"help\";s:64:\"The Node of the current relationship rendered using a view mode.\";s:5:\"field\";a:3:{s:7:\"handler\";s:33:\"entity_views_handler_field_entity\";s:4:\"type\";s:4:\"node\";s:10:\"real field\";s:13:\"entity object\";}}s:5:\"table\";a:3:{s:5:\"group\";s:7:\"Content\";s:4:\"join\";a:4:{s:11:\"entity_node\";a:1:{s:10:\"left_table\";s:11:\"entity_node\";}s:17:\"views_entity_node\";a:1:{s:10:\"left_table\";s:17:\"views_entity_node\";}s:4:\"node\";a:1:{s:10:\"left_table\";s:4:\"node\";}s:13:\"node_revision\";a:1:{s:10:\"left_table\";s:13:\"node_revision\";}}s:11:\"entity type\";s:4:\"node\";}s:9:\"view_node\";a:1:{s:5:\"field\";a:3:{s:5:\"title\";s:4:\"Link\";s:4:\"help\";s:37:\"Provide a simple link to the content.\";s:7:\"handler\";s:29:\"views_handler_field_node_link\";}}s:9:\"edit_node\";a:1:{s:5:\"field\";a:3:{s:5:\"title\";s:9:\"Edit link\";s:4:\"help\";s:42:\"Provide a simple link to edit the content.\";s:7:\"handler\";s:34:\"views_handler_field_node_link_edit\";}}s:11:\"delete_node\";a:1:{s:5:\"field\";a:3:{s:5:\"title\";s:11:\"Delete link\";s:4:\"help\";s:44:\"Provide a simple link to delete the content.\";s:7:\"handler\";s:36:\"views_handler_field_node_link_delete\";}}}s:20:\"entity_taxonomy_term\";a:10:{s:5:\"table\";a:2:{s:5:\"group\";s:13:\"Taxonomy term\";s:11:\"entity type\";s:13:\"taxonomy_term\";}s:3:\"tid\";a:3:{s:5:\"title\";s:7:\"Term ID\";s:4:\"help\";s:35:\"The unique ID of the taxonomy term.\";s:5:\"field\";a:2:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"integer\";}}s:4:\"name\";a:3:{s:5:\"title\";s:4:\"Name\";s:4:\"help\";s:30:\"The name of the taxonomy term.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:4:\"text\";}}s:11:\"description\";a:3:{s:5:\"title\";s:11:\"Description\";s:4:\"help\";s:46:\"The optional description of the taxonomy term.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:4:\"text\";}}s:6:\"weight\";a:3:{s:5:\"title\";s:6:\"Weight\";s:4:\"help\";s:72:\"The weight of the term, which is used for ordering terms during display.\";s:5:\"field\";a:2:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"integer\";}}s:10:\"node_count\";a:3:{s:5:\"title\";s:10:\"Node count\";s:4:\"help\";s:50:\"The number of nodes tagged with the taxonomy term.\";s:5:\"field\";a:2:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"integer\";}}s:3:\"url\";a:3:{s:5:\"title\";s:3:\"URL\";s:4:\"help\";s:29:\"The URL of the taxonomy term.\";s:5:\"field\";a:2:{s:7:\"handler\";s:30:\"entity_views_handler_field_uri\";s:4:\"type\";s:3:\"uri\";}}s:10:\"vocabulary\";a:4:{s:5:\"title\";s:10:\"Vocabulary\";s:4:\"help\";s:44:\"The vocabulary the taxonomy term belongs to.\";s:5:\"field\";a:2:{s:7:\"handler\";s:33:\"entity_views_handler_field_entity\";s:4:\"type\";s:19:\"taxonomy_vocabulary\";}s:12:\"relationship\";a:5:{s:7:\"handler\";s:33:\"entity_views_handler_relationship\";s:4:\"base\";s:26:\"entity_taxonomy_vocabulary\";s:10:\"base field\";s:3:\"vid\";s:18:\"relationship field\";s:10:\"vocabulary\";s:5:\"label\";s:10:\"Vocabulary\";}}s:6:\"parent\";a:4:{s:5:\"title\";s:12:\"Parent terms\";s:4:\"help\";s:38:\"The parent terms of the taxonomy term.\";s:5:\"field\";a:2:{s:7:\"handler\";s:33:\"entity_views_handler_field_entity\";s:4:\"type\";s:19:\"list<taxonomy_term>\";}s:12:\"relationship\";a:6:{s:7:\"handler\";s:33:\"entity_views_handler_relationship\";s:4:\"base\";s:20:\"entity_taxonomy_term\";s:10:\"base field\";s:3:\"tid\";s:18:\"relationship field\";s:6:\"parent\";s:5:\"label\";s:12:\"Parent terms\";s:8:\"multiple\";b:1;}}s:11:\"parents_all\";a:4:{s:5:\"title\";s:16:\"All parent terms\";s:4:\"help\";s:65:\"Ancestors of the term, i.e. parent of all above hierarchy levels.\";s:5:\"field\";a:2:{s:7:\"handler\";s:33:\"entity_views_handler_field_entity\";s:4:\"type\";s:19:\"list<taxonomy_term>\";}s:12:\"relationship\";a:6:{s:7:\"handler\";s:33:\"entity_views_handler_relationship\";s:4:\"base\";s:20:\"entity_taxonomy_term\";s:10:\"base field\";s:3:\"tid\";s:18:\"relationship field\";s:11:\"parents_all\";s:5:\"label\";s:16:\"All parent terms\";s:8:\"multiple\";b:1;}}}s:26:\"views_entity_taxonomy_term\";a:2:{s:15:\"rendered_entity\";a:3:{s:5:\"title\";s:22:\"Rendered Taxonomy term\";s:4:\"help\";s:73:\"The Taxonomy term of the current relationship rendered using a view mode.\";s:5:\"field\";a:3:{s:7:\"handler\";s:33:\"entity_views_handler_field_entity\";s:4:\"type\";s:13:\"taxonomy_term\";s:10:\"real field\";s:13:\"entity object\";}}s:5:\"table\";a:3:{s:4:\"join\";a:3:{s:20:\"entity_taxonomy_term\";a:1:{s:10:\"left_table\";s:20:\"entity_taxonomy_term\";}s:26:\"views_entity_taxonomy_term\";a:1:{s:10:\"left_table\";s:26:\"views_entity_taxonomy_term\";}s:18:\"taxonomy_term_data\";a:1:{s:10:\"left_table\";s:18:\"taxonomy_term_data\";}}s:11:\"entity type\";s:13:\"taxonomy_term\";s:5:\"group\";s:13:\"Taxonomy term\";}}s:14:\"entity_comment\";a:17:{s:5:\"table\";a:2:{s:5:\"group\";s:7:\"Comment\";s:11:\"entity type\";s:7:\"comment\";}s:3:\"cid\";a:3:{s:5:\"title\";s:10:\"Comment ID\";s:4:\"help\";s:29:\"The unique ID of the comment.\";s:5:\"field\";a:2:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"integer\";}}s:8:\"hostname\";a:3:{s:5:\"title\";s:10:\"IP Address\";s:4:\"help\";s:59:\"The IP address of the computer the comment was posted from.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:4:\"text\";}}s:4:\"name\";a:3:{s:5:\"title\";s:4:\"Name\";s:4:\"help\";s:36:\"The name left by the comment author.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:4:\"text\";}}s:4:\"mail\";a:3:{s:5:\"title\";s:13:\"Email address\";s:4:\"help\";s:45:\"The email address left by the comment author.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:4:\"text\";}}s:8:\"homepage\";a:3:{s:5:\"title\";s:9:\"Home page\";s:4:\"help\";s:45:\"The home page URL left by the comment author.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:4:\"text\";}}s:7:\"subject\";a:3:{s:5:\"title\";s:7:\"Subject\";s:4:\"help\";s:27:\"The subject of the comment.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:4:\"text\";}}s:3:\"url\";a:3:{s:5:\"title\";s:3:\"URL\";s:4:\"help\";s:23:\"The URL of the comment.\";s:5:\"field\";a:2:{s:7:\"handler\";s:30:\"entity_views_handler_field_uri\";s:4:\"type\";s:3:\"uri\";}}s:8:\"edit_url\";a:3:{s:5:\"title\";s:8:\"Edit URL\";s:4:\"help\";s:35:\"The URL of the comment\'s edit page.\";s:5:\"field\";a:2:{s:7:\"handler\";s:30:\"entity_views_handler_field_uri\";s:4:\"type\";s:3:\"uri\";}}s:7:\"created\";a:3:{s:5:\"title\";s:12:\"Date created\";s:4:\"help\";s:32:\"The date the comment was posted.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_date\";s:4:\"type\";s:4:\"date\";}}s:6:\"parent\";a:4:{s:5:\"title\";s:6:\"Parent\";s:4:\"help\";s:53:\"The comment\'s parent, if comment threading is active.\";s:5:\"field\";a:2:{s:7:\"handler\";s:33:\"entity_views_handler_field_entity\";s:4:\"type\";s:7:\"comment\";}s:12:\"relationship\";a:5:{s:7:\"handler\";s:33:\"entity_views_handler_relationship\";s:4:\"base\";s:14:\"entity_comment\";s:10:\"base field\";s:3:\"cid\";s:18:\"relationship field\";s:6:\"parent\";s:5:\"label\";s:6:\"Parent\";}}s:4:\"node\";a:4:{s:5:\"title\";s:4:\"Node\";s:4:\"help\";s:35:\"The node the comment was posted to.\";s:5:\"field\";a:2:{s:7:\"handler\";s:33:\"entity_views_handler_field_entity\";s:4:\"type\";s:4:\"node\";}s:12:\"relationship\";a:5:{s:7:\"handler\";s:33:\"entity_views_handler_relationship\";s:4:\"base\";s:11:\"entity_node\";s:10:\"base field\";s:3:\"nid\";s:18:\"relationship field\";s:4:\"node\";s:5:\"label\";s:4:\"Node\";}}s:6:\"author\";a:4:{s:5:\"title\";s:6:\"Author\";s:4:\"help\";s:26:\"The author of the comment.\";s:5:\"field\";a:2:{s:7:\"handler\";s:33:\"entity_views_handler_field_entity\";s:4:\"type\";s:4:\"user\";}s:12:\"relationship\";a:5:{s:7:\"handler\";s:33:\"entity_views_handler_relationship\";s:4:\"base\";s:11:\"entity_user\";s:10:\"base field\";s:3:\"uid\";s:18:\"relationship field\";s:6:\"author\";s:5:\"label\";s:6:\"Author\";}}s:6:\"status\";a:3:{s:5:\"title\";s:6:\"Status\";s:4:\"help\";s:48:\"Whether the comment is published or unpublished.\";s:5:\"field\";a:3:{s:7:\"handler\";s:34:\"entity_views_handler_field_options\";s:4:\"type\";s:7:\"integer\";s:16:\"options callback\";a:2:{s:8:\"function\";s:35:\"entity_metadata_status_options_list\";s:4:\"info\";a:8:{s:5:\"label\";s:6:\"Status\";s:11:\"description\";s:48:\"Whether the comment is published or unpublished.\";s:15:\"setter callback\";s:28:\"entity_property_verbatim_set\";s:4:\"type\";s:7:\"integer\";s:12:\"options list\";s:35:\"entity_metadata_status_options_list\";s:15:\"access callback\";s:41:\"entity_metadata_comment_properties_access\";s:12:\"schema field\";s:6:\"status\";s:15:\"getter callback\";s:28:\"entity_property_verbatim_get\";}}}}s:12:\"comment_body\";a:3:{s:5:\"title\";s:18:\"The main body text\";s:4:\"help\";s:26:\"(No information available)\";s:5:\"field\";a:6:{s:7:\"handler\";s:32:\"entity_views_handler_field_field\";s:4:\"type\";s:14:\"text_formatted\";s:10:\"field_name\";s:12:\"comment_body\";s:13:\"entity_tables\";a:0:{}s:11:\"entity type\";s:7:\"comment\";s:11:\"is revision\";b:0;}}s:18:\"comment_body_value\";a:4:{s:5:\"title\";s:26:\"The main body text » Text\";s:4:\"help\";s:26:\"(No information available)\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:4:\"text\";}s:10:\"real field\";s:18:\"comment_body:value\";}s:19:\"comment_body_format\";a:4:{s:5:\"title\";s:33:\"The main body text » Text format\";s:4:\"help\";s:26:\"(No information available)\";s:5:\"field\";a:3:{s:7:\"handler\";s:34:\"entity_views_handler_field_options\";s:4:\"type\";s:5:\"token\";s:16:\"options callback\";a:2:{s:8:\"function\";s:34:\"entity_metadata_field_text_formats\";s:4:\"info\";a:6:{s:4:\"type\";s:5:\"token\";s:5:\"label\";s:11:\"Text format\";s:12:\"options list\";s:34:\"entity_metadata_field_text_formats\";s:15:\"getter callback\";s:28:\"entity_property_verbatim_get\";s:15:\"setter callback\";s:28:\"entity_property_verbatim_set\";s:18:\"setter permissions\";s:18:\"administer filters\";}}}s:10:\"real field\";s:19:\"comment_body:format\";}}s:20:\"views_entity_comment\";a:2:{s:15:\"rendered_entity\";a:3:{s:5:\"title\";s:16:\"Rendered Comment\";s:4:\"help\";s:67:\"The Comment of the current relationship rendered using a view mode.\";s:5:\"field\";a:3:{s:7:\"handler\";s:33:\"entity_views_handler_field_entity\";s:4:\"type\";s:7:\"comment\";s:10:\"real field\";s:13:\"entity object\";}}s:5:\"table\";a:3:{s:4:\"join\";a:3:{s:7:\"comment\";a:1:{s:10:\"left_table\";s:7:\"comment\";}s:14:\"entity_comment\";a:1:{s:10:\"left_table\";s:14:\"entity_comment\";}s:20:\"views_entity_comment\";a:1:{s:10:\"left_table\";s:20:\"views_entity_comment\";}}s:11:\"entity type\";s:7:\"comment\";s:5:\"group\";s:7:\"Comment\";}}s:23:\"entity_i18n_translation\";a:1:{s:5:\"table\";a:2:{s:5:\"group\";s:15:\"Translation set\";s:11:\"entity type\";s:16:\"i18n_translation\";}}s:29:\"views_entity_i18n_translation\";a:1:{s:5:\"table\";a:3:{s:4:\"join\";a:2:{s:23:\"entity_i18n_translation\";a:1:{s:10:\"left_table\";s:23:\"entity_i18n_translation\";}s:29:\"views_entity_i18n_translation\";a:1:{s:10:\"left_table\";s:29:\"views_entity_i18n_translation\";}}s:11:\"entity type\";s:16:\"i18n_translation\";s:5:\"group\";s:15:\"Translation set\";}}s:11:\"entity_file\";a:8:{s:5:\"table\";a:2:{s:5:\"group\";s:4:\"File\";s:11:\"entity type\";s:4:\"file\";}s:3:\"fid\";a:3:{s:5:\"title\";s:7:\"File ID\";s:4:\"help\";s:35:\"The unique ID of the uploaded file.\";s:5:\"field\";a:2:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"integer\";}}s:4:\"name\";a:3:{s:5:\"title\";s:9:\"File name\";s:4:\"help\";s:29:\"The name of the file on disk.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:4:\"text\";}}s:4:\"mime\";a:3:{s:5:\"title\";s:9:\"MIME type\";s:4:\"help\";s:26:\"The MIME type of the file.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:4:\"text\";}}s:4:\"size\";a:3:{s:5:\"title\";s:9:\"File size\";s:4:\"help\";s:35:\"The size of the file, in kilobytes.\";s:5:\"field\";a:2:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"integer\";}}s:3:\"url\";a:3:{s:5:\"title\";s:3:\"URL\";s:4:\"help\";s:36:\"The web-accessible URL for the file.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:4:\"text\";}}s:9:\"timestamp\";a:3:{s:5:\"title\";s:9:\"Timestamp\";s:4:\"help\";s:44:\"The date the file was most recently changed.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_date\";s:4:\"type\";s:4:\"date\";}}s:5:\"owner\";a:4:{s:5:\"title\";s:5:\"Owner\";s:4:\"help\";s:42:\"The user who originally uploaded the file.\";s:5:\"field\";a:2:{s:7:\"handler\";s:33:\"entity_views_handler_field_entity\";s:4:\"type\";s:4:\"user\";}s:12:\"relationship\";a:5:{s:7:\"handler\";s:33:\"entity_views_handler_relationship\";s:4:\"base\";s:11:\"entity_user\";s:10:\"base field\";s:3:\"uid\";s:18:\"relationship field\";s:5:\"owner\";s:5:\"label\";s:5:\"Owner\";}}}s:17:\"views_entity_file\";a:1:{s:5:\"table\";a:3:{s:4:\"join\";a:3:{s:11:\"entity_file\";a:1:{s:10:\"left_table\";s:11:\"entity_file\";}s:17:\"views_entity_file\";a:1:{s:10:\"left_table\";s:17:\"views_entity_file\";}s:12:\"file_managed\";a:1:{s:10:\"left_table\";s:12:\"file_managed\";}}s:11:\"entity type\";s:4:\"file\";s:5:\"group\";s:4:\"File\";}}s:26:\"entity_taxonomy_vocabulary\";a:6:{s:5:\"table\";a:2:{s:5:\"group\";s:19:\"Taxonomy vocabulary\";s:11:\"entity type\";s:19:\"taxonomy_vocabulary\";}s:3:\"vid\";a:3:{s:5:\"title\";s:13:\"Vocabulary ID\";s:4:\"help\";s:41:\"The unique ID of the taxonomy vocabulary.\";s:5:\"field\";a:2:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"integer\";}}s:4:\"name\";a:3:{s:5:\"title\";s:4:\"Name\";s:4:\"help\";s:36:\"The name of the taxonomy vocabulary.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:4:\"text\";}}s:12:\"machine_name\";a:3:{s:5:\"title\";s:12:\"Machine name\";s:4:\"help\";s:44:\"The machine name of the taxonomy vocabulary.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:5:\"token\";}}s:11:\"description\";a:3:{s:5:\"title\";s:11:\"Description\";s:4:\"help\";s:52:\"The optional description of the taxonomy vocabulary.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:4:\"text\";}}s:10:\"term_count\";a:3:{s:5:\"title\";s:10:\"Term count\";s:4:\"help\";s:57:\"The number of terms belonging to the taxonomy vocabulary.\";s:5:\"field\";a:2:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"integer\";}}}s:32:\"views_entity_taxonomy_vocabulary\";a:1:{s:5:\"table\";a:3:{s:4:\"join\";a:2:{s:26:\"entity_taxonomy_vocabulary\";a:1:{s:10:\"left_table\";s:26:\"entity_taxonomy_vocabulary\";}s:32:\"views_entity_taxonomy_vocabulary\";a:1:{s:10:\"left_table\";s:32:\"views_entity_taxonomy_vocabulary\";}}s:11:\"entity type\";s:19:\"taxonomy_vocabulary\";s:5:\"group\";s:19:\"Taxonomy vocabulary\";}}s:11:\"entity_user\";a:13:{s:5:\"table\";a:2:{s:5:\"group\";s:4:\"User\";s:11:\"entity type\";s:4:\"user\";}s:3:\"uid\";a:3:{s:5:\"title\";s:7:\"User ID\";s:4:\"help\";s:34:\"The unique ID of the user account.\";s:5:\"field\";a:2:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"integer\";}}s:4:\"name\";a:3:{s:5:\"title\";s:4:\"Name\";s:4:\"help\";s:35:\"The login name of the user account.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:4:\"text\";}}s:4:\"mail\";a:3:{s:5:\"title\";s:5:\"Email\";s:4:\"help\";s:38:\"The email address of the user account.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:4:\"text\";}}s:3:\"url\";a:3:{s:5:\"title\";s:3:\"URL\";s:4:\"help\";s:36:\"The URL of the account profile page.\";s:5:\"field\";a:2:{s:7:\"handler\";s:30:\"entity_views_handler_field_uri\";s:4:\"type\";s:3:\"uri\";}}s:8:\"edit_url\";a:3:{s:5:\"title\";s:8:\"Edit URL\";s:4:\"help\";s:33:\"The url of the account edit page.\";s:5:\"field\";a:2:{s:7:\"handler\";s:30:\"entity_views_handler_field_uri\";s:4:\"type\";s:3:\"uri\";}}s:11:\"last_access\";a:3:{s:5:\"title\";s:11:\"Last access\";s:4:\"help\";s:41:\"The date the user last accessed the site.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_date\";s:4:\"type\";s:4:\"date\";}}s:10:\"last_login\";a:3:{s:5:\"title\";s:10:\"Last login\";s:4:\"help\";s:45:\"The date the user last logged in to the site.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_date\";s:4:\"type\";s:4:\"date\";}}s:7:\"created\";a:3:{s:5:\"title\";s:7:\"Created\";s:4:\"help\";s:38:\"The date the user account was created.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_date\";s:4:\"type\";s:4:\"date\";}}s:5:\"roles\";a:3:{s:5:\"title\";s:10:\"User roles\";s:4:\"help\";s:22:\"The roles of the user.\";s:5:\"field\";a:3:{s:7:\"handler\";s:34:\"entity_views_handler_field_options\";s:4:\"type\";s:13:\"list<integer>\";s:16:\"options callback\";a:2:{s:8:\"function\";s:26:\"entity_metadata_user_roles\";s:4:\"info\";a:7:{s:5:\"label\";s:10:\"User roles\";s:11:\"description\";s:22:\"The roles of the user.\";s:4:\"type\";s:13:\"list<integer>\";s:15:\"getter callback\";s:35:\"entity_metadata_user_get_properties\";s:15:\"setter callback\";s:35:\"entity_metadata_user_set_properties\";s:12:\"options list\";s:26:\"entity_metadata_user_roles\";s:15:\"access callback\";s:38:\"entity_metadata_user_properties_access\";}}}}s:6:\"status\";a:3:{s:5:\"title\";s:6:\"Status\";s:4:\"help\";s:38:\"Whether the user is active or blocked.\";s:5:\"field\";a:3:{s:7:\"handler\";s:34:\"entity_views_handler_field_options\";s:4:\"type\";s:7:\"integer\";s:16:\"options callback\";a:2:{s:8:\"function\";s:40:\"entity_metadata_user_status_options_list\";s:4:\"info\";a:8:{s:5:\"label\";s:6:\"Status\";s:11:\"description\";s:38:\"Whether the user is active or blocked.\";s:15:\"setter callback\";s:28:\"entity_property_verbatim_set\";s:4:\"type\";s:7:\"integer\";s:12:\"options list\";s:40:\"entity_metadata_user_status_options_list\";s:15:\"access callback\";s:38:\"entity_metadata_user_properties_access\";s:12:\"schema field\";s:6:\"status\";s:15:\"getter callback\";s:28:\"entity_property_verbatim_get\";}}}}s:5:\"theme\";a:3:{s:5:\"title\";s:13:\"Default theme\";s:4:\"help\";s:25:\"The user\'s default theme.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:4:\"text\";}}s:8:\"language\";a:3:{s:5:\"title\";s:8:\"Language\";s:4:\"help\";s:90:\"This account\'s default language for e-mails, and preferred language for site presentation.\";s:5:\"field\";a:3:{s:7:\"handler\";s:34:\"entity_views_handler_field_options\";s:4:\"type\";s:5:\"token\";s:16:\"options callback\";a:2:{s:8:\"function\";s:29:\"entity_metadata_language_list\";s:4:\"info\";a:8:{s:5:\"label\";s:8:\"Language\";s:11:\"description\";s:90:\"This account\'s default language for e-mails, and preferred language for site presentation.\";s:4:\"type\";s:5:\"token\";s:15:\"getter callback\";s:40:\"entity_metadata_locale_get_user_language\";s:15:\"setter callback\";s:28:\"entity_property_verbatim_set\";s:12:\"options list\";s:29:\"entity_metadata_language_list\";s:12:\"schema field\";s:8:\"language\";s:17:\"setter permission\";s:16:\"administer users\";}}}}}s:17:\"views_entity_user\";a:2:{s:15:\"rendered_entity\";a:3:{s:5:\"title\";s:13:\"Rendered User\";s:4:\"help\";s:64:\"The User of the current relationship rendered using a view mode.\";s:5:\"field\";a:3:{s:7:\"handler\";s:33:\"entity_views_handler_field_entity\";s:4:\"type\";s:4:\"user\";s:10:\"real field\";s:13:\"entity object\";}}s:5:\"table\";a:3:{s:4:\"join\";a:3:{s:11:\"entity_user\";a:1:{s:10:\"left_table\";s:11:\"entity_user\";}s:17:\"views_entity_user\";a:1:{s:10:\"left_table\";s:17:\"views_entity_user\";}s:5:\"users\";a:1:{s:10:\"left_table\";s:5:\"users\";}}s:11:\"entity type\";s:4:\"user\";s:5:\"group\";s:4:\"User\";}}s:14:\"entity__global\";a:2:{s:5:\"table\";a:2:{s:5:\"group\";s:6:\"Entity\";s:4:\"join\";a:1:{s:7:\"#global\";a:0:{}}}s:6:\"entity\";a:3:{s:5:\"title\";s:15:\"Rendered entity\";s:4:\"help\";s:32:\"Displays a single chosen entity.\";s:4:\"area\";a:1:{s:7:\"handler\";s:32:\"entity_views_handler_area_entity\";}}}s:36:\"field_data_field_photo_moorings_2010\";a:8:{s:5:\"table\";a:1:{s:4:\"join\";a:1:{s:4:\"node\";a:3:{s:10:\"left_field\";s:3:\"nid\";s:5:\"field\";s:9:\"entity_id\";s:5:\"extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}}s:9:\"entity_id\";a:1:{s:5:\"field\";a:1:{s:8:\"moved to\";a:2:{i:0;s:36:\"field_data_field_photo_moorings_2010\";i:1;s:25:\"field_photo_moorings_2010\";}}}s:25:\"field_photo_moorings_2010\";a:5:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:19:\"Photo Moorings 2010\";s:11:\"title short\";s:19:\"Photo Moorings 2010\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2010.\";s:5:\"field\";a:9:{s:5:\"table\";s:36:\"field_data_field_photo_moorings_2010\";s:7:\"handler\";s:25:\"views_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:10:\"real field\";s:29:\"field_photo_moorings_2010_fid\";s:17:\"additional fields\";a:8:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:29:\"field_photo_moorings_2010_fid\";i:4;s:29:\"field_photo_moorings_2010_alt\";i:5;s:31:\"field_photo_moorings_2010_title\";i:6;s:31:\"field_photo_moorings_2010_width\";i:7;s:32:\"field_photo_moorings_2010_height\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:0;}}s:29:\"field_photo_moorings_2010_fid\";a:8:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:51:\"Photo Moorings 2010 (field_photo_moorings_2010:fid)\";s:11:\"title short\";s:23:\"Photo Moorings 2010:fid\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2010.\";s:8:\"argument\";a:6:{s:5:\"field\";s:29:\"field_photo_moorings_2010_fid\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2010\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:29:\"field_photo_moorings_2010_fid\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2010\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:29:\"field_photo_moorings_2010_fid\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2010\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";}s:12:\"relationship\";a:4:{s:7:\"handler\";s:26:\"views_handler_relationship\";s:4:\"base\";s:12:\"file_managed\";s:10:\"base field\";s:3:\"fid\";s:5:\"label\";s:36:\"image from field_photo_moorings_2010\";}}s:29:\"field_photo_moorings_2010_alt\";a:7:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:51:\"Photo Moorings 2010 (field_photo_moorings_2010:alt)\";s:11:\"title short\";s:23:\"Photo Moorings 2010:alt\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2010.\";s:8:\"argument\";a:6:{s:5:\"field\";s:29:\"field_photo_moorings_2010_alt\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2010\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:29:\"field_photo_moorings_2010_alt\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2010\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:29:\"field_photo_moorings_2010_alt\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2010\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";}}s:31:\"field_photo_moorings_2010_title\";a:7:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:53:\"Photo Moorings 2010 (field_photo_moorings_2010:title)\";s:11:\"title short\";s:25:\"Photo Moorings 2010:title\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2010.\";s:8:\"argument\";a:6:{s:5:\"field\";s:31:\"field_photo_moorings_2010_title\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2010\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:31:\"field_photo_moorings_2010_title\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2010\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:31:\"field_photo_moorings_2010_title\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2010\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";}}s:31:\"field_photo_moorings_2010_width\";a:7:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:53:\"Photo Moorings 2010 (field_photo_moorings_2010:width)\";s:11:\"title short\";s:25:\"Photo Moorings 2010:width\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2010.\";s:8:\"argument\";a:6:{s:5:\"field\";s:31:\"field_photo_moorings_2010_width\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2010\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:31:\"field_photo_moorings_2010_width\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2010\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:31:\"field_photo_moorings_2010_width\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2010\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";}}s:32:\"field_photo_moorings_2010_height\";a:7:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:54:\"Photo Moorings 2010 (field_photo_moorings_2010:height)\";s:11:\"title short\";s:26:\"Photo Moorings 2010:height\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2010.\";s:8:\"argument\";a:6:{s:5:\"field\";s:32:\"field_photo_moorings_2010_height\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2010\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:32:\"field_photo_moorings_2010_height\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2010\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:32:\"field_photo_moorings_2010_height\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2010\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";}}}s:40:\"field_revision_field_photo_moorings_2010\";a:8:{s:5:\"table\";a:1:{s:4:\"join\";a:1:{s:13:\"node_revision\";a:3:{s:10:\"left_field\";s:3:\"vid\";s:5:\"field\";s:11:\"revision_id\";s:5:\"extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}}s:11:\"revision_id\";a:1:{s:5:\"field\";a:1:{s:8:\"moved to\";a:2:{i:0;s:40:\"field_revision_field_photo_moorings_2010\";i:1;s:37:\"field_photo_moorings_2010-revision_id\";}}}s:37:\"field_photo_moorings_2010-revision_id\";a:5:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:19:\"Photo Moorings 2010\";s:11:\"title short\";s:19:\"Photo Moorings 2010\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2010.\";s:5:\"field\";a:9:{s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2010\";s:7:\"handler\";s:25:\"views_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:10:\"real field\";s:41:\"field_photo_moorings_2010-revision_id_fid\";s:17:\"additional fields\";a:8:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:29:\"field_photo_moorings_2010_fid\";i:4;s:29:\"field_photo_moorings_2010_alt\";i:5;s:31:\"field_photo_moorings_2010_title\";i:6;s:31:\"field_photo_moorings_2010_width\";i:7;s:32:\"field_photo_moorings_2010_height\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:1;}}s:29:\"field_photo_moorings_2010_fid\";a:8:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:51:\"Photo Moorings 2010 (field_photo_moorings_2010:fid)\";s:11:\"title short\";s:23:\"Photo Moorings 2010:fid\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2010.\";s:8:\"argument\";a:6:{s:5:\"field\";s:29:\"field_photo_moorings_2010_fid\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2010\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:29:\"field_photo_moorings_2010_fid\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2010\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:29:\"field_photo_moorings_2010_fid\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2010\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";}s:12:\"relationship\";a:4:{s:7:\"handler\";s:26:\"views_handler_relationship\";s:4:\"base\";s:12:\"file_managed\";s:10:\"base field\";s:3:\"fid\";s:5:\"label\";s:36:\"image from field_photo_moorings_2010\";}}s:29:\"field_photo_moorings_2010_alt\";a:7:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:51:\"Photo Moorings 2010 (field_photo_moorings_2010:alt)\";s:11:\"title short\";s:23:\"Photo Moorings 2010:alt\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2010.\";s:8:\"argument\";a:6:{s:5:\"field\";s:29:\"field_photo_moorings_2010_alt\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2010\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:29:\"field_photo_moorings_2010_alt\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2010\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:29:\"field_photo_moorings_2010_alt\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2010\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";}}s:31:\"field_photo_moorings_2010_title\";a:7:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:53:\"Photo Moorings 2010 (field_photo_moorings_2010:title)\";s:11:\"title short\";s:25:\"Photo Moorings 2010:title\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2010.\";s:8:\"argument\";a:6:{s:5:\"field\";s:31:\"field_photo_moorings_2010_title\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2010\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:31:\"field_photo_moorings_2010_title\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2010\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:31:\"field_photo_moorings_2010_title\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2010\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";}}s:31:\"field_photo_moorings_2010_width\";a:7:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:53:\"Photo Moorings 2010 (field_photo_moorings_2010:width)\";s:11:\"title short\";s:25:\"Photo Moorings 2010:width\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2010.\";s:8:\"argument\";a:6:{s:5:\"field\";s:31:\"field_photo_moorings_2010_width\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2010\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:31:\"field_photo_moorings_2010_width\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2010\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:31:\"field_photo_moorings_2010_width\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2010\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";}}s:32:\"field_photo_moorings_2010_height\";a:7:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:54:\"Photo Moorings 2010 (field_photo_moorings_2010:height)\";s:11:\"title short\";s:26:\"Photo Moorings 2010:height\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2010.\";s:8:\"argument\";a:6:{s:5:\"field\";s:32:\"field_photo_moorings_2010_height\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2010\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:32:\"field_photo_moorings_2010_height\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2010\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:32:\"field_photo_moorings_2010_height\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2010\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";}}}s:22:\"field_data_title_field\";a:7:{s:5:\"table\";a:1:{s:4:\"join\";a:1:{s:4:\"node\";a:3:{s:10:\"left_field\";s:3:\"nid\";s:5:\"field\";s:9:\"entity_id\";s:5:\"extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}}s:9:\"entity_id\";a:1:{s:5:\"field\";a:1:{s:8:\"moved to\";a:2:{i:0;s:22:\"field_data_title_field\";i:1;s:11:\"title_field\";}}}s:11:\"title_field\";a:5:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:5:\"Title\";s:11:\"title short\";s:5:\"Title\";s:4:\"help\";s:160:\"Appears in: node:photos, node:article, node:page, node:forum, node:mooring, node:openlayers_example_content, node:photo_moorings_2012, node:photo_moorings_2014.\";s:5:\"field\";a:9:{s:5:\"table\";s:22:\"field_data_title_field\";s:7:\"handler\";s:25:\"views_handler_title_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:11:\"title_field\";s:10:\"real field\";s:17:\"title_field_value\";s:17:\"additional fields\";a:5:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:17:\"title_field_value\";i:4;s:18:\"title_field_format\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:0;}}s:17:\"title_field_value\";a:7:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:19:\"Title (title_field)\";s:11:\"title short\";s:5:\"Title\";s:4:\"help\";s:160:\"Appears in: node:photos, node:article, node:page, node:forum, node:mooring, node:openlayers_example_content, node:photo_moorings_2012, node:photo_moorings_2014.\";s:8:\"argument\";a:6:{s:5:\"field\";s:17:\"title_field_value\";s:5:\"table\";s:22:\"field_data_title_field\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:2:{i:0;s:17:\"title_field_value\";i:1;s:18:\"title_field_format\";}s:10:\"field_name\";s:11:\"title_field\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:17:\"title_field_value\";s:5:\"table\";s:22:\"field_data_title_field\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:2:{i:0;s:17:\"title_field_value\";i:1;s:18:\"title_field_format\";}s:10:\"field_name\";s:11:\"title_field\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:17:\"title_field_value\";s:5:\"table\";s:22:\"field_data_title_field\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:2:{i:0;s:17:\"title_field_value\";i:1;s:18:\"title_field_format\";}s:10:\"field_name\";s:11:\"title_field\";}}s:8:\"language\";a:8:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:28:\"Title (title_field:language)\";s:11:\"title short\";s:14:\"Title:language\";s:4:\"help\";s:171:\"Language - Appears in: node:photos, node:article, node:page, node:forum, node:mooring, node:openlayers_example_content, node:photo_moorings_2012, node:photo_moorings_2014.\";s:5:\"field\";a:1:{s:7:\"handler\";s:35:\"views_handler_field_locale_language\";}s:8:\"argument\";a:6:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:22:\"field_data_title_field\";s:7:\"handler\";s:38:\"views_handler_argument_locale_language\";s:17:\"additional fields\";a:2:{i:0;s:17:\"title_field_value\";i:1;s:18:\"title_field_format\";}s:16:\"empty field name\";s:10:\"<No value>\";s:10:\"field_name\";s:11:\"title_field\";}s:6:\"filter\";a:6:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:22:\"field_data_title_field\";s:7:\"handler\";s:36:\"views_handler_filter_locale_language\";s:17:\"additional fields\";a:2:{i:0;s:17:\"title_field_value\";i:1;s:18:\"title_field_format\";}s:10:\"field_name\";s:11:\"title_field\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:22:\"field_data_title_field\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:2:{i:0;s:17:\"title_field_value\";i:1;s:18:\"title_field_format\";}s:10:\"field_name\";s:11:\"title_field\";}}s:18:\"title_field_format\";a:7:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:26:\"Title (title_field:format)\";s:11:\"title short\";s:12:\"Title:format\";s:4:\"help\";s:160:\"Appears in: node:photos, node:article, node:page, node:forum, node:mooring, node:openlayers_example_content, node:photo_moorings_2012, node:photo_moorings_2014.\";s:8:\"argument\";a:6:{s:5:\"field\";s:18:\"title_field_format\";s:5:\"table\";s:22:\"field_data_title_field\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:2:{i:0;s:17:\"title_field_value\";i:1;s:18:\"title_field_format\";}s:10:\"field_name\";s:11:\"title_field\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:18:\"title_field_format\";s:5:\"table\";s:22:\"field_data_title_field\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:2:{i:0;s:17:\"title_field_value\";i:1;s:18:\"title_field_format\";}s:10:\"field_name\";s:11:\"title_field\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:18:\"title_field_format\";s:5:\"table\";s:22:\"field_data_title_field\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:2:{i:0;s:17:\"title_field_value\";i:1;s:18:\"title_field_format\";}s:10:\"field_name\";s:11:\"title_field\";}}s:14:\"title_field_et\";a:5:{s:5:\"group\";s:18:\"Entity translation\";s:5:\"title\";s:17:\"Title: translated\";s:11:\"title short\";s:5:\"Title\";s:4:\"help\";s:218:\"Appears in: node:photos, node:article, node:page, node:forum, node:mooring, node:openlayers_example_content, node:photo_moorings_2012, node:photo_moorings_2014. Show the field Title translated into a specified language\";s:5:\"field\";a:9:{s:5:\"table\";s:22:\"field_data_title_field\";s:7:\"handler\";s:38:\"entity_translation_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:11:\"title_field\";s:10:\"real field\";s:17:\"title_field_value\";s:17:\"additional fields\";a:5:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:17:\"title_field_value\";i:4;s:18:\"title_field_format\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:0;}}}s:26:\"field_revision_title_field\";a:6:{s:5:\"table\";a:1:{s:4:\"join\";a:1:{s:13:\"node_revision\";a:3:{s:10:\"left_field\";s:3:\"vid\";s:5:\"field\";s:11:\"revision_id\";s:5:\"extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}}s:11:\"revision_id\";a:1:{s:5:\"field\";a:1:{s:8:\"moved to\";a:2:{i:0;s:26:\"field_revision_title_field\";i:1;s:23:\"title_field-revision_id\";}}}s:23:\"title_field-revision_id\";a:5:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:5:\"Title\";s:11:\"title short\";s:5:\"Title\";s:4:\"help\";s:160:\"Appears in: node:photos, node:article, node:page, node:forum, node:mooring, node:openlayers_example_content, node:photo_moorings_2012, node:photo_moorings_2014.\";s:5:\"field\";a:9:{s:5:\"table\";s:26:\"field_revision_title_field\";s:7:\"handler\";s:25:\"views_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:11:\"title_field\";s:10:\"real field\";s:29:\"title_field-revision_id_value\";s:17:\"additional fields\";a:5:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:17:\"title_field_value\";i:4;s:18:\"title_field_format\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:1;}}s:17:\"title_field_value\";a:7:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:19:\"Title (title_field)\";s:11:\"title short\";s:5:\"Title\";s:4:\"help\";s:160:\"Appears in: node:photos, node:article, node:page, node:forum, node:mooring, node:openlayers_example_content, node:photo_moorings_2012, node:photo_moorings_2014.\";s:8:\"argument\";a:6:{s:5:\"field\";s:17:\"title_field_value\";s:5:\"table\";s:26:\"field_revision_title_field\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:2:{i:0;s:17:\"title_field_value\";i:1;s:18:\"title_field_format\";}s:10:\"field_name\";s:11:\"title_field\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:17:\"title_field_value\";s:5:\"table\";s:26:\"field_revision_title_field\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:2:{i:0;s:17:\"title_field_value\";i:1;s:18:\"title_field_format\";}s:10:\"field_name\";s:11:\"title_field\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:17:\"title_field_value\";s:5:\"table\";s:26:\"field_revision_title_field\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:2:{i:0;s:17:\"title_field_value\";i:1;s:18:\"title_field_format\";}s:10:\"field_name\";s:11:\"title_field\";}}s:8:\"language\";a:8:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:28:\"Title (title_field:language)\";s:11:\"title short\";s:14:\"Title:language\";s:4:\"help\";s:171:\"Language - Appears in: node:photos, node:article, node:page, node:forum, node:mooring, node:openlayers_example_content, node:photo_moorings_2012, node:photo_moorings_2014.\";s:5:\"field\";a:1:{s:7:\"handler\";s:35:\"views_handler_field_locale_language\";}s:8:\"argument\";a:6:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:26:\"field_revision_title_field\";s:7:\"handler\";s:38:\"views_handler_argument_locale_language\";s:17:\"additional fields\";a:2:{i:0;s:17:\"title_field_value\";i:1;s:18:\"title_field_format\";}s:16:\"empty field name\";s:10:\"<No value>\";s:10:\"field_name\";s:11:\"title_field\";}s:6:\"filter\";a:6:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:26:\"field_revision_title_field\";s:7:\"handler\";s:36:\"views_handler_filter_locale_language\";s:17:\"additional fields\";a:2:{i:0;s:17:\"title_field_value\";i:1;s:18:\"title_field_format\";}s:10:\"field_name\";s:11:\"title_field\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:26:\"field_revision_title_field\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:2:{i:0;s:17:\"title_field_value\";i:1;s:18:\"title_field_format\";}s:10:\"field_name\";s:11:\"title_field\";}}s:18:\"title_field_format\";a:7:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:26:\"Title (title_field:format)\";s:11:\"title short\";s:12:\"Title:format\";s:4:\"help\";s:160:\"Appears in: node:photos, node:article, node:page, node:forum, node:mooring, node:openlayers_example_content, node:photo_moorings_2012, node:photo_moorings_2014.\";s:8:\"argument\";a:6:{s:5:\"field\";s:18:\"title_field_format\";s:5:\"table\";s:26:\"field_revision_title_field\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:2:{i:0;s:17:\"title_field_value\";i:1;s:18:\"title_field_format\";}s:10:\"field_name\";s:11:\"title_field\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:18:\"title_field_format\";s:5:\"table\";s:26:\"field_revision_title_field\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:2:{i:0;s:17:\"title_field_value\";i:1;s:18:\"title_field_format\";}s:10:\"field_name\";s:11:\"title_field\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:18:\"title_field_format\";s:5:\"table\";s:26:\"field_revision_title_field\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:2:{i:0;s:17:\"title_field_value\";i:1;s:18:\"title_field_format\";}s:10:\"field_name\";s:11:\"title_field\";}}}s:26:\"field_data_taxonomy_forums\";a:4:{s:5:\"table\";a:1:{s:4:\"join\";a:1:{s:4:\"node\";a:3:{s:10:\"left_field\";s:3:\"nid\";s:5:\"field\";s:9:\"entity_id\";s:5:\"extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}}s:9:\"entity_id\";a:1:{s:5:\"field\";a:1:{s:8:\"moved to\";a:2:{i:0;s:26:\"field_data_taxonomy_forums\";i:1;s:15:\"taxonomy_forums\";}}}s:15:\"taxonomy_forums\";a:5:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:6:\"Forums\";s:11:\"title short\";s:6:\"Forums\";s:4:\"help\";s:23:\"Appears in: node:forum.\";s:5:\"field\";a:9:{s:5:\"table\";s:26:\"field_data_taxonomy_forums\";s:7:\"handler\";s:25:\"views_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:15:\"taxonomy_forums\";s:10:\"real field\";s:19:\"taxonomy_forums_tid\";s:17:\"additional fields\";a:4:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:19:\"taxonomy_forums_tid\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:0;}}s:19:\"taxonomy_forums_tid\";a:8:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:24:\"Forums (taxonomy_forums)\";s:11:\"title short\";s:6:\"Forums\";s:4:\"help\";s:23:\"Appears in: node:forum.\";s:8:\"argument\";a:6:{s:5:\"field\";s:19:\"taxonomy_forums_tid\";s:5:\"table\";s:26:\"field_data_taxonomy_forums\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:1:{i:0;s:19:\"taxonomy_forums_tid\";}s:10:\"field_name\";s:15:\"taxonomy_forums\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:7:{s:5:\"field\";s:19:\"taxonomy_forums_tid\";s:5:\"table\";s:26:\"field_data_taxonomy_forums\";s:7:\"handler\";s:34:\"views_handler_filter_term_node_tid\";s:17:\"additional fields\";a:1:{i:0;s:19:\"taxonomy_forums_tid\";}s:10:\"field_name\";s:15:\"taxonomy_forums\";s:11:\"allow empty\";b:1;s:10:\"vocabulary\";s:6:\"forums\";}s:4:\"sort\";a:5:{s:5:\"field\";s:19:\"taxonomy_forums_tid\";s:5:\"table\";s:26:\"field_data_taxonomy_forums\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:1:{i:0;s:19:\"taxonomy_forums_tid\";}s:10:\"field_name\";s:15:\"taxonomy_forums\";}s:12:\"relationship\";a:4:{s:7:\"handler\";s:26:\"views_handler_relationship\";s:4:\"base\";s:18:\"taxonomy_term_data\";s:10:\"base field\";s:3:\"tid\";s:5:\"label\";s:25:\"term from taxonomy_forums\";}}}s:30:\"field_revision_taxonomy_forums\";a:4:{s:5:\"table\";a:1:{s:4:\"join\";a:1:{s:13:\"node_revision\";a:3:{s:10:\"left_field\";s:3:\"vid\";s:5:\"field\";s:11:\"revision_id\";s:5:\"extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}}s:11:\"revision_id\";a:1:{s:5:\"field\";a:1:{s:8:\"moved to\";a:2:{i:0;s:30:\"field_revision_taxonomy_forums\";i:1;s:27:\"taxonomy_forums-revision_id\";}}}s:27:\"taxonomy_forums-revision_id\";a:5:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:6:\"Forums\";s:11:\"title short\";s:6:\"Forums\";s:4:\"help\";s:23:\"Appears in: node:forum.\";s:5:\"field\";a:9:{s:5:\"table\";s:30:\"field_revision_taxonomy_forums\";s:7:\"handler\";s:25:\"views_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:15:\"taxonomy_forums\";s:10:\"real field\";s:31:\"taxonomy_forums-revision_id_tid\";s:17:\"additional fields\";a:4:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:19:\"taxonomy_forums_tid\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:1;}}s:19:\"taxonomy_forums_tid\";a:8:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:24:\"Forums (taxonomy_forums)\";s:11:\"title short\";s:6:\"Forums\";s:4:\"help\";s:23:\"Appears in: node:forum.\";s:8:\"argument\";a:6:{s:5:\"field\";s:19:\"taxonomy_forums_tid\";s:5:\"table\";s:30:\"field_revision_taxonomy_forums\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:1:{i:0;s:19:\"taxonomy_forums_tid\";}s:10:\"field_name\";s:15:\"taxonomy_forums\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:7:{s:5:\"field\";s:19:\"taxonomy_forums_tid\";s:5:\"table\";s:30:\"field_revision_taxonomy_forums\";s:7:\"handler\";s:34:\"views_handler_filter_term_node_tid\";s:17:\"additional fields\";a:1:{i:0;s:19:\"taxonomy_forums_tid\";}s:10:\"field_name\";s:15:\"taxonomy_forums\";s:11:\"allow empty\";b:1;s:10:\"vocabulary\";s:6:\"forums\";}s:4:\"sort\";a:5:{s:5:\"field\";s:19:\"taxonomy_forums_tid\";s:5:\"table\";s:30:\"field_revision_taxonomy_forums\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:1:{i:0;s:19:\"taxonomy_forums_tid\";}s:10:\"field_name\";s:15:\"taxonomy_forums\";}s:12:\"relationship\";a:4:{s:7:\"handler\";s:26:\"views_handler_relationship\";s:4:\"base\";s:18:\"taxonomy_term_data\";s:10:\"base field\";s:3:\"tid\";s:5:\"label\";s:25:\"term from taxonomy_forums\";}}}s:36:\"field_data_field_photo_moorings_2012\";a:10:{s:5:\"table\";a:1:{s:4:\"join\";a:1:{s:4:\"node\";a:3:{s:10:\"left_field\";s:3:\"nid\";s:5:\"field\";s:9:\"entity_id\";s:5:\"extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}}s:9:\"entity_id\";a:1:{s:5:\"field\";a:1:{s:8:\"moved to\";a:2:{i:0;s:36:\"field_data_field_photo_moorings_2012\";i:1;s:25:\"field_photo_moorings_2012\";}}}s:25:\"field_photo_moorings_2012\";a:5:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:19:\"Photo Moorings 2012\";s:11:\"title short\";s:19:\"Photo Moorings 2012\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2012.\";s:5:\"field\";a:9:{s:5:\"table\";s:36:\"field_data_field_photo_moorings_2012\";s:7:\"handler\";s:25:\"views_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:10:\"real field\";s:29:\"field_photo_moorings_2012_fid\";s:17:\"additional fields\";a:8:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:29:\"field_photo_moorings_2012_fid\";i:4;s:29:\"field_photo_moorings_2012_alt\";i:5;s:31:\"field_photo_moorings_2012_title\";i:6;s:31:\"field_photo_moorings_2012_width\";i:7;s:32:\"field_photo_moorings_2012_height\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:0;}}s:29:\"field_photo_moorings_2012_fid\";a:8:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:51:\"Photo Moorings 2012 (field_photo_moorings_2012:fid)\";s:11:\"title short\";s:23:\"Photo Moorings 2012:fid\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2012.\";s:8:\"argument\";a:6:{s:5:\"field\";s:29:\"field_photo_moorings_2012_fid\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2012\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:29:\"field_photo_moorings_2012_fid\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2012\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:29:\"field_photo_moorings_2012_fid\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2012\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";}s:12:\"relationship\";a:4:{s:7:\"handler\";s:26:\"views_handler_relationship\";s:4:\"base\";s:12:\"file_managed\";s:10:\"base field\";s:3:\"fid\";s:5:\"label\";s:36:\"image from field_photo_moorings_2012\";}}s:8:\"language\";a:8:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:56:\"Photo Moorings 2012 (field_photo_moorings_2012:language)\";s:11:\"title short\";s:28:\"Photo Moorings 2012:language\";s:4:\"help\";s:48:\"Language - Appears in: node:photo_moorings_2012.\";s:5:\"field\";a:1:{s:7:\"handler\";s:35:\"views_handler_field_locale_language\";}s:8:\"argument\";a:6:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2012\";s:7:\"handler\";s:38:\"views_handler_argument_locale_language\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:16:\"empty field name\";s:10:\"<No value>\";s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";}s:6:\"filter\";a:6:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2012\";s:7:\"handler\";s:36:\"views_handler_filter_locale_language\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2012\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";}}s:29:\"field_photo_moorings_2012_alt\";a:7:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:51:\"Photo Moorings 2012 (field_photo_moorings_2012:alt)\";s:11:\"title short\";s:23:\"Photo Moorings 2012:alt\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2012.\";s:8:\"argument\";a:6:{s:5:\"field\";s:29:\"field_photo_moorings_2012_alt\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2012\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:29:\"field_photo_moorings_2012_alt\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2012\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:29:\"field_photo_moorings_2012_alt\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2012\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";}}s:31:\"field_photo_moorings_2012_title\";a:7:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:53:\"Photo Moorings 2012 (field_photo_moorings_2012:title)\";s:11:\"title short\";s:25:\"Photo Moorings 2012:title\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2012.\";s:8:\"argument\";a:6:{s:5:\"field\";s:31:\"field_photo_moorings_2012_title\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2012\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:31:\"field_photo_moorings_2012_title\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2012\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:31:\"field_photo_moorings_2012_title\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2012\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";}}s:31:\"field_photo_moorings_2012_width\";a:7:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:53:\"Photo Moorings 2012 (field_photo_moorings_2012:width)\";s:11:\"title short\";s:25:\"Photo Moorings 2012:width\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2012.\";s:8:\"argument\";a:6:{s:5:\"field\";s:31:\"field_photo_moorings_2012_width\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2012\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:31:\"field_photo_moorings_2012_width\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2012\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:31:\"field_photo_moorings_2012_width\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2012\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";}}s:32:\"field_photo_moorings_2012_height\";a:7:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:54:\"Photo Moorings 2012 (field_photo_moorings_2012:height)\";s:11:\"title short\";s:26:\"Photo Moorings 2012:height\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2012.\";s:8:\"argument\";a:6:{s:5:\"field\";s:32:\"field_photo_moorings_2012_height\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2012\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:32:\"field_photo_moorings_2012_height\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2012\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:32:\"field_photo_moorings_2012_height\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2012\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";}}s:28:\"field_photo_moorings_2012_et\";a:5:{s:5:\"group\";s:18:\"Entity translation\";s:5:\"title\";s:31:\"Photo Moorings 2012: translated\";s:11:\"title short\";s:19:\"Photo Moorings 2012\";s:4:\"help\";s:109:\"Appears in: node:photo_moorings_2012. Show the field Photo Moorings 2012 translated into a specified language\";s:5:\"field\";a:9:{s:5:\"table\";s:36:\"field_data_field_photo_moorings_2012\";s:7:\"handler\";s:38:\"entity_translation_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:10:\"real field\";s:29:\"field_photo_moorings_2012_fid\";s:17:\"additional fields\";a:8:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:29:\"field_photo_moorings_2012_fid\";i:4;s:29:\"field_photo_moorings_2012_alt\";i:5;s:31:\"field_photo_moorings_2012_title\";i:6;s:31:\"field_photo_moorings_2012_width\";i:7;s:32:\"field_photo_moorings_2012_height\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:0;}}}s:40:\"field_revision_field_photo_moorings_2012\";a:9:{s:5:\"table\";a:1:{s:4:\"join\";a:1:{s:13:\"node_revision\";a:3:{s:10:\"left_field\";s:3:\"vid\";s:5:\"field\";s:11:\"revision_id\";s:5:\"extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}}s:11:\"revision_id\";a:1:{s:5:\"field\";a:1:{s:8:\"moved to\";a:2:{i:0;s:40:\"field_revision_field_photo_moorings_2012\";i:1;s:37:\"field_photo_moorings_2012-revision_id\";}}}s:37:\"field_photo_moorings_2012-revision_id\";a:5:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:19:\"Photo Moorings 2012\";s:11:\"title short\";s:19:\"Photo Moorings 2012\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2012.\";s:5:\"field\";a:9:{s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2012\";s:7:\"handler\";s:25:\"views_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:10:\"real field\";s:41:\"field_photo_moorings_2012-revision_id_fid\";s:17:\"additional fields\";a:8:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:29:\"field_photo_moorings_2012_fid\";i:4;s:29:\"field_photo_moorings_2012_alt\";i:5;s:31:\"field_photo_moorings_2012_title\";i:6;s:31:\"field_photo_moorings_2012_width\";i:7;s:32:\"field_photo_moorings_2012_height\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:1;}}s:29:\"field_photo_moorings_2012_fid\";a:8:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:51:\"Photo Moorings 2012 (field_photo_moorings_2012:fid)\";s:11:\"title short\";s:23:\"Photo Moorings 2012:fid\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2012.\";s:8:\"argument\";a:6:{s:5:\"field\";s:29:\"field_photo_moorings_2012_fid\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2012\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:29:\"field_photo_moorings_2012_fid\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2012\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:29:\"field_photo_moorings_2012_fid\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2012\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";}s:12:\"relationship\";a:4:{s:7:\"handler\";s:26:\"views_handler_relationship\";s:4:\"base\";s:12:\"file_managed\";s:10:\"base field\";s:3:\"fid\";s:5:\"label\";s:36:\"image from field_photo_moorings_2012\";}}s:8:\"language\";a:8:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:56:\"Photo Moorings 2012 (field_photo_moorings_2012:language)\";s:11:\"title short\";s:28:\"Photo Moorings 2012:language\";s:4:\"help\";s:48:\"Language - Appears in: node:photo_moorings_2012.\";s:5:\"field\";a:1:{s:7:\"handler\";s:35:\"views_handler_field_locale_language\";}s:8:\"argument\";a:6:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2012\";s:7:\"handler\";s:38:\"views_handler_argument_locale_language\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:16:\"empty field name\";s:10:\"<No value>\";s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";}s:6:\"filter\";a:6:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2012\";s:7:\"handler\";s:36:\"views_handler_filter_locale_language\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2012\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";}}s:29:\"field_photo_moorings_2012_alt\";a:7:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:51:\"Photo Moorings 2012 (field_photo_moorings_2012:alt)\";s:11:\"title short\";s:23:\"Photo Moorings 2012:alt\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2012.\";s:8:\"argument\";a:6:{s:5:\"field\";s:29:\"field_photo_moorings_2012_alt\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2012\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:29:\"field_photo_moorings_2012_alt\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2012\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:29:\"field_photo_moorings_2012_alt\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2012\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";}}s:31:\"field_photo_moorings_2012_title\";a:7:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:53:\"Photo Moorings 2012 (field_photo_moorings_2012:title)\";s:11:\"title short\";s:25:\"Photo Moorings 2012:title\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2012.\";s:8:\"argument\";a:6:{s:5:\"field\";s:31:\"field_photo_moorings_2012_title\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2012\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:31:\"field_photo_moorings_2012_title\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2012\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:31:\"field_photo_moorings_2012_title\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2012\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";}}s:31:\"field_photo_moorings_2012_width\";a:7:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:53:\"Photo Moorings 2012 (field_photo_moorings_2012:width)\";s:11:\"title short\";s:25:\"Photo Moorings 2012:width\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2012.\";s:8:\"argument\";a:6:{s:5:\"field\";s:31:\"field_photo_moorings_2012_width\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2012\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:31:\"field_photo_moorings_2012_width\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2012\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:31:\"field_photo_moorings_2012_width\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2012\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";}}s:32:\"field_photo_moorings_2012_height\";a:7:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:54:\"Photo Moorings 2012 (field_photo_moorings_2012:height)\";s:11:\"title short\";s:26:\"Photo Moorings 2012:height\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2012.\";s:8:\"argument\";a:6:{s:5:\"field\";s:32:\"field_photo_moorings_2012_height\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2012\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:32:\"field_photo_moorings_2012_height\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2012\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:32:\"field_photo_moorings_2012_height\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2012\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";}}}s:22:\"field_data_field_photo\";a:10:{s:5:\"table\";a:1:{s:4:\"join\";a:1:{s:4:\"node\";a:3:{s:10:\"left_field\";s:3:\"nid\";s:5:\"field\";s:9:\"entity_id\";s:5:\"extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}}s:9:\"entity_id\";a:1:{s:5:\"field\";a:1:{s:8:\"moved to\";a:2:{i:0;s:22:\"field_data_field_photo\";i:1;s:11:\"field_photo\";}}}s:11:\"field_photo\";a:5:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:19:\"Photo Moorings 2014\";s:11:\"title short\";s:19:\"Photo Moorings 2014\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2014.\";s:5:\"field\";a:9:{s:5:\"table\";s:22:\"field_data_field_photo\";s:7:\"handler\";s:25:\"views_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:11:\"field_photo\";s:10:\"real field\";s:15:\"field_photo_fid\";s:17:\"additional fields\";a:8:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:15:\"field_photo_fid\";i:4;s:15:\"field_photo_alt\";i:5;s:17:\"field_photo_title\";i:6;s:17:\"field_photo_width\";i:7;s:18:\"field_photo_height\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:0;}}s:15:\"field_photo_fid\";a:8:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:37:\"Photo Moorings 2014 (field_photo:fid)\";s:11:\"title short\";s:23:\"Photo Moorings 2014:fid\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2014.\";s:8:\"argument\";a:6:{s:5:\"field\";s:15:\"field_photo_fid\";s:5:\"table\";s:22:\"field_data_field_photo\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:15:\"field_photo_fid\";s:5:\"table\";s:22:\"field_data_field_photo\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:15:\"field_photo_fid\";s:5:\"table\";s:22:\"field_data_field_photo\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";}s:12:\"relationship\";a:4:{s:7:\"handler\";s:26:\"views_handler_relationship\";s:4:\"base\";s:12:\"file_managed\";s:10:\"base field\";s:3:\"fid\";s:5:\"label\";s:22:\"image from field_photo\";}}s:8:\"language\";a:8:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:42:\"Photo Moorings 2014 (field_photo:language)\";s:11:\"title short\";s:28:\"Photo Moorings 2014:language\";s:4:\"help\";s:48:\"Language - Appears in: node:photo_moorings_2014.\";s:5:\"field\";a:1:{s:7:\"handler\";s:35:\"views_handler_field_locale_language\";}s:8:\"argument\";a:6:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:22:\"field_data_field_photo\";s:7:\"handler\";s:38:\"views_handler_argument_locale_language\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:16:\"empty field name\";s:10:\"<No value>\";s:10:\"field_name\";s:11:\"field_photo\";}s:6:\"filter\";a:6:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:22:\"field_data_field_photo\";s:7:\"handler\";s:36:\"views_handler_filter_locale_language\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:22:\"field_data_field_photo\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";}}s:15:\"field_photo_alt\";a:7:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:37:\"Photo Moorings 2014 (field_photo:alt)\";s:11:\"title short\";s:23:\"Photo Moorings 2014:alt\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2014.\";s:8:\"argument\";a:6:{s:5:\"field\";s:15:\"field_photo_alt\";s:5:\"table\";s:22:\"field_data_field_photo\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:15:\"field_photo_alt\";s:5:\"table\";s:22:\"field_data_field_photo\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:15:\"field_photo_alt\";s:5:\"table\";s:22:\"field_data_field_photo\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";}}s:17:\"field_photo_title\";a:7:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:39:\"Photo Moorings 2014 (field_photo:title)\";s:11:\"title short\";s:25:\"Photo Moorings 2014:title\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2014.\";s:8:\"argument\";a:6:{s:5:\"field\";s:17:\"field_photo_title\";s:5:\"table\";s:22:\"field_data_field_photo\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:17:\"field_photo_title\";s:5:\"table\";s:22:\"field_data_field_photo\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:17:\"field_photo_title\";s:5:\"table\";s:22:\"field_data_field_photo\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";}}s:17:\"field_photo_width\";a:7:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:39:\"Photo Moorings 2014 (field_photo:width)\";s:11:\"title short\";s:25:\"Photo Moorings 2014:width\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2014.\";s:8:\"argument\";a:6:{s:5:\"field\";s:17:\"field_photo_width\";s:5:\"table\";s:22:\"field_data_field_photo\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:17:\"field_photo_width\";s:5:\"table\";s:22:\"field_data_field_photo\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:17:\"field_photo_width\";s:5:\"table\";s:22:\"field_data_field_photo\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";}}s:18:\"field_photo_height\";a:7:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:40:\"Photo Moorings 2014 (field_photo:height)\";s:11:\"title short\";s:26:\"Photo Moorings 2014:height\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2014.\";s:8:\"argument\";a:6:{s:5:\"field\";s:18:\"field_photo_height\";s:5:\"table\";s:22:\"field_data_field_photo\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:18:\"field_photo_height\";s:5:\"table\";s:22:\"field_data_field_photo\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:18:\"field_photo_height\";s:5:\"table\";s:22:\"field_data_field_photo\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";}}s:14:\"field_photo_et\";a:5:{s:5:\"group\";s:18:\"Entity translation\";s:5:\"title\";s:31:\"Photo Moorings 2014: translated\";s:11:\"title short\";s:19:\"Photo Moorings 2014\";s:4:\"help\";s:109:\"Appears in: node:photo_moorings_2014. Show the field Photo Moorings 2014 translated into a specified language\";s:5:\"field\";a:9:{s:5:\"table\";s:22:\"field_data_field_photo\";s:7:\"handler\";s:38:\"entity_translation_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:11:\"field_photo\";s:10:\"real field\";s:15:\"field_photo_fid\";s:17:\"additional fields\";a:8:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:15:\"field_photo_fid\";i:4;s:15:\"field_photo_alt\";i:5;s:17:\"field_photo_title\";i:6;s:17:\"field_photo_width\";i:7;s:18:\"field_photo_height\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:0;}}}s:26:\"field_revision_field_photo\";a:9:{s:5:\"table\";a:1:{s:4:\"join\";a:1:{s:13:\"node_revision\";a:3:{s:10:\"left_field\";s:3:\"vid\";s:5:\"field\";s:11:\"revision_id\";s:5:\"extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}}s:11:\"revision_id\";a:1:{s:5:\"field\";a:1:{s:8:\"moved to\";a:2:{i:0;s:26:\"field_revision_field_photo\";i:1;s:23:\"field_photo-revision_id\";}}}s:23:\"field_photo-revision_id\";a:5:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:19:\"Photo Moorings 2014\";s:11:\"title short\";s:19:\"Photo Moorings 2014\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2014.\";s:5:\"field\";a:9:{s:5:\"table\";s:26:\"field_revision_field_photo\";s:7:\"handler\";s:25:\"views_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:11:\"field_photo\";s:10:\"real field\";s:27:\"field_photo-revision_id_fid\";s:17:\"additional fields\";a:8:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:15:\"field_photo_fid\";i:4;s:15:\"field_photo_alt\";i:5;s:17:\"field_photo_title\";i:6;s:17:\"field_photo_width\";i:7;s:18:\"field_photo_height\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:1;}}s:15:\"field_photo_fid\";a:8:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:37:\"Photo Moorings 2014 (field_photo:fid)\";s:11:\"title short\";s:23:\"Photo Moorings 2014:fid\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2014.\";s:8:\"argument\";a:6:{s:5:\"field\";s:15:\"field_photo_fid\";s:5:\"table\";s:26:\"field_revision_field_photo\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:15:\"field_photo_fid\";s:5:\"table\";s:26:\"field_revision_field_photo\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:15:\"field_photo_fid\";s:5:\"table\";s:26:\"field_revision_field_photo\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";}s:12:\"relationship\";a:4:{s:7:\"handler\";s:26:\"views_handler_relationship\";s:4:\"base\";s:12:\"file_managed\";s:10:\"base field\";s:3:\"fid\";s:5:\"label\";s:22:\"image from field_photo\";}}s:8:\"language\";a:8:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:42:\"Photo Moorings 2014 (field_photo:language)\";s:11:\"title short\";s:28:\"Photo Moorings 2014:language\";s:4:\"help\";s:48:\"Language - Appears in: node:photo_moorings_2014.\";s:5:\"field\";a:1:{s:7:\"handler\";s:35:\"views_handler_field_locale_language\";}s:8:\"argument\";a:6:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:26:\"field_revision_field_photo\";s:7:\"handler\";s:38:\"views_handler_argument_locale_language\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:16:\"empty field name\";s:10:\"<No value>\";s:10:\"field_name\";s:11:\"field_photo\";}s:6:\"filter\";a:6:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:26:\"field_revision_field_photo\";s:7:\"handler\";s:36:\"views_handler_filter_locale_language\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:26:\"field_revision_field_photo\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";}}s:15:\"field_photo_alt\";a:7:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:37:\"Photo Moorings 2014 (field_photo:alt)\";s:11:\"title short\";s:23:\"Photo Moorings 2014:alt\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2014.\";s:8:\"argument\";a:6:{s:5:\"field\";s:15:\"field_photo_alt\";s:5:\"table\";s:26:\"field_revision_field_photo\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:15:\"field_photo_alt\";s:5:\"table\";s:26:\"field_revision_field_photo\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:15:\"field_photo_alt\";s:5:\"table\";s:26:\"field_revision_field_photo\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";}}s:17:\"field_photo_title\";a:7:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:39:\"Photo Moorings 2014 (field_photo:title)\";s:11:\"title short\";s:25:\"Photo Moorings 2014:title\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2014.\";s:8:\"argument\";a:6:{s:5:\"field\";s:17:\"field_photo_title\";s:5:\"table\";s:26:\"field_revision_field_photo\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:17:\"field_photo_title\";s:5:\"table\";s:26:\"field_revision_field_photo\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:17:\"field_photo_title\";s:5:\"table\";s:26:\"field_revision_field_photo\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";}}s:17:\"field_photo_width\";a:7:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:39:\"Photo Moorings 2014 (field_photo:width)\";s:11:\"title short\";s:25:\"Photo Moorings 2014:width\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2014.\";s:8:\"argument\";a:6:{s:5:\"field\";s:17:\"field_photo_width\";s:5:\"table\";s:26:\"field_revision_field_photo\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:17:\"field_photo_width\";s:5:\"table\";s:26:\"field_revision_field_photo\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:17:\"field_photo_width\";s:5:\"table\";s:26:\"field_revision_field_photo\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";}}s:18:\"field_photo_height\";a:7:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:40:\"Photo Moorings 2014 (field_photo:height)\";s:11:\"title short\";s:26:\"Photo Moorings 2014:height\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2014.\";s:8:\"argument\";a:6:{s:5:\"field\";s:18:\"field_photo_height\";s:5:\"table\";s:26:\"field_revision_field_photo\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:18:\"field_photo_height\";s:5:\"table\";s:26:\"field_revision_field_photo\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:18:\"field_photo_height\";s:5:\"table\";s:26:\"field_revision_field_photo\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";}}}s:23:\"field_data_field_gfdata\";a:13:{s:5:\"table\";a:1:{s:4:\"join\";a:1:{s:4:\"node\";a:3:{s:10:\"left_field\";s:3:\"nid\";s:5:\"field\";s:9:\"entity_id\";s:5:\"extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}}s:9:\"entity_id\";a:1:{s:5:\"field\";a:1:{s:8:\"moved to\";a:2:{i:0;s:23:\"field_data_field_gfdata\";i:1;s:12:\"field_gfdata\";}}}s:12:\"field_gfdata\";a:5:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:4:\"Data\";s:11:\"title short\";s:4:\"Data\";s:4:\"help\";s:25:\"Appears in: node:mooring.\";s:5:\"field\";a:9:{s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:25:\"views_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:12:\"field_gfdata\";s:10:\"real field\";s:17:\"field_gfdata_geom\";s:17:\"additional fields\";a:12:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:17:\"field_gfdata_geom\";i:4;s:21:\"field_gfdata_geo_type\";i:5;s:16:\"field_gfdata_lat\";i:6;s:16:\"field_gfdata_lon\";i:7;s:17:\"field_gfdata_left\";i:8;s:16:\"field_gfdata_top\";i:9;s:18:\"field_gfdata_right\";i:10;s:19:\"field_gfdata_bottom\";i:11;s:20:\"field_gfdata_geohash\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:0;}}s:17:\"field_gfdata_geom\";a:6:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:24:\"Data (field_gfdata:geom)\";s:11:\"title short\";s:9:\"Data:geom\";s:4:\"help\";s:25:\"Appears in: node:mooring.\";s:8:\"argument\";a:6:{s:5:\"field\";s:17:\"field_gfdata_geom\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:17:\"field_gfdata_geom\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:11:\"allow empty\";b:1;}}s:21:\"field_gfdata_geo_type\";a:7:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:28:\"Data (field_gfdata:geo_type)\";s:11:\"title short\";s:13:\"Data:geo_type\";s:4:\"help\";s:25:\"Appears in: node:mooring.\";s:8:\"argument\";a:6:{s:5:\"field\";s:21:\"field_gfdata_geo_type\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:21:\"field_gfdata_geo_type\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:21:\"field_gfdata_geo_type\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";}}s:16:\"field_gfdata_lat\";a:7:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:23:\"Data (field_gfdata:lat)\";s:11:\"title short\";s:8:\"Data:lat\";s:4:\"help\";s:25:\"Appears in: node:mooring.\";s:8:\"argument\";a:6:{s:5:\"field\";s:16:\"field_gfdata_lat\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:16:\"field_gfdata_lat\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:16:\"field_gfdata_lat\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";}}s:16:\"field_gfdata_lon\";a:7:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:23:\"Data (field_gfdata:lon)\";s:11:\"title short\";s:8:\"Data:lon\";s:4:\"help\";s:25:\"Appears in: node:mooring.\";s:8:\"argument\";a:6:{s:5:\"field\";s:16:\"field_gfdata_lon\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:16:\"field_gfdata_lon\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:16:\"field_gfdata_lon\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";}}s:17:\"field_gfdata_left\";a:7:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:24:\"Data (field_gfdata:left)\";s:11:\"title short\";s:9:\"Data:left\";s:4:\"help\";s:25:\"Appears in: node:mooring.\";s:8:\"argument\";a:6:{s:5:\"field\";s:17:\"field_gfdata_left\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:17:\"field_gfdata_left\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:17:\"field_gfdata_left\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";}}s:16:\"field_gfdata_top\";a:7:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:23:\"Data (field_gfdata:top)\";s:11:\"title short\";s:8:\"Data:top\";s:4:\"help\";s:25:\"Appears in: node:mooring.\";s:8:\"argument\";a:6:{s:5:\"field\";s:16:\"field_gfdata_top\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:16:\"field_gfdata_top\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:16:\"field_gfdata_top\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";}}s:18:\"field_gfdata_right\";a:7:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:25:\"Data (field_gfdata:right)\";s:11:\"title short\";s:10:\"Data:right\";s:4:\"help\";s:25:\"Appears in: node:mooring.\";s:8:\"argument\";a:6:{s:5:\"field\";s:18:\"field_gfdata_right\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:18:\"field_gfdata_right\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:18:\"field_gfdata_right\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";}}s:19:\"field_gfdata_bottom\";a:7:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:26:\"Data (field_gfdata:bottom)\";s:11:\"title short\";s:11:\"Data:bottom\";s:4:\"help\";s:25:\"Appears in: node:mooring.\";s:8:\"argument\";a:6:{s:5:\"field\";s:19:\"field_gfdata_bottom\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:19:\"field_gfdata_bottom\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:19:\"field_gfdata_bottom\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";}}s:20:\"field_gfdata_geohash\";a:7:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:27:\"Data (field_gfdata:geohash)\";s:11:\"title short\";s:12:\"Data:geohash\";s:4:\"help\";s:25:\"Appears in: node:mooring.\";s:8:\"argument\";a:6:{s:5:\"field\";s:20:\"field_gfdata_geohash\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:20:\"field_gfdata_geohash\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:20:\"field_gfdata_geohash\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";}}s:23:\"field_geofield_distance\";a:8:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:31:\"Data (field_gfdata) - proximity\";s:11:\"title short\";s:31:\"Data (field_gfdata) - proximity\";s:4:\"help\";s:25:\"Appears in: node:mooring.\";s:4:\"sort\";a:5:{s:5:\"field\";s:23:\"field_geofield_distance\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:21:\"geofield_handler_sort\";s:10:\"field_name\";s:12:\"field_gfdata\";s:10:\"real_field\";s:23:\"field_data_field_gfdata\";}s:5:\"field\";a:7:{s:5:\"field\";s:23:\"field_geofield_distance\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:22:\"geofield_handler_field\";s:10:\"field_name\";s:12:\"field_gfdata\";s:10:\"real_field\";s:23:\"field_data_field_gfdata\";s:5:\"float\";b:1;s:14:\"click sortable\";b:1;}s:6:\"filter\";a:5:{s:5:\"field\";s:23:\"field_geofield_distance\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:23:\"geofield_handler_filter\";s:10:\"field_name\";s:12:\"field_gfdata\";s:10:\"real_field\";s:23:\"field_data_field_gfdata\";}s:8:\"argument\";a:2:{s:7:\"handler\";s:35:\"geofield_handler_argument_proximity\";s:10:\"field_name\";s:12:\"field_gfdata\";}}}s:27:\"field_revision_field_gfdata\";a:12:{s:5:\"table\";a:1:{s:4:\"join\";a:1:{s:13:\"node_revision\";a:3:{s:10:\"left_field\";s:3:\"vid\";s:5:\"field\";s:11:\"revision_id\";s:5:\"extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}}s:11:\"revision_id\";a:1:{s:5:\"field\";a:1:{s:8:\"moved to\";a:2:{i:0;s:27:\"field_revision_field_gfdata\";i:1;s:24:\"field_gfdata-revision_id\";}}}s:24:\"field_gfdata-revision_id\";a:5:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:4:\"Data\";s:11:\"title short\";s:4:\"Data\";s:4:\"help\";s:25:\"Appears in: node:mooring.\";s:5:\"field\";a:9:{s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:25:\"views_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:12:\"field_gfdata\";s:10:\"real field\";s:29:\"field_gfdata-revision_id_geom\";s:17:\"additional fields\";a:12:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:17:\"field_gfdata_geom\";i:4;s:21:\"field_gfdata_geo_type\";i:5;s:16:\"field_gfdata_lat\";i:6;s:16:\"field_gfdata_lon\";i:7;s:17:\"field_gfdata_left\";i:8;s:16:\"field_gfdata_top\";i:9;s:18:\"field_gfdata_right\";i:10;s:19:\"field_gfdata_bottom\";i:11;s:20:\"field_gfdata_geohash\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:1;}}s:17:\"field_gfdata_geom\";a:6:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:24:\"Data (field_gfdata:geom)\";s:11:\"title short\";s:9:\"Data:geom\";s:4:\"help\";s:25:\"Appears in: node:mooring.\";s:8:\"argument\";a:6:{s:5:\"field\";s:17:\"field_gfdata_geom\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:17:\"field_gfdata_geom\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:11:\"allow empty\";b:1;}}s:21:\"field_gfdata_geo_type\";a:7:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:28:\"Data (field_gfdata:geo_type)\";s:11:\"title short\";s:13:\"Data:geo_type\";s:4:\"help\";s:25:\"Appears in: node:mooring.\";s:8:\"argument\";a:6:{s:5:\"field\";s:21:\"field_gfdata_geo_type\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:21:\"field_gfdata_geo_type\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:21:\"field_gfdata_geo_type\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";}}s:16:\"field_gfdata_lat\";a:7:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:23:\"Data (field_gfdata:lat)\";s:11:\"title short\";s:8:\"Data:lat\";s:4:\"help\";s:25:\"Appears in: node:mooring.\";s:8:\"argument\";a:6:{s:5:\"field\";s:16:\"field_gfdata_lat\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:16:\"field_gfdata_lat\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:16:\"field_gfdata_lat\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";}}s:16:\"field_gfdata_lon\";a:7:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:23:\"Data (field_gfdata:lon)\";s:11:\"title short\";s:8:\"Data:lon\";s:4:\"help\";s:25:\"Appears in: node:mooring.\";s:8:\"argument\";a:6:{s:5:\"field\";s:16:\"field_gfdata_lon\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:16:\"field_gfdata_lon\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:16:\"field_gfdata_lon\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";}}s:17:\"field_gfdata_left\";a:7:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:24:\"Data (field_gfdata:left)\";s:11:\"title short\";s:9:\"Data:left\";s:4:\"help\";s:25:\"Appears in: node:mooring.\";s:8:\"argument\";a:6:{s:5:\"field\";s:17:\"field_gfdata_left\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:17:\"field_gfdata_left\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:17:\"field_gfdata_left\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";}}s:16:\"field_gfdata_top\";a:7:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:23:\"Data (field_gfdata:top)\";s:11:\"title short\";s:8:\"Data:top\";s:4:\"help\";s:25:\"Appears in: node:mooring.\";s:8:\"argument\";a:6:{s:5:\"field\";s:16:\"field_gfdata_top\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:16:\"field_gfdata_top\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:16:\"field_gfdata_top\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";}}s:18:\"field_gfdata_right\";a:7:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:25:\"Data (field_gfdata:right)\";s:11:\"title short\";s:10:\"Data:right\";s:4:\"help\";s:25:\"Appears in: node:mooring.\";s:8:\"argument\";a:6:{s:5:\"field\";s:18:\"field_gfdata_right\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:18:\"field_gfdata_right\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:18:\"field_gfdata_right\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";}}s:19:\"field_gfdata_bottom\";a:7:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:26:\"Data (field_gfdata:bottom)\";s:11:\"title short\";s:11:\"Data:bottom\";s:4:\"help\";s:25:\"Appears in: node:mooring.\";s:8:\"argument\";a:6:{s:5:\"field\";s:19:\"field_gfdata_bottom\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:19:\"field_gfdata_bottom\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:19:\"field_gfdata_bottom\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";}}s:20:\"field_gfdata_geohash\";a:7:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:27:\"Data (field_gfdata:geohash)\";s:11:\"title short\";s:12:\"Data:geohash\";s:4:\"help\";s:25:\"Appears in: node:mooring.\";s:8:\"argument\";a:6:{s:5:\"field\";s:20:\"field_gfdata_geohash\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:20:\"field_gfdata_geohash\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:20:\"field_gfdata_geohash\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";}}}s:41:\"field_data_field_openlayers_example_input\";a:13:{s:5:\"table\";a:1:{s:4:\"join\";a:1:{s:4:\"node\";a:3:{s:10:\"left_field\";s:3:\"nid\";s:5:\"field\";s:9:\"entity_id\";s:5:\"extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}}s:9:\"entity_id\";a:1:{s:5:\"field\";a:1:{s:8:\"moved to\";a:2:{i:0;s:41:\"field_data_field_openlayers_example_input\";i:1;s:30:\"field_openlayers_example_input\";}}}s:30:\"field_openlayers_example_input\";a:5:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:33:\"OpenLayers Example Geofield Input\";s:11:\"title short\";s:33:\"OpenLayers Example Geofield Input\";s:4:\"help\";s:44:\"Appears in: node:openlayers_example_content.\";s:5:\"field\";a:9:{s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:25:\"views_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:10:\"real field\";s:35:\"field_openlayers_example_input_geom\";s:17:\"additional fields\";a:12:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:35:\"field_openlayers_example_input_geom\";i:4;s:39:\"field_openlayers_example_input_geo_type\";i:5;s:34:\"field_openlayers_example_input_lat\";i:6;s:34:\"field_openlayers_example_input_lon\";i:7;s:35:\"field_openlayers_example_input_left\";i:8;s:34:\"field_openlayers_example_input_top\";i:9;s:36:\"field_openlayers_example_input_right\";i:10;s:37:\"field_openlayers_example_input_bottom\";i:11;s:38:\"field_openlayers_example_input_geohash\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:0;}}s:35:\"field_openlayers_example_input_geom\";a:6:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:71:\"OpenLayers Example Geofield Input (field_openlayers_example_input:geom)\";s:11:\"title short\";s:38:\"OpenLayers Example Geofield Input:geom\";s:4:\"help\";s:44:\"Appears in: node:openlayers_example_content.\";s:8:\"argument\";a:6:{s:5:\"field\";s:35:\"field_openlayers_example_input_geom\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:35:\"field_openlayers_example_input_geom\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:11:\"allow empty\";b:1;}}s:39:\"field_openlayers_example_input_geo_type\";a:7:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:75:\"OpenLayers Example Geofield Input (field_openlayers_example_input:geo_type)\";s:11:\"title short\";s:42:\"OpenLayers Example Geofield Input:geo_type\";s:4:\"help\";s:44:\"Appears in: node:openlayers_example_content.\";s:8:\"argument\";a:6:{s:5:\"field\";s:39:\"field_openlayers_example_input_geo_type\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:39:\"field_openlayers_example_input_geo_type\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:39:\"field_openlayers_example_input_geo_type\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";}}s:34:\"field_openlayers_example_input_lat\";a:7:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:70:\"OpenLayers Example Geofield Input (field_openlayers_example_input:lat)\";s:11:\"title short\";s:37:\"OpenLayers Example Geofield Input:lat\";s:4:\"help\";s:44:\"Appears in: node:openlayers_example_content.\";s:8:\"argument\";a:6:{s:5:\"field\";s:34:\"field_openlayers_example_input_lat\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:34:\"field_openlayers_example_input_lat\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:34:\"field_openlayers_example_input_lat\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";}}s:34:\"field_openlayers_example_input_lon\";a:7:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:70:\"OpenLayers Example Geofield Input (field_openlayers_example_input:lon)\";s:11:\"title short\";s:37:\"OpenLayers Example Geofield Input:lon\";s:4:\"help\";s:44:\"Appears in: node:openlayers_example_content.\";s:8:\"argument\";a:6:{s:5:\"field\";s:34:\"field_openlayers_example_input_lon\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:34:\"field_openlayers_example_input_lon\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:34:\"field_openlayers_example_input_lon\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";}}s:35:\"field_openlayers_example_input_left\";a:7:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:71:\"OpenLayers Example Geofield Input (field_openlayers_example_input:left)\";s:11:\"title short\";s:38:\"OpenLayers Example Geofield Input:left\";s:4:\"help\";s:44:\"Appears in: node:openlayers_example_content.\";s:8:\"argument\";a:6:{s:5:\"field\";s:35:\"field_openlayers_example_input_left\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:35:\"field_openlayers_example_input_left\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:35:\"field_openlayers_example_input_left\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";}}s:34:\"field_openlayers_example_input_top\";a:7:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:70:\"OpenLayers Example Geofield Input (field_openlayers_example_input:top)\";s:11:\"title short\";s:37:\"OpenLayers Example Geofield Input:top\";s:4:\"help\";s:44:\"Appears in: node:openlayers_example_content.\";s:8:\"argument\";a:6:{s:5:\"field\";s:34:\"field_openlayers_example_input_top\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:34:\"field_openlayers_example_input_top\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:34:\"field_openlayers_example_input_top\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";}}s:36:\"field_openlayers_example_input_right\";a:7:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:72:\"OpenLayers Example Geofield Input (field_openlayers_example_input:right)\";s:11:\"title short\";s:39:\"OpenLayers Example Geofield Input:right\";s:4:\"help\";s:44:\"Appears in: node:openlayers_example_content.\";s:8:\"argument\";a:6:{s:5:\"field\";s:36:\"field_openlayers_example_input_right\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:36:\"field_openlayers_example_input_right\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:36:\"field_openlayers_example_input_right\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";}}s:37:\"field_openlayers_example_input_bottom\";a:7:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:73:\"OpenLayers Example Geofield Input (field_openlayers_example_input:bottom)\";s:11:\"title short\";s:40:\"OpenLayers Example Geofield Input:bottom\";s:4:\"help\";s:44:\"Appears in: node:openlayers_example_content.\";s:8:\"argument\";a:6:{s:5:\"field\";s:37:\"field_openlayers_example_input_bottom\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:37:\"field_openlayers_example_input_bottom\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:37:\"field_openlayers_example_input_bottom\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";}}s:38:\"field_openlayers_example_input_geohash\";a:7:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:74:\"OpenLayers Example Geofield Input (field_openlayers_example_input:geohash)\";s:11:\"title short\";s:41:\"OpenLayers Example Geofield Input:geohash\";s:4:\"help\";s:44:\"Appears in: node:openlayers_example_content.\";s:8:\"argument\";a:6:{s:5:\"field\";s:38:\"field_openlayers_example_input_geohash\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:38:\"field_openlayers_example_input_geohash\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:38:\"field_openlayers_example_input_geohash\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";}}s:23:\"field_geofield_distance\";a:8:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:78:\"OpenLayers Example Geofield Input (field_openlayers_example_input) - proximity\";s:11:\"title short\";s:78:\"OpenLayers Example Geofield Input (field_openlayers_example_input) - proximity\";s:4:\"help\";s:44:\"Appears in: node:openlayers_example_content.\";s:4:\"sort\";a:5:{s:5:\"field\";s:23:\"field_geofield_distance\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:21:\"geofield_handler_sort\";s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:10:\"real_field\";s:41:\"field_data_field_openlayers_example_input\";}s:5:\"field\";a:7:{s:5:\"field\";s:23:\"field_geofield_distance\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:22:\"geofield_handler_field\";s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:10:\"real_field\";s:41:\"field_data_field_openlayers_example_input\";s:5:\"float\";b:1;s:14:\"click sortable\";b:1;}s:6:\"filter\";a:5:{s:5:\"field\";s:23:\"field_geofield_distance\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:23:\"geofield_handler_filter\";s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:10:\"real_field\";s:41:\"field_data_field_openlayers_example_input\";}s:8:\"argument\";a:2:{s:7:\"handler\";s:35:\"geofield_handler_argument_proximity\";s:10:\"field_name\";s:30:\"field_openlayers_example_input\";}}}s:45:\"field_revision_field_openlayers_example_input\";a:12:{s:5:\"table\";a:1:{s:4:\"join\";a:1:{s:13:\"node_revision\";a:3:{s:10:\"left_field\";s:3:\"vid\";s:5:\"field\";s:11:\"revision_id\";s:5:\"extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}}s:11:\"revision_id\";a:1:{s:5:\"field\";a:1:{s:8:\"moved to\";a:2:{i:0;s:45:\"field_revision_field_openlayers_example_input\";i:1;s:42:\"field_openlayers_example_input-revision_id\";}}}s:42:\"field_openlayers_example_input-revision_id\";a:5:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:33:\"OpenLayers Example Geofield Input\";s:11:\"title short\";s:33:\"OpenLayers Example Geofield Input\";s:4:\"help\";s:44:\"Appears in: node:openlayers_example_content.\";s:5:\"field\";a:9:{s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:25:\"views_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:10:\"real field\";s:47:\"field_openlayers_example_input-revision_id_geom\";s:17:\"additional fields\";a:12:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:35:\"field_openlayers_example_input_geom\";i:4;s:39:\"field_openlayers_example_input_geo_type\";i:5;s:34:\"field_openlayers_example_input_lat\";i:6;s:34:\"field_openlayers_example_input_lon\";i:7;s:35:\"field_openlayers_example_input_left\";i:8;s:34:\"field_openlayers_example_input_top\";i:9;s:36:\"field_openlayers_example_input_right\";i:10;s:37:\"field_openlayers_example_input_bottom\";i:11;s:38:\"field_openlayers_example_input_geohash\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:1;}}s:35:\"field_openlayers_example_input_geom\";a:6:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:71:\"OpenLayers Example Geofield Input (field_openlayers_example_input:geom)\";s:11:\"title short\";s:38:\"OpenLayers Example Geofield Input:geom\";s:4:\"help\";s:44:\"Appears in: node:openlayers_example_content.\";s:8:\"argument\";a:6:{s:5:\"field\";s:35:\"field_openlayers_example_input_geom\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:35:\"field_openlayers_example_input_geom\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:11:\"allow empty\";b:1;}}s:39:\"field_openlayers_example_input_geo_type\";a:7:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:75:\"OpenLayers Example Geofield Input (field_openlayers_example_input:geo_type)\";s:11:\"title short\";s:42:\"OpenLayers Example Geofield Input:geo_type\";s:4:\"help\";s:44:\"Appears in: node:openlayers_example_content.\";s:8:\"argument\";a:6:{s:5:\"field\";s:39:\"field_openlayers_example_input_geo_type\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:39:\"field_openlayers_example_input_geo_type\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:39:\"field_openlayers_example_input_geo_type\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";}}s:34:\"field_openlayers_example_input_lat\";a:7:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:70:\"OpenLayers Example Geofield Input (field_openlayers_example_input:lat)\";s:11:\"title short\";s:37:\"OpenLayers Example Geofield Input:lat\";s:4:\"help\";s:44:\"Appears in: node:openlayers_example_content.\";s:8:\"argument\";a:6:{s:5:\"field\";s:34:\"field_openlayers_example_input_lat\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:34:\"field_openlayers_example_input_lat\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:34:\"field_openlayers_example_input_lat\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";}}s:34:\"field_openlayers_example_input_lon\";a:7:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:70:\"OpenLayers Example Geofield Input (field_openlayers_example_input:lon)\";s:11:\"title short\";s:37:\"OpenLayers Example Geofield Input:lon\";s:4:\"help\";s:44:\"Appears in: node:openlayers_example_content.\";s:8:\"argument\";a:6:{s:5:\"field\";s:34:\"field_openlayers_example_input_lon\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:34:\"field_openlayers_example_input_lon\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:34:\"field_openlayers_example_input_lon\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";}}s:35:\"field_openlayers_example_input_left\";a:7:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:71:\"OpenLayers Example Geofield Input (field_openlayers_example_input:left)\";s:11:\"title short\";s:38:\"OpenLayers Example Geofield Input:left\";s:4:\"help\";s:44:\"Appears in: node:openlayers_example_content.\";s:8:\"argument\";a:6:{s:5:\"field\";s:35:\"field_openlayers_example_input_left\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:35:\"field_openlayers_example_input_left\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:35:\"field_openlayers_example_input_left\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";}}s:34:\"field_openlayers_example_input_top\";a:7:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:70:\"OpenLayers Example Geofield Input (field_openlayers_example_input:top)\";s:11:\"title short\";s:37:\"OpenLayers Example Geofield Input:top\";s:4:\"help\";s:44:\"Appears in: node:openlayers_example_content.\";s:8:\"argument\";a:6:{s:5:\"field\";s:34:\"field_openlayers_example_input_top\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:34:\"field_openlayers_example_input_top\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:34:\"field_openlayers_example_input_top\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";}}s:36:\"field_openlayers_example_input_right\";a:7:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:72:\"OpenLayers Example Geofield Input (field_openlayers_example_input:right)\";s:11:\"title short\";s:39:\"OpenLayers Example Geofield Input:right\";s:4:\"help\";s:44:\"Appears in: node:openlayers_example_content.\";s:8:\"argument\";a:6:{s:5:\"field\";s:36:\"field_openlayers_example_input_right\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:36:\"field_openlayers_example_input_right\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:36:\"field_openlayers_example_input_right\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";}}s:37:\"field_openlayers_example_input_bottom\";a:7:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:73:\"OpenLayers Example Geofield Input (field_openlayers_example_input:bottom)\";s:11:\"title short\";s:40:\"OpenLayers Example Geofield Input:bottom\";s:4:\"help\";s:44:\"Appears in: node:openlayers_example_content.\";s:8:\"argument\";a:6:{s:5:\"field\";s:37:\"field_openlayers_example_input_bottom\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:37:\"field_openlayers_example_input_bottom\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:37:\"field_openlayers_example_input_bottom\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";}}s:38:\"field_openlayers_example_input_geohash\";a:7:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:74:\"OpenLayers Example Geofield Input (field_openlayers_example_input:geohash)\";s:11:\"title short\";s:41:\"OpenLayers Example Geofield Input:geohash\";s:4:\"help\";s:44:\"Appears in: node:openlayers_example_content.\";s:8:\"argument\";a:6:{s:5:\"field\";s:38:\"field_openlayers_example_input_geohash\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:38:\"field_openlayers_example_input_geohash\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:38:\"field_openlayers_example_input_geohash\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";}}}s:22:\"field_data_field_image\";a:8:{s:5:\"table\";a:1:{s:4:\"join\";a:1:{s:4:\"node\";a:3:{s:10:\"left_field\";s:3:\"nid\";s:5:\"field\";s:9:\"entity_id\";s:5:\"extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}}s:9:\"entity_id\";a:1:{s:5:\"field\";a:1:{s:8:\"moved to\";a:2:{i:0;s:22:\"field_data_field_image\";i:1;s:11:\"field_image\";}}}s:11:\"field_image\";a:5:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:5:\"Image\";s:11:\"title short\";s:5:\"Image\";s:4:\"help\";s:25:\"Appears in: node:article.\";s:5:\"field\";a:9:{s:5:\"table\";s:22:\"field_data_field_image\";s:7:\"handler\";s:25:\"views_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:11:\"field_image\";s:10:\"real field\";s:15:\"field_image_fid\";s:17:\"additional fields\";a:8:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:15:\"field_image_fid\";i:4;s:15:\"field_image_alt\";i:5;s:17:\"field_image_title\";i:6;s:17:\"field_image_width\";i:7;s:18:\"field_image_height\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:0;}}s:15:\"field_image_fid\";a:8:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:23:\"Image (field_image:fid)\";s:11:\"title short\";s:9:\"Image:fid\";s:4:\"help\";s:25:\"Appears in: node:article.\";s:8:\"argument\";a:6:{s:5:\"field\";s:15:\"field_image_fid\";s:5:\"table\";s:22:\"field_data_field_image\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:15:\"field_image_fid\";s:5:\"table\";s:22:\"field_data_field_image\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:15:\"field_image_fid\";s:5:\"table\";s:22:\"field_data_field_image\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";}s:12:\"relationship\";a:4:{s:7:\"handler\";s:26:\"views_handler_relationship\";s:4:\"base\";s:12:\"file_managed\";s:10:\"base field\";s:3:\"fid\";s:5:\"label\";s:22:\"image from field_image\";}}s:15:\"field_image_alt\";a:7:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:23:\"Image (field_image:alt)\";s:11:\"title short\";s:9:\"Image:alt\";s:4:\"help\";s:25:\"Appears in: node:article.\";s:8:\"argument\";a:6:{s:5:\"field\";s:15:\"field_image_alt\";s:5:\"table\";s:22:\"field_data_field_image\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:15:\"field_image_alt\";s:5:\"table\";s:22:\"field_data_field_image\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:15:\"field_image_alt\";s:5:\"table\";s:22:\"field_data_field_image\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";}}s:17:\"field_image_title\";a:7:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:25:\"Image (field_image:title)\";s:11:\"title short\";s:11:\"Image:title\";s:4:\"help\";s:25:\"Appears in: node:article.\";s:8:\"argument\";a:6:{s:5:\"field\";s:17:\"field_image_title\";s:5:\"table\";s:22:\"field_data_field_image\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:17:\"field_image_title\";s:5:\"table\";s:22:\"field_data_field_image\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:17:\"field_image_title\";s:5:\"table\";s:22:\"field_data_field_image\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";}}s:17:\"field_image_width\";a:7:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:25:\"Image (field_image:width)\";s:11:\"title short\";s:11:\"Image:width\";s:4:\"help\";s:25:\"Appears in: node:article.\";s:8:\"argument\";a:6:{s:5:\"field\";s:17:\"field_image_width\";s:5:\"table\";s:22:\"field_data_field_image\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:17:\"field_image_width\";s:5:\"table\";s:22:\"field_data_field_image\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:17:\"field_image_width\";s:5:\"table\";s:22:\"field_data_field_image\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";}}s:18:\"field_image_height\";a:7:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:26:\"Image (field_image:height)\";s:11:\"title short\";s:12:\"Image:height\";s:4:\"help\";s:25:\"Appears in: node:article.\";s:8:\"argument\";a:6:{s:5:\"field\";s:18:\"field_image_height\";s:5:\"table\";s:22:\"field_data_field_image\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:18:\"field_image_height\";s:5:\"table\";s:22:\"field_data_field_image\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:18:\"field_image_height\";s:5:\"table\";s:22:\"field_data_field_image\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";}}}s:26:\"field_revision_field_image\";a:8:{s:5:\"table\";a:1:{s:4:\"join\";a:1:{s:13:\"node_revision\";a:3:{s:10:\"left_field\";s:3:\"vid\";s:5:\"field\";s:11:\"revision_id\";s:5:\"extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}}s:11:\"revision_id\";a:1:{s:5:\"field\";a:1:{s:8:\"moved to\";a:2:{i:0;s:26:\"field_revision_field_image\";i:1;s:23:\"field_image-revision_id\";}}}s:23:\"field_image-revision_id\";a:5:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:5:\"Image\";s:11:\"title short\";s:5:\"Image\";s:4:\"help\";s:25:\"Appears in: node:article.\";s:5:\"field\";a:9:{s:5:\"table\";s:26:\"field_revision_field_image\";s:7:\"handler\";s:25:\"views_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:11:\"field_image\";s:10:\"real field\";s:27:\"field_image-revision_id_fid\";s:17:\"additional fields\";a:8:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:15:\"field_image_fid\";i:4;s:15:\"field_image_alt\";i:5;s:17:\"field_image_title\";i:6;s:17:\"field_image_width\";i:7;s:18:\"field_image_height\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:1;}}s:15:\"field_image_fid\";a:8:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:23:\"Image (field_image:fid)\";s:11:\"title short\";s:9:\"Image:fid\";s:4:\"help\";s:25:\"Appears in: node:article.\";s:8:\"argument\";a:6:{s:5:\"field\";s:15:\"field_image_fid\";s:5:\"table\";s:26:\"field_revision_field_image\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:15:\"field_image_fid\";s:5:\"table\";s:26:\"field_revision_field_image\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:15:\"field_image_fid\";s:5:\"table\";s:26:\"field_revision_field_image\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";}s:12:\"relationship\";a:4:{s:7:\"handler\";s:26:\"views_handler_relationship\";s:4:\"base\";s:12:\"file_managed\";s:10:\"base field\";s:3:\"fid\";s:5:\"label\";s:22:\"image from field_image\";}}s:15:\"field_image_alt\";a:7:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:23:\"Image (field_image:alt)\";s:11:\"title short\";s:9:\"Image:alt\";s:4:\"help\";s:25:\"Appears in: node:article.\";s:8:\"argument\";a:6:{s:5:\"field\";s:15:\"field_image_alt\";s:5:\"table\";s:26:\"field_revision_field_image\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:15:\"field_image_alt\";s:5:\"table\";s:26:\"field_revision_field_image\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:15:\"field_image_alt\";s:5:\"table\";s:26:\"field_revision_field_image\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";}}s:17:\"field_image_title\";a:7:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:25:\"Image (field_image:title)\";s:11:\"title short\";s:11:\"Image:title\";s:4:\"help\";s:25:\"Appears in: node:article.\";s:8:\"argument\";a:6:{s:5:\"field\";s:17:\"field_image_title\";s:5:\"table\";s:26:\"field_revision_field_image\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:17:\"field_image_title\";s:5:\"table\";s:26:\"field_revision_field_image\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:17:\"field_image_title\";s:5:\"table\";s:26:\"field_revision_field_image\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";}}s:17:\"field_image_width\";a:7:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:25:\"Image (field_image:width)\";s:11:\"title short\";s:11:\"Image:width\";s:4:\"help\";s:25:\"Appears in: node:article.\";s:8:\"argument\";a:6:{s:5:\"field\";s:17:\"field_image_width\";s:5:\"table\";s:26:\"field_revision_field_image\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:17:\"field_image_width\";s:5:\"table\";s:26:\"field_revision_field_image\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:17:\"field_image_width\";s:5:\"table\";s:26:\"field_revision_field_image\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";}}s:18:\"field_image_height\";a:7:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:26:\"Image (field_image:height)\";s:11:\"title short\";s:12:\"Image:height\";s:4:\"help\";s:25:\"Appears in: node:article.\";s:8:\"argument\";a:6:{s:5:\"field\";s:18:\"field_image_height\";s:5:\"table\";s:26:\"field_revision_field_image\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:18:\"field_image_height\";s:5:\"table\";s:26:\"field_revision_field_image\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:18:\"field_image_height\";s:5:\"table\";s:26:\"field_revision_field_image\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";}}}s:21:\"field_data_field_tags\";a:5:{s:5:\"table\";a:1:{s:4:\"join\";a:1:{s:4:\"node\";a:3:{s:10:\"left_field\";s:3:\"nid\";s:5:\"field\";s:9:\"entity_id\";s:5:\"extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}}s:9:\"entity_id\";a:1:{s:5:\"field\";a:1:{s:8:\"moved to\";a:2:{i:0;s:21:\"field_data_field_tags\";i:1;s:10:\"field_tags\";}}}s:10:\"field_tags\";a:5:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:4:\"Tags\";s:11:\"title short\";s:4:\"Tags\";s:4:\"help\";s:25:\"Appears in: node:article.\";s:5:\"field\";a:9:{s:5:\"table\";s:21:\"field_data_field_tags\";s:7:\"handler\";s:25:\"views_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:10:\"field_tags\";s:10:\"real field\";s:14:\"field_tags_tid\";s:17:\"additional fields\";a:4:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:14:\"field_tags_tid\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:0;}}s:14:\"field_tags_tid\";a:8:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:17:\"Tags (field_tags)\";s:11:\"title short\";s:4:\"Tags\";s:4:\"help\";s:25:\"Appears in: node:article.\";s:8:\"argument\";a:6:{s:5:\"field\";s:14:\"field_tags_tid\";s:5:\"table\";s:21:\"field_data_field_tags\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:1:{i:0;s:14:\"field_tags_tid\";}s:10:\"field_name\";s:10:\"field_tags\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:7:{s:5:\"field\";s:14:\"field_tags_tid\";s:5:\"table\";s:21:\"field_data_field_tags\";s:7:\"handler\";s:34:\"views_handler_filter_term_node_tid\";s:17:\"additional fields\";a:1:{i:0;s:14:\"field_tags_tid\";}s:10:\"field_name\";s:10:\"field_tags\";s:11:\"allow empty\";b:1;s:10:\"vocabulary\";s:4:\"tags\";}s:4:\"sort\";a:5:{s:5:\"field\";s:14:\"field_tags_tid\";s:5:\"table\";s:21:\"field_data_field_tags\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:1:{i:0;s:14:\"field_tags_tid\";}s:10:\"field_name\";s:10:\"field_tags\";}s:12:\"relationship\";a:4:{s:7:\"handler\";s:26:\"views_handler_relationship\";s:4:\"base\";s:18:\"taxonomy_term_data\";s:10:\"base field\";s:3:\"tid\";s:5:\"label\";s:20:\"term from field_tags\";}}s:5:\"delta\";a:8:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:23:\"Tags (field_tags:delta)\";s:11:\"title short\";s:10:\"Tags:delta\";s:4:\"help\";s:33:\"Delta - Appears in: node:article.\";s:5:\"field\";a:1:{s:7:\"handler\";s:27:\"views_handler_field_numeric\";}s:8:\"argument\";a:6:{s:5:\"field\";s:5:\"delta\";s:5:\"table\";s:21:\"field_data_field_tags\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:1:{i:0;s:14:\"field_tags_tid\";}s:16:\"empty field name\";s:12:\"- No value -\";s:10:\"field_name\";s:10:\"field_tags\";}s:6:\"filter\";a:6:{s:5:\"field\";s:5:\"delta\";s:5:\"table\";s:21:\"field_data_field_tags\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:1:{i:0;s:14:\"field_tags_tid\";}s:10:\"field_name\";s:10:\"field_tags\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:5:\"delta\";s:5:\"table\";s:21:\"field_data_field_tags\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:1:{i:0;s:14:\"field_tags_tid\";}s:10:\"field_name\";s:10:\"field_tags\";}}}s:25:\"field_revision_field_tags\";a:5:{s:5:\"table\";a:1:{s:4:\"join\";a:1:{s:13:\"node_revision\";a:3:{s:10:\"left_field\";s:3:\"vid\";s:5:\"field\";s:11:\"revision_id\";s:5:\"extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}}s:11:\"revision_id\";a:1:{s:5:\"field\";a:1:{s:8:\"moved to\";a:2:{i:0;s:25:\"field_revision_field_tags\";i:1;s:22:\"field_tags-revision_id\";}}}s:22:\"field_tags-revision_id\";a:5:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:4:\"Tags\";s:11:\"title short\";s:4:\"Tags\";s:4:\"help\";s:25:\"Appears in: node:article.\";s:5:\"field\";a:9:{s:5:\"table\";s:25:\"field_revision_field_tags\";s:7:\"handler\";s:25:\"views_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:10:\"field_tags\";s:10:\"real field\";s:26:\"field_tags-revision_id_tid\";s:17:\"additional fields\";a:4:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:14:\"field_tags_tid\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:1;}}s:14:\"field_tags_tid\";a:8:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:17:\"Tags (field_tags)\";s:11:\"title short\";s:4:\"Tags\";s:4:\"help\";s:25:\"Appears in: node:article.\";s:8:\"argument\";a:6:{s:5:\"field\";s:14:\"field_tags_tid\";s:5:\"table\";s:25:\"field_revision_field_tags\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:1:{i:0;s:14:\"field_tags_tid\";}s:10:\"field_name\";s:10:\"field_tags\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:7:{s:5:\"field\";s:14:\"field_tags_tid\";s:5:\"table\";s:25:\"field_revision_field_tags\";s:7:\"handler\";s:34:\"views_handler_filter_term_node_tid\";s:17:\"additional fields\";a:1:{i:0;s:14:\"field_tags_tid\";}s:10:\"field_name\";s:10:\"field_tags\";s:11:\"allow empty\";b:1;s:10:\"vocabulary\";s:4:\"tags\";}s:4:\"sort\";a:5:{s:5:\"field\";s:14:\"field_tags_tid\";s:5:\"table\";s:25:\"field_revision_field_tags\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:1:{i:0;s:14:\"field_tags_tid\";}s:10:\"field_name\";s:10:\"field_tags\";}s:12:\"relationship\";a:4:{s:7:\"handler\";s:26:\"views_handler_relationship\";s:4:\"base\";s:18:\"taxonomy_term_data\";s:10:\"base field\";s:3:\"tid\";s:5:\"label\";s:20:\"term from field_tags\";}}s:5:\"delta\";a:8:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:23:\"Tags (field_tags:delta)\";s:11:\"title short\";s:10:\"Tags:delta\";s:4:\"help\";s:33:\"Delta - Appears in: node:article.\";s:5:\"field\";a:1:{s:7:\"handler\";s:27:\"views_handler_field_numeric\";}s:8:\"argument\";a:6:{s:5:\"field\";s:5:\"delta\";s:5:\"table\";s:25:\"field_revision_field_tags\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:1:{i:0;s:14:\"field_tags_tid\";}s:16:\"empty field name\";s:12:\"- No value -\";s:10:\"field_name\";s:10:\"field_tags\";}s:6:\"filter\";a:6:{s:5:\"field\";s:5:\"delta\";s:5:\"table\";s:25:\"field_revision_field_tags\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:1:{i:0;s:14:\"field_tags_tid\";}s:10:\"field_name\";s:10:\"field_tags\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:5:\"delta\";s:5:\"table\";s:25:\"field_revision_field_tags\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:1:{i:0;s:14:\"field_tags_tid\";}s:10:\"field_name\";s:10:\"field_tags\";}}}s:15:\"field_data_body\";a:8:{s:5:\"table\";a:1:{s:4:\"join\";a:1:{s:4:\"node\";a:3:{s:10:\"left_field\";s:3:\"nid\";s:5:\"field\";s:9:\"entity_id\";s:5:\"extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}}s:9:\"entity_id\";a:1:{s:5:\"field\";a:1:{s:8:\"moved to\";a:2:{i:0;s:15:\"field_data_body\";i:1;s:4:\"body\";}}}s:4:\"body\";a:6:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:4:\"Body\";s:11:\"title short\";s:4:\"Body\";s:4:\"help\";s:244:\"Appears in: node:page, node:article, node:photos, node:openlayers_example_content, node:mooring, node:photo_moorings_2014, node:photo_moorings_2012, node:forum, node:photo_moorings_2010. Also known as: Content: Body, Content: Album description.\";s:7:\"aliases\";a:1:{i:0;a:4:{s:4:\"base\";s:4:\"node\";s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:17:\"Album description\";s:4:\"help\";s:34:\"This is an alias of Content: Body.\";}}s:5:\"field\";a:9:{s:5:\"table\";s:15:\"field_data_body\";s:7:\"handler\";s:25:\"views_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:4:\"body\";s:10:\"real field\";s:10:\"body_value\";s:17:\"additional fields\";a:6:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:10:\"body_value\";i:4;s:12:\"body_summary\";i:5;s:11:\"body_format\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:0;}}s:10:\"body_value\";a:7:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:11:\"Body (body)\";s:11:\"title short\";s:4:\"Body\";s:4:\"help\";s:245:\"Appears in: node:page, node:article, node:photos, node:openlayers_example_content, node:mooring, node:photo_moorings_2014, node:photo_moorings_2012, node:forum, node:photo_moorings_2010. Also known as: Content: Body (body), Content: Body (body).\";s:7:\"aliases\";a:1:{i:0;a:3:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:24:\"Album description (body)\";s:4:\"help\";s:41:\"This is an alias of Content: Body (body).\";}}s:8:\"argument\";a:6:{s:5:\"field\";s:10:\"body_value\";s:5:\"table\";s:15:\"field_data_body\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:3:{i:0;s:10:\"body_value\";i:1;s:12:\"body_summary\";i:2;s:11:\"body_format\";}s:10:\"field_name\";s:4:\"body\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:10:\"body_value\";s:5:\"table\";s:15:\"field_data_body\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:3:{i:0;s:10:\"body_value\";i:1;s:12:\"body_summary\";i:2;s:11:\"body_format\";}s:10:\"field_name\";s:4:\"body\";s:11:\"allow empty\";b:1;}}s:8:\"language\";a:8:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:20:\"Body (body:language)\";s:11:\"title short\";s:13:\"Body:language\";s:4:\"help\";s:197:\"Language - Appears in: node:page, node:article, node:photos, node:openlayers_example_content, node:mooring, node:photo_moorings_2014, node:photo_moorings_2012, node:forum, node:photo_moorings_2010.\";s:5:\"field\";a:1:{s:7:\"handler\";s:35:\"views_handler_field_locale_language\";}s:8:\"argument\";a:6:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:15:\"field_data_body\";s:7:\"handler\";s:38:\"views_handler_argument_locale_language\";s:17:\"additional fields\";a:3:{i:0;s:10:\"body_value\";i:1;s:12:\"body_summary\";i:2;s:11:\"body_format\";}s:16:\"empty field name\";s:10:\"<No value>\";s:10:\"field_name\";s:4:\"body\";}s:6:\"filter\";a:6:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:15:\"field_data_body\";s:7:\"handler\";s:36:\"views_handler_filter_locale_language\";s:17:\"additional fields\";a:3:{i:0;s:10:\"body_value\";i:1;s:12:\"body_summary\";i:2;s:11:\"body_format\";}s:10:\"field_name\";s:4:\"body\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:15:\"field_data_body\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:3:{i:0;s:10:\"body_value\";i:1;s:12:\"body_summary\";i:2;s:11:\"body_format\";}s:10:\"field_name\";s:4:\"body\";}}s:12:\"body_summary\";a:7:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:19:\"Body (body:summary)\";s:11:\"title short\";s:12:\"Body:summary\";s:4:\"help\";s:261:\"Appears in: node:page, node:article, node:photos, node:openlayers_example_content, node:mooring, node:photo_moorings_2014, node:photo_moorings_2012, node:forum, node:photo_moorings_2010. Also known as: Content: Body (body:summary), Content: Body (body:summary).\";s:7:\"aliases\";a:1:{i:0;a:3:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:32:\"Album description (body:summary)\";s:4:\"help\";s:49:\"This is an alias of Content: Body (body:summary).\";}}s:8:\"argument\";a:6:{s:5:\"field\";s:12:\"body_summary\";s:5:\"table\";s:15:\"field_data_body\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:3:{i:0;s:10:\"body_value\";i:1;s:12:\"body_summary\";i:2;s:11:\"body_format\";}s:10:\"field_name\";s:4:\"body\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:12:\"body_summary\";s:5:\"table\";s:15:\"field_data_body\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:3:{i:0;s:10:\"body_value\";i:1;s:12:\"body_summary\";i:2;s:11:\"body_format\";}s:10:\"field_name\";s:4:\"body\";s:11:\"allow empty\";b:1;}}s:11:\"body_format\";a:8:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:18:\"Body (body:format)\";s:11:\"title short\";s:11:\"Body:format\";s:4:\"help\";s:259:\"Appears in: node:page, node:article, node:photos, node:openlayers_example_content, node:mooring, node:photo_moorings_2014, node:photo_moorings_2012, node:forum, node:photo_moorings_2010. Also known as: Content: Body (body:format), Content: Body (body:format).\";s:7:\"aliases\";a:1:{i:0;a:3:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:31:\"Album description (body:format)\";s:4:\"help\";s:48:\"This is an alias of Content: Body (body:format).\";}}s:8:\"argument\";a:6:{s:5:\"field\";s:11:\"body_format\";s:5:\"table\";s:15:\"field_data_body\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:3:{i:0;s:10:\"body_value\";i:1;s:12:\"body_summary\";i:2;s:11:\"body_format\";}s:10:\"field_name\";s:4:\"body\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:11:\"body_format\";s:5:\"table\";s:15:\"field_data_body\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:3:{i:0;s:10:\"body_value\";i:1;s:12:\"body_summary\";i:2;s:11:\"body_format\";}s:10:\"field_name\";s:4:\"body\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:11:\"body_format\";s:5:\"table\";s:15:\"field_data_body\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:3:{i:0;s:10:\"body_value\";i:1;s:12:\"body_summary\";i:2;s:11:\"body_format\";}s:10:\"field_name\";s:4:\"body\";}}s:7:\"body_et\";a:6:{s:5:\"group\";s:18:\"Entity translation\";s:5:\"title\";s:16:\"Body: translated\";s:11:\"title short\";s:4:\"Body\";s:4:\"help\";s:301:\"Appears in: node:page, node:article, node:photos, node:openlayers_example_content, node:mooring, node:photo_moorings_2014, node:photo_moorings_2012, node:forum, node:photo_moorings_2010. Also known as: Content: Body, Content: Album description. Show the field Body translated into a specified language\";s:7:\"aliases\";a:1:{i:0;a:4:{s:4:\"base\";s:4:\"node\";s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:17:\"Album description\";s:4:\"help\";s:34:\"This is an alias of Content: Body.\";}}s:5:\"field\";a:9:{s:5:\"table\";s:15:\"field_data_body\";s:7:\"handler\";s:38:\"entity_translation_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:4:\"body\";s:10:\"real field\";s:10:\"body_value\";s:17:\"additional fields\";a:6:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:10:\"body_value\";i:4;s:12:\"body_summary\";i:5;s:11:\"body_format\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:0;}}}s:19:\"field_revision_body\";a:7:{s:5:\"table\";a:1:{s:4:\"join\";a:1:{s:13:\"node_revision\";a:3:{s:10:\"left_field\";s:3:\"vid\";s:5:\"field\";s:11:\"revision_id\";s:5:\"extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}}s:11:\"revision_id\";a:1:{s:5:\"field\";a:1:{s:8:\"moved to\";a:2:{i:0;s:19:\"field_revision_body\";i:1;s:16:\"body-revision_id\";}}}s:16:\"body-revision_id\";a:5:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:4:\"Body\";s:11:\"title short\";s:4:\"Body\";s:4:\"help\";s:186:\"Appears in: node:page, node:article, node:photos, node:openlayers_example_content, node:mooring, node:photo_moorings_2014, node:photo_moorings_2012, node:forum, node:photo_moorings_2010.\";s:5:\"field\";a:9:{s:5:\"table\";s:19:\"field_revision_body\";s:7:\"handler\";s:25:\"views_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:4:\"body\";s:10:\"real field\";s:22:\"body-revision_id_value\";s:17:\"additional fields\";a:6:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:10:\"body_value\";i:4;s:12:\"body_summary\";i:5;s:11:\"body_format\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:1;}}s:10:\"body_value\";a:7:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:11:\"Body (body)\";s:11:\"title short\";s:4:\"Body\";s:4:\"help\";s:245:\"Appears in: node:page, node:article, node:photos, node:openlayers_example_content, node:mooring, node:photo_moorings_2014, node:photo_moorings_2012, node:forum, node:photo_moorings_2010. Also known as: Content: Body (body), Content: Body (body).\";s:7:\"aliases\";a:1:{i:0;a:3:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:24:\"Album description (body)\";s:4:\"help\";s:41:\"This is an alias of Content: Body (body).\";}}s:8:\"argument\";a:6:{s:5:\"field\";s:10:\"body_value\";s:5:\"table\";s:19:\"field_revision_body\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:3:{i:0;s:10:\"body_value\";i:1;s:12:\"body_summary\";i:2;s:11:\"body_format\";}s:10:\"field_name\";s:4:\"body\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:10:\"body_value\";s:5:\"table\";s:19:\"field_revision_body\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:3:{i:0;s:10:\"body_value\";i:1;s:12:\"body_summary\";i:2;s:11:\"body_format\";}s:10:\"field_name\";s:4:\"body\";s:11:\"allow empty\";b:1;}}s:8:\"language\";a:8:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:20:\"Body (body:language)\";s:11:\"title short\";s:13:\"Body:language\";s:4:\"help\";s:197:\"Language - Appears in: node:page, node:article, node:photos, node:openlayers_example_content, node:mooring, node:photo_moorings_2014, node:photo_moorings_2012, node:forum, node:photo_moorings_2010.\";s:5:\"field\";a:1:{s:7:\"handler\";s:35:\"views_handler_field_locale_language\";}s:8:\"argument\";a:6:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:19:\"field_revision_body\";s:7:\"handler\";s:38:\"views_handler_argument_locale_language\";s:17:\"additional fields\";a:3:{i:0;s:10:\"body_value\";i:1;s:12:\"body_summary\";i:2;s:11:\"body_format\";}s:16:\"empty field name\";s:10:\"<No value>\";s:10:\"field_name\";s:4:\"body\";}s:6:\"filter\";a:6:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:19:\"field_revision_body\";s:7:\"handler\";s:36:\"views_handler_filter_locale_language\";s:17:\"additional fields\";a:3:{i:0;s:10:\"body_value\";i:1;s:12:\"body_summary\";i:2;s:11:\"body_format\";}s:10:\"field_name\";s:4:\"body\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:19:\"field_revision_body\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:3:{i:0;s:10:\"body_value\";i:1;s:12:\"body_summary\";i:2;s:11:\"body_format\";}s:10:\"field_name\";s:4:\"body\";}}s:12:\"body_summary\";a:7:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:19:\"Body (body:summary)\";s:11:\"title short\";s:12:\"Body:summary\";s:4:\"help\";s:261:\"Appears in: node:page, node:article, node:photos, node:openlayers_example_content, node:mooring, node:photo_moorings_2014, node:photo_moorings_2012, node:forum, node:photo_moorings_2010. Also known as: Content: Body (body:summary), Content: Body (body:summary).\";s:7:\"aliases\";a:1:{i:0;a:3:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:32:\"Album description (body:summary)\";s:4:\"help\";s:49:\"This is an alias of Content: Body (body:summary).\";}}s:8:\"argument\";a:6:{s:5:\"field\";s:12:\"body_summary\";s:5:\"table\";s:19:\"field_revision_body\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:3:{i:0;s:10:\"body_value\";i:1;s:12:\"body_summary\";i:2;s:11:\"body_format\";}s:10:\"field_name\";s:4:\"body\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:12:\"body_summary\";s:5:\"table\";s:19:\"field_revision_body\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:3:{i:0;s:10:\"body_value\";i:1;s:12:\"body_summary\";i:2;s:11:\"body_format\";}s:10:\"field_name\";s:4:\"body\";s:11:\"allow empty\";b:1;}}s:11:\"body_format\";a:8:{s:5:\"group\";s:25:\"Content (historical data)\";s:5:\"title\";s:18:\"Body (body:format)\";s:11:\"title short\";s:11:\"Body:format\";s:4:\"help\";s:259:\"Appears in: node:page, node:article, node:photos, node:openlayers_example_content, node:mooring, node:photo_moorings_2014, node:photo_moorings_2012, node:forum, node:photo_moorings_2010. Also known as: Content: Body (body:format), Content: Body (body:format).\";s:7:\"aliases\";a:1:{i:0;a:3:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:31:\"Album description (body:format)\";s:4:\"help\";s:48:\"This is an alias of Content: Body (body:format).\";}}s:8:\"argument\";a:6:{s:5:\"field\";s:11:\"body_format\";s:5:\"table\";s:19:\"field_revision_body\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:3:{i:0;s:10:\"body_value\";i:1;s:12:\"body_summary\";i:2;s:11:\"body_format\";}s:10:\"field_name\";s:4:\"body\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:11:\"body_format\";s:5:\"table\";s:19:\"field_revision_body\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:3:{i:0;s:10:\"body_value\";i:1;s:12:\"body_summary\";i:2;s:11:\"body_format\";}s:10:\"field_name\";s:4:\"body\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:11:\"body_format\";s:5:\"table\";s:19:\"field_revision_body\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:3:{i:0;s:10:\"body_value\";i:1;s:12:\"body_summary\";i:2;s:11:\"body_format\";}s:10:\"field_name\";s:4:\"body\";}}}s:23:\"field_data_comment_body\";a:5:{s:5:\"table\";a:1:{s:4:\"join\";a:1:{s:7:\"comment\";a:3:{s:10:\"left_field\";s:3:\"cid\";s:5:\"field\";s:9:\"entity_id\";s:5:\"extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:7:\"comment\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}}s:9:\"entity_id\";a:1:{s:5:\"field\";a:1:{s:8:\"moved to\";a:2:{i:0;s:23:\"field_data_comment_body\";i:1;s:12:\"comment_body\";}}}s:12:\"comment_body\";a:5:{s:5:\"group\";s:7:\"Comment\";s:5:\"title\";s:7:\"Comment\";s:11:\"title short\";s:7:\"Comment\";s:4:\"help\";s:330:\"Appears in: comment:comment_node_page, comment:comment_node_article, comment:comment_node_photos, comment:comment_node_openlayers_example_content, comment:comment_node_mooring, comment:comment_node_photo_moorings_2014, comment:comment_node_photo_moorings_2012, comment:comment_node_forum, comment:comment_node_photo_moorings_2010.\";s:5:\"field\";a:9:{s:5:\"table\";s:23:\"field_data_comment_body\";s:7:\"handler\";s:25:\"views_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:12:\"comment_body\";s:10:\"real field\";s:18:\"comment_body_value\";s:17:\"additional fields\";a:5:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:18:\"comment_body_value\";i:4;s:19:\"comment_body_format\";}s:13:\"entity_tables\";a:1:{s:7:\"comment\";s:7:\"comment\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:0;}}s:18:\"comment_body_value\";a:6:{s:5:\"group\";s:7:\"Comment\";s:5:\"title\";s:22:\"Comment (comment_body)\";s:11:\"title short\";s:7:\"Comment\";s:4:\"help\";s:330:\"Appears in: comment:comment_node_page, comment:comment_node_article, comment:comment_node_photos, comment:comment_node_openlayers_example_content, comment:comment_node_mooring, comment:comment_node_photo_moorings_2014, comment:comment_node_photo_moorings_2012, comment:comment_node_forum, comment:comment_node_photo_moorings_2010.\";s:8:\"argument\";a:6:{s:5:\"field\";s:18:\"comment_body_value\";s:5:\"table\";s:23:\"field_data_comment_body\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:2:{i:0;s:18:\"comment_body_value\";i:1;s:19:\"comment_body_format\";}s:10:\"field_name\";s:12:\"comment_body\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:18:\"comment_body_value\";s:5:\"table\";s:23:\"field_data_comment_body\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:2:{i:0;s:18:\"comment_body_value\";i:1;s:19:\"comment_body_format\";}s:10:\"field_name\";s:12:\"comment_body\";s:11:\"allow empty\";b:1;}}s:19:\"comment_body_format\";a:7:{s:5:\"group\";s:7:\"Comment\";s:5:\"title\";s:29:\"Comment (comment_body:format)\";s:11:\"title short\";s:14:\"Comment:format\";s:4:\"help\";s:330:\"Appears in: comment:comment_node_page, comment:comment_node_article, comment:comment_node_photos, comment:comment_node_openlayers_example_content, comment:comment_node_mooring, comment:comment_node_photo_moorings_2014, comment:comment_node_photo_moorings_2012, comment:comment_node_forum, comment:comment_node_photo_moorings_2010.\";s:8:\"argument\";a:6:{s:5:\"field\";s:19:\"comment_body_format\";s:5:\"table\";s:23:\"field_data_comment_body\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:2:{i:0;s:18:\"comment_body_value\";i:1;s:19:\"comment_body_format\";}s:10:\"field_name\";s:12:\"comment_body\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:19:\"comment_body_format\";s:5:\"table\";s:23:\"field_data_comment_body\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:2:{i:0;s:18:\"comment_body_value\";i:1;s:19:\"comment_body_format\";}s:10:\"field_name\";s:12:\"comment_body\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:19:\"comment_body_format\";s:5:\"table\";s:23:\"field_data_comment_body\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:2:{i:0;s:18:\"comment_body_value\";i:1;s:19:\"comment_body_format\";}s:10:\"field_name\";s:12:\"comment_body\";}}}s:14:\"filter_formats\";a:1:{s:8:\"moved to\";s:13:\"filter_format\";}s:13:\"filter_format\";a:1:{s:5:\"table\";a:1:{s:4:\"join\";a:2:{s:13:\"node_revision\";a:2:{s:10:\"left_field\";s:6:\"format\";s:5:\"field\";s:6:\"format\";}s:4:\"node\";a:3:{s:10:\"left_table\";s:13:\"node_revision\";s:10:\"left_field\";s:6:\"format\";s:5:\"field\";s:6:\"format\";}}}}s:14:\"locales_source\";a:7:{s:5:\"table\";a:2:{s:5:\"group\";s:13:\"Locale source\";s:4:\"base\";a:3:{s:5:\"field\";s:3:\"lid\";s:5:\"title\";s:13:\"Locale source\";s:4:\"help\";s:73:\"A source string for translation, in English or the default site language.\";}}s:3:\"lid\";a:6:{s:5:\"title\";s:3:\"LID\";s:4:\"help\";s:28:\"The ID of the source string.\";s:5:\"field\";a:2:{s:7:\"handler\";s:19:\"views_handler_field\";s:14:\"click sortable\";b:1;}s:8:\"argument\";a:3:{s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:7:\"numeric\";b:1;s:13:\"validate type\";s:3:\"lid\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:8:\"location\";a:7:{s:5:\"group\";s:13:\"Locale source\";s:5:\"title\";s:8:\"Location\";s:4:\"help\";s:55:\"A description of the location or context of the string.\";s:5:\"field\";a:2:{s:7:\"handler\";s:19:\"views_handler_field\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:29:\"views_handler_argument_string\";}}s:9:\"textgroup\";a:6:{s:5:\"group\";s:13:\"Locale source\";s:5:\"title\";s:5:\"Group\";s:4:\"help\";s:32:\"The group the translation is in.\";s:5:\"field\";a:2:{s:7:\"handler\";s:32:\"views_handler_field_locale_group\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:33:\"views_handler_filter_locale_group\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:35:\"views_handler_argument_locale_group\";}}s:6:\"source\";a:5:{s:5:\"group\";s:13:\"Locale source\";s:5:\"title\";s:6:\"Source\";s:4:\"help\";s:25:\"The full original string.\";s:5:\"field\";a:1:{s:7:\"handler\";s:19:\"views_handler_field\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}}s:7:\"version\";a:6:{s:5:\"group\";s:13:\"Locale source\";s:5:\"title\";s:7:\"Version\";s:4:\"help\";s:51:\"The version of Drupal core that this string is for.\";s:5:\"field\";a:2:{s:7:\"handler\";s:19:\"views_handler_field\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:35:\"views_handler_filter_locale_version\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:29:\"views_handler_argument_string\";}}s:8:\"edit_lid\";a:2:{s:5:\"group\";s:13:\"Locale source\";s:5:\"field\";a:3:{s:5:\"title\";s:9:\"Edit link\";s:4:\"help\";s:47:\"Provide a simple link to edit the translations.\";s:7:\"handler\";s:36:\"views_handler_field_locale_link_edit\";}}}s:14:\"locales_target\";a:5:{s:5:\"table\";a:2:{s:5:\"group\";s:13:\"Locale target\";s:4:\"join\";a:1:{s:14:\"locales_source\";a:2:{s:10:\"left_field\";s:3:\"lid\";s:5:\"field\";s:3:\"lid\";}}}s:11:\"translation\";a:5:{s:5:\"group\";s:13:\"Locale target\";s:5:\"title\";s:11:\"Translation\";s:4:\"help\";s:28:\"The full translation string.\";s:5:\"field\";a:1:{s:7:\"handler\";s:19:\"views_handler_field\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}}s:8:\"language\";a:6:{s:5:\"group\";s:13:\"Locale target\";s:5:\"title\";s:8:\"Language\";s:4:\"help\";s:36:\"The language this translation is in.\";s:5:\"field\";a:2:{s:7:\"handler\";s:35:\"views_handler_field_locale_language\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:36:\"views_handler_filter_locale_language\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:38:\"views_handler_argument_locale_language\";}}s:4:\"plid\";a:4:{s:5:\"group\";s:13:\"Locale target\";s:5:\"title\";s:12:\"Singular LID\";s:4:\"help\";s:33:\"The ID of the parent translation.\";s:5:\"field\";a:1:{s:7:\"handler\";s:19:\"views_handler_field\";}}s:6:\"plural\";a:6:{s:5:\"group\";s:13:\"Locale target\";s:5:\"title\";s:6:\"Plural\";s:4:\"help\";s:41:\"Whether or not the translation is plural.\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_boolean\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:3:{s:7:\"handler\";s:37:\"views_handler_filter_boolean_operator\";s:5:\"label\";s:6:\"Plural\";s:4:\"type\";s:6:\"yes-no\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}}s:8:\"location\";a:14:{s:5:\"table\";a:3:{s:5:\"group\";s:8:\"Location\";s:4:\"base\";a:4:{s:5:\"field\";s:3:\"lid\";s:5:\"title\";s:8:\"Location\";s:4:\"help\";s:44:\"Locations are addresses and map coordinates.\";s:6:\"weight\";i:-10;}s:4:\"join\";a:4:{s:4:\"node\";a:3:{s:10:\"left_table\";s:17:\"location_instance\";s:10:\"left_field\";s:3:\"lid\";s:5:\"field\";s:3:\"lid\";}s:13:\"node_revision\";a:3:{s:10:\"left_table\";s:17:\"location_instance\";s:10:\"left_field\";s:3:\"lid\";s:5:\"field\";s:3:\"lid\";}s:18:\"taxonomy_term_data\";a:3:{s:10:\"left_table\";s:17:\"location_instance\";s:10:\"left_field\";s:3:\"lid\";s:5:\"field\";s:3:\"lid\";}s:5:\"users\";a:3:{s:10:\"left_table\";s:17:\"location_instance\";s:10:\"left_field\";s:3:\"lid\";s:5:\"field\";s:3:\"lid\";}}}s:3:\"lid\";a:5:{s:5:\"title\";s:3:\"Lid\";s:4:\"help\";s:32:\"The location ID of the location.\";s:5:\"field\";a:2:{s:7:\"handler\";s:19:\"views_handler_field\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:2:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:4:\"name\";a:5:{s:5:\"title\";s:4:\"Name\";s:4:\"help\";s:34:\"The name of the selected location.\";s:5:\"field\";a:1:{s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:6:\"street\";a:5:{s:5:\"title\";s:6:\"Street\";s:4:\"help\";s:44:\"The street address of the selected location.\";s:5:\"field\";a:2:{s:7:\"handler\";s:38:\"location_handler_field_location_street\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:10:\"additional\";a:6:{s:5:\"title\";s:10:\"Additional\";s:4:\"help\";s:51:\"Additional street address of the selected location.\";s:5:\"field\";a:1:{s:14:\"click sortable\";b:1;}s:8:\"argument\";a:1:{s:7:\"handler\";s:29:\"views_handler_argument_string\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:4:\"city\";a:6:{s:5:\"title\";s:4:\"City\";s:4:\"help\";s:34:\"The city of the selected location.\";s:5:\"field\";a:1:{s:14:\"click sortable\";b:1;}s:8:\"argument\";a:2:{s:7:\"handler\";s:29:\"views_handler_argument_string\";s:16:\"empty field name\";s:7:\"Unknown\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:8:\"province\";a:6:{s:5:\"title\";s:8:\"Province\";s:4:\"help\";s:38:\"The province of the selected location.\";s:5:\"field\";a:2:{s:7:\"handler\";s:40:\"location_handler_field_location_province\";s:14:\"click sortable\";b:1;}s:8:\"argument\";a:1:{s:7:\"handler\";s:43:\"location_handler_argument_location_province\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:41:\"location_handler_filter_location_province\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:11:\"postal_code\";a:5:{s:5:\"title\";s:11:\"Postal Code\";s:4:\"help\";s:41:\"The postal code of the selected location.\";s:5:\"field\";a:1:{s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:7:\"country\";a:6:{s:5:\"title\";s:7:\"Country\";s:4:\"help\";s:37:\"The country of the selected location.\";s:5:\"field\";a:2:{s:7:\"handler\";s:39:\"location_handler_field_location_country\";s:14:\"click sortable\";b:1;}s:8:\"argument\";a:1:{s:7:\"handler\";s:42:\"location_handler_argument_location_country\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:40:\"location_handler_filter_location_country\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:38:\"location_handler_sort_location_country\";}}s:8:\"latitude\";a:5:{s:5:\"title\";s:8:\"Latitude\";s:4:\"help\";s:38:\"The latitude of the selected location.\";s:5:\"field\";a:2:{s:7:\"handler\";s:37:\"location_views_handler_field_latitude\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:9:\"longitude\";a:5:{s:5:\"title\";s:9:\"Longitude\";s:4:\"help\";s:39:\"The longitude of the selected location.\";s:5:\"field\";a:2:{s:7:\"handler\";s:38:\"location_views_handler_field_longitude\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:11:\"coordinates\";a:3:{s:5:\"title\";s:11:\"Coordinates\";s:4:\"help\";s:63:\"The coordinates of the selected location in \'lat, long\' format.\";s:5:\"field\";a:3:{s:5:\"field\";s:8:\"latitude\";s:7:\"handler\";s:40:\"location_views_handler_field_coordinates\";s:14:\"click sortable\";b:0;}}s:8:\"distance\";a:6:{s:5:\"title\";s:20:\"Distance / Proximity\";s:4:\"help\";s:91:\"The distance from the selected location and either the current user or a specific location.\";s:5:\"field\";a:2:{s:7:\"handler\";s:40:\"location_handler_field_location_distance\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:39:\"location_handler_sort_location_distance\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:44:\"location_handler_argument_location_proximity\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:39:\"location_views_handler_filter_proximity\";}}s:7:\"address\";a:3:{s:5:\"title\";s:7:\"Address\";s:4:\"help\";s:42:\"The entire address block for the location.\";s:5:\"field\";a:3:{s:5:\"field\";s:3:\"lid\";s:7:\"handler\";s:39:\"location_handler_field_location_address\";s:12:\"element type\";s:3:\"div\";}}}s:17:\"location_instance\";a:1:{s:5:\"table\";a:2:{s:5:\"group\";s:8:\"Location\";s:4:\"join\";a:5:{s:8:\"location\";a:2:{s:10:\"left_field\";s:3:\"lid\";s:5:\"field\";s:3:\"lid\";}s:5:\"users\";a:2:{s:10:\"left_field\";s:3:\"uid\";s:5:\"field\";s:3:\"uid\";}s:4:\"node\";a:2:{s:10:\"left_field\";s:3:\"vid\";s:5:\"field\";s:3:\"vid\";}s:13:\"node_revision\";a:2:{s:10:\"left_field\";s:3:\"vid\";s:5:\"field\";s:3:\"vid\";}s:18:\"taxonomy_term_data\";a:2:{s:10:\"left_field\";s:3:\"tid\";s:5:\"field\";s:3:\"vid\";}}}}s:4:\"node\";a:47:{s:5:\"table\";a:5:{s:4:\"join\";a:3:{s:8:\"location\";a:3:{s:10:\"left_table\";s:17:\"location_instance\";s:10:\"left_field\";s:3:\"vid\";s:5:\"field\";s:3:\"vid\";}s:12:\"photos_album\";a:2:{s:10:\"left_field\";s:3:\"pid\";s:5:\"field\";s:3:\"nid\";}s:4:\"node\";a:2:{s:10:\"left_field\";s:4:\"tnid\";s:5:\"field\";s:4:\"tnid\";}}s:5:\"group\";s:7:\"Content\";s:4:\"base\";a:5:{s:5:\"field\";s:3:\"nid\";s:5:\"title\";s:7:\"Content\";s:6:\"weight\";i:-10;s:16:\"access query tag\";s:11:\"node_access\";s:8:\"defaults\";a:1:{s:5:\"field\";s:5:\"title\";}}s:11:\"entity type\";s:4:\"node\";s:20:\"default_relationship\";a:1:{s:13:\"node_revision\";a:2:{s:5:\"table\";s:13:\"node_revision\";s:5:\"field\";s:3:\"vid\";}}}s:3:\"nid\";a:6:{s:5:\"title\";s:3:\"Nid\";s:4:\"help\";s:12:\"The node ID.\";s:5:\"field\";a:2:{s:7:\"handler\";s:24:\"views_handler_field_node\";s:14:\"click sortable\";b:1;}s:8:\"argument\";a:4:{s:7:\"handler\";s:31:\"views_handler_argument_node_nid\";s:10:\"name field\";s:5:\"title\";s:7:\"numeric\";b:1;s:13:\"validate type\";s:3:\"nid\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:5:\"title\";a:6:{s:5:\"title\";s:5:\"Title\";s:4:\"help\";s:18:\"The content title.\";s:5:\"field\";a:5:{s:5:\"field\";s:5:\"title\";s:5:\"group\";s:7:\"Content\";s:7:\"handler\";s:24:\"views_handler_field_node\";s:14:\"click sortable\";b:1;s:20:\"link_to_node default\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:29:\"views_handler_argument_string\";}}s:7:\"created\";a:5:{s:5:\"title\";s:9:\"Post date\";s:4:\"help\";s:32:\"The date the content was posted.\";s:5:\"field\";a:2:{s:7:\"handler\";s:24:\"views_handler_field_date\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:23:\"views_handler_sort_date\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:25:\"views_handler_filter_date\";}}s:7:\"changed\";a:5:{s:5:\"title\";s:12:\"Updated date\";s:4:\"help\";s:38:\"The date the content was last updated.\";s:5:\"field\";a:2:{s:7:\"handler\";s:24:\"views_handler_field_date\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:23:\"views_handler_sort_date\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:25:\"views_handler_filter_date\";}}s:4:\"type\";a:6:{s:5:\"title\";s:4:\"Type\";s:4:\"help\";s:73:\"The content type (for example, \"blog entry\", \"forum post\", \"story\", etc).\";s:5:\"field\";a:2:{s:7:\"handler\";s:29:\"views_handler_field_node_type\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:30:\"views_handler_filter_node_type\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:32:\"views_handler_argument_node_type\";}}s:6:\"status\";a:5:{s:5:\"title\";s:9:\"Published\";s:4:\"help\";s:40:\"Whether or not the content is published.\";s:5:\"field\";a:3:{s:7:\"handler\";s:27:\"views_handler_field_boolean\";s:14:\"click sortable\";b:1;s:14:\"output formats\";a:1:{s:22:\"published-notpublished\";a:2:{i:0;s:9:\"Published\";i:1;s:13:\"Not published\";}}}s:6:\"filter\";a:4:{s:7:\"handler\";s:37:\"views_handler_filter_boolean_operator\";s:5:\"label\";s:9:\"Published\";s:4:\"type\";s:6:\"yes-no\";s:9:\"use equal\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:12:\"status_extra\";a:3:{s:5:\"title\";s:18:\"Published or admin\";s:4:\"help\";s:67:\"Filters out unpublished content if the current user cannot view it.\";s:6:\"filter\";a:3:{s:5:\"field\";s:6:\"status\";s:7:\"handler\";s:32:\"views_handler_filter_node_status\";s:5:\"label\";s:18:\"Published or admin\";}}s:7:\"promote\";a:5:{s:5:\"title\";s:22:\"Promoted to front page\";s:4:\"help\";s:57:\"Whether or not the content is promoted to the front page.\";s:5:\"field\";a:3:{s:7:\"handler\";s:27:\"views_handler_field_boolean\";s:14:\"click sortable\";b:1;s:14:\"output formats\";a:1:{s:20:\"promoted-notpromoted\";a:2:{i:0;s:8:\"Promoted\";i:1;s:12:\"Not promoted\";}}}s:6:\"filter\";a:3:{s:7:\"handler\";s:37:\"views_handler_filter_boolean_operator\";s:5:\"label\";s:22:\"Promoted to front page\";s:4:\"type\";s:6:\"yes-no\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:6:\"sticky\";a:5:{s:5:\"title\";s:6:\"Sticky\";s:4:\"help\";s:37:\"Whether or not the content is sticky.\";s:5:\"field\";a:3:{s:7:\"handler\";s:27:\"views_handler_field_boolean\";s:14:\"click sortable\";b:1;s:14:\"output formats\";a:1:{s:6:\"sticky\";a:2:{i:0;s:6:\"Sticky\";i:1;s:10:\"Not sticky\";}}}s:6:\"filter\";a:3:{s:7:\"handler\";s:37:\"views_handler_filter_boolean_operator\";s:5:\"label\";s:6:\"Sticky\";s:4:\"type\";s:6:\"yes-no\";}s:4:\"sort\";a:2:{s:7:\"handler\";s:18:\"views_handler_sort\";s:4:\"help\";s:91:\"Whether or not the content is sticky. To list sticky content first, set this to descending.\";}}s:9:\"view_node\";a:1:{s:8:\"moved to\";a:2:{i:0;s:17:\"views_entity_node\";i:1;s:9:\"view_node\";}}s:9:\"edit_node\";a:1:{s:8:\"moved to\";a:2:{i:0;s:17:\"views_entity_node\";i:1;s:9:\"edit_node\";}}s:11:\"delete_node\";a:1:{s:8:\"moved to\";a:2:{i:0;s:17:\"views_entity_node\";i:1;s:11:\"delete_node\";}}s:4:\"path\";a:1:{s:5:\"field\";a:3:{s:5:\"title\";s:4:\"Path\";s:4:\"help\";s:33:\"The aliased path to this content.\";s:7:\"handler\";s:29:\"views_handler_field_node_path\";}}s:16:\"created_fulldate\";a:3:{s:5:\"title\";s:12:\"Created date\";s:4:\"help\";s:29:\"Date in the form of CCYYMMDD.\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:44:\"views_handler_argument_node_created_fulldate\";}}s:18:\"created_year_month\";a:3:{s:5:\"title\";s:20:\"Created year + month\";s:4:\"help\";s:27:\"Date in the form of YYYYMM.\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:46:\"views_handler_argument_node_created_year_month\";}}s:12:\"created_year\";a:3:{s:5:\"title\";s:12:\"Created year\";s:4:\"help\";s:25:\"Date in the form of YYYY.\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:40:\"views_handler_argument_node_created_year\";}}s:13:\"created_month\";a:3:{s:5:\"title\";s:13:\"Created month\";s:4:\"help\";s:33:\"Date in the form of MM (01 - 12).\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:41:\"views_handler_argument_node_created_month\";}}s:11:\"created_day\";a:3:{s:5:\"title\";s:11:\"Created day\";s:4:\"help\";s:33:\"Date in the form of DD (01 - 31).\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:39:\"views_handler_argument_node_created_day\";}}s:12:\"created_week\";a:3:{s:5:\"title\";s:12:\"Created week\";s:4:\"help\";s:33:\"Date in the form of WW (01 - 53).\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:40:\"views_handler_argument_node_created_week\";}}s:16:\"changed_fulldate\";a:3:{s:5:\"title\";s:12:\"Updated date\";s:4:\"help\";s:29:\"Date in the form of CCYYMMDD.\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"changed\";s:7:\"handler\";s:44:\"views_handler_argument_node_created_fulldate\";}}s:18:\"changed_year_month\";a:3:{s:5:\"title\";s:20:\"Updated year + month\";s:4:\"help\";s:27:\"Date in the form of YYYYMM.\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"changed\";s:7:\"handler\";s:46:\"views_handler_argument_node_created_year_month\";}}s:12:\"changed_year\";a:3:{s:5:\"title\";s:12:\"Updated year\";s:4:\"help\";s:25:\"Date in the form of YYYY.\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"changed\";s:7:\"handler\";s:40:\"views_handler_argument_node_created_year\";}}s:13:\"changed_month\";a:3:{s:5:\"title\";s:13:\"Updated month\";s:4:\"help\";s:33:\"Date in the form of MM (01 - 12).\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"changed\";s:7:\"handler\";s:41:\"views_handler_argument_node_created_month\";}}s:11:\"changed_day\";a:3:{s:5:\"title\";s:11:\"Updated day\";s:4:\"help\";s:33:\"Date in the form of DD (01 - 31).\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"changed\";s:7:\"handler\";s:39:\"views_handler_argument_node_created_day\";}}s:12:\"changed_week\";a:3:{s:5:\"title\";s:12:\"Updated week\";s:4:\"help\";s:33:\"Date in the form of WW (01 - 53).\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"changed\";s:7:\"handler\";s:40:\"views_handler_argument_node_created_week\";}}s:3:\"uid\";a:6:{s:5:\"title\";s:10:\"Author uid\";s:4:\"help\";s:105:\"The user authoring the content. If you need more fields than the uid add the content: author relationship\";s:12:\"relationship\";a:6:{s:5:\"title\";s:6:\"Author\";s:4:\"help\";s:42:\"Relate content to the user who created it.\";s:7:\"handler\";s:26:\"views_handler_relationship\";s:4:\"base\";s:5:\"users\";s:5:\"field\";s:3:\"uid\";s:5:\"label\";s:6:\"author\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:30:\"views_handler_filter_user_name\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:30:\"views_handler_argument_numeric\";}s:5:\"field\";a:1:{s:7:\"handler\";s:24:\"views_handler_field_user\";}}s:12:\"uid_revision\";a:5:{s:5:\"title\";s:19:\"User has a revision\";s:4:\"help\";s:45:\"All nodes where a certain user has a revision\";s:10:\"real field\";s:3:\"nid\";s:6:\"filter\";a:1:{s:7:\"handler\";s:38:\"views_handler_filter_node_uid_revision\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:40:\"views_handler_argument_node_uid_revision\";}}s:13:\"version_count\";a:5:{s:5:\"title\";s:13:\"Version Count\";s:4:\"help\";s:56:\"The total count of versions/revisions of a certain node.\";s:5:\"field\";a:3:{s:7:\"handler\";s:38:\"views_handler_field_node_version_count\";s:5:\"field\";s:3:\"nid\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:2:{s:7:\"handler\";s:39:\"views_handler_filter_node_version_count\";s:11:\"allow empty\";b:0;}s:4:\"sort\";a:1:{s:7:\"handler\";s:37:\"views_handler_sort_node_version_count\";}}s:12:\"new_comments\";a:3:{s:5:\"title\";s:12:\"New comments\";s:4:\"help\";s:39:\"The number of new comments on the node.\";s:5:\"field\";a:2:{s:7:\"handler\";s:37:\"views_handler_field_node_new_comments\";s:11:\"no group by\";b:1;}}s:13:\"comments_link\";a:1:{s:5:\"field\";a:3:{s:5:\"title\";s:16:\"Add comment link\";s:4:\"help\";s:133:\"Display the standard add comment link used on regular nodes, which will only display if the viewing user has access to add a comment.\";s:7:\"handler\";s:37:\"views_handler_field_comment_node_link\";}}s:7:\"comment\";a:5:{s:5:\"title\";s:14:\"Comment status\";s:4:\"help\";s:53:\"Whether comments are enabled or disabled on the node.\";s:5:\"field\";a:2:{s:7:\"handler\";s:32:\"views_handler_field_node_comment\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:33:\"views_handler_filter_node_comment\";}}s:9:\"uid_touch\";a:4:{s:5:\"title\";s:24:\"User posted or commented\";s:4:\"help\";s:70:\"Display nodes only if a user posted the node or commented on the node.\";s:8:\"argument\";a:5:{s:5:\"field\";s:3:\"uid\";s:10:\"name table\";s:5:\"users\";s:10:\"name field\";s:4:\"name\";s:7:\"handler\";s:39:\"views_handler_argument_comment_user_uid\";s:11:\"no group by\";b:1;}s:6:\"filter\";a:4:{s:5:\"field\";s:3:\"uid\";s:10:\"name table\";s:5:\"users\";s:10:\"name field\";s:4:\"name\";s:7:\"handler\";s:37:\"views_handler_filter_comment_user_uid\";}}s:3:\"cid\";a:3:{s:5:\"title\";s:20:\"Comments of the node\";s:4:\"help\";s:151:\"Relate all comments on the node. This will create 1 duplicate record for every comment. Usually if you need this it is better to create a comment view.\";s:12:\"relationship\";a:6:{s:5:\"group\";s:7:\"Comment\";s:5:\"label\";s:8:\"Comments\";s:4:\"base\";s:7:\"comment\";s:10:\"base field\";s:3:\"nid\";s:18:\"relationship field\";s:3:\"nid\";s:7:\"handler\";s:26:\"views_handler_relationship\";}}s:8:\"language\";a:6:{s:5:\"title\";s:8:\"Language\";s:4:\"help\";s:31:\"The language the content is in.\";s:5:\"field\";a:2:{s:7:\"handler\";s:33:\"views_handler_field_node_language\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:34:\"views_handler_filter_node_language\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:36:\"views_handler_argument_node_language\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:17:\"specific_language\";a:3:{s:5:\"title\";s:17:\"Specific language\";s:4:\"help\";s:51:\"Sort by a specific language that the content is in.\";s:4:\"sort\";a:1:{s:7:\"handler\";s:32:\"views_handler_sort_node_language\";}}s:13:\"term_node_tid\";a:4:{s:5:\"title\";s:22:\"Taxonomy terms on node\";s:4:\"help\";s:161:\"Relate nodes to taxonomy terms, specifiying which vocabulary or vocabularies to use. This relationship will cause duplicated records if there are multiple terms.\";s:12:\"relationship\";a:3:{s:7:\"handler\";s:41:\"views_handler_relationship_node_term_data\";s:5:\"label\";s:4:\"term\";s:4:\"base\";s:18:\"taxonomy_term_data\";}s:5:\"field\";a:4:{s:5:\"title\";s:18:\"All taxonomy terms\";s:4:\"help\";s:78:\"Display all taxonomy terms associated with a node from specified vocabularies.\";s:7:\"handler\";s:33:\"views_handler_field_term_node_tid\";s:11:\"no group by\";b:1;}}s:19:\"term_node_tid_depth\";a:4:{s:4:\"help\";s:175:\"Display content if it has the selected taxonomy terms, or children of the selected terms. Due to additional complexity, this has fewer options than the versions without depth.\";s:10:\"real field\";s:3:\"nid\";s:8:\"argument\";a:3:{s:5:\"title\";s:33:\"Has taxonomy term ID (with depth)\";s:7:\"handler\";s:42:\"views_handler_argument_term_node_tid_depth\";s:21:\"accept depth modifier\";b:1;}s:6:\"filter\";a:2:{s:5:\"title\";s:31:\"Has taxonomy terms (with depth)\";s:7:\"handler\";s:40:\"views_handler_filter_term_node_tid_depth\";}}s:24:\"term_node_tid_depth_join\";a:4:{s:4:\"help\";s:175:\"Display content if it has the selected taxonomy terms, or children of the selected terms. Due to additional complexity, this has fewer options than the versions without depth.\";s:10:\"real field\";s:3:\"nid\";s:8:\"argument\";a:3:{s:5:\"title\";s:45:\"Has taxonomy term ID with depth (using joins)\";s:7:\"handler\";s:47:\"views_handler_argument_term_node_tid_depth_join\";s:21:\"accept depth modifier\";b:1;}s:6:\"filter\";a:2:{s:5:\"title\";s:43:\"Has taxonomy terms with depth (using joins)\";s:7:\"handler\";s:45:\"views_handler_filter_term_node_tid_depth_join\";}}s:28:\"term_node_tid_depth_modifier\";a:3:{s:5:\"title\";s:35:\"Has taxonomy term ID depth modifier\";s:4:\"help\";s:111:\"Allows the \"depth\" for Taxonomy: Term ID (with depth) to be modified via an additional contextual filter value.\";s:8:\"argument\";a:1:{s:7:\"handler\";s:51:\"views_handler_argument_term_node_tid_depth_modifier\";}}s:4:\"tnid\";a:8:{s:5:\"group\";s:19:\"Content translation\";s:5:\"title\";s:23:\"Translation set node ID\";s:4:\"help\";s:53:\"The ID of the translation set the content belongs to.\";s:5:\"field\";a:2:{s:7:\"handler\";s:24:\"views_handler_field_node\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:8:\"argument\";a:4:{s:7:\"handler\";s:32:\"views_handler_argument_node_tnid\";s:10:\"name field\";s:5:\"title\";s:7:\"numeric\";b:1;s:13:\"validate type\";s:4:\"tnid\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:12:\"relationship\";a:6:{s:5:\"title\";s:18:\"Source translation\";s:4:\"help\";s:49:\"The source that this content was translated from.\";s:4:\"base\";s:4:\"node\";s:10:\"base field\";s:3:\"nid\";s:7:\"handler\";s:26:\"views_handler_relationship\";s:5:\"label\";s:18:\"Source translation\";}}s:11:\"translation\";a:4:{s:5:\"group\";s:19:\"Content translation\";s:5:\"title\";s:12:\"Translations\";s:4:\"help\";s:43:\"Versions of content in different languages.\";s:12:\"relationship\";a:8:{s:5:\"title\";s:12:\"Translations\";s:4:\"help\";s:43:\"Versions of content in different languages.\";s:4:\"base\";s:4:\"node\";s:10:\"base field\";s:4:\"tnid\";s:18:\"relationship table\";s:4:\"node\";s:18:\"relationship field\";s:4:\"tnid\";s:7:\"handler\";s:38:\"views_handler_relationship_translation\";s:5:\"label\";s:12:\"Translations\";}}s:18:\"source_translation\";a:4:{s:5:\"group\";s:19:\"Content translation\";s:5:\"title\";s:18:\"Source translation\";s:4:\"help\";s:84:\"Content that is either untranslated or is the original version of a translation set.\";s:6:\"filter\";a:1:{s:7:\"handler\";s:30:\"views_handler_filter_node_tnid\";}}s:17:\"child_translation\";a:4:{s:5:\"group\";s:16:\"Node translation\";s:5:\"title\";s:17:\"Child translation\";s:4:\"help\";s:54:\"Content that is a translation of a source translation.\";s:6:\"filter\";a:1:{s:7:\"handler\";s:36:\"views_handler_filter_node_tnid_child\";}}s:9:\"translate\";a:6:{s:5:\"group\";s:19:\"Content translation\";s:5:\"title\";s:18:\"Translation status\";s:4:\"help\";s:91:\"The translation status of the content - whether or not the translation needs to be updated.\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_boolean\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:3:{s:7:\"handler\";s:37:\"views_handler_filter_boolean_operator\";s:5:\"label\";s:8:\"Outdated\";s:4:\"type\";s:6:\"yes-no\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:14:\"translate_node\";a:4:{s:5:\"group\";s:19:\"Content translation\";s:5:\"title\";s:14:\"Translate link\";s:4:\"help\";s:44:\"Provide a simple link to translate the node.\";s:5:\"field\";a:1:{s:7:\"handler\";s:39:\"views_handler_field_node_link_translate\";}}s:19:\"entity_translations\";a:3:{s:5:\"title\";s:32:\"Entity translation: translations\";s:4:\"help\";s:24:\"Translation information.\";s:12:\"relationship\";a:8:{s:5:\"label\";s:12:\"Translations\";s:4:\"base\";s:18:\"entity_translation\";s:10:\"base field\";s:9:\"entity_id\";s:18:\"relationship field\";s:3:\"nid\";s:7:\"handler\";s:39:\"entity_translation_handler_relationship\";s:10:\"left_table\";s:4:\"node\";s:10:\"left_field\";s:3:\"nid\";s:11:\"entity type\";s:4:\"node\";}}}s:13:\"node_revision\";a:10:{s:5:\"table\";a:6:{s:4:\"join\";a:2:{s:8:\"location\";a:3:{s:10:\"left_table\";s:17:\"location_instance\";s:10:\"left_field\";s:3:\"vid\";s:5:\"field\";s:3:\"vid\";}s:4:\"node\";a:2:{s:10:\"left_field\";s:3:\"vid\";s:5:\"field\";s:3:\"vid\";}}s:11:\"entity type\";s:4:\"node\";s:8:\"revision\";b:1;s:5:\"group\";s:16:\"Content revision\";s:4:\"base\";a:4:{s:5:\"field\";s:3:\"vid\";s:5:\"title\";s:16:\"Content revision\";s:4:\"help\";s:52:\"Content revision is a history of changes to content.\";s:8:\"defaults\";a:1:{s:5:\"field\";s:5:\"title\";}}s:20:\"default_relationship\";a:1:{s:4:\"node\";a:2:{s:5:\"table\";s:4:\"node\";s:5:\"field\";s:3:\"nid\";}}}s:3:\"uid\";a:3:{s:5:\"title\";s:4:\"User\";s:4:\"help\";s:63:\"Relate a content revision to the user who created the revision.\";s:12:\"relationship\";a:4:{s:7:\"handler\";s:26:\"views_handler_relationship\";s:4:\"base\";s:5:\"users\";s:10:\"base field\";s:3:\"uid\";s:5:\"label\";s:13:\"revision user\";}}s:3:\"nid\";a:7:{s:5:\"title\";s:3:\"Nid\";s:4:\"help\";s:41:\"The revision NID of the content revision.\";s:5:\"field\";a:1:{s:14:\"click sortable\";b:1;}s:8:\"argument\";a:3:{s:7:\"handler\";s:31:\"views_handler_argument_node_nid\";s:14:\"click sortable\";b:1;s:7:\"numeric\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:12:\"relationship\";a:5:{s:7:\"handler\";s:26:\"views_handler_relationship\";s:4:\"base\";s:4:\"node\";s:10:\"base field\";s:3:\"nid\";s:5:\"title\";s:7:\"Content\";s:5:\"label\";s:47:\"Get the actual content from a content revision.\";}}s:3:\"vid\";a:7:{s:5:\"title\";s:3:\"Vid\";s:4:\"help\";s:40:\"The revision ID of the content revision.\";s:5:\"field\";a:1:{s:14:\"click sortable\";b:1;}s:8:\"argument\";a:3:{s:7:\"handler\";s:31:\"views_handler_argument_node_vid\";s:14:\"click sortable\";b:1;s:7:\"numeric\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:12:\"relationship\";a:5:{s:7:\"handler\";s:26:\"views_handler_relationship\";s:4:\"base\";s:4:\"node\";s:10:\"base field\";s:3:\"vid\";s:5:\"title\";s:7:\"Content\";s:5:\"label\";s:47:\"Get the actual content from a content revision.\";}}s:5:\"title\";a:6:{s:5:\"title\";s:5:\"Title\";s:4:\"help\";s:18:\"The content title.\";s:5:\"field\";a:3:{s:5:\"field\";s:5:\"title\";s:7:\"handler\";s:33:\"views_handler_field_node_revision\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:29:\"views_handler_argument_string\";}}s:3:\"log\";a:4:{s:5:\"title\";s:11:\"Log message\";s:4:\"help\";s:54:\"The log message entered when the revision was created.\";s:5:\"field\";a:1:{s:7:\"handler\";s:23:\"views_handler_field_xss\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}}s:9:\"timestamp\";a:5:{s:5:\"title\";s:12:\"Updated date\";s:4:\"help\";s:35:\"The date the node was last updated.\";s:5:\"field\";a:2:{s:7:\"handler\";s:24:\"views_handler_field_date\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:23:\"views_handler_sort_date\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:25:\"views_handler_filter_date\";}}s:16:\"link_to_revision\";a:1:{s:5:\"field\";a:3:{s:5:\"title\";s:4:\"Link\";s:4:\"help\";s:38:\"Provide a simple link to the revision.\";s:7:\"handler\";s:38:\"views_handler_field_node_revision_link\";}}s:15:\"revert_revision\";a:1:{s:5:\"field\";a:3:{s:5:\"title\";s:11:\"Revert link\";s:4:\"help\";s:48:\"Provide a simple link to revert to the revision.\";s:7:\"handler\";s:45:\"views_handler_field_node_revision_link_revert\";}}s:15:\"delete_revision\";a:1:{s:5:\"field\";a:3:{s:5:\"title\";s:11:\"Delete link\";s:4:\"help\";s:53:\"Provide a simple link to delete the content revision.\";s:7:\"handler\";s:45:\"views_handler_field_node_revision_link_delete\";}}}s:18:\"taxonomy_term_data\";a:12:{s:5:\"table\";a:5:{s:4:\"join\";a:3:{s:8:\"location\";a:3:{s:10:\"left_table\";s:17:\"location_instance\";s:10:\"left_field\";s:3:\"vid\";s:5:\"field\";s:3:\"tid\";}s:19:\"taxonomy_vocabulary\";a:2:{s:5:\"field\";s:3:\"vid\";s:10:\"left_field\";s:3:\"vid\";}s:14:\"taxonomy_index\";a:2:{s:5:\"field\";s:3:\"tid\";s:10:\"left_field\";s:3:\"tid\";}}s:5:\"group\";s:13:\"Taxonomy term\";s:4:\"base\";a:4:{s:5:\"field\";s:3:\"tid\";s:5:\"title\";s:4:\"Term\";s:4:\"help\";s:37:\"Taxonomy terms are attached to nodes.\";s:16:\"access query tag\";s:20:\"taxonomy_term_access\";}s:11:\"entity type\";s:13:\"taxonomy_term\";s:20:\"default_relationship\";a:1:{s:4:\"node\";a:2:{s:5:\"table\";s:4:\"node\";s:5:\"field\";s:13:\"term_node_tid\";}}}s:3:\"tid\";a:6:{s:5:\"title\";s:7:\"Term ID\";s:4:\"help\";s:27:\"The tid of a taxonomy term.\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_numeric\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:8:\"argument\";a:3:{s:7:\"handler\";s:31:\"views_handler_argument_taxonomy\";s:10:\"name field\";s:4:\"name\";s:12:\"zero is null\";b:1;}s:6:\"filter\";a:5:{s:5:\"title\";s:4:\"Term\";s:4:\"help\";s:56:\"Taxonomy term chosen from autocomplete or select widget.\";s:7:\"handler\";s:34:\"views_handler_filter_term_node_tid\";s:15:\"hierarchy table\";s:23:\"taxonomy_term_hierarchy\";s:7:\"numeric\";b:1;}}s:7:\"tid_raw\";a:4:{s:5:\"title\";s:7:\"Term ID\";s:4:\"help\";s:27:\"The tid of a taxonomy term.\";s:10:\"real field\";s:3:\"tid\";s:6:\"filter\";a:2:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:11:\"allow empty\";b:1;}}s:18:\"tid_representative\";a:1:{s:12:\"relationship\";a:10:{s:5:\"title\";s:19:\"Representative node\";s:5:\"label\";s:19:\"Representative node\";s:4:\"help\";s:89:\"Obtains a single representative node for each term, according to a chosen sort criterion.\";s:7:\"handler\";s:40:\"views_handler_relationship_groupwise_max\";s:18:\"relationship field\";s:3:\"tid\";s:11:\"outer field\";s:22:\"taxonomy_term_data.tid\";s:14:\"argument table\";s:18:\"taxonomy_term_data\";s:14:\"argument field\";s:3:\"tid\";s:4:\"base\";s:4:\"node\";s:5:\"field\";s:3:\"nid\";}}s:4:\"name\";a:6:{s:5:\"title\";s:4:\"Name\";s:4:\"help\";s:23:\"The taxonomy term name.\";s:5:\"field\";a:2:{s:7:\"handler\";s:28:\"views_handler_field_taxonomy\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:6:\"filter\";a:2:{s:7:\"handler\";s:27:\"views_handler_filter_string\";s:4:\"help\";s:19:\"Taxonomy term name.\";}s:8:\"argument\";a:4:{s:7:\"handler\";s:29:\"views_handler_argument_string\";s:4:\"help\";s:19:\"Taxonomy term name.\";s:11:\"many to one\";b:1;s:16:\"empty field name\";s:13:\"Uncategorized\";}}s:6:\"weight\";a:6:{s:5:\"title\";s:6:\"Weight\";s:4:\"help\";s:21:\"The term weight field\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_numeric\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:30:\"views_handler_argument_numeric\";}}s:11:\"description\";a:4:{s:5:\"title\";s:16:\"Term description\";s:4:\"help\";s:48:\"The description associated with a taxonomy term.\";s:5:\"field\";a:2:{s:7:\"handler\";s:26:\"views_handler_field_markup\";s:6:\"format\";a:1:{s:5:\"field\";s:6:\"format\";}}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}}s:3:\"vid\";a:3:{s:5:\"title\";s:10:\"Vocabulary\";s:4:\"help\";s:66:\"Filter the results of \"Taxonomy: Term\" to a particular vocabulary.\";s:6:\"filter\";a:1:{s:7:\"handler\";s:35:\"views_handler_filter_vocabulary_vid\";}}s:9:\"edit_term\";a:1:{s:5:\"field\";a:3:{s:5:\"title\";s:14:\"Term edit link\";s:4:\"help\";s:39:\"Provide a simple link to edit the term.\";s:7:\"handler\";s:34:\"views_handler_field_term_link_edit\";}}s:23:\"reverse_field_tags_node\";a:1:{s:12:\"relationship\";a:10:{s:5:\"title\";s:18:\"Content using Tags\";s:4:\"help\";s:48:\"Relate each Content with a Tags set to the term.\";s:7:\"handler\";s:41:\"views_handler_relationship_entity_reverse\";s:10:\"field_name\";s:10:\"field_tags\";s:11:\"field table\";s:21:\"field_data_field_tags\";s:11:\"field field\";s:14:\"field_tags_tid\";s:4:\"base\";s:4:\"node\";s:10:\"base field\";s:3:\"nid\";s:5:\"label\";s:10:\"field_tags\";s:10:\"join_extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}s:28:\"reverse_taxonomy_forums_node\";a:1:{s:12:\"relationship\";a:10:{s:5:\"title\";s:20:\"Content using Forums\";s:4:\"help\";s:50:\"Relate each Content with a Forums set to the term.\";s:7:\"handler\";s:41:\"views_handler_relationship_entity_reverse\";s:10:\"field_name\";s:15:\"taxonomy_forums\";s:11:\"field table\";s:26:\"field_data_taxonomy_forums\";s:11:\"field field\";s:19:\"taxonomy_forums_tid\";s:4:\"base\";s:4:\"node\";s:10:\"base field\";s:3:\"nid\";s:5:\"label\";s:15:\"taxonomy_forums\";s:10:\"join_extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}s:19:\"entity_translations\";a:3:{s:5:\"title\";s:32:\"Entity translation: translations\";s:4:\"help\";s:24:\"Translation information.\";s:12:\"relationship\";a:8:{s:5:\"label\";s:12:\"Translations\";s:4:\"base\";s:18:\"entity_translation\";s:10:\"base field\";s:9:\"entity_id\";s:18:\"relationship field\";s:3:\"tid\";s:7:\"handler\";s:39:\"entity_translation_handler_relationship\";s:10:\"left_table\";s:18:\"taxonomy_term_data\";s:10:\"left_field\";s:3:\"tid\";s:11:\"entity type\";s:13:\"taxonomy_term\";}}}s:5:\"users\";a:28:{s:5:\"table\";a:5:{s:4:\"join\";a:1:{s:8:\"location\";a:3:{s:10:\"left_table\";s:17:\"location_instance\";s:10:\"left_field\";s:3:\"uid\";s:5:\"field\";s:3:\"uid\";}}s:5:\"group\";s:4:\"User\";s:4:\"base\";a:4:{s:5:\"field\";s:3:\"uid\";s:5:\"title\";s:4:\"User\";s:4:\"help\";s:45:\"Users who have created accounts on your site.\";s:16:\"access query tag\";s:11:\"user_access\";}s:11:\"entity type\";s:4:\"user\";s:20:\"default_relationship\";a:3:{s:4:\"node\";a:2:{s:5:\"table\";s:4:\"node\";s:5:\"field\";s:3:\"uid\";}s:13:\"node_revision\";a:2:{s:5:\"table\";s:13:\"node_revision\";s:5:\"field\";s:3:\"uid\";}s:4:\"file\";a:2:{s:5:\"table\";s:4:\"file\";s:5:\"field\";s:3:\"uid\";}}}s:3:\"uid\";a:7:{s:5:\"title\";s:3:\"Uid\";s:4:\"help\";s:11:\"The user ID\";s:5:\"field\";a:2:{s:7:\"handler\";s:24:\"views_handler_field_user\";s:14:\"click sortable\";b:1;}s:8:\"argument\";a:2:{s:7:\"handler\";s:31:\"views_handler_argument_user_uid\";s:10:\"name field\";s:4:\"name\";}s:6:\"filter\";a:2:{s:5:\"title\";s:4:\"Name\";s:7:\"handler\";s:30:\"views_handler_filter_user_name\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:12:\"relationship\";a:7:{s:5:\"title\";s:16:\"Content authored\";s:4:\"help\";s:126:\"Relate content to the user who created it. This relationship will create one record for each content item created by the user.\";s:7:\"handler\";s:26:\"views_handler_relationship\";s:4:\"base\";s:4:\"node\";s:10:\"base field\";s:3:\"uid\";s:5:\"field\";s:3:\"uid\";s:5:\"label\";s:5:\"nodes\";}}s:7:\"uid_raw\";a:3:{s:4:\"help\";s:24:\"The raw numeric user ID.\";s:10:\"real field\";s:3:\"uid\";s:6:\"filter\";a:2:{s:5:\"title\";s:11:\"The user ID\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}}s:18:\"uid_representative\";a:1:{s:12:\"relationship\";a:10:{s:5:\"title\";s:19:\"Representative node\";s:5:\"label\";s:19:\"Representative node\";s:4:\"help\";s:89:\"Obtains a single representative node for each user, according to a chosen sort criterion.\";s:7:\"handler\";s:40:\"views_handler_relationship_groupwise_max\";s:18:\"relationship field\";s:3:\"uid\";s:11:\"outer field\";s:9:\"users.uid\";s:14:\"argument table\";s:5:\"users\";s:14:\"argument field\";s:3:\"uid\";s:4:\"base\";s:4:\"node\";s:5:\"field\";s:3:\"nid\";}}s:11:\"uid_current\";a:4:{s:10:\"real field\";s:3:\"uid\";s:5:\"title\";s:7:\"Current\";s:4:\"help\";s:48:\"Filter the view to the currently logged in user.\";s:6:\"filter\";a:2:{s:7:\"handler\";s:33:\"views_handler_filter_user_current\";s:4:\"type\";s:6:\"yes-no\";}}s:4:\"name\";a:6:{s:5:\"title\";s:4:\"Name\";s:4:\"help\";s:24:\"The user or author name.\";s:5:\"field\";a:2:{s:7:\"handler\";s:29:\"views_handler_field_user_name\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:29:\"views_handler_argument_string\";}s:6:\"filter\";a:3:{s:7:\"handler\";s:27:\"views_handler_filter_string\";s:5:\"title\";s:10:\"Name (raw)\";s:4:\"help\";s:130:\"The user or author name. This filter does not check if the user exists and allows partial matching. Does not utilize autocomplete.\";}}s:4:\"mail\";a:6:{s:5:\"title\";s:6:\"E-mail\";s:4:\"help\";s:104:\"Email address for a given user. This field is normally not shown to users, so be cautious when using it.\";s:5:\"field\";a:2:{s:7:\"handler\";s:29:\"views_handler_field_user_mail\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:29:\"views_handler_argument_string\";}}s:8:\"language\";a:6:{s:5:\"title\";s:8:\"Language\";s:4:\"help\";s:20:\"Language of the user\";s:5:\"field\";a:2:{s:7:\"handler\";s:33:\"views_handler_field_user_language\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:34:\"views_handler_filter_node_language\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:36:\"views_handler_argument_node_language\";}}s:11:\"picture_fid\";a:1:{s:8:\"moved to\";a:2:{i:0;s:5:\"users\";i:1;s:7:\"picture\";}}s:7:\"picture\";a:5:{s:5:\"title\";s:7:\"Picture\";s:4:\"help\";s:31:\"The user\'s picture, if allowed.\";s:5:\"field\";a:2:{s:7:\"handler\";s:32:\"views_handler_field_user_picture\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:6:\"filter\";a:3:{s:7:\"handler\";s:37:\"views_handler_filter_boolean_operator\";s:5:\"label\";s:10:\"Has Avatar\";s:4:\"type\";s:6:\"yes-no\";}}s:9:\"view_user\";a:1:{s:5:\"field\";a:3:{s:5:\"title\";s:4:\"Link\";s:4:\"help\";s:34:\"Provide a simple link to the user.\";s:7:\"handler\";s:29:\"views_handler_field_user_link\";}}s:7:\"created\";a:5:{s:5:\"title\";s:12:\"Created date\";s:4:\"help\";s:30:\"The date the user was created.\";s:5:\"field\";a:2:{s:7:\"handler\";s:24:\"views_handler_field_date\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:23:\"views_handler_sort_date\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:25:\"views_handler_filter_date\";}}s:16:\"created_fulldate\";a:3:{s:5:\"title\";s:12:\"Created date\";s:4:\"help\";s:29:\"Date in the form of CCYYMMDD.\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:44:\"views_handler_argument_node_created_fulldate\";}}s:18:\"created_year_month\";a:3:{s:5:\"title\";s:20:\"Created year + month\";s:4:\"help\";s:27:\"Date in the form of YYYYMM.\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:46:\"views_handler_argument_node_created_year_month\";}}s:14:\"timestamp_year\";a:1:{s:8:\"moved to\";a:2:{i:0;s:5:\"users\";i:1;s:12:\"created_year\";}}s:12:\"created_year\";a:3:{s:5:\"title\";s:12:\"Created year\";s:4:\"help\";s:25:\"Date in the form of YYYY.\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:40:\"views_handler_argument_node_created_year\";}}s:13:\"created_month\";a:3:{s:5:\"title\";s:13:\"Created month\";s:4:\"help\";s:33:\"Date in the form of MM (01 - 12).\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:41:\"views_handler_argument_node_created_month\";}}s:11:\"created_day\";a:3:{s:5:\"title\";s:11:\"Created day\";s:4:\"help\";s:33:\"Date in the form of DD (01 - 31).\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:39:\"views_handler_argument_node_created_day\";}}s:12:\"created_week\";a:3:{s:5:\"title\";s:12:\"Created week\";s:4:\"help\";s:33:\"Date in the form of WW (01 - 53).\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:40:\"views_handler_argument_node_created_week\";}}s:6:\"access\";a:5:{s:5:\"title\";s:11:\"Last access\";s:4:\"help\";s:28:\"The user\'s last access date.\";s:5:\"field\";a:2:{s:7:\"handler\";s:24:\"views_handler_field_date\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:23:\"views_handler_sort_date\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:25:\"views_handler_filter_date\";}}s:5:\"login\";a:5:{s:5:\"title\";s:10:\"Last login\";s:4:\"help\";s:27:\"The user\'s last login date.\";s:5:\"field\";a:2:{s:7:\"handler\";s:24:\"views_handler_field_date\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:23:\"views_handler_sort_date\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:25:\"views_handler_filter_date\";}}s:6:\"status\";a:5:{s:5:\"title\";s:6:\"Active\";s:4:\"help\";s:36:\"Whether a user is active or blocked.\";s:5:\"field\";a:3:{s:7:\"handler\";s:27:\"views_handler_field_boolean\";s:14:\"click sortable\";b:1;s:14:\"output formats\";a:1:{s:14:\"active-blocked\";a:2:{i:0;s:6:\"Active\";i:1;s:7:\"Blocked\";}}}s:6:\"filter\";a:3:{s:7:\"handler\";s:37:\"views_handler_filter_boolean_operator\";s:5:\"label\";s:6:\"Active\";s:4:\"type\";s:6:\"yes-no\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:9:\"signature\";a:4:{s:5:\"title\";s:9:\"Signature\";s:4:\"help\";s:21:\"The user\'s signature.\";s:5:\"field\";a:2:{s:7:\"handler\";s:26:\"views_handler_field_markup\";s:6:\"format\";s:10:\"plain_text\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}}s:9:\"edit_node\";a:1:{s:5:\"field\";a:3:{s:5:\"title\";s:9:\"Edit link\";s:4:\"help\";s:39:\"Provide a simple link to edit the user.\";s:7:\"handler\";s:34:\"views_handler_field_user_link_edit\";}}s:11:\"cancel_node\";a:1:{s:5:\"field\";a:3:{s:5:\"title\";s:11:\"Cancel link\";s:4:\"help\";s:41:\"Provide a simple link to cancel the user.\";s:7:\"handler\";s:36:\"views_handler_field_user_link_cancel\";}}s:4:\"data\";a:3:{s:5:\"title\";s:4:\"Data\";s:4:\"help\";s:35:\"Provide serialized data of the user\";s:5:\"field\";a:1:{s:7:\"handler\";s:30:\"views_handler_field_serialized\";}}s:7:\"contact\";a:1:{s:5:\"field\";a:3:{s:5:\"title\";s:20:\"Link to contact page\";s:4:\"help\";s:47:\"Provide a simple link to the user contact page.\";s:7:\"handler\";s:32:\"views_handler_field_contact_link\";}}s:19:\"entity_translations\";a:3:{s:5:\"title\";s:32:\"Entity translation: translations\";s:4:\"help\";s:24:\"Translation information.\";s:12:\"relationship\";a:8:{s:5:\"label\";s:12:\"Translations\";s:4:\"base\";s:18:\"entity_translation\";s:10:\"base field\";s:9:\"entity_id\";s:18:\"relationship field\";s:3:\"uid\";s:7:\"handler\";s:39:\"entity_translation_handler_relationship\";s:10:\"left_table\";s:5:\"users\";s:10:\"left_field\";s:3:\"uid\";s:11:\"entity type\";s:4:\"user\";}}}s:14:\"node_revisions\";a:2:{s:8:\"moved to\";s:13:\"node_revision\";s:4:\"body\";a:1:{s:8:\"moved to\";a:2:{i:0;s:19:\"field_revision_data\";i:1;s:16:\"body-revision_id\";}}}s:11:\"node_access\";a:2:{s:5:\"table\";a:2:{s:5:\"group\";s:14:\"Content access\";s:4:\"join\";a:1:{s:4:\"node\";a:2:{s:10:\"left_field\";s:3:\"nid\";s:5:\"field\";s:3:\"nid\";}}}s:3:\"nid\";a:3:{s:5:\"title\";s:6:\"Access\";s:4:\"help\";s:17:\"Filter by access.\";s:6:\"filter\";a:2:{s:7:\"handler\";s:32:\"views_handler_filter_node_access\";s:4:\"help\";s:107:\"Filter for content by view access. <strong>Not necessary if you are using node as your base table.</strong>\";}}}s:12:\"history_user\";a:1:{s:8:\"moved to\";s:7:\"history\";}s:7:\"history\";a:2:{s:5:\"table\";a:2:{s:5:\"group\";s:7:\"Content\";s:4:\"join\";a:1:{s:4:\"node\";a:4:{s:5:\"table\";s:7:\"history\";s:10:\"left_field\";s:3:\"nid\";s:5:\"field\";s:3:\"nid\";s:5:\"extra\";a:1:{i:0;a:3:{s:5:\"field\";s:3:\"uid\";s:5:\"value\";s:18:\"***CURRENT_USER***\";s:7:\"numeric\";b:1;}}}}}s:9:\"timestamp\";a:3:{s:5:\"title\";s:15:\"Has new content\";s:5:\"field\";a:2:{s:7:\"handler\";s:42:\"views_handler_field_history_user_timestamp\";s:4:\"help\";s:47:\"Show a marker if the content is new or updated.\";}s:6:\"filter\";a:2:{s:4:\"help\";s:41:\"Show only content that is new or updated.\";s:7:\"handler\";s:43:\"views_handler_filter_history_user_timestamp\";}}}s:12:\"photos_album\";a:5:{s:5:\"table\";a:3:{s:5:\"group\";s:12:\"Album Photos\";s:4:\"base\";a:4:{s:5:\"field\";s:3:\"pid\";s:5:\"title\";s:13:\"Photos Albums\";s:4:\"help\";s:7:\"Albums.\";s:6:\"weight\";i:-10;}s:4:\"join\";a:1:{s:12:\"photos_image\";a:2:{s:10:\"left_field\";s:3:\"pid\";s:5:\"field\";s:3:\"pid\";}}}s:3:\"pid\";a:5:{s:5:\"title\";s:8:\"Album ID\";s:4:\"help\";s:23:\"This albums {node}.nid.\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_numeric\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:3:\"fid\";a:6:{s:5:\"title\";s:11:\"Album cover\";s:4:\"help\";s:53:\"The {file_managed}.fid for the albums cover (if set).\";s:5:\"field\";a:2:{s:7:\"handler\";s:39:\"photos_handler_field_photos_album_cover\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:6:\"filter\";a:3:{s:7:\"handler\";s:37:\"views_handler_filter_boolean_operator\";s:5:\"label\";s:9:\"Has Image\";s:4:\"type\";s:6:\"yes-no\";}s:12:\"relationship\";a:6:{s:4:\"base\";s:12:\"file_managed\";s:10:\"base field\";s:3:\"fid\";s:7:\"handler\";s:26:\"views_handler_relationship\";s:5:\"label\";s:5:\"Cover\";s:5:\"title\";s:37:\"The cover associated with this album.\";s:4:\"help\";s:59:\"Access to the file associated with the cover of this Album.\";}}s:3:\"wid\";a:5:{s:5:\"title\";s:12:\"Album Weight\";s:4:\"help\";s:25:\"The weight of this album.\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_numeric\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:5:\"count\";a:5:{s:5:\"title\";s:17:\"Album Image Count\";s:4:\"help\";s:35:\"The number of images in this album.\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_numeric\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}}s:12:\"photos_image\";a:8:{s:5:\"table\";a:3:{s:5:\"group\";s:12:\"Album Photos\";s:4:\"base\";a:4:{s:5:\"field\";s:3:\"fid\";s:5:\"title\";s:13:\"Photos Images\";s:4:\"help\";s:13:\"Album images.\";s:6:\"weight\";i:-10;}s:4:\"join\";a:1:{s:12:\"file_managed\";a:2:{s:10:\"left_field\";s:3:\"fid\";s:5:\"field\";s:3:\"fid\";}}}s:3:\"fid\";a:6:{s:5:\"title\";s:5:\"Image\";s:4:\"help\";s:13:\"Album images.\";s:5:\"field\";a:2:{s:7:\"handler\";s:33:\"photos_handler_field_photos_image\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:6:\"filter\";a:3:{s:7:\"handler\";s:37:\"views_handler_filter_boolean_operator\";s:5:\"label\";s:9:\"Has Image\";s:4:\"type\";s:6:\"yes-no\";}s:12:\"relationship\";a:6:{s:4:\"base\";s:12:\"file_managed\";s:10:\"base field\";s:3:\"fid\";s:7:\"handler\";s:26:\"views_handler_relationship\";s:5:\"label\";s:10:\"Image file\";s:5:\"title\";s:36:\"The file associated with this image.\";s:4:\"help\";s:58:\"Access to the file information associated with this image.\";}}s:3:\"pid\";a:4:{s:5:\"title\";s:8:\"Album ID\";s:4:\"help\";s:29:\"This images album {node}.nid.\";s:12:\"relationship\";a:6:{s:4:\"base\";s:4:\"node\";s:10:\"base field\";s:3:\"nid\";s:7:\"handler\";s:26:\"views_handler_relationship\";s:5:\"label\";s:11:\"Album: Node\";s:5:\"title\";s:36:\"The node associated with this album.\";s:4:\"help\";s:47:\"Access to node title and fields for this Album.\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:29:\"views_handler_argument_string\";}}s:5:\"title\";a:5:{s:5:\"title\";s:11:\"Image Title\";s:4:\"help\";s:25:\"The title for this image.\";s:5:\"field\";a:2:{s:7:\"handler\";s:19:\"views_handler_field\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}}s:3:\"des\";a:4:{s:5:\"title\";s:17:\"Image Description\";s:4:\"help\";s:31:\"The description for this image.\";s:5:\"field\";a:2:{s:7:\"handler\";s:19:\"views_handler_field\";s:14:\"click sortable\";b:0;}s:6:\"filter\";a:3:{s:7:\"handler\";s:37:\"views_handler_filter_boolean_operator\";s:5:\"label\";s:15:\"Has Description\";s:4:\"type\";s:6:\"yes-no\";}}s:3:\"wid\";a:5:{s:5:\"title\";s:12:\"Image Weight\";s:4:\"help\";s:37:\"The image weight - custom sort order.\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_numeric\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:5:\"count\";a:5:{s:5:\"title\";s:11:\"Image Views\";s:4:\"help\";s:48:\"Count how many times this image has been viewed.\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_numeric\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:8:\"comcount\";a:5:{s:5:\"title\";s:14:\"Image Comments\";s:4:\"help\";s:39:\"Count how many comments this image has.\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_numeric\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}}s:19:\"photos_access_album\";a:2:{s:5:\"table\";a:2:{s:5:\"group\";s:18:\"Album Photo Access\";s:4:\"join\";a:1:{s:12:\"photos_album\";a:3:{s:10:\"left_field\";s:3:\"pid\";s:5:\"field\";s:3:\"nid\";s:4:\"type\";s:5:\"INNER\";}}}s:6:\"viewid\";a:6:{s:5:\"title\";s:11:\"Access Type\";s:4:\"help\";s:24:\"This albums Access type.\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_numeric\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:2:{s:7:\"handler\";s:32:\"views_handler_filter_in_operator\";s:16:\"options callback\";s:34:\"_photos_access_album_views_options\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:12:\"relationship\";a:6:{s:4:\"base\";s:12:\"photos_album\";s:10:\"base field\";s:3:\"pid\";s:7:\"handler\";s:26:\"views_handler_relationship\";s:5:\"label\";s:11:\"Access Type\";s:5:\"title\";s:43:\"The Access Type associated with this album.\";s:4:\"help\";s:53:\"Access to the Access Type associated with this album.\";}}}s:5:\"files\";a:1:{s:8:\"moved to\";s:12:\"file_managed\";}s:12:\"file_managed\";a:14:{s:5:\"table\";a:3:{s:5:\"group\";s:4:\"File\";s:4:\"base\";a:4:{s:5:\"field\";s:3:\"fid\";s:5:\"title\";s:4:\"File\";s:4:\"help\";s:47:\"Files maintained by Drupal and various modules.\";s:8:\"defaults\";a:1:{s:5:\"field\";s:8:\"filename\";}}s:11:\"entity type\";s:4:\"file\";}s:3:\"fid\";a:6:{s:5:\"title\";s:7:\"File ID\";s:4:\"help\";s:19:\"The ID of the file.\";s:5:\"field\";a:2:{s:7:\"handler\";s:24:\"views_handler_field_file\";s:14:\"click sortable\";b:1;}s:8:\"argument\";a:3:{s:7:\"handler\";s:31:\"views_handler_argument_file_fid\";s:10:\"name field\";s:8:\"filename\";s:7:\"numeric\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:8:\"filename\";a:6:{s:5:\"title\";s:4:\"Name\";s:4:\"help\";s:21:\"The name of the file.\";s:5:\"field\";a:2:{s:7:\"handler\";s:24:\"views_handler_field_file\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:29:\"views_handler_argument_string\";}}s:3:\"uri\";a:6:{s:5:\"title\";s:4:\"Path\";s:4:\"help\";s:21:\"The path of the file.\";s:5:\"field\";a:2:{s:7:\"handler\";s:28:\"views_handler_field_file_uri\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:29:\"views_handler_argument_string\";}}s:8:\"filemime\";a:6:{s:5:\"title\";s:9:\"Mime type\";s:4:\"help\";s:26:\"The mime type of the file.\";s:5:\"field\";a:2:{s:7:\"handler\";s:33:\"views_handler_field_file_filemime\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:29:\"views_handler_argument_string\";}}s:9:\"extension\";a:4:{s:5:\"title\";s:9:\"Extension\";s:4:\"help\";s:26:\"The extension of the file.\";s:10:\"real field\";s:8:\"filename\";s:5:\"field\";a:2:{s:7:\"handler\";s:34:\"views_handler_field_file_extension\";s:14:\"click sortable\";b:0;}}s:8:\"filesize\";a:5:{s:5:\"title\";s:4:\"Size\";s:4:\"help\";s:21:\"The size of the file.\";s:5:\"field\";a:2:{s:7:\"handler\";s:29:\"views_handler_field_file_size\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}}s:6:\"status\";a:5:{s:5:\"title\";s:6:\"Status\";s:4:\"help\";s:23:\"The status of the file.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"views_handler_field_file_status\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:32:\"views_handler_filter_file_status\";}}s:9:\"timestamp\";a:5:{s:5:\"title\";s:11:\"Upload date\";s:4:\"help\";s:31:\"The date the file was uploaded.\";s:5:\"field\";a:2:{s:7:\"handler\";s:24:\"views_handler_field_date\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:23:\"views_handler_sort_date\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:25:\"views_handler_filter_date\";}}s:3:\"uid\";a:3:{s:5:\"title\";s:17:\"User who uploaded\";s:4:\"help\";s:32:\"The user that uploaded the file.\";s:12:\"relationship\";a:4:{s:5:\"title\";s:17:\"User who uploaded\";s:5:\"label\";s:17:\"User who uploaded\";s:4:\"base\";s:5:\"users\";s:10:\"base field\";s:3:\"uid\";}}s:24:\"reverse_field_image_node\";a:1:{s:12:\"relationship\";a:10:{s:5:\"title\";s:19:\"Content using Image\";s:4:\"help\";s:50:\"Relate each Content with a Image set to the image.\";s:7:\"handler\";s:41:\"views_handler_relationship_entity_reverse\";s:10:\"field_name\";s:11:\"field_image\";s:11:\"field table\";s:22:\"field_data_field_image\";s:11:\"field field\";s:15:\"field_image_fid\";s:4:\"base\";s:4:\"node\";s:10:\"base field\";s:3:\"nid\";s:5:\"label\";s:11:\"field_image\";s:10:\"join_extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}s:24:\"reverse_field_photo_node\";a:1:{s:12:\"relationship\";a:10:{s:5:\"title\";s:33:\"Content using Photo Moorings 2014\";s:4:\"help\";s:64:\"Relate each Content with a Photo Moorings 2014 set to the image.\";s:7:\"handler\";s:41:\"views_handler_relationship_entity_reverse\";s:10:\"field_name\";s:11:\"field_photo\";s:11:\"field table\";s:22:\"field_data_field_photo\";s:11:\"field field\";s:15:\"field_photo_fid\";s:4:\"base\";s:4:\"node\";s:10:\"base field\";s:3:\"nid\";s:5:\"label\";s:11:\"field_photo\";s:10:\"join_extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}s:38:\"reverse_field_photo_moorings_2012_node\";a:1:{s:12:\"relationship\";a:10:{s:5:\"title\";s:33:\"Content using Photo Moorings 2012\";s:4:\"help\";s:64:\"Relate each Content with a Photo Moorings 2012 set to the image.\";s:7:\"handler\";s:41:\"views_handler_relationship_entity_reverse\";s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:11:\"field table\";s:36:\"field_data_field_photo_moorings_2012\";s:11:\"field field\";s:29:\"field_photo_moorings_2012_fid\";s:4:\"base\";s:4:\"node\";s:10:\"base field\";s:3:\"nid\";s:5:\"label\";s:25:\"field_photo_moorings_2012\";s:10:\"join_extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}s:38:\"reverse_field_photo_moorings_2010_node\";a:1:{s:12:\"relationship\";a:10:{s:5:\"title\";s:33:\"Content using Photo Moorings 2010\";s:4:\"help\";s:64:\"Relate each Content with a Photo Moorings 2010 set to the image.\";s:7:\"handler\";s:41:\"views_handler_relationship_entity_reverse\";s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:11:\"field table\";s:36:\"field_data_field_photo_moorings_2010\";s:11:\"field field\";s:29:\"field_photo_moorings_2010_fid\";s:4:\"base\";s:4:\"node\";s:10:\"base field\";s:3:\"nid\";s:5:\"label\";s:25:\"field_photo_moorings_2010\";s:10:\"join_extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}}s:10:\"file_usage\";a:15:{s:5:\"table\";a:2:{s:5:\"group\";s:10:\"File Usage\";s:4:\"join\";a:6:{s:12:\"file_managed\";a:2:{s:5:\"field\";s:3:\"fid\";s:10:\"left_field\";s:3:\"fid\";}s:4:\"node\";a:3:{s:5:\"field\";s:2:\"id\";s:10:\"left_field\";s:3:\"nid\";s:5:\"extra\";a:1:{i:0;a:2:{s:5:\"field\";s:4:\"type\";s:5:\"value\";s:4:\"node\";}}}s:5:\"users\";a:3:{s:5:\"field\";s:2:\"id\";s:10:\"left_field\";s:3:\"uid\";s:5:\"extra\";a:1:{i:0;a:2:{s:5:\"field\";s:4:\"type\";s:5:\"value\";s:4:\"user\";}}}s:7:\"comment\";a:3:{s:5:\"field\";s:2:\"id\";s:10:\"left_field\";s:3:\"cid\";s:5:\"extra\";a:1:{i:0;a:2:{s:5:\"field\";s:4:\"type\";s:5:\"value\";s:7:\"comment\";}}}s:18:\"taxonomy_term_data\";a:3:{s:5:\"field\";s:2:\"id\";s:10:\"left_field\";s:3:\"tid\";s:5:\"extra\";a:1:{i:0;a:2:{s:5:\"field\";s:4:\"type\";s:5:\"value\";s:13:\"taxonomy_term\";}}}s:19:\"taxonomy_vocabulary\";a:3:{s:5:\"field\";s:2:\"id\";s:10:\"left_field\";s:3:\"vid\";s:5:\"extra\";a:1:{i:0;a:2:{s:5:\"field\";s:4:\"type\";s:5:\"value\";s:19:\"taxonomy_vocabulary\";}}}}}s:12:\"file_to_node\";a:5:{s:5:\"title\";s:7:\"Content\";s:4:\"help\";s:98:\"Content that is associated with this file, usually because this file is in a field on the content.\";s:9:\"skip base\";a:6:{i:0;s:4:\"node\";i:1;s:13:\"node_revision\";i:2;s:5:\"users\";i:3;s:7:\"comment\";i:4;s:18:\"taxonomy_term_data\";i:5;s:19:\"taxonomy_vocabulary\";}s:10:\"real field\";s:2:\"id\";s:12:\"relationship\";a:6:{s:5:\"title\";s:7:\"Content\";s:5:\"label\";s:7:\"Content\";s:4:\"base\";s:4:\"node\";s:10:\"base field\";s:3:\"nid\";s:18:\"relationship field\";s:2:\"id\";s:5:\"extra\";a:1:{i:0;a:4:{s:5:\"table\";s:10:\"file_usage\";s:5:\"field\";s:4:\"type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"node\";}}}}s:12:\"node_to_file\";a:5:{s:5:\"title\";s:4:\"File\";s:4:\"help\";s:87:\"A file that is associated with this node, usually because it is in a field on the node.\";s:9:\"skip base\";a:5:{i:0;s:12:\"file_managed\";i:1;s:5:\"users\";i:2;s:7:\"comment\";i:3;s:18:\"taxonomy_term_data\";i:4;s:19:\"taxonomy_vocabulary\";}s:10:\"real field\";s:3:\"fid\";s:12:\"relationship\";a:5:{s:5:\"title\";s:4:\"File\";s:5:\"label\";s:4:\"File\";s:4:\"base\";s:12:\"file_managed\";s:10:\"base field\";s:3:\"fid\";s:18:\"relationship field\";s:3:\"fid\";}}s:12:\"file_to_user\";a:5:{s:5:\"title\";s:4:\"User\";s:4:\"help\";s:94:\"A user that is associated with this file, usually because this file is in a field on the user.\";s:9:\"skip base\";a:6:{i:0;s:4:\"node\";i:1;s:13:\"node_revision\";i:2;s:5:\"users\";i:3;s:7:\"comment\";i:4;s:18:\"taxonomy_term_data\";i:5;s:19:\"taxonomy_vocabulary\";}s:10:\"real field\";s:2:\"id\";s:12:\"relationship\";a:6:{s:5:\"title\";s:4:\"User\";s:5:\"label\";s:4:\"User\";s:4:\"base\";s:5:\"users\";s:10:\"base field\";s:3:\"uid\";s:18:\"relationship field\";s:2:\"id\";s:5:\"extra\";a:1:{i:0;a:4:{s:5:\"table\";s:10:\"file_usage\";s:5:\"field\";s:4:\"type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"user\";}}}}s:12:\"user_to_file\";a:5:{s:5:\"title\";s:4:\"File\";s:4:\"help\";s:87:\"A file that is associated with this user, usually because it is in a field on the user.\";s:9:\"skip base\";a:6:{i:0;s:12:\"file_managed\";i:1;s:4:\"node\";i:2;s:13:\"node_revision\";i:3;s:7:\"comment\";i:4;s:18:\"taxonomy_term_data\";i:5;s:19:\"taxonomy_vocabulary\";}s:10:\"real field\";s:3:\"fid\";s:12:\"relationship\";a:5:{s:5:\"title\";s:4:\"File\";s:5:\"label\";s:4:\"File\";s:4:\"base\";s:12:\"file_managed\";s:10:\"base field\";s:3:\"fid\";s:18:\"relationship field\";s:3:\"fid\";}}s:15:\"file_to_comment\";a:5:{s:5:\"title\";s:7:\"Comment\";s:4:\"help\";s:100:\"A comment that is associated with this file, usually because this file is in a field on the comment.\";s:9:\"skip base\";a:6:{i:0;s:4:\"node\";i:1;s:13:\"node_revision\";i:2;s:5:\"users\";i:3;s:7:\"comment\";i:4;s:18:\"taxonomy_term_data\";i:5;s:19:\"taxonomy_vocabulary\";}s:10:\"real field\";s:2:\"id\";s:12:\"relationship\";a:6:{s:5:\"title\";s:7:\"Comment\";s:5:\"label\";s:7:\"Comment\";s:4:\"base\";s:7:\"comment\";s:10:\"base field\";s:3:\"cid\";s:18:\"relationship field\";s:2:\"id\";s:5:\"extra\";a:1:{i:0;a:4:{s:5:\"table\";s:10:\"file_usage\";s:5:\"field\";s:4:\"type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:7:\"comment\";}}}}s:15:\"comment_to_file\";a:5:{s:5:\"title\";s:4:\"File\";s:4:\"help\";s:93:\"A file that is associated with this comment, usually because it is in a field on the comment.\";s:9:\"skip base\";a:6:{i:0;s:12:\"file_managed\";i:1;s:4:\"node\";i:2;s:13:\"node_revision\";i:3;s:5:\"users\";i:4;s:18:\"taxonomy_term_data\";i:5;s:19:\"taxonomy_vocabulary\";}s:10:\"real field\";s:3:\"fid\";s:12:\"relationship\";a:5:{s:5:\"title\";s:4:\"File\";s:5:\"label\";s:4:\"File\";s:4:\"base\";s:12:\"file_managed\";s:10:\"base field\";s:3:\"fid\";s:18:\"relationship field\";s:3:\"fid\";}}s:21:\"file_to_taxonomy_term\";a:5:{s:5:\"title\";s:13:\"Taxonomy Term\";s:4:\"help\";s:112:\"A taxonomy term that is associated with this file, usually because this file is in a field on the taxonomy term.\";s:9:\"skip base\";a:6:{i:0;s:4:\"node\";i:1;s:13:\"node_revision\";i:2;s:5:\"users\";i:3;s:7:\"comment\";i:4;s:18:\"taxonomy_term_data\";i:5;s:19:\"taxonomy_vocabulary\";}s:10:\"real field\";s:2:\"id\";s:12:\"relationship\";a:6:{s:5:\"title\";s:13:\"Taxonomy Term\";s:5:\"label\";s:13:\"Taxonomy Term\";s:4:\"base\";s:18:\"taxonomy_term_data\";s:10:\"base field\";s:3:\"tid\";s:18:\"relationship field\";s:2:\"id\";s:5:\"extra\";a:1:{i:0;a:4:{s:5:\"table\";s:10:\"file_usage\";s:5:\"field\";s:4:\"type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:13:\"taxonomy_term\";}}}}s:21:\"taxonomy_term_to_file\";a:5:{s:5:\"title\";s:4:\"File\";s:4:\"help\";s:105:\"A file that is associated with this taxonomy term, usually because it is in a field on the taxonomy term.\";s:9:\"skip base\";a:6:{i:0;s:12:\"file_managed\";i:1;s:4:\"node\";i:2;s:13:\"node_revision\";i:3;s:5:\"users\";i:4;s:7:\"comment\";i:5;s:19:\"taxonomy_vocabulary\";}s:10:\"real field\";s:3:\"fid\";s:12:\"relationship\";a:5:{s:5:\"title\";s:4:\"File\";s:5:\"label\";s:4:\"File\";s:4:\"base\";s:12:\"file_managed\";s:10:\"base field\";s:3:\"fid\";s:18:\"relationship field\";s:3:\"fid\";}}s:27:\"file_to_taxonomy_vocabulary\";a:5:{s:5:\"title\";s:19:\"Taxonomy Vocabulary\";s:4:\"help\";s:124:\"A taxonomy vocabulary that is associated with this file, usually because this file is in a field on the taxonomy vocabulary.\";s:9:\"skip base\";a:6:{i:0;s:4:\"node\";i:1;s:13:\"node_revision\";i:2;s:5:\"users\";i:3;s:7:\"comment\";i:4;s:18:\"taxonomy_term_data\";i:5;s:19:\"taxonomy_vocabulary\";}s:10:\"real field\";s:2:\"id\";s:12:\"relationship\";a:6:{s:5:\"title\";s:19:\"Taxonomy Vocabulary\";s:5:\"label\";s:19:\"Taxonomy Vocabulary\";s:4:\"base\";s:19:\"taxonomy_vocabulary\";s:10:\"base field\";s:3:\"vid\";s:18:\"relationship field\";s:2:\"id\";s:5:\"extra\";a:1:{i:0;a:4:{s:5:\"table\";s:10:\"file_usage\";s:5:\"field\";s:4:\"type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:19:\"taxonomy_vocabulary\";}}}}s:27:\"taxonomy_vocabulary_to_file\";a:5:{s:5:\"title\";s:4:\"File\";s:4:\"help\";s:117:\"A file that is associated with this taxonomy vocabulary, usually because it is in a field on the taxonomy vocabulary.\";s:9:\"skip base\";a:6:{i:0;s:12:\"file_managed\";i:1;s:4:\"node\";i:2;s:13:\"node_revision\";i:3;s:5:\"users\";i:4;s:7:\"comment\";i:5;s:18:\"taxonomy_term_data\";}s:10:\"real field\";s:3:\"fid\";s:12:\"relationship\";a:5:{s:5:\"title\";s:4:\"File\";s:5:\"label\";s:4:\"File\";s:4:\"base\";s:12:\"file_managed\";s:10:\"base field\";s:3:\"fid\";s:18:\"relationship field\";s:3:\"fid\";}}s:6:\"module\";a:6:{s:5:\"title\";s:6:\"Module\";s:4:\"help\";s:43:\"The module managing this file relationship.\";s:5:\"field\";a:2:{s:7:\"handler\";s:19:\"views_handler_field\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:29:\"views_handler_argument_string\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:4:\"type\";a:6:{s:5:\"title\";s:11:\"Entity type\";s:4:\"help\";s:47:\"The type of entity that is related to the file.\";s:5:\"field\";a:2:{s:7:\"handler\";s:19:\"views_handler_field\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:29:\"views_handler_argument_string\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:2:\"id\";a:6:{s:5:\"title\";s:9:\"Entity ID\";s:4:\"help\";s:49:\"The ID of the entity that is related to the file.\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_numeric\";s:14:\"click sortable\";b:1;}s:8:\"argument\";a:1:{s:7:\"handler\";s:30:\"views_handler_argument_numeric\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:5:\"count\";a:5:{s:5:\"title\";s:9:\"Use count\";s:4:\"help\";s:52:\"The number of times the file is used by this entity.\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_numeric\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}}s:6:\"system\";a:6:{s:5:\"table\";a:2:{s:5:\"group\";s:6:\"System\";s:4:\"base\";a:3:{s:5:\"field\";s:8:\"filename\";s:5:\"title\";s:25:\"Module/Theme/Theme engine\";s:4:\"help\";s:46:\"Modules/Themes/Theme engines in your codebase.\";}}s:8:\"filename\";a:6:{s:5:\"title\";s:34:\"Module/Theme/Theme engine filename\";s:4:\"help\";s:103:\"The path of the primary file for this item, relative to the Drupal root; e.g. modules/node/node.module.\";s:5:\"field\";a:2:{s:7:\"handler\";s:19:\"views_handler_field\";s:14:\"click sortable\";b:1;}s:8:\"argument\";a:2:{s:7:\"handler\";s:29:\"views_handler_argument_string\";s:10:\"name field\";s:8:\"filename\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:4:\"name\";a:6:{s:5:\"title\";s:30:\"Module/Theme/Theme engine name\";s:4:\"help\";s:32:\"The name of the item; e.g. node.\";s:5:\"field\";a:2:{s:7:\"handler\";s:19:\"views_handler_field\";s:14:\"click sortable\";b:1;}s:8:\"argument\";a:2:{s:7:\"handler\";s:29:\"views_handler_argument_string\";s:10:\"name field\";s:4:\"name\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:4:\"type\";a:6:{s:5:\"title\";s:4:\"Type\";s:4:\"help\";s:60:\"The type of the item, either module, theme, or theme_engine.\";s:5:\"field\";a:2:{s:7:\"handler\";s:19:\"views_handler_field\";s:14:\"click sortable\";b:1;}s:8:\"argument\";a:2:{s:7:\"handler\";s:29:\"views_handler_argument_string\";s:10:\"name field\";s:4:\"type\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:32:\"views_handler_filter_system_type\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:6:\"status\";a:6:{s:5:\"title\";s:6:\"Status\";s:4:\"help\";s:55:\"Boolean indicating whether or not this item is enabled.\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_boolean\";s:14:\"click sortable\";b:1;}s:8:\"argument\";a:2:{s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:10:\"name field\";s:6:\"status\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:37:\"views_handler_filter_boolean_operator\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:14:\"schema_version\";a:6:{s:5:\"title\";s:14:\"Schema version\";s:4:\"help\";s:238:\"The module\'s database schema version number. -1 if the module is not installed (its tables do not exist); 0 or the largest N of the module\'s hook_update_N() function that has either been run or existed when the module was first installed.\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_numeric\";s:14:\"click sortable\";b:1;}s:8:\"argument\";a:2:{s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:10:\"name field\";s:14:\"schema_version\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}}s:10:\"vocabulary\";a:1:{s:8:\"moved to\";s:19:\"taxonomy_vocabulary\";}s:19:\"taxonomy_vocabulary\";a:6:{s:5:\"table\";a:3:{s:5:\"group\";s:19:\"Taxonomy vocabulary\";s:4:\"join\";a:1:{s:18:\"taxonomy_term_data\";a:2:{s:10:\"left_field\";s:3:\"vid\";s:5:\"field\";s:3:\"vid\";}}s:20:\"default_relationship\";a:1:{s:4:\"node\";a:2:{s:5:\"table\";s:4:\"node\";s:5:\"field\";s:13:\"term_node_tid\";}}}s:4:\"name\";a:3:{s:5:\"title\";s:4:\"Name\";s:5:\"field\";a:3:{s:4:\"help\";s:160:\"Name of the vocabulary a term is a member of. This will be the vocabulary that whichever term the \"Taxonomy: Term\" field is; and can similarly cause duplicates.\";s:7:\"handler\";s:19:\"views_handler_field\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:2:{s:7:\"handler\";s:18:\"views_handler_sort\";s:4:\"help\";s:28:\"The taxonomy vocabulary name\";}}s:12:\"machine_name\";a:4:{s:5:\"title\";s:12:\"Machine name\";s:5:\"field\";a:3:{s:4:\"help\";s:168:\"Machine-Name of the vocabulary a term is a member of. This will be the vocabulary that whichever term the \"Taxonomy: Term\" field is; and can similarly cause duplicates.\";s:7:\"handler\";s:19:\"views_handler_field\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:2:{s:4:\"help\";s:66:\"Filter the results of \"Taxonomy: Term\" to a particular vocabulary.\";s:7:\"handler\";s:44:\"views_handler_filter_vocabulary_machine_name\";}s:8:\"argument\";a:2:{s:4:\"help\";s:66:\"Filter the results of \"Taxonomy: Term\" to a particular vocabulary.\";s:7:\"handler\";s:46:\"views_handler_argument_vocabulary_machine_name\";}}s:3:\"vid\";a:5:{s:5:\"title\";s:13:\"Vocabulary ID\";s:4:\"help\";s:26:\"The taxonomy vocabulary ID\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_numeric\";s:14:\"click sortable\";b:1;}s:8:\"argument\";a:2:{s:7:\"handler\";s:37:\"views_handler_argument_vocabulary_vid\";s:10:\"name field\";s:4:\"name\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:11:\"description\";a:3:{s:5:\"title\";s:11:\"Description\";s:4:\"help\";s:35:\"The taxonomy vocabulary description\";s:5:\"field\";a:1:{s:7:\"handler\";s:19:\"views_handler_field\";}}s:6:\"weight\";a:6:{s:5:\"title\";s:6:\"Weight\";s:4:\"help\";s:30:\"The taxonomy vocabulary weight\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_numeric\";s:14:\"click sortable\";b:1;}s:8:\"argument\";a:2:{s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:10:\"name field\";s:6:\"weight\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}}}s:9:\"term_data\";a:1:{s:8:\"moved to\";s:18:\"taxonomy_term_data\";}s:9:\"term_node\";a:1:{s:8:\"moved to\";s:14:\"taxonomy_index\";}s:14:\"taxonomy_index\";a:3:{s:5:\"table\";a:2:{s:5:\"group\";s:13:\"Taxonomy term\";s:4:\"join\";a:3:{s:18:\"taxonomy_term_data\";a:2:{s:10:\"left_field\";s:3:\"tid\";s:5:\"field\";s:3:\"tid\";}s:4:\"node\";a:2:{s:10:\"left_field\";s:3:\"nid\";s:5:\"field\";s:3:\"nid\";}s:23:\"taxonomy_term_hierarchy\";a:2:{s:10:\"left_field\";s:3:\"tid\";s:5:\"field\";s:3:\"tid\";}}}s:3:\"nid\";a:3:{s:5:\"title\";s:17:\"Content with term\";s:4:\"help\";s:38:\"Relate all content tagged with a term.\";s:12:\"relationship\";a:5:{s:7:\"handler\";s:26:\"views_handler_relationship\";s:4:\"base\";s:4:\"node\";s:10:\"base field\";s:3:\"nid\";s:5:\"label\";s:4:\"node\";s:9:\"skip base\";s:4:\"node\";}}s:3:\"tid\";a:5:{s:5:\"group\";s:7:\"Content\";s:5:\"title\";s:20:\"Has taxonomy term ID\";s:4:\"help\";s:54:\"Display content if it has the selected taxonomy terms.\";s:8:\"argument\";a:6:{s:7:\"handler\";s:36:\"views_handler_argument_term_node_tid\";s:10:\"name table\";s:18:\"taxonomy_term_data\";s:10:\"name field\";s:4:\"name\";s:16:\"empty field name\";s:13:\"Uncategorized\";s:7:\"numeric\";b:1;s:9:\"skip base\";s:18:\"taxonomy_term_data\";}s:6:\"filter\";a:6:{s:5:\"title\";s:17:\"Has taxonomy term\";s:7:\"handler\";s:34:\"views_handler_filter_term_node_tid\";s:15:\"hierarchy table\";s:23:\"taxonomy_term_hierarchy\";s:7:\"numeric\";b:1;s:9:\"skip base\";s:18:\"taxonomy_term_data\";s:11:\"allow empty\";b:1;}}}s:23:\"taxonomy_term_hierarchy\";a:2:{s:5:\"table\";a:3:{s:5:\"group\";s:13:\"Taxonomy term\";s:4:\"join\";a:2:{s:23:\"taxonomy_term_hierarchy\";a:2:{s:10:\"left_field\";s:3:\"tid\";s:5:\"field\";s:6:\"parent\";}s:18:\"taxonomy_term_data\";a:2:{s:10:\"left_field\";s:3:\"tid\";s:5:\"field\";s:3:\"tid\";}}s:20:\"default_relationship\";a:1:{s:4:\"node\";a:2:{s:5:\"table\";s:4:\"node\";s:5:\"field\";s:13:\"term_node_tid\";}}}s:6:\"parent\";a:5:{s:5:\"title\";s:11:\"Parent term\";s:4:\"help\";s:123:\"The parent term of the term. This can produce duplicate entries if you are using a vocabulary that allows multiple parents.\";s:12:\"relationship\";a:3:{s:4:\"base\";s:18:\"taxonomy_term_data\";s:5:\"field\";s:6:\"parent\";s:5:\"label\";s:6:\"Parent\";}s:6:\"filter\";a:2:{s:4:\"help\";s:57:\"Filter the results of \"Taxonomy: Term\" by the parent pid.\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:8:\"argument\";a:2:{s:4:\"help\";s:28:\"The parent term of the term.\";s:7:\"handler\";s:31:\"views_handler_argument_taxonomy\";}}}s:14:\"term_hierarchy\";a:1:{s:8:\"moved to\";s:23:\"taxonomy_term_hierarchy\";}s:11:\"users_roles\";a:2:{s:5:\"table\";a:3:{s:5:\"group\";s:4:\"User\";s:4:\"join\";a:1:{s:5:\"users\";a:2:{s:10:\"left_field\";s:3:\"uid\";s:5:\"field\";s:3:\"uid\";}}s:20:\"default_relationship\";a:2:{s:4:\"node\";a:2:{s:5:\"table\";s:4:\"node\";s:5:\"field\";s:3:\"uid\";}s:13:\"node_revision\";a:2:{s:5:\"table\";s:13:\"node_revision\";s:5:\"field\";s:3:\"uid\";}}}s:3:\"rid\";a:5:{s:5:\"title\";s:5:\"Roles\";s:4:\"help\";s:29:\"Roles that a user belongs to.\";s:5:\"field\";a:2:{s:7:\"handler\";s:30:\"views_handler_field_user_roles\";s:11:\"no group by\";b:1;}s:6:\"filter\";a:3:{s:7:\"handler\";s:31:\"views_handler_filter_user_roles\";s:7:\"numeric\";b:1;s:11:\"allow empty\";b:1;}s:8:\"argument\";a:6:{s:7:\"handler\";s:38:\"views_handler_argument_users_roles_rid\";s:10:\"name table\";s:4:\"role\";s:10:\"name field\";s:4:\"name\";s:16:\"empty field name\";s:7:\"No role\";s:12:\"zero is null\";b:1;s:7:\"numeric\";b:1;}}}s:4:\"role\";a:1:{s:5:\"table\";a:2:{s:4:\"join\";a:2:{s:5:\"users\";a:3:{s:10:\"left_table\";s:11:\"users_roles\";s:10:\"left_field\";s:3:\"rid\";s:5:\"field\";s:3:\"rid\";}s:11:\"users_roles\";a:2:{s:10:\"left_field\";s:3:\"rid\";s:5:\"field\";s:3:\"rid\";}}s:20:\"default_relationship\";a:2:{s:4:\"node\";a:2:{s:5:\"table\";s:4:\"node\";s:5:\"field\";s:3:\"uid\";}s:13:\"node_revision\";a:2:{s:5:\"table\";s:13:\"node_revision\";s:5:\"field\";s:3:\"uid\";}}}}s:15:\"role_permission\";a:2:{s:5:\"table\";a:2:{s:5:\"group\";s:4:\"User\";s:4:\"join\";a:1:{s:5:\"users\";a:3:{s:10:\"left_table\";s:11:\"users_roles\";s:10:\"left_field\";s:3:\"rid\";s:5:\"field\";s:3:\"rid\";}}}s:10:\"permission\";a:4:{s:5:\"title\";s:10:\"Permission\";s:4:\"help\";s:21:\"The user permissions.\";s:5:\"field\";a:2:{s:7:\"handler\";s:36:\"views_handler_field_user_permissions\";s:11:\"no group by\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:37:\"views_handler_filter_user_permissions\";}}}s:7:\"authmap\";a:4:{s:5:\"table\";a:3:{s:5:\"group\";s:4:\"User\";s:4:\"join\";a:1:{s:5:\"users\";a:2:{s:10:\"left_field\";s:3:\"uid\";s:5:\"field\";s:3:\"uid\";}}s:20:\"default_relationship\";a:2:{s:4:\"node\";a:2:{s:5:\"table\";s:4:\"node\";s:5:\"field\";s:3:\"uid\";}s:13:\"node_revision\";a:2:{s:5:\"table\";s:13:\"node_revision\";s:5:\"field\";s:3:\"uid\";}}}s:3:\"aid\";a:5:{s:5:\"title\";s:10:\"Authmap ID\";s:4:\"help\";s:15:\"The Authmap ID.\";s:5:\"field\";a:1:{s:7:\"handler\";s:27:\"views_handler_field_numeric\";}s:6:\"filter\";a:2:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:7:\"numeric\";b:1;}s:8:\"argument\";a:2:{s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:7:\"numeric\";b:1;}}s:8:\"authname\";a:5:{s:5:\"title\";s:19:\"Authentication name\";s:4:\"help\";s:31:\"The unique authentication name.\";s:5:\"field\";a:1:{s:7:\"handler\";s:19:\"views_handler_field\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:29:\"views_handler_argument_string\";}}s:6:\"module\";a:5:{s:5:\"title\";s:21:\"Authentication module\";s:4:\"help\";s:57:\"The name of the module managing the authentication entry.\";s:5:\"field\";a:1:{s:7:\"handler\";s:19:\"views_handler_field\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:29:\"views_handler_argument_string\";}}}s:5:\"views\";a:15:{s:5:\"table\";a:2:{s:5:\"group\";s:6:\"Global\";s:4:\"join\";a:1:{s:7:\"#global\";a:0:{}}}s:6:\"random\";a:3:{s:5:\"title\";s:6:\"Random\";s:4:\"help\";s:28:\"Randomize the display order.\";s:4:\"sort\";a:1:{s:7:\"handler\";s:25:\"views_handler_sort_random\";}}s:4:\"null\";a:3:{s:5:\"title\";s:4:\"Null\";s:4:\"help\";s:213:\"Allow a contextual filter value to be ignored. The query will not be altered by this contextual filter value. Can be used when contextual filter values come from the URL, and a part of the URL needs to be ignored.\";s:8:\"argument\";a:1:{s:7:\"handler\";s:27:\"views_handler_argument_null\";}}s:7:\"nothing\";a:3:{s:5:\"title\";s:11:\"Custom text\";s:4:\"help\";s:28:\"Provide custom text or link.\";s:5:\"field\";a:1:{s:7:\"handler\";s:26:\"views_handler_field_custom\";}}s:7:\"counter\";a:3:{s:5:\"title\";s:19:\"View result counter\";s:4:\"help\";s:47:\"Displays the actual position of the view result\";s:5:\"field\";a:1:{s:7:\"handler\";s:27:\"views_handler_field_counter\";}}s:4:\"area\";a:3:{s:5:\"title\";s:9:\"Text area\";s:4:\"help\";s:33:\"Provide markup text for the area.\";s:4:\"area\";a:1:{s:7:\"handler\";s:23:\"views_handler_area_text\";}}s:16:\"area_text_custom\";a:3:{s:5:\"title\";s:15:\"Unfiltered text\";s:4:\"help\";s:82:\"Add unrestricted, custom text or markup. This is similar to the custom text field.\";s:4:\"area\";a:1:{s:7:\"handler\";s:30:\"views_handler_area_text_custom\";}}s:4:\"view\";a:3:{s:5:\"title\";s:9:\"View area\";s:4:\"help\";s:29:\"Insert a view inside an area.\";s:4:\"area\";a:1:{s:7:\"handler\";s:23:\"views_handler_area_view\";}}s:6:\"result\";a:3:{s:5:\"title\";s:14:\"Result summary\";s:4:\"help\";s:53:\"Shows result summary, for example the items per page.\";s:4:\"area\";a:1:{s:7:\"handler\";s:25:\"views_handler_area_result\";}}s:8:\"messages\";a:3:{s:5:\"title\";s:8:\"Messages\";s:4:\"help\";s:30:\"Displays messages in the area.\";s:4:\"area\";a:1:{s:7:\"handler\";s:27:\"views_handler_area_messages\";}}s:16:\"contextual_links\";a:3:{s:5:\"title\";s:16:\"Contextual Links\";s:4:\"help\";s:42:\"Display fields in a contextual links menu.\";s:5:\"field\";a:1:{s:7:\"handler\";s:36:\"views_handler_field_contextual_links\";}}s:15:\"ctools_dropdown\";a:3:{s:5:\"title\";s:14:\"Dropdown links\";s:4:\"help\";s:67:\"Displays fields in a dropdown list, like on the views listing page.\";s:5:\"field\";a:1:{s:7:\"handler\";s:35:\"views_handler_field_ctools_dropdown\";}}s:7:\"combine\";a:3:{s:5:\"title\";s:21:\"Combine fields filter\";s:4:\"help\";s:52:\"Combine multiple fields together and search by them.\";s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_combine\";}}s:10:\"expression\";a:3:{s:5:\"title\";s:15:\"Math expression\";s:4:\"help\";s:52:\"Evaluates a mathematical expression and displays it.\";s:5:\"field\";a:2:{s:7:\"handler\";s:24:\"views_handler_field_math\";s:5:\"float\";b:1;}}s:14:\"fields_compare\";a:3:{s:5:\"title\";s:17:\"Fields comparison\";s:4:\"help\";s:42:\"Compare database fields against eachother.\";s:6:\"filter\";a:2:{s:4:\"help\";s:55:\"Use fields comparison to filter the result of the view.\";s:7:\"handler\";s:35:\"views_handler_filter_fields_compare\";}}}s:18:\"entity_translation\";a:12:{s:5:\"table\";a:2:{s:5:\"group\";s:18:\"Entity translation\";s:4:\"base\";a:3:{s:5:\"field\";s:9:\"entity_id\";s:5:\"title\";s:18:\"Entity translation\";s:4:\"help\";s:45:\"Information about a translation of an entity.\";}}s:9:\"entity_id\";a:6:{s:5:\"title\";s:9:\"Entity id\";s:4:\"help\";s:14:\"The entity id.\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_numeric\";s:14:\"click sortable\";b:1;}s:8:\"argument\";a:3:{s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:7:\"numeric\";b:1;s:13:\"validate type\";s:9:\"entity_id\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:11:\"entity_type\";a:6:{s:5:\"title\";s:11:\"Entity type\";s:4:\"help\";s:16:\"The entity type.\";s:5:\"field\";a:2:{s:7:\"handler\";s:19:\"views_handler_field\";s:14:\"click sortable\";b:1;}s:8:\"argument\";a:3:{s:7:\"handler\";s:29:\"views_handler_argument_string\";s:7:\"numeric\";b:0;s:13:\"validate type\";s:11:\"entity_type\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:45:\"entity_translation_handler_filter_entity_type\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:8:\"language\";a:6:{s:5:\"title\";s:8:\"Language\";s:4:\"help\";s:33:\"The language of this translation.\";s:5:\"field\";a:2:{s:7:\"handler\";s:35:\"views_handler_field_locale_language\";s:14:\"click sortable\";b:1;}s:8:\"argument\";a:3:{s:7:\"handler\";s:38:\"views_handler_argument_locale_language\";s:7:\"numeric\";b:0;s:13:\"validate type\";s:8:\"language\";}s:6:\"filter\";a:2:{s:7:\"handler\";s:42:\"entity_translation_handler_filter_language\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:6:\"source\";a:6:{s:5:\"title\";s:6:\"Source\";s:4:\"help\";s:20:\"The source language.\";s:5:\"field\";a:2:{s:7:\"handler\";s:35:\"views_handler_field_locale_language\";s:14:\"click sortable\";b:1;}s:8:\"argument\";a:4:{s:7:\"handler\";s:38:\"views_handler_argument_locale_language\";s:10:\"name field\";s:5:\"title\";s:7:\"numeric\";b:0;s:13:\"validate type\";s:6:\"string\";}s:6:\"filter\";a:2:{s:7:\"handler\";s:42:\"entity_translation_handler_filter_language\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:6:\"status\";a:6:{s:5:\"title\";s:18:\"Translation status\";s:4:\"help\";s:31:\"The status of this translation.\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_boolean\";s:14:\"click sortable\";b:1;}s:8:\"argument\";a:3:{s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:7:\"numeric\";b:1;s:13:\"validate type\";s:7:\"boolean\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:37:\"views_handler_filter_boolean_operator\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:9:\"translate\";a:6:{s:5:\"title\";s:12:\"Needs update\";s:4:\"help\";s:49:\"Indicates if the translation needs to be updated.\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_boolean\";s:14:\"click sortable\";b:1;}s:8:\"argument\";a:4:{s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:10:\"name field\";s:5:\"title\";s:7:\"numeric\";b:1;s:13:\"validate type\";s:7:\"boolean\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:37:\"views_handler_filter_boolean_operator\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:7:\"created\";a:6:{s:5:\"title\";s:7:\"Created\";s:4:\"help\";s:13:\"Created date.\";s:5:\"field\";a:2:{s:7:\"handler\";s:24:\"views_handler_field_date\";s:14:\"click sortable\";b:1;}s:8:\"argument\";a:3:{s:7:\"handler\";s:27:\"views_handler_argument_date\";s:7:\"numeric\";b:0;s:13:\"validate type\";s:4:\"date\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:25:\"views_handler_filter_date\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:23:\"views_handler_sort_date\";}}s:7:\"changed\";a:6:{s:5:\"title\";s:7:\"Changed\";s:4:\"help\";s:13:\"Changed date.\";s:5:\"field\";a:2:{s:7:\"handler\";s:24:\"views_handler_field_date\";s:14:\"click sortable\";b:1;}s:8:\"argument\";a:3:{s:7:\"handler\";s:27:\"views_handler_argument_date\";s:7:\"numeric\";b:0;s:13:\"validate type\";s:4:\"date\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:25:\"views_handler_filter_date\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:23:\"views_handler_sort_date\";}}s:14:\"translate_link\";a:3:{s:5:\"title\";s:14:\"Translate link\";s:4:\"help\";s:34:\"Link to translation overview page.\";s:5:\"field\";a:1:{s:7:\"handler\";s:47:\"entity_translation_handler_field_translate_link\";}}s:18:\"translation_exists\";a:3:{s:5:\"title\";s:18:\"Translation exists\";s:4:\"help\";s:64:\"Determines if a translation exists for a particular translation.\";s:6:\"filter\";a:1:{s:7:\"handler\";s:52:\"entity_translation_handler_filter_translation_exists\";}}s:5:\"label\";a:3:{s:5:\"title\";s:5:\"Label\";s:4:\"help\";s:24:\"The label of the entity.\";s:5:\"field\";a:1:{s:7:\"handler\";s:38:\"entity_translation_handler_field_label\";}}}}',0,1538750977,1),('views_data:it','a:73:{s:8:\"comments\";a:8:{s:8:\"moved to\";s:7:\"comment\";s:9:\"timestamp\";a:1:{s:8:\"moved to\";a:2:{i:0;s:7:\"comment\";i:1;s:7:\"changed\";}}s:18:\"timestamp_fulldate\";a:1:{s:8:\"moved to\";a:2:{i:0;s:7:\"comment\";i:1;s:16:\"changed_fulldata\";}}s:20:\"timestamp_year_month\";a:1:{s:8:\"moved to\";a:2:{i:0;s:7:\"comment\";i:1;s:18:\"changed_year_month\";}}s:14:\"timestamp_year\";a:1:{s:8:\"moved to\";a:2:{i:0;s:7:\"comment\";i:1;s:12:\"changed_year\";}}s:15:\"timestamp_month\";a:1:{s:8:\"moved to\";a:2:{i:0;s:7:\"comment\";i:1;s:13:\"changed_month\";}}s:13:\"timestamp_day\";a:1:{s:8:\"moved to\";a:2:{i:0;s:7:\"comment\";i:1;s:11:\"changed_day\";}}s:14:\"timestamp_week\";a:1:{s:8:\"moved to\";a:2:{i:0;s:7:\"comment\";i:1;s:12:\"changed_week\";}}}s:7:\"comment\";a:34:{s:7:\"comment\";a:2:{s:8:\"moved to\";a:2:{i:0;s:23:\"field_data_comment_body\";i:1;s:12:\"comment_body\";}s:5:\"field\";a:1:{s:8:\"moved to\";a:2:{i:0;s:23:\"field_data_comment_body\";i:1;s:12:\"comment_body\";}}}s:5:\"table\";a:4:{s:5:\"group\";s:8:\"Commento\";s:4:\"base\";a:4:{s:5:\"field\";s:3:\"cid\";s:5:\"title\";s:8:\"Commento\";s:4:\"help\";s:39:\"Comments are responses to node content.\";s:16:\"access query tag\";s:14:\"comment_access\";}s:11:\"entity type\";s:7:\"comment\";s:20:\"default_relationship\";a:1:{s:4:\"node\";a:2:{s:5:\"table\";s:4:\"node\";s:5:\"field\";s:3:\"cid\";}}}s:7:\"subject\";a:6:{s:5:\"title\";s:6:\"Titolo\";s:4:\"help\";s:23:\"Il titolo del commento.\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_comment\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:29:\"views_handler_argument_string\";}}s:3:\"cid\";a:6:{s:5:\"title\";s:2:\"ID\";s:4:\"help\";s:27:\"The comment ID of the field\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_comment\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:30:\"views_handler_argument_numeric\";}}s:4:\"name\";a:6:{s:5:\"title\";s:6:\"Autore\";s:4:\"help\";s:85:\"The name of the comment\'s author. Can be rendered as a link to the author\'s homepage.\";s:5:\"field\";a:2:{s:7:\"handler\";s:36:\"views_handler_field_comment_username\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:29:\"views_handler_argument_string\";}}s:8:\"homepage\";a:6:{s:5:\"title\";s:16:\"Author\'s website\";s:4:\"help\";s:121:\"The website address of the comment\'s author. Can be rendered as a link. Will be empty if the author is a registered user.\";s:5:\"field\";a:2:{s:7:\"handler\";s:23:\"views_handler_field_url\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:29:\"views_handler_argument_string\";}}s:8:\"hostname\";a:6:{s:5:\"title\";s:9:\"Nome host\";s:4:\"help\";s:41:\"Hostname of user that posted the comment.\";s:5:\"field\";a:2:{s:7:\"handler\";s:19:\"views_handler_field\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:29:\"views_handler_argument_string\";}}s:4:\"mail\";a:6:{s:5:\"title\";s:4:\"Mail\";s:4:\"help\";s:88:\"Email of user that posted the comment. Will be empty if the author is a registered user.\";s:5:\"field\";a:2:{s:7:\"handler\";s:19:\"views_handler_field\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:29:\"views_handler_argument_string\";}}s:7:\"created\";a:5:{s:5:\"title\";s:9:\"Post date\";s:4:\"help\";s:46:\"Date and time of when the comment was created.\";s:5:\"field\";a:2:{s:7:\"handler\";s:24:\"views_handler_field_date\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:23:\"views_handler_sort_date\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:25:\"views_handler_filter_date\";}}s:16:\"created_fulldata\";a:3:{s:5:\"title\";s:12:\"Created date\";s:4:\"help\";s:29:\"Date in the form of CCYYMMDD.\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:44:\"views_handler_argument_node_created_fulldate\";}}s:18:\"created_year_month\";a:3:{s:5:\"title\";s:20:\"Created year + month\";s:4:\"help\";s:27:\"Date in the form of YYYYMM.\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:46:\"views_handler_argument_node_created_year_month\";}}s:12:\"created_year\";a:3:{s:5:\"title\";s:12:\"Created year\";s:4:\"help\";s:25:\"Date in the form of YYYY.\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:40:\"views_handler_argument_node_created_year\";}}s:13:\"created_month\";a:3:{s:5:\"title\";s:13:\"Created month\";s:4:\"help\";s:33:\"Date in the form of MM (01 - 12).\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:41:\"views_handler_argument_node_created_month\";}}s:11:\"created_day\";a:3:{s:5:\"title\";s:11:\"Created day\";s:4:\"help\";s:33:\"Date in the form of DD (01 - 31).\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:39:\"views_handler_argument_node_created_day\";}}s:12:\"created_week\";a:3:{s:5:\"title\";s:12:\"Created week\";s:4:\"help\";s:33:\"Date in the form of WW (01 - 53).\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:40:\"views_handler_argument_node_created_week\";}}s:8:\"language\";a:6:{s:5:\"title\";s:6:\"Lingua\";s:4:\"help\";s:31:\"The language the comment is in.\";s:5:\"field\";a:2:{s:7:\"handler\";s:35:\"views_handler_field_locale_language\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:36:\"views_handler_filter_locale_language\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:38:\"views_handler_argument_locale_language\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:7:\"changed\";a:5:{s:5:\"title\";s:12:\"Updated date\";s:4:\"help\";s:51:\"Date and time of when the comment was last updated.\";s:5:\"field\";a:2:{s:7:\"handler\";s:24:\"views_handler_field_date\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:23:\"views_handler_sort_date\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:25:\"views_handler_filter_date\";}}s:16:\"changed_fulldata\";a:3:{s:5:\"title\";s:12:\"Changed date\";s:4:\"help\";s:29:\"Date in the form of CCYYMMDD.\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"changed\";s:7:\"handler\";s:44:\"views_handler_argument_node_created_fulldate\";}}s:18:\"changed_year_month\";a:3:{s:5:\"title\";s:20:\"Changed year + month\";s:4:\"help\";s:27:\"Date in the form of YYYYMM.\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"changed\";s:7:\"handler\";s:46:\"views_handler_argument_node_created_year_month\";}}s:12:\"changed_year\";a:3:{s:5:\"title\";s:12:\"Changed year\";s:4:\"help\";s:25:\"Date in the form of YYYY.\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"changed\";s:7:\"handler\";s:40:\"views_handler_argument_node_created_year\";}}s:13:\"changed_month\";a:3:{s:5:\"title\";s:13:\"Changed month\";s:4:\"help\";s:33:\"Date in the form of MM (01 - 12).\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"changed\";s:7:\"handler\";s:41:\"views_handler_argument_node_created_month\";}}s:11:\"changed_day\";a:3:{s:5:\"title\";s:11:\"Changed day\";s:4:\"help\";s:33:\"Date in the form of DD (01 - 31).\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"changed\";s:7:\"handler\";s:39:\"views_handler_argument_node_created_day\";}}s:12:\"changed_week\";a:3:{s:5:\"title\";s:12:\"Changed week\";s:4:\"help\";s:33:\"Date in the form of WW (01 - 53).\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"changed\";s:7:\"handler\";s:40:\"views_handler_argument_node_created_week\";}}s:6:\"status\";a:5:{s:5:\"title\";s:8:\"Approved\";s:4:\"help\";s:67:\"Whether the comment is approved (or still in the moderation queue).\";s:5:\"field\";a:3:{s:7:\"handler\";s:27:\"views_handler_field_boolean\";s:14:\"click sortable\";b:1;s:14:\"output formats\";a:1:{s:21:\"approved-not-approved\";a:2:{i:0;s:8:\"Approved\";i:1;s:12:\"Not Approved\";}}}s:6:\"filter\";a:3:{s:7:\"handler\";s:37:\"views_handler_filter_boolean_operator\";s:5:\"label\";s:16:\"Approved comment\";s:4:\"type\";s:6:\"yes-no\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:12:\"view_comment\";a:1:{s:5:\"field\";a:3:{s:5:\"title\";s:9:\"View link\";s:4:\"help\";s:42:\"Provide a simple link to view the comment.\";s:7:\"handler\";s:32:\"views_handler_field_comment_link\";}}s:12:\"edit_comment\";a:1:{s:5:\"field\";a:3:{s:5:\"title\";s:9:\"Edit link\";s:4:\"help\";s:42:\"Provide a simple link to edit the comment.\";s:7:\"handler\";s:37:\"views_handler_field_comment_link_edit\";}}s:14:\"delete_comment\";a:1:{s:5:\"field\";a:3:{s:5:\"title\";s:11:\"Delete link\";s:4:\"help\";s:44:\"Provide a simple link to delete the comment.\";s:7:\"handler\";s:39:\"views_handler_field_comment_link_delete\";}}s:15:\"approve_comment\";a:1:{s:5:\"field\";a:3:{s:5:\"title\";s:12:\"Approve link\";s:4:\"help\";s:45:\"Provide a simple link to approve the comment.\";s:7:\"handler\";s:40:\"views_handler_field_comment_link_approve\";}}s:15:\"replyto_comment\";a:1:{s:5:\"field\";a:3:{s:5:\"title\";s:13:\"Reply-to link\";s:4:\"help\";s:46:\"Provide a simple link to reply to the comment.\";s:7:\"handler\";s:38:\"views_handler_field_comment_link_reply\";}}s:6:\"thread\";a:2:{s:5:\"field\";a:3:{s:5:\"title\";s:5:\"Depth\";s:4:\"help\";s:51:\"Display the depth of the comment if it is threaded.\";s:7:\"handler\";s:33:\"views_handler_field_comment_depth\";}s:4:\"sort\";a:3:{s:5:\"title\";s:6:\"Thread\";s:4:\"help\";s:86:\"Sort by the threaded order. This will keep child comments together with their parents.\";s:7:\"handler\";s:33:\"views_handler_sort_comment_thread\";}}s:3:\"nid\";a:6:{s:5:\"title\";s:3:\"Nid\";s:4:\"help\";s:47:\"The node ID to which the comment is a reply to.\";s:12:\"relationship\";a:6:{s:5:\"title\";s:9:\"Contenuto\";s:4:\"help\";s:47:\"The content to which the comment is a reply to.\";s:4:\"base\";s:4:\"node\";s:10:\"base field\";s:3:\"nid\";s:7:\"handler\";s:26:\"views_handler_relationship\";s:5:\"label\";s:9:\"Contenuto\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:30:\"views_handler_argument_numeric\";}s:5:\"field\";a:1:{s:7:\"handler\";s:27:\"views_handler_field_numeric\";}}s:3:\"uid\";a:6:{s:5:\"title\";s:10:\"Author uid\";s:4:\"help\";s:73:\"If you need more fields than the uid add the comment: author relationship\";s:12:\"relationship\";a:6:{s:5:\"title\";s:6:\"Autore\";s:4:\"help\";s:36:\"The User ID of the comment\'s author.\";s:4:\"base\";s:5:\"users\";s:10:\"base field\";s:3:\"uid\";s:7:\"handler\";s:26:\"views_handler_relationship\";s:5:\"label\";s:6:\"author\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:30:\"views_handler_argument_numeric\";}s:5:\"field\";a:1:{s:7:\"handler\";s:24:\"views_handler_field_user\";}}s:3:\"pid\";a:4:{s:5:\"title\";s:10:\"Parent CID\";s:4:\"help\";s:37:\"The Comment ID of the parent comment.\";s:5:\"field\";a:1:{s:7:\"handler\";s:19:\"views_handler_field\";}s:12:\"relationship\";a:6:{s:5:\"title\";s:14:\"Parent comment\";s:4:\"help\";s:19:\"The parent comment.\";s:4:\"base\";s:7:\"comment\";s:10:\"base field\";s:3:\"cid\";s:7:\"handler\";s:26:\"views_handler_relationship\";s:5:\"label\";s:14:\"Parent comment\";}}s:19:\"entity_translations\";a:3:{s:5:\"title\";s:32:\"Entity translation: translations\";s:4:\"help\";s:24:\"Translation information.\";s:12:\"relationship\";a:8:{s:5:\"label\";s:12:\"Translations\";s:4:\"base\";s:18:\"entity_translation\";s:10:\"base field\";s:9:\"entity_id\";s:18:\"relationship field\";s:3:\"cid\";s:7:\"handler\";s:39:\"entity_translation_handler_relationship\";s:10:\"left_table\";s:7:\"comment\";s:10:\"left_field\";s:3:\"cid\";s:11:\"entity type\";s:7:\"comment\";}}}s:23:\"node_comment_statistics\";a:7:{s:5:\"table\";a:2:{s:5:\"group\";s:9:\"Contenuto\";s:4:\"join\";a:1:{s:4:\"node\";a:3:{s:4:\"type\";s:5:\"INNER\";s:10:\"left_field\";s:3:\"nid\";s:5:\"field\";s:3:\"nid\";}}}s:22:\"last_comment_timestamp\";a:5:{s:5:\"title\";s:17:\"Last comment time\";s:4:\"help\";s:50:\"Date and time of when the last comment was posted.\";s:5:\"field\";a:2:{s:7:\"handler\";s:42:\"views_handler_field_last_comment_timestamp\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:23:\"views_handler_sort_date\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:25:\"views_handler_filter_date\";}}s:17:\"last_comment_name\";a:4:{s:5:\"title\";s:19:\"Last comment author\";s:4:\"help\";s:50:\"The name of the author of the last posted comment.\";s:5:\"field\";a:3:{s:7:\"handler\";s:41:\"views_handler_field_ncs_last_comment_name\";s:14:\"click sortable\";b:1;s:11:\"no group by\";b:1;}s:4:\"sort\";a:2:{s:7:\"handler\";s:40:\"views_handler_sort_ncs_last_comment_name\";s:11:\"no group by\";b:1;}}s:13:\"comment_count\";a:6:{s:5:\"title\";s:15:\"Numero commenti\";s:4:\"help\";s:34:\"The number of comments a node has.\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_numeric\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:22:\"views_handler_argument\";}}s:12:\"last_updated\";a:5:{s:5:\"title\";s:22:\"Updated/commented date\";s:4:\"help\";s:60:\"The most recent of last comment posted or node updated time.\";s:5:\"field\";a:3:{s:7:\"handler\";s:36:\"views_handler_field_ncs_last_updated\";s:14:\"click sortable\";b:1;s:11:\"no group by\";b:1;}s:4:\"sort\";a:2:{s:7:\"handler\";s:35:\"views_handler_sort_ncs_last_updated\";s:11:\"no group by\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:37:\"views_handler_filter_ncs_last_updated\";}}s:3:\"cid\";a:3:{s:5:\"title\";s:16:\"Last comment CID\";s:4:\"help\";s:34:\"Display the last comment of a node\";s:12:\"relationship\";a:7:{s:5:\"title\";s:12:\"Last Comment\";s:4:\"help\";s:27:\"The last comment of a node.\";s:5:\"group\";s:8:\"Commento\";s:4:\"base\";s:7:\"comment\";s:10:\"base field\";s:3:\"cid\";s:7:\"handler\";s:26:\"views_handler_relationship\";s:5:\"label\";s:12:\"Last Comment\";}}s:16:\"last_comment_uid\";a:6:{s:5:\"title\";s:16:\"Last comment uid\";s:4:\"help\";s:56:\"The User ID of the author of the last comment of a node.\";s:12:\"relationship\";a:5:{s:5:\"title\";s:19:\"Last comment author\";s:4:\"base\";s:5:\"users\";s:10:\"base field\";s:3:\"uid\";s:7:\"handler\";s:26:\"views_handler_relationship\";s:5:\"label\";s:19:\"Last comment author\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:30:\"views_handler_argument_numeric\";}s:5:\"field\";a:1:{s:7:\"handler\";s:27:\"views_handler_field_numeric\";}}}s:11:\"entity_node\";a:58:{s:5:\"table\";a:2:{s:5:\"group\";s:4:\"Nodo\";s:11:\"entity type\";s:4:\"node\";}s:3:\"nid\";a:3:{s:5:\"title\";s:7:\"Node ID\";s:4:\"help\";s:26:\"The unique ID of the node.\";s:5:\"field\";a:2:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"integer\";}}s:3:\"vid\";a:3:{s:5:\"title\";s:12:\"ID revisione\";s:4:\"help\";s:37:\"The unique ID of the node\'s revision.\";s:5:\"field\";a:2:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"integer\";}}s:6:\"is_new\";a:3:{s:5:\"title\";s:6:\"Is new\";s:4:\"help\";s:58:\"Whether the node is new and not saved to the database yet.\";s:5:\"field\";a:2:{s:7:\"handler\";s:34:\"entity_views_handler_field_boolean\";s:4:\"type\";s:7:\"boolean\";}}s:4:\"type\";a:3:{s:5:\"title\";s:17:\"Tipo di contenuto\";s:4:\"help\";s:22:\"Il tipo del contenuto.\";s:5:\"field\";a:3:{s:7:\"handler\";s:34:\"entity_views_handler_field_options\";s:4:\"type\";s:5:\"token\";s:16:\"options callback\";a:2:{s:8:\"function\";s:19:\"node_type_get_names\";s:4:\"info\";a:9:{s:5:\"label\";s:17:\"Tipo di contenuto\";s:4:\"type\";s:5:\"token\";s:11:\"description\";s:22:\"Il tipo del contenuto.\";s:15:\"setter callback\";s:28:\"entity_property_verbatim_set\";s:17:\"setter permission\";s:16:\"administer nodes\";s:12:\"options list\";s:19:\"node_type_get_names\";s:8:\"required\";b:1;s:12:\"schema field\";s:4:\"type\";s:15:\"getter callback\";s:28:\"entity_property_verbatim_get\";}}}}s:5:\"title\";a:3:{s:5:\"title\";s:6:\"Titolo\";s:4:\"help\";s:19:\"Il titolo del nodo.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:4:\"text\";}}s:8:\"language\";a:3:{s:5:\"title\";s:6:\"Lingua\";s:4:\"help\";s:46:\"La lingua nella quale è scritto il contenuto.\";s:5:\"field\";a:3:{s:7:\"handler\";s:34:\"entity_views_handler_field_options\";s:4:\"type\";s:5:\"token\";s:16:\"options callback\";a:2:{s:8:\"function\";s:29:\"entity_metadata_language_list\";s:4:\"info\";a:8:{s:5:\"label\";s:6:\"Lingua\";s:4:\"type\";s:5:\"token\";s:11:\"description\";s:46:\"La lingua nella quale è scritto il contenuto.\";s:15:\"setter callback\";s:28:\"entity_property_verbatim_set\";s:12:\"options list\";s:29:\"entity_metadata_language_list\";s:12:\"schema field\";s:8:\"language\";s:17:\"setter permission\";s:16:\"administer nodes\";s:15:\"getter callback\";s:28:\"entity_property_verbatim_get\";}}}}s:3:\"url\";a:3:{s:5:\"title\";s:3:\"URL\";s:4:\"help\";s:20:\"L\'URL del contenuto.\";s:5:\"field\";a:2:{s:7:\"handler\";s:30:\"entity_views_handler_field_uri\";s:4:\"type\";s:3:\"uri\";}}s:8:\"edit_url\";a:3:{s:5:\"title\";s:12:\"Modifica URL\";s:4:\"help\";s:40:\"L\'URL della pagina di modifica del nodo.\";s:5:\"field\";a:2:{s:7:\"handler\";s:30:\"entity_views_handler_field_uri\";s:4:\"type\";s:3:\"uri\";}}s:6:\"status\";a:3:{s:5:\"title\";s:5:\"Stato\";s:4:\"help\";s:45:\"Whether the node is published or unpublished.\";s:5:\"field\";a:3:{s:7:\"handler\";s:34:\"entity_views_handler_field_options\";s:4:\"type\";s:7:\"integer\";s:16:\"options callback\";a:2:{s:8:\"function\";s:35:\"entity_metadata_status_options_list\";s:4:\"info\";a:8:{s:5:\"label\";s:5:\"Stato\";s:11:\"description\";s:45:\"Whether the node is published or unpublished.\";s:4:\"type\";s:7:\"integer\";s:12:\"options list\";s:35:\"entity_metadata_status_options_list\";s:15:\"setter callback\";s:28:\"entity_property_verbatim_set\";s:17:\"setter permission\";s:16:\"administer nodes\";s:12:\"schema field\";s:6:\"status\";s:15:\"getter callback\";s:28:\"entity_property_verbatim_get\";}}}}s:7:\"promote\";a:3:{s:5:\"title\";s:21:\"Promoted to frontpage\";s:4:\"help\";s:46:\"Whether the node is promoted to the frontpage.\";s:5:\"field\";a:2:{s:7:\"handler\";s:34:\"entity_views_handler_field_boolean\";s:4:\"type\";s:7:\"boolean\";}}s:6:\"sticky\";a:3:{s:5:\"title\";s:15:\"Sticky in lists\";s:4:\"help\";s:70:\"Whether the node is displayed at the top of lists in which it appears.\";s:5:\"field\";a:2:{s:7:\"handler\";s:34:\"entity_views_handler_field_boolean\";s:4:\"type\";s:7:\"boolean\";}}s:7:\"created\";a:3:{s:5:\"title\";s:17:\"Data di creazione\";s:4:\"help\";s:41:\"La data in cui il nodo è stato inserito.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_date\";s:4:\"type\";s:4:\"date\";}}s:7:\"changed\";a:3:{s:5:\"title\";s:13:\"Data cambiata\";s:4:\"help\";s:61:\"La data più recente nella quale il nodo è stato aggiornato.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_date\";s:4:\"type\";s:4:\"date\";}}s:6:\"author\";a:4:{s:5:\"title\";s:6:\"Autore\";s:4:\"help\";s:18:\"L\'autore del nodo.\";s:5:\"field\";a:2:{s:7:\"handler\";s:33:\"entity_views_handler_field_entity\";s:4:\"type\";s:4:\"user\";}s:12:\"relationship\";a:5:{s:7:\"handler\";s:33:\"entity_views_handler_relationship\";s:4:\"base\";s:11:\"entity_user\";s:10:\"base field\";s:3:\"uid\";s:18:\"relationship field\";s:6:\"author\";s:5:\"label\";s:6:\"Autore\";}}s:6:\"source\";a:4:{s:5:\"title\";s:23:\"Translation source node\";s:4:\"help\";s:58:\"The original-language version of this node, if one exists.\";s:5:\"field\";a:2:{s:7:\"handler\";s:33:\"entity_views_handler_field_entity\";s:4:\"type\";s:4:\"node\";}s:12:\"relationship\";a:5:{s:7:\"handler\";s:33:\"entity_views_handler_relationship\";s:4:\"base\";s:11:\"entity_node\";s:10:\"base field\";s:3:\"nid\";s:18:\"relationship field\";s:6:\"source\";s:5:\"label\";s:23:\"Translation source node\";}}s:3:\"log\";a:3:{s:5:\"title\";s:33:\"Messaggio di revisione per il log\";s:4:\"help\";s:93:\"In case a new revision is to be saved, the log entry explaining the changes for this version.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:4:\"text\";}}s:8:\"revision\";a:3:{s:5:\"title\";s:16:\"Creates revision\";s:4:\"help\";s:48:\"Whether saving this node creates a new revision.\";s:5:\"field\";a:2:{s:7:\"handler\";s:34:\"entity_views_handler_field_boolean\";s:4:\"type\";s:7:\"boolean\";}}s:7:\"comment\";a:3:{s:5:\"title\";s:16:\"Comments allowed\";s:4:\"help\";s:97:\"Whether comments are allowed on this node: 0 = no, 1 = closed (read only), 2 = open (read/write).\";s:5:\"field\";a:2:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"integer\";}}s:8:\"comments\";a:4:{s:5:\"title\";s:8:\"Commenti\";s:4:\"help\";s:18:\"The node comments.\";s:5:\"field\";a:2:{s:7:\"handler\";s:33:\"entity_views_handler_field_entity\";s:4:\"type\";s:13:\"list<comment>\";}s:12:\"relationship\";a:6:{s:7:\"handler\";s:33:\"entity_views_handler_relationship\";s:4:\"base\";s:14:\"entity_comment\";s:10:\"base field\";s:3:\"cid\";s:18:\"relationship field\";s:8:\"comments\";s:5:\"label\";s:8:\"Commenti\";s:8:\"multiple\";b:1;}}s:13:\"comment_count\";a:3:{s:5:\"title\";s:15:\"Numero commenti\";s:4:\"help\";s:42:\"Il numero di commenti inseriti in un nodo.\";s:5:\"field\";a:2:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"integer\";}}s:17:\"comment_count_new\";a:3:{s:5:\"title\";s:25:\"Nuovo totale dei commenti\";s:4:\"help\";s:81:\"Il numero di commenti inseriti in un nodo dall\'ultima visita di chi sta leggendo.\";s:5:\"field\";a:2:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"integer\";}}s:4:\"body\";a:3:{s:5:\"title\";s:18:\"The main body text\";s:4:\"help\";s:26:\"(No information available)\";s:5:\"field\";a:6:{s:7:\"handler\";s:32:\"entity_views_handler_field_field\";s:4:\"type\";s:14:\"text_formatted\";s:10:\"field_name\";s:4:\"body\";s:13:\"entity_tables\";a:0:{}s:11:\"entity type\";s:4:\"node\";s:11:\"is revision\";b:0;}}s:10:\"body_value\";a:4:{s:5:\"title\";s:27:\"The main body text » Testo\";s:4:\"help\";s:26:\"(No information available)\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:4:\"text\";}s:10:\"real field\";s:10:\"body:value\";}s:12:\"body_summary\";a:4:{s:5:\"title\";s:30:\"The main body text » Sommario\";s:4:\"help\";s:26:\"(No information available)\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:4:\"text\";}s:10:\"real field\";s:12:\"body:summary\";}s:11:\"body_format\";a:4:{s:5:\"title\";s:39:\"The main body text » Formato del testo\";s:4:\"help\";s:26:\"(No information available)\";s:5:\"field\";a:3:{s:7:\"handler\";s:34:\"entity_views_handler_field_options\";s:4:\"type\";s:5:\"token\";s:16:\"options callback\";a:2:{s:8:\"function\";s:34:\"entity_metadata_field_text_formats\";s:4:\"info\";a:6:{s:4:\"type\";s:5:\"token\";s:5:\"label\";s:17:\"Formato del testo\";s:12:\"options list\";s:34:\"entity_metadata_field_text_formats\";s:15:\"getter callback\";s:28:\"entity_property_verbatim_get\";s:15:\"setter callback\";s:28:\"entity_property_verbatim_set\";s:18:\"setter permissions\";s:18:\"administer filters\";}}}s:10:\"real field\";s:11:\"body:format\";}s:11:\"title_field\";a:3:{s:5:\"title\";s:5:\"Title\";s:4:\"help\";s:20:\"Field \"title_field\".\";s:5:\"field\";a:6:{s:7:\"handler\";s:32:\"entity_views_handler_field_field\";s:4:\"type\";s:4:\"text\";s:10:\"field_name\";s:11:\"title_field\";s:13:\"entity_tables\";a:0:{}s:11:\"entity type\";s:4:\"node\";s:11:\"is revision\";b:0;}}s:10:\"field_tags\";a:4:{s:5:\"title\";s:4:\"Tags\";s:4:\"help\";s:19:\"Field \"field_tags\".\";s:5:\"field\";a:2:{s:7:\"handler\";s:33:\"entity_views_handler_field_entity\";s:4:\"type\";s:19:\"list<taxonomy_term>\";}s:12:\"relationship\";a:6:{s:7:\"handler\";s:33:\"entity_views_handler_relationship\";s:4:\"base\";s:20:\"entity_taxonomy_term\";s:10:\"base field\";s:3:\"tid\";s:18:\"relationship field\";s:10:\"field_tags\";s:5:\"label\";s:4:\"Tags\";s:8:\"multiple\";b:1;}}s:11:\"field_image\";a:3:{s:5:\"title\";s:5:\"Image\";s:4:\"help\";s:20:\"Field \"field_image\".\";s:5:\"field\";a:6:{s:7:\"handler\";s:32:\"entity_views_handler_field_field\";s:4:\"type\";s:16:\"field_item_image\";s:10:\"field_name\";s:11:\"field_image\";s:13:\"entity_tables\";a:0:{}s:11:\"entity type\";s:4:\"node\";s:11:\"is revision\";b:0;}}s:16:\"field_image_file\";a:5:{s:5:\"title\";s:24:\"Image » The image file.\";s:4:\"help\";s:26:\"(No information available)\";s:5:\"field\";a:2:{s:7:\"handler\";s:33:\"entity_views_handler_field_entity\";s:4:\"type\";s:4:\"file\";}s:10:\"real field\";s:16:\"field_image:file\";s:12:\"relationship\";a:5:{s:7:\"handler\";s:33:\"entity_views_handler_relationship\";s:4:\"base\";s:11:\"entity_file\";s:10:\"base field\";s:3:\"fid\";s:18:\"relationship field\";s:16:\"field_image:file\";s:5:\"label\";s:24:\"Image » The image file.\";}}s:15:\"field_image_alt\";a:4:{s:5:\"title\";s:33:\"Image » The \"Alt\" attribute text\";s:4:\"help\";s:26:\"(No information available)\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:4:\"text\";}s:10:\"real field\";s:15:\"field_image:alt\";}s:30:\"field_openlayers_example_input\";a:3:{s:5:\"title\";s:33:\"OpenLayers Example Geofield Input\";s:4:\"help\";s:39:\"Field \"field_openlayers_example_input\".\";s:5:\"field\";a:6:{s:7:\"handler\";s:32:\"entity_views_handler_field_field\";s:4:\"type\";s:8:\"geofield\";s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:13:\"entity_tables\";a:0:{}s:11:\"entity type\";s:4:\"node\";s:11:\"is revision\";b:0;}}s:35:\"field_openlayers_example_input_geom\";a:4:{s:5:\"title\";s:52:\"OpenLayers Example Geofield Input » Well-known text\";s:4:\"help\";s:63:\"Well-known text del campo <em class=\"placeholder\">Geofield</em>\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:4:\"text\";}s:10:\"real field\";s:35:\"field_openlayers_example_input:geom\";}s:39:\"field_openlayers_example_input_geo_type\";a:4:{s:5:\"title\";s:45:\"OpenLayers Example Geofield Input » Geo Type\";s:4:\"help\";s:56:\"Geo Type del campo <em class=\"placeholder\">Geofield</em>\";s:5:\"field\";a:3:{s:7:\"handler\";s:34:\"entity_views_handler_field_options\";s:4:\"type\";s:4:\"text\";s:16:\"options callback\";a:2:{s:8:\"function\";s:36:\"_geofield_geo_types_options_callback\";s:4:\"info\";a:7:{s:5:\"label\";s:8:\"Geo Type\";s:12:\"options list\";s:36:\"_geofield_geo_types_options_callback\";s:8:\"required\";b:1;s:9:\"microdata\";b:0;s:11:\"description\";s:56:\"Geo Type del campo <em class=\"placeholder\">Geofield</em>\";s:15:\"getter callback\";s:28:\"entity_property_verbatim_get\";s:4:\"type\";s:4:\"text\";}}}s:10:\"real field\";s:39:\"field_openlayers_example_input:geo_type\";}s:34:\"field_openlayers_example_input_lat\";a:4:{s:5:\"title\";s:45:\"OpenLayers Example Geofield Input » Latitude\";s:4:\"help\";s:56:\"Latitude del campo <em class=\"placeholder\">Geofield</em>\";s:5:\"field\";a:3:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"decimal\";s:5:\"float\";b:1;}s:10:\"real field\";s:34:\"field_openlayers_example_input:lat\";}s:34:\"field_openlayers_example_input_lon\";a:4:{s:5:\"title\";s:46:\"OpenLayers Example Geofield Input » Longitude\";s:4:\"help\";s:57:\"Longitude del campo <em class=\"placeholder\">Geofield</em>\";s:5:\"field\";a:3:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"decimal\";s:5:\"float\";b:1;}s:10:\"real field\";s:34:\"field_openlayers_example_input:lon\";}s:35:\"field_openlayers_example_input_left\";a:4:{s:5:\"title\";s:50:\"OpenLayers Example Geofield Input » Left Latitude\";s:4:\"help\";s:61:\"Left Latitude del campo <em class=\"placeholder\">Geofield</em>\";s:5:\"field\";a:3:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"decimal\";s:5:\"float\";b:1;}s:10:\"real field\";s:35:\"field_openlayers_example_input:left\";}s:34:\"field_openlayers_example_input_top\";a:4:{s:5:\"title\";s:50:\"OpenLayers Example Geofield Input » Top Longitude\";s:4:\"help\";s:61:\"Top Longitude del campo <em class=\"placeholder\">Geofield</em>\";s:5:\"field\";a:3:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"decimal\";s:5:\"float\";b:1;}s:10:\"real field\";s:34:\"field_openlayers_example_input:top\";}s:36:\"field_openlayers_example_input_right\";a:4:{s:5:\"title\";s:51:\"OpenLayers Example Geofield Input » Right Latitude\";s:4:\"help\";s:62:\"Right Latitude del campo <em class=\"placeholder\">Geofield</em>\";s:5:\"field\";a:3:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"decimal\";s:5:\"float\";b:1;}s:10:\"real field\";s:36:\"field_openlayers_example_input:right\";}s:37:\"field_openlayers_example_input_bottom\";a:4:{s:5:\"title\";s:53:\"OpenLayers Example Geofield Input » Bottom Longitude\";s:4:\"help\";s:64:\"Bottom Longitude del campo <em class=\"placeholder\">Geofield</em>\";s:5:\"field\";a:3:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"decimal\";s:5:\"float\";b:1;}s:10:\"real field\";s:37:\"field_openlayers_example_input:bottom\";}s:35:\"field_openlayers_example_input_srid\";a:4:{s:5:\"title\";s:54:\"OpenLayers Example Geofield Input » Projection (SRID)\";s:4:\"help\";s:65:\"Projection (SRID) del campo <em class=\"placeholder\">Geofield</em>\";s:5:\"field\";a:2:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"integer\";}s:10:\"real field\";s:35:\"field_openlayers_example_input:srid\";}s:12:\"field_gfdata\";a:3:{s:5:\"title\";s:4:\"Data\";s:4:\"help\";s:21:\"Field \"field_gfdata\".\";s:5:\"field\";a:6:{s:7:\"handler\";s:32:\"entity_views_handler_field_field\";s:4:\"type\";s:8:\"geofield\";s:10:\"field_name\";s:12:\"field_gfdata\";s:13:\"entity_tables\";a:0:{}s:11:\"entity type\";s:4:\"node\";s:11:\"is revision\";b:0;}}s:17:\"field_gfdata_geom\";a:4:{s:5:\"title\";s:23:\"Data » Well-known text\";s:4:\"help\";s:63:\"Well-known text del campo <em class=\"placeholder\">Geofield</em>\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:4:\"text\";}s:10:\"real field\";s:17:\"field_gfdata:geom\";}s:21:\"field_gfdata_geo_type\";a:4:{s:5:\"title\";s:16:\"Data » Geo Type\";s:4:\"help\";s:56:\"Geo Type del campo <em class=\"placeholder\">Geofield</em>\";s:5:\"field\";a:3:{s:7:\"handler\";s:34:\"entity_views_handler_field_options\";s:4:\"type\";s:4:\"text\";s:16:\"options callback\";a:2:{s:8:\"function\";s:36:\"_geofield_geo_types_options_callback\";s:4:\"info\";a:7:{s:5:\"label\";s:8:\"Geo Type\";s:12:\"options list\";s:36:\"_geofield_geo_types_options_callback\";s:8:\"required\";b:1;s:9:\"microdata\";b:0;s:11:\"description\";s:56:\"Geo Type del campo <em class=\"placeholder\">Geofield</em>\";s:15:\"getter callback\";s:28:\"entity_property_verbatim_get\";s:4:\"type\";s:4:\"text\";}}}s:10:\"real field\";s:21:\"field_gfdata:geo_type\";}s:16:\"field_gfdata_lat\";a:4:{s:5:\"title\";s:16:\"Data » Latitude\";s:4:\"help\";s:56:\"Latitude del campo <em class=\"placeholder\">Geofield</em>\";s:5:\"field\";a:3:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"decimal\";s:5:\"float\";b:1;}s:10:\"real field\";s:16:\"field_gfdata:lat\";}s:16:\"field_gfdata_lon\";a:4:{s:5:\"title\";s:17:\"Data » Longitude\";s:4:\"help\";s:57:\"Longitude del campo <em class=\"placeholder\">Geofield</em>\";s:5:\"field\";a:3:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"decimal\";s:5:\"float\";b:1;}s:10:\"real field\";s:16:\"field_gfdata:lon\";}s:17:\"field_gfdata_left\";a:4:{s:5:\"title\";s:21:\"Data » Left Latitude\";s:4:\"help\";s:61:\"Left Latitude del campo <em class=\"placeholder\">Geofield</em>\";s:5:\"field\";a:3:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"decimal\";s:5:\"float\";b:1;}s:10:\"real field\";s:17:\"field_gfdata:left\";}s:16:\"field_gfdata_top\";a:4:{s:5:\"title\";s:21:\"Data » Top Longitude\";s:4:\"help\";s:61:\"Top Longitude del campo <em class=\"placeholder\">Geofield</em>\";s:5:\"field\";a:3:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"decimal\";s:5:\"float\";b:1;}s:10:\"real field\";s:16:\"field_gfdata:top\";}s:18:\"field_gfdata_right\";a:4:{s:5:\"title\";s:22:\"Data » Right Latitude\";s:4:\"help\";s:62:\"Right Latitude del campo <em class=\"placeholder\">Geofield</em>\";s:5:\"field\";a:3:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"decimal\";s:5:\"float\";b:1;}s:10:\"real field\";s:18:\"field_gfdata:right\";}s:19:\"field_gfdata_bottom\";a:4:{s:5:\"title\";s:24:\"Data » Bottom Longitude\";s:4:\"help\";s:64:\"Bottom Longitude del campo <em class=\"placeholder\">Geofield</em>\";s:5:\"field\";a:3:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"decimal\";s:5:\"float\";b:1;}s:10:\"real field\";s:19:\"field_gfdata:bottom\";}s:17:\"field_gfdata_srid\";a:4:{s:5:\"title\";s:25:\"Data » Projection (SRID)\";s:4:\"help\";s:65:\"Projection (SRID) del campo <em class=\"placeholder\">Geofield</em>\";s:5:\"field\";a:2:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"integer\";}s:10:\"real field\";s:17:\"field_gfdata:srid\";}s:11:\"field_photo\";a:3:{s:5:\"title\";s:19:\"Photo Moorings 2014\";s:4:\"help\";s:20:\"Field \"field_photo\".\";s:5:\"field\";a:6:{s:7:\"handler\";s:32:\"entity_views_handler_field_field\";s:4:\"type\";s:16:\"field_item_image\";s:10:\"field_name\";s:11:\"field_photo\";s:13:\"entity_tables\";a:0:{}s:11:\"entity type\";s:4:\"node\";s:11:\"is revision\";b:0;}}s:16:\"field_photo_file\";a:5:{s:5:\"title\";s:38:\"Photo Moorings 2014 » The image file.\";s:4:\"help\";s:26:\"(No information available)\";s:5:\"field\";a:2:{s:7:\"handler\";s:33:\"entity_views_handler_field_entity\";s:4:\"type\";s:4:\"file\";}s:10:\"real field\";s:16:\"field_photo:file\";s:12:\"relationship\";a:5:{s:7:\"handler\";s:33:\"entity_views_handler_relationship\";s:4:\"base\";s:11:\"entity_file\";s:10:\"base field\";s:3:\"fid\";s:18:\"relationship field\";s:16:\"field_photo:file\";s:5:\"label\";s:38:\"Photo Moorings 2014 » The image file.\";}}s:25:\"field_photo_moorings_2012\";a:3:{s:5:\"title\";s:19:\"Photo Moorings 2012\";s:4:\"help\";s:34:\"Field \"field_photo_moorings_2012\".\";s:5:\"field\";a:6:{s:7:\"handler\";s:32:\"entity_views_handler_field_field\";s:4:\"type\";s:16:\"field_item_image\";s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:13:\"entity_tables\";a:0:{}s:11:\"entity type\";s:4:\"node\";s:11:\"is revision\";b:0;}}s:30:\"field_photo_moorings_2012_file\";a:5:{s:5:\"title\";s:38:\"Photo Moorings 2012 » The image file.\";s:4:\"help\";s:26:\"(No information available)\";s:5:\"field\";a:2:{s:7:\"handler\";s:33:\"entity_views_handler_field_entity\";s:4:\"type\";s:4:\"file\";}s:10:\"real field\";s:30:\"field_photo_moorings_2012:file\";s:12:\"relationship\";a:5:{s:7:\"handler\";s:33:\"entity_views_handler_relationship\";s:4:\"base\";s:11:\"entity_file\";s:10:\"base field\";s:3:\"fid\";s:18:\"relationship field\";s:30:\"field_photo_moorings_2012:file\";s:5:\"label\";s:38:\"Photo Moorings 2012 » The image file.\";}}s:15:\"taxonomy_forums\";a:4:{s:5:\"title\";s:6:\"Forums\";s:4:\"help\";s:24:\"Field \"taxonomy_forums\".\";s:5:\"field\";a:2:{s:7:\"handler\";s:33:\"entity_views_handler_field_entity\";s:4:\"type\";s:13:\"taxonomy_term\";}s:12:\"relationship\";a:5:{s:7:\"handler\";s:33:\"entity_views_handler_relationship\";s:4:\"base\";s:20:\"entity_taxonomy_term\";s:10:\"base field\";s:3:\"tid\";s:18:\"relationship field\";s:15:\"taxonomy_forums\";s:5:\"label\";s:6:\"Forums\";}}s:25:\"field_photo_moorings_2010\";a:3:{s:5:\"title\";s:19:\"Photo Moorings 2010\";s:4:\"help\";s:34:\"Field \"field_photo_moorings_2010\".\";s:5:\"field\";a:6:{s:7:\"handler\";s:32:\"entity_views_handler_field_field\";s:4:\"type\";s:16:\"field_item_image\";s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:13:\"entity_tables\";a:0:{}s:11:\"entity type\";s:4:\"node\";s:11:\"is revision\";b:0;}}s:30:\"field_photo_moorings_2010_file\";a:5:{s:5:\"title\";s:38:\"Photo Moorings 2010 » The image file.\";s:4:\"help\";s:26:\"(No information available)\";s:5:\"field\";a:2:{s:7:\"handler\";s:33:\"entity_views_handler_field_entity\";s:4:\"type\";s:4:\"file\";}s:10:\"real field\";s:30:\"field_photo_moorings_2010:file\";s:12:\"relationship\";a:5:{s:7:\"handler\";s:33:\"entity_views_handler_relationship\";s:4:\"base\";s:11:\"entity_file\";s:10:\"base field\";s:3:\"fid\";s:18:\"relationship field\";s:30:\"field_photo_moorings_2010:file\";s:5:\"label\";s:38:\"Photo Moorings 2010 » The image file.\";}}}s:17:\"views_entity_node\";a:5:{s:15:\"rendered_entity\";a:3:{s:5:\"title\";s:13:\"Rendered Nodo\";s:4:\"help\";s:64:\"The Nodo of the current relationship rendered using a view mode.\";s:5:\"field\";a:3:{s:7:\"handler\";s:33:\"entity_views_handler_field_entity\";s:4:\"type\";s:4:\"node\";s:10:\"real field\";s:13:\"entity object\";}}s:5:\"table\";a:3:{s:5:\"group\";s:9:\"Contenuto\";s:4:\"join\";a:4:{s:11:\"entity_node\";a:1:{s:10:\"left_table\";s:11:\"entity_node\";}s:17:\"views_entity_node\";a:1:{s:10:\"left_table\";s:17:\"views_entity_node\";}s:4:\"node\";a:1:{s:10:\"left_table\";s:4:\"node\";}s:13:\"node_revision\";a:1:{s:10:\"left_table\";s:13:\"node_revision\";}}s:11:\"entity type\";s:4:\"node\";}s:9:\"view_node\";a:1:{s:5:\"field\";a:3:{s:5:\"title\";s:4:\"Link\";s:4:\"help\";s:37:\"Provide a simple link to the content.\";s:7:\"handler\";s:29:\"views_handler_field_node_link\";}}s:9:\"edit_node\";a:1:{s:5:\"field\";a:3:{s:5:\"title\";s:9:\"Edit link\";s:4:\"help\";s:42:\"Provide a simple link to edit the content.\";s:7:\"handler\";s:34:\"views_handler_field_node_link_edit\";}}s:11:\"delete_node\";a:1:{s:5:\"field\";a:3:{s:5:\"title\";s:11:\"Delete link\";s:4:\"help\";s:44:\"Provide a simple link to delete the content.\";s:7:\"handler\";s:36:\"views_handler_field_node_link_delete\";}}}s:20:\"entity_taxonomy_term\";a:10:{s:5:\"table\";a:2:{s:5:\"group\";s:24:\"Termine della tassonomia\";s:11:\"entity type\";s:13:\"taxonomy_term\";}s:3:\"tid\";a:3:{s:5:\"title\";s:10:\"ID Termine\";s:4:\"help\";s:54:\"L\'identificativo univoco del termine della tassonomia.\";s:5:\"field\";a:2:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"integer\";}}s:4:\"name\";a:3:{s:5:\"title\";s:4:\"Nome\";s:4:\"help\";s:37:\"Il nome del termine della tassonomia.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:4:\"text\";}}s:11:\"description\";a:3:{s:5:\"title\";s:11:\"Descrizione\";s:4:\"help\";s:54:\"La descrizione opzionale dei termini della tassonomia.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:4:\"text\";}}s:6:\"weight\";a:3:{s:5:\"title\";s:4:\"Peso\";s:4:\"help\";s:72:\"The weight of the term, which is used for ordering terms during display.\";s:5:\"field\";a:2:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"integer\";}}s:10:\"node_count\";a:3:{s:5:\"title\";s:18:\"Conteggio dei nodi\";s:4:\"help\";s:55:\"Il numero di nodi taggati con il termine di tassonomia.\";s:5:\"field\";a:2:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"integer\";}}s:3:\"url\";a:3:{s:5:\"title\";s:3:\"URL\";s:4:\"help\";s:32:\"L\'URL del termine di tassonomia.\";s:5:\"field\";a:2:{s:7:\"handler\";s:30:\"entity_views_handler_field_uri\";s:4:\"type\";s:3:\"uri\";}}s:10:\"vocabulary\";a:4:{s:5:\"title\";s:11:\"Vocabolario\";s:4:\"help\";s:55:\"Il vocabolario cui il termine di tassonomia appartiene.\";s:5:\"field\";a:2:{s:7:\"handler\";s:33:\"entity_views_handler_field_entity\";s:4:\"type\";s:19:\"taxonomy_vocabulary\";}s:12:\"relationship\";a:5:{s:7:\"handler\";s:33:\"entity_views_handler_relationship\";s:4:\"base\";s:26:\"entity_taxonomy_vocabulary\";s:10:\"base field\";s:3:\"vid\";s:18:\"relationship field\";s:10:\"vocabulary\";s:5:\"label\";s:11:\"Vocabolario\";}}s:6:\"parent\";a:4:{s:5:\"title\";s:13:\"Termini padre\";s:4:\"help\";s:38:\"The parent terms of the taxonomy term.\";s:5:\"field\";a:2:{s:7:\"handler\";s:33:\"entity_views_handler_field_entity\";s:4:\"type\";s:19:\"list<taxonomy_term>\";}s:12:\"relationship\";a:6:{s:7:\"handler\";s:33:\"entity_views_handler_relationship\";s:4:\"base\";s:20:\"entity_taxonomy_term\";s:10:\"base field\";s:3:\"tid\";s:18:\"relationship field\";s:6:\"parent\";s:5:\"label\";s:13:\"Termini padre\";s:8:\"multiple\";b:1;}}s:11:\"parents_all\";a:4:{s:5:\"title\";s:16:\"All parent terms\";s:4:\"help\";s:65:\"Ancestors of the term, i.e. parent of all above hierarchy levels.\";s:5:\"field\";a:2:{s:7:\"handler\";s:33:\"entity_views_handler_field_entity\";s:4:\"type\";s:19:\"list<taxonomy_term>\";}s:12:\"relationship\";a:6:{s:7:\"handler\";s:33:\"entity_views_handler_relationship\";s:4:\"base\";s:20:\"entity_taxonomy_term\";s:10:\"base field\";s:3:\"tid\";s:18:\"relationship field\";s:11:\"parents_all\";s:5:\"label\";s:16:\"All parent terms\";s:8:\"multiple\";b:1;}}}s:26:\"views_entity_taxonomy_term\";a:2:{s:15:\"rendered_entity\";a:3:{s:5:\"title\";s:33:\"Rendered Termine della tassonomia\";s:4:\"help\";s:84:\"The Termine della tassonomia of the current relationship rendered using a view mode.\";s:5:\"field\";a:3:{s:7:\"handler\";s:33:\"entity_views_handler_field_entity\";s:4:\"type\";s:13:\"taxonomy_term\";s:10:\"real field\";s:13:\"entity object\";}}s:5:\"table\";a:3:{s:4:\"join\";a:3:{s:20:\"entity_taxonomy_term\";a:1:{s:10:\"left_table\";s:20:\"entity_taxonomy_term\";}s:26:\"views_entity_taxonomy_term\";a:1:{s:10:\"left_table\";s:26:\"views_entity_taxonomy_term\";}s:18:\"taxonomy_term_data\";a:1:{s:10:\"left_table\";s:18:\"taxonomy_term_data\";}}s:11:\"entity type\";s:13:\"taxonomy_term\";s:5:\"group\";s:24:\"Termine della tassonomia\";}}s:14:\"entity_comment\";a:17:{s:5:\"table\";a:2:{s:5:\"group\";s:8:\"Commento\";s:11:\"entity type\";s:7:\"comment\";}s:3:\"cid\";a:3:{s:5:\"title\";s:11:\"ID commento\";s:4:\"help\";s:26:\"L\'ID univoco del commento.\";s:5:\"field\";a:2:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"integer\";}}s:8:\"hostname\";a:3:{s:5:\"title\";s:12:\"Indirizzo IP\";s:4:\"help\";s:65:\"L\'indirizzo IP del computer da cui il commento è stato inserito.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:4:\"text\";}}s:4:\"name\";a:3:{s:5:\"title\";s:4:\"Nome\";s:4:\"help\";s:42:\"Il nome lasciato dall\'autore del commento.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:4:\"text\";}}s:4:\"mail\";a:3:{s:5:\"title\";s:16:\"Indirizzo e-mail\";s:4:\"help\";s:53:\"L\'indirizzo e-mail lasciato dall\'autore del commento.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:4:\"text\";}}s:8:\"homepage\";a:3:{s:5:\"title\";s:9:\"Home page\";s:4:\"help\";s:56:\"L\'URL della home page lasciato dall\'autore del commento.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:4:\"text\";}}s:7:\"subject\";a:3:{s:5:\"title\";s:7:\"Oggetto\";s:4:\"help\";s:27:\"The subject of the comment.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:4:\"text\";}}s:3:\"url\";a:3:{s:5:\"title\";s:3:\"URL\";s:4:\"help\";s:19:\"L\'URL del commento.\";s:5:\"field\";a:2:{s:7:\"handler\";s:30:\"entity_views_handler_field_uri\";s:4:\"type\";s:3:\"uri\";}}s:8:\"edit_url\";a:3:{s:5:\"title\";s:12:\"Modifica URL\";s:4:\"help\";s:44:\"L\'URL della pagina di modifica del commento.\";s:5:\"field\";a:2:{s:7:\"handler\";s:30:\"entity_views_handler_field_uri\";s:4:\"type\";s:3:\"uri\";}}s:7:\"created\";a:3:{s:5:\"title\";s:17:\"Data di creazione\";s:4:\"help\";s:52:\"La data nella quale il commento è stato pubblicato.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_date\";s:4:\"type\";s:4:\"date\";}}s:6:\"parent\";a:4:{s:5:\"title\";s:8:\"Genitore\";s:4:\"help\";s:90:\"Il genitore di questo commento, se il raggruppamento per argomenti dei commenti è attivo.\";s:5:\"field\";a:2:{s:7:\"handler\";s:33:\"entity_views_handler_field_entity\";s:4:\"type\";s:7:\"comment\";}s:12:\"relationship\";a:5:{s:7:\"handler\";s:33:\"entity_views_handler_relationship\";s:4:\"base\";s:14:\"entity_comment\";s:10:\"base field\";s:3:\"cid\";s:18:\"relationship field\";s:6:\"parent\";s:5:\"label\";s:8:\"Genitore\";}}s:4:\"node\";a:4:{s:5:\"title\";s:4:\"Nodo\";s:4:\"help\";s:19:\"Il nodo commentato.\";s:5:\"field\";a:2:{s:7:\"handler\";s:33:\"entity_views_handler_field_entity\";s:4:\"type\";s:4:\"node\";}s:12:\"relationship\";a:5:{s:7:\"handler\";s:33:\"entity_views_handler_relationship\";s:4:\"base\";s:11:\"entity_node\";s:10:\"base field\";s:3:\"nid\";s:18:\"relationship field\";s:4:\"node\";s:5:\"label\";s:4:\"Nodo\";}}s:6:\"author\";a:4:{s:5:\"title\";s:6:\"Autore\";s:4:\"help\";s:26:\"The author of the comment.\";s:5:\"field\";a:2:{s:7:\"handler\";s:33:\"entity_views_handler_field_entity\";s:4:\"type\";s:4:\"user\";}s:12:\"relationship\";a:5:{s:7:\"handler\";s:33:\"entity_views_handler_relationship\";s:4:\"base\";s:11:\"entity_user\";s:10:\"base field\";s:3:\"uid\";s:18:\"relationship field\";s:6:\"author\";s:5:\"label\";s:6:\"Autore\";}}s:6:\"status\";a:3:{s:5:\"title\";s:5:\"Stato\";s:4:\"help\";s:48:\"Whether the comment is published or unpublished.\";s:5:\"field\";a:3:{s:7:\"handler\";s:34:\"entity_views_handler_field_options\";s:4:\"type\";s:7:\"integer\";s:16:\"options callback\";a:2:{s:8:\"function\";s:35:\"entity_metadata_status_options_list\";s:4:\"info\";a:8:{s:5:\"label\";s:5:\"Stato\";s:11:\"description\";s:48:\"Whether the comment is published or unpublished.\";s:15:\"setter callback\";s:28:\"entity_property_verbatim_set\";s:4:\"type\";s:7:\"integer\";s:12:\"options list\";s:35:\"entity_metadata_status_options_list\";s:15:\"access callback\";s:41:\"entity_metadata_comment_properties_access\";s:12:\"schema field\";s:6:\"status\";s:15:\"getter callback\";s:28:\"entity_property_verbatim_get\";}}}}s:12:\"comment_body\";a:3:{s:5:\"title\";s:18:\"The main body text\";s:4:\"help\";s:26:\"(No information available)\";s:5:\"field\";a:6:{s:7:\"handler\";s:32:\"entity_views_handler_field_field\";s:4:\"type\";s:14:\"text_formatted\";s:10:\"field_name\";s:12:\"comment_body\";s:13:\"entity_tables\";a:0:{}s:11:\"entity type\";s:7:\"comment\";s:11:\"is revision\";b:0;}}s:18:\"comment_body_value\";a:4:{s:5:\"title\";s:27:\"The main body text » Testo\";s:4:\"help\";s:26:\"(No information available)\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:4:\"text\";}s:10:\"real field\";s:18:\"comment_body:value\";}s:19:\"comment_body_format\";a:4:{s:5:\"title\";s:39:\"The main body text » Formato del testo\";s:4:\"help\";s:26:\"(No information available)\";s:5:\"field\";a:3:{s:7:\"handler\";s:34:\"entity_views_handler_field_options\";s:4:\"type\";s:5:\"token\";s:16:\"options callback\";a:2:{s:8:\"function\";s:34:\"entity_metadata_field_text_formats\";s:4:\"info\";a:6:{s:4:\"type\";s:5:\"token\";s:5:\"label\";s:17:\"Formato del testo\";s:12:\"options list\";s:34:\"entity_metadata_field_text_formats\";s:15:\"getter callback\";s:28:\"entity_property_verbatim_get\";s:15:\"setter callback\";s:28:\"entity_property_verbatim_set\";s:18:\"setter permissions\";s:18:\"administer filters\";}}}s:10:\"real field\";s:19:\"comment_body:format\";}}s:20:\"views_entity_comment\";a:2:{s:15:\"rendered_entity\";a:3:{s:5:\"title\";s:17:\"Rendered Commento\";s:4:\"help\";s:68:\"The Commento of the current relationship rendered using a view mode.\";s:5:\"field\";a:3:{s:7:\"handler\";s:33:\"entity_views_handler_field_entity\";s:4:\"type\";s:7:\"comment\";s:10:\"real field\";s:13:\"entity object\";}}s:5:\"table\";a:3:{s:4:\"join\";a:3:{s:7:\"comment\";a:1:{s:10:\"left_table\";s:7:\"comment\";}s:14:\"entity_comment\";a:1:{s:10:\"left_table\";s:14:\"entity_comment\";}s:20:\"views_entity_comment\";a:1:{s:10:\"left_table\";s:20:\"views_entity_comment\";}}s:11:\"entity type\";s:7:\"comment\";s:5:\"group\";s:8:\"Commento\";}}s:23:\"entity_i18n_translation\";a:1:{s:5:\"table\";a:2:{s:5:\"group\";s:15:\"Translation set\";s:11:\"entity type\";s:16:\"i18n_translation\";}}s:29:\"views_entity_i18n_translation\";a:1:{s:5:\"table\";a:3:{s:4:\"join\";a:2:{s:23:\"entity_i18n_translation\";a:1:{s:10:\"left_table\";s:23:\"entity_i18n_translation\";}s:29:\"views_entity_i18n_translation\";a:1:{s:10:\"left_table\";s:29:\"views_entity_i18n_translation\";}}s:11:\"entity type\";s:16:\"i18n_translation\";s:5:\"group\";s:15:\"Translation set\";}}s:11:\"entity_file\";a:8:{s:5:\"table\";a:2:{s:5:\"group\";s:4:\"File\";s:11:\"entity type\";s:4:\"file\";}s:3:\"fid\";a:3:{s:5:\"title\";s:7:\"ID file\";s:4:\"help\";s:30:\"L\'ID univoco del file caricato\";s:5:\"field\";a:2:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"integer\";}}s:4:\"name\";a:3:{s:5:\"title\";s:13:\"Nome del file\";s:4:\"help\";s:27:\"Il nome del file sul disco.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:4:\"text\";}}s:4:\"mime\";a:3:{s:5:\"title\";s:9:\"Tipo MIME\";s:4:\"help\";s:22:\"Il tipo MIME del file.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:4:\"text\";}}s:4:\"size\";a:3:{s:5:\"title\";s:15:\"Dimensione file\";s:4:\"help\";s:35:\"The size of the file, in kilobytes.\";s:5:\"field\";a:2:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"integer\";}}s:3:\"url\";a:3:{s:5:\"title\";s:3:\"URL\";s:4:\"help\";s:35:\"L\'URL del file accessibile dal web.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:4:\"text\";}}s:9:\"timestamp\";a:3:{s:5:\"title\";s:9:\"Timestamp\";s:4:\"help\";s:36:\"La data di ultima modifica del file.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_date\";s:4:\"type\";s:4:\"date\";}}s:5:\"owner\";a:4:{s:5:\"title\";s:6:\"Autore\";s:4:\"help\";s:43:\"L\'utente che ha caricato il file originale.\";s:5:\"field\";a:2:{s:7:\"handler\";s:33:\"entity_views_handler_field_entity\";s:4:\"type\";s:4:\"user\";}s:12:\"relationship\";a:5:{s:7:\"handler\";s:33:\"entity_views_handler_relationship\";s:4:\"base\";s:11:\"entity_user\";s:10:\"base field\";s:3:\"uid\";s:18:\"relationship field\";s:5:\"owner\";s:5:\"label\";s:6:\"Autore\";}}}s:17:\"views_entity_file\";a:1:{s:5:\"table\";a:3:{s:4:\"join\";a:3:{s:11:\"entity_file\";a:1:{s:10:\"left_table\";s:11:\"entity_file\";}s:17:\"views_entity_file\";a:1:{s:10:\"left_table\";s:17:\"views_entity_file\";}s:12:\"file_managed\";a:1:{s:10:\"left_table\";s:12:\"file_managed\";}}s:11:\"entity type\";s:4:\"file\";s:5:\"group\";s:4:\"File\";}}s:26:\"entity_taxonomy_vocabulary\";a:6:{s:5:\"table\";a:2:{s:5:\"group\";s:28:\"Vocabolario della tassonomia\";s:11:\"entity type\";s:19:\"taxonomy_vocabulary\";}s:3:\"vid\";a:3:{s:5:\"title\";s:14:\"ID vocabolario\";s:4:\"help\";s:58:\"L\'identificativo univoco del vocabolario della tassonomia.\";s:5:\"field\";a:2:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"integer\";}}s:4:\"name\";a:3:{s:5:\"title\";s:4:\"Nome\";s:4:\"help\";s:41:\"Il nome del vocabolario della tassonomia.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:4:\"text\";}}s:12:\"machine_name\";a:3:{s:5:\"title\";s:19:\"Nome ad uso interno\";s:4:\"help\";s:44:\"The machine name of the taxonomy vocabulary.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:5:\"token\";}}s:11:\"description\";a:3:{s:5:\"title\";s:11:\"Descrizione\";s:4:\"help\";s:58:\"La descrizione opzionale del vocabolario della tassonomia.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:4:\"text\";}}s:10:\"term_count\";a:3:{s:5:\"title\";s:17:\"Conteggio termini\";s:4:\"help\";s:64:\"Il numero dei termini appartenenti al vocabolario di tassonomia.\";s:5:\"field\";a:2:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"integer\";}}}s:32:\"views_entity_taxonomy_vocabulary\";a:1:{s:5:\"table\";a:3:{s:4:\"join\";a:2:{s:26:\"entity_taxonomy_vocabulary\";a:1:{s:10:\"left_table\";s:26:\"entity_taxonomy_vocabulary\";}s:32:\"views_entity_taxonomy_vocabulary\";a:1:{s:10:\"left_table\";s:32:\"views_entity_taxonomy_vocabulary\";}}s:11:\"entity type\";s:19:\"taxonomy_vocabulary\";s:5:\"group\";s:28:\"Vocabolario della tassonomia\";}}s:11:\"entity_user\";a:13:{s:5:\"table\";a:2:{s:5:\"group\";s:6:\"Utente\";s:11:\"entity type\";s:4:\"user\";}s:3:\"uid\";a:3:{s:5:\"title\";s:9:\"ID utente\";s:4:\"help\";s:32:\"L\'ID univoco del profilo utente.\";s:5:\"field\";a:2:{s:7:\"handler\";s:34:\"entity_views_handler_field_numeric\";s:4:\"type\";s:7:\"integer\";}}s:4:\"name\";a:3:{s:5:\"title\";s:4:\"Nome\";s:4:\"help\";s:41:\"Il nome di accesso per il profilo utente.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:4:\"text\";}}s:4:\"mail\";a:3:{s:5:\"title\";s:6:\"E-mail\";s:4:\"help\";s:45:\"L\'indirizzo email abbinato al profilo utente.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:4:\"text\";}}s:3:\"url\";a:3:{s:5:\"title\";s:3:\"URL\";s:4:\"help\";s:38:\"L\'URL della pagina del profilo utente.\";s:5:\"field\";a:2:{s:7:\"handler\";s:30:\"entity_views_handler_field_uri\";s:4:\"type\";s:3:\"uri\";}}s:8:\"edit_url\";a:3:{s:5:\"title\";s:12:\"Modifica URL\";s:4:\"help\";s:33:\"The url of the account edit page.\";s:5:\"field\";a:2:{s:7:\"handler\";s:30:\"entity_views_handler_field_uri\";s:4:\"type\";s:3:\"uri\";}}s:11:\"last_access\";a:3:{s:5:\"title\";s:14:\"Ultimo accesso\";s:4:\"help\";s:41:\"The date the user last accessed the site.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_date\";s:4:\"type\";s:4:\"date\";}}s:10:\"last_login\";a:3:{s:5:\"title\";s:12:\"Ultimo login\";s:4:\"help\";s:57:\"La data dell\'ultimo accesso al sito da parte dell\'utente.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_date\";s:4:\"type\";s:4:\"date\";}}s:7:\"created\";a:3:{s:5:\"title\";s:6:\"Creato\";s:4:\"help\";s:40:\"La data di creazione del profilo utente.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_date\";s:4:\"type\";s:4:\"date\";}}s:5:\"roles\";a:3:{s:5:\"title\";s:10:\"User roles\";s:4:\"help\";s:22:\"The roles of the user.\";s:5:\"field\";a:3:{s:7:\"handler\";s:34:\"entity_views_handler_field_options\";s:4:\"type\";s:13:\"list<integer>\";s:16:\"options callback\";a:2:{s:8:\"function\";s:26:\"entity_metadata_user_roles\";s:4:\"info\";a:7:{s:5:\"label\";s:10:\"User roles\";s:11:\"description\";s:22:\"The roles of the user.\";s:4:\"type\";s:13:\"list<integer>\";s:15:\"getter callback\";s:35:\"entity_metadata_user_get_properties\";s:15:\"setter callback\";s:35:\"entity_metadata_user_set_properties\";s:12:\"options list\";s:26:\"entity_metadata_user_roles\";s:15:\"access callback\";s:38:\"entity_metadata_user_properties_access\";}}}}s:6:\"status\";a:3:{s:5:\"title\";s:5:\"Stato\";s:4:\"help\";s:38:\"Whether the user is active or blocked.\";s:5:\"field\";a:3:{s:7:\"handler\";s:34:\"entity_views_handler_field_options\";s:4:\"type\";s:7:\"integer\";s:16:\"options callback\";a:2:{s:8:\"function\";s:40:\"entity_metadata_user_status_options_list\";s:4:\"info\";a:8:{s:5:\"label\";s:5:\"Stato\";s:11:\"description\";s:38:\"Whether the user is active or blocked.\";s:15:\"setter callback\";s:28:\"entity_property_verbatim_set\";s:4:\"type\";s:7:\"integer\";s:12:\"options list\";s:40:\"entity_metadata_user_status_options_list\";s:15:\"access callback\";s:38:\"entity_metadata_user_properties_access\";s:12:\"schema field\";s:6:\"status\";s:15:\"getter callback\";s:28:\"entity_property_verbatim_get\";}}}}s:5:\"theme\";a:3:{s:5:\"title\";s:16:\"Tema predefinito\";s:4:\"help\";s:25:\"The user\'s default theme.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"entity_views_handler_field_text\";s:4:\"type\";s:4:\"text\";}}s:8:\"language\";a:3:{s:5:\"title\";s:6:\"Lingua\";s:4:\"help\";s:105:\"La lingua di default di questo account per le e-mail e la lingua preferita per la presentazione del sito.\";s:5:\"field\";a:3:{s:7:\"handler\";s:34:\"entity_views_handler_field_options\";s:4:\"type\";s:5:\"token\";s:16:\"options callback\";a:2:{s:8:\"function\";s:29:\"entity_metadata_language_list\";s:4:\"info\";a:8:{s:5:\"label\";s:6:\"Lingua\";s:11:\"description\";s:105:\"La lingua di default di questo account per le e-mail e la lingua preferita per la presentazione del sito.\";s:4:\"type\";s:5:\"token\";s:15:\"getter callback\";s:40:\"entity_metadata_locale_get_user_language\";s:15:\"setter callback\";s:28:\"entity_property_verbatim_set\";s:12:\"options list\";s:29:\"entity_metadata_language_list\";s:12:\"schema field\";s:8:\"language\";s:17:\"setter permission\";s:16:\"administer users\";}}}}}s:17:\"views_entity_user\";a:2:{s:15:\"rendered_entity\";a:3:{s:5:\"title\";s:15:\"Rendered Utente\";s:4:\"help\";s:66:\"The Utente of the current relationship rendered using a view mode.\";s:5:\"field\";a:3:{s:7:\"handler\";s:33:\"entity_views_handler_field_entity\";s:4:\"type\";s:4:\"user\";s:10:\"real field\";s:13:\"entity object\";}}s:5:\"table\";a:3:{s:4:\"join\";a:3:{s:11:\"entity_user\";a:1:{s:10:\"left_table\";s:11:\"entity_user\";}s:17:\"views_entity_user\";a:1:{s:10:\"left_table\";s:17:\"views_entity_user\";}s:5:\"users\";a:1:{s:10:\"left_table\";s:5:\"users\";}}s:11:\"entity type\";s:4:\"user\";s:5:\"group\";s:6:\"Utente\";}}s:14:\"entity__global\";a:2:{s:5:\"table\";a:2:{s:5:\"group\";s:6:\"Entity\";s:4:\"join\";a:1:{s:7:\"#global\";a:0:{}}}s:6:\"entity\";a:3:{s:5:\"title\";s:15:\"Rendered entity\";s:4:\"help\";s:32:\"Displays a single chosen entity.\";s:4:\"area\";a:1:{s:7:\"handler\";s:32:\"entity_views_handler_area_entity\";}}}s:36:\"field_data_field_photo_moorings_2010\";a:8:{s:5:\"table\";a:1:{s:4:\"join\";a:1:{s:4:\"node\";a:3:{s:10:\"left_field\";s:3:\"nid\";s:5:\"field\";s:9:\"entity_id\";s:5:\"extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}}s:9:\"entity_id\";a:1:{s:5:\"field\";a:1:{s:8:\"moved to\";a:2:{i:0;s:36:\"field_data_field_photo_moorings_2010\";i:1;s:25:\"field_photo_moorings_2010\";}}}s:25:\"field_photo_moorings_2010\";a:5:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:19:\"Photo Moorings 2010\";s:11:\"title short\";s:19:\"Photo Moorings 2010\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2010.\";s:5:\"field\";a:9:{s:5:\"table\";s:36:\"field_data_field_photo_moorings_2010\";s:7:\"handler\";s:25:\"views_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:10:\"real field\";s:29:\"field_photo_moorings_2010_fid\";s:17:\"additional fields\";a:8:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:29:\"field_photo_moorings_2010_fid\";i:4;s:29:\"field_photo_moorings_2010_alt\";i:5;s:31:\"field_photo_moorings_2010_title\";i:6;s:31:\"field_photo_moorings_2010_width\";i:7;s:32:\"field_photo_moorings_2010_height\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:0;}}s:29:\"field_photo_moorings_2010_fid\";a:8:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:51:\"Photo Moorings 2010 (field_photo_moorings_2010:fid)\";s:11:\"title short\";s:23:\"Photo Moorings 2010:fid\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2010.\";s:8:\"argument\";a:6:{s:5:\"field\";s:29:\"field_photo_moorings_2010_fid\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2010\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:29:\"field_photo_moorings_2010_fid\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2010\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:29:\"field_photo_moorings_2010_fid\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2010\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";}s:12:\"relationship\";a:4:{s:7:\"handler\";s:26:\"views_handler_relationship\";s:4:\"base\";s:12:\"file_managed\";s:10:\"base field\";s:3:\"fid\";s:5:\"label\";s:36:\"image from field_photo_moorings_2010\";}}s:29:\"field_photo_moorings_2010_alt\";a:7:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:51:\"Photo Moorings 2010 (field_photo_moorings_2010:alt)\";s:11:\"title short\";s:23:\"Photo Moorings 2010:alt\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2010.\";s:8:\"argument\";a:6:{s:5:\"field\";s:29:\"field_photo_moorings_2010_alt\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2010\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:29:\"field_photo_moorings_2010_alt\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2010\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:29:\"field_photo_moorings_2010_alt\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2010\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";}}s:31:\"field_photo_moorings_2010_title\";a:7:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:53:\"Photo Moorings 2010 (field_photo_moorings_2010:title)\";s:11:\"title short\";s:25:\"Photo Moorings 2010:title\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2010.\";s:8:\"argument\";a:6:{s:5:\"field\";s:31:\"field_photo_moorings_2010_title\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2010\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:31:\"field_photo_moorings_2010_title\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2010\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:31:\"field_photo_moorings_2010_title\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2010\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";}}s:31:\"field_photo_moorings_2010_width\";a:7:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:53:\"Photo Moorings 2010 (field_photo_moorings_2010:width)\";s:11:\"title short\";s:25:\"Photo Moorings 2010:width\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2010.\";s:8:\"argument\";a:6:{s:5:\"field\";s:31:\"field_photo_moorings_2010_width\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2010\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:31:\"field_photo_moorings_2010_width\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2010\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:31:\"field_photo_moorings_2010_width\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2010\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";}}s:32:\"field_photo_moorings_2010_height\";a:7:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:54:\"Photo Moorings 2010 (field_photo_moorings_2010:height)\";s:11:\"title short\";s:26:\"Photo Moorings 2010:height\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2010.\";s:8:\"argument\";a:6:{s:5:\"field\";s:32:\"field_photo_moorings_2010_height\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2010\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:32:\"field_photo_moorings_2010_height\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2010\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:32:\"field_photo_moorings_2010_height\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2010\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";}}}s:40:\"field_revision_field_photo_moorings_2010\";a:8:{s:5:\"table\";a:1:{s:4:\"join\";a:1:{s:13:\"node_revision\";a:3:{s:10:\"left_field\";s:3:\"vid\";s:5:\"field\";s:11:\"revision_id\";s:5:\"extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}}s:11:\"revision_id\";a:1:{s:5:\"field\";a:1:{s:8:\"moved to\";a:2:{i:0;s:40:\"field_revision_field_photo_moorings_2010\";i:1;s:37:\"field_photo_moorings_2010-revision_id\";}}}s:37:\"field_photo_moorings_2010-revision_id\";a:5:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:19:\"Photo Moorings 2010\";s:11:\"title short\";s:19:\"Photo Moorings 2010\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2010.\";s:5:\"field\";a:9:{s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2010\";s:7:\"handler\";s:25:\"views_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:10:\"real field\";s:41:\"field_photo_moorings_2010-revision_id_fid\";s:17:\"additional fields\";a:8:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:29:\"field_photo_moorings_2010_fid\";i:4;s:29:\"field_photo_moorings_2010_alt\";i:5;s:31:\"field_photo_moorings_2010_title\";i:6;s:31:\"field_photo_moorings_2010_width\";i:7;s:32:\"field_photo_moorings_2010_height\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:1;}}s:29:\"field_photo_moorings_2010_fid\";a:8:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:51:\"Photo Moorings 2010 (field_photo_moorings_2010:fid)\";s:11:\"title short\";s:23:\"Photo Moorings 2010:fid\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2010.\";s:8:\"argument\";a:6:{s:5:\"field\";s:29:\"field_photo_moorings_2010_fid\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2010\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:29:\"field_photo_moorings_2010_fid\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2010\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:29:\"field_photo_moorings_2010_fid\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2010\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";}s:12:\"relationship\";a:4:{s:7:\"handler\";s:26:\"views_handler_relationship\";s:4:\"base\";s:12:\"file_managed\";s:10:\"base field\";s:3:\"fid\";s:5:\"label\";s:36:\"image from field_photo_moorings_2010\";}}s:29:\"field_photo_moorings_2010_alt\";a:7:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:51:\"Photo Moorings 2010 (field_photo_moorings_2010:alt)\";s:11:\"title short\";s:23:\"Photo Moorings 2010:alt\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2010.\";s:8:\"argument\";a:6:{s:5:\"field\";s:29:\"field_photo_moorings_2010_alt\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2010\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:29:\"field_photo_moorings_2010_alt\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2010\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:29:\"field_photo_moorings_2010_alt\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2010\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";}}s:31:\"field_photo_moorings_2010_title\";a:7:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:53:\"Photo Moorings 2010 (field_photo_moorings_2010:title)\";s:11:\"title short\";s:25:\"Photo Moorings 2010:title\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2010.\";s:8:\"argument\";a:6:{s:5:\"field\";s:31:\"field_photo_moorings_2010_title\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2010\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:31:\"field_photo_moorings_2010_title\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2010\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:31:\"field_photo_moorings_2010_title\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2010\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";}}s:31:\"field_photo_moorings_2010_width\";a:7:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:53:\"Photo Moorings 2010 (field_photo_moorings_2010:width)\";s:11:\"title short\";s:25:\"Photo Moorings 2010:width\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2010.\";s:8:\"argument\";a:6:{s:5:\"field\";s:31:\"field_photo_moorings_2010_width\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2010\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:31:\"field_photo_moorings_2010_width\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2010\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:31:\"field_photo_moorings_2010_width\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2010\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";}}s:32:\"field_photo_moorings_2010_height\";a:7:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:54:\"Photo Moorings 2010 (field_photo_moorings_2010:height)\";s:11:\"title short\";s:26:\"Photo Moorings 2010:height\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2010.\";s:8:\"argument\";a:6:{s:5:\"field\";s:32:\"field_photo_moorings_2010_height\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2010\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:32:\"field_photo_moorings_2010_height\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2010\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:32:\"field_photo_moorings_2010_height\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2010\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2010_fid\";i:1;s:29:\"field_photo_moorings_2010_alt\";i:2;s:31:\"field_photo_moorings_2010_title\";i:3;s:31:\"field_photo_moorings_2010_width\";i:4;s:32:\"field_photo_moorings_2010_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";}}}s:22:\"field_data_title_field\";a:7:{s:5:\"table\";a:1:{s:4:\"join\";a:1:{s:4:\"node\";a:3:{s:10:\"left_field\";s:3:\"nid\";s:5:\"field\";s:9:\"entity_id\";s:5:\"extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}}s:9:\"entity_id\";a:1:{s:5:\"field\";a:1:{s:8:\"moved to\";a:2:{i:0;s:22:\"field_data_title_field\";i:1;s:11:\"title_field\";}}}s:11:\"title_field\";a:5:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:5:\"Title\";s:11:\"title short\";s:5:\"Title\";s:4:\"help\";s:160:\"Appears in: node:photos, node:article, node:page, node:forum, node:mooring, node:openlayers_example_content, node:photo_moorings_2012, node:photo_moorings_2014.\";s:5:\"field\";a:9:{s:5:\"table\";s:22:\"field_data_title_field\";s:7:\"handler\";s:25:\"views_handler_title_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:11:\"title_field\";s:10:\"real field\";s:17:\"title_field_value\";s:17:\"additional fields\";a:5:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:17:\"title_field_value\";i:4;s:18:\"title_field_format\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:0;}}s:17:\"title_field_value\";a:7:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:19:\"Title (title_field)\";s:11:\"title short\";s:5:\"Title\";s:4:\"help\";s:160:\"Appears in: node:photos, node:article, node:page, node:forum, node:mooring, node:openlayers_example_content, node:photo_moorings_2012, node:photo_moorings_2014.\";s:8:\"argument\";a:6:{s:5:\"field\";s:17:\"title_field_value\";s:5:\"table\";s:22:\"field_data_title_field\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:2:{i:0;s:17:\"title_field_value\";i:1;s:18:\"title_field_format\";}s:10:\"field_name\";s:11:\"title_field\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:17:\"title_field_value\";s:5:\"table\";s:22:\"field_data_title_field\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:2:{i:0;s:17:\"title_field_value\";i:1;s:18:\"title_field_format\";}s:10:\"field_name\";s:11:\"title_field\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:17:\"title_field_value\";s:5:\"table\";s:22:\"field_data_title_field\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:2:{i:0;s:17:\"title_field_value\";i:1;s:18:\"title_field_format\";}s:10:\"field_name\";s:11:\"title_field\";}}s:8:\"language\";a:8:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:28:\"Title (title_field:language)\";s:11:\"title short\";s:14:\"Title:language\";s:4:\"help\";s:171:\"Language - Appears in: node:photos, node:article, node:page, node:forum, node:mooring, node:openlayers_example_content, node:photo_moorings_2012, node:photo_moorings_2014.\";s:5:\"field\";a:1:{s:7:\"handler\";s:35:\"views_handler_field_locale_language\";}s:8:\"argument\";a:6:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:22:\"field_data_title_field\";s:7:\"handler\";s:38:\"views_handler_argument_locale_language\";s:17:\"additional fields\";a:2:{i:0;s:17:\"title_field_value\";i:1;s:18:\"title_field_format\";}s:16:\"empty field name\";s:10:\"<No value>\";s:10:\"field_name\";s:11:\"title_field\";}s:6:\"filter\";a:6:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:22:\"field_data_title_field\";s:7:\"handler\";s:36:\"views_handler_filter_locale_language\";s:17:\"additional fields\";a:2:{i:0;s:17:\"title_field_value\";i:1;s:18:\"title_field_format\";}s:10:\"field_name\";s:11:\"title_field\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:22:\"field_data_title_field\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:2:{i:0;s:17:\"title_field_value\";i:1;s:18:\"title_field_format\";}s:10:\"field_name\";s:11:\"title_field\";}}s:18:\"title_field_format\";a:7:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:26:\"Title (title_field:format)\";s:11:\"title short\";s:12:\"Title:format\";s:4:\"help\";s:160:\"Appears in: node:photos, node:article, node:page, node:forum, node:mooring, node:openlayers_example_content, node:photo_moorings_2012, node:photo_moorings_2014.\";s:8:\"argument\";a:6:{s:5:\"field\";s:18:\"title_field_format\";s:5:\"table\";s:22:\"field_data_title_field\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:2:{i:0;s:17:\"title_field_value\";i:1;s:18:\"title_field_format\";}s:10:\"field_name\";s:11:\"title_field\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:18:\"title_field_format\";s:5:\"table\";s:22:\"field_data_title_field\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:2:{i:0;s:17:\"title_field_value\";i:1;s:18:\"title_field_format\";}s:10:\"field_name\";s:11:\"title_field\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:18:\"title_field_format\";s:5:\"table\";s:22:\"field_data_title_field\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:2:{i:0;s:17:\"title_field_value\";i:1;s:18:\"title_field_format\";}s:10:\"field_name\";s:11:\"title_field\";}}s:14:\"title_field_et\";a:5:{s:5:\"group\";s:18:\"Entity translation\";s:5:\"title\";s:17:\"Title: translated\";s:11:\"title short\";s:5:\"Title\";s:4:\"help\";s:218:\"Appears in: node:photos, node:article, node:page, node:forum, node:mooring, node:openlayers_example_content, node:photo_moorings_2012, node:photo_moorings_2014. Show the field Title translated into a specified language\";s:5:\"field\";a:9:{s:5:\"table\";s:22:\"field_data_title_field\";s:7:\"handler\";s:38:\"entity_translation_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:11:\"title_field\";s:10:\"real field\";s:17:\"title_field_value\";s:17:\"additional fields\";a:5:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:17:\"title_field_value\";i:4;s:18:\"title_field_format\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:0;}}}s:26:\"field_revision_title_field\";a:6:{s:5:\"table\";a:1:{s:4:\"join\";a:1:{s:13:\"node_revision\";a:3:{s:10:\"left_field\";s:3:\"vid\";s:5:\"field\";s:11:\"revision_id\";s:5:\"extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}}s:11:\"revision_id\";a:1:{s:5:\"field\";a:1:{s:8:\"moved to\";a:2:{i:0;s:26:\"field_revision_title_field\";i:1;s:23:\"title_field-revision_id\";}}}s:23:\"title_field-revision_id\";a:5:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:5:\"Title\";s:11:\"title short\";s:5:\"Title\";s:4:\"help\";s:160:\"Appears in: node:photos, node:article, node:page, node:forum, node:mooring, node:openlayers_example_content, node:photo_moorings_2012, node:photo_moorings_2014.\";s:5:\"field\";a:9:{s:5:\"table\";s:26:\"field_revision_title_field\";s:7:\"handler\";s:25:\"views_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:11:\"title_field\";s:10:\"real field\";s:29:\"title_field-revision_id_value\";s:17:\"additional fields\";a:5:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:17:\"title_field_value\";i:4;s:18:\"title_field_format\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:1;}}s:17:\"title_field_value\";a:7:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:19:\"Title (title_field)\";s:11:\"title short\";s:5:\"Title\";s:4:\"help\";s:160:\"Appears in: node:photos, node:article, node:page, node:forum, node:mooring, node:openlayers_example_content, node:photo_moorings_2012, node:photo_moorings_2014.\";s:8:\"argument\";a:6:{s:5:\"field\";s:17:\"title_field_value\";s:5:\"table\";s:26:\"field_revision_title_field\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:2:{i:0;s:17:\"title_field_value\";i:1;s:18:\"title_field_format\";}s:10:\"field_name\";s:11:\"title_field\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:17:\"title_field_value\";s:5:\"table\";s:26:\"field_revision_title_field\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:2:{i:0;s:17:\"title_field_value\";i:1;s:18:\"title_field_format\";}s:10:\"field_name\";s:11:\"title_field\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:17:\"title_field_value\";s:5:\"table\";s:26:\"field_revision_title_field\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:2:{i:0;s:17:\"title_field_value\";i:1;s:18:\"title_field_format\";}s:10:\"field_name\";s:11:\"title_field\";}}s:8:\"language\";a:8:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:28:\"Title (title_field:language)\";s:11:\"title short\";s:14:\"Title:language\";s:4:\"help\";s:171:\"Language - Appears in: node:photos, node:article, node:page, node:forum, node:mooring, node:openlayers_example_content, node:photo_moorings_2012, node:photo_moorings_2014.\";s:5:\"field\";a:1:{s:7:\"handler\";s:35:\"views_handler_field_locale_language\";}s:8:\"argument\";a:6:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:26:\"field_revision_title_field\";s:7:\"handler\";s:38:\"views_handler_argument_locale_language\";s:17:\"additional fields\";a:2:{i:0;s:17:\"title_field_value\";i:1;s:18:\"title_field_format\";}s:16:\"empty field name\";s:10:\"<No value>\";s:10:\"field_name\";s:11:\"title_field\";}s:6:\"filter\";a:6:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:26:\"field_revision_title_field\";s:7:\"handler\";s:36:\"views_handler_filter_locale_language\";s:17:\"additional fields\";a:2:{i:0;s:17:\"title_field_value\";i:1;s:18:\"title_field_format\";}s:10:\"field_name\";s:11:\"title_field\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:26:\"field_revision_title_field\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:2:{i:0;s:17:\"title_field_value\";i:1;s:18:\"title_field_format\";}s:10:\"field_name\";s:11:\"title_field\";}}s:18:\"title_field_format\";a:7:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:26:\"Title (title_field:format)\";s:11:\"title short\";s:12:\"Title:format\";s:4:\"help\";s:160:\"Appears in: node:photos, node:article, node:page, node:forum, node:mooring, node:openlayers_example_content, node:photo_moorings_2012, node:photo_moorings_2014.\";s:8:\"argument\";a:6:{s:5:\"field\";s:18:\"title_field_format\";s:5:\"table\";s:26:\"field_revision_title_field\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:2:{i:0;s:17:\"title_field_value\";i:1;s:18:\"title_field_format\";}s:10:\"field_name\";s:11:\"title_field\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:18:\"title_field_format\";s:5:\"table\";s:26:\"field_revision_title_field\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:2:{i:0;s:17:\"title_field_value\";i:1;s:18:\"title_field_format\";}s:10:\"field_name\";s:11:\"title_field\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:18:\"title_field_format\";s:5:\"table\";s:26:\"field_revision_title_field\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:2:{i:0;s:17:\"title_field_value\";i:1;s:18:\"title_field_format\";}s:10:\"field_name\";s:11:\"title_field\";}}}s:26:\"field_data_taxonomy_forums\";a:4:{s:5:\"table\";a:1:{s:4:\"join\";a:1:{s:4:\"node\";a:3:{s:10:\"left_field\";s:3:\"nid\";s:5:\"field\";s:9:\"entity_id\";s:5:\"extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}}s:9:\"entity_id\";a:1:{s:5:\"field\";a:1:{s:8:\"moved to\";a:2:{i:0;s:26:\"field_data_taxonomy_forums\";i:1;s:15:\"taxonomy_forums\";}}}s:15:\"taxonomy_forums\";a:5:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:6:\"Forums\";s:11:\"title short\";s:6:\"Forums\";s:4:\"help\";s:23:\"Appears in: node:forum.\";s:5:\"field\";a:9:{s:5:\"table\";s:26:\"field_data_taxonomy_forums\";s:7:\"handler\";s:25:\"views_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:15:\"taxonomy_forums\";s:10:\"real field\";s:19:\"taxonomy_forums_tid\";s:17:\"additional fields\";a:4:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:19:\"taxonomy_forums_tid\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:0;}}s:19:\"taxonomy_forums_tid\";a:8:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:24:\"Forums (taxonomy_forums)\";s:11:\"title short\";s:6:\"Forums\";s:4:\"help\";s:23:\"Appears in: node:forum.\";s:8:\"argument\";a:6:{s:5:\"field\";s:19:\"taxonomy_forums_tid\";s:5:\"table\";s:26:\"field_data_taxonomy_forums\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:1:{i:0;s:19:\"taxonomy_forums_tid\";}s:10:\"field_name\";s:15:\"taxonomy_forums\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:7:{s:5:\"field\";s:19:\"taxonomy_forums_tid\";s:5:\"table\";s:26:\"field_data_taxonomy_forums\";s:7:\"handler\";s:34:\"views_handler_filter_term_node_tid\";s:17:\"additional fields\";a:1:{i:0;s:19:\"taxonomy_forums_tid\";}s:10:\"field_name\";s:15:\"taxonomy_forums\";s:11:\"allow empty\";b:1;s:10:\"vocabulary\";s:6:\"forums\";}s:4:\"sort\";a:5:{s:5:\"field\";s:19:\"taxonomy_forums_tid\";s:5:\"table\";s:26:\"field_data_taxonomy_forums\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:1:{i:0;s:19:\"taxonomy_forums_tid\";}s:10:\"field_name\";s:15:\"taxonomy_forums\";}s:12:\"relationship\";a:4:{s:7:\"handler\";s:26:\"views_handler_relationship\";s:4:\"base\";s:18:\"taxonomy_term_data\";s:10:\"base field\";s:3:\"tid\";s:5:\"label\";s:25:\"term from taxonomy_forums\";}}}s:30:\"field_revision_taxonomy_forums\";a:4:{s:5:\"table\";a:1:{s:4:\"join\";a:1:{s:13:\"node_revision\";a:3:{s:10:\"left_field\";s:3:\"vid\";s:5:\"field\";s:11:\"revision_id\";s:5:\"extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}}s:11:\"revision_id\";a:1:{s:5:\"field\";a:1:{s:8:\"moved to\";a:2:{i:0;s:30:\"field_revision_taxonomy_forums\";i:1;s:27:\"taxonomy_forums-revision_id\";}}}s:27:\"taxonomy_forums-revision_id\";a:5:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:6:\"Forums\";s:11:\"title short\";s:6:\"Forums\";s:4:\"help\";s:23:\"Appears in: node:forum.\";s:5:\"field\";a:9:{s:5:\"table\";s:30:\"field_revision_taxonomy_forums\";s:7:\"handler\";s:25:\"views_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:15:\"taxonomy_forums\";s:10:\"real field\";s:31:\"taxonomy_forums-revision_id_tid\";s:17:\"additional fields\";a:4:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:19:\"taxonomy_forums_tid\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:1;}}s:19:\"taxonomy_forums_tid\";a:8:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:24:\"Forums (taxonomy_forums)\";s:11:\"title short\";s:6:\"Forums\";s:4:\"help\";s:23:\"Appears in: node:forum.\";s:8:\"argument\";a:6:{s:5:\"field\";s:19:\"taxonomy_forums_tid\";s:5:\"table\";s:30:\"field_revision_taxonomy_forums\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:1:{i:0;s:19:\"taxonomy_forums_tid\";}s:10:\"field_name\";s:15:\"taxonomy_forums\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:7:{s:5:\"field\";s:19:\"taxonomy_forums_tid\";s:5:\"table\";s:30:\"field_revision_taxonomy_forums\";s:7:\"handler\";s:34:\"views_handler_filter_term_node_tid\";s:17:\"additional fields\";a:1:{i:0;s:19:\"taxonomy_forums_tid\";}s:10:\"field_name\";s:15:\"taxonomy_forums\";s:11:\"allow empty\";b:1;s:10:\"vocabulary\";s:6:\"forums\";}s:4:\"sort\";a:5:{s:5:\"field\";s:19:\"taxonomy_forums_tid\";s:5:\"table\";s:30:\"field_revision_taxonomy_forums\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:1:{i:0;s:19:\"taxonomy_forums_tid\";}s:10:\"field_name\";s:15:\"taxonomy_forums\";}s:12:\"relationship\";a:4:{s:7:\"handler\";s:26:\"views_handler_relationship\";s:4:\"base\";s:18:\"taxonomy_term_data\";s:10:\"base field\";s:3:\"tid\";s:5:\"label\";s:25:\"term from taxonomy_forums\";}}}s:36:\"field_data_field_photo_moorings_2012\";a:10:{s:5:\"table\";a:1:{s:4:\"join\";a:1:{s:4:\"node\";a:3:{s:10:\"left_field\";s:3:\"nid\";s:5:\"field\";s:9:\"entity_id\";s:5:\"extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}}s:9:\"entity_id\";a:1:{s:5:\"field\";a:1:{s:8:\"moved to\";a:2:{i:0;s:36:\"field_data_field_photo_moorings_2012\";i:1;s:25:\"field_photo_moorings_2012\";}}}s:25:\"field_photo_moorings_2012\";a:5:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:19:\"Photo Moorings 2012\";s:11:\"title short\";s:19:\"Photo Moorings 2012\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2012.\";s:5:\"field\";a:9:{s:5:\"table\";s:36:\"field_data_field_photo_moorings_2012\";s:7:\"handler\";s:25:\"views_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:10:\"real field\";s:29:\"field_photo_moorings_2012_fid\";s:17:\"additional fields\";a:8:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:29:\"field_photo_moorings_2012_fid\";i:4;s:29:\"field_photo_moorings_2012_alt\";i:5;s:31:\"field_photo_moorings_2012_title\";i:6;s:31:\"field_photo_moorings_2012_width\";i:7;s:32:\"field_photo_moorings_2012_height\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:0;}}s:29:\"field_photo_moorings_2012_fid\";a:8:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:51:\"Photo Moorings 2012 (field_photo_moorings_2012:fid)\";s:11:\"title short\";s:23:\"Photo Moorings 2012:fid\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2012.\";s:8:\"argument\";a:6:{s:5:\"field\";s:29:\"field_photo_moorings_2012_fid\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2012\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:29:\"field_photo_moorings_2012_fid\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2012\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:29:\"field_photo_moorings_2012_fid\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2012\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";}s:12:\"relationship\";a:4:{s:7:\"handler\";s:26:\"views_handler_relationship\";s:4:\"base\";s:12:\"file_managed\";s:10:\"base field\";s:3:\"fid\";s:5:\"label\";s:36:\"image from field_photo_moorings_2012\";}}s:8:\"language\";a:8:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:56:\"Photo Moorings 2012 (field_photo_moorings_2012:language)\";s:11:\"title short\";s:28:\"Photo Moorings 2012:language\";s:4:\"help\";s:48:\"Language - Appears in: node:photo_moorings_2012.\";s:5:\"field\";a:1:{s:7:\"handler\";s:35:\"views_handler_field_locale_language\";}s:8:\"argument\";a:6:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2012\";s:7:\"handler\";s:38:\"views_handler_argument_locale_language\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:16:\"empty field name\";s:10:\"<No value>\";s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";}s:6:\"filter\";a:6:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2012\";s:7:\"handler\";s:36:\"views_handler_filter_locale_language\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2012\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";}}s:29:\"field_photo_moorings_2012_alt\";a:7:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:51:\"Photo Moorings 2012 (field_photo_moorings_2012:alt)\";s:11:\"title short\";s:23:\"Photo Moorings 2012:alt\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2012.\";s:8:\"argument\";a:6:{s:5:\"field\";s:29:\"field_photo_moorings_2012_alt\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2012\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:29:\"field_photo_moorings_2012_alt\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2012\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:29:\"field_photo_moorings_2012_alt\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2012\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";}}s:31:\"field_photo_moorings_2012_title\";a:7:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:53:\"Photo Moorings 2012 (field_photo_moorings_2012:title)\";s:11:\"title short\";s:25:\"Photo Moorings 2012:title\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2012.\";s:8:\"argument\";a:6:{s:5:\"field\";s:31:\"field_photo_moorings_2012_title\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2012\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:31:\"field_photo_moorings_2012_title\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2012\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:31:\"field_photo_moorings_2012_title\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2012\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";}}s:31:\"field_photo_moorings_2012_width\";a:7:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:53:\"Photo Moorings 2012 (field_photo_moorings_2012:width)\";s:11:\"title short\";s:25:\"Photo Moorings 2012:width\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2012.\";s:8:\"argument\";a:6:{s:5:\"field\";s:31:\"field_photo_moorings_2012_width\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2012\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:31:\"field_photo_moorings_2012_width\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2012\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:31:\"field_photo_moorings_2012_width\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2012\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";}}s:32:\"field_photo_moorings_2012_height\";a:7:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:54:\"Photo Moorings 2012 (field_photo_moorings_2012:height)\";s:11:\"title short\";s:26:\"Photo Moorings 2012:height\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2012.\";s:8:\"argument\";a:6:{s:5:\"field\";s:32:\"field_photo_moorings_2012_height\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2012\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:32:\"field_photo_moorings_2012_height\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2012\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:32:\"field_photo_moorings_2012_height\";s:5:\"table\";s:36:\"field_data_field_photo_moorings_2012\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";}}s:28:\"field_photo_moorings_2012_et\";a:5:{s:5:\"group\";s:18:\"Entity translation\";s:5:\"title\";s:31:\"Photo Moorings 2012: translated\";s:11:\"title short\";s:19:\"Photo Moorings 2012\";s:4:\"help\";s:109:\"Appears in: node:photo_moorings_2012. Show the field Photo Moorings 2012 translated into a specified language\";s:5:\"field\";a:9:{s:5:\"table\";s:36:\"field_data_field_photo_moorings_2012\";s:7:\"handler\";s:38:\"entity_translation_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:10:\"real field\";s:29:\"field_photo_moorings_2012_fid\";s:17:\"additional fields\";a:8:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:29:\"field_photo_moorings_2012_fid\";i:4;s:29:\"field_photo_moorings_2012_alt\";i:5;s:31:\"field_photo_moorings_2012_title\";i:6;s:31:\"field_photo_moorings_2012_width\";i:7;s:32:\"field_photo_moorings_2012_height\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:0;}}}s:40:\"field_revision_field_photo_moorings_2012\";a:9:{s:5:\"table\";a:1:{s:4:\"join\";a:1:{s:13:\"node_revision\";a:3:{s:10:\"left_field\";s:3:\"vid\";s:5:\"field\";s:11:\"revision_id\";s:5:\"extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}}s:11:\"revision_id\";a:1:{s:5:\"field\";a:1:{s:8:\"moved to\";a:2:{i:0;s:40:\"field_revision_field_photo_moorings_2012\";i:1;s:37:\"field_photo_moorings_2012-revision_id\";}}}s:37:\"field_photo_moorings_2012-revision_id\";a:5:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:19:\"Photo Moorings 2012\";s:11:\"title short\";s:19:\"Photo Moorings 2012\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2012.\";s:5:\"field\";a:9:{s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2012\";s:7:\"handler\";s:25:\"views_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:10:\"real field\";s:41:\"field_photo_moorings_2012-revision_id_fid\";s:17:\"additional fields\";a:8:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:29:\"field_photo_moorings_2012_fid\";i:4;s:29:\"field_photo_moorings_2012_alt\";i:5;s:31:\"field_photo_moorings_2012_title\";i:6;s:31:\"field_photo_moorings_2012_width\";i:7;s:32:\"field_photo_moorings_2012_height\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:1;}}s:29:\"field_photo_moorings_2012_fid\";a:8:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:51:\"Photo Moorings 2012 (field_photo_moorings_2012:fid)\";s:11:\"title short\";s:23:\"Photo Moorings 2012:fid\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2012.\";s:8:\"argument\";a:6:{s:5:\"field\";s:29:\"field_photo_moorings_2012_fid\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2012\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:29:\"field_photo_moorings_2012_fid\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2012\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:29:\"field_photo_moorings_2012_fid\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2012\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";}s:12:\"relationship\";a:4:{s:7:\"handler\";s:26:\"views_handler_relationship\";s:4:\"base\";s:12:\"file_managed\";s:10:\"base field\";s:3:\"fid\";s:5:\"label\";s:36:\"image from field_photo_moorings_2012\";}}s:8:\"language\";a:8:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:56:\"Photo Moorings 2012 (field_photo_moorings_2012:language)\";s:11:\"title short\";s:28:\"Photo Moorings 2012:language\";s:4:\"help\";s:48:\"Language - Appears in: node:photo_moorings_2012.\";s:5:\"field\";a:1:{s:7:\"handler\";s:35:\"views_handler_field_locale_language\";}s:8:\"argument\";a:6:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2012\";s:7:\"handler\";s:38:\"views_handler_argument_locale_language\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:16:\"empty field name\";s:10:\"<No value>\";s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";}s:6:\"filter\";a:6:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2012\";s:7:\"handler\";s:36:\"views_handler_filter_locale_language\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2012\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";}}s:29:\"field_photo_moorings_2012_alt\";a:7:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:51:\"Photo Moorings 2012 (field_photo_moorings_2012:alt)\";s:11:\"title short\";s:23:\"Photo Moorings 2012:alt\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2012.\";s:8:\"argument\";a:6:{s:5:\"field\";s:29:\"field_photo_moorings_2012_alt\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2012\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:29:\"field_photo_moorings_2012_alt\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2012\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:29:\"field_photo_moorings_2012_alt\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2012\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";}}s:31:\"field_photo_moorings_2012_title\";a:7:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:53:\"Photo Moorings 2012 (field_photo_moorings_2012:title)\";s:11:\"title short\";s:25:\"Photo Moorings 2012:title\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2012.\";s:8:\"argument\";a:6:{s:5:\"field\";s:31:\"field_photo_moorings_2012_title\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2012\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:31:\"field_photo_moorings_2012_title\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2012\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:31:\"field_photo_moorings_2012_title\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2012\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";}}s:31:\"field_photo_moorings_2012_width\";a:7:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:53:\"Photo Moorings 2012 (field_photo_moorings_2012:width)\";s:11:\"title short\";s:25:\"Photo Moorings 2012:width\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2012.\";s:8:\"argument\";a:6:{s:5:\"field\";s:31:\"field_photo_moorings_2012_width\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2012\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:31:\"field_photo_moorings_2012_width\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2012\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:31:\"field_photo_moorings_2012_width\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2012\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";}}s:32:\"field_photo_moorings_2012_height\";a:7:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:54:\"Photo Moorings 2012 (field_photo_moorings_2012:height)\";s:11:\"title short\";s:26:\"Photo Moorings 2012:height\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2012.\";s:8:\"argument\";a:6:{s:5:\"field\";s:32:\"field_photo_moorings_2012_height\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2012\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:32:\"field_photo_moorings_2012_height\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2012\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:32:\"field_photo_moorings_2012_height\";s:5:\"table\";s:40:\"field_revision_field_photo_moorings_2012\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:29:\"field_photo_moorings_2012_fid\";i:1;s:29:\"field_photo_moorings_2012_alt\";i:2;s:31:\"field_photo_moorings_2012_title\";i:3;s:31:\"field_photo_moorings_2012_width\";i:4;s:32:\"field_photo_moorings_2012_height\";}s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";}}}s:22:\"field_data_field_photo\";a:10:{s:5:\"table\";a:1:{s:4:\"join\";a:1:{s:4:\"node\";a:3:{s:10:\"left_field\";s:3:\"nid\";s:5:\"field\";s:9:\"entity_id\";s:5:\"extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}}s:9:\"entity_id\";a:1:{s:5:\"field\";a:1:{s:8:\"moved to\";a:2:{i:0;s:22:\"field_data_field_photo\";i:1;s:11:\"field_photo\";}}}s:11:\"field_photo\";a:5:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:19:\"Photo Moorings 2014\";s:11:\"title short\";s:19:\"Photo Moorings 2014\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2014.\";s:5:\"field\";a:9:{s:5:\"table\";s:22:\"field_data_field_photo\";s:7:\"handler\";s:25:\"views_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:11:\"field_photo\";s:10:\"real field\";s:15:\"field_photo_fid\";s:17:\"additional fields\";a:8:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:15:\"field_photo_fid\";i:4;s:15:\"field_photo_alt\";i:5;s:17:\"field_photo_title\";i:6;s:17:\"field_photo_width\";i:7;s:18:\"field_photo_height\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:0;}}s:15:\"field_photo_fid\";a:8:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:37:\"Photo Moorings 2014 (field_photo:fid)\";s:11:\"title short\";s:23:\"Photo Moorings 2014:fid\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2014.\";s:8:\"argument\";a:6:{s:5:\"field\";s:15:\"field_photo_fid\";s:5:\"table\";s:22:\"field_data_field_photo\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:15:\"field_photo_fid\";s:5:\"table\";s:22:\"field_data_field_photo\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:15:\"field_photo_fid\";s:5:\"table\";s:22:\"field_data_field_photo\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";}s:12:\"relationship\";a:4:{s:7:\"handler\";s:26:\"views_handler_relationship\";s:4:\"base\";s:12:\"file_managed\";s:10:\"base field\";s:3:\"fid\";s:5:\"label\";s:22:\"image from field_photo\";}}s:8:\"language\";a:8:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:42:\"Photo Moorings 2014 (field_photo:language)\";s:11:\"title short\";s:28:\"Photo Moorings 2014:language\";s:4:\"help\";s:48:\"Language - Appears in: node:photo_moorings_2014.\";s:5:\"field\";a:1:{s:7:\"handler\";s:35:\"views_handler_field_locale_language\";}s:8:\"argument\";a:6:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:22:\"field_data_field_photo\";s:7:\"handler\";s:38:\"views_handler_argument_locale_language\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:16:\"empty field name\";s:10:\"<No value>\";s:10:\"field_name\";s:11:\"field_photo\";}s:6:\"filter\";a:6:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:22:\"field_data_field_photo\";s:7:\"handler\";s:36:\"views_handler_filter_locale_language\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:22:\"field_data_field_photo\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";}}s:15:\"field_photo_alt\";a:7:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:37:\"Photo Moorings 2014 (field_photo:alt)\";s:11:\"title short\";s:23:\"Photo Moorings 2014:alt\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2014.\";s:8:\"argument\";a:6:{s:5:\"field\";s:15:\"field_photo_alt\";s:5:\"table\";s:22:\"field_data_field_photo\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:15:\"field_photo_alt\";s:5:\"table\";s:22:\"field_data_field_photo\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:15:\"field_photo_alt\";s:5:\"table\";s:22:\"field_data_field_photo\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";}}s:17:\"field_photo_title\";a:7:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:39:\"Photo Moorings 2014 (field_photo:title)\";s:11:\"title short\";s:25:\"Photo Moorings 2014:title\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2014.\";s:8:\"argument\";a:6:{s:5:\"field\";s:17:\"field_photo_title\";s:5:\"table\";s:22:\"field_data_field_photo\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:17:\"field_photo_title\";s:5:\"table\";s:22:\"field_data_field_photo\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:17:\"field_photo_title\";s:5:\"table\";s:22:\"field_data_field_photo\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";}}s:17:\"field_photo_width\";a:7:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:39:\"Photo Moorings 2014 (field_photo:width)\";s:11:\"title short\";s:25:\"Photo Moorings 2014:width\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2014.\";s:8:\"argument\";a:6:{s:5:\"field\";s:17:\"field_photo_width\";s:5:\"table\";s:22:\"field_data_field_photo\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:17:\"field_photo_width\";s:5:\"table\";s:22:\"field_data_field_photo\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:17:\"field_photo_width\";s:5:\"table\";s:22:\"field_data_field_photo\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";}}s:18:\"field_photo_height\";a:7:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:40:\"Photo Moorings 2014 (field_photo:height)\";s:11:\"title short\";s:26:\"Photo Moorings 2014:height\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2014.\";s:8:\"argument\";a:6:{s:5:\"field\";s:18:\"field_photo_height\";s:5:\"table\";s:22:\"field_data_field_photo\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:18:\"field_photo_height\";s:5:\"table\";s:22:\"field_data_field_photo\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:18:\"field_photo_height\";s:5:\"table\";s:22:\"field_data_field_photo\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";}}s:14:\"field_photo_et\";a:5:{s:5:\"group\";s:18:\"Entity translation\";s:5:\"title\";s:31:\"Photo Moorings 2014: translated\";s:11:\"title short\";s:19:\"Photo Moorings 2014\";s:4:\"help\";s:109:\"Appears in: node:photo_moorings_2014. Show the field Photo Moorings 2014 translated into a specified language\";s:5:\"field\";a:9:{s:5:\"table\";s:22:\"field_data_field_photo\";s:7:\"handler\";s:38:\"entity_translation_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:11:\"field_photo\";s:10:\"real field\";s:15:\"field_photo_fid\";s:17:\"additional fields\";a:8:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:15:\"field_photo_fid\";i:4;s:15:\"field_photo_alt\";i:5;s:17:\"field_photo_title\";i:6;s:17:\"field_photo_width\";i:7;s:18:\"field_photo_height\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:0;}}}s:26:\"field_revision_field_photo\";a:9:{s:5:\"table\";a:1:{s:4:\"join\";a:1:{s:13:\"node_revision\";a:3:{s:10:\"left_field\";s:3:\"vid\";s:5:\"field\";s:11:\"revision_id\";s:5:\"extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}}s:11:\"revision_id\";a:1:{s:5:\"field\";a:1:{s:8:\"moved to\";a:2:{i:0;s:26:\"field_revision_field_photo\";i:1;s:23:\"field_photo-revision_id\";}}}s:23:\"field_photo-revision_id\";a:5:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:19:\"Photo Moorings 2014\";s:11:\"title short\";s:19:\"Photo Moorings 2014\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2014.\";s:5:\"field\";a:9:{s:5:\"table\";s:26:\"field_revision_field_photo\";s:7:\"handler\";s:25:\"views_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:11:\"field_photo\";s:10:\"real field\";s:27:\"field_photo-revision_id_fid\";s:17:\"additional fields\";a:8:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:15:\"field_photo_fid\";i:4;s:15:\"field_photo_alt\";i:5;s:17:\"field_photo_title\";i:6;s:17:\"field_photo_width\";i:7;s:18:\"field_photo_height\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:1;}}s:15:\"field_photo_fid\";a:8:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:37:\"Photo Moorings 2014 (field_photo:fid)\";s:11:\"title short\";s:23:\"Photo Moorings 2014:fid\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2014.\";s:8:\"argument\";a:6:{s:5:\"field\";s:15:\"field_photo_fid\";s:5:\"table\";s:26:\"field_revision_field_photo\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:15:\"field_photo_fid\";s:5:\"table\";s:26:\"field_revision_field_photo\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:15:\"field_photo_fid\";s:5:\"table\";s:26:\"field_revision_field_photo\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";}s:12:\"relationship\";a:4:{s:7:\"handler\";s:26:\"views_handler_relationship\";s:4:\"base\";s:12:\"file_managed\";s:10:\"base field\";s:3:\"fid\";s:5:\"label\";s:22:\"image from field_photo\";}}s:8:\"language\";a:8:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:42:\"Photo Moorings 2014 (field_photo:language)\";s:11:\"title short\";s:28:\"Photo Moorings 2014:language\";s:4:\"help\";s:48:\"Language - Appears in: node:photo_moorings_2014.\";s:5:\"field\";a:1:{s:7:\"handler\";s:35:\"views_handler_field_locale_language\";}s:8:\"argument\";a:6:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:26:\"field_revision_field_photo\";s:7:\"handler\";s:38:\"views_handler_argument_locale_language\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:16:\"empty field name\";s:10:\"<No value>\";s:10:\"field_name\";s:11:\"field_photo\";}s:6:\"filter\";a:6:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:26:\"field_revision_field_photo\";s:7:\"handler\";s:36:\"views_handler_filter_locale_language\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:26:\"field_revision_field_photo\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";}}s:15:\"field_photo_alt\";a:7:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:37:\"Photo Moorings 2014 (field_photo:alt)\";s:11:\"title short\";s:23:\"Photo Moorings 2014:alt\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2014.\";s:8:\"argument\";a:6:{s:5:\"field\";s:15:\"field_photo_alt\";s:5:\"table\";s:26:\"field_revision_field_photo\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:15:\"field_photo_alt\";s:5:\"table\";s:26:\"field_revision_field_photo\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:15:\"field_photo_alt\";s:5:\"table\";s:26:\"field_revision_field_photo\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";}}s:17:\"field_photo_title\";a:7:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:39:\"Photo Moorings 2014 (field_photo:title)\";s:11:\"title short\";s:25:\"Photo Moorings 2014:title\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2014.\";s:8:\"argument\";a:6:{s:5:\"field\";s:17:\"field_photo_title\";s:5:\"table\";s:26:\"field_revision_field_photo\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:17:\"field_photo_title\";s:5:\"table\";s:26:\"field_revision_field_photo\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:17:\"field_photo_title\";s:5:\"table\";s:26:\"field_revision_field_photo\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";}}s:17:\"field_photo_width\";a:7:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:39:\"Photo Moorings 2014 (field_photo:width)\";s:11:\"title short\";s:25:\"Photo Moorings 2014:width\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2014.\";s:8:\"argument\";a:6:{s:5:\"field\";s:17:\"field_photo_width\";s:5:\"table\";s:26:\"field_revision_field_photo\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:17:\"field_photo_width\";s:5:\"table\";s:26:\"field_revision_field_photo\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:17:\"field_photo_width\";s:5:\"table\";s:26:\"field_revision_field_photo\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";}}s:18:\"field_photo_height\";a:7:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:40:\"Photo Moorings 2014 (field_photo:height)\";s:11:\"title short\";s:26:\"Photo Moorings 2014:height\";s:4:\"help\";s:37:\"Appears in: node:photo_moorings_2014.\";s:8:\"argument\";a:6:{s:5:\"field\";s:18:\"field_photo_height\";s:5:\"table\";s:26:\"field_revision_field_photo\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:18:\"field_photo_height\";s:5:\"table\";s:26:\"field_revision_field_photo\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:18:\"field_photo_height\";s:5:\"table\";s:26:\"field_revision_field_photo\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_photo_fid\";i:1;s:15:\"field_photo_alt\";i:2;s:17:\"field_photo_title\";i:3;s:17:\"field_photo_width\";i:4;s:18:\"field_photo_height\";}s:10:\"field_name\";s:11:\"field_photo\";}}}s:23:\"field_data_field_gfdata\";a:13:{s:5:\"table\";a:1:{s:4:\"join\";a:1:{s:4:\"node\";a:3:{s:10:\"left_field\";s:3:\"nid\";s:5:\"field\";s:9:\"entity_id\";s:5:\"extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}}s:9:\"entity_id\";a:1:{s:5:\"field\";a:1:{s:8:\"moved to\";a:2:{i:0;s:23:\"field_data_field_gfdata\";i:1;s:12:\"field_gfdata\";}}}s:12:\"field_gfdata\";a:5:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:4:\"Data\";s:11:\"title short\";s:4:\"Data\";s:4:\"help\";s:25:\"Appears in: node:mooring.\";s:5:\"field\";a:9:{s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:25:\"views_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:12:\"field_gfdata\";s:10:\"real field\";s:17:\"field_gfdata_geom\";s:17:\"additional fields\";a:12:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:17:\"field_gfdata_geom\";i:4;s:21:\"field_gfdata_geo_type\";i:5;s:16:\"field_gfdata_lat\";i:6;s:16:\"field_gfdata_lon\";i:7;s:17:\"field_gfdata_left\";i:8;s:16:\"field_gfdata_top\";i:9;s:18:\"field_gfdata_right\";i:10;s:19:\"field_gfdata_bottom\";i:11;s:20:\"field_gfdata_geohash\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:0;}}s:17:\"field_gfdata_geom\";a:6:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:24:\"Data (field_gfdata:geom)\";s:11:\"title short\";s:9:\"Data:geom\";s:4:\"help\";s:25:\"Appears in: node:mooring.\";s:8:\"argument\";a:6:{s:5:\"field\";s:17:\"field_gfdata_geom\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:17:\"field_gfdata_geom\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:11:\"allow empty\";b:1;}}s:21:\"field_gfdata_geo_type\";a:7:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:28:\"Data (field_gfdata:geo_type)\";s:11:\"title short\";s:13:\"Data:geo_type\";s:4:\"help\";s:25:\"Appears in: node:mooring.\";s:8:\"argument\";a:6:{s:5:\"field\";s:21:\"field_gfdata_geo_type\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:21:\"field_gfdata_geo_type\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:21:\"field_gfdata_geo_type\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";}}s:16:\"field_gfdata_lat\";a:7:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:23:\"Data (field_gfdata:lat)\";s:11:\"title short\";s:8:\"Data:lat\";s:4:\"help\";s:25:\"Appears in: node:mooring.\";s:8:\"argument\";a:6:{s:5:\"field\";s:16:\"field_gfdata_lat\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:16:\"field_gfdata_lat\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:16:\"field_gfdata_lat\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";}}s:16:\"field_gfdata_lon\";a:7:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:23:\"Data (field_gfdata:lon)\";s:11:\"title short\";s:8:\"Data:lon\";s:4:\"help\";s:25:\"Appears in: node:mooring.\";s:8:\"argument\";a:6:{s:5:\"field\";s:16:\"field_gfdata_lon\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:16:\"field_gfdata_lon\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:16:\"field_gfdata_lon\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";}}s:17:\"field_gfdata_left\";a:7:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:24:\"Data (field_gfdata:left)\";s:11:\"title short\";s:9:\"Data:left\";s:4:\"help\";s:25:\"Appears in: node:mooring.\";s:8:\"argument\";a:6:{s:5:\"field\";s:17:\"field_gfdata_left\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:17:\"field_gfdata_left\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:17:\"field_gfdata_left\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";}}s:16:\"field_gfdata_top\";a:7:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:23:\"Data (field_gfdata:top)\";s:11:\"title short\";s:8:\"Data:top\";s:4:\"help\";s:25:\"Appears in: node:mooring.\";s:8:\"argument\";a:6:{s:5:\"field\";s:16:\"field_gfdata_top\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:16:\"field_gfdata_top\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:16:\"field_gfdata_top\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";}}s:18:\"field_gfdata_right\";a:7:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:25:\"Data (field_gfdata:right)\";s:11:\"title short\";s:10:\"Data:right\";s:4:\"help\";s:25:\"Appears in: node:mooring.\";s:8:\"argument\";a:6:{s:5:\"field\";s:18:\"field_gfdata_right\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:18:\"field_gfdata_right\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:18:\"field_gfdata_right\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";}}s:19:\"field_gfdata_bottom\";a:7:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:26:\"Data (field_gfdata:bottom)\";s:11:\"title short\";s:11:\"Data:bottom\";s:4:\"help\";s:25:\"Appears in: node:mooring.\";s:8:\"argument\";a:6:{s:5:\"field\";s:19:\"field_gfdata_bottom\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:19:\"field_gfdata_bottom\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:19:\"field_gfdata_bottom\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";}}s:20:\"field_gfdata_geohash\";a:7:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:27:\"Data (field_gfdata:geohash)\";s:11:\"title short\";s:12:\"Data:geohash\";s:4:\"help\";s:25:\"Appears in: node:mooring.\";s:8:\"argument\";a:6:{s:5:\"field\";s:20:\"field_gfdata_geohash\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:20:\"field_gfdata_geohash\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:20:\"field_gfdata_geohash\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";}}s:23:\"field_geofield_distance\";a:8:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:31:\"Data (field_gfdata) - proximity\";s:11:\"title short\";s:31:\"Data (field_gfdata) - proximity\";s:4:\"help\";s:25:\"Appears in: node:mooring.\";s:4:\"sort\";a:5:{s:5:\"field\";s:23:\"field_geofield_distance\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:21:\"geofield_handler_sort\";s:10:\"field_name\";s:12:\"field_gfdata\";s:10:\"real_field\";s:23:\"field_data_field_gfdata\";}s:5:\"field\";a:7:{s:5:\"field\";s:23:\"field_geofield_distance\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:22:\"geofield_handler_field\";s:10:\"field_name\";s:12:\"field_gfdata\";s:10:\"real_field\";s:23:\"field_data_field_gfdata\";s:5:\"float\";b:1;s:14:\"click sortable\";b:1;}s:6:\"filter\";a:5:{s:5:\"field\";s:23:\"field_geofield_distance\";s:5:\"table\";s:23:\"field_data_field_gfdata\";s:7:\"handler\";s:23:\"geofield_handler_filter\";s:10:\"field_name\";s:12:\"field_gfdata\";s:10:\"real_field\";s:23:\"field_data_field_gfdata\";}s:8:\"argument\";a:2:{s:7:\"handler\";s:35:\"geofield_handler_argument_proximity\";s:10:\"field_name\";s:12:\"field_gfdata\";}}}s:27:\"field_revision_field_gfdata\";a:12:{s:5:\"table\";a:1:{s:4:\"join\";a:1:{s:13:\"node_revision\";a:3:{s:10:\"left_field\";s:3:\"vid\";s:5:\"field\";s:11:\"revision_id\";s:5:\"extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}}s:11:\"revision_id\";a:1:{s:5:\"field\";a:1:{s:8:\"moved to\";a:2:{i:0;s:27:\"field_revision_field_gfdata\";i:1;s:24:\"field_gfdata-revision_id\";}}}s:24:\"field_gfdata-revision_id\";a:5:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:4:\"Data\";s:11:\"title short\";s:4:\"Data\";s:4:\"help\";s:25:\"Appears in: node:mooring.\";s:5:\"field\";a:9:{s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:25:\"views_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:12:\"field_gfdata\";s:10:\"real field\";s:29:\"field_gfdata-revision_id_geom\";s:17:\"additional fields\";a:12:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:17:\"field_gfdata_geom\";i:4;s:21:\"field_gfdata_geo_type\";i:5;s:16:\"field_gfdata_lat\";i:6;s:16:\"field_gfdata_lon\";i:7;s:17:\"field_gfdata_left\";i:8;s:16:\"field_gfdata_top\";i:9;s:18:\"field_gfdata_right\";i:10;s:19:\"field_gfdata_bottom\";i:11;s:20:\"field_gfdata_geohash\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:1;}}s:17:\"field_gfdata_geom\";a:6:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:24:\"Data (field_gfdata:geom)\";s:11:\"title short\";s:9:\"Data:geom\";s:4:\"help\";s:25:\"Appears in: node:mooring.\";s:8:\"argument\";a:6:{s:5:\"field\";s:17:\"field_gfdata_geom\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:17:\"field_gfdata_geom\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:11:\"allow empty\";b:1;}}s:21:\"field_gfdata_geo_type\";a:7:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:28:\"Data (field_gfdata:geo_type)\";s:11:\"title short\";s:13:\"Data:geo_type\";s:4:\"help\";s:25:\"Appears in: node:mooring.\";s:8:\"argument\";a:6:{s:5:\"field\";s:21:\"field_gfdata_geo_type\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:21:\"field_gfdata_geo_type\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:21:\"field_gfdata_geo_type\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";}}s:16:\"field_gfdata_lat\";a:7:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:23:\"Data (field_gfdata:lat)\";s:11:\"title short\";s:8:\"Data:lat\";s:4:\"help\";s:25:\"Appears in: node:mooring.\";s:8:\"argument\";a:6:{s:5:\"field\";s:16:\"field_gfdata_lat\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:16:\"field_gfdata_lat\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:16:\"field_gfdata_lat\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";}}s:16:\"field_gfdata_lon\";a:7:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:23:\"Data (field_gfdata:lon)\";s:11:\"title short\";s:8:\"Data:lon\";s:4:\"help\";s:25:\"Appears in: node:mooring.\";s:8:\"argument\";a:6:{s:5:\"field\";s:16:\"field_gfdata_lon\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:16:\"field_gfdata_lon\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:16:\"field_gfdata_lon\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";}}s:17:\"field_gfdata_left\";a:7:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:24:\"Data (field_gfdata:left)\";s:11:\"title short\";s:9:\"Data:left\";s:4:\"help\";s:25:\"Appears in: node:mooring.\";s:8:\"argument\";a:6:{s:5:\"field\";s:17:\"field_gfdata_left\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:17:\"field_gfdata_left\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:17:\"field_gfdata_left\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";}}s:16:\"field_gfdata_top\";a:7:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:23:\"Data (field_gfdata:top)\";s:11:\"title short\";s:8:\"Data:top\";s:4:\"help\";s:25:\"Appears in: node:mooring.\";s:8:\"argument\";a:6:{s:5:\"field\";s:16:\"field_gfdata_top\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:16:\"field_gfdata_top\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:16:\"field_gfdata_top\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";}}s:18:\"field_gfdata_right\";a:7:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:25:\"Data (field_gfdata:right)\";s:11:\"title short\";s:10:\"Data:right\";s:4:\"help\";s:25:\"Appears in: node:mooring.\";s:8:\"argument\";a:6:{s:5:\"field\";s:18:\"field_gfdata_right\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:18:\"field_gfdata_right\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:18:\"field_gfdata_right\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";}}s:19:\"field_gfdata_bottom\";a:7:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:26:\"Data (field_gfdata:bottom)\";s:11:\"title short\";s:11:\"Data:bottom\";s:4:\"help\";s:25:\"Appears in: node:mooring.\";s:8:\"argument\";a:6:{s:5:\"field\";s:19:\"field_gfdata_bottom\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:19:\"field_gfdata_bottom\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:19:\"field_gfdata_bottom\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";}}s:20:\"field_gfdata_geohash\";a:7:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:27:\"Data (field_gfdata:geohash)\";s:11:\"title short\";s:12:\"Data:geohash\";s:4:\"help\";s:25:\"Appears in: node:mooring.\";s:8:\"argument\";a:6:{s:5:\"field\";s:20:\"field_gfdata_geohash\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:20:\"field_gfdata_geohash\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:20:\"field_gfdata_geohash\";s:5:\"table\";s:27:\"field_revision_field_gfdata\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:17:\"field_gfdata_geom\";i:1;s:21:\"field_gfdata_geo_type\";i:2;s:16:\"field_gfdata_lat\";i:3;s:16:\"field_gfdata_lon\";i:4;s:17:\"field_gfdata_left\";i:5;s:16:\"field_gfdata_top\";i:6;s:18:\"field_gfdata_right\";i:7;s:19:\"field_gfdata_bottom\";i:8;s:20:\"field_gfdata_geohash\";}s:10:\"field_name\";s:12:\"field_gfdata\";}}}s:41:\"field_data_field_openlayers_example_input\";a:13:{s:5:\"table\";a:1:{s:4:\"join\";a:1:{s:4:\"node\";a:3:{s:10:\"left_field\";s:3:\"nid\";s:5:\"field\";s:9:\"entity_id\";s:5:\"extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}}s:9:\"entity_id\";a:1:{s:5:\"field\";a:1:{s:8:\"moved to\";a:2:{i:0;s:41:\"field_data_field_openlayers_example_input\";i:1;s:30:\"field_openlayers_example_input\";}}}s:30:\"field_openlayers_example_input\";a:5:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:33:\"OpenLayers Example Geofield Input\";s:11:\"title short\";s:33:\"OpenLayers Example Geofield Input\";s:4:\"help\";s:44:\"Appears in: node:openlayers_example_content.\";s:5:\"field\";a:9:{s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:25:\"views_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:10:\"real field\";s:35:\"field_openlayers_example_input_geom\";s:17:\"additional fields\";a:12:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:35:\"field_openlayers_example_input_geom\";i:4;s:39:\"field_openlayers_example_input_geo_type\";i:5;s:34:\"field_openlayers_example_input_lat\";i:6;s:34:\"field_openlayers_example_input_lon\";i:7;s:35:\"field_openlayers_example_input_left\";i:8;s:34:\"field_openlayers_example_input_top\";i:9;s:36:\"field_openlayers_example_input_right\";i:10;s:37:\"field_openlayers_example_input_bottom\";i:11;s:38:\"field_openlayers_example_input_geohash\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:0;}}s:35:\"field_openlayers_example_input_geom\";a:6:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:71:\"OpenLayers Example Geofield Input (field_openlayers_example_input:geom)\";s:11:\"title short\";s:38:\"OpenLayers Example Geofield Input:geom\";s:4:\"help\";s:44:\"Appears in: node:openlayers_example_content.\";s:8:\"argument\";a:6:{s:5:\"field\";s:35:\"field_openlayers_example_input_geom\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:35:\"field_openlayers_example_input_geom\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:11:\"allow empty\";b:1;}}s:39:\"field_openlayers_example_input_geo_type\";a:7:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:75:\"OpenLayers Example Geofield Input (field_openlayers_example_input:geo_type)\";s:11:\"title short\";s:42:\"OpenLayers Example Geofield Input:geo_type\";s:4:\"help\";s:44:\"Appears in: node:openlayers_example_content.\";s:8:\"argument\";a:6:{s:5:\"field\";s:39:\"field_openlayers_example_input_geo_type\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:39:\"field_openlayers_example_input_geo_type\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:39:\"field_openlayers_example_input_geo_type\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";}}s:34:\"field_openlayers_example_input_lat\";a:7:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:70:\"OpenLayers Example Geofield Input (field_openlayers_example_input:lat)\";s:11:\"title short\";s:37:\"OpenLayers Example Geofield Input:lat\";s:4:\"help\";s:44:\"Appears in: node:openlayers_example_content.\";s:8:\"argument\";a:6:{s:5:\"field\";s:34:\"field_openlayers_example_input_lat\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:34:\"field_openlayers_example_input_lat\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:34:\"field_openlayers_example_input_lat\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";}}s:34:\"field_openlayers_example_input_lon\";a:7:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:70:\"OpenLayers Example Geofield Input (field_openlayers_example_input:lon)\";s:11:\"title short\";s:37:\"OpenLayers Example Geofield Input:lon\";s:4:\"help\";s:44:\"Appears in: node:openlayers_example_content.\";s:8:\"argument\";a:6:{s:5:\"field\";s:34:\"field_openlayers_example_input_lon\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:34:\"field_openlayers_example_input_lon\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:34:\"field_openlayers_example_input_lon\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";}}s:35:\"field_openlayers_example_input_left\";a:7:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:71:\"OpenLayers Example Geofield Input (field_openlayers_example_input:left)\";s:11:\"title short\";s:38:\"OpenLayers Example Geofield Input:left\";s:4:\"help\";s:44:\"Appears in: node:openlayers_example_content.\";s:8:\"argument\";a:6:{s:5:\"field\";s:35:\"field_openlayers_example_input_left\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:35:\"field_openlayers_example_input_left\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:35:\"field_openlayers_example_input_left\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";}}s:34:\"field_openlayers_example_input_top\";a:7:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:70:\"OpenLayers Example Geofield Input (field_openlayers_example_input:top)\";s:11:\"title short\";s:37:\"OpenLayers Example Geofield Input:top\";s:4:\"help\";s:44:\"Appears in: node:openlayers_example_content.\";s:8:\"argument\";a:6:{s:5:\"field\";s:34:\"field_openlayers_example_input_top\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:34:\"field_openlayers_example_input_top\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:34:\"field_openlayers_example_input_top\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";}}s:36:\"field_openlayers_example_input_right\";a:7:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:72:\"OpenLayers Example Geofield Input (field_openlayers_example_input:right)\";s:11:\"title short\";s:39:\"OpenLayers Example Geofield Input:right\";s:4:\"help\";s:44:\"Appears in: node:openlayers_example_content.\";s:8:\"argument\";a:6:{s:5:\"field\";s:36:\"field_openlayers_example_input_right\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:36:\"field_openlayers_example_input_right\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:36:\"field_openlayers_example_input_right\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";}}s:37:\"field_openlayers_example_input_bottom\";a:7:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:73:\"OpenLayers Example Geofield Input (field_openlayers_example_input:bottom)\";s:11:\"title short\";s:40:\"OpenLayers Example Geofield Input:bottom\";s:4:\"help\";s:44:\"Appears in: node:openlayers_example_content.\";s:8:\"argument\";a:6:{s:5:\"field\";s:37:\"field_openlayers_example_input_bottom\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:37:\"field_openlayers_example_input_bottom\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:37:\"field_openlayers_example_input_bottom\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";}}s:38:\"field_openlayers_example_input_geohash\";a:7:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:74:\"OpenLayers Example Geofield Input (field_openlayers_example_input:geohash)\";s:11:\"title short\";s:41:\"OpenLayers Example Geofield Input:geohash\";s:4:\"help\";s:44:\"Appears in: node:openlayers_example_content.\";s:8:\"argument\";a:6:{s:5:\"field\";s:38:\"field_openlayers_example_input_geohash\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:38:\"field_openlayers_example_input_geohash\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:38:\"field_openlayers_example_input_geohash\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";}}s:23:\"field_geofield_distance\";a:8:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:78:\"OpenLayers Example Geofield Input (field_openlayers_example_input) - proximity\";s:11:\"title short\";s:78:\"OpenLayers Example Geofield Input (field_openlayers_example_input) - proximity\";s:4:\"help\";s:44:\"Appears in: node:openlayers_example_content.\";s:4:\"sort\";a:5:{s:5:\"field\";s:23:\"field_geofield_distance\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:21:\"geofield_handler_sort\";s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:10:\"real_field\";s:41:\"field_data_field_openlayers_example_input\";}s:5:\"field\";a:7:{s:5:\"field\";s:23:\"field_geofield_distance\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:22:\"geofield_handler_field\";s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:10:\"real_field\";s:41:\"field_data_field_openlayers_example_input\";s:5:\"float\";b:1;s:14:\"click sortable\";b:1;}s:6:\"filter\";a:5:{s:5:\"field\";s:23:\"field_geofield_distance\";s:5:\"table\";s:41:\"field_data_field_openlayers_example_input\";s:7:\"handler\";s:23:\"geofield_handler_filter\";s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:10:\"real_field\";s:41:\"field_data_field_openlayers_example_input\";}s:8:\"argument\";a:2:{s:7:\"handler\";s:35:\"geofield_handler_argument_proximity\";s:10:\"field_name\";s:30:\"field_openlayers_example_input\";}}}s:45:\"field_revision_field_openlayers_example_input\";a:12:{s:5:\"table\";a:1:{s:4:\"join\";a:1:{s:13:\"node_revision\";a:3:{s:10:\"left_field\";s:3:\"vid\";s:5:\"field\";s:11:\"revision_id\";s:5:\"extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}}s:11:\"revision_id\";a:1:{s:5:\"field\";a:1:{s:8:\"moved to\";a:2:{i:0;s:45:\"field_revision_field_openlayers_example_input\";i:1;s:42:\"field_openlayers_example_input-revision_id\";}}}s:42:\"field_openlayers_example_input-revision_id\";a:5:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:33:\"OpenLayers Example Geofield Input\";s:11:\"title short\";s:33:\"OpenLayers Example Geofield Input\";s:4:\"help\";s:44:\"Appears in: node:openlayers_example_content.\";s:5:\"field\";a:9:{s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:25:\"views_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:10:\"real field\";s:47:\"field_openlayers_example_input-revision_id_geom\";s:17:\"additional fields\";a:12:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:35:\"field_openlayers_example_input_geom\";i:4;s:39:\"field_openlayers_example_input_geo_type\";i:5;s:34:\"field_openlayers_example_input_lat\";i:6;s:34:\"field_openlayers_example_input_lon\";i:7;s:35:\"field_openlayers_example_input_left\";i:8;s:34:\"field_openlayers_example_input_top\";i:9;s:36:\"field_openlayers_example_input_right\";i:10;s:37:\"field_openlayers_example_input_bottom\";i:11;s:38:\"field_openlayers_example_input_geohash\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:1;}}s:35:\"field_openlayers_example_input_geom\";a:6:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:71:\"OpenLayers Example Geofield Input (field_openlayers_example_input:geom)\";s:11:\"title short\";s:38:\"OpenLayers Example Geofield Input:geom\";s:4:\"help\";s:44:\"Appears in: node:openlayers_example_content.\";s:8:\"argument\";a:6:{s:5:\"field\";s:35:\"field_openlayers_example_input_geom\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:35:\"field_openlayers_example_input_geom\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:11:\"allow empty\";b:1;}}s:39:\"field_openlayers_example_input_geo_type\";a:7:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:75:\"OpenLayers Example Geofield Input (field_openlayers_example_input:geo_type)\";s:11:\"title short\";s:42:\"OpenLayers Example Geofield Input:geo_type\";s:4:\"help\";s:44:\"Appears in: node:openlayers_example_content.\";s:8:\"argument\";a:6:{s:5:\"field\";s:39:\"field_openlayers_example_input_geo_type\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:39:\"field_openlayers_example_input_geo_type\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:39:\"field_openlayers_example_input_geo_type\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";}}s:34:\"field_openlayers_example_input_lat\";a:7:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:70:\"OpenLayers Example Geofield Input (field_openlayers_example_input:lat)\";s:11:\"title short\";s:37:\"OpenLayers Example Geofield Input:lat\";s:4:\"help\";s:44:\"Appears in: node:openlayers_example_content.\";s:8:\"argument\";a:6:{s:5:\"field\";s:34:\"field_openlayers_example_input_lat\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:34:\"field_openlayers_example_input_lat\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:34:\"field_openlayers_example_input_lat\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";}}s:34:\"field_openlayers_example_input_lon\";a:7:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:70:\"OpenLayers Example Geofield Input (field_openlayers_example_input:lon)\";s:11:\"title short\";s:37:\"OpenLayers Example Geofield Input:lon\";s:4:\"help\";s:44:\"Appears in: node:openlayers_example_content.\";s:8:\"argument\";a:6:{s:5:\"field\";s:34:\"field_openlayers_example_input_lon\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:34:\"field_openlayers_example_input_lon\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:34:\"field_openlayers_example_input_lon\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";}}s:35:\"field_openlayers_example_input_left\";a:7:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:71:\"OpenLayers Example Geofield Input (field_openlayers_example_input:left)\";s:11:\"title short\";s:38:\"OpenLayers Example Geofield Input:left\";s:4:\"help\";s:44:\"Appears in: node:openlayers_example_content.\";s:8:\"argument\";a:6:{s:5:\"field\";s:35:\"field_openlayers_example_input_left\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:35:\"field_openlayers_example_input_left\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:35:\"field_openlayers_example_input_left\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";}}s:34:\"field_openlayers_example_input_top\";a:7:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:70:\"OpenLayers Example Geofield Input (field_openlayers_example_input:top)\";s:11:\"title short\";s:37:\"OpenLayers Example Geofield Input:top\";s:4:\"help\";s:44:\"Appears in: node:openlayers_example_content.\";s:8:\"argument\";a:6:{s:5:\"field\";s:34:\"field_openlayers_example_input_top\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:34:\"field_openlayers_example_input_top\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:34:\"field_openlayers_example_input_top\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";}}s:36:\"field_openlayers_example_input_right\";a:7:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:72:\"OpenLayers Example Geofield Input (field_openlayers_example_input:right)\";s:11:\"title short\";s:39:\"OpenLayers Example Geofield Input:right\";s:4:\"help\";s:44:\"Appears in: node:openlayers_example_content.\";s:8:\"argument\";a:6:{s:5:\"field\";s:36:\"field_openlayers_example_input_right\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:36:\"field_openlayers_example_input_right\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:36:\"field_openlayers_example_input_right\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";}}s:37:\"field_openlayers_example_input_bottom\";a:7:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:73:\"OpenLayers Example Geofield Input (field_openlayers_example_input:bottom)\";s:11:\"title short\";s:40:\"OpenLayers Example Geofield Input:bottom\";s:4:\"help\";s:44:\"Appears in: node:openlayers_example_content.\";s:8:\"argument\";a:6:{s:5:\"field\";s:37:\"field_openlayers_example_input_bottom\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:37:\"field_openlayers_example_input_bottom\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:37:\"field_openlayers_example_input_bottom\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";}}s:38:\"field_openlayers_example_input_geohash\";a:7:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:74:\"OpenLayers Example Geofield Input (field_openlayers_example_input:geohash)\";s:11:\"title short\";s:41:\"OpenLayers Example Geofield Input:geohash\";s:4:\"help\";s:44:\"Appears in: node:openlayers_example_content.\";s:8:\"argument\";a:6:{s:5:\"field\";s:38:\"field_openlayers_example_input_geohash\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:38:\"field_openlayers_example_input_geohash\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:38:\"field_openlayers_example_input_geohash\";s:5:\"table\";s:45:\"field_revision_field_openlayers_example_input\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:9:{i:0;s:35:\"field_openlayers_example_input_geom\";i:1;s:39:\"field_openlayers_example_input_geo_type\";i:2;s:34:\"field_openlayers_example_input_lat\";i:3;s:34:\"field_openlayers_example_input_lon\";i:4;s:35:\"field_openlayers_example_input_left\";i:5;s:34:\"field_openlayers_example_input_top\";i:6;s:36:\"field_openlayers_example_input_right\";i:7;s:37:\"field_openlayers_example_input_bottom\";i:8;s:38:\"field_openlayers_example_input_geohash\";}s:10:\"field_name\";s:30:\"field_openlayers_example_input\";}}}s:22:\"field_data_field_image\";a:8:{s:5:\"table\";a:1:{s:4:\"join\";a:1:{s:4:\"node\";a:3:{s:10:\"left_field\";s:3:\"nid\";s:5:\"field\";s:9:\"entity_id\";s:5:\"extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}}s:9:\"entity_id\";a:1:{s:5:\"field\";a:1:{s:8:\"moved to\";a:2:{i:0;s:22:\"field_data_field_image\";i:1;s:11:\"field_image\";}}}s:11:\"field_image\";a:5:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:5:\"Image\";s:11:\"title short\";s:5:\"Image\";s:4:\"help\";s:25:\"Appears in: node:article.\";s:5:\"field\";a:9:{s:5:\"table\";s:22:\"field_data_field_image\";s:7:\"handler\";s:25:\"views_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:11:\"field_image\";s:10:\"real field\";s:15:\"field_image_fid\";s:17:\"additional fields\";a:8:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:15:\"field_image_fid\";i:4;s:15:\"field_image_alt\";i:5;s:17:\"field_image_title\";i:6;s:17:\"field_image_width\";i:7;s:18:\"field_image_height\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:0;}}s:15:\"field_image_fid\";a:8:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:23:\"Image (field_image:fid)\";s:11:\"title short\";s:9:\"Image:fid\";s:4:\"help\";s:25:\"Appears in: node:article.\";s:8:\"argument\";a:6:{s:5:\"field\";s:15:\"field_image_fid\";s:5:\"table\";s:22:\"field_data_field_image\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:15:\"field_image_fid\";s:5:\"table\";s:22:\"field_data_field_image\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:15:\"field_image_fid\";s:5:\"table\";s:22:\"field_data_field_image\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";}s:12:\"relationship\";a:4:{s:7:\"handler\";s:26:\"views_handler_relationship\";s:4:\"base\";s:12:\"file_managed\";s:10:\"base field\";s:3:\"fid\";s:5:\"label\";s:22:\"image from field_image\";}}s:15:\"field_image_alt\";a:7:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:23:\"Image (field_image:alt)\";s:11:\"title short\";s:9:\"Image:alt\";s:4:\"help\";s:25:\"Appears in: node:article.\";s:8:\"argument\";a:6:{s:5:\"field\";s:15:\"field_image_alt\";s:5:\"table\";s:22:\"field_data_field_image\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:15:\"field_image_alt\";s:5:\"table\";s:22:\"field_data_field_image\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:15:\"field_image_alt\";s:5:\"table\";s:22:\"field_data_field_image\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";}}s:17:\"field_image_title\";a:7:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:25:\"Image (field_image:title)\";s:11:\"title short\";s:11:\"Image:title\";s:4:\"help\";s:25:\"Appears in: node:article.\";s:8:\"argument\";a:6:{s:5:\"field\";s:17:\"field_image_title\";s:5:\"table\";s:22:\"field_data_field_image\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:17:\"field_image_title\";s:5:\"table\";s:22:\"field_data_field_image\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:17:\"field_image_title\";s:5:\"table\";s:22:\"field_data_field_image\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";}}s:17:\"field_image_width\";a:7:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:25:\"Image (field_image:width)\";s:11:\"title short\";s:11:\"Image:width\";s:4:\"help\";s:25:\"Appears in: node:article.\";s:8:\"argument\";a:6:{s:5:\"field\";s:17:\"field_image_width\";s:5:\"table\";s:22:\"field_data_field_image\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:17:\"field_image_width\";s:5:\"table\";s:22:\"field_data_field_image\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:17:\"field_image_width\";s:5:\"table\";s:22:\"field_data_field_image\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";}}s:18:\"field_image_height\";a:7:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:26:\"Image (field_image:height)\";s:11:\"title short\";s:12:\"Image:height\";s:4:\"help\";s:25:\"Appears in: node:article.\";s:8:\"argument\";a:6:{s:5:\"field\";s:18:\"field_image_height\";s:5:\"table\";s:22:\"field_data_field_image\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:18:\"field_image_height\";s:5:\"table\";s:22:\"field_data_field_image\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:18:\"field_image_height\";s:5:\"table\";s:22:\"field_data_field_image\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";}}}s:26:\"field_revision_field_image\";a:8:{s:5:\"table\";a:1:{s:4:\"join\";a:1:{s:13:\"node_revision\";a:3:{s:10:\"left_field\";s:3:\"vid\";s:5:\"field\";s:11:\"revision_id\";s:5:\"extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}}s:11:\"revision_id\";a:1:{s:5:\"field\";a:1:{s:8:\"moved to\";a:2:{i:0;s:26:\"field_revision_field_image\";i:1;s:23:\"field_image-revision_id\";}}}s:23:\"field_image-revision_id\";a:5:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:5:\"Image\";s:11:\"title short\";s:5:\"Image\";s:4:\"help\";s:25:\"Appears in: node:article.\";s:5:\"field\";a:9:{s:5:\"table\";s:26:\"field_revision_field_image\";s:7:\"handler\";s:25:\"views_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:11:\"field_image\";s:10:\"real field\";s:27:\"field_image-revision_id_fid\";s:17:\"additional fields\";a:8:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:15:\"field_image_fid\";i:4;s:15:\"field_image_alt\";i:5;s:17:\"field_image_title\";i:6;s:17:\"field_image_width\";i:7;s:18:\"field_image_height\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:1;}}s:15:\"field_image_fid\";a:8:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:23:\"Image (field_image:fid)\";s:11:\"title short\";s:9:\"Image:fid\";s:4:\"help\";s:25:\"Appears in: node:article.\";s:8:\"argument\";a:6:{s:5:\"field\";s:15:\"field_image_fid\";s:5:\"table\";s:26:\"field_revision_field_image\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:15:\"field_image_fid\";s:5:\"table\";s:26:\"field_revision_field_image\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:15:\"field_image_fid\";s:5:\"table\";s:26:\"field_revision_field_image\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";}s:12:\"relationship\";a:4:{s:7:\"handler\";s:26:\"views_handler_relationship\";s:4:\"base\";s:12:\"file_managed\";s:10:\"base field\";s:3:\"fid\";s:5:\"label\";s:22:\"image from field_image\";}}s:15:\"field_image_alt\";a:7:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:23:\"Image (field_image:alt)\";s:11:\"title short\";s:9:\"Image:alt\";s:4:\"help\";s:25:\"Appears in: node:article.\";s:8:\"argument\";a:6:{s:5:\"field\";s:15:\"field_image_alt\";s:5:\"table\";s:26:\"field_revision_field_image\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:15:\"field_image_alt\";s:5:\"table\";s:26:\"field_revision_field_image\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:15:\"field_image_alt\";s:5:\"table\";s:26:\"field_revision_field_image\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";}}s:17:\"field_image_title\";a:7:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:25:\"Image (field_image:title)\";s:11:\"title short\";s:11:\"Image:title\";s:4:\"help\";s:25:\"Appears in: node:article.\";s:8:\"argument\";a:6:{s:5:\"field\";s:17:\"field_image_title\";s:5:\"table\";s:26:\"field_revision_field_image\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:17:\"field_image_title\";s:5:\"table\";s:26:\"field_revision_field_image\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:17:\"field_image_title\";s:5:\"table\";s:26:\"field_revision_field_image\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";}}s:17:\"field_image_width\";a:7:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:25:\"Image (field_image:width)\";s:11:\"title short\";s:11:\"Image:width\";s:4:\"help\";s:25:\"Appears in: node:article.\";s:8:\"argument\";a:6:{s:5:\"field\";s:17:\"field_image_width\";s:5:\"table\";s:26:\"field_revision_field_image\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:17:\"field_image_width\";s:5:\"table\";s:26:\"field_revision_field_image\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:17:\"field_image_width\";s:5:\"table\";s:26:\"field_revision_field_image\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";}}s:18:\"field_image_height\";a:7:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:26:\"Image (field_image:height)\";s:11:\"title short\";s:12:\"Image:height\";s:4:\"help\";s:25:\"Appears in: node:article.\";s:8:\"argument\";a:6:{s:5:\"field\";s:18:\"field_image_height\";s:5:\"table\";s:26:\"field_revision_field_image\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:18:\"field_image_height\";s:5:\"table\";s:26:\"field_revision_field_image\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:18:\"field_image_height\";s:5:\"table\";s:26:\"field_revision_field_image\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:5:{i:0;s:15:\"field_image_fid\";i:1;s:15:\"field_image_alt\";i:2;s:17:\"field_image_title\";i:3;s:17:\"field_image_width\";i:4;s:18:\"field_image_height\";}s:10:\"field_name\";s:11:\"field_image\";}}}s:21:\"field_data_field_tags\";a:5:{s:5:\"table\";a:1:{s:4:\"join\";a:1:{s:4:\"node\";a:3:{s:10:\"left_field\";s:3:\"nid\";s:5:\"field\";s:9:\"entity_id\";s:5:\"extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}}s:9:\"entity_id\";a:1:{s:5:\"field\";a:1:{s:8:\"moved to\";a:2:{i:0;s:21:\"field_data_field_tags\";i:1;s:10:\"field_tags\";}}}s:10:\"field_tags\";a:5:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:4:\"Tags\";s:11:\"title short\";s:4:\"Tags\";s:4:\"help\";s:25:\"Appears in: node:article.\";s:5:\"field\";a:9:{s:5:\"table\";s:21:\"field_data_field_tags\";s:7:\"handler\";s:25:\"views_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:10:\"field_tags\";s:10:\"real field\";s:14:\"field_tags_tid\";s:17:\"additional fields\";a:4:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:14:\"field_tags_tid\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:0;}}s:14:\"field_tags_tid\";a:8:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:17:\"Tags (field_tags)\";s:11:\"title short\";s:4:\"Tags\";s:4:\"help\";s:25:\"Appears in: node:article.\";s:8:\"argument\";a:6:{s:5:\"field\";s:14:\"field_tags_tid\";s:5:\"table\";s:21:\"field_data_field_tags\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:1:{i:0;s:14:\"field_tags_tid\";}s:10:\"field_name\";s:10:\"field_tags\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:7:{s:5:\"field\";s:14:\"field_tags_tid\";s:5:\"table\";s:21:\"field_data_field_tags\";s:7:\"handler\";s:34:\"views_handler_filter_term_node_tid\";s:17:\"additional fields\";a:1:{i:0;s:14:\"field_tags_tid\";}s:10:\"field_name\";s:10:\"field_tags\";s:11:\"allow empty\";b:1;s:10:\"vocabulary\";s:4:\"tags\";}s:4:\"sort\";a:5:{s:5:\"field\";s:14:\"field_tags_tid\";s:5:\"table\";s:21:\"field_data_field_tags\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:1:{i:0;s:14:\"field_tags_tid\";}s:10:\"field_name\";s:10:\"field_tags\";}s:12:\"relationship\";a:4:{s:7:\"handler\";s:26:\"views_handler_relationship\";s:4:\"base\";s:18:\"taxonomy_term_data\";s:10:\"base field\";s:3:\"tid\";s:5:\"label\";s:20:\"term from field_tags\";}}s:5:\"delta\";a:8:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:23:\"Tags (field_tags:delta)\";s:11:\"title short\";s:10:\"Tags:delta\";s:4:\"help\";s:33:\"Delta - Appears in: node:article.\";s:5:\"field\";a:1:{s:7:\"handler\";s:27:\"views_handler_field_numeric\";}s:8:\"argument\";a:6:{s:5:\"field\";s:5:\"delta\";s:5:\"table\";s:21:\"field_data_field_tags\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:1:{i:0;s:14:\"field_tags_tid\";}s:16:\"empty field name\";s:12:\"- No value -\";s:10:\"field_name\";s:10:\"field_tags\";}s:6:\"filter\";a:6:{s:5:\"field\";s:5:\"delta\";s:5:\"table\";s:21:\"field_data_field_tags\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:1:{i:0;s:14:\"field_tags_tid\";}s:10:\"field_name\";s:10:\"field_tags\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:5:\"delta\";s:5:\"table\";s:21:\"field_data_field_tags\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:1:{i:0;s:14:\"field_tags_tid\";}s:10:\"field_name\";s:10:\"field_tags\";}}}s:25:\"field_revision_field_tags\";a:5:{s:5:\"table\";a:1:{s:4:\"join\";a:1:{s:13:\"node_revision\";a:3:{s:10:\"left_field\";s:3:\"vid\";s:5:\"field\";s:11:\"revision_id\";s:5:\"extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}}s:11:\"revision_id\";a:1:{s:5:\"field\";a:1:{s:8:\"moved to\";a:2:{i:0;s:25:\"field_revision_field_tags\";i:1;s:22:\"field_tags-revision_id\";}}}s:22:\"field_tags-revision_id\";a:5:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:4:\"Tags\";s:11:\"title short\";s:4:\"Tags\";s:4:\"help\";s:25:\"Appears in: node:article.\";s:5:\"field\";a:9:{s:5:\"table\";s:25:\"field_revision_field_tags\";s:7:\"handler\";s:25:\"views_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:10:\"field_tags\";s:10:\"real field\";s:26:\"field_tags-revision_id_tid\";s:17:\"additional fields\";a:4:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:14:\"field_tags_tid\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:1;}}s:14:\"field_tags_tid\";a:8:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:17:\"Tags (field_tags)\";s:11:\"title short\";s:4:\"Tags\";s:4:\"help\";s:25:\"Appears in: node:article.\";s:8:\"argument\";a:6:{s:5:\"field\";s:14:\"field_tags_tid\";s:5:\"table\";s:25:\"field_revision_field_tags\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:1:{i:0;s:14:\"field_tags_tid\";}s:10:\"field_name\";s:10:\"field_tags\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:7:{s:5:\"field\";s:14:\"field_tags_tid\";s:5:\"table\";s:25:\"field_revision_field_tags\";s:7:\"handler\";s:34:\"views_handler_filter_term_node_tid\";s:17:\"additional fields\";a:1:{i:0;s:14:\"field_tags_tid\";}s:10:\"field_name\";s:10:\"field_tags\";s:11:\"allow empty\";b:1;s:10:\"vocabulary\";s:4:\"tags\";}s:4:\"sort\";a:5:{s:5:\"field\";s:14:\"field_tags_tid\";s:5:\"table\";s:25:\"field_revision_field_tags\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:1:{i:0;s:14:\"field_tags_tid\";}s:10:\"field_name\";s:10:\"field_tags\";}s:12:\"relationship\";a:4:{s:7:\"handler\";s:26:\"views_handler_relationship\";s:4:\"base\";s:18:\"taxonomy_term_data\";s:10:\"base field\";s:3:\"tid\";s:5:\"label\";s:20:\"term from field_tags\";}}s:5:\"delta\";a:8:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:23:\"Tags (field_tags:delta)\";s:11:\"title short\";s:10:\"Tags:delta\";s:4:\"help\";s:33:\"Delta - Appears in: node:article.\";s:5:\"field\";a:1:{s:7:\"handler\";s:27:\"views_handler_field_numeric\";}s:8:\"argument\";a:6:{s:5:\"field\";s:5:\"delta\";s:5:\"table\";s:25:\"field_revision_field_tags\";s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:17:\"additional fields\";a:1:{i:0;s:14:\"field_tags_tid\";}s:16:\"empty field name\";s:12:\"- No value -\";s:10:\"field_name\";s:10:\"field_tags\";}s:6:\"filter\";a:6:{s:5:\"field\";s:5:\"delta\";s:5:\"table\";s:25:\"field_revision_field_tags\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:17:\"additional fields\";a:1:{i:0;s:14:\"field_tags_tid\";}s:10:\"field_name\";s:10:\"field_tags\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:5:\"delta\";s:5:\"table\";s:25:\"field_revision_field_tags\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:1:{i:0;s:14:\"field_tags_tid\";}s:10:\"field_name\";s:10:\"field_tags\";}}}s:15:\"field_data_body\";a:8:{s:5:\"table\";a:1:{s:4:\"join\";a:1:{s:4:\"node\";a:3:{s:10:\"left_field\";s:3:\"nid\";s:5:\"field\";s:9:\"entity_id\";s:5:\"extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}}s:9:\"entity_id\";a:1:{s:5:\"field\";a:1:{s:8:\"moved to\";a:2:{i:0;s:15:\"field_data_body\";i:1;s:4:\"body\";}}}s:4:\"body\";a:6:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:4:\"Body\";s:11:\"title short\";s:4:\"Body\";s:4:\"help\";s:248:\"Appears in: node:page, node:article, node:photos, node:openlayers_example_content, node:mooring, node:photo_moorings_2014, node:photo_moorings_2012, node:forum, node:photo_moorings_2010. Also known as: Contenuto: Body, Contenuto: Album description.\";s:7:\"aliases\";a:1:{i:0;a:4:{s:4:\"base\";s:4:\"node\";s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:17:\"Album description\";s:4:\"help\";s:36:\"This is an alias of Contenuto: Body.\";}}s:5:\"field\";a:9:{s:5:\"table\";s:15:\"field_data_body\";s:7:\"handler\";s:25:\"views_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:4:\"body\";s:10:\"real field\";s:10:\"body_value\";s:17:\"additional fields\";a:6:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:10:\"body_value\";i:4;s:12:\"body_summary\";i:5;s:11:\"body_format\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:0;}}s:10:\"body_value\";a:7:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:11:\"Body (body)\";s:11:\"title short\";s:4:\"Body\";s:4:\"help\";s:249:\"Appears in: node:page, node:article, node:photos, node:openlayers_example_content, node:mooring, node:photo_moorings_2014, node:photo_moorings_2012, node:forum, node:photo_moorings_2010. Also known as: Contenuto: Body (body), Contenuto: Body (body).\";s:7:\"aliases\";a:1:{i:0;a:3:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:24:\"Album description (body)\";s:4:\"help\";s:43:\"This is an alias of Contenuto: Body (body).\";}}s:8:\"argument\";a:6:{s:5:\"field\";s:10:\"body_value\";s:5:\"table\";s:15:\"field_data_body\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:3:{i:0;s:10:\"body_value\";i:1;s:12:\"body_summary\";i:2;s:11:\"body_format\";}s:10:\"field_name\";s:4:\"body\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:10:\"body_value\";s:5:\"table\";s:15:\"field_data_body\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:3:{i:0;s:10:\"body_value\";i:1;s:12:\"body_summary\";i:2;s:11:\"body_format\";}s:10:\"field_name\";s:4:\"body\";s:11:\"allow empty\";b:1;}}s:8:\"language\";a:8:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:20:\"Body (body:language)\";s:11:\"title short\";s:13:\"Body:language\";s:4:\"help\";s:197:\"Language - Appears in: node:page, node:article, node:photos, node:openlayers_example_content, node:mooring, node:photo_moorings_2014, node:photo_moorings_2012, node:forum, node:photo_moorings_2010.\";s:5:\"field\";a:1:{s:7:\"handler\";s:35:\"views_handler_field_locale_language\";}s:8:\"argument\";a:6:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:15:\"field_data_body\";s:7:\"handler\";s:38:\"views_handler_argument_locale_language\";s:17:\"additional fields\";a:3:{i:0;s:10:\"body_value\";i:1;s:12:\"body_summary\";i:2;s:11:\"body_format\";}s:16:\"empty field name\";s:10:\"<No value>\";s:10:\"field_name\";s:4:\"body\";}s:6:\"filter\";a:6:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:15:\"field_data_body\";s:7:\"handler\";s:36:\"views_handler_filter_locale_language\";s:17:\"additional fields\";a:3:{i:0;s:10:\"body_value\";i:1;s:12:\"body_summary\";i:2;s:11:\"body_format\";}s:10:\"field_name\";s:4:\"body\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:15:\"field_data_body\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:3:{i:0;s:10:\"body_value\";i:1;s:12:\"body_summary\";i:2;s:11:\"body_format\";}s:10:\"field_name\";s:4:\"body\";}}s:12:\"body_summary\";a:7:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:19:\"Body (body:summary)\";s:11:\"title short\";s:12:\"Body:summary\";s:4:\"help\";s:265:\"Appears in: node:page, node:article, node:photos, node:openlayers_example_content, node:mooring, node:photo_moorings_2014, node:photo_moorings_2012, node:forum, node:photo_moorings_2010. Also known as: Contenuto: Body (body:summary), Contenuto: Body (body:summary).\";s:7:\"aliases\";a:1:{i:0;a:3:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:32:\"Album description (body:summary)\";s:4:\"help\";s:51:\"This is an alias of Contenuto: Body (body:summary).\";}}s:8:\"argument\";a:6:{s:5:\"field\";s:12:\"body_summary\";s:5:\"table\";s:15:\"field_data_body\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:3:{i:0;s:10:\"body_value\";i:1;s:12:\"body_summary\";i:2;s:11:\"body_format\";}s:10:\"field_name\";s:4:\"body\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:12:\"body_summary\";s:5:\"table\";s:15:\"field_data_body\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:3:{i:0;s:10:\"body_value\";i:1;s:12:\"body_summary\";i:2;s:11:\"body_format\";}s:10:\"field_name\";s:4:\"body\";s:11:\"allow empty\";b:1;}}s:11:\"body_format\";a:8:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:18:\"Body (body:format)\";s:11:\"title short\";s:11:\"Body:format\";s:4:\"help\";s:263:\"Appears in: node:page, node:article, node:photos, node:openlayers_example_content, node:mooring, node:photo_moorings_2014, node:photo_moorings_2012, node:forum, node:photo_moorings_2010. Also known as: Contenuto: Body (body:format), Contenuto: Body (body:format).\";s:7:\"aliases\";a:1:{i:0;a:3:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:31:\"Album description (body:format)\";s:4:\"help\";s:50:\"This is an alias of Contenuto: Body (body:format).\";}}s:8:\"argument\";a:6:{s:5:\"field\";s:11:\"body_format\";s:5:\"table\";s:15:\"field_data_body\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:3:{i:0;s:10:\"body_value\";i:1;s:12:\"body_summary\";i:2;s:11:\"body_format\";}s:10:\"field_name\";s:4:\"body\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:11:\"body_format\";s:5:\"table\";s:15:\"field_data_body\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:3:{i:0;s:10:\"body_value\";i:1;s:12:\"body_summary\";i:2;s:11:\"body_format\";}s:10:\"field_name\";s:4:\"body\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:11:\"body_format\";s:5:\"table\";s:15:\"field_data_body\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:3:{i:0;s:10:\"body_value\";i:1;s:12:\"body_summary\";i:2;s:11:\"body_format\";}s:10:\"field_name\";s:4:\"body\";}}s:7:\"body_et\";a:6:{s:5:\"group\";s:18:\"Entity translation\";s:5:\"title\";s:16:\"Body: translated\";s:11:\"title short\";s:4:\"Body\";s:4:\"help\";s:305:\"Appears in: node:page, node:article, node:photos, node:openlayers_example_content, node:mooring, node:photo_moorings_2014, node:photo_moorings_2012, node:forum, node:photo_moorings_2010. Also known as: Contenuto: Body, Contenuto: Album description. Show the field Body translated into a specified language\";s:7:\"aliases\";a:1:{i:0;a:4:{s:4:\"base\";s:4:\"node\";s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:17:\"Album description\";s:4:\"help\";s:36:\"This is an alias of Contenuto: Body.\";}}s:5:\"field\";a:9:{s:5:\"table\";s:15:\"field_data_body\";s:7:\"handler\";s:38:\"entity_translation_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:4:\"body\";s:10:\"real field\";s:10:\"body_value\";s:17:\"additional fields\";a:6:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:10:\"body_value\";i:4;s:12:\"body_summary\";i:5;s:11:\"body_format\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:0;}}}s:19:\"field_revision_body\";a:7:{s:5:\"table\";a:1:{s:4:\"join\";a:1:{s:13:\"node_revision\";a:3:{s:10:\"left_field\";s:3:\"vid\";s:5:\"field\";s:11:\"revision_id\";s:5:\"extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}}s:11:\"revision_id\";a:1:{s:5:\"field\";a:1:{s:8:\"moved to\";a:2:{i:0;s:19:\"field_revision_body\";i:1;s:16:\"body-revision_id\";}}}s:16:\"body-revision_id\";a:5:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:4:\"Body\";s:11:\"title short\";s:4:\"Body\";s:4:\"help\";s:186:\"Appears in: node:page, node:article, node:photos, node:openlayers_example_content, node:mooring, node:photo_moorings_2014, node:photo_moorings_2012, node:forum, node:photo_moorings_2010.\";s:5:\"field\";a:9:{s:5:\"table\";s:19:\"field_revision_body\";s:7:\"handler\";s:25:\"views_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:4:\"body\";s:10:\"real field\";s:22:\"body-revision_id_value\";s:17:\"additional fields\";a:6:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:10:\"body_value\";i:4;s:12:\"body_summary\";i:5;s:11:\"body_format\";}s:13:\"entity_tables\";a:2:{s:4:\"node\";s:4:\"node\";s:13:\"node_revision\";s:4:\"node\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:1;}}s:10:\"body_value\";a:7:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:11:\"Body (body)\";s:11:\"title short\";s:4:\"Body\";s:4:\"help\";s:249:\"Appears in: node:page, node:article, node:photos, node:openlayers_example_content, node:mooring, node:photo_moorings_2014, node:photo_moorings_2012, node:forum, node:photo_moorings_2010. Also known as: Contenuto: Body (body), Contenuto: Body (body).\";s:7:\"aliases\";a:1:{i:0;a:3:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:24:\"Album description (body)\";s:4:\"help\";s:43:\"This is an alias of Contenuto: Body (body).\";}}s:8:\"argument\";a:6:{s:5:\"field\";s:10:\"body_value\";s:5:\"table\";s:19:\"field_revision_body\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:3:{i:0;s:10:\"body_value\";i:1;s:12:\"body_summary\";i:2;s:11:\"body_format\";}s:10:\"field_name\";s:4:\"body\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:10:\"body_value\";s:5:\"table\";s:19:\"field_revision_body\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:3:{i:0;s:10:\"body_value\";i:1;s:12:\"body_summary\";i:2;s:11:\"body_format\";}s:10:\"field_name\";s:4:\"body\";s:11:\"allow empty\";b:1;}}s:8:\"language\";a:8:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:20:\"Body (body:language)\";s:11:\"title short\";s:13:\"Body:language\";s:4:\"help\";s:197:\"Language - Appears in: node:page, node:article, node:photos, node:openlayers_example_content, node:mooring, node:photo_moorings_2014, node:photo_moorings_2012, node:forum, node:photo_moorings_2010.\";s:5:\"field\";a:1:{s:7:\"handler\";s:35:\"views_handler_field_locale_language\";}s:8:\"argument\";a:6:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:19:\"field_revision_body\";s:7:\"handler\";s:38:\"views_handler_argument_locale_language\";s:17:\"additional fields\";a:3:{i:0;s:10:\"body_value\";i:1;s:12:\"body_summary\";i:2;s:11:\"body_format\";}s:16:\"empty field name\";s:10:\"<No value>\";s:10:\"field_name\";s:4:\"body\";}s:6:\"filter\";a:6:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:19:\"field_revision_body\";s:7:\"handler\";s:36:\"views_handler_filter_locale_language\";s:17:\"additional fields\";a:3:{i:0;s:10:\"body_value\";i:1;s:12:\"body_summary\";i:2;s:11:\"body_format\";}s:10:\"field_name\";s:4:\"body\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:8:\"language\";s:5:\"table\";s:19:\"field_revision_body\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:3:{i:0;s:10:\"body_value\";i:1;s:12:\"body_summary\";i:2;s:11:\"body_format\";}s:10:\"field_name\";s:4:\"body\";}}s:12:\"body_summary\";a:7:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:19:\"Body (body:summary)\";s:11:\"title short\";s:12:\"Body:summary\";s:4:\"help\";s:265:\"Appears in: node:page, node:article, node:photos, node:openlayers_example_content, node:mooring, node:photo_moorings_2014, node:photo_moorings_2012, node:forum, node:photo_moorings_2010. Also known as: Contenuto: Body (body:summary), Contenuto: Body (body:summary).\";s:7:\"aliases\";a:1:{i:0;a:3:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:32:\"Album description (body:summary)\";s:4:\"help\";s:51:\"This is an alias of Contenuto: Body (body:summary).\";}}s:8:\"argument\";a:6:{s:5:\"field\";s:12:\"body_summary\";s:5:\"table\";s:19:\"field_revision_body\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:3:{i:0;s:10:\"body_value\";i:1;s:12:\"body_summary\";i:2;s:11:\"body_format\";}s:10:\"field_name\";s:4:\"body\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:12:\"body_summary\";s:5:\"table\";s:19:\"field_revision_body\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:3:{i:0;s:10:\"body_value\";i:1;s:12:\"body_summary\";i:2;s:11:\"body_format\";}s:10:\"field_name\";s:4:\"body\";s:11:\"allow empty\";b:1;}}s:11:\"body_format\";a:8:{s:5:\"group\";s:27:\"Contenuto (historical data)\";s:5:\"title\";s:18:\"Body (body:format)\";s:11:\"title short\";s:11:\"Body:format\";s:4:\"help\";s:263:\"Appears in: node:page, node:article, node:photos, node:openlayers_example_content, node:mooring, node:photo_moorings_2014, node:photo_moorings_2012, node:forum, node:photo_moorings_2010. Also known as: Contenuto: Body (body:format), Contenuto: Body (body:format).\";s:7:\"aliases\";a:1:{i:0;a:3:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:31:\"Album description (body:format)\";s:4:\"help\";s:50:\"This is an alias of Contenuto: Body (body:format).\";}}s:8:\"argument\";a:6:{s:5:\"field\";s:11:\"body_format\";s:5:\"table\";s:19:\"field_revision_body\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:3:{i:0;s:10:\"body_value\";i:1;s:12:\"body_summary\";i:2;s:11:\"body_format\";}s:10:\"field_name\";s:4:\"body\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:11:\"body_format\";s:5:\"table\";s:19:\"field_revision_body\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:3:{i:0;s:10:\"body_value\";i:1;s:12:\"body_summary\";i:2;s:11:\"body_format\";}s:10:\"field_name\";s:4:\"body\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:11:\"body_format\";s:5:\"table\";s:19:\"field_revision_body\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:3:{i:0;s:10:\"body_value\";i:1;s:12:\"body_summary\";i:2;s:11:\"body_format\";}s:10:\"field_name\";s:4:\"body\";}}}s:23:\"field_data_comment_body\";a:5:{s:5:\"table\";a:1:{s:4:\"join\";a:1:{s:7:\"comment\";a:3:{s:10:\"left_field\";s:3:\"cid\";s:5:\"field\";s:9:\"entity_id\";s:5:\"extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:7:\"comment\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}}s:9:\"entity_id\";a:1:{s:5:\"field\";a:1:{s:8:\"moved to\";a:2:{i:0;s:23:\"field_data_comment_body\";i:1;s:12:\"comment_body\";}}}s:12:\"comment_body\";a:5:{s:5:\"group\";s:8:\"Commento\";s:5:\"title\";s:7:\"Comment\";s:11:\"title short\";s:7:\"Comment\";s:4:\"help\";s:330:\"Appears in: comment:comment_node_page, comment:comment_node_article, comment:comment_node_photos, comment:comment_node_openlayers_example_content, comment:comment_node_mooring, comment:comment_node_photo_moorings_2014, comment:comment_node_photo_moorings_2012, comment:comment_node_forum, comment:comment_node_photo_moorings_2010.\";s:5:\"field\";a:9:{s:5:\"table\";s:23:\"field_data_comment_body\";s:7:\"handler\";s:25:\"views_handler_field_field\";s:14:\"click sortable\";b:1;s:10:\"field_name\";s:12:\"comment_body\";s:10:\"real field\";s:18:\"comment_body_value\";s:17:\"additional fields\";a:5:{i:0;s:5:\"delta\";i:1;s:8:\"language\";i:2;s:6:\"bundle\";i:3;s:18:\"comment_body_value\";i:4;s:19:\"comment_body_format\";}s:13:\"entity_tables\";a:1:{s:7:\"comment\";s:7:\"comment\";}s:12:\"element type\";s:3:\"div\";s:11:\"is revision\";b:0;}}s:18:\"comment_body_value\";a:6:{s:5:\"group\";s:8:\"Commento\";s:5:\"title\";s:22:\"Comment (comment_body)\";s:11:\"title short\";s:7:\"Comment\";s:4:\"help\";s:330:\"Appears in: comment:comment_node_page, comment:comment_node_article, comment:comment_node_photos, comment:comment_node_openlayers_example_content, comment:comment_node_mooring, comment:comment_node_photo_moorings_2014, comment:comment_node_photo_moorings_2012, comment:comment_node_forum, comment:comment_node_photo_moorings_2010.\";s:8:\"argument\";a:6:{s:5:\"field\";s:18:\"comment_body_value\";s:5:\"table\";s:23:\"field_data_comment_body\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:2:{i:0;s:18:\"comment_body_value\";i:1;s:19:\"comment_body_format\";}s:10:\"field_name\";s:12:\"comment_body\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:18:\"comment_body_value\";s:5:\"table\";s:23:\"field_data_comment_body\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:2:{i:0;s:18:\"comment_body_value\";i:1;s:19:\"comment_body_format\";}s:10:\"field_name\";s:12:\"comment_body\";s:11:\"allow empty\";b:1;}}s:19:\"comment_body_format\";a:7:{s:5:\"group\";s:8:\"Commento\";s:5:\"title\";s:29:\"Comment (comment_body:format)\";s:11:\"title short\";s:14:\"Comment:format\";s:4:\"help\";s:330:\"Appears in: comment:comment_node_page, comment:comment_node_article, comment:comment_node_photos, comment:comment_node_openlayers_example_content, comment:comment_node_mooring, comment:comment_node_photo_moorings_2014, comment:comment_node_photo_moorings_2012, comment:comment_node_forum, comment:comment_node_photo_moorings_2010.\";s:8:\"argument\";a:6:{s:5:\"field\";s:19:\"comment_body_format\";s:5:\"table\";s:23:\"field_data_comment_body\";s:7:\"handler\";s:29:\"views_handler_argument_string\";s:17:\"additional fields\";a:2:{i:0;s:18:\"comment_body_value\";i:1;s:19:\"comment_body_format\";}s:10:\"field_name\";s:12:\"comment_body\";s:16:\"empty field name\";s:12:\"- No value -\";}s:6:\"filter\";a:6:{s:5:\"field\";s:19:\"comment_body_format\";s:5:\"table\";s:23:\"field_data_comment_body\";s:7:\"handler\";s:27:\"views_handler_filter_string\";s:17:\"additional fields\";a:2:{i:0;s:18:\"comment_body_value\";i:1;s:19:\"comment_body_format\";}s:10:\"field_name\";s:12:\"comment_body\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:5:{s:5:\"field\";s:19:\"comment_body_format\";s:5:\"table\";s:23:\"field_data_comment_body\";s:7:\"handler\";s:18:\"views_handler_sort\";s:17:\"additional fields\";a:2:{i:0;s:18:\"comment_body_value\";i:1;s:19:\"comment_body_format\";}s:10:\"field_name\";s:12:\"comment_body\";}}}s:14:\"filter_formats\";a:1:{s:8:\"moved to\";s:13:\"filter_format\";}s:13:\"filter_format\";a:1:{s:5:\"table\";a:1:{s:4:\"join\";a:2:{s:13:\"node_revision\";a:2:{s:10:\"left_field\";s:6:\"format\";s:5:\"field\";s:6:\"format\";}s:4:\"node\";a:3:{s:10:\"left_table\";s:13:\"node_revision\";s:10:\"left_field\";s:6:\"format\";s:5:\"field\";s:6:\"format\";}}}}s:14:\"locales_source\";a:7:{s:5:\"table\";a:2:{s:5:\"group\";s:13:\"Locale source\";s:4:\"base\";a:3:{s:5:\"field\";s:3:\"lid\";s:5:\"title\";s:13:\"Locale source\";s:4:\"help\";s:73:\"A source string for translation, in English or the default site language.\";}}s:3:\"lid\";a:6:{s:5:\"title\";s:3:\"LID\";s:4:\"help\";s:28:\"The ID of the source string.\";s:5:\"field\";a:2:{s:7:\"handler\";s:19:\"views_handler_field\";s:14:\"click sortable\";b:1;}s:8:\"argument\";a:3:{s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:7:\"numeric\";b:1;s:13:\"validate type\";s:3:\"lid\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:8:\"location\";a:7:{s:5:\"group\";s:13:\"Locale source\";s:5:\"title\";s:9:\"Posizione\";s:4:\"help\";s:55:\"A description of the location or context of the string.\";s:5:\"field\";a:2:{s:7:\"handler\";s:19:\"views_handler_field\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:29:\"views_handler_argument_string\";}}s:9:\"textgroup\";a:6:{s:5:\"group\";s:13:\"Locale source\";s:5:\"title\";s:6:\"Gruppo\";s:4:\"help\";s:32:\"The group the translation is in.\";s:5:\"field\";a:2:{s:7:\"handler\";s:32:\"views_handler_field_locale_group\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:33:\"views_handler_filter_locale_group\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:35:\"views_handler_argument_locale_group\";}}s:6:\"source\";a:5:{s:5:\"group\";s:13:\"Locale source\";s:5:\"title\";s:8:\"Sorgente\";s:4:\"help\";s:25:\"The full original string.\";s:5:\"field\";a:1:{s:7:\"handler\";s:19:\"views_handler_field\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}}s:7:\"version\";a:6:{s:5:\"group\";s:13:\"Locale source\";s:5:\"title\";s:8:\"Versione\";s:4:\"help\";s:51:\"The version of Drupal core that this string is for.\";s:5:\"field\";a:2:{s:7:\"handler\";s:19:\"views_handler_field\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:35:\"views_handler_filter_locale_version\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:29:\"views_handler_argument_string\";}}s:8:\"edit_lid\";a:2:{s:5:\"group\";s:13:\"Locale source\";s:5:\"field\";a:3:{s:5:\"title\";s:9:\"Edit link\";s:4:\"help\";s:47:\"Provide a simple link to edit the translations.\";s:7:\"handler\";s:36:\"views_handler_field_locale_link_edit\";}}}s:14:\"locales_target\";a:5:{s:5:\"table\";a:2:{s:5:\"group\";s:13:\"Locale target\";s:4:\"join\";a:1:{s:14:\"locales_source\";a:2:{s:10:\"left_field\";s:3:\"lid\";s:5:\"field\";s:3:\"lid\";}}}s:11:\"translation\";a:5:{s:5:\"group\";s:13:\"Locale target\";s:5:\"title\";s:11:\"Translation\";s:4:\"help\";s:28:\"The full translation string.\";s:5:\"field\";a:1:{s:7:\"handler\";s:19:\"views_handler_field\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}}s:8:\"language\";a:6:{s:5:\"group\";s:13:\"Locale target\";s:5:\"title\";s:6:\"Lingua\";s:4:\"help\";s:36:\"The language this translation is in.\";s:5:\"field\";a:2:{s:7:\"handler\";s:35:\"views_handler_field_locale_language\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:36:\"views_handler_filter_locale_language\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:38:\"views_handler_argument_locale_language\";}}s:4:\"plid\";a:4:{s:5:\"group\";s:13:\"Locale target\";s:5:\"title\";s:12:\"Singular LID\";s:4:\"help\";s:33:\"The ID of the parent translation.\";s:5:\"field\";a:1:{s:7:\"handler\";s:19:\"views_handler_field\";}}s:6:\"plural\";a:6:{s:5:\"group\";s:13:\"Locale target\";s:5:\"title\";s:6:\"Plural\";s:4:\"help\";s:41:\"Whether or not the translation is plural.\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_boolean\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:3:{s:7:\"handler\";s:37:\"views_handler_filter_boolean_operator\";s:5:\"label\";s:6:\"Plural\";s:4:\"type\";s:6:\"yes-no\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}}s:8:\"location\";a:14:{s:5:\"table\";a:3:{s:5:\"group\";s:8:\"Location\";s:4:\"base\";a:4:{s:5:\"field\";s:3:\"lid\";s:5:\"title\";s:8:\"Location\";s:4:\"help\";s:60:\"Le posizioni sono gli indirizzi e le coordinate della mappa.\";s:6:\"weight\";i:-10;}s:4:\"join\";a:4:{s:4:\"node\";a:3:{s:10:\"left_table\";s:17:\"location_instance\";s:10:\"left_field\";s:3:\"lid\";s:5:\"field\";s:3:\"lid\";}s:13:\"node_revision\";a:3:{s:10:\"left_table\";s:17:\"location_instance\";s:10:\"left_field\";s:3:\"lid\";s:5:\"field\";s:3:\"lid\";}s:18:\"taxonomy_term_data\";a:3:{s:10:\"left_table\";s:17:\"location_instance\";s:10:\"left_field\";s:3:\"lid\";s:5:\"field\";s:3:\"lid\";}s:5:\"users\";a:3:{s:10:\"left_table\";s:17:\"location_instance\";s:10:\"left_field\";s:3:\"lid\";s:5:\"field\";s:3:\"lid\";}}}s:3:\"lid\";a:5:{s:5:\"title\";s:3:\"Lid\";s:4:\"help\";s:31:\"L\'ID posizione della posizione.\";s:5:\"field\";a:2:{s:7:\"handler\";s:19:\"views_handler_field\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:2:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:4:\"name\";a:5:{s:5:\"title\";s:4:\"Nome\";s:4:\"help\";s:36:\"Il nome della posizione selezionata.\";s:5:\"field\";a:1:{s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:6:\"street\";a:5:{s:5:\"title\";s:3:\"Via\";s:4:\"help\";s:35:\"La via della posizione selezionata.\";s:5:\"field\";a:2:{s:7:\"handler\";s:38:\"location_handler_field_location_street\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:10:\"additional\";a:6:{s:5:\"title\";s:10:\"Aggiuntivo\";s:4:\"help\";s:51:\"Additional street address of the selected location.\";s:5:\"field\";a:1:{s:14:\"click sortable\";b:1;}s:8:\"argument\";a:1:{s:7:\"handler\";s:29:\"views_handler_argument_string\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:4:\"city\";a:6:{s:5:\"title\";s:6:\"Città\";s:4:\"help\";s:38:\"La città della posizione selezionata.\";s:5:\"field\";a:1:{s:14:\"click sortable\";b:1;}s:8:\"argument\";a:2:{s:7:\"handler\";s:29:\"views_handler_argument_string\";s:16:\"empty field name\";s:11:\"Sconosciuto\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:8:\"province\";a:6:{s:5:\"title\";s:9:\"Provincia\";s:4:\"help\";s:41:\"La provincia della posizione selezionata.\";s:5:\"field\";a:2:{s:7:\"handler\";s:40:\"location_handler_field_location_province\";s:14:\"click sortable\";b:1;}s:8:\"argument\";a:1:{s:7:\"handler\";s:43:\"location_handler_argument_location_province\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:41:\"location_handler_filter_location_province\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:11:\"postal_code\";a:5:{s:5:\"title\";s:14:\"Codice postale\";s:4:\"help\";s:46:\"Il codice postale della posizione selezionata.\";s:5:\"field\";a:1:{s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:7:\"country\";a:6:{s:5:\"title\";s:5:\"Paese\";s:4:\"help\";s:39:\"La nazione della posizione selezionata.\";s:5:\"field\";a:2:{s:7:\"handler\";s:39:\"location_handler_field_location_country\";s:14:\"click sortable\";b:1;}s:8:\"argument\";a:1:{s:7:\"handler\";s:42:\"location_handler_argument_location_country\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:40:\"location_handler_filter_location_country\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:38:\"location_handler_sort_location_country\";}}s:8:\"latitude\";a:5:{s:5:\"title\";s:10:\"Latitudine\";s:4:\"help\";s:42:\"La latitudine della posizione selezionata.\";s:5:\"field\";a:2:{s:7:\"handler\";s:37:\"location_views_handler_field_latitude\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:9:\"longitude\";a:5:{s:5:\"title\";s:11:\"Longitudine\";s:4:\"help\";s:43:\"La longitudine della posizione selezionata.\";s:5:\"field\";a:2:{s:7:\"handler\";s:38:\"location_views_handler_field_longitude\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:11:\"coordinates\";a:3:{s:5:\"title\";s:10:\"Coordinate\";s:4:\"help\";s:66:\"Le coordinate della posizione selezionata nel formato \'lat, long\'.\";s:5:\"field\";a:3:{s:5:\"field\";s:8:\"latitude\";s:7:\"handler\";s:40:\"location_views_handler_field_coordinates\";s:14:\"click sortable\";b:0;}}s:8:\"distance\";a:6:{s:5:\"title\";s:22:\"Distanza / Prossimità\";s:4:\"help\";s:86:\"La distanza dalla posizione selezionata e l\'utente corrente o una posizione specifica.\";s:5:\"field\";a:2:{s:7:\"handler\";s:40:\"location_handler_field_location_distance\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:39:\"location_handler_sort_location_distance\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:44:\"location_handler_argument_location_proximity\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:39:\"location_views_handler_filter_proximity\";}}s:7:\"address\";a:3:{s:5:\"title\";s:9:\"Indirizzo\";s:4:\"help\";s:50:\"Il blocco dell\'indirizzo completo della posizione.\";s:5:\"field\";a:3:{s:5:\"field\";s:3:\"lid\";s:7:\"handler\";s:39:\"location_handler_field_location_address\";s:12:\"element type\";s:3:\"div\";}}}s:17:\"location_instance\";a:1:{s:5:\"table\";a:2:{s:5:\"group\";s:8:\"Location\";s:4:\"join\";a:5:{s:8:\"location\";a:2:{s:10:\"left_field\";s:3:\"lid\";s:5:\"field\";s:3:\"lid\";}s:5:\"users\";a:2:{s:10:\"left_field\";s:3:\"uid\";s:5:\"field\";s:3:\"uid\";}s:4:\"node\";a:2:{s:10:\"left_field\";s:3:\"vid\";s:5:\"field\";s:3:\"vid\";}s:13:\"node_revision\";a:2:{s:10:\"left_field\";s:3:\"vid\";s:5:\"field\";s:3:\"vid\";}s:18:\"taxonomy_term_data\";a:2:{s:10:\"left_field\";s:3:\"tid\";s:5:\"field\";s:3:\"vid\";}}}}s:4:\"node\";a:47:{s:5:\"table\";a:5:{s:4:\"join\";a:3:{s:8:\"location\";a:3:{s:10:\"left_table\";s:17:\"location_instance\";s:10:\"left_field\";s:3:\"vid\";s:5:\"field\";s:3:\"vid\";}s:12:\"photos_album\";a:2:{s:10:\"left_field\";s:3:\"pid\";s:5:\"field\";s:3:\"nid\";}s:4:\"node\";a:2:{s:10:\"left_field\";s:4:\"tnid\";s:5:\"field\";s:4:\"tnid\";}}s:5:\"group\";s:9:\"Contenuto\";s:4:\"base\";a:5:{s:5:\"field\";s:3:\"nid\";s:5:\"title\";s:9:\"Contenuto\";s:6:\"weight\";i:-10;s:16:\"access query tag\";s:11:\"node_access\";s:8:\"defaults\";a:1:{s:5:\"field\";s:5:\"title\";}}s:11:\"entity type\";s:4:\"node\";s:20:\"default_relationship\";a:1:{s:13:\"node_revision\";a:2:{s:5:\"table\";s:13:\"node_revision\";s:5:\"field\";s:3:\"vid\";}}}s:3:\"nid\";a:6:{s:5:\"title\";s:3:\"Nid\";s:4:\"help\";s:12:\"The node ID.\";s:5:\"field\";a:2:{s:7:\"handler\";s:24:\"views_handler_field_node\";s:14:\"click sortable\";b:1;}s:8:\"argument\";a:4:{s:7:\"handler\";s:31:\"views_handler_argument_node_nid\";s:10:\"name field\";s:5:\"title\";s:7:\"numeric\";b:1;s:13:\"validate type\";s:3:\"nid\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:5:\"title\";a:6:{s:5:\"title\";s:6:\"Titolo\";s:4:\"help\";s:18:\"The content title.\";s:5:\"field\";a:5:{s:5:\"field\";s:5:\"title\";s:5:\"group\";s:9:\"Contenuto\";s:7:\"handler\";s:24:\"views_handler_field_node\";s:14:\"click sortable\";b:1;s:20:\"link_to_node default\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:29:\"views_handler_argument_string\";}}s:7:\"created\";a:5:{s:5:\"title\";s:9:\"Post date\";s:4:\"help\";s:32:\"The date the content was posted.\";s:5:\"field\";a:2:{s:7:\"handler\";s:24:\"views_handler_field_date\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:23:\"views_handler_sort_date\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:25:\"views_handler_filter_date\";}}s:7:\"changed\";a:5:{s:5:\"title\";s:12:\"Updated date\";s:4:\"help\";s:38:\"The date the content was last updated.\";s:5:\"field\";a:2:{s:7:\"handler\";s:24:\"views_handler_field_date\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:23:\"views_handler_sort_date\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:25:\"views_handler_filter_date\";}}s:4:\"type\";a:6:{s:5:\"title\";s:4:\"Tipo\";s:4:\"help\";s:73:\"The content type (for example, \"blog entry\", \"forum post\", \"story\", etc).\";s:5:\"field\";a:2:{s:7:\"handler\";s:29:\"views_handler_field_node_type\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:30:\"views_handler_filter_node_type\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:32:\"views_handler_argument_node_type\";}}s:6:\"status\";a:5:{s:5:\"title\";s:10:\"Pubblicato\";s:4:\"help\";s:40:\"Whether or not the content is published.\";s:5:\"field\";a:3:{s:7:\"handler\";s:27:\"views_handler_field_boolean\";s:14:\"click sortable\";b:1;s:14:\"output formats\";a:1:{s:22:\"published-notpublished\";a:2:{i:0;s:10:\"Pubblicato\";i:1;s:14:\"Non pubblicato\";}}}s:6:\"filter\";a:4:{s:7:\"handler\";s:37:\"views_handler_filter_boolean_operator\";s:5:\"label\";s:10:\"Pubblicato\";s:4:\"type\";s:6:\"yes-no\";s:9:\"use equal\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:12:\"status_extra\";a:3:{s:5:\"title\";s:18:\"Published or admin\";s:4:\"help\";s:67:\"Filters out unpublished content if the current user cannot view it.\";s:6:\"filter\";a:3:{s:5:\"field\";s:6:\"status\";s:7:\"handler\";s:32:\"views_handler_filter_node_status\";s:5:\"label\";s:18:\"Published or admin\";}}s:7:\"promote\";a:5:{s:5:\"title\";s:26:\"Promosso alla prima pagina\";s:4:\"help\";s:57:\"Whether or not the content is promoted to the front page.\";s:5:\"field\";a:3:{s:7:\"handler\";s:27:\"views_handler_field_boolean\";s:14:\"click sortable\";b:1;s:14:\"output formats\";a:1:{s:20:\"promoted-notpromoted\";a:2:{i:0;s:8:\"Promoted\";i:1;s:12:\"Not promoted\";}}}s:6:\"filter\";a:3:{s:7:\"handler\";s:37:\"views_handler_filter_boolean_operator\";s:5:\"label\";s:26:\"Promosso alla prima pagina\";s:4:\"type\";s:6:\"yes-no\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:6:\"sticky\";a:5:{s:5:\"title\";s:6:\"Sticky\";s:4:\"help\";s:37:\"Whether or not the content is sticky.\";s:5:\"field\";a:3:{s:7:\"handler\";s:27:\"views_handler_field_boolean\";s:14:\"click sortable\";b:1;s:14:\"output formats\";a:1:{s:6:\"sticky\";a:2:{i:0;s:6:\"Sticky\";i:1;s:10:\"Not sticky\";}}}s:6:\"filter\";a:3:{s:7:\"handler\";s:37:\"views_handler_filter_boolean_operator\";s:5:\"label\";s:6:\"Sticky\";s:4:\"type\";s:6:\"yes-no\";}s:4:\"sort\";a:2:{s:7:\"handler\";s:18:\"views_handler_sort\";s:4:\"help\";s:91:\"Whether or not the content is sticky. To list sticky content first, set this to descending.\";}}s:9:\"view_node\";a:1:{s:8:\"moved to\";a:2:{i:0;s:17:\"views_entity_node\";i:1;s:9:\"view_node\";}}s:9:\"edit_node\";a:1:{s:8:\"moved to\";a:2:{i:0;s:17:\"views_entity_node\";i:1;s:9:\"edit_node\";}}s:11:\"delete_node\";a:1:{s:8:\"moved to\";a:2:{i:0;s:17:\"views_entity_node\";i:1;s:11:\"delete_node\";}}s:4:\"path\";a:1:{s:5:\"field\";a:3:{s:5:\"title\";s:8:\"Percorso\";s:4:\"help\";s:33:\"The aliased path to this content.\";s:7:\"handler\";s:29:\"views_handler_field_node_path\";}}s:16:\"created_fulldate\";a:3:{s:5:\"title\";s:12:\"Created date\";s:4:\"help\";s:29:\"Date in the form of CCYYMMDD.\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:44:\"views_handler_argument_node_created_fulldate\";}}s:18:\"created_year_month\";a:3:{s:5:\"title\";s:20:\"Created year + month\";s:4:\"help\";s:27:\"Date in the form of YYYYMM.\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:46:\"views_handler_argument_node_created_year_month\";}}s:12:\"created_year\";a:3:{s:5:\"title\";s:12:\"Created year\";s:4:\"help\";s:25:\"Date in the form of YYYY.\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:40:\"views_handler_argument_node_created_year\";}}s:13:\"created_month\";a:3:{s:5:\"title\";s:13:\"Created month\";s:4:\"help\";s:33:\"Date in the form of MM (01 - 12).\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:41:\"views_handler_argument_node_created_month\";}}s:11:\"created_day\";a:3:{s:5:\"title\";s:11:\"Created day\";s:4:\"help\";s:33:\"Date in the form of DD (01 - 31).\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:39:\"views_handler_argument_node_created_day\";}}s:12:\"created_week\";a:3:{s:5:\"title\";s:12:\"Created week\";s:4:\"help\";s:33:\"Date in the form of WW (01 - 53).\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:40:\"views_handler_argument_node_created_week\";}}s:16:\"changed_fulldate\";a:3:{s:5:\"title\";s:12:\"Updated date\";s:4:\"help\";s:29:\"Date in the form of CCYYMMDD.\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"changed\";s:7:\"handler\";s:44:\"views_handler_argument_node_created_fulldate\";}}s:18:\"changed_year_month\";a:3:{s:5:\"title\";s:20:\"Updated year + month\";s:4:\"help\";s:27:\"Date in the form of YYYYMM.\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"changed\";s:7:\"handler\";s:46:\"views_handler_argument_node_created_year_month\";}}s:12:\"changed_year\";a:3:{s:5:\"title\";s:12:\"Updated year\";s:4:\"help\";s:25:\"Date in the form of YYYY.\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"changed\";s:7:\"handler\";s:40:\"views_handler_argument_node_created_year\";}}s:13:\"changed_month\";a:3:{s:5:\"title\";s:13:\"Updated month\";s:4:\"help\";s:33:\"Date in the form of MM (01 - 12).\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"changed\";s:7:\"handler\";s:41:\"views_handler_argument_node_created_month\";}}s:11:\"changed_day\";a:3:{s:5:\"title\";s:11:\"Updated day\";s:4:\"help\";s:33:\"Date in the form of DD (01 - 31).\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"changed\";s:7:\"handler\";s:39:\"views_handler_argument_node_created_day\";}}s:12:\"changed_week\";a:3:{s:5:\"title\";s:12:\"Updated week\";s:4:\"help\";s:33:\"Date in the form of WW (01 - 53).\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"changed\";s:7:\"handler\";s:40:\"views_handler_argument_node_created_week\";}}s:3:\"uid\";a:6:{s:5:\"title\";s:10:\"Author uid\";s:4:\"help\";s:105:\"The user authoring the content. If you need more fields than the uid add the content: author relationship\";s:12:\"relationship\";a:6:{s:5:\"title\";s:6:\"Autore\";s:4:\"help\";s:42:\"Relate content to the user who created it.\";s:7:\"handler\";s:26:\"views_handler_relationship\";s:4:\"base\";s:5:\"users\";s:5:\"field\";s:3:\"uid\";s:5:\"label\";s:6:\"author\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:30:\"views_handler_filter_user_name\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:30:\"views_handler_argument_numeric\";}s:5:\"field\";a:1:{s:7:\"handler\";s:24:\"views_handler_field_user\";}}s:12:\"uid_revision\";a:5:{s:5:\"title\";s:19:\"User has a revision\";s:4:\"help\";s:45:\"All nodes where a certain user has a revision\";s:10:\"real field\";s:3:\"nid\";s:6:\"filter\";a:1:{s:7:\"handler\";s:38:\"views_handler_filter_node_uid_revision\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:40:\"views_handler_argument_node_uid_revision\";}}s:13:\"version_count\";a:5:{s:5:\"title\";s:13:\"Version Count\";s:4:\"help\";s:56:\"The total count of versions/revisions of a certain node.\";s:5:\"field\";a:3:{s:7:\"handler\";s:38:\"views_handler_field_node_version_count\";s:5:\"field\";s:3:\"nid\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:2:{s:7:\"handler\";s:39:\"views_handler_filter_node_version_count\";s:11:\"allow empty\";b:0;}s:4:\"sort\";a:1:{s:7:\"handler\";s:37:\"views_handler_sort_node_version_count\";}}s:12:\"new_comments\";a:3:{s:5:\"title\";s:14:\"Nuovi commenti\";s:4:\"help\";s:39:\"The number of new comments on the node.\";s:5:\"field\";a:2:{s:7:\"handler\";s:37:\"views_handler_field_node_new_comments\";s:11:\"no group by\";b:1;}}s:13:\"comments_link\";a:1:{s:5:\"field\";a:3:{s:5:\"title\";s:16:\"Add comment link\";s:4:\"help\";s:133:\"Display the standard add comment link used on regular nodes, which will only display if the viewing user has access to add a comment.\";s:7:\"handler\";s:37:\"views_handler_field_comment_node_link\";}}s:7:\"comment\";a:5:{s:5:\"title\";s:14:\"Comment status\";s:4:\"help\";s:53:\"Whether comments are enabled or disabled on the node.\";s:5:\"field\";a:2:{s:7:\"handler\";s:32:\"views_handler_field_node_comment\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:33:\"views_handler_filter_node_comment\";}}s:9:\"uid_touch\";a:4:{s:5:\"title\";s:24:\"User posted or commented\";s:4:\"help\";s:70:\"Display nodes only if a user posted the node or commented on the node.\";s:8:\"argument\";a:5:{s:5:\"field\";s:3:\"uid\";s:10:\"name table\";s:5:\"users\";s:10:\"name field\";s:4:\"name\";s:7:\"handler\";s:39:\"views_handler_argument_comment_user_uid\";s:11:\"no group by\";b:1;}s:6:\"filter\";a:4:{s:5:\"field\";s:3:\"uid\";s:10:\"name table\";s:5:\"users\";s:10:\"name field\";s:4:\"name\";s:7:\"handler\";s:37:\"views_handler_filter_comment_user_uid\";}}s:3:\"cid\";a:3:{s:5:\"title\";s:20:\"Comments of the node\";s:4:\"help\";s:151:\"Relate all comments on the node. This will create 1 duplicate record for every comment. Usually if you need this it is better to create a comment view.\";s:12:\"relationship\";a:6:{s:5:\"group\";s:8:\"Commento\";s:5:\"label\";s:8:\"Commenti\";s:4:\"base\";s:7:\"comment\";s:10:\"base field\";s:3:\"nid\";s:18:\"relationship field\";s:3:\"nid\";s:7:\"handler\";s:26:\"views_handler_relationship\";}}s:8:\"language\";a:6:{s:5:\"title\";s:6:\"Lingua\";s:4:\"help\";s:31:\"The language the content is in.\";s:5:\"field\";a:2:{s:7:\"handler\";s:33:\"views_handler_field_node_language\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:34:\"views_handler_filter_node_language\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:36:\"views_handler_argument_node_language\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:17:\"specific_language\";a:3:{s:5:\"title\";s:17:\"Specific language\";s:4:\"help\";s:51:\"Sort by a specific language that the content is in.\";s:4:\"sort\";a:1:{s:7:\"handler\";s:32:\"views_handler_sort_node_language\";}}s:13:\"term_node_tid\";a:4:{s:5:\"title\";s:22:\"Taxonomy terms on node\";s:4:\"help\";s:161:\"Relate nodes to taxonomy terms, specifiying which vocabulary or vocabularies to use. This relationship will cause duplicated records if there are multiple terms.\";s:12:\"relationship\";a:3:{s:7:\"handler\";s:41:\"views_handler_relationship_node_term_data\";s:5:\"label\";s:4:\"term\";s:4:\"base\";s:18:\"taxonomy_term_data\";}s:5:\"field\";a:4:{s:5:\"title\";s:18:\"All taxonomy terms\";s:4:\"help\";s:78:\"Display all taxonomy terms associated with a node from specified vocabularies.\";s:7:\"handler\";s:33:\"views_handler_field_term_node_tid\";s:11:\"no group by\";b:1;}}s:19:\"term_node_tid_depth\";a:4:{s:4:\"help\";s:175:\"Display content if it has the selected taxonomy terms, or children of the selected terms. Due to additional complexity, this has fewer options than the versions without depth.\";s:10:\"real field\";s:3:\"nid\";s:8:\"argument\";a:3:{s:5:\"title\";s:33:\"Has taxonomy term ID (with depth)\";s:7:\"handler\";s:42:\"views_handler_argument_term_node_tid_depth\";s:21:\"accept depth modifier\";b:1;}s:6:\"filter\";a:2:{s:5:\"title\";s:31:\"Has taxonomy terms (with depth)\";s:7:\"handler\";s:40:\"views_handler_filter_term_node_tid_depth\";}}s:24:\"term_node_tid_depth_join\";a:4:{s:4:\"help\";s:175:\"Display content if it has the selected taxonomy terms, or children of the selected terms. Due to additional complexity, this has fewer options than the versions without depth.\";s:10:\"real field\";s:3:\"nid\";s:8:\"argument\";a:3:{s:5:\"title\";s:45:\"Has taxonomy term ID with depth (using joins)\";s:7:\"handler\";s:47:\"views_handler_argument_term_node_tid_depth_join\";s:21:\"accept depth modifier\";b:1;}s:6:\"filter\";a:2:{s:5:\"title\";s:43:\"Has taxonomy terms with depth (using joins)\";s:7:\"handler\";s:45:\"views_handler_filter_term_node_tid_depth_join\";}}s:28:\"term_node_tid_depth_modifier\";a:3:{s:5:\"title\";s:35:\"Has taxonomy term ID depth modifier\";s:4:\"help\";s:111:\"Allows the \"depth\" for Taxonomy: Term ID (with depth) to be modified via an additional contextual filter value.\";s:8:\"argument\";a:1:{s:7:\"handler\";s:51:\"views_handler_argument_term_node_tid_depth_modifier\";}}s:4:\"tnid\";a:8:{s:5:\"group\";s:24:\"Traduzione dei contenuti\";s:5:\"title\";s:23:\"Translation set node ID\";s:4:\"help\";s:53:\"The ID of the translation set the content belongs to.\";s:5:\"field\";a:2:{s:7:\"handler\";s:24:\"views_handler_field_node\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:8:\"argument\";a:4:{s:7:\"handler\";s:32:\"views_handler_argument_node_tnid\";s:10:\"name field\";s:5:\"title\";s:7:\"numeric\";b:1;s:13:\"validate type\";s:4:\"tnid\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:12:\"relationship\";a:6:{s:5:\"title\";s:18:\"Source translation\";s:4:\"help\";s:49:\"The source that this content was translated from.\";s:4:\"base\";s:4:\"node\";s:10:\"base field\";s:3:\"nid\";s:7:\"handler\";s:26:\"views_handler_relationship\";s:5:\"label\";s:18:\"Source translation\";}}s:11:\"translation\";a:4:{s:5:\"group\";s:24:\"Traduzione dei contenuti\";s:5:\"title\";s:12:\"Translations\";s:4:\"help\";s:43:\"Versions of content in different languages.\";s:12:\"relationship\";a:8:{s:5:\"title\";s:12:\"Translations\";s:4:\"help\";s:43:\"Versions of content in different languages.\";s:4:\"base\";s:4:\"node\";s:10:\"base field\";s:4:\"tnid\";s:18:\"relationship table\";s:4:\"node\";s:18:\"relationship field\";s:4:\"tnid\";s:7:\"handler\";s:38:\"views_handler_relationship_translation\";s:5:\"label\";s:12:\"Translations\";}}s:18:\"source_translation\";a:4:{s:5:\"group\";s:24:\"Traduzione dei contenuti\";s:5:\"title\";s:18:\"Source translation\";s:4:\"help\";s:84:\"Content that is either untranslated or is the original version of a translation set.\";s:6:\"filter\";a:1:{s:7:\"handler\";s:30:\"views_handler_filter_node_tnid\";}}s:17:\"child_translation\";a:4:{s:5:\"group\";s:16:\"Node translation\";s:5:\"title\";s:17:\"Child translation\";s:4:\"help\";s:54:\"Content that is a translation of a source translation.\";s:6:\"filter\";a:1:{s:7:\"handler\";s:36:\"views_handler_filter_node_tnid_child\";}}s:9:\"translate\";a:6:{s:5:\"group\";s:24:\"Traduzione dei contenuti\";s:5:\"title\";s:18:\"Translation status\";s:4:\"help\";s:91:\"The translation status of the content - whether or not the translation needs to be updated.\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_boolean\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:3:{s:7:\"handler\";s:37:\"views_handler_filter_boolean_operator\";s:5:\"label\";s:8:\"Outdated\";s:4:\"type\";s:6:\"yes-no\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:14:\"translate_node\";a:4:{s:5:\"group\";s:24:\"Traduzione dei contenuti\";s:5:\"title\";s:14:\"Translate link\";s:4:\"help\";s:44:\"Provide a simple link to translate the node.\";s:5:\"field\";a:1:{s:7:\"handler\";s:39:\"views_handler_field_node_link_translate\";}}s:19:\"entity_translations\";a:3:{s:5:\"title\";s:32:\"Entity translation: translations\";s:4:\"help\";s:24:\"Translation information.\";s:12:\"relationship\";a:8:{s:5:\"label\";s:12:\"Translations\";s:4:\"base\";s:18:\"entity_translation\";s:10:\"base field\";s:9:\"entity_id\";s:18:\"relationship field\";s:3:\"nid\";s:7:\"handler\";s:39:\"entity_translation_handler_relationship\";s:10:\"left_table\";s:4:\"node\";s:10:\"left_field\";s:3:\"nid\";s:11:\"entity type\";s:4:\"node\";}}}s:13:\"node_revision\";a:10:{s:5:\"table\";a:6:{s:4:\"join\";a:2:{s:8:\"location\";a:3:{s:10:\"left_table\";s:17:\"location_instance\";s:10:\"left_field\";s:3:\"vid\";s:5:\"field\";s:3:\"vid\";}s:4:\"node\";a:2:{s:10:\"left_field\";s:3:\"vid\";s:5:\"field\";s:3:\"vid\";}}s:11:\"entity type\";s:4:\"node\";s:8:\"revision\";b:1;s:5:\"group\";s:16:\"Content revision\";s:4:\"base\";a:4:{s:5:\"field\";s:3:\"vid\";s:5:\"title\";s:16:\"Content revision\";s:4:\"help\";s:52:\"Content revision is a history of changes to content.\";s:8:\"defaults\";a:1:{s:5:\"field\";s:5:\"title\";}}s:20:\"default_relationship\";a:1:{s:4:\"node\";a:2:{s:5:\"table\";s:4:\"node\";s:5:\"field\";s:3:\"nid\";}}}s:3:\"uid\";a:3:{s:5:\"title\";s:6:\"Utente\";s:4:\"help\";s:63:\"Relate a content revision to the user who created the revision.\";s:12:\"relationship\";a:4:{s:7:\"handler\";s:26:\"views_handler_relationship\";s:4:\"base\";s:5:\"users\";s:10:\"base field\";s:3:\"uid\";s:5:\"label\";s:13:\"revision user\";}}s:3:\"nid\";a:7:{s:5:\"title\";s:3:\"Nid\";s:4:\"help\";s:41:\"The revision NID of the content revision.\";s:5:\"field\";a:1:{s:14:\"click sortable\";b:1;}s:8:\"argument\";a:3:{s:7:\"handler\";s:31:\"views_handler_argument_node_nid\";s:14:\"click sortable\";b:1;s:7:\"numeric\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:12:\"relationship\";a:5:{s:7:\"handler\";s:26:\"views_handler_relationship\";s:4:\"base\";s:4:\"node\";s:10:\"base field\";s:3:\"nid\";s:5:\"title\";s:9:\"Contenuto\";s:5:\"label\";s:47:\"Get the actual content from a content revision.\";}}s:3:\"vid\";a:7:{s:5:\"title\";s:3:\"Vid\";s:4:\"help\";s:40:\"The revision ID of the content revision.\";s:5:\"field\";a:1:{s:14:\"click sortable\";b:1;}s:8:\"argument\";a:3:{s:7:\"handler\";s:31:\"views_handler_argument_node_vid\";s:14:\"click sortable\";b:1;s:7:\"numeric\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:12:\"relationship\";a:5:{s:7:\"handler\";s:26:\"views_handler_relationship\";s:4:\"base\";s:4:\"node\";s:10:\"base field\";s:3:\"vid\";s:5:\"title\";s:9:\"Contenuto\";s:5:\"label\";s:47:\"Get the actual content from a content revision.\";}}s:5:\"title\";a:6:{s:5:\"title\";s:6:\"Titolo\";s:4:\"help\";s:18:\"The content title.\";s:5:\"field\";a:3:{s:5:\"field\";s:5:\"title\";s:7:\"handler\";s:33:\"views_handler_field_node_revision\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:29:\"views_handler_argument_string\";}}s:3:\"log\";a:4:{s:5:\"title\";s:11:\"Log message\";s:4:\"help\";s:54:\"The log message entered when the revision was created.\";s:5:\"field\";a:1:{s:7:\"handler\";s:23:\"views_handler_field_xss\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}}s:9:\"timestamp\";a:5:{s:5:\"title\";s:12:\"Updated date\";s:4:\"help\";s:35:\"The date the node was last updated.\";s:5:\"field\";a:2:{s:7:\"handler\";s:24:\"views_handler_field_date\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:23:\"views_handler_sort_date\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:25:\"views_handler_filter_date\";}}s:16:\"link_to_revision\";a:1:{s:5:\"field\";a:3:{s:5:\"title\";s:4:\"Link\";s:4:\"help\";s:38:\"Provide a simple link to the revision.\";s:7:\"handler\";s:38:\"views_handler_field_node_revision_link\";}}s:15:\"revert_revision\";a:1:{s:5:\"field\";a:3:{s:5:\"title\";s:11:\"Revert link\";s:4:\"help\";s:48:\"Provide a simple link to revert to the revision.\";s:7:\"handler\";s:45:\"views_handler_field_node_revision_link_revert\";}}s:15:\"delete_revision\";a:1:{s:5:\"field\";a:3:{s:5:\"title\";s:11:\"Delete link\";s:4:\"help\";s:53:\"Provide a simple link to delete the content revision.\";s:7:\"handler\";s:45:\"views_handler_field_node_revision_link_delete\";}}}s:18:\"taxonomy_term_data\";a:12:{s:5:\"table\";a:5:{s:4:\"join\";a:3:{s:8:\"location\";a:3:{s:10:\"left_table\";s:17:\"location_instance\";s:10:\"left_field\";s:3:\"vid\";s:5:\"field\";s:3:\"tid\";}s:19:\"taxonomy_vocabulary\";a:2:{s:5:\"field\";s:3:\"vid\";s:10:\"left_field\";s:3:\"vid\";}s:14:\"taxonomy_index\";a:2:{s:5:\"field\";s:3:\"tid\";s:10:\"left_field\";s:3:\"tid\";}}s:5:\"group\";s:24:\"Termine della tassonomia\";s:4:\"base\";a:4:{s:5:\"field\";s:3:\"tid\";s:5:\"title\";s:4:\"Term\";s:4:\"help\";s:37:\"Taxonomy terms are attached to nodes.\";s:16:\"access query tag\";s:20:\"taxonomy_term_access\";}s:11:\"entity type\";s:13:\"taxonomy_term\";s:20:\"default_relationship\";a:1:{s:4:\"node\";a:2:{s:5:\"table\";s:4:\"node\";s:5:\"field\";s:13:\"term_node_tid\";}}}s:3:\"tid\";a:6:{s:5:\"title\";s:10:\"ID Termine\";s:4:\"help\";s:27:\"The tid of a taxonomy term.\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_numeric\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:8:\"argument\";a:3:{s:7:\"handler\";s:31:\"views_handler_argument_taxonomy\";s:10:\"name field\";s:4:\"name\";s:12:\"zero is null\";b:1;}s:6:\"filter\";a:5:{s:5:\"title\";s:4:\"Term\";s:4:\"help\";s:56:\"Taxonomy term chosen from autocomplete or select widget.\";s:7:\"handler\";s:34:\"views_handler_filter_term_node_tid\";s:15:\"hierarchy table\";s:23:\"taxonomy_term_hierarchy\";s:7:\"numeric\";b:1;}}s:7:\"tid_raw\";a:4:{s:5:\"title\";s:10:\"ID Termine\";s:4:\"help\";s:27:\"The tid of a taxonomy term.\";s:10:\"real field\";s:3:\"tid\";s:6:\"filter\";a:2:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:11:\"allow empty\";b:1;}}s:18:\"tid_representative\";a:1:{s:12:\"relationship\";a:10:{s:5:\"title\";s:19:\"Representative node\";s:5:\"label\";s:19:\"Representative node\";s:4:\"help\";s:89:\"Obtains a single representative node for each term, according to a chosen sort criterion.\";s:7:\"handler\";s:40:\"views_handler_relationship_groupwise_max\";s:18:\"relationship field\";s:3:\"tid\";s:11:\"outer field\";s:22:\"taxonomy_term_data.tid\";s:14:\"argument table\";s:18:\"taxonomy_term_data\";s:14:\"argument field\";s:3:\"tid\";s:4:\"base\";s:4:\"node\";s:5:\"field\";s:3:\"nid\";}}s:4:\"name\";a:6:{s:5:\"title\";s:4:\"Nome\";s:4:\"help\";s:23:\"The taxonomy term name.\";s:5:\"field\";a:2:{s:7:\"handler\";s:28:\"views_handler_field_taxonomy\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:6:\"filter\";a:2:{s:7:\"handler\";s:27:\"views_handler_filter_string\";s:4:\"help\";s:19:\"Taxonomy term name.\";}s:8:\"argument\";a:4:{s:7:\"handler\";s:29:\"views_handler_argument_string\";s:4:\"help\";s:19:\"Taxonomy term name.\";s:11:\"many to one\";b:1;s:16:\"empty field name\";s:13:\"Uncategorized\";}}s:6:\"weight\";a:6:{s:5:\"title\";s:4:\"Peso\";s:4:\"help\";s:21:\"The term weight field\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_numeric\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:30:\"views_handler_argument_numeric\";}}s:11:\"description\";a:4:{s:5:\"title\";s:23:\"Descrizione del termine\";s:4:\"help\";s:48:\"The description associated with a taxonomy term.\";s:5:\"field\";a:2:{s:7:\"handler\";s:26:\"views_handler_field_markup\";s:6:\"format\";a:1:{s:5:\"field\";s:6:\"format\";}}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}}s:3:\"vid\";a:3:{s:5:\"title\";s:11:\"Vocabolario\";s:4:\"help\";s:66:\"Filter the results of \"Taxonomy: Term\" to a particular vocabulary.\";s:6:\"filter\";a:1:{s:7:\"handler\";s:35:\"views_handler_filter_vocabulary_vid\";}}s:9:\"edit_term\";a:1:{s:5:\"field\";a:3:{s:5:\"title\";s:14:\"Term edit link\";s:4:\"help\";s:39:\"Provide a simple link to edit the term.\";s:7:\"handler\";s:34:\"views_handler_field_term_link_edit\";}}s:23:\"reverse_field_tags_node\";a:1:{s:12:\"relationship\";a:10:{s:5:\"title\";s:20:\"Contenuto using Tags\";s:4:\"help\";s:50:\"Relate each Contenuto with a Tags set to the term.\";s:7:\"handler\";s:41:\"views_handler_relationship_entity_reverse\";s:10:\"field_name\";s:10:\"field_tags\";s:11:\"field table\";s:21:\"field_data_field_tags\";s:11:\"field field\";s:14:\"field_tags_tid\";s:4:\"base\";s:4:\"node\";s:10:\"base field\";s:3:\"nid\";s:5:\"label\";s:10:\"field_tags\";s:10:\"join_extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}s:28:\"reverse_taxonomy_forums_node\";a:1:{s:12:\"relationship\";a:10:{s:5:\"title\";s:22:\"Contenuto using Forums\";s:4:\"help\";s:52:\"Relate each Contenuto with a Forums set to the term.\";s:7:\"handler\";s:41:\"views_handler_relationship_entity_reverse\";s:10:\"field_name\";s:15:\"taxonomy_forums\";s:11:\"field table\";s:26:\"field_data_taxonomy_forums\";s:11:\"field field\";s:19:\"taxonomy_forums_tid\";s:4:\"base\";s:4:\"node\";s:10:\"base field\";s:3:\"nid\";s:5:\"label\";s:15:\"taxonomy_forums\";s:10:\"join_extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}s:19:\"entity_translations\";a:3:{s:5:\"title\";s:32:\"Entity translation: translations\";s:4:\"help\";s:24:\"Translation information.\";s:12:\"relationship\";a:8:{s:5:\"label\";s:12:\"Translations\";s:4:\"base\";s:18:\"entity_translation\";s:10:\"base field\";s:9:\"entity_id\";s:18:\"relationship field\";s:3:\"tid\";s:7:\"handler\";s:39:\"entity_translation_handler_relationship\";s:10:\"left_table\";s:18:\"taxonomy_term_data\";s:10:\"left_field\";s:3:\"tid\";s:11:\"entity type\";s:13:\"taxonomy_term\";}}}s:5:\"users\";a:28:{s:5:\"table\";a:5:{s:4:\"join\";a:1:{s:8:\"location\";a:3:{s:10:\"left_table\";s:17:\"location_instance\";s:10:\"left_field\";s:3:\"uid\";s:5:\"field\";s:3:\"uid\";}}s:5:\"group\";s:6:\"Utente\";s:4:\"base\";a:4:{s:5:\"field\";s:3:\"uid\";s:5:\"title\";s:6:\"Utente\";s:4:\"help\";s:45:\"Users who have created accounts on your site.\";s:16:\"access query tag\";s:11:\"user_access\";}s:11:\"entity type\";s:4:\"user\";s:20:\"default_relationship\";a:3:{s:4:\"node\";a:2:{s:5:\"table\";s:4:\"node\";s:5:\"field\";s:3:\"uid\";}s:13:\"node_revision\";a:2:{s:5:\"table\";s:13:\"node_revision\";s:5:\"field\";s:3:\"uid\";}s:4:\"file\";a:2:{s:5:\"table\";s:4:\"file\";s:5:\"field\";s:3:\"uid\";}}}s:3:\"uid\";a:7:{s:5:\"title\";s:3:\"Uid\";s:4:\"help\";s:11:\"The user ID\";s:5:\"field\";a:2:{s:7:\"handler\";s:24:\"views_handler_field_user\";s:14:\"click sortable\";b:1;}s:8:\"argument\";a:2:{s:7:\"handler\";s:31:\"views_handler_argument_user_uid\";s:10:\"name field\";s:4:\"name\";}s:6:\"filter\";a:2:{s:5:\"title\";s:4:\"Nome\";s:7:\"handler\";s:30:\"views_handler_filter_user_name\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:12:\"relationship\";a:7:{s:5:\"title\";s:16:\"Content authored\";s:4:\"help\";s:126:\"Relate content to the user who created it. This relationship will create one record for each content item created by the user.\";s:7:\"handler\";s:26:\"views_handler_relationship\";s:4:\"base\";s:4:\"node\";s:10:\"base field\";s:3:\"uid\";s:5:\"field\";s:3:\"uid\";s:5:\"label\";s:5:\"nodes\";}}s:7:\"uid_raw\";a:3:{s:4:\"help\";s:24:\"The raw numeric user ID.\";s:10:\"real field\";s:3:\"uid\";s:6:\"filter\";a:2:{s:5:\"title\";s:11:\"The user ID\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}}s:18:\"uid_representative\";a:1:{s:12:\"relationship\";a:10:{s:5:\"title\";s:19:\"Representative node\";s:5:\"label\";s:19:\"Representative node\";s:4:\"help\";s:89:\"Obtains a single representative node for each user, according to a chosen sort criterion.\";s:7:\"handler\";s:40:\"views_handler_relationship_groupwise_max\";s:18:\"relationship field\";s:3:\"uid\";s:11:\"outer field\";s:9:\"users.uid\";s:14:\"argument table\";s:5:\"users\";s:14:\"argument field\";s:3:\"uid\";s:4:\"base\";s:4:\"node\";s:5:\"field\";s:3:\"nid\";}}s:11:\"uid_current\";a:4:{s:10:\"real field\";s:3:\"uid\";s:5:\"title\";s:7:\"Current\";s:4:\"help\";s:48:\"Filter the view to the currently logged in user.\";s:6:\"filter\";a:2:{s:7:\"handler\";s:33:\"views_handler_filter_user_current\";s:4:\"type\";s:6:\"yes-no\";}}s:4:\"name\";a:6:{s:5:\"title\";s:4:\"Nome\";s:4:\"help\";s:24:\"The user or author name.\";s:5:\"field\";a:2:{s:7:\"handler\";s:29:\"views_handler_field_user_name\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:29:\"views_handler_argument_string\";}s:6:\"filter\";a:3:{s:7:\"handler\";s:27:\"views_handler_filter_string\";s:5:\"title\";s:10:\"Name (raw)\";s:4:\"help\";s:130:\"The user or author name. This filter does not check if the user exists and allows partial matching. Does not utilize autocomplete.\";}}s:4:\"mail\";a:6:{s:5:\"title\";s:6:\"E-mail\";s:4:\"help\";s:104:\"Email address for a given user. This field is normally not shown to users, so be cautious when using it.\";s:5:\"field\";a:2:{s:7:\"handler\";s:29:\"views_handler_field_user_mail\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:29:\"views_handler_argument_string\";}}s:8:\"language\";a:6:{s:5:\"title\";s:6:\"Lingua\";s:4:\"help\";s:20:\"Language of the user\";s:5:\"field\";a:2:{s:7:\"handler\";s:33:\"views_handler_field_user_language\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:34:\"views_handler_filter_node_language\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:36:\"views_handler_argument_node_language\";}}s:11:\"picture_fid\";a:1:{s:8:\"moved to\";a:2:{i:0;s:5:\"users\";i:1;s:7:\"picture\";}}s:7:\"picture\";a:5:{s:5:\"title\";s:8:\"Ritratto\";s:4:\"help\";s:31:\"The user\'s picture, if allowed.\";s:5:\"field\";a:2:{s:7:\"handler\";s:32:\"views_handler_field_user_picture\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:6:\"filter\";a:3:{s:7:\"handler\";s:37:\"views_handler_filter_boolean_operator\";s:5:\"label\";s:10:\"Has Avatar\";s:4:\"type\";s:6:\"yes-no\";}}s:9:\"view_user\";a:1:{s:5:\"field\";a:3:{s:5:\"title\";s:4:\"Link\";s:4:\"help\";s:34:\"Provide a simple link to the user.\";s:7:\"handler\";s:29:\"views_handler_field_user_link\";}}s:7:\"created\";a:5:{s:5:\"title\";s:12:\"Created date\";s:4:\"help\";s:30:\"The date the user was created.\";s:5:\"field\";a:2:{s:7:\"handler\";s:24:\"views_handler_field_date\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:23:\"views_handler_sort_date\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:25:\"views_handler_filter_date\";}}s:16:\"created_fulldate\";a:3:{s:5:\"title\";s:12:\"Created date\";s:4:\"help\";s:29:\"Date in the form of CCYYMMDD.\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:44:\"views_handler_argument_node_created_fulldate\";}}s:18:\"created_year_month\";a:3:{s:5:\"title\";s:20:\"Created year + month\";s:4:\"help\";s:27:\"Date in the form of YYYYMM.\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:46:\"views_handler_argument_node_created_year_month\";}}s:14:\"timestamp_year\";a:1:{s:8:\"moved to\";a:2:{i:0;s:5:\"users\";i:1;s:12:\"created_year\";}}s:12:\"created_year\";a:3:{s:5:\"title\";s:12:\"Created year\";s:4:\"help\";s:25:\"Date in the form of YYYY.\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:40:\"views_handler_argument_node_created_year\";}}s:13:\"created_month\";a:3:{s:5:\"title\";s:13:\"Created month\";s:4:\"help\";s:33:\"Date in the form of MM (01 - 12).\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:41:\"views_handler_argument_node_created_month\";}}s:11:\"created_day\";a:3:{s:5:\"title\";s:11:\"Created day\";s:4:\"help\";s:33:\"Date in the form of DD (01 - 31).\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:39:\"views_handler_argument_node_created_day\";}}s:12:\"created_week\";a:3:{s:5:\"title\";s:12:\"Created week\";s:4:\"help\";s:33:\"Date in the form of WW (01 - 53).\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:40:\"views_handler_argument_node_created_week\";}}s:6:\"access\";a:5:{s:5:\"title\";s:14:\"Ultimo accesso\";s:4:\"help\";s:28:\"The user\'s last access date.\";s:5:\"field\";a:2:{s:7:\"handler\";s:24:\"views_handler_field_date\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:23:\"views_handler_sort_date\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:25:\"views_handler_filter_date\";}}s:5:\"login\";a:5:{s:5:\"title\";s:12:\"Ultimo login\";s:4:\"help\";s:27:\"The user\'s last login date.\";s:5:\"field\";a:2:{s:7:\"handler\";s:24:\"views_handler_field_date\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:23:\"views_handler_sort_date\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:25:\"views_handler_filter_date\";}}s:6:\"status\";a:5:{s:5:\"title\";s:6:\"Attivo\";s:4:\"help\";s:36:\"Whether a user is active or blocked.\";s:5:\"field\";a:3:{s:7:\"handler\";s:27:\"views_handler_field_boolean\";s:14:\"click sortable\";b:1;s:14:\"output formats\";a:1:{s:14:\"active-blocked\";a:2:{i:0;s:6:\"Attivo\";i:1;s:8:\"Bloccato\";}}}s:6:\"filter\";a:3:{s:7:\"handler\";s:37:\"views_handler_filter_boolean_operator\";s:5:\"label\";s:6:\"Attivo\";s:4:\"type\";s:6:\"yes-no\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:9:\"signature\";a:4:{s:5:\"title\";s:5:\"Firma\";s:4:\"help\";s:21:\"The user\'s signature.\";s:5:\"field\";a:2:{s:7:\"handler\";s:26:\"views_handler_field_markup\";s:6:\"format\";s:10:\"plain_text\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}}s:9:\"edit_node\";a:1:{s:5:\"field\";a:3:{s:5:\"title\";s:9:\"Edit link\";s:4:\"help\";s:39:\"Provide a simple link to edit the user.\";s:7:\"handler\";s:34:\"views_handler_field_user_link_edit\";}}s:11:\"cancel_node\";a:1:{s:5:\"field\";a:3:{s:5:\"title\";s:11:\"Cancel link\";s:4:\"help\";s:41:\"Provide a simple link to cancel the user.\";s:7:\"handler\";s:36:\"views_handler_field_user_link_cancel\";}}s:4:\"data\";a:3:{s:5:\"title\";s:4:\"Data\";s:4:\"help\";s:35:\"Provide serialized data of the user\";s:5:\"field\";a:1:{s:7:\"handler\";s:30:\"views_handler_field_serialized\";}}s:7:\"contact\";a:1:{s:5:\"field\";a:3:{s:5:\"title\";s:20:\"Link to contact page\";s:4:\"help\";s:47:\"Provide a simple link to the user contact page.\";s:7:\"handler\";s:32:\"views_handler_field_contact_link\";}}s:19:\"entity_translations\";a:3:{s:5:\"title\";s:32:\"Entity translation: translations\";s:4:\"help\";s:24:\"Translation information.\";s:12:\"relationship\";a:8:{s:5:\"label\";s:12:\"Translations\";s:4:\"base\";s:18:\"entity_translation\";s:10:\"base field\";s:9:\"entity_id\";s:18:\"relationship field\";s:3:\"uid\";s:7:\"handler\";s:39:\"entity_translation_handler_relationship\";s:10:\"left_table\";s:5:\"users\";s:10:\"left_field\";s:3:\"uid\";s:11:\"entity type\";s:4:\"user\";}}}s:14:\"node_revisions\";a:2:{s:8:\"moved to\";s:13:\"node_revision\";s:4:\"body\";a:1:{s:8:\"moved to\";a:2:{i:0;s:19:\"field_revision_data\";i:1;s:16:\"body-revision_id\";}}}s:11:\"node_access\";a:2:{s:5:\"table\";a:2:{s:5:\"group\";s:14:\"Content access\";s:4:\"join\";a:1:{s:4:\"node\";a:2:{s:10:\"left_field\";s:3:\"nid\";s:5:\"field\";s:3:\"nid\";}}}s:3:\"nid\";a:3:{s:5:\"title\";s:6:\"Access\";s:4:\"help\";s:17:\"Filter by access.\";s:6:\"filter\";a:2:{s:7:\"handler\";s:32:\"views_handler_filter_node_access\";s:4:\"help\";s:107:\"Filter for content by view access. <strong>Not necessary if you are using node as your base table.</strong>\";}}}s:12:\"history_user\";a:1:{s:8:\"moved to\";s:7:\"history\";}s:7:\"history\";a:2:{s:5:\"table\";a:2:{s:5:\"group\";s:9:\"Contenuto\";s:4:\"join\";a:1:{s:4:\"node\";a:4:{s:5:\"table\";s:7:\"history\";s:10:\"left_field\";s:3:\"nid\";s:5:\"field\";s:3:\"nid\";s:5:\"extra\";a:1:{i:0;a:3:{s:5:\"field\";s:3:\"uid\";s:5:\"value\";s:18:\"***CURRENT_USER***\";s:7:\"numeric\";b:1;}}}}}s:9:\"timestamp\";a:3:{s:5:\"title\";s:15:\"Has new content\";s:5:\"field\";a:2:{s:7:\"handler\";s:42:\"views_handler_field_history_user_timestamp\";s:4:\"help\";s:47:\"Show a marker if the content is new or updated.\";}s:6:\"filter\";a:2:{s:4:\"help\";s:41:\"Show only content that is new or updated.\";s:7:\"handler\";s:43:\"views_handler_filter_history_user_timestamp\";}}}s:12:\"photos_album\";a:5:{s:5:\"table\";a:3:{s:5:\"group\";s:12:\"Album Photos\";s:4:\"base\";a:4:{s:5:\"field\";s:3:\"pid\";s:5:\"title\";s:13:\"Photos Albums\";s:4:\"help\";s:7:\"Albums.\";s:6:\"weight\";i:-10;}s:4:\"join\";a:1:{s:12:\"photos_image\";a:2:{s:10:\"left_field\";s:3:\"pid\";s:5:\"field\";s:3:\"pid\";}}}s:3:\"pid\";a:5:{s:5:\"title\";s:8:\"Album ID\";s:4:\"help\";s:23:\"This albums {node}.nid.\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_numeric\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:3:\"fid\";a:6:{s:5:\"title\";s:11:\"Album cover\";s:4:\"help\";s:53:\"The {file_managed}.fid for the albums cover (if set).\";s:5:\"field\";a:2:{s:7:\"handler\";s:39:\"photos_handler_field_photos_album_cover\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:6:\"filter\";a:3:{s:7:\"handler\";s:37:\"views_handler_filter_boolean_operator\";s:5:\"label\";s:17:\"Contiene Immagini\";s:4:\"type\";s:6:\"yes-no\";}s:12:\"relationship\";a:6:{s:4:\"base\";s:12:\"file_managed\";s:10:\"base field\";s:3:\"fid\";s:7:\"handler\";s:26:\"views_handler_relationship\";s:5:\"label\";s:9:\"Copertina\";s:5:\"title\";s:37:\"The cover associated with this album.\";s:4:\"help\";s:59:\"Access to the file associated with the cover of this Album.\";}}s:3:\"wid\";a:5:{s:5:\"title\";s:12:\"Album Weight\";s:4:\"help\";s:25:\"The weight of this album.\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_numeric\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:5:\"count\";a:5:{s:5:\"title\";s:17:\"Album Image Count\";s:4:\"help\";s:35:\"The number of images in this album.\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_numeric\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}}s:12:\"photos_image\";a:8:{s:5:\"table\";a:3:{s:5:\"group\";s:12:\"Album Photos\";s:4:\"base\";a:4:{s:5:\"field\";s:3:\"fid\";s:5:\"title\";s:13:\"Photos Images\";s:4:\"help\";s:13:\"Album images.\";s:6:\"weight\";i:-10;}s:4:\"join\";a:1:{s:12:\"file_managed\";a:2:{s:10:\"left_field\";s:3:\"fid\";s:5:\"field\";s:3:\"fid\";}}}s:3:\"fid\";a:6:{s:5:\"title\";s:8:\"Immagine\";s:4:\"help\";s:13:\"Album images.\";s:5:\"field\";a:2:{s:7:\"handler\";s:33:\"photos_handler_field_photos_image\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:6:\"filter\";a:3:{s:7:\"handler\";s:37:\"views_handler_filter_boolean_operator\";s:5:\"label\";s:17:\"Contiene Immagini\";s:4:\"type\";s:6:\"yes-no\";}s:12:\"relationship\";a:6:{s:4:\"base\";s:12:\"file_managed\";s:10:\"base field\";s:3:\"fid\";s:7:\"handler\";s:26:\"views_handler_relationship\";s:5:\"label\";s:13:\"File immagine\";s:5:\"title\";s:36:\"The file associated with this image.\";s:4:\"help\";s:58:\"Access to the file information associated with this image.\";}}s:3:\"pid\";a:4:{s:5:\"title\";s:8:\"Album ID\";s:4:\"help\";s:29:\"This images album {node}.nid.\";s:12:\"relationship\";a:6:{s:4:\"base\";s:4:\"node\";s:10:\"base field\";s:3:\"nid\";s:7:\"handler\";s:26:\"views_handler_relationship\";s:5:\"label\";s:11:\"Album: Node\";s:5:\"title\";s:36:\"The node associated with this album.\";s:4:\"help\";s:47:\"Access to node title and fields for this Album.\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:29:\"views_handler_argument_string\";}}s:5:\"title\";a:5:{s:5:\"title\";s:11:\"Image Title\";s:4:\"help\";s:25:\"The title for this image.\";s:5:\"field\";a:2:{s:7:\"handler\";s:19:\"views_handler_field\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}}s:3:\"des\";a:4:{s:5:\"title\";s:17:\"Image Description\";s:4:\"help\";s:31:\"The description for this image.\";s:5:\"field\";a:2:{s:7:\"handler\";s:19:\"views_handler_field\";s:14:\"click sortable\";b:0;}s:6:\"filter\";a:3:{s:7:\"handler\";s:37:\"views_handler_filter_boolean_operator\";s:5:\"label\";s:15:\"Has Description\";s:4:\"type\";s:6:\"yes-no\";}}s:3:\"wid\";a:5:{s:5:\"title\";s:12:\"Image Weight\";s:4:\"help\";s:37:\"The image weight - custom sort order.\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_numeric\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:5:\"count\";a:5:{s:5:\"title\";s:11:\"Image Views\";s:4:\"help\";s:48:\"Count how many times this image has been viewed.\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_numeric\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:8:\"comcount\";a:5:{s:5:\"title\";s:14:\"Image Comments\";s:4:\"help\";s:39:\"Count how many comments this image has.\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_numeric\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}}s:19:\"photos_access_album\";a:2:{s:5:\"table\";a:2:{s:5:\"group\";s:18:\"Album Photo Access\";s:4:\"join\";a:1:{s:12:\"photos_album\";a:3:{s:10:\"left_field\";s:3:\"pid\";s:5:\"field\";s:3:\"nid\";s:4:\"type\";s:5:\"INNER\";}}}s:6:\"viewid\";a:6:{s:5:\"title\";s:11:\"Access Type\";s:4:\"help\";s:24:\"This albums Access type.\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_numeric\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:2:{s:7:\"handler\";s:32:\"views_handler_filter_in_operator\";s:16:\"options callback\";s:34:\"_photos_access_album_views_options\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:12:\"relationship\";a:6:{s:4:\"base\";s:12:\"photos_album\";s:10:\"base field\";s:3:\"pid\";s:7:\"handler\";s:26:\"views_handler_relationship\";s:5:\"label\";s:11:\"Access Type\";s:5:\"title\";s:43:\"The Access Type associated with this album.\";s:4:\"help\";s:53:\"Access to the Access Type associated with this album.\";}}}s:5:\"files\";a:1:{s:8:\"moved to\";s:12:\"file_managed\";}s:12:\"file_managed\";a:14:{s:5:\"table\";a:3:{s:5:\"group\";s:4:\"File\";s:4:\"base\";a:4:{s:5:\"field\";s:3:\"fid\";s:5:\"title\";s:4:\"File\";s:4:\"help\";s:47:\"Files maintained by Drupal and various modules.\";s:8:\"defaults\";a:1:{s:5:\"field\";s:8:\"filename\";}}s:11:\"entity type\";s:4:\"file\";}s:3:\"fid\";a:6:{s:5:\"title\";s:7:\"ID file\";s:4:\"help\";s:19:\"The ID of the file.\";s:5:\"field\";a:2:{s:7:\"handler\";s:24:\"views_handler_field_file\";s:14:\"click sortable\";b:1;}s:8:\"argument\";a:3:{s:7:\"handler\";s:31:\"views_handler_argument_file_fid\";s:10:\"name field\";s:8:\"filename\";s:7:\"numeric\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:8:\"filename\";a:6:{s:5:\"title\";s:4:\"Nome\";s:4:\"help\";s:21:\"The name of the file.\";s:5:\"field\";a:2:{s:7:\"handler\";s:24:\"views_handler_field_file\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:29:\"views_handler_argument_string\";}}s:3:\"uri\";a:6:{s:5:\"title\";s:8:\"Percorso\";s:4:\"help\";s:21:\"The path of the file.\";s:5:\"field\";a:2:{s:7:\"handler\";s:28:\"views_handler_field_file_uri\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:29:\"views_handler_argument_string\";}}s:8:\"filemime\";a:6:{s:5:\"title\";s:9:\"Mime type\";s:4:\"help\";s:26:\"The mime type of the file.\";s:5:\"field\";a:2:{s:7:\"handler\";s:33:\"views_handler_field_file_filemime\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:29:\"views_handler_argument_string\";}}s:9:\"extension\";a:4:{s:5:\"title\";s:9:\"Extension\";s:4:\"help\";s:26:\"The extension of the file.\";s:10:\"real field\";s:8:\"filename\";s:5:\"field\";a:2:{s:7:\"handler\";s:34:\"views_handler_field_file_extension\";s:14:\"click sortable\";b:0;}}s:8:\"filesize\";a:5:{s:5:\"title\";s:10:\"Dimensione\";s:4:\"help\";s:23:\"La dimensione del file.\";s:5:\"field\";a:2:{s:7:\"handler\";s:29:\"views_handler_field_file_size\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}}s:6:\"status\";a:5:{s:5:\"title\";s:5:\"Stato\";s:4:\"help\";s:23:\"The status of the file.\";s:5:\"field\";a:2:{s:7:\"handler\";s:31:\"views_handler_field_file_status\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:32:\"views_handler_filter_file_status\";}}s:9:\"timestamp\";a:5:{s:5:\"title\";s:11:\"Upload date\";s:4:\"help\";s:31:\"The date the file was uploaded.\";s:5:\"field\";a:2:{s:7:\"handler\";s:24:\"views_handler_field_date\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:23:\"views_handler_sort_date\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:25:\"views_handler_filter_date\";}}s:3:\"uid\";a:3:{s:5:\"title\";s:17:\"User who uploaded\";s:4:\"help\";s:32:\"The user that uploaded the file.\";s:12:\"relationship\";a:4:{s:5:\"title\";s:17:\"User who uploaded\";s:5:\"label\";s:17:\"User who uploaded\";s:4:\"base\";s:5:\"users\";s:10:\"base field\";s:3:\"uid\";}}s:24:\"reverse_field_image_node\";a:1:{s:12:\"relationship\";a:10:{s:5:\"title\";s:21:\"Contenuto using Image\";s:4:\"help\";s:52:\"Relate each Contenuto with a Image set to the image.\";s:7:\"handler\";s:41:\"views_handler_relationship_entity_reverse\";s:10:\"field_name\";s:11:\"field_image\";s:11:\"field table\";s:22:\"field_data_field_image\";s:11:\"field field\";s:15:\"field_image_fid\";s:4:\"base\";s:4:\"node\";s:10:\"base field\";s:3:\"nid\";s:5:\"label\";s:11:\"field_image\";s:10:\"join_extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}s:24:\"reverse_field_photo_node\";a:1:{s:12:\"relationship\";a:10:{s:5:\"title\";s:35:\"Contenuto using Photo Moorings 2014\";s:4:\"help\";s:66:\"Relate each Contenuto with a Photo Moorings 2014 set to the image.\";s:7:\"handler\";s:41:\"views_handler_relationship_entity_reverse\";s:10:\"field_name\";s:11:\"field_photo\";s:11:\"field table\";s:22:\"field_data_field_photo\";s:11:\"field field\";s:15:\"field_photo_fid\";s:4:\"base\";s:4:\"node\";s:10:\"base field\";s:3:\"nid\";s:5:\"label\";s:11:\"field_photo\";s:10:\"join_extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}s:38:\"reverse_field_photo_moorings_2012_node\";a:1:{s:12:\"relationship\";a:10:{s:5:\"title\";s:35:\"Contenuto using Photo Moorings 2012\";s:4:\"help\";s:66:\"Relate each Contenuto with a Photo Moorings 2012 set to the image.\";s:7:\"handler\";s:41:\"views_handler_relationship_entity_reverse\";s:10:\"field_name\";s:25:\"field_photo_moorings_2012\";s:11:\"field table\";s:36:\"field_data_field_photo_moorings_2012\";s:11:\"field field\";s:29:\"field_photo_moorings_2012_fid\";s:4:\"base\";s:4:\"node\";s:10:\"base field\";s:3:\"nid\";s:5:\"label\";s:25:\"field_photo_moorings_2012\";s:10:\"join_extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}s:38:\"reverse_field_photo_moorings_2010_node\";a:1:{s:12:\"relationship\";a:10:{s:5:\"title\";s:35:\"Contenuto using Photo Moorings 2010\";s:4:\"help\";s:66:\"Relate each Contenuto with a Photo Moorings 2010 set to the image.\";s:7:\"handler\";s:41:\"views_handler_relationship_entity_reverse\";s:10:\"field_name\";s:25:\"field_photo_moorings_2010\";s:11:\"field table\";s:36:\"field_data_field_photo_moorings_2010\";s:11:\"field field\";s:29:\"field_photo_moorings_2010_fid\";s:4:\"base\";s:4:\"node\";s:10:\"base field\";s:3:\"nid\";s:5:\"label\";s:25:\"field_photo_moorings_2010\";s:10:\"join_extra\";a:2:{i:0;a:2:{s:5:\"field\";s:11:\"entity_type\";s:5:\"value\";s:4:\"node\";}i:1;a:3:{s:5:\"field\";s:7:\"deleted\";s:5:\"value\";i:0;s:7:\"numeric\";b:1;}}}}}s:10:\"file_usage\";a:15:{s:5:\"table\";a:2:{s:5:\"group\";s:10:\"File Usage\";s:4:\"join\";a:6:{s:12:\"file_managed\";a:2:{s:5:\"field\";s:3:\"fid\";s:10:\"left_field\";s:3:\"fid\";}s:4:\"node\";a:3:{s:5:\"field\";s:2:\"id\";s:10:\"left_field\";s:3:\"nid\";s:5:\"extra\";a:1:{i:0;a:2:{s:5:\"field\";s:4:\"type\";s:5:\"value\";s:4:\"node\";}}}s:5:\"users\";a:3:{s:5:\"field\";s:2:\"id\";s:10:\"left_field\";s:3:\"uid\";s:5:\"extra\";a:1:{i:0;a:2:{s:5:\"field\";s:4:\"type\";s:5:\"value\";s:4:\"user\";}}}s:7:\"comment\";a:3:{s:5:\"field\";s:2:\"id\";s:10:\"left_field\";s:3:\"cid\";s:5:\"extra\";a:1:{i:0;a:2:{s:5:\"field\";s:4:\"type\";s:5:\"value\";s:7:\"comment\";}}}s:18:\"taxonomy_term_data\";a:3:{s:5:\"field\";s:2:\"id\";s:10:\"left_field\";s:3:\"tid\";s:5:\"extra\";a:1:{i:0;a:2:{s:5:\"field\";s:4:\"type\";s:5:\"value\";s:13:\"taxonomy_term\";}}}s:19:\"taxonomy_vocabulary\";a:3:{s:5:\"field\";s:2:\"id\";s:10:\"left_field\";s:3:\"vid\";s:5:\"extra\";a:1:{i:0;a:2:{s:5:\"field\";s:4:\"type\";s:5:\"value\";s:19:\"taxonomy_vocabulary\";}}}}}s:12:\"file_to_node\";a:5:{s:5:\"title\";s:9:\"Contenuto\";s:4:\"help\";s:98:\"Content that is associated with this file, usually because this file is in a field on the content.\";s:9:\"skip base\";a:6:{i:0;s:4:\"node\";i:1;s:13:\"node_revision\";i:2;s:5:\"users\";i:3;s:7:\"comment\";i:4;s:18:\"taxonomy_term_data\";i:5;s:19:\"taxonomy_vocabulary\";}s:10:\"real field\";s:2:\"id\";s:12:\"relationship\";a:6:{s:5:\"title\";s:9:\"Contenuto\";s:5:\"label\";s:9:\"Contenuto\";s:4:\"base\";s:4:\"node\";s:10:\"base field\";s:3:\"nid\";s:18:\"relationship field\";s:2:\"id\";s:5:\"extra\";a:1:{i:0;a:4:{s:5:\"table\";s:10:\"file_usage\";s:5:\"field\";s:4:\"type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"node\";}}}}s:12:\"node_to_file\";a:5:{s:5:\"title\";s:4:\"File\";s:4:\"help\";s:87:\"A file that is associated with this node, usually because it is in a field on the node.\";s:9:\"skip base\";a:5:{i:0;s:12:\"file_managed\";i:1;s:5:\"users\";i:2;s:7:\"comment\";i:3;s:18:\"taxonomy_term_data\";i:4;s:19:\"taxonomy_vocabulary\";}s:10:\"real field\";s:3:\"fid\";s:12:\"relationship\";a:5:{s:5:\"title\";s:4:\"File\";s:5:\"label\";s:4:\"File\";s:4:\"base\";s:12:\"file_managed\";s:10:\"base field\";s:3:\"fid\";s:18:\"relationship field\";s:3:\"fid\";}}s:12:\"file_to_user\";a:5:{s:5:\"title\";s:6:\"Utente\";s:4:\"help\";s:94:\"A user that is associated with this file, usually because this file is in a field on the user.\";s:9:\"skip base\";a:6:{i:0;s:4:\"node\";i:1;s:13:\"node_revision\";i:2;s:5:\"users\";i:3;s:7:\"comment\";i:4;s:18:\"taxonomy_term_data\";i:5;s:19:\"taxonomy_vocabulary\";}s:10:\"real field\";s:2:\"id\";s:12:\"relationship\";a:6:{s:5:\"title\";s:6:\"Utente\";s:5:\"label\";s:6:\"Utente\";s:4:\"base\";s:5:\"users\";s:10:\"base field\";s:3:\"uid\";s:18:\"relationship field\";s:2:\"id\";s:5:\"extra\";a:1:{i:0;a:4:{s:5:\"table\";s:10:\"file_usage\";s:5:\"field\";s:4:\"type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"user\";}}}}s:12:\"user_to_file\";a:5:{s:5:\"title\";s:4:\"File\";s:4:\"help\";s:87:\"A file that is associated with this user, usually because it is in a field on the user.\";s:9:\"skip base\";a:6:{i:0;s:12:\"file_managed\";i:1;s:4:\"node\";i:2;s:13:\"node_revision\";i:3;s:7:\"comment\";i:4;s:18:\"taxonomy_term_data\";i:5;s:19:\"taxonomy_vocabulary\";}s:10:\"real field\";s:3:\"fid\";s:12:\"relationship\";a:5:{s:5:\"title\";s:4:\"File\";s:5:\"label\";s:4:\"File\";s:4:\"base\";s:12:\"file_managed\";s:10:\"base field\";s:3:\"fid\";s:18:\"relationship field\";s:3:\"fid\";}}s:15:\"file_to_comment\";a:5:{s:5:\"title\";s:8:\"Commento\";s:4:\"help\";s:100:\"A comment that is associated with this file, usually because this file is in a field on the comment.\";s:9:\"skip base\";a:6:{i:0;s:4:\"node\";i:1;s:13:\"node_revision\";i:2;s:5:\"users\";i:3;s:7:\"comment\";i:4;s:18:\"taxonomy_term_data\";i:5;s:19:\"taxonomy_vocabulary\";}s:10:\"real field\";s:2:\"id\";s:12:\"relationship\";a:6:{s:5:\"title\";s:8:\"Commento\";s:5:\"label\";s:8:\"Commento\";s:4:\"base\";s:7:\"comment\";s:10:\"base field\";s:3:\"cid\";s:18:\"relationship field\";s:2:\"id\";s:5:\"extra\";a:1:{i:0;a:4:{s:5:\"table\";s:10:\"file_usage\";s:5:\"field\";s:4:\"type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:7:\"comment\";}}}}s:15:\"comment_to_file\";a:5:{s:5:\"title\";s:4:\"File\";s:4:\"help\";s:93:\"A file that is associated with this comment, usually because it is in a field on the comment.\";s:9:\"skip base\";a:6:{i:0;s:12:\"file_managed\";i:1;s:4:\"node\";i:2;s:13:\"node_revision\";i:3;s:5:\"users\";i:4;s:18:\"taxonomy_term_data\";i:5;s:19:\"taxonomy_vocabulary\";}s:10:\"real field\";s:3:\"fid\";s:12:\"relationship\";a:5:{s:5:\"title\";s:4:\"File\";s:5:\"label\";s:4:\"File\";s:4:\"base\";s:12:\"file_managed\";s:10:\"base field\";s:3:\"fid\";s:18:\"relationship field\";s:3:\"fid\";}}s:21:\"file_to_taxonomy_term\";a:5:{s:5:\"title\";s:13:\"Taxonomy Term\";s:4:\"help\";s:112:\"A taxonomy term that is associated with this file, usually because this file is in a field on the taxonomy term.\";s:9:\"skip base\";a:6:{i:0;s:4:\"node\";i:1;s:13:\"node_revision\";i:2;s:5:\"users\";i:3;s:7:\"comment\";i:4;s:18:\"taxonomy_term_data\";i:5;s:19:\"taxonomy_vocabulary\";}s:10:\"real field\";s:2:\"id\";s:12:\"relationship\";a:6:{s:5:\"title\";s:13:\"Taxonomy Term\";s:5:\"label\";s:13:\"Taxonomy Term\";s:4:\"base\";s:18:\"taxonomy_term_data\";s:10:\"base field\";s:3:\"tid\";s:18:\"relationship field\";s:2:\"id\";s:5:\"extra\";a:1:{i:0;a:4:{s:5:\"table\";s:10:\"file_usage\";s:5:\"field\";s:4:\"type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:13:\"taxonomy_term\";}}}}s:21:\"taxonomy_term_to_file\";a:5:{s:5:\"title\";s:4:\"File\";s:4:\"help\";s:105:\"A file that is associated with this taxonomy term, usually because it is in a field on the taxonomy term.\";s:9:\"skip base\";a:6:{i:0;s:12:\"file_managed\";i:1;s:4:\"node\";i:2;s:13:\"node_revision\";i:3;s:5:\"users\";i:4;s:7:\"comment\";i:5;s:19:\"taxonomy_vocabulary\";}s:10:\"real field\";s:3:\"fid\";s:12:\"relationship\";a:5:{s:5:\"title\";s:4:\"File\";s:5:\"label\";s:4:\"File\";s:4:\"base\";s:12:\"file_managed\";s:10:\"base field\";s:3:\"fid\";s:18:\"relationship field\";s:3:\"fid\";}}s:27:\"file_to_taxonomy_vocabulary\";a:5:{s:5:\"title\";s:19:\"Taxonomy Vocabulary\";s:4:\"help\";s:124:\"A taxonomy vocabulary that is associated with this file, usually because this file is in a field on the taxonomy vocabulary.\";s:9:\"skip base\";a:6:{i:0;s:4:\"node\";i:1;s:13:\"node_revision\";i:2;s:5:\"users\";i:3;s:7:\"comment\";i:4;s:18:\"taxonomy_term_data\";i:5;s:19:\"taxonomy_vocabulary\";}s:10:\"real field\";s:2:\"id\";s:12:\"relationship\";a:6:{s:5:\"title\";s:19:\"Taxonomy Vocabulary\";s:5:\"label\";s:19:\"Taxonomy Vocabulary\";s:4:\"base\";s:19:\"taxonomy_vocabulary\";s:10:\"base field\";s:3:\"vid\";s:18:\"relationship field\";s:2:\"id\";s:5:\"extra\";a:1:{i:0;a:4:{s:5:\"table\";s:10:\"file_usage\";s:5:\"field\";s:4:\"type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:19:\"taxonomy_vocabulary\";}}}}s:27:\"taxonomy_vocabulary_to_file\";a:5:{s:5:\"title\";s:4:\"File\";s:4:\"help\";s:117:\"A file that is associated with this taxonomy vocabulary, usually because it is in a field on the taxonomy vocabulary.\";s:9:\"skip base\";a:6:{i:0;s:12:\"file_managed\";i:1;s:4:\"node\";i:2;s:13:\"node_revision\";i:3;s:5:\"users\";i:4;s:7:\"comment\";i:5;s:18:\"taxonomy_term_data\";}s:10:\"real field\";s:3:\"fid\";s:12:\"relationship\";a:5:{s:5:\"title\";s:4:\"File\";s:5:\"label\";s:4:\"File\";s:4:\"base\";s:12:\"file_managed\";s:10:\"base field\";s:3:\"fid\";s:18:\"relationship field\";s:3:\"fid\";}}s:6:\"module\";a:6:{s:5:\"title\";s:6:\"Module\";s:4:\"help\";s:43:\"The module managing this file relationship.\";s:5:\"field\";a:2:{s:7:\"handler\";s:19:\"views_handler_field\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:29:\"views_handler_argument_string\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:4:\"type\";a:6:{s:5:\"title\";s:15:\"Tipo di entità\";s:4:\"help\";s:47:\"The type of entity that is related to the file.\";s:5:\"field\";a:2:{s:7:\"handler\";s:19:\"views_handler_field\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:29:\"views_handler_argument_string\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:2:\"id\";a:6:{s:5:\"title\";s:10:\"ID Entità\";s:4:\"help\";s:49:\"The ID of the entity that is related to the file.\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_numeric\";s:14:\"click sortable\";b:1;}s:8:\"argument\";a:1:{s:7:\"handler\";s:30:\"views_handler_argument_numeric\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:5:\"count\";a:5:{s:5:\"title\";s:9:\"Use count\";s:4:\"help\";s:52:\"The number of times the file is used by this entity.\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_numeric\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}}s:6:\"system\";a:6:{s:5:\"table\";a:2:{s:5:\"group\";s:7:\"Sistema\";s:4:\"base\";a:3:{s:5:\"field\";s:8:\"filename\";s:5:\"title\";s:25:\"Module/Theme/Theme engine\";s:4:\"help\";s:46:\"Modules/Themes/Theme engines in your codebase.\";}}s:8:\"filename\";a:6:{s:5:\"title\";s:34:\"Module/Theme/Theme engine filename\";s:4:\"help\";s:103:\"The path of the primary file for this item, relative to the Drupal root; e.g. modules/node/node.module.\";s:5:\"field\";a:2:{s:7:\"handler\";s:19:\"views_handler_field\";s:14:\"click sortable\";b:1;}s:8:\"argument\";a:2:{s:7:\"handler\";s:29:\"views_handler_argument_string\";s:10:\"name field\";s:8:\"filename\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:4:\"name\";a:6:{s:5:\"title\";s:30:\"Module/Theme/Theme engine name\";s:4:\"help\";s:32:\"The name of the item; e.g. node.\";s:5:\"field\";a:2:{s:7:\"handler\";s:19:\"views_handler_field\";s:14:\"click sortable\";b:1;}s:8:\"argument\";a:2:{s:7:\"handler\";s:29:\"views_handler_argument_string\";s:10:\"name field\";s:4:\"name\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:4:\"type\";a:6:{s:5:\"title\";s:4:\"Tipo\";s:4:\"help\";s:60:\"The type of the item, either module, theme, or theme_engine.\";s:5:\"field\";a:2:{s:7:\"handler\";s:19:\"views_handler_field\";s:14:\"click sortable\";b:1;}s:8:\"argument\";a:2:{s:7:\"handler\";s:29:\"views_handler_argument_string\";s:10:\"name field\";s:4:\"type\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:32:\"views_handler_filter_system_type\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:6:\"status\";a:6:{s:5:\"title\";s:5:\"Stato\";s:4:\"help\";s:55:\"Boolean indicating whether or not this item is enabled.\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_boolean\";s:14:\"click sortable\";b:1;}s:8:\"argument\";a:2:{s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:10:\"name field\";s:6:\"status\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:37:\"views_handler_filter_boolean_operator\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:14:\"schema_version\";a:6:{s:5:\"title\";s:14:\"Schema version\";s:4:\"help\";s:238:\"The module\'s database schema version number. -1 if the module is not installed (its tables do not exist); 0 or the largest N of the module\'s hook_update_N() function that has either been run or existed when the module was first installed.\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_numeric\";s:14:\"click sortable\";b:1;}s:8:\"argument\";a:2:{s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:10:\"name field\";s:14:\"schema_version\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}}s:10:\"vocabulary\";a:1:{s:8:\"moved to\";s:19:\"taxonomy_vocabulary\";}s:19:\"taxonomy_vocabulary\";a:6:{s:5:\"table\";a:3:{s:5:\"group\";s:28:\"Vocabolario della tassonomia\";s:4:\"join\";a:1:{s:18:\"taxonomy_term_data\";a:2:{s:10:\"left_field\";s:3:\"vid\";s:5:\"field\";s:3:\"vid\";}}s:20:\"default_relationship\";a:1:{s:4:\"node\";a:2:{s:5:\"table\";s:4:\"node\";s:5:\"field\";s:13:\"term_node_tid\";}}}s:4:\"name\";a:3:{s:5:\"title\";s:4:\"Nome\";s:5:\"field\";a:3:{s:4:\"help\";s:160:\"Name of the vocabulary a term is a member of. This will be the vocabulary that whichever term the \"Taxonomy: Term\" field is; and can similarly cause duplicates.\";s:7:\"handler\";s:19:\"views_handler_field\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:2:{s:7:\"handler\";s:18:\"views_handler_sort\";s:4:\"help\";s:28:\"The taxonomy vocabulary name\";}}s:12:\"machine_name\";a:4:{s:5:\"title\";s:19:\"Nome ad uso interno\";s:5:\"field\";a:3:{s:4:\"help\";s:168:\"Machine-Name of the vocabulary a term is a member of. This will be the vocabulary that whichever term the \"Taxonomy: Term\" field is; and can similarly cause duplicates.\";s:7:\"handler\";s:19:\"views_handler_field\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:2:{s:4:\"help\";s:66:\"Filter the results of \"Taxonomy: Term\" to a particular vocabulary.\";s:7:\"handler\";s:44:\"views_handler_filter_vocabulary_machine_name\";}s:8:\"argument\";a:2:{s:4:\"help\";s:66:\"Filter the results of \"Taxonomy: Term\" to a particular vocabulary.\";s:7:\"handler\";s:46:\"views_handler_argument_vocabulary_machine_name\";}}s:3:\"vid\";a:5:{s:5:\"title\";s:14:\"ID vocabolario\";s:4:\"help\";s:26:\"The taxonomy vocabulary ID\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_numeric\";s:14:\"click sortable\";b:1;}s:8:\"argument\";a:2:{s:7:\"handler\";s:37:\"views_handler_argument_vocabulary_vid\";s:10:\"name field\";s:4:\"name\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:11:\"description\";a:3:{s:5:\"title\";s:11:\"Descrizione\";s:4:\"help\";s:35:\"The taxonomy vocabulary description\";s:5:\"field\";a:1:{s:7:\"handler\";s:19:\"views_handler_field\";}}s:6:\"weight\";a:6:{s:5:\"title\";s:4:\"Peso\";s:4:\"help\";s:30:\"The taxonomy vocabulary weight\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_numeric\";s:14:\"click sortable\";b:1;}s:8:\"argument\";a:2:{s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:10:\"name field\";s:6:\"weight\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}}}s:9:\"term_data\";a:1:{s:8:\"moved to\";s:18:\"taxonomy_term_data\";}s:9:\"term_node\";a:1:{s:8:\"moved to\";s:14:\"taxonomy_index\";}s:14:\"taxonomy_index\";a:3:{s:5:\"table\";a:2:{s:5:\"group\";s:24:\"Termine della tassonomia\";s:4:\"join\";a:3:{s:18:\"taxonomy_term_data\";a:2:{s:10:\"left_field\";s:3:\"tid\";s:5:\"field\";s:3:\"tid\";}s:4:\"node\";a:2:{s:10:\"left_field\";s:3:\"nid\";s:5:\"field\";s:3:\"nid\";}s:23:\"taxonomy_term_hierarchy\";a:2:{s:10:\"left_field\";s:3:\"tid\";s:5:\"field\";s:3:\"tid\";}}}s:3:\"nid\";a:3:{s:5:\"title\";s:17:\"Content with term\";s:4:\"help\";s:38:\"Relate all content tagged with a term.\";s:12:\"relationship\";a:5:{s:7:\"handler\";s:26:\"views_handler_relationship\";s:4:\"base\";s:4:\"node\";s:10:\"base field\";s:3:\"nid\";s:5:\"label\";s:4:\"nodo\";s:9:\"skip base\";s:4:\"node\";}}s:3:\"tid\";a:5:{s:5:\"group\";s:9:\"Contenuto\";s:5:\"title\";s:20:\"Has taxonomy term ID\";s:4:\"help\";s:54:\"Display content if it has the selected taxonomy terms.\";s:8:\"argument\";a:6:{s:7:\"handler\";s:36:\"views_handler_argument_term_node_tid\";s:10:\"name table\";s:18:\"taxonomy_term_data\";s:10:\"name field\";s:4:\"name\";s:16:\"empty field name\";s:13:\"Uncategorized\";s:7:\"numeric\";b:1;s:9:\"skip base\";s:18:\"taxonomy_term_data\";}s:6:\"filter\";a:6:{s:5:\"title\";s:17:\"Has taxonomy term\";s:7:\"handler\";s:34:\"views_handler_filter_term_node_tid\";s:15:\"hierarchy table\";s:23:\"taxonomy_term_hierarchy\";s:7:\"numeric\";b:1;s:9:\"skip base\";s:18:\"taxonomy_term_data\";s:11:\"allow empty\";b:1;}}}s:23:\"taxonomy_term_hierarchy\";a:2:{s:5:\"table\";a:3:{s:5:\"group\";s:24:\"Termine della tassonomia\";s:4:\"join\";a:2:{s:23:\"taxonomy_term_hierarchy\";a:2:{s:10:\"left_field\";s:3:\"tid\";s:5:\"field\";s:6:\"parent\";}s:18:\"taxonomy_term_data\";a:2:{s:10:\"left_field\";s:3:\"tid\";s:5:\"field\";s:3:\"tid\";}}s:20:\"default_relationship\";a:1:{s:4:\"node\";a:2:{s:5:\"table\";s:4:\"node\";s:5:\"field\";s:13:\"term_node_tid\";}}}s:6:\"parent\";a:5:{s:5:\"title\";s:13:\"Termine padre\";s:4:\"help\";s:123:\"The parent term of the term. This can produce duplicate entries if you are using a vocabulary that allows multiple parents.\";s:12:\"relationship\";a:3:{s:4:\"base\";s:18:\"taxonomy_term_data\";s:5:\"field\";s:6:\"parent\";s:5:\"label\";s:8:\"Genitore\";}s:6:\"filter\";a:2:{s:4:\"help\";s:57:\"Filter the results of \"Taxonomy: Term\" by the parent pid.\";s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:8:\"argument\";a:2:{s:4:\"help\";s:28:\"The parent term of the term.\";s:7:\"handler\";s:31:\"views_handler_argument_taxonomy\";}}}s:14:\"term_hierarchy\";a:1:{s:8:\"moved to\";s:23:\"taxonomy_term_hierarchy\";}s:11:\"users_roles\";a:2:{s:5:\"table\";a:3:{s:5:\"group\";s:6:\"Utente\";s:4:\"join\";a:1:{s:5:\"users\";a:2:{s:10:\"left_field\";s:3:\"uid\";s:5:\"field\";s:3:\"uid\";}}s:20:\"default_relationship\";a:2:{s:4:\"node\";a:2:{s:5:\"table\";s:4:\"node\";s:5:\"field\";s:3:\"uid\";}s:13:\"node_revision\";a:2:{s:5:\"table\";s:13:\"node_revision\";s:5:\"field\";s:3:\"uid\";}}}s:3:\"rid\";a:5:{s:5:\"title\";s:5:\"Ruoli\";s:4:\"help\";s:29:\"Roles that a user belongs to.\";s:5:\"field\";a:2:{s:7:\"handler\";s:30:\"views_handler_field_user_roles\";s:11:\"no group by\";b:1;}s:6:\"filter\";a:3:{s:7:\"handler\";s:31:\"views_handler_filter_user_roles\";s:7:\"numeric\";b:1;s:11:\"allow empty\";b:1;}s:8:\"argument\";a:6:{s:7:\"handler\";s:38:\"views_handler_argument_users_roles_rid\";s:10:\"name table\";s:4:\"role\";s:10:\"name field\";s:4:\"name\";s:16:\"empty field name\";s:7:\"No role\";s:12:\"zero is null\";b:1;s:7:\"numeric\";b:1;}}}s:4:\"role\";a:1:{s:5:\"table\";a:2:{s:4:\"join\";a:2:{s:5:\"users\";a:3:{s:10:\"left_table\";s:11:\"users_roles\";s:10:\"left_field\";s:3:\"rid\";s:5:\"field\";s:3:\"rid\";}s:11:\"users_roles\";a:2:{s:10:\"left_field\";s:3:\"rid\";s:5:\"field\";s:3:\"rid\";}}s:20:\"default_relationship\";a:2:{s:4:\"node\";a:2:{s:5:\"table\";s:4:\"node\";s:5:\"field\";s:3:\"uid\";}s:13:\"node_revision\";a:2:{s:5:\"table\";s:13:\"node_revision\";s:5:\"field\";s:3:\"uid\";}}}}s:15:\"role_permission\";a:2:{s:5:\"table\";a:2:{s:5:\"group\";s:6:\"Utente\";s:4:\"join\";a:1:{s:5:\"users\";a:3:{s:10:\"left_table\";s:11:\"users_roles\";s:10:\"left_field\";s:3:\"rid\";s:5:\"field\";s:3:\"rid\";}}}s:10:\"permission\";a:4:{s:5:\"title\";s:8:\"Permesso\";s:4:\"help\";s:21:\"The user permissions.\";s:5:\"field\";a:2:{s:7:\"handler\";s:36:\"views_handler_field_user_permissions\";s:11:\"no group by\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:37:\"views_handler_filter_user_permissions\";}}}s:7:\"authmap\";a:4:{s:5:\"table\";a:3:{s:5:\"group\";s:6:\"Utente\";s:4:\"join\";a:1:{s:5:\"users\";a:2:{s:10:\"left_field\";s:3:\"uid\";s:5:\"field\";s:3:\"uid\";}}s:20:\"default_relationship\";a:2:{s:4:\"node\";a:2:{s:5:\"table\";s:4:\"node\";s:5:\"field\";s:3:\"uid\";}s:13:\"node_revision\";a:2:{s:5:\"table\";s:13:\"node_revision\";s:5:\"field\";s:3:\"uid\";}}}s:3:\"aid\";a:5:{s:5:\"title\";s:10:\"Authmap ID\";s:4:\"help\";s:15:\"The Authmap ID.\";s:5:\"field\";a:1:{s:7:\"handler\";s:27:\"views_handler_field_numeric\";}s:6:\"filter\";a:2:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";s:7:\"numeric\";b:1;}s:8:\"argument\";a:2:{s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:7:\"numeric\";b:1;}}s:8:\"authname\";a:5:{s:5:\"title\";s:19:\"Authentication name\";s:4:\"help\";s:31:\"The unique authentication name.\";s:5:\"field\";a:1:{s:7:\"handler\";s:19:\"views_handler_field\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:29:\"views_handler_argument_string\";}}s:6:\"module\";a:5:{s:5:\"title\";s:21:\"Authentication module\";s:4:\"help\";s:57:\"The name of the module managing the authentication entry.\";s:5:\"field\";a:1:{s:7:\"handler\";s:19:\"views_handler_field\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:29:\"views_handler_argument_string\";}}}s:5:\"views\";a:15:{s:5:\"table\";a:2:{s:5:\"group\";s:6:\"Global\";s:4:\"join\";a:1:{s:7:\"#global\";a:0:{}}}s:6:\"random\";a:3:{s:5:\"title\";s:6:\"Random\";s:4:\"help\";s:28:\"Randomize the display order.\";s:4:\"sort\";a:1:{s:7:\"handler\";s:25:\"views_handler_sort_random\";}}s:4:\"null\";a:3:{s:5:\"title\";s:4:\"Null\";s:4:\"help\";s:213:\"Allow a contextual filter value to be ignored. The query will not be altered by this contextual filter value. Can be used when contextual filter values come from the URL, and a part of the URL needs to be ignored.\";s:8:\"argument\";a:1:{s:7:\"handler\";s:27:\"views_handler_argument_null\";}}s:7:\"nothing\";a:3:{s:5:\"title\";s:11:\"Custom text\";s:4:\"help\";s:28:\"Provide custom text or link.\";s:5:\"field\";a:1:{s:7:\"handler\";s:26:\"views_handler_field_custom\";}}s:7:\"counter\";a:3:{s:5:\"title\";s:19:\"View result counter\";s:4:\"help\";s:47:\"Displays the actual position of the view result\";s:5:\"field\";a:1:{s:7:\"handler\";s:27:\"views_handler_field_counter\";}}s:4:\"area\";a:3:{s:5:\"title\";s:9:\"Text area\";s:4:\"help\";s:33:\"Provide markup text for the area.\";s:4:\"area\";a:1:{s:7:\"handler\";s:23:\"views_handler_area_text\";}}s:16:\"area_text_custom\";a:3:{s:5:\"title\";s:15:\"Unfiltered text\";s:4:\"help\";s:82:\"Add unrestricted, custom text or markup. This is similar to the custom text field.\";s:4:\"area\";a:1:{s:7:\"handler\";s:30:\"views_handler_area_text_custom\";}}s:4:\"view\";a:3:{s:5:\"title\";s:9:\"View area\";s:4:\"help\";s:29:\"Insert a view inside an area.\";s:4:\"area\";a:1:{s:7:\"handler\";s:23:\"views_handler_area_view\";}}s:6:\"result\";a:3:{s:5:\"title\";s:14:\"Result summary\";s:4:\"help\";s:53:\"Shows result summary, for example the items per page.\";s:4:\"area\";a:1:{s:7:\"handler\";s:25:\"views_handler_area_result\";}}s:8:\"messages\";a:3:{s:5:\"title\";s:8:\"Messages\";s:4:\"help\";s:30:\"Displays messages in the area.\";s:4:\"area\";a:1:{s:7:\"handler\";s:27:\"views_handler_area_messages\";}}s:16:\"contextual_links\";a:3:{s:5:\"title\";s:16:\"Contextual Links\";s:4:\"help\";s:42:\"Display fields in a contextual links menu.\";s:5:\"field\";a:1:{s:7:\"handler\";s:36:\"views_handler_field_contextual_links\";}}s:15:\"ctools_dropdown\";a:3:{s:5:\"title\";s:14:\"Dropdown links\";s:4:\"help\";s:67:\"Displays fields in a dropdown list, like on the views listing page.\";s:5:\"field\";a:1:{s:7:\"handler\";s:35:\"views_handler_field_ctools_dropdown\";}}s:7:\"combine\";a:3:{s:5:\"title\";s:21:\"Combine fields filter\";s:4:\"help\";s:52:\"Combine multiple fields together and search by them.\";s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_combine\";}}s:10:\"expression\";a:3:{s:5:\"title\";s:15:\"Math expression\";s:4:\"help\";s:52:\"Evaluates a mathematical expression and displays it.\";s:5:\"field\";a:2:{s:7:\"handler\";s:24:\"views_handler_field_math\";s:5:\"float\";b:1;}}s:14:\"fields_compare\";a:3:{s:5:\"title\";s:17:\"Fields comparison\";s:4:\"help\";s:42:\"Compare database fields against eachother.\";s:6:\"filter\";a:2:{s:4:\"help\";s:55:\"Use fields comparison to filter the result of the view.\";s:7:\"handler\";s:35:\"views_handler_filter_fields_compare\";}}}s:18:\"entity_translation\";a:12:{s:5:\"table\";a:2:{s:5:\"group\";s:18:\"Entity translation\";s:4:\"base\";a:3:{s:5:\"field\";s:9:\"entity_id\";s:5:\"title\";s:18:\"Entity translation\";s:4:\"help\";s:45:\"Information about a translation of an entity.\";}}s:9:\"entity_id\";a:6:{s:5:\"title\";s:9:\"Entity id\";s:4:\"help\";s:14:\"The entity id.\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_numeric\";s:14:\"click sortable\";b:1;}s:8:\"argument\";a:3:{s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:7:\"numeric\";b:1;s:13:\"validate type\";s:9:\"entity_id\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:11:\"entity_type\";a:6:{s:5:\"title\";s:15:\"Tipo di entità\";s:4:\"help\";s:16:\"The entity type.\";s:5:\"field\";a:2:{s:7:\"handler\";s:19:\"views_handler_field\";s:14:\"click sortable\";b:1;}s:8:\"argument\";a:3:{s:7:\"handler\";s:29:\"views_handler_argument_string\";s:7:\"numeric\";b:0;s:13:\"validate type\";s:11:\"entity_type\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:45:\"entity_translation_handler_filter_entity_type\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:8:\"language\";a:6:{s:5:\"title\";s:6:\"Lingua\";s:4:\"help\";s:33:\"The language of this translation.\";s:5:\"field\";a:2:{s:7:\"handler\";s:35:\"views_handler_field_locale_language\";s:14:\"click sortable\";b:1;}s:8:\"argument\";a:3:{s:7:\"handler\";s:38:\"views_handler_argument_locale_language\";s:7:\"numeric\";b:0;s:13:\"validate type\";s:8:\"language\";}s:6:\"filter\";a:2:{s:7:\"handler\";s:42:\"entity_translation_handler_filter_language\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:6:\"source\";a:6:{s:5:\"title\";s:8:\"Sorgente\";s:4:\"help\";s:20:\"The source language.\";s:5:\"field\";a:2:{s:7:\"handler\";s:35:\"views_handler_field_locale_language\";s:14:\"click sortable\";b:1;}s:8:\"argument\";a:4:{s:7:\"handler\";s:38:\"views_handler_argument_locale_language\";s:10:\"name field\";s:5:\"title\";s:7:\"numeric\";b:0;s:13:\"validate type\";s:6:\"string\";}s:6:\"filter\";a:2:{s:7:\"handler\";s:42:\"entity_translation_handler_filter_language\";s:11:\"allow empty\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:6:\"status\";a:6:{s:5:\"title\";s:18:\"Translation status\";s:4:\"help\";s:31:\"The status of this translation.\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_boolean\";s:14:\"click sortable\";b:1;}s:8:\"argument\";a:3:{s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:7:\"numeric\";b:1;s:13:\"validate type\";s:7:\"boolean\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:37:\"views_handler_filter_boolean_operator\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:9:\"translate\";a:6:{s:5:\"title\";s:12:\"Needs update\";s:4:\"help\";s:49:\"Indicates if the translation needs to be updated.\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_boolean\";s:14:\"click sortable\";b:1;}s:8:\"argument\";a:4:{s:7:\"handler\";s:30:\"views_handler_argument_numeric\";s:10:\"name field\";s:5:\"title\";s:7:\"numeric\";b:1;s:13:\"validate type\";s:7:\"boolean\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:37:\"views_handler_filter_boolean_operator\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:7:\"created\";a:6:{s:5:\"title\";s:6:\"Creato\";s:4:\"help\";s:13:\"Created date.\";s:5:\"field\";a:2:{s:7:\"handler\";s:24:\"views_handler_field_date\";s:14:\"click sortable\";b:1;}s:8:\"argument\";a:3:{s:7:\"handler\";s:27:\"views_handler_argument_date\";s:7:\"numeric\";b:0;s:13:\"validate type\";s:4:\"date\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:25:\"views_handler_filter_date\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:23:\"views_handler_sort_date\";}}s:7:\"changed\";a:6:{s:5:\"title\";s:7:\"Changed\";s:4:\"help\";s:13:\"Changed date.\";s:5:\"field\";a:2:{s:7:\"handler\";s:24:\"views_handler_field_date\";s:14:\"click sortable\";b:1;}s:8:\"argument\";a:3:{s:7:\"handler\";s:27:\"views_handler_argument_date\";s:7:\"numeric\";b:0;s:13:\"validate type\";s:4:\"date\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:25:\"views_handler_filter_date\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:23:\"views_handler_sort_date\";}}s:14:\"translate_link\";a:3:{s:5:\"title\";s:14:\"Translate link\";s:4:\"help\";s:34:\"Link to translation overview page.\";s:5:\"field\";a:1:{s:7:\"handler\";s:47:\"entity_translation_handler_field_translate_link\";}}s:18:\"translation_exists\";a:3:{s:5:\"title\";s:18:\"Translation exists\";s:4:\"help\";s:64:\"Determines if a translation exists for a particular translation.\";s:6:\"filter\";a:1:{s:7:\"handler\";s:52:\"entity_translation_handler_filter_translation_exists\";}}s:5:\"label\";a:3:{s:5:\"title\";s:9:\"Etichetta\";s:4:\"help\";s:24:\"The label of the entity.\";s:5:\"field\";a:1:{s:7:\"handler\";s:38:\"entity_translation_handler_field_label\";}}}}',0,1538751382,1),('views_data:node:en','a:47:{s:5:\"table\";a:5:{s:4:\"join\";a:3:{s:8:\"location\";a:3:{s:10:\"left_table\";s:17:\"location_instance\";s:10:\"left_field\";s:3:\"vid\";s:5:\"field\";s:3:\"vid\";}s:12:\"photos_album\";a:2:{s:10:\"left_field\";s:3:\"pid\";s:5:\"field\";s:3:\"nid\";}s:4:\"node\";a:2:{s:10:\"left_field\";s:4:\"tnid\";s:5:\"field\";s:4:\"tnid\";}}s:5:\"group\";s:7:\"Content\";s:4:\"base\";a:5:{s:5:\"field\";s:3:\"nid\";s:5:\"title\";s:7:\"Content\";s:6:\"weight\";i:-10;s:16:\"access query tag\";s:11:\"node_access\";s:8:\"defaults\";a:1:{s:5:\"field\";s:5:\"title\";}}s:11:\"entity type\";s:4:\"node\";s:20:\"default_relationship\";a:1:{s:13:\"node_revision\";a:2:{s:5:\"table\";s:13:\"node_revision\";s:5:\"field\";s:3:\"vid\";}}}s:3:\"nid\";a:6:{s:5:\"title\";s:3:\"Nid\";s:4:\"help\";s:12:\"The node ID.\";s:5:\"field\";a:2:{s:7:\"handler\";s:24:\"views_handler_field_node\";s:14:\"click sortable\";b:1;}s:8:\"argument\";a:4:{s:7:\"handler\";s:31:\"views_handler_argument_node_nid\";s:10:\"name field\";s:5:\"title\";s:7:\"numeric\";b:1;s:13:\"validate type\";s:3:\"nid\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:5:\"title\";a:6:{s:5:\"title\";s:5:\"Title\";s:4:\"help\";s:18:\"The content title.\";s:5:\"field\";a:5:{s:5:\"field\";s:5:\"title\";s:5:\"group\";s:7:\"Content\";s:7:\"handler\";s:24:\"views_handler_field_node\";s:14:\"click sortable\";b:1;s:20:\"link_to_node default\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:29:\"views_handler_argument_string\";}}s:7:\"created\";a:5:{s:5:\"title\";s:9:\"Post date\";s:4:\"help\";s:32:\"The date the content was posted.\";s:5:\"field\";a:2:{s:7:\"handler\";s:24:\"views_handler_field_date\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:23:\"views_handler_sort_date\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:25:\"views_handler_filter_date\";}}s:7:\"changed\";a:5:{s:5:\"title\";s:12:\"Updated date\";s:4:\"help\";s:38:\"The date the content was last updated.\";s:5:\"field\";a:2:{s:7:\"handler\";s:24:\"views_handler_field_date\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:23:\"views_handler_sort_date\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:25:\"views_handler_filter_date\";}}s:4:\"type\";a:6:{s:5:\"title\";s:4:\"Type\";s:4:\"help\";s:73:\"The content type (for example, \"blog entry\", \"forum post\", \"story\", etc).\";s:5:\"field\";a:2:{s:7:\"handler\";s:29:\"views_handler_field_node_type\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:30:\"views_handler_filter_node_type\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:32:\"views_handler_argument_node_type\";}}s:6:\"status\";a:5:{s:5:\"title\";s:9:\"Published\";s:4:\"help\";s:40:\"Whether or not the content is published.\";s:5:\"field\";a:3:{s:7:\"handler\";s:27:\"views_handler_field_boolean\";s:14:\"click sortable\";b:1;s:14:\"output formats\";a:1:{s:22:\"published-notpublished\";a:2:{i:0;s:9:\"Published\";i:1;s:13:\"Not published\";}}}s:6:\"filter\";a:4:{s:7:\"handler\";s:37:\"views_handler_filter_boolean_operator\";s:5:\"label\";s:9:\"Published\";s:4:\"type\";s:6:\"yes-no\";s:9:\"use equal\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:12:\"status_extra\";a:3:{s:5:\"title\";s:18:\"Published or admin\";s:4:\"help\";s:67:\"Filters out unpublished content if the current user cannot view it.\";s:6:\"filter\";a:3:{s:5:\"field\";s:6:\"status\";s:7:\"handler\";s:32:\"views_handler_filter_node_status\";s:5:\"label\";s:18:\"Published or admin\";}}s:7:\"promote\";a:5:{s:5:\"title\";s:22:\"Promoted to front page\";s:4:\"help\";s:57:\"Whether or not the content is promoted to the front page.\";s:5:\"field\";a:3:{s:7:\"handler\";s:27:\"views_handler_field_boolean\";s:14:\"click sortable\";b:1;s:14:\"output formats\";a:1:{s:20:\"promoted-notpromoted\";a:2:{i:0;s:8:\"Promoted\";i:1;s:12:\"Not promoted\";}}}s:6:\"filter\";a:3:{s:7:\"handler\";s:37:\"views_handler_filter_boolean_operator\";s:5:\"label\";s:22:\"Promoted to front page\";s:4:\"type\";s:6:\"yes-no\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:6:\"sticky\";a:5:{s:5:\"title\";s:6:\"Sticky\";s:4:\"help\";s:37:\"Whether or not the content is sticky.\";s:5:\"field\";a:3:{s:7:\"handler\";s:27:\"views_handler_field_boolean\";s:14:\"click sortable\";b:1;s:14:\"output formats\";a:1:{s:6:\"sticky\";a:2:{i:0;s:6:\"Sticky\";i:1;s:10:\"Not sticky\";}}}s:6:\"filter\";a:3:{s:7:\"handler\";s:37:\"views_handler_filter_boolean_operator\";s:5:\"label\";s:6:\"Sticky\";s:4:\"type\";s:6:\"yes-no\";}s:4:\"sort\";a:2:{s:7:\"handler\";s:18:\"views_handler_sort\";s:4:\"help\";s:91:\"Whether or not the content is sticky. To list sticky content first, set this to descending.\";}}s:9:\"view_node\";a:1:{s:8:\"moved to\";a:2:{i:0;s:17:\"views_entity_node\";i:1;s:9:\"view_node\";}}s:9:\"edit_node\";a:1:{s:8:\"moved to\";a:2:{i:0;s:17:\"views_entity_node\";i:1;s:9:\"edit_node\";}}s:11:\"delete_node\";a:1:{s:8:\"moved to\";a:2:{i:0;s:17:\"views_entity_node\";i:1;s:11:\"delete_node\";}}s:4:\"path\";a:1:{s:5:\"field\";a:3:{s:5:\"title\";s:4:\"Path\";s:4:\"help\";s:33:\"The aliased path to this content.\";s:7:\"handler\";s:29:\"views_handler_field_node_path\";}}s:16:\"created_fulldate\";a:3:{s:5:\"title\";s:12:\"Created date\";s:4:\"help\";s:29:\"Date in the form of CCYYMMDD.\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:44:\"views_handler_argument_node_created_fulldate\";}}s:18:\"created_year_month\";a:3:{s:5:\"title\";s:20:\"Created year + month\";s:4:\"help\";s:27:\"Date in the form of YYYYMM.\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:46:\"views_handler_argument_node_created_year_month\";}}s:12:\"created_year\";a:3:{s:5:\"title\";s:12:\"Created year\";s:4:\"help\";s:25:\"Date in the form of YYYY.\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:40:\"views_handler_argument_node_created_year\";}}s:13:\"created_month\";a:3:{s:5:\"title\";s:13:\"Created month\";s:4:\"help\";s:33:\"Date in the form of MM (01 - 12).\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:41:\"views_handler_argument_node_created_month\";}}s:11:\"created_day\";a:3:{s:5:\"title\";s:11:\"Created day\";s:4:\"help\";s:33:\"Date in the form of DD (01 - 31).\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:39:\"views_handler_argument_node_created_day\";}}s:12:\"created_week\";a:3:{s:5:\"title\";s:12:\"Created week\";s:4:\"help\";s:33:\"Date in the form of WW (01 - 53).\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:40:\"views_handler_argument_node_created_week\";}}s:16:\"changed_fulldate\";a:3:{s:5:\"title\";s:12:\"Updated date\";s:4:\"help\";s:29:\"Date in the form of CCYYMMDD.\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"changed\";s:7:\"handler\";s:44:\"views_handler_argument_node_created_fulldate\";}}s:18:\"changed_year_month\";a:3:{s:5:\"title\";s:20:\"Updated year + month\";s:4:\"help\";s:27:\"Date in the form of YYYYMM.\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"changed\";s:7:\"handler\";s:46:\"views_handler_argument_node_created_year_month\";}}s:12:\"changed_year\";a:3:{s:5:\"title\";s:12:\"Updated year\";s:4:\"help\";s:25:\"Date in the form of YYYY.\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"changed\";s:7:\"handler\";s:40:\"views_handler_argument_node_created_year\";}}s:13:\"changed_month\";a:3:{s:5:\"title\";s:13:\"Updated month\";s:4:\"help\";s:33:\"Date in the form of MM (01 - 12).\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"changed\";s:7:\"handler\";s:41:\"views_handler_argument_node_created_month\";}}s:11:\"changed_day\";a:3:{s:5:\"title\";s:11:\"Updated day\";s:4:\"help\";s:33:\"Date in the form of DD (01 - 31).\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"changed\";s:7:\"handler\";s:39:\"views_handler_argument_node_created_day\";}}s:12:\"changed_week\";a:3:{s:5:\"title\";s:12:\"Updated week\";s:4:\"help\";s:33:\"Date in the form of WW (01 - 53).\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"changed\";s:7:\"handler\";s:40:\"views_handler_argument_node_created_week\";}}s:3:\"uid\";a:6:{s:5:\"title\";s:10:\"Author uid\";s:4:\"help\";s:105:\"The user authoring the content. If you need more fields than the uid add the content: author relationship\";s:12:\"relationship\";a:6:{s:5:\"title\";s:6:\"Author\";s:4:\"help\";s:42:\"Relate content to the user who created it.\";s:7:\"handler\";s:26:\"views_handler_relationship\";s:4:\"base\";s:5:\"users\";s:5:\"field\";s:3:\"uid\";s:5:\"label\";s:6:\"author\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:30:\"views_handler_filter_user_name\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:30:\"views_handler_argument_numeric\";}s:5:\"field\";a:1:{s:7:\"handler\";s:24:\"views_handler_field_user\";}}s:12:\"uid_revision\";a:5:{s:5:\"title\";s:19:\"User has a revision\";s:4:\"help\";s:45:\"All nodes where a certain user has a revision\";s:10:\"real field\";s:3:\"nid\";s:6:\"filter\";a:1:{s:7:\"handler\";s:38:\"views_handler_filter_node_uid_revision\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:40:\"views_handler_argument_node_uid_revision\";}}s:13:\"version_count\";a:5:{s:5:\"title\";s:13:\"Version Count\";s:4:\"help\";s:56:\"The total count of versions/revisions of a certain node.\";s:5:\"field\";a:3:{s:7:\"handler\";s:38:\"views_handler_field_node_version_count\";s:5:\"field\";s:3:\"nid\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:2:{s:7:\"handler\";s:39:\"views_handler_filter_node_version_count\";s:11:\"allow empty\";b:0;}s:4:\"sort\";a:1:{s:7:\"handler\";s:37:\"views_handler_sort_node_version_count\";}}s:12:\"new_comments\";a:3:{s:5:\"title\";s:12:\"New comments\";s:4:\"help\";s:39:\"The number of new comments on the node.\";s:5:\"field\";a:2:{s:7:\"handler\";s:37:\"views_handler_field_node_new_comments\";s:11:\"no group by\";b:1;}}s:13:\"comments_link\";a:1:{s:5:\"field\";a:3:{s:5:\"title\";s:16:\"Add comment link\";s:4:\"help\";s:133:\"Display the standard add comment link used on regular nodes, which will only display if the viewing user has access to add a comment.\";s:7:\"handler\";s:37:\"views_handler_field_comment_node_link\";}}s:7:\"comment\";a:5:{s:5:\"title\";s:14:\"Comment status\";s:4:\"help\";s:53:\"Whether comments are enabled or disabled on the node.\";s:5:\"field\";a:2:{s:7:\"handler\";s:32:\"views_handler_field_node_comment\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:33:\"views_handler_filter_node_comment\";}}s:9:\"uid_touch\";a:4:{s:5:\"title\";s:24:\"User posted or commented\";s:4:\"help\";s:70:\"Display nodes only if a user posted the node or commented on the node.\";s:8:\"argument\";a:5:{s:5:\"field\";s:3:\"uid\";s:10:\"name table\";s:5:\"users\";s:10:\"name field\";s:4:\"name\";s:7:\"handler\";s:39:\"views_handler_argument_comment_user_uid\";s:11:\"no group by\";b:1;}s:6:\"filter\";a:4:{s:5:\"field\";s:3:\"uid\";s:10:\"name table\";s:5:\"users\";s:10:\"name field\";s:4:\"name\";s:7:\"handler\";s:37:\"views_handler_filter_comment_user_uid\";}}s:3:\"cid\";a:3:{s:5:\"title\";s:20:\"Comments of the node\";s:4:\"help\";s:151:\"Relate all comments on the node. This will create 1 duplicate record for every comment. Usually if you need this it is better to create a comment view.\";s:12:\"relationship\";a:6:{s:5:\"group\";s:7:\"Comment\";s:5:\"label\";s:8:\"Comments\";s:4:\"base\";s:7:\"comment\";s:10:\"base field\";s:3:\"nid\";s:18:\"relationship field\";s:3:\"nid\";s:7:\"handler\";s:26:\"views_handler_relationship\";}}s:8:\"language\";a:6:{s:5:\"title\";s:8:\"Language\";s:4:\"help\";s:31:\"The language the content is in.\";s:5:\"field\";a:2:{s:7:\"handler\";s:33:\"views_handler_field_node_language\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:34:\"views_handler_filter_node_language\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:36:\"views_handler_argument_node_language\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:17:\"specific_language\";a:3:{s:5:\"title\";s:17:\"Specific language\";s:4:\"help\";s:51:\"Sort by a specific language that the content is in.\";s:4:\"sort\";a:1:{s:7:\"handler\";s:32:\"views_handler_sort_node_language\";}}s:13:\"term_node_tid\";a:4:{s:5:\"title\";s:22:\"Taxonomy terms on node\";s:4:\"help\";s:161:\"Relate nodes to taxonomy terms, specifiying which vocabulary or vocabularies to use. This relationship will cause duplicated records if there are multiple terms.\";s:12:\"relationship\";a:3:{s:7:\"handler\";s:41:\"views_handler_relationship_node_term_data\";s:5:\"label\";s:4:\"term\";s:4:\"base\";s:18:\"taxonomy_term_data\";}s:5:\"field\";a:4:{s:5:\"title\";s:18:\"All taxonomy terms\";s:4:\"help\";s:78:\"Display all taxonomy terms associated with a node from specified vocabularies.\";s:7:\"handler\";s:33:\"views_handler_field_term_node_tid\";s:11:\"no group by\";b:1;}}s:19:\"term_node_tid_depth\";a:4:{s:4:\"help\";s:175:\"Display content if it has the selected taxonomy terms, or children of the selected terms. Due to additional complexity, this has fewer options than the versions without depth.\";s:10:\"real field\";s:3:\"nid\";s:8:\"argument\";a:3:{s:5:\"title\";s:33:\"Has taxonomy term ID (with depth)\";s:7:\"handler\";s:42:\"views_handler_argument_term_node_tid_depth\";s:21:\"accept depth modifier\";b:1;}s:6:\"filter\";a:2:{s:5:\"title\";s:31:\"Has taxonomy terms (with depth)\";s:7:\"handler\";s:40:\"views_handler_filter_term_node_tid_depth\";}}s:24:\"term_node_tid_depth_join\";a:4:{s:4:\"help\";s:175:\"Display content if it has the selected taxonomy terms, or children of the selected terms. Due to additional complexity, this has fewer options than the versions without depth.\";s:10:\"real field\";s:3:\"nid\";s:8:\"argument\";a:3:{s:5:\"title\";s:45:\"Has taxonomy term ID with depth (using joins)\";s:7:\"handler\";s:47:\"views_handler_argument_term_node_tid_depth_join\";s:21:\"accept depth modifier\";b:1;}s:6:\"filter\";a:2:{s:5:\"title\";s:43:\"Has taxonomy terms with depth (using joins)\";s:7:\"handler\";s:45:\"views_handler_filter_term_node_tid_depth_join\";}}s:28:\"term_node_tid_depth_modifier\";a:3:{s:5:\"title\";s:35:\"Has taxonomy term ID depth modifier\";s:4:\"help\";s:111:\"Allows the \"depth\" for Taxonomy: Term ID (with depth) to be modified via an additional contextual filter value.\";s:8:\"argument\";a:1:{s:7:\"handler\";s:51:\"views_handler_argument_term_node_tid_depth_modifier\";}}s:4:\"tnid\";a:8:{s:5:\"group\";s:19:\"Content translation\";s:5:\"title\";s:23:\"Translation set node ID\";s:4:\"help\";s:53:\"The ID of the translation set the content belongs to.\";s:5:\"field\";a:2:{s:7:\"handler\";s:24:\"views_handler_field_node\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:8:\"argument\";a:4:{s:7:\"handler\";s:32:\"views_handler_argument_node_tnid\";s:10:\"name field\";s:5:\"title\";s:7:\"numeric\";b:1;s:13:\"validate type\";s:4:\"tnid\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:12:\"relationship\";a:6:{s:5:\"title\";s:18:\"Source translation\";s:4:\"help\";s:49:\"The source that this content was translated from.\";s:4:\"base\";s:4:\"node\";s:10:\"base field\";s:3:\"nid\";s:7:\"handler\";s:26:\"views_handler_relationship\";s:5:\"label\";s:18:\"Source translation\";}}s:11:\"translation\";a:4:{s:5:\"group\";s:19:\"Content translation\";s:5:\"title\";s:12:\"Translations\";s:4:\"help\";s:43:\"Versions of content in different languages.\";s:12:\"relationship\";a:8:{s:5:\"title\";s:12:\"Translations\";s:4:\"help\";s:43:\"Versions of content in different languages.\";s:4:\"base\";s:4:\"node\";s:10:\"base field\";s:4:\"tnid\";s:18:\"relationship table\";s:4:\"node\";s:18:\"relationship field\";s:4:\"tnid\";s:7:\"handler\";s:38:\"views_handler_relationship_translation\";s:5:\"label\";s:12:\"Translations\";}}s:18:\"source_translation\";a:4:{s:5:\"group\";s:19:\"Content translation\";s:5:\"title\";s:18:\"Source translation\";s:4:\"help\";s:84:\"Content that is either untranslated or is the original version of a translation set.\";s:6:\"filter\";a:1:{s:7:\"handler\";s:30:\"views_handler_filter_node_tnid\";}}s:17:\"child_translation\";a:4:{s:5:\"group\";s:16:\"Node translation\";s:5:\"title\";s:17:\"Child translation\";s:4:\"help\";s:54:\"Content that is a translation of a source translation.\";s:6:\"filter\";a:1:{s:7:\"handler\";s:36:\"views_handler_filter_node_tnid_child\";}}s:9:\"translate\";a:6:{s:5:\"group\";s:19:\"Content translation\";s:5:\"title\";s:18:\"Translation status\";s:4:\"help\";s:91:\"The translation status of the content - whether or not the translation needs to be updated.\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_boolean\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:3:{s:7:\"handler\";s:37:\"views_handler_filter_boolean_operator\";s:5:\"label\";s:8:\"Outdated\";s:4:\"type\";s:6:\"yes-no\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:14:\"translate_node\";a:4:{s:5:\"group\";s:19:\"Content translation\";s:5:\"title\";s:14:\"Translate link\";s:4:\"help\";s:44:\"Provide a simple link to translate the node.\";s:5:\"field\";a:1:{s:7:\"handler\";s:39:\"views_handler_field_node_link_translate\";}}s:19:\"entity_translations\";a:3:{s:5:\"title\";s:32:\"Entity translation: translations\";s:4:\"help\";s:24:\"Translation information.\";s:12:\"relationship\";a:8:{s:5:\"label\";s:12:\"Translations\";s:4:\"base\";s:18:\"entity_translation\";s:10:\"base field\";s:9:\"entity_id\";s:18:\"relationship field\";s:3:\"nid\";s:7:\"handler\";s:39:\"entity_translation_handler_relationship\";s:10:\"left_table\";s:4:\"node\";s:10:\"left_field\";s:3:\"nid\";s:11:\"entity type\";s:4:\"node\";}}}',0,1538750987,1),('views_data:node:it','a:47:{s:5:\"table\";a:5:{s:4:\"join\";a:3:{s:8:\"location\";a:3:{s:10:\"left_table\";s:17:\"location_instance\";s:10:\"left_field\";s:3:\"vid\";s:5:\"field\";s:3:\"vid\";}s:12:\"photos_album\";a:2:{s:10:\"left_field\";s:3:\"pid\";s:5:\"field\";s:3:\"nid\";}s:4:\"node\";a:2:{s:10:\"left_field\";s:4:\"tnid\";s:5:\"field\";s:4:\"tnid\";}}s:5:\"group\";s:9:\"Contenuto\";s:4:\"base\";a:5:{s:5:\"field\";s:3:\"nid\";s:5:\"title\";s:9:\"Contenuto\";s:6:\"weight\";i:-10;s:16:\"access query tag\";s:11:\"node_access\";s:8:\"defaults\";a:1:{s:5:\"field\";s:5:\"title\";}}s:11:\"entity type\";s:4:\"node\";s:20:\"default_relationship\";a:1:{s:13:\"node_revision\";a:2:{s:5:\"table\";s:13:\"node_revision\";s:5:\"field\";s:3:\"vid\";}}}s:3:\"nid\";a:6:{s:5:\"title\";s:3:\"Nid\";s:4:\"help\";s:12:\"The node ID.\";s:5:\"field\";a:2:{s:7:\"handler\";s:24:\"views_handler_field_node\";s:14:\"click sortable\";b:1;}s:8:\"argument\";a:4:{s:7:\"handler\";s:31:\"views_handler_argument_node_nid\";s:10:\"name field\";s:5:\"title\";s:7:\"numeric\";b:1;s:13:\"validate type\";s:3:\"nid\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:5:\"title\";a:6:{s:5:\"title\";s:6:\"Titolo\";s:4:\"help\";s:18:\"The content title.\";s:5:\"field\";a:5:{s:5:\"field\";s:5:\"title\";s:5:\"group\";s:9:\"Contenuto\";s:7:\"handler\";s:24:\"views_handler_field_node\";s:14:\"click sortable\";b:1;s:20:\"link_to_node default\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:27:\"views_handler_filter_string\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:29:\"views_handler_argument_string\";}}s:7:\"created\";a:5:{s:5:\"title\";s:9:\"Post date\";s:4:\"help\";s:32:\"The date the content was posted.\";s:5:\"field\";a:2:{s:7:\"handler\";s:24:\"views_handler_field_date\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:23:\"views_handler_sort_date\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:25:\"views_handler_filter_date\";}}s:7:\"changed\";a:5:{s:5:\"title\";s:12:\"Updated date\";s:4:\"help\";s:38:\"The date the content was last updated.\";s:5:\"field\";a:2:{s:7:\"handler\";s:24:\"views_handler_field_date\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:23:\"views_handler_sort_date\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:25:\"views_handler_filter_date\";}}s:4:\"type\";a:6:{s:5:\"title\";s:4:\"Tipo\";s:4:\"help\";s:73:\"The content type (for example, \"blog entry\", \"forum post\", \"story\", etc).\";s:5:\"field\";a:2:{s:7:\"handler\";s:29:\"views_handler_field_node_type\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:30:\"views_handler_filter_node_type\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:32:\"views_handler_argument_node_type\";}}s:6:\"status\";a:5:{s:5:\"title\";s:10:\"Pubblicato\";s:4:\"help\";s:40:\"Whether or not the content is published.\";s:5:\"field\";a:3:{s:7:\"handler\";s:27:\"views_handler_field_boolean\";s:14:\"click sortable\";b:1;s:14:\"output formats\";a:1:{s:22:\"published-notpublished\";a:2:{i:0;s:10:\"Pubblicato\";i:1;s:14:\"Non pubblicato\";}}}s:6:\"filter\";a:4:{s:7:\"handler\";s:37:\"views_handler_filter_boolean_operator\";s:5:\"label\";s:10:\"Pubblicato\";s:4:\"type\";s:6:\"yes-no\";s:9:\"use equal\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:12:\"status_extra\";a:3:{s:5:\"title\";s:18:\"Published or admin\";s:4:\"help\";s:67:\"Filters out unpublished content if the current user cannot view it.\";s:6:\"filter\";a:3:{s:5:\"field\";s:6:\"status\";s:7:\"handler\";s:32:\"views_handler_filter_node_status\";s:5:\"label\";s:18:\"Published or admin\";}}s:7:\"promote\";a:5:{s:5:\"title\";s:26:\"Promosso alla prima pagina\";s:4:\"help\";s:57:\"Whether or not the content is promoted to the front page.\";s:5:\"field\";a:3:{s:7:\"handler\";s:27:\"views_handler_field_boolean\";s:14:\"click sortable\";b:1;s:14:\"output formats\";a:1:{s:20:\"promoted-notpromoted\";a:2:{i:0;s:8:\"Promoted\";i:1;s:12:\"Not promoted\";}}}s:6:\"filter\";a:3:{s:7:\"handler\";s:37:\"views_handler_filter_boolean_operator\";s:5:\"label\";s:26:\"Promosso alla prima pagina\";s:4:\"type\";s:6:\"yes-no\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:6:\"sticky\";a:5:{s:5:\"title\";s:6:\"Sticky\";s:4:\"help\";s:37:\"Whether or not the content is sticky.\";s:5:\"field\";a:3:{s:7:\"handler\";s:27:\"views_handler_field_boolean\";s:14:\"click sortable\";b:1;s:14:\"output formats\";a:1:{s:6:\"sticky\";a:2:{i:0;s:6:\"Sticky\";i:1;s:10:\"Not sticky\";}}}s:6:\"filter\";a:3:{s:7:\"handler\";s:37:\"views_handler_filter_boolean_operator\";s:5:\"label\";s:6:\"Sticky\";s:4:\"type\";s:6:\"yes-no\";}s:4:\"sort\";a:2:{s:7:\"handler\";s:18:\"views_handler_sort\";s:4:\"help\";s:91:\"Whether or not the content is sticky. To list sticky content first, set this to descending.\";}}s:9:\"view_node\";a:1:{s:8:\"moved to\";a:2:{i:0;s:17:\"views_entity_node\";i:1;s:9:\"view_node\";}}s:9:\"edit_node\";a:1:{s:8:\"moved to\";a:2:{i:0;s:17:\"views_entity_node\";i:1;s:9:\"edit_node\";}}s:11:\"delete_node\";a:1:{s:8:\"moved to\";a:2:{i:0;s:17:\"views_entity_node\";i:1;s:11:\"delete_node\";}}s:4:\"path\";a:1:{s:5:\"field\";a:3:{s:5:\"title\";s:8:\"Percorso\";s:4:\"help\";s:33:\"The aliased path to this content.\";s:7:\"handler\";s:29:\"views_handler_field_node_path\";}}s:16:\"created_fulldate\";a:3:{s:5:\"title\";s:12:\"Created date\";s:4:\"help\";s:29:\"Date in the form of CCYYMMDD.\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:44:\"views_handler_argument_node_created_fulldate\";}}s:18:\"created_year_month\";a:3:{s:5:\"title\";s:20:\"Created year + month\";s:4:\"help\";s:27:\"Date in the form of YYYYMM.\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:46:\"views_handler_argument_node_created_year_month\";}}s:12:\"created_year\";a:3:{s:5:\"title\";s:12:\"Created year\";s:4:\"help\";s:25:\"Date in the form of YYYY.\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:40:\"views_handler_argument_node_created_year\";}}s:13:\"created_month\";a:3:{s:5:\"title\";s:13:\"Created month\";s:4:\"help\";s:33:\"Date in the form of MM (01 - 12).\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:41:\"views_handler_argument_node_created_month\";}}s:11:\"created_day\";a:3:{s:5:\"title\";s:11:\"Created day\";s:4:\"help\";s:33:\"Date in the form of DD (01 - 31).\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:39:\"views_handler_argument_node_created_day\";}}s:12:\"created_week\";a:3:{s:5:\"title\";s:12:\"Created week\";s:4:\"help\";s:33:\"Date in the form of WW (01 - 53).\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"created\";s:7:\"handler\";s:40:\"views_handler_argument_node_created_week\";}}s:16:\"changed_fulldate\";a:3:{s:5:\"title\";s:12:\"Updated date\";s:4:\"help\";s:29:\"Date in the form of CCYYMMDD.\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"changed\";s:7:\"handler\";s:44:\"views_handler_argument_node_created_fulldate\";}}s:18:\"changed_year_month\";a:3:{s:5:\"title\";s:20:\"Updated year + month\";s:4:\"help\";s:27:\"Date in the form of YYYYMM.\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"changed\";s:7:\"handler\";s:46:\"views_handler_argument_node_created_year_month\";}}s:12:\"changed_year\";a:3:{s:5:\"title\";s:12:\"Updated year\";s:4:\"help\";s:25:\"Date in the form of YYYY.\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"changed\";s:7:\"handler\";s:40:\"views_handler_argument_node_created_year\";}}s:13:\"changed_month\";a:3:{s:5:\"title\";s:13:\"Updated month\";s:4:\"help\";s:33:\"Date in the form of MM (01 - 12).\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"changed\";s:7:\"handler\";s:41:\"views_handler_argument_node_created_month\";}}s:11:\"changed_day\";a:3:{s:5:\"title\";s:11:\"Updated day\";s:4:\"help\";s:33:\"Date in the form of DD (01 - 31).\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"changed\";s:7:\"handler\";s:39:\"views_handler_argument_node_created_day\";}}s:12:\"changed_week\";a:3:{s:5:\"title\";s:12:\"Updated week\";s:4:\"help\";s:33:\"Date in the form of WW (01 - 53).\";s:8:\"argument\";a:2:{s:5:\"field\";s:7:\"changed\";s:7:\"handler\";s:40:\"views_handler_argument_node_created_week\";}}s:3:\"uid\";a:6:{s:5:\"title\";s:10:\"Author uid\";s:4:\"help\";s:105:\"The user authoring the content. If you need more fields than the uid add the content: author relationship\";s:12:\"relationship\";a:6:{s:5:\"title\";s:6:\"Autore\";s:4:\"help\";s:42:\"Relate content to the user who created it.\";s:7:\"handler\";s:26:\"views_handler_relationship\";s:4:\"base\";s:5:\"users\";s:5:\"field\";s:3:\"uid\";s:5:\"label\";s:6:\"author\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:30:\"views_handler_filter_user_name\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:30:\"views_handler_argument_numeric\";}s:5:\"field\";a:1:{s:7:\"handler\";s:24:\"views_handler_field_user\";}}s:12:\"uid_revision\";a:5:{s:5:\"title\";s:19:\"User has a revision\";s:4:\"help\";s:45:\"All nodes where a certain user has a revision\";s:10:\"real field\";s:3:\"nid\";s:6:\"filter\";a:1:{s:7:\"handler\";s:38:\"views_handler_filter_node_uid_revision\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:40:\"views_handler_argument_node_uid_revision\";}}s:13:\"version_count\";a:5:{s:5:\"title\";s:13:\"Version Count\";s:4:\"help\";s:56:\"The total count of versions/revisions of a certain node.\";s:5:\"field\";a:3:{s:7:\"handler\";s:38:\"views_handler_field_node_version_count\";s:5:\"field\";s:3:\"nid\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:2:{s:7:\"handler\";s:39:\"views_handler_filter_node_version_count\";s:11:\"allow empty\";b:0;}s:4:\"sort\";a:1:{s:7:\"handler\";s:37:\"views_handler_sort_node_version_count\";}}s:12:\"new_comments\";a:3:{s:5:\"title\";s:14:\"Nuovi commenti\";s:4:\"help\";s:39:\"The number of new comments on the node.\";s:5:\"field\";a:2:{s:7:\"handler\";s:37:\"views_handler_field_node_new_comments\";s:11:\"no group by\";b:1;}}s:13:\"comments_link\";a:1:{s:5:\"field\";a:3:{s:5:\"title\";s:16:\"Add comment link\";s:4:\"help\";s:133:\"Display the standard add comment link used on regular nodes, which will only display if the viewing user has access to add a comment.\";s:7:\"handler\";s:37:\"views_handler_field_comment_node_link\";}}s:7:\"comment\";a:5:{s:5:\"title\";s:14:\"Comment status\";s:4:\"help\";s:53:\"Whether comments are enabled or disabled on the node.\";s:5:\"field\";a:2:{s:7:\"handler\";s:32:\"views_handler_field_node_comment\";s:14:\"click sortable\";b:1;}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:6:\"filter\";a:1:{s:7:\"handler\";s:33:\"views_handler_filter_node_comment\";}}s:9:\"uid_touch\";a:4:{s:5:\"title\";s:24:\"User posted or commented\";s:4:\"help\";s:70:\"Display nodes only if a user posted the node or commented on the node.\";s:8:\"argument\";a:5:{s:5:\"field\";s:3:\"uid\";s:10:\"name table\";s:5:\"users\";s:10:\"name field\";s:4:\"name\";s:7:\"handler\";s:39:\"views_handler_argument_comment_user_uid\";s:11:\"no group by\";b:1;}s:6:\"filter\";a:4:{s:5:\"field\";s:3:\"uid\";s:10:\"name table\";s:5:\"users\";s:10:\"name field\";s:4:\"name\";s:7:\"handler\";s:37:\"views_handler_filter_comment_user_uid\";}}s:3:\"cid\";a:3:{s:5:\"title\";s:20:\"Comments of the node\";s:4:\"help\";s:151:\"Relate all comments on the node. This will create 1 duplicate record for every comment. Usually if you need this it is better to create a comment view.\";s:12:\"relationship\";a:6:{s:5:\"group\";s:8:\"Commento\";s:5:\"label\";s:8:\"Commenti\";s:4:\"base\";s:7:\"comment\";s:10:\"base field\";s:3:\"nid\";s:18:\"relationship field\";s:3:\"nid\";s:7:\"handler\";s:26:\"views_handler_relationship\";}}s:8:\"language\";a:6:{s:5:\"title\";s:6:\"Lingua\";s:4:\"help\";s:31:\"The language the content is in.\";s:5:\"field\";a:2:{s:7:\"handler\";s:33:\"views_handler_field_node_language\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:34:\"views_handler_filter_node_language\";}s:8:\"argument\";a:1:{s:7:\"handler\";s:36:\"views_handler_argument_node_language\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:17:\"specific_language\";a:3:{s:5:\"title\";s:17:\"Specific language\";s:4:\"help\";s:51:\"Sort by a specific language that the content is in.\";s:4:\"sort\";a:1:{s:7:\"handler\";s:32:\"views_handler_sort_node_language\";}}s:13:\"term_node_tid\";a:4:{s:5:\"title\";s:22:\"Taxonomy terms on node\";s:4:\"help\";s:161:\"Relate nodes to taxonomy terms, specifiying which vocabulary or vocabularies to use. This relationship will cause duplicated records if there are multiple terms.\";s:12:\"relationship\";a:3:{s:7:\"handler\";s:41:\"views_handler_relationship_node_term_data\";s:5:\"label\";s:4:\"term\";s:4:\"base\";s:18:\"taxonomy_term_data\";}s:5:\"field\";a:4:{s:5:\"title\";s:18:\"All taxonomy terms\";s:4:\"help\";s:78:\"Display all taxonomy terms associated with a node from specified vocabularies.\";s:7:\"handler\";s:33:\"views_handler_field_term_node_tid\";s:11:\"no group by\";b:1;}}s:19:\"term_node_tid_depth\";a:4:{s:4:\"help\";s:175:\"Display content if it has the selected taxonomy terms, or children of the selected terms. Due to additional complexity, this has fewer options than the versions without depth.\";s:10:\"real field\";s:3:\"nid\";s:8:\"argument\";a:3:{s:5:\"title\";s:33:\"Has taxonomy term ID (with depth)\";s:7:\"handler\";s:42:\"views_handler_argument_term_node_tid_depth\";s:21:\"accept depth modifier\";b:1;}s:6:\"filter\";a:2:{s:5:\"title\";s:31:\"Has taxonomy terms (with depth)\";s:7:\"handler\";s:40:\"views_handler_filter_term_node_tid_depth\";}}s:24:\"term_node_tid_depth_join\";a:4:{s:4:\"help\";s:175:\"Display content if it has the selected taxonomy terms, or children of the selected terms. Due to additional complexity, this has fewer options than the versions without depth.\";s:10:\"real field\";s:3:\"nid\";s:8:\"argument\";a:3:{s:5:\"title\";s:45:\"Has taxonomy term ID with depth (using joins)\";s:7:\"handler\";s:47:\"views_handler_argument_term_node_tid_depth_join\";s:21:\"accept depth modifier\";b:1;}s:6:\"filter\";a:2:{s:5:\"title\";s:43:\"Has taxonomy terms with depth (using joins)\";s:7:\"handler\";s:45:\"views_handler_filter_term_node_tid_depth_join\";}}s:28:\"term_node_tid_depth_modifier\";a:3:{s:5:\"title\";s:35:\"Has taxonomy term ID depth modifier\";s:4:\"help\";s:111:\"Allows the \"depth\" for Taxonomy: Term ID (with depth) to be modified via an additional contextual filter value.\";s:8:\"argument\";a:1:{s:7:\"handler\";s:51:\"views_handler_argument_term_node_tid_depth_modifier\";}}s:4:\"tnid\";a:8:{s:5:\"group\";s:24:\"Traduzione dei contenuti\";s:5:\"title\";s:23:\"Translation set node ID\";s:4:\"help\";s:53:\"The ID of the translation set the content belongs to.\";s:5:\"field\";a:2:{s:7:\"handler\";s:24:\"views_handler_field_node\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:1:{s:7:\"handler\";s:28:\"views_handler_filter_numeric\";}s:8:\"argument\";a:4:{s:7:\"handler\";s:32:\"views_handler_argument_node_tnid\";s:10:\"name field\";s:5:\"title\";s:7:\"numeric\";b:1;s:13:\"validate type\";s:4:\"tnid\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}s:12:\"relationship\";a:6:{s:5:\"title\";s:18:\"Source translation\";s:4:\"help\";s:49:\"The source that this content was translated from.\";s:4:\"base\";s:4:\"node\";s:10:\"base field\";s:3:\"nid\";s:7:\"handler\";s:26:\"views_handler_relationship\";s:5:\"label\";s:18:\"Source translation\";}}s:11:\"translation\";a:4:{s:5:\"group\";s:24:\"Traduzione dei contenuti\";s:5:\"title\";s:12:\"Translations\";s:4:\"help\";s:43:\"Versions of content in different languages.\";s:12:\"relationship\";a:8:{s:5:\"title\";s:12:\"Translations\";s:4:\"help\";s:43:\"Versions of content in different languages.\";s:4:\"base\";s:4:\"node\";s:10:\"base field\";s:4:\"tnid\";s:18:\"relationship table\";s:4:\"node\";s:18:\"relationship field\";s:4:\"tnid\";s:7:\"handler\";s:38:\"views_handler_relationship_translation\";s:5:\"label\";s:12:\"Translations\";}}s:18:\"source_translation\";a:4:{s:5:\"group\";s:24:\"Traduzione dei contenuti\";s:5:\"title\";s:18:\"Source translation\";s:4:\"help\";s:84:\"Content that is either untranslated or is the original version of a translation set.\";s:6:\"filter\";a:1:{s:7:\"handler\";s:30:\"views_handler_filter_node_tnid\";}}s:17:\"child_translation\";a:4:{s:5:\"group\";s:16:\"Node translation\";s:5:\"title\";s:17:\"Child translation\";s:4:\"help\";s:54:\"Content that is a translation of a source translation.\";s:6:\"filter\";a:1:{s:7:\"handler\";s:36:\"views_handler_filter_node_tnid_child\";}}s:9:\"translate\";a:6:{s:5:\"group\";s:24:\"Traduzione dei contenuti\";s:5:\"title\";s:18:\"Translation status\";s:4:\"help\";s:91:\"The translation status of the content - whether or not the translation needs to be updated.\";s:5:\"field\";a:2:{s:7:\"handler\";s:27:\"views_handler_field_boolean\";s:14:\"click sortable\";b:1;}s:6:\"filter\";a:3:{s:7:\"handler\";s:37:\"views_handler_filter_boolean_operator\";s:5:\"label\";s:8:\"Outdated\";s:4:\"type\";s:6:\"yes-no\";}s:4:\"sort\";a:1:{s:7:\"handler\";s:18:\"views_handler_sort\";}}s:14:\"translate_node\";a:4:{s:5:\"group\";s:24:\"Traduzione dei contenuti\";s:5:\"title\";s:14:\"Translate link\";s:4:\"help\";s:44:\"Provide a simple link to translate the node.\";s:5:\"field\";a:1:{s:7:\"handler\";s:39:\"views_handler_field_node_link_translate\";}}s:19:\"entity_translations\";a:3:{s:5:\"title\";s:32:\"Entity translation: translations\";s:4:\"help\";s:24:\"Translation information.\";s:12:\"relationship\";a:8:{s:5:\"label\";s:12:\"Translations\";s:4:\"base\";s:18:\"entity_translation\";s:10:\"base field\";s:9:\"entity_id\";s:18:\"relationship field\";s:3:\"nid\";s:7:\"handler\";s:39:\"entity_translation_handler_relationship\";s:10:\"left_table\";s:4:\"node\";s:10:\"left_field\";s:3:\"nid\";s:11:\"entity type\";s:4:\"node\";}}}',0,1538751382,1);
/*!40000 ALTER TABLE `cache_views` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cache_views_data`
--

DROP TABLE IF EXISTS `cache_views_data`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cache_views_data` (
  `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
  `data` longblob DEFAULT NULL COMMENT 'A collection of data to cache.',
  `expire` int(11) NOT NULL DEFAULT 0 COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
  `created` int(11) NOT NULL DEFAULT 0 COMMENT 'A Unix timestamp indicating when the cache entry was created.',
  `serialized` smallint(6) NOT NULL DEFAULT 1 COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
  PRIMARY KEY (`cid`),
  KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cache table for views to store pre-rendered queries,...';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cache_views_data`
--

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

--
-- Table structure for table `ckeditor_input_format`
--

DROP TABLE IF EXISTS `ckeditor_input_format`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ckeditor_input_format` (
  `name` varchar(128) NOT NULL DEFAULT '' COMMENT 'Name of the CKEditor role',
  `format` varchar(128) NOT NULL DEFAULT '' COMMENT 'Drupal filter format ID',
  PRIMARY KEY (`name`,`format`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores CKEditor input format assignments';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ckeditor_input_format`
--

LOCK TABLES `ckeditor_input_format` WRITE;
/*!40000 ALTER TABLE `ckeditor_input_format` DISABLE KEYS */;
INSERT INTO `ckeditor_input_format` VALUES ('Advanced','filtered_html'),('Full','full_html');
/*!40000 ALTER TABLE `ckeditor_input_format` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ckeditor_settings`
--

DROP TABLE IF EXISTS `ckeditor_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ckeditor_settings` (
  `name` varchar(128) NOT NULL DEFAULT '' COMMENT 'Name of the CKEditor profile',
  `settings` text DEFAULT NULL COMMENT 'Profile settings',
  PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores CKEditor profile settings';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ckeditor_settings`
--

LOCK TABLES `ckeditor_settings` WRITE;
/*!40000 ALTER TABLE `ckeditor_settings` DISABLE KEYS */;
INSERT INTO `ckeditor_settings` VALUES ('Advanced','a:33:{s:2:\"ss\";s:1:\"2\";s:7:\"toolbar\";s:595:\"[\n    [\'Source\'],\n    [\'Cut\',\'Copy\',\'Paste\',\'PasteText\',\'PasteFromWord\',\'-\',\'SpellChecker\', \'Scayt\'],\n    [\'Undo\',\'Redo\',\'Find\',\'Replace\',\'-\',\'SelectAll\'],\n    [\'Image\',\'Media\',\'Flash\',\'Table\',\'HorizontalRule\',\'Smiley\',\'SpecialChar\'],\n    [\'Maximize\', \'ShowBlocks\'],\n    \'/\',\n    [\'Format\'],\n    [\'Bold\',\'Italic\',\'Underline\',\'Strike\',\'-\',\'Subscript\',\'Superscript\',\'-\',\'RemoveFormat\'],\n    [\'NumberedList\',\'BulletedList\',\'-\',\'Outdent\',\'Indent\',\'Blockquote\'],\n    [\'JustifyLeft\',\'JustifyCenter\',\'JustifyRight\',\'JustifyBlock\',\'-\',\'BidiLtr\',\'BidiRtl\'],\n    [\'Link\',\'Unlink\',\'Anchor\',\'Linkit\']\n]\n    \";s:6:\"expand\";s:1:\"t\";s:7:\"default\";s:1:\"t\";s:11:\"show_toggle\";s:1:\"t\";s:7:\"uicolor\";s:7:\"default\";s:12:\"uicolor_user\";s:7:\"default\";s:5:\"width\";s:4:\"100%\";s:4:\"lang\";s:2:\"en\";s:9:\"auto_lang\";s:1:\"t\";s:18:\"language_direction\";s:7:\"default\";s:15:\"allowed_content\";s:1:\"t\";s:19:\"extraAllowedContent\";s:0:\"\";s:10:\"enter_mode\";s:1:\"p\";s:16:\"shift_enter_mode\";s:2:\"br\";s:11:\"font_format\";s:35:\"p;div;pre;address;h1;h2;h3;h4;h5;h6\";s:17:\"custom_formatting\";s:1:\"f\";s:10:\"formatting\";a:1:{s:25:\"custom_formatting_options\";a:6:{s:6:\"indent\";s:6:\"indent\";s:15:\"breakBeforeOpen\";s:15:\"breakBeforeOpen\";s:14:\"breakAfterOpen\";s:14:\"breakAfterOpen\";s:15:\"breakAfterClose\";s:15:\"breakAfterClose\";s:16:\"breakBeforeClose\";i:0;s:10:\"pre_indent\";i:0;}}s:8:\"css_mode\";s:4:\"none\";s:8:\"css_path\";s:0:\"\";s:9:\"css_style\";s:5:\"theme\";s:11:\"styles_path\";s:0:\"\";s:11:\"filebrowser\";s:4:\"imce\";s:17:\"filebrowser_image\";s:0:\"\";s:17:\"filebrowser_flash\";s:0:\"\";s:13:\"UserFilesPath\";s:5:\"%b%f/\";s:21:\"UserFilesAbsolutePath\";s:7:\"%d%b%f/\";s:21:\"forcePasteAsPlainText\";s:1:\"f\";s:13:\"html_entities\";s:1:\"f\";s:17:\"scayt_autoStartup\";s:1:\"f\";s:15:\"theme_config_js\";s:1:\"f\";s:7:\"js_conf\";s:0:\"\";s:11:\"loadPlugins\";a:1:{s:12:\"drupalbreaks\";a:5:{s:4:\"name\";s:12:\"drupalbreaks\";s:4:\"desc\";s:51:\"Plugin for inserting Drupal teaser and page breaks.\";s:4:\"path\";s:25:\"%plugin_dir%drupalbreaks/\";s:7:\"buttons\";a:1:{s:11:\"DrupalBreak\";a:2:{s:5:\"label\";s:11:\"DrupalBreak\";s:4:\"icon\";s:22:\"images/drupalbreak.png\";}}s:7:\"default\";s:1:\"t\";}}}'),('CKEditor Global Profile','a:1:{s:13:\"ckeditor_path\";s:11:\"%m/ckeditor\";}'),('Full','a:33:{s:2:\"ss\";s:1:\"2\";s:7:\"toolbar\";s:708:\"[\n    [\'Source\'],\n    [\'Cut\',\'Copy\',\'Paste\',\'PasteText\',\'PasteFromWord\',\'-\',\'SpellChecker\', \'Scayt\'],\n    [\'Undo\',\'Redo\',\'Find\',\'Replace\',\'-\',\'SelectAll\'],\n    [\'Image\',\'Media\',\'Flash\',\'Table\',\'HorizontalRule\',\'Smiley\',\'SpecialChar\',\'Iframe\'],\n    \'/\',\n    [\'Bold\',\'Italic\',\'Underline\',\'Strike\',\'-\',\'Subscript\',\'Superscript\',\'-\',\'RemoveFormat\'],\n    [\'NumberedList\',\'BulletedList\',\'-\',\'Outdent\',\'Indent\',\'Blockquote\',\'CreateDiv\'],\n    [\'JustifyLeft\',\'JustifyCenter\',\'JustifyRight\',\'JustifyBlock\',\'-\',\'BidiLtr\',\'BidiRtl\',\'-\',\'Language\'],\n    [\'Link\',\'Unlink\',\'Anchor\',\'Linkit\'],\n    [\'DrupalBreak\'],\n    \'/\',\n    [\'Format\',\'Font\',\'FontSize\'],\n    [\'TextColor\',\'BGColor\'],\n    [\'Maximize\', \'ShowBlocks\']\n]\n    \";s:6:\"expand\";s:1:\"t\";s:7:\"default\";s:1:\"t\";s:11:\"show_toggle\";s:1:\"t\";s:7:\"uicolor\";s:7:\"default\";s:12:\"uicolor_user\";s:7:\"default\";s:5:\"width\";s:4:\"100%\";s:4:\"lang\";s:2:\"en\";s:9:\"auto_lang\";s:1:\"t\";s:18:\"language_direction\";s:7:\"default\";s:15:\"allowed_content\";s:1:\"t\";s:19:\"extraAllowedContent\";s:0:\"\";s:10:\"enter_mode\";s:1:\"p\";s:16:\"shift_enter_mode\";s:2:\"br\";s:11:\"font_format\";s:35:\"p;div;pre;address;h1;h2;h3;h4;h5;h6\";s:17:\"custom_formatting\";s:1:\"f\";s:10:\"formatting\";a:1:{s:25:\"custom_formatting_options\";a:6:{s:6:\"indent\";s:6:\"indent\";s:15:\"breakBeforeOpen\";s:15:\"breakBeforeOpen\";s:14:\"breakAfterOpen\";s:14:\"breakAfterOpen\";s:15:\"breakAfterClose\";s:15:\"breakAfterClose\";s:16:\"breakBeforeClose\";i:0;s:10:\"pre_indent\";i:0;}}s:8:\"css_mode\";s:4:\"none\";s:8:\"css_path\";s:0:\"\";s:9:\"css_style\";s:5:\"theme\";s:11:\"styles_path\";s:0:\"\";s:11:\"filebrowser\";s:4:\"imce\";s:17:\"filebrowser_image\";s:0:\"\";s:17:\"filebrowser_flash\";s:0:\"\";s:13:\"UserFilesPath\";s:5:\"%b%f/\";s:21:\"UserFilesAbsolutePath\";s:7:\"%d%b%f/\";s:21:\"forcePasteAsPlainText\";s:1:\"f\";s:13:\"html_entities\";s:1:\"f\";s:17:\"scayt_autoStartup\";s:1:\"f\";s:15:\"theme_config_js\";s:1:\"f\";s:7:\"js_conf\";s:0:\"\";s:11:\"loadPlugins\";a:1:{s:12:\"drupalbreaks\";a:5:{s:4:\"name\";s:12:\"drupalbreaks\";s:4:\"desc\";s:51:\"Plugin for inserting Drupal teaser and page breaks.\";s:4:\"path\";s:25:\"%plugin_dir%drupalbreaks/\";s:7:\"buttons\";a:1:{s:11:\"DrupalBreak\";a:2:{s:5:\"label\";s:11:\"DrupalBreak\";s:4:\"icon\";s:22:\"images/drupalbreak.png\";}}s:7:\"default\";s:1:\"t\";}}}');
/*!40000 ALTER TABLE `ckeditor_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `comment`
--

DROP TABLE IF EXISTS `comment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `comment` (
  `cid` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: Unique comment ID.',
  `pid` int(11) NOT NULL DEFAULT 0 COMMENT 'The comment.cid to which this comment is a reply. If set to 0, this comment is not a reply to an existing comment.',
  `nid` int(11) NOT NULL DEFAULT 0 COMMENT 'The node.nid to which this comment is a reply.',
  `uid` int(11) NOT NULL DEFAULT 0 COMMENT 'The users.uid who authored the comment. If set to 0, this comment was created by an anonymous user.',
  `subject` varchar(64) NOT NULL DEFAULT '' COMMENT 'The comment title.',
  `hostname` varchar(128) NOT NULL DEFAULT '' COMMENT 'The author’s host name.',
  `created` int(11) NOT NULL DEFAULT 0 COMMENT 'The time that the comment was created, as a Unix timestamp.',
  `changed` int(11) NOT NULL DEFAULT 0 COMMENT 'The time that the comment was last edited, as a Unix timestamp.',
  `status` tinyint(3) unsigned NOT NULL DEFAULT 1 COMMENT 'The published status of a comment. (0 = Not Published, 1 = Published)',
  `thread` varchar(255) NOT NULL COMMENT 'The vancode representation of the comment’s place in a thread.',
  `name` varchar(60) DEFAULT NULL COMMENT 'The comment author’s name. Uses users.name if the user is logged in, otherwise uses the value typed into the comment form.',
  `mail` varchar(64) DEFAULT NULL COMMENT 'The comment author’s e-mail address from the comment form, if user is anonymous, and the ’Anonymous users may/must leave their contact information’ setting is turned on.',
  `homepage` varchar(255) DEFAULT NULL COMMENT 'The comment author’s home page address from the comment form, if user is anonymous, and the ’Anonymous users may/must leave their contact information’ setting is turned on.',
  `language` varchar(12) NOT NULL DEFAULT '' COMMENT 'The languages.language of this comment.',
  PRIMARY KEY (`cid`),
  KEY `comment_status_pid` (`pid`,`status`),
  KEY `comment_num_new` (`nid`,`status`,`created`,`cid`,`thread`),
  KEY `comment_uid` (`uid`),
  KEY `comment_nid_language` (`nid`,`language`),
  KEY `comment_created` (`created`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores comments and associated data.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `comment`
--

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

--
-- Table structure for table `contact`
--

DROP TABLE IF EXISTS `contact`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `contact` (
  `cid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: Unique category ID.',
  `category` varchar(255) NOT NULL DEFAULT '' COMMENT 'Category name.',
  `recipients` longtext NOT NULL COMMENT 'Comma-separated list of recipient e-mail addresses.',
  `reply` longtext NOT NULL COMMENT 'Text of the auto-reply message.',
  `weight` int(11) NOT NULL DEFAULT 0 COMMENT 'The category’s weight.',
  `selected` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'Flag to indicate whether or not category is selected by default. (1 = Yes, 0 = No)',
  PRIMARY KEY (`cid`),
  UNIQUE KEY `category` (`category`),
  KEY `list` (`weight`,`category`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Contact form category settings.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `contact`
--

LOCK TABLES `contact` WRITE;
/*!40000 ALTER TABLE `contact` DISABLE KEYS */;
INSERT INTO `contact` VALUES (1,'Website feedback','raffaele.montella@uniparhenope.it','',0,1);
/*!40000 ALTER TABLE `contact` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ctools_css_cache`
--

DROP TABLE IF EXISTS `ctools_css_cache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ctools_css_cache` (
  `cid` varchar(128) NOT NULL COMMENT 'The CSS ID this cache object belongs to.',
  `filename` varchar(255) DEFAULT NULL COMMENT 'The filename this CSS is stored in.',
  `css` longtext DEFAULT NULL COMMENT 'CSS being stored.',
  `filter` tinyint(4) DEFAULT NULL COMMENT 'Whether or not this CSS needs to be filtered.',
  PRIMARY KEY (`cid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='A special cache used to store CSS that must be non-volatile.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ctools_css_cache`
--

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

--
-- Table structure for table `ctools_object_cache`
--

DROP TABLE IF EXISTS `ctools_object_cache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ctools_object_cache` (
  `sid` varchar(64) NOT NULL COMMENT 'The session ID this cache object belongs to.',
  `name` varchar(128) NOT NULL COMMENT 'The name of the object this cache is attached to.',
  `obj` varchar(128) NOT NULL COMMENT 'The type of the object this cache is attached to; this essentially represents the owner so that several sub-systems can use this cache.',
  `updated` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'The time this cache was created or updated.',
  `data` longblob DEFAULT NULL COMMENT 'Serialized data being stored.',
  PRIMARY KEY (`sid`,`obj`,`name`),
  KEY `updated` (`updated`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='A special cache used to store objects that are being...';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ctools_object_cache`
--

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

--
-- Table structure for table `date_format_locale`
--

DROP TABLE IF EXISTS `date_format_locale`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `date_format_locale` (
  `format` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'The date format string.',
  `type` varchar(64) NOT NULL COMMENT 'The date format type, e.g. medium.',
  `language` varchar(12) NOT NULL COMMENT 'A languages.language for this format to be used with.',
  PRIMARY KEY (`type`,`language`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores configured date formats for each locale.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `date_format_locale`
--

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

--
-- Table structure for table `date_format_type`
--

DROP TABLE IF EXISTS `date_format_type`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `date_format_type` (
  `type` varchar(64) NOT NULL COMMENT 'The date format type, e.g. medium.',
  `title` varchar(255) NOT NULL COMMENT 'The human readable name of the format type.',
  `locked` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'Whether or not this is a system provided format.',
  PRIMARY KEY (`type`),
  KEY `title` (`title`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores configured date format types.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `date_format_type`
--

LOCK TABLES `date_format_type` WRITE;
/*!40000 ALTER TABLE `date_format_type` DISABLE KEYS */;
INSERT INTO `date_format_type` VALUES ('long','Lungo',1),('medium','Medio',1),('short','Corto',1);
/*!40000 ALTER TABLE `date_format_type` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `date_formats`
--

DROP TABLE IF EXISTS `date_formats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `date_formats` (
  `dfid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'The date format identifier.',
  `format` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'The date format string.',
  `type` varchar(64) NOT NULL COMMENT 'The date format type, e.g. medium.',
  `locked` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'Whether or not this format can be modified.',
  PRIMARY KEY (`dfid`),
  UNIQUE KEY `formats` (`format`,`type`)
) ENGINE=InnoDB AUTO_INCREMENT=36 DEFAULT CHARSET=utf8 COMMENT='Stores configured date formats.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `date_formats`
--

LOCK TABLES `date_formats` WRITE;
/*!40000 ALTER TABLE `date_formats` DISABLE KEYS */;
INSERT INTO `date_formats` VALUES (1,'Y-m-d H:i','short',1),(2,'m/d/Y - H:i','short',1),(3,'d/m/Y - H:i','short',1),(4,'Y/m/d - H:i','short',1),(5,'d.m.Y - H:i','short',1),(6,'m/d/Y - g:ia','short',1),(7,'d/m/Y - g:ia','short',1),(8,'Y/m/d - g:ia','short',1),(9,'M j Y - H:i','short',1),(10,'j M Y - H:i','short',1),(11,'Y M j - H:i','short',1),(12,'M j Y - g:ia','short',1),(13,'j M Y - g:ia','short',1),(14,'Y M j - g:ia','short',1),(15,'D, Y-m-d H:i','medium',1),(16,'D, m/d/Y - H:i','medium',1),(17,'D, d/m/Y - H:i','medium',1),(18,'D, Y/m/d - H:i','medium',1),(19,'F j, Y - H:i','medium',1),(20,'j F, Y - H:i','medium',1),(21,'Y, F j - H:i','medium',1),(22,'D, m/d/Y - g:ia','medium',1),(23,'D, d/m/Y - g:ia','medium',1),(24,'D, Y/m/d - g:ia','medium',1),(25,'F j, Y - g:ia','medium',1),(26,'j F Y - g:ia','medium',1),(27,'Y, F j - g:ia','medium',1),(28,'j. F Y - G:i','medium',1),(29,'l, F j, Y - H:i','long',1),(30,'l, j F, Y - H:i','long',1),(31,'l, Y,  F j - H:i','long',1),(32,'l, F j, Y - g:ia','long',1),(33,'l, j F Y - g:ia','long',1),(34,'l, Y,  F j - g:ia','long',1),(35,'l, j. F Y - G:i','long',1);
/*!40000 ALTER TABLE `date_formats` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `entity_translation`
--

DROP TABLE IF EXISTS `entity_translation`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `entity_translation` (
  `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this translation relates to',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this translation relates to',
  `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this translation relates to',
  `language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The target language for this translation.',
  `source` varchar(32) NOT NULL DEFAULT '' COMMENT 'The source language from which this translation was created.',
  `uid` int(11) NOT NULL DEFAULT 0 COMMENT 'The author of this translation.',
  `status` int(11) NOT NULL DEFAULT 1 COMMENT 'Boolean indicating whether the translation is published (visible to non-administrators).',
  `translate` int(11) NOT NULL DEFAULT 0 COMMENT 'A boolean indicating whether this translation needs to be updated.',
  `created` int(11) NOT NULL DEFAULT 0 COMMENT 'The Unix timestamp when the translation was created.',
  `changed` int(11) NOT NULL DEFAULT 0 COMMENT 'The Unix timestamp when the translation was most recently saved.',
  PRIMARY KEY (`entity_type`,`entity_id`,`language`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Table to track entity translations';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `entity_translation`
--

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

--
-- Table structure for table `entity_translation_revision`
--

DROP TABLE IF EXISTS `entity_translation_revision`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `entity_translation_revision` (
  `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this translation revision relates to',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this translation revision relates to',
  `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this translation relates to',
  `language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The target language for this translation revision.',
  `source` varchar(32) NOT NULL DEFAULT '' COMMENT 'The source language from which this translation revision was created.',
  `uid` int(11) NOT NULL DEFAULT 0 COMMENT 'The author of this translation revision.',
  `status` int(11) NOT NULL DEFAULT 1 COMMENT 'Boolean indicating whether the translation revision is published (visible to non-administrators).',
  `translate` int(11) NOT NULL DEFAULT 0 COMMENT 'A boolean indicating whether this translation revision needs to be updated.',
  `created` int(11) NOT NULL DEFAULT 0 COMMENT 'The Unix timestamp when the translation revision was created.',
  `changed` int(11) NOT NULL DEFAULT 0 COMMENT 'The Unix timestamp when the translation revision was most recently saved.',
  PRIMARY KEY (`entity_type`,`revision_id`,`language`),
  KEY `revision_id` (`revision_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Table to track entity translation revisions';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `entity_translation_revision`
--

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

--
-- Table structure for table `entity_translation_upgrade_history`
--

DROP TABLE IF EXISTS `entity_translation_upgrade_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `entity_translation_upgrade_history` (
  `nid` int(10) unsigned NOT NULL COMMENT 'The node translation nid.',
  `tnid` int(10) unsigned NOT NULL COMMENT 'The translation set id for the node translation.',
  `language` varchar(12) NOT NULL DEFAULT '' COMMENT 'The node translation language.',
  `complete` int(11) NOT NULL DEFAULT 0 COMMENT 'Boolean indicating whether the node migration has completed.',
  PRIMARY KEY (`nid`),
  KEY `tnid` (`tnid`),
  KEY `complete` (`complete`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='The history table for node translations.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `entity_translation_upgrade_history`
--

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

--
-- Table structure for table `field_config`
--

DROP TABLE IF EXISTS `field_config`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `field_config` (
  `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'The primary identifier for a field',
  `field_name` varchar(32) NOT NULL COMMENT 'The name of this field. Non-deleted field names are unique, but multiple deleted fields can have the same name.',
  `type` varchar(128) NOT NULL COMMENT 'The type of this field.',
  `module` varchar(128) NOT NULL DEFAULT '' COMMENT 'The module that implements the field type.',
  `active` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'Boolean indicating whether the module that implements the field type is enabled.',
  `storage_type` varchar(128) NOT NULL COMMENT 'The storage backend for the field.',
  `storage_module` varchar(128) NOT NULL DEFAULT '' COMMENT 'The module that implements the storage backend.',
  `storage_active` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'Boolean indicating whether the module that implements the storage backend is enabled.',
  `locked` tinyint(4) NOT NULL DEFAULT 0 COMMENT '@TODO',
  `data` longblob NOT NULL COMMENT 'Serialized data containing the field properties that do not warrant a dedicated column.',
  `cardinality` tinyint(4) NOT NULL DEFAULT 0,
  `translatable` tinyint(4) NOT NULL DEFAULT 0,
  `deleted` tinyint(4) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `field_name` (`field_name`),
  KEY `active` (`active`),
  KEY `storage_active` (`storage_active`),
  KEY `deleted` (`deleted`),
  KEY `module` (`module`),
  KEY `storage_module` (`storage_module`),
  KEY `type` (`type`),
  KEY `storage_type` (`storage_type`)
) ENGINE=InnoDB AUTO_INCREMENT=26 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `field_config`
--

LOCK TABLES `field_config` WRITE;
/*!40000 ALTER TABLE `field_config` DISABLE KEYS */;
INSERT INTO `field_config` VALUES (1,'comment_body','text_long','text',1,'field_sql_storage','field_sql_storage',1,0,'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\";}}}',1,0,0),(2,'body','text_with_summary','text',1,'field_sql_storage','field_sql_storage',1,0,'a:7:{s:12:\"entity_types\";a:1:{i:0;s:4:\"node\";}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:8:\"settings\";a:1:{s:23:\"entity_translation_sync\";b:0;}s:12:\"translatable\";s:1:\"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:15:\"field_data_body\";a:3:{s:5:\"value\";s:10:\"body_value\";s:7:\"summary\";s:12:\"body_summary\";s:6:\"format\";s:11:\"body_format\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:19:\"field_revision_body\";a:3:{s:5:\"value\";s:10:\"body_value\";s:7:\"summary\";s:12:\"body_summary\";s:6:\"format\";s:11:\"body_format\";}}}}}s:2:\"id\";s:1:\"2\";}',1,1,0),(3,'field_tags','taxonomy_term_reference','taxonomy',1,'field_sql_storage','field_sql_storage',1,0,'a:7:{s:8:\"settings\";a:1:{s:14:\"allowed_values\";a:1:{i:0;a:2:{s:10:\"vocabulary\";s:4:\"tags\";s:6:\"parent\";i:0;}}}s:12:\"entity_types\";a:0:{}s:12:\"translatable\";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: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\";}',-1,0,0),(4,'field_image','image','image',1,'field_sql_storage','field_sql_storage',1,0,'a:7:{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\";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:22:\"field_data_field_image\";a:5:{s:3:\"fid\";s:15:\"field_image_fid\";s:3:\"alt\";s:15:\"field_image_alt\";s:5:\"title\";s:17:\"field_image_title\";s:5:\"width\";s:17:\"field_image_width\";s:6:\"height\";s:18:\"field_image_height\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:26:\"field_revision_field_image\";a:5:{s:3:\"fid\";s:15:\"field_image_fid\";s:3:\"alt\";s:15:\"field_image_alt\";s:5:\"title\";s:17:\"field_image_title\";s:5:\"width\";s:17:\"field_image_width\";s:6:\"height\";s:18:\"field_image_height\";}}}}}s:12:\"entity_types\";a:0:{}s:12:\"translatable\";i: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\";}}}s:2:\"id\";s:1:\"4\";}',1,0,0),(5,'field_openlayers_example_input','geofield','geofield',1,'field_sql_storage','field_sql_storage',1,0,'a:7:{s:12:\"entity_types\";a:0:{}s:12:\"foreign keys\";a:0:{}s:7:\"indexes\";a:9:{s:3:\"lat\";a:1:{i:0;s:3:\"lat\";}s:3:\"lon\";a:1:{i:0;s:3:\"lon\";}s:3:\"top\";a:1:{i:0;s:3:\"top\";}s:6:\"bottom\";a:1:{i:0;s:6:\"bottom\";}s:4:\"left\";a:1:{i:0;s:4:\"left\";}s:5:\"right\";a:1:{i:0;s:5:\"right\";}s:7:\"geohash\";a:1:{i:0;s:7:\"geohash\";}s:8:\"centroid\";a:2:{i:0;s:3:\"lat\";i:1;s:3:\"lon\";}s:4:\"bbox\";a:4:{i:0;s:3:\"top\";i:1;s:6:\"bottom\";i:2;s:4:\"left\";i:3;s:5:\"right\";}}s:8:\"settings\";a:2:{s:7:\"backend\";s:7:\"default\";s:4:\"srid\";s:4:\"4326\";}s:12:\"translatable\";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:41:\"field_data_field_openlayers_example_input\";a:9:{s:4:\"geom\";s:35:\"field_openlayers_example_input_geom\";s:8:\"geo_type\";s:39:\"field_openlayers_example_input_geo_type\";s:3:\"lat\";s:34:\"field_openlayers_example_input_lat\";s:3:\"lon\";s:34:\"field_openlayers_example_input_lon\";s:4:\"left\";s:35:\"field_openlayers_example_input_left\";s:3:\"top\";s:34:\"field_openlayers_example_input_top\";s:5:\"right\";s:36:\"field_openlayers_example_input_right\";s:6:\"bottom\";s:37:\"field_openlayers_example_input_bottom\";s:7:\"geohash\";s:38:\"field_openlayers_example_input_geohash\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:45:\"field_revision_field_openlayers_example_input\";a:9:{s:4:\"geom\";s:35:\"field_openlayers_example_input_geom\";s:8:\"geo_type\";s:39:\"field_openlayers_example_input_geo_type\";s:3:\"lat\";s:34:\"field_openlayers_example_input_lat\";s:3:\"lon\";s:34:\"field_openlayers_example_input_lon\";s:4:\"left\";s:35:\"field_openlayers_example_input_left\";s:3:\"top\";s:34:\"field_openlayers_example_input_top\";s:5:\"right\";s:36:\"field_openlayers_example_input_right\";s:6:\"bottom\";s:37:\"field_openlayers_example_input_bottom\";s:7:\"geohash\";s:38:\"field_openlayers_example_input_geohash\";}}}}}s:2:\"id\";s:1:\"5\";}',1,0,0),(20,'field_gfdata','geofield','geofield',1,'field_sql_storage','field_sql_storage',1,0,'a:7:{s:12:\"translatable\";i:0;s:12:\"entity_types\";a:0:{}s:8:\"settings\";a:2:{s:7:\"backend\";s:7:\"default\";s:4:\"srid\";s:4:\"4326\";}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_gfdata\";a:9:{s:4:\"geom\";s:17:\"field_gfdata_geom\";s:8:\"geo_type\";s:21:\"field_gfdata_geo_type\";s:3:\"lat\";s:16:\"field_gfdata_lat\";s:3:\"lon\";s:16:\"field_gfdata_lon\";s:4:\"left\";s:17:\"field_gfdata_left\";s:3:\"top\";s:16:\"field_gfdata_top\";s:5:\"right\";s:18:\"field_gfdata_right\";s:6:\"bottom\";s:19:\"field_gfdata_bottom\";s:7:\"geohash\";s:20:\"field_gfdata_geohash\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:27:\"field_revision_field_gfdata\";a:9:{s:4:\"geom\";s:17:\"field_gfdata_geom\";s:8:\"geo_type\";s:21:\"field_gfdata_geo_type\";s:3:\"lat\";s:16:\"field_gfdata_lat\";s:3:\"lon\";s:16:\"field_gfdata_lon\";s:4:\"left\";s:17:\"field_gfdata_left\";s:3:\"top\";s:16:\"field_gfdata_top\";s:5:\"right\";s:18:\"field_gfdata_right\";s:6:\"bottom\";s:19:\"field_gfdata_bottom\";s:7:\"geohash\";s:20:\"field_gfdata_geohash\";}}}}}s:12:\"foreign keys\";a:0:{}s:7:\"indexes\";a:9:{s:3:\"lat\";a:1:{i:0;s:3:\"lat\";}s:3:\"lon\";a:1:{i:0;s:3:\"lon\";}s:3:\"top\";a:1:{i:0;s:3:\"top\";}s:6:\"bottom\";a:1:{i:0;s:6:\"bottom\";}s:4:\"left\";a:1:{i:0;s:4:\"left\";}s:5:\"right\";a:1:{i:0;s:5:\"right\";}s:7:\"geohash\";a:1:{i:0;s:7:\"geohash\";}s:8:\"centroid\";a:2:{i:0;s:3:\"lat\";i:1;s:3:\"lon\";}s:4:\"bbox\";a:4:{i:0;s:3:\"top\";i:1;s:6:\"bottom\";i:2;s:4:\"left\";i:3;s:5:\"right\";}}s:2:\"id\";s:2:\"20\";}',1,0,0),(21,'field_photo','image','image',1,'field_sql_storage','field_sql_storage',1,0,'a:7:{s:12:\"translatable\";s:1:\"1\";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:22:\"field_data_field_photo\";a:5:{s:3:\"fid\";s:15:\"field_photo_fid\";s:3:\"alt\";s:15:\"field_photo_alt\";s:5:\"title\";s:17:\"field_photo_title\";s:5:\"width\";s:17:\"field_photo_width\";s:6:\"height\";s:18:\"field_photo_height\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:26:\"field_revision_field_photo\";a:5:{s:3:\"fid\";s:15:\"field_photo_fid\";s:3:\"alt\";s:15:\"field_photo_alt\";s:5:\"title\";s:17:\"field_photo_title\";s:5:\"width\";s:17:\"field_photo_width\";s:6:\"height\";s:18:\"field_photo_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:\"21\";}',1,1,0),(22,'field_photo_moorings_2012','image','image',1,'field_sql_storage','field_sql_storage',1,0,'a:7:{s:12:\"translatable\";s:1:\"1\";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:36:\"field_data_field_photo_moorings_2012\";a:5:{s:3:\"fid\";s:29:\"field_photo_moorings_2012_fid\";s:3:\"alt\";s:29:\"field_photo_moorings_2012_alt\";s:5:\"title\";s:31:\"field_photo_moorings_2012_title\";s:5:\"width\";s:31:\"field_photo_moorings_2012_width\";s:6:\"height\";s:32:\"field_photo_moorings_2012_height\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:40:\"field_revision_field_photo_moorings_2012\";a:5:{s:3:\"fid\";s:29:\"field_photo_moorings_2012_fid\";s:3:\"alt\";s:29:\"field_photo_moorings_2012_alt\";s:5:\"title\";s:31:\"field_photo_moorings_2012_title\";s:5:\"width\";s:31:\"field_photo_moorings_2012_width\";s:6:\"height\";s:32:\"field_photo_moorings_2012_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:\"22\";}',1,1,0),(23,'taxonomy_forums','taxonomy_term_reference','taxonomy',1,'field_sql_storage','field_sql_storage',1,0,'a:7:{s:8:\"settings\";a:2:{s:14:\"allowed_values\";a:1:{i:0;a:2:{s:10:\"vocabulary\";s:6:\"forums\";s:6:\"parent\";i:0;}}s:23:\"entity_translation_sync\";b:0;}s:12:\"entity_types\";a:0:{}s:12:\"translatable\";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: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:2:\"23\";}',1,0,0),(24,'title_field','text','text',1,'field_sql_storage','field_sql_storage',1,0,'a:7:{s:12:\"translatable\";s:1:\"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: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_title_field\";a:2:{s:5:\"value\";s:17:\"title_field_value\";s:6:\"format\";s:18:\"title_field_format\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:26:\"field_revision_title_field\";a:2:{s:5:\"value\";s:17:\"title_field_value\";s:6:\"format\";s:18:\"title_field_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:\"24\";}',1,1,0),(25,'field_photo_moorings_2010','image','image',1,'field_sql_storage','field_sql_storage',1,0,'a:7:{s:12:\"translatable\";s:1:\"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:36:\"field_data_field_photo_moorings_2010\";a:5:{s:3:\"fid\";s:29:\"field_photo_moorings_2010_fid\";s:3:\"alt\";s:29:\"field_photo_moorings_2010_alt\";s:5:\"title\";s:31:\"field_photo_moorings_2010_title\";s:5:\"width\";s:31:\"field_photo_moorings_2010_width\";s:6:\"height\";s:32:\"field_photo_moorings_2010_height\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:40:\"field_revision_field_photo_moorings_2010\";a:5:{s:3:\"fid\";s:29:\"field_photo_moorings_2010_fid\";s:3:\"alt\";s:29:\"field_photo_moorings_2010_alt\";s:5:\"title\";s:31:\"field_photo_moorings_2010_title\";s:5:\"width\";s:31:\"field_photo_moorings_2010_width\";s:6:\"height\";s:32:\"field_photo_moorings_2010_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:\"25\";}',1,0,0);
/*!40000 ALTER TABLE `field_config` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `field_config_instance`
--

DROP TABLE IF EXISTS `field_config_instance`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `field_config_instance` (
  `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'The primary identifier for a field instance',
  `field_id` int(11) NOT NULL COMMENT 'The identifier of the field attached by this instance',
  `field_name` varchar(32) NOT NULL DEFAULT '',
  `entity_type` varchar(32) NOT NULL DEFAULT '',
  `bundle` varchar(128) NOT NULL DEFAULT '',
  `data` longblob NOT NULL,
  `deleted` tinyint(4) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `field_name_bundle` (`field_name`,`entity_type`,`bundle`),
  KEY `deleted` (`deleted`)
) ENGINE=InnoDB AUTO_INCREMENT=53 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `field_config_instance`
--

LOCK TABLES `field_config_instance` WRITE;
/*!40000 ALTER TABLE `field_config_instance` DISABLE KEYS */;
INSERT INTO `field_config_instance` VALUES (1,1,'comment_body','comment','comment_node_page','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:\"\";}',0),(2,2,'body','node','page','a:7:{s:5:\"label\";s:4:\"Body\";s:6:\"widget\";a:5:{s:6:\"weight\";s:1:\"2\";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: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:6:\"weight\";s:1:\"0\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";}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\";i:0;s:11:\"description\";s:0:\"\";s:13:\"default_value\";N;}',0),(3,1,'comment_body','comment','comment_node_article','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:\"\";}',0),(4,2,'body','node','article','a:7:{s:5:\"label\";s:4:\"Body\";s:6:\"widget\";a:5:{s:6:\"weight\";s:2:\"-4\";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: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\";i:0;s:11:\"description\";s:0:\"\";s:13:\"default_value\";N;}',0),(5,3,'field_tags','node','article','a:7:{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:5:{s:6:\"weight\";s:2:\"-4\";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: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\";i:0;s:13:\"default_value\";N;}',0),(6,4,'field_image','node','article','a:6:{s:5:\"label\";s:5:\"Image\";s:11:\"description\";s:40:\"Upload an image to go with this article.\";s:8:\"required\";i: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\";i:1;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:6:\"widget\";a:5:{s:6:\"weight\";s:2:\"-1\";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: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\";}}}',0),(7,1,'comment_body','comment','comment_node_photos','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:\"\";}',0),(8,2,'body','node','photos','a:7:{s:5:\"label\";s:17:\"Album description\";s:6:\"widget\";a:5:{s:6:\"weight\";s:2:\"-4\";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: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:10:\"text_plain\";s:6:\"weight\";s:1:\"0\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";}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:4:\"full\";a:5:{s:5:\"label\";s:6:\"hidden\";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;}',0),(9,2,'body','node','openlayers_example_content','a:7:{s:13:\"default_value\";N;s:11:\"description\";s:0:\"\";s:7:\"display\";a:2:{s:7:\"default\";a:5:{s:5:\"label\";s:6:\"hidden\";s:6:\"module\";s:4:\"text\";s:8:\"settings\";a:0:{}s:4:\"type\";s:12:\"text_default\";s:6:\"weight\";s:1:\"0\";}s:6:\"teaser\";a:5:{s:5:\"label\";s:6:\"hidden\";s:6:\"module\";s:4:\"text\";s:8:\"settings\";a:1:{s:11:\"trim_length\";i:600;}s:4:\"type\";s:23:\"text_summary_or_trimmed\";s:6:\"weight\";i:0;}}s:5:\"label\";s:4:\"Body\";s:8:\"required\";i:0;s:8:\"settings\";a:4:{s:15:\"text_processing\";s:1:\"1\";s:15:\"display_summary\";i:1;s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:6:\"widget\";a:5:{s:6:\"weight\";s:1:\"2\";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;}}}',0),(10,5,'field_openlayers_example_input','node','openlayers_example_content','a:7:{s:13:\"default_value\";a:0:{}s:11:\"description\";s:0:\"\";s:7:\"display\";a:2:{s:7:\"default\";a:5:{s:5:\"label\";s:5:\"above\";s:6:\"module\";s:8:\"geofield\";s:8:\"settings\";a:1:{s:4:\"data\";s:4:\"full\";}s:4:\"type\";s:12:\"geofield_wkt\";s:6:\"weight\";s:1:\"1\";}s:6:\"teaser\";a:4:{s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:4:\"type\";s:6:\"hidden\";s:6:\"weight\";i:0;}}s:5:\"label\";s:33:\"OpenLayers Example Geofield Input\";s:8:\"required\";i:0;s:8:\"settings\";a:3:{s:10:\"local_solr\";a:3:{s:7:\"enabled\";b:0;s:9:\"lat_field\";s:3:\"lat\";s:9:\"lng_field\";s:3:\"lng\";}s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:6:\"widget\";a:5:{s:6:\"weight\";s:1:\"1\";s:4:\"type\";s:12:\"geofield_wkt\";s:6:\"module\";s:8:\"geofield\";s:6:\"active\";i:1;s:8:\"settings\";a:0:{}}}',0),(11,1,'comment_body','comment','comment_node_openlayers_example_content','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:\"\";}',0),(30,1,'comment_body','comment','comment_node_mooring','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:\"\";}',0),(31,2,'body','node','mooring','a:7:{s:5:\"label\";s:4:\"Body\";s:6:\"widget\";a:5:{s:6:\"weight\";s:1:\"2\";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: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\";i:0;s:11:\"description\";s:0:\"\";s:13:\"default_value\";N;}',0),(32,20,'field_gfdata','node','mooring','a:7:{s:5:\"label\";s:4:\"Data\";s:6:\"widget\";a:5:{s:6:\"weight\";s:1:\"1\";s:4:\"type\";s:15:\"geofield_latlon\";s:6:\"module\";s:8:\"geofield\";s:6:\"active\";i:1;s:8:\"settings\";a:1:{s:17:\"html5_geolocation\";i: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:\"geofield_wkt\";s:8:\"settings\";a:1:{s:4:\"data\";s:4:\"full\";}s:6:\"module\";s:8:\"geofield\";s:6:\"weight\";i:1;}}s:8:\"required\";i:0;s:11:\"description\";s:0:\"\";s:13:\"default_value\";N;}',0),(33,1,'comment_body','comment','comment_node_photo_moorings_2014','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:\"\";}',0),(34,2,'body','node','photo_moorings_2014','a:7:{s:5:\"label\";s:4:\"Body\";s:6:\"widget\";a:5:{s:6:\"weight\";s:2:\"31\";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: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:6:\"weight\";s:1:\"0\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";}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\";i:0;s:11:\"description\";s:0:\"\";s:13:\"default_value\";N;}',0),(35,21,'field_photo','node','photo_moorings_2014','a:6:{s:5:\"label\";s:19:\"Photo Moorings 2014\";s:6:\"widget\";a:5:{s:6:\"weight\";s:2:\"32\";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: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:23:\"entity_translation_sync\";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:\"1\";s:8:\"settings\";a:2:{s:11:\"image_style\";s:0:\"\";s:10:\"image_link\";s:4:\"file\";}s:6:\"module\";s:5:\"image\";}}s:8:\"required\";i:0;s:11:\"description\";s:0:\"\";}',0),(36,1,'comment_body','comment','comment_node_photo_moorings_2012','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:\"\";}',0),(37,2,'body','node','photo_moorings_2012','a:7:{s:5:\"label\";s:4:\"Body\";s:6:\"widget\";a:5:{s:6:\"weight\";s:2:\"31\";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: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:6:\"weight\";s:1:\"0\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";}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:4:\"full\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:12:\"text_default\";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;}',0),(38,22,'field_photo_moorings_2012','node','photo_moorings_2012','a:6:{s:5:\"label\";s:19:\"Photo Moorings 2012\";s:6:\"widget\";a:5:{s:6:\"weight\";s:2:\"32\";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: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:23:\"entity_translation_sync\";i:0;s:18:\"user_register_form\";b:0;}s:7:\"display\";a:2:{s:7:\"default\";a:5:{s:5:\"label\";s:5:\"above\";s:4:\"type\";s:5:\"image\";s:6:\"weight\";s:1:\"1\";s:8:\"settings\";a:2:{s:11:\"image_style\";s:0:\"\";s:10:\"image_link\";s:0:\"\";}s:6:\"module\";s:5:\"image\";}s:4:\"full\";a:5:{s:5:\"label\";s:5:\"above\";s:4:\"type\";s:5:\"image\";s:6:\"weight\";s:1:\"1\";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:0;s:11:\"description\";s:0:\"\";}',0),(39,23,'taxonomy_forums','node','forum','a:7:{s:5:\"label\";s:6:\"Forums\";s:8:\"required\";i:1;s:6:\"widget\";a:5:{s:6:\"weight\";s:1:\"0\";s:4:\"type\";s:14:\"options_select\";s:6:\"module\";s:7:\"options\";s:6:\"active\";i:1;s:8:\"settings\";a:0:{}}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:11:\"description\";s:0:\"\";s:13:\"default_value\";N;}',0),(40,1,'comment_body','comment','comment_node_forum','a:6:{s:5:\"label\";s:7:\"Comment\";s:8:\"settings\";a:3:{s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";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:\"\";}',0),(41,2,'body','node','forum','a:7:{s:5:\"label\";s:4:\"Body\";s:6:\"widget\";a:5:{s:6:\"weight\";s:2:\"31\";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: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: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\";i:0;s:11:\"description\";s:0:\"\";s:13:\"default_value\";N;}',0),(42,24,'title_field','node','photos','a:7:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:0:\"\";s:8:\"required\";i:1;s:8:\"settings\";a:4:{s:15:\"text_processing\";s:1:\"0\";s:10:\"hide_label\";a:2:{s:4:\"page\";i:0;s:6:\"entity\";i:0;}s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:6:\"widget\";a:5:{s:6:\"weight\";s:2:\"-5\";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: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;}}s:13:\"default_value\";N;}',0),(43,24,'title_field','node','article','a:7:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:0:\"\";s:8:\"required\";i:1;s:8:\"settings\";a:4:{s:15:\"text_processing\";s:1:\"0\";s:10:\"hide_label\";a:2:{s:4:\"page\";i:0;s:6:\"entity\";i:0;}s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:6:\"widget\";a:5:{s:6:\"weight\";s:2:\"-5\";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: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:11;}}s:13:\"default_value\";N;}',0),(44,24,'title_field','node','page','a:7:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:0:\"\";s:8:\"required\";i:1;s:8:\"settings\";a:4:{s:15:\"text_processing\";s:1:\"0\";s:10:\"hide_label\";a:2:{s:4:\"page\";i:0;s:6:\"entity\";i:0;}s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}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: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:1:\"1\";s:8:\"settings\";a:0:{}}}s:13:\"default_value\";N;}',0),(45,24,'title_field','node','forum','a:7:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:0:\"\";s:8:\"required\";i:1;s:8:\"settings\";a:4:{s:15:\"text_processing\";s:1:\"0\";s:10:\"hide_label\";a:2:{s:4:\"page\";i:0;s:6:\"entity\";i:0;}s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:6:\"widget\";a:5:{s:6:\"weight\";s:2:\"-5\";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: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:12;}}s:13:\"default_value\";N;}',0),(46,24,'title_field','node','mooring','a:7:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:0:\"\";s:8:\"required\";i:1;s:8:\"settings\";a:4:{s:15:\"text_processing\";s:1:\"0\";s:10:\"hide_label\";a:2:{s:4:\"page\";i:0;s:6:\"entity\";i:0;}s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:6:\"widget\";a:5:{s:6:\"weight\";s:2:\"-5\";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: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:2;}}s:13:\"default_value\";N;}',0),(47,24,'title_field','node','openlayers_example_content','a:7:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:0:\"\";s:8:\"required\";i:1;s:8:\"settings\";a:4:{s:15:\"text_processing\";s:1:\"0\";s:10:\"hide_label\";a:2:{s:4:\"page\";i:0;s:6:\"entity\";i:0;}s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:6:\"widget\";a:5:{s:6:\"weight\";s:2:\"-5\";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: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:2;}}s:13:\"default_value\";N;}',0),(48,24,'title_field','node','photo_moorings_2012','a:7:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:0:\"\";s:8:\"required\";i:1;s:8:\"settings\";a:4:{s:15:\"text_processing\";s:1:\"0\";s:10:\"hide_label\";a:2:{s:4:\"page\";i:0;s:6:\"entity\";i:0;}s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:6:\"widget\";a:5:{s:6:\"weight\";i:-5;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: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:2;}}s:13:\"default_value\";N;}',0),(49,24,'title_field','node','photo_moorings_2014','a:7:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:0:\"\";s:8:\"required\";i:1;s:8:\"settings\";a:4:{s:15:\"text_processing\";s:1:\"0\";s:10:\"hide_label\";a:2:{s:4:\"page\";i:0;s:6:\"entity\";i:0;}s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";b:0;}s:6:\"widget\";a:5:{s:6:\"weight\";s:2:\"-5\";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: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:2;}}s:13:\"default_value\";N;}',0),(50,1,'comment_body','comment','comment_node_photo_moorings_2010','a:6:{s:5:\"label\";s:7:\"Comment\";s:8:\"settings\";a:3:{s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;s:23:\"entity_translation_sync\";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\";s:1:\"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:\"\";}',0),(51,2,'body','node','photo_moorings_2010','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:\"31\";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:\"\";}',0),(52,25,'field_photo_moorings_2010','node','photo_moorings_2010','a:6:{s:5:\"label\";s:19:\"Photo Moorings 2010\";s:6:\"widget\";a:4:{s:4:\"type\";s:11:\"image_image\";s:6:\"weight\";s:2:\"32\";s:8:\"settings\";a:2:{s:18:\"progress_indicator\";s:8:\"throbber\";s:19:\"preview_image_style\";s:9:\"thumbnail\";}s:6:\"module\";s:5:\"image\";}s:8:\"settings\";a:10:{s:15:\"file_extensions\";s:16:\"png gif jpg jpeg\";s:14:\"file_directory\";s:0:\"\";s:12:\"max_filesize\";s:0:\"\";s:9:\"alt_field\";i:0;s:11:\"title_field\";i:0;s:14:\"max_resolution\";s:0:\"\";s:14:\"min_resolution\";s: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:1;}}s:8:\"required\";b:0;s:11:\"description\";s:0:\"\";}',0);
/*!40000 ALTER TABLE `field_config_instance` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `field_data_body`
--

DROP TABLE IF EXISTS `field_data_body`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `field_data_body` (
  `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to',
  `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  `deleted` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'A boolean indicating whether this data item has been deleted',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  `revision_id` int(10) unsigned DEFAULT NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
  `language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language for this data item.',
  `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  `body_value` longtext DEFAULT NULL,
  `body_summary` longtext DEFAULT NULL,
  `body_format` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`entity_type`,`entity_id`,`deleted`,`delta`,`language`),
  KEY `entity_type` (`entity_type`),
  KEY `bundle` (`bundle`),
  KEY `deleted` (`deleted`),
  KEY `entity_id` (`entity_id`),
  KEY `revision_id` (`revision_id`),
  KEY `language` (`language`),
  KEY `body_format` (`body_format`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for field 2 (body)';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `field_data_body`
--

LOCK TABLES `field_data_body` WRITE;
/*!40000 ALTER TABLE `field_data_body` DISABLE KEYS */;
INSERT INTO `field_data_body` VALUES ('node','page',0,1,1,'und',0,'\r\n','','full_html'),('node','page',0,2,2,'und',0,'<p><em>Prof. Giancarlo Spezie (P.I.)&nbsp;- &nbsp;giancarlo.spezie@uniparthenope.it</em></p>\r\n\r\n<p><em>Prof. Giorgio Budillon - giorgio.budillon@uniparthenope.it</em></p>\r\n\r\n<h2><strong>Università degli Studi di Napoli \"Parthenope\"</strong></h2>\r\n\r\n<p>DiST - Dipartimento di Scienze e Tecnologie<br />\r\nCentro Direzionale, Isola C4. 80143 Napoli - ITALY<br />\r\nph. +39 081 5476584<br />\r\nfax. +39 081 5476515</p>\r\n','','full_html'),('node','page',0,3,3,'en',0,'<p>Le attività vengono svolte in collaborazione con:</p>\r\n\r\n<div id=\"logoISMAR\">\r\n    <div>\r\n          <img src=\"/sites/all/themes/multipurpose/images/logoISMAR.jpg\" style=\"float: left;\" width=\"100\" border=\"none\"/>\r\n    <div\r\n    <div style=\"padding-top: 25px;\">\r\n         <a href=\"http://www.ismar.cnr.it\" target=\"_blank\">Consiglio Nazionale delle Ricerche - ISMAR Ancona</a>\r\n        <br>\r\n       <a href=\"http://www.ismar.cnr.it\" target=\"_blank\">Consiglio Nazionale delle Ricerche - ISMAR Bologna</a>\r\n    </div>\r\n</div>\r\n<br>\r\n<div id=\"logoDistav\">\r\n    <div>\r\n        <img src=\"/sites/all/themes/multipurpose/images/logoDistavGenova.jpg\" style=\"float: left;\"  width=\"150\" border=\"none\"/>\r\n    </div>\r\n    <div style=\"padding-top: 25px;\">\r\n        <a href=\"http://www.distav.unige.it\" target=\"_blank\">Università degli Studi di Genova - DiSTAV</a>\r\n    </div>\r\n</div>\r\n<br>\r\n<div id=\"logoUnivCapo\">\r\n    <div>\r\n        <img src=\"/sites/all/themes/multipurpose/images/UCT_logocircless.gif\" style=\"float: left;\"  width=\"100\" border=\"none\"/>\r\n    </div>\r\n    <div style=\"padding-top: 50px;\">\r\n        <a href=\"http://www.uct.ac.za/\" target=\"_blank\">Università di Città del Capo</a>\r\n    </div>\r\n</div>\r\n<br>\r\n<br>\r\n<div id=\"logoSanap\">\r\n    <div>\r\n        <img src=\"/sites/all/themes/multipurpose/images/sanap.gif\" style=\"float: left;\"  width=\"100\" border=\"none\"/>\r\n    </div>\r\n    <div style=\"padding-top: 70px;\">\r\n        <a href=\"http://www.sanap.ac.za/\" target=\"_blank\">South African National Antarctic Programme - SANAP</a>\r\n  </div>\r\n</div>','','full_html'),('node','page',0,4,4,'en',0,'<div style=\"text-align: center;\">\r\n<div style=\" float:left; border: none; margin-right:20px;\"><a href=\"morsea.uniparthenope.it/?q=node/37\"><img  style=\"border:none;\" width=\"250\" src=\"/sites/all/themes/multipurpose/images/Metadata.png\"/></a></div>\r\n\r\n<div style=\"border: none; margin-left:40px;\"><a href=\"http://morsea.uniparthenope.it/chart/page\"><img style=\"border:none;\" width=\"250\" src=\"/sites/all/themes/multipurpose/images/TimeSeries.png\"/></a>\r\n</div>\r\n</div>\r\n<br>\r\n<p style=\"align:justify;\">Data and samples are currently distributed according to Italian PNRA policies; for information contact the scientific coordinators <br>(giancarlo.spezie@uniparthenope.it or giorgio.budillon@uniparthenope.it)</p>\r\n','','filtered_html'),('node','page',0,7,7,'en',0,'<div><strong><a href=\"http://morsea.uniparthenope.it/?q=node/30\">a)  ACC sub surface thermal structure monitoring</a></strong></div>\r\n</br>\r\n<div><strong><a href=\"http://morsea.uniparthenope.it/?q=node/31\">b) Temperature and Salinity underway surface measurenments</a></strong></div>\r\n</br>\r\n<div><strong><a href=\"http://morsea.uniparthenope.it/?q=node/32\">c) Drifter and floats lagrangian measurements</a></strong></div>\r\n','','full_html'),('node','page',0,8,8,'und',0,'<p><a href=\"node/8\">Mooring B</a></p>\r\n\r\n<p><img alt=\"\" src=\"/sites/default/files/Mooring%20B%202014.png\" style=\"height:960px; width:720px\" /></p>\r\n','','full_html'),('node','page',0,12,12,'en',0,'<p>During the Italian XXIX Antarctic Expedition (Austral Summer 2013-14) all moorings included into the \"MORSea\" project were recovered, serviced and deployed.\r\nThe following map and links show the location of moorings in the Ross Sea and their composition together with basic information.</p>\r\n<div><strong><a href=\"http://morsea.uniparthenope.it/?q=node/28\">Click here to have more information about the moorings configuration</a></strong></div>\r\n<div><strong><a href=\"https://www.google.com/maps/d/edit?mid=zbQQmJ6-SKww.kXWDxKLMktvM\">Click here to have the moorings location map</a></strong></div>\r\n<div>&nbsp;</div>\r\n<div><img alt=\"\" src=\"/sites/default/files/MooringRossSea2014.png\" style=\"height:495px; width:660px\" /></div>\r\n','','full_html'),('node','page',0,13,13,'en',0,'<h1 align= \"center\"><strong>Rapporto sulla Campagna Antartica (estratto)</strong></h1>\r\n\r\n<h2 align=\"center\"><strong>Estate Australe 2011-2012</strong></h2>\r\n\r\n<h3 align=\"center\"><strong>Ventisettesima Spedizione (PNRA XXVII)</strong></h3>\r\n\r\n<p align=\"center\"><strong>Progetto 2009/B.09: Osservatorio Marino Nel Mare di Ross ( MORSea)</strong><br />\r\n<em>E. Paschini, P. Penna, G. Spezie</em></p>\r\n\r\n<p align=\"justify\">Il Progetto MORSea è relativo alla sola attività di mantenimento della rete di osservazioni marine attualmente esistente nel Mare di Ross. L’obiettivo primario della rete è quello di fornire un sostanziale contributo al monitoraggio della variabilità interannuale delle caratteristiche termoaline delle acque di shelf nel settore occidentale del Mare di Ross.\r\nL’osservatorio è costituito da 4 mooring contrassegnati dalle lettere B, D, G e L. Il Progetto si occupa del mantenimento dei mooring esistenti e, possibilmente, di potenziare la strumentazione attualmente alloggiata sulla base anche di accordi e collaborazioni con progetti italiani e stranieri.\r\nPer la Campagna 2011-12 la responsabilità delle operazioni è stata affidata a Elio Paschini del CNR – ISMAR Sezione di Ancona, coadiuvato da Pierluigi Penna dello stesso Istituto e in collaborazione con G. Budillon e P.P. Falco del Progetto T-REx, presenti a bordo.\r\nSi riporta, di seguito, la sintesi delle attività svolte, redatta da Elio Paschini.\r\nLa preparazione alla crociera é stata affrettata e senza finanziamenti. Siamo stati invitati a partecipare alla 27a Spedizione alla fine dell’estate 2011 ed avvertiti che bisognava far fronte alle spese vive anticipando con fondi propri.\r\nSono stati subito presi contatti con l’Istituto NURC della Nato di La Spezia per avere un certo numero di correntometri uguali a quelli in uso in Antartide. Questo, allo scopo di avere degli strumenti di riserva e soprattutto per abbreviare i tempi tra il recupero ed il successivo lancio dei mooring. Il NURC ci ha gentilmente prestato 6 correntometri Aanderaa RCM7, tutti dotati di sensore di pressione da 1000psi (600 metri di range) e 3 memorie da 64K byte. Tali strumenti sono stati testati in laboratorio e sottoposti ad una prova di durata, facendoli funzionare con un intervallo di misura di 5 minuti durante il viaggio dell’Italica. dall’Italia alla NZ. Alla fine solo 5 sono stati considerati validi e 4 di questi sono ora in uso nel Mare di Ross. .\r\nInutile ricordare che un rinnovo del parco strumenti é necessario. Stiamo utilizzando gli scarti degli istituti di ricerca ricchi per le ricerche (povere) in Antartide.\r\nPrima della partenza dei materiali, é stata fatta riparare e testare da un laboratorio elettronico di nostra fiducia, l’unità di sgancio EG&G mod 8011B dichiarata irriparabile dall’importatore. Nell’occasione é stato allungato il cavo del trasduttore di circa 20 m, constatando che il segnale veniva degradato soltanto del 10%.\r\nAl nostro arrivo in Nuova Zelanda abbiamo apprezzato il giorno e mezzo trascorso in porto, per approntare il laboratorio e predisporre la nostra attrezzatura per un pronto intervento.\r\nDurante questa campagna sono state usate le seguenti innovazioni rispetto al passato:\r\n<ol>\r\n<li align=\"justify\">Il trasduttore é stato posto in un V-fin, che ha permesso di eseguire le operazioni di avvicinamento e sgancio anche con nave in manovra a bassa velocità: fino a 5-6 nodi. Questa innovazione sarebbe risultata ancor più utile se si fosse dovuto eseguire una ricerca/inseguimento di un mooring vagante. Dato che il cavo ora é lungo 30 metri: l’unità di sgancio é stata portata in plancia, e da lì sono state effettuate le operazioni in stretta interazione con il comando della nave ed al caldo del ponte.</li>\r\n<li align=\"justify\">In fase di recupero si é fatto largo uso della bozza cortissima (due metri) e nodo Prusik direttamente sul cavo di ormeggio. Questo ha permesso maggiore sicurezza e velocità nelle operazioni. Molti sbirri da un metro sono stati recuperati e riposizionati in posti più utili.</li>\r\n<li align=\"justify\">Nel rilascio della zavorra é stato finalmente usato un congegno acquistato per questo scopo almeno 10 anni fà. Il nuovo sistema ha convinto tutti per semplicità e sicurezza. Lo stesso attrezzo é stato usato per la messa a mare dei componenti pesanti (trappole e coppie di sgancia tori).</li>\r\n<li align=\"justify\">Dove é stato possibile, sono state eliminate tutte le parti metalliche. Le boe di vetro OCEANO sono ora legate ad uno spezzone di kevlar, che ne facilita il trasporto ed elimina la corrosione. Con lo stesso sistema sono state collegate a coppia le boe NAUTILUS.</li>\r\n</ol>\r\n</p>\r\n<p align=\"justify\">Nella riunione preparatoria della campagna, tenutasi a Roma presso la sede ENEA, si era deciso che gli strumenti del Progetto Picco sarebbero stati aggiunti in cima al mooring D con un punto debole di circa 300kg di rottura. Questo per non compromettere tutto il mooring in caso di collisione con un iceberg nella parte superficiale della catena di strumenti. Durante le operazioni di lancio il punto debole é stato elevato a 500kg per la possibilità di strappi nella fase di lancio.\r\nLa U.O. ha prestato assistenza preziosa alla campagna. Il CTD utilizzato durante tutta la campagna é stato quello PNRA assegnato a questa U.O. e portato come riserva. Come pure il convertitore USB a quattro porte seriali ed un altro convertitore USB-seriale, usato per il lanciatore XBT. Un convertitore USB per dischi SATA é stato prestato al servizio informatico della nave. É stato fornito il segnale GPS al lanciatore XBT e Penna é entrato nei turni di lancio delle sonde XBT. Il controllo del funzionamento della misura automatica di CO2 ed il prelievo di 9 campioni di aria per la U.O. Ori é stato curato da questa U.O..\r\nLa U.O. stà compilando un modulo di crociera internazionale standardizzato (CSR) contenente i metadati di tutte le U.O. coinvolte direttamente o indirettamente nella campagna, che sarà inviato alla banca dati europea SEA-DATA-NET.\r\nEntrambi i correntometri Aanderaa RCM9 hanno mostrato di non essere adatti a temperature così fredde per tempi così prolungati in acqua: entrambi sono risultati allagati. Il modello RCM7 sebbene più vecchio si é dimostrato più robusto. La perdita di dati nel secondo anno di misura, riscontrata in ogni strumento é dovuto alla infelice scelta di lasciare l’intervallo di campionamento a mezzora, invece di spostarlo ad un ora.</p>\r\n\r\n<p align=\"justify\"><strong>Tentativo di recupero del Mooring L vecchio (2008)</strong>\r\nÉ stato possibile effettuare tentativi di recupero in tre giorni distinti, ma nonostante questo il mooring é ancora lì. Sappiamo solo che é ancora integro e conosciamo più precisamente la sua posizione. Ovviamente abbiamo interrogato lo sganciatore, che non ha mai risposto. Sarebbe lungo descrivere dettagliatamente tutti i tentativi effettuati e le tecniche utilizzate. Possiamo dire che il metodo di incoccio con una una barra di cavo in kevlar posta a 60 metri di profondità e lunga 160, trascinata dalla corrente verso il mooring é risultata la più efficace. Ha incocciato il cavo del mooring 4 volte su 5 tentativi. Purtroppo non avevamo esperienza con mooring dotati di trappole.\r\nGuardando lo schema del mooring si capisce che incocciamo il cavo sotto alla trappola per sedimenti, che non rappresenta un buon punto di aggancio come per esempio il correntometro RCM7. Se il correntometro fosse stato sotto la trappola, come negli altri mooring il recupero era cosa fatta.\r\nCi auguriamo che durante la prossima spedizione, il personale della Base, opportunamente istruito, sia in grado di tentare il recupero. Ormai dopo 4-5 anni di permanenza in mare, la corrosione ha già intaccato la struttura della trappola che é il punto più debole del mooring. Ogni anno in più diminuisce la probabilità di recuperarlo.</p>','','full_html'),('node','page',0,14,14,'en',0,'<h1 align=\"center\"><strong>Rapporto sulla Campagna Antartica (estratto)</strong></h1>\r\n\r\n<h2 align=\"center\"><strong>Estate Australe 2013-2014</strong></h2>\r\n\r\n<h3 align=\"center\"><strong>Ventinovesima Spedizione (PNRA XXIX)</strong></h3>\r\n\r\n<p align=\"center\"><strong>Progetto 2009/B.09: Osservatorio Marino nel Mare di Ross. Resp. G. Spezie</strong><br />\r\n<em>G. Budillon, P. Falco, P. Penna</em></p>\r\n\r\n<p align=\"justify\">Il Progetto MORSea è sostanzialmente relativo alla attività di mantenimento della rete di osservazioni marine attualmente esistente nel Mare di Ross. L’obiettivo primario dell’osservatorio è quello di fornire un sostanziale contributo al monitoraggio della variabilità interannuale delle caratteristiche fisiche e geochimiche delle acque di shelf nel settore occidentale del Mare di Ross.\r\nL’osservatorio è attualmente costituito da 4 catene correntometriche (mooring) contrassegnate dalle lettere “B”, “D”, “G” e “L”. Il Progetto si occupa del mantenimento dei mooring esistenti e, possibilmente, di potenziare la strumentazione attualmente alloggiata sulla base anche di accordi e collaborazioni con progetti italiani e stranieri.\r\nA queste attività si sono aggiunte anche le misure di ship of opportunity effettuate senza interferire con i tempi di navigazione della nave Italica. In particolare quest’anno sono state eseguite misure di temperatura e salinità superficiale del mare (SST e SSS rispettivamente), lanci di XBT per la misura della struttura subsuperficiale dell’Oceano Meridionale e lanci di float (questi ultimi nell’ambito della collaborazione con il progetto ARGOItaly). Queste attività, svolte in passato da progetti non più attivi del PNRA (CLIMA e SOChIC), sono state condotte al fine di non interrompere le preziose serie temporali acquisite dal 1994, considerata la valenza ormai “climatica” di queste informazioni.\r\nIn attesa della attribuzione dei fondi per le attività di progetto, anche quest’anno le indispensabili acquisizioni di materiale di consumo (zinchi, batterie, …), marinaresco (boe di spinta, cavi, maniglioni, …) sono state eseguite anticipando le spese su dotazioni economiche non PNRA. In questo contesto non è stato possibile quindi acquisire nuovi strumenti per questa spedizione e, in buona sostanza, la strumentazione rimessa a mare è stata la stessa di quella degli anni precedenti che, in alcuni casi, risale a oltre 15 anni fa. Il materiale di consumo e di ricambio per le trappole di sedimento è stato fornito: dal dott. M. Capello (Univ. di Genova) per i mooring “D” e “L” (3 trappole), dal dott. L. Langone (CNR – ISMAR) per il mooring “B” (1 trappola). Quest’ultimo ha inoltre curato a bordo la conservazione dei campioni acquisiti, la programmazione dei motori, ed in generale il ricondizionamento delle trappole di sedimento per il successivo riposizionamento in mare.\r\nCome specificato nel seguito (se non specificato diversamente gli orari e le date sono in tempo locale – LT), il recupero di due mooring (“B” e “L”) ha visto la preziosa collaborazione del gruppo EchoSurvey (CNR-ISMAR, Ancona) che ha messo a disposizione la strumentazione da pesca (divergenti) e ha partecipato attivamente alle operazioni.\r\nCome tradizione, sono state effettuate calate di CTD/LADCP - per la verifica e taratura dei sensori posizionati sulle catene correntometriche - prima e dopo il loro recupero e posizionamento; le misure sono state eseguite in collaborazione con l’U.O. “Idrologia” del progetto RoME.\r\nNel seguito vengono descritte le attività svolte su ogni catena correntometrica e in tabella I viene riportato la scheda riassuntiva.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “B”</strong><br />\r\nIl mooring “B” è stato recuperato il 29 gennaio e rimesso in mare il 31 gennaio 2014.\r\nUn primo tentativo di recupero è stato effettuato il 6 gennaio 2014 durante l’avvicinamento della nave Italica verso la Base MZS in considerazione delle buone condizioni meteo marine. Nonostante tutte le operazioni fossero state eseguite con successo, sia quelle propedeutiche allo sgancio (wake up dello sganciatore, calcolo della distanza), sia lo sgancio stesso (con la regolare ricezione del segnale di conferma di avvenuto sgancio e posizione verticale di entrambi gli sganciatori), il mooring non è risalito in superficie. Dopo alcune ore di ulteriori tentativi e prove, constatata l’impossibilità di poter effettuare altre operazioni e la urgenza di raggiungere MZS, è stato deciso di abbandonare la zona posticipando altri tentativi di recupero. Grazie alla collaborazione del gruppo EchoSurvey, è stato effettuato un passaggio sulla posizione del mooring rilevando tutta la struttura, sia nella parte di fondo sia superiore, avendo conferma in questo modo della sua effettiva integrità e posizione verticale.\r\nUn secondo tentativo è stato effettuato il giorno 12 gennaio 2014. Ritornati sul posto è stata verificata nuovamente la piena funzionalità di entrambi gli sganciatori che rispondevano regolarmente alle interrogazioni con il segnale di avvenuto sgancio e posizione verticale, nonostante ciò il mooring non risaliva in superficie. Al fine di tentare il recupero del mooring è stata messa in mare una struttura a “U” composta alle due estremità verticali da una boa superficiale sostenente una cima di circa 150 metri appesantita da una catena, entrambe collegate in profondità da una cima orizzontale di circa 250 metri. Questa struttura è stata filata in mare dalla nave Italica a monte della corrente predominante ed è stato atteso il tempo necessario a far derivare la struttura sulla posizione del mooring. Al secondo tentativo il mooring è stato infatti “incocciato”: le boe superficiali, distanti tra loro circa 250 metri, hanno modificato la traiettoria di deriva avvicinandosi tra loro. Dopo circa mezz’ora la nave ha quindi operato per rampinare entrambe le boe e ha iniziato il recupero da poppa. Purtroppo durante questa fase si è notato che le cime andavano in bando testimoniando la perdita di aggancio con il mooring. Non è stato possibile ripetere ulteriori prove per le condizioni del mare; verificata ancora una volta la posizione del mooring, è stato deciso di rimandare nuovamente un ulteriore tentativo di recupero.\r\nIl mooring è stato recuperato il 29 gennaio 2014 operando in stretta collaborazione con il gruppo EchoSurvey presente a bordo (Giovanni Canduci e Giordano Giuliani) che ha messo a disposizione i divergenti e la propria professionalità. Verificata ancora una volta la posizione del mooring, sono stati filati da poppa i divergenti sostenuti da circa 500 metri di cavo d’acciaio e collegati tra loro da cime di kevlar di circa 500 metri, appesantite da una catena. Al secondo tentativo il mooring è stato incocciato e recuperato a bordo senza eccessivi problemi.\r\nL’esame della strumentazione recuperata ha evidenziato una anomala presenza di fouling sulla strumentazione profonda (e non su quella più superficiale) che risultava particolarmente intensa sugli sganciatori e ne aveva impedito lo sgancio, nonostante il meccanismo di svincolo avesse perfettamente funzionato.\r\nDopo la manutenzione del caso, la catena correntometrica è stata riposizionata.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “D”</strong><br />\r\nIl mooring “D” è stato recuperato il 12 gennaio e rimesso in mare il 21 gennaio 2014.\r\nDurante la XXVIII (2011-12) Spedizione il mooring era stato posizionato in mare incrementando il payload e prolungando la sua estensione sino a circa 124 m dalla superficie con la strumentazione fornita dal progetto “2010/A4.01” (sensori termoalini e un profilatore acustico). Per evitare possibili perdite di tutto il mooring, era stato deciso di collegare la parte inferiore con quella superiore (aggiunta per il progetto “2010/A4.01”) mediante un anello debole che avrebbe ceduto in caso di impatto con iceberg.\r\nIl recupero del mooring è stato effettuato in ottime condizioni meteo marine senza però rinvenire la parte superiore relativa al progetto “2010/A4.01”.\r\nA differenza di quanto evidenziato per il mooring “B”, non sono state rinvenute presenze anomale di fouling.\r\nEffettuata l’ordinaria manutenzione della strumentazione, il mooring “D” è stato rimesso in posizione.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “G”</strong><br />\r\nIl mooring “G” è stato recuperato il 23 gennaio e rimesso in mare il 26 gennaio 2014.\r\nEntrambe le operazioni si svolte senza particolari problemi in condizioni meteo marine accettabili. La configurazione del mooring riposizionato.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “L”</strong><br />\r\nIl mooring “L” è stato recuperato il 5 febbraio e rimesso in mare l’8 febbraio 2014.\r\nUn primo tentativo di recupero è stato effettuato l’11 gennaio, durante le operazioni di sbarco del materiale presso MZS, a bordo dell’Icebjorn. La risposta dello sganciatore alle interrogazioni con il modulo di sgancio a bordo dell’Icebjorn è sempre stata frammentaria e poco intellegibile. Analogo risultato si è ottenuto con il modulo di sgancio di rispetto a bordo della Italica. L’Italica ha quindi effettuato un passaggio sul punto teorico per rilevarlo con gli ecoscandagli del gruppo EchoSurvey, in questa indagine è stata identificata solo la strumentazione in prossimità del fondo.\r\nDurante le attività marine in Base, il battello Malippo ha effettuato un passaggio sulla posizione del mooring rilevandolo con l’ecoscandaglio di bordo e verificandone la posizione verticale.\r\nIn seguito a questa informazione è stato deciso di effettuare il recupero secondo le modalità già sperimentate in occasione del recupero del mooring “B” in collaborazione con il gruppo EchoSurvey. Il mooring è stato “incocciato” al primo tentativo l’8 febbraio ed è stato recuperato completamente integro.</p>\r\n\r\n<p align=\"justify\"><strong>Ringraziamenti:</strong><br />\r\nE’ doveroso un sentito ringraziamento:<br />\r\n- al gruppo EchoSurvey (CNR-ISMAR, Ancona) per la entusiastica collaborazione in fase di programmazione e di esecuzione delle operazioni di recupero dei mooring “B” e “L”, nonché per aver messo a disposizione parte della attrezzatura propria;<br />\r\n- al dott. Capello per l’assistenza in Italia e al dott. Langone per l’assistenza in Italia e a bordo nella manutenzione delle trappole di sedimento;<br />\r\n- a tutti coloro che hanno collaborato ai lanci degli XBT (G. Bruzzone, D. Cotterle, M. De Stefano, R. Geletti, G. Zambardino).<br />\r\n- al personale di bordo e del PNRA per l’assistenza continua e per aver coadiuvato con grande professionalità nelle operazioni marinaresche a poppa in occasione del recupero e messa a mare delle catene correntometriche, anche in condizioni meteo marine non facili.</p>\r\n','','full_html'),('node','page',0,15,15,'en',0,'<h1 align=\"center\"><strong>Main Activities</strong></h1>\r\n<table align=\"center\">\r\n	<tbody>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">Williams M., Budillon G., Walker S., Ackley S., Blankenship D., Greenbaum J., Lee S., Lee W. S., 2015</p>\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Observation Activities in the Ross Sea - Current and Future National Contributions to the Southern Ocean Observing System</strong></u></em>”</p>\r\n			<p>SOOS Report Series, #1 (2015).</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/RossSeaReport2015.pdf\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">Rusciano E., Budillon G., Fusco G., Spezie G., 2013</p>\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Evidence of atmosphere–sea ice–ocean coupling in the Terra Nova Bay polynya (Ross Sea—Antarctica)</strong></u></em>”</p>\r\n			<p>Elsevier, Continental Shelf Research Vol. 61–62 (2013) 112–124.</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/Pub4.pdf\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">Budillon G., Castagno P., Aliani S., Spezie G., Padman L., 2011</p>\r\n\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Thermohaline variability and Antarctic bottom water formation at the Ross Sea shelf break</strong></u></em>”</p>\r\n\r\n			<p>Elsevier, Deep-Sea Research Vol. 58 (2011) 1002–1018.</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/Pub1.pdf\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">Catalano G., Budillon G., Aliani S., La Ferla R., Povero P., Ravaioli M., Saggiomo V., Accornero A., Azzaro M., Carrada G. C., Giglio F., Langone L., Mangoni O., Misic C., Modigh M., 2010</p>\r\n\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>The Ross Sea</strong></u></em>”</p>\r\n\r\n			<p>Carbon and Nutrient Fluxes in Continental Margins, Global Change. The IGBP Series. Vol. 6.3.</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/Pub2.pdf\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">Fusco G., Budillon G., Spezie G., 2009</p>\r\n\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Surface heat fluxes and thermohaline variability in the Ross Sea and in Terra Nova Bay polynya</strong></u></em>”</p>\r\n\r\n			<p>Elsevier, Continental Shelf Research Vol. 29 (2009) 1887–1895.</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/Pub3.pdf\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n<h1 align=\"center\"><strong>Ancillary Activities</strong></h1>\r\n<table align=\"center\">\r\n	<tbody>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">A. Russo, A. Artegiani, G. Budillon, E. Paschini, G. Spezie, 1999</p>\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Upper Ocean Thermal Structure and Fronts Between New Zealand and the Ross Sea (Austral Summer 1994-1995 and 1995-1996)</strong></u></em>”</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/......\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">E. Zambianchi, G. Budillon, P. Falco, G. Spezie, 1999</p>\r\n\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Observations of the Dynamics of the Antarctic Circumpolar Current in the Pacific Sector of the Southern Ocean</strong></u></em>”</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/........\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">G. Budillon, S.R. Rintoul, 2003</p>\r\n\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Fronts and upper ocean thermal variability south of New Zealand</strong></u></em>”</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/Budillon_rintoul_AS_2003.pdf\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">Y. Cotroneo, G. Budillon, G. Fusco, G. Spezie, 2013</p>\r\n\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Cold core eddies and fronts of the Antarctic Circumpolar Current south of New Zealand from in situ and satellite data</strong></u></em>”</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/jgrc20193.pdf\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Presentations by University of Naples Parthenope group at the 1st International Conference on The Oceanography of the Ross Sea Antarctica, Lerici (Sp), Italy 1997</strong></u></em>”</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/.........\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Presentations by University of Naples Parthenope group at the 2nd International Conference on the Oceanography of the Ross Sea Antarctica, Ischia (Na), Italy 2001</strong></u></em>”</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/.........\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Presentations by University of Naples Parthenope group at the 3nd International Conference on the Oceanography of the Ross Sea Antarctica, Venice (Ve), Italy 2005</strong></u></em>”</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/.........\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">Budillon G., Rintoul S. R., Hobart, Australia 2006</p>\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Fronts, temperature, and estimated transports variability in the upper ocean south of New Zealand</strong></u></em>”</p>\r\n			<p>Presentation at the conference “SCAR XXIX / COMNAP XVIII”</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/.......\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">Y. Cotroneo, G. Budillon, G. Fusco, G. Spezie, 2009</p>\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Identificazione di eddies a cuore freddo nella corrente circumpolare antartica da misure in situ e tele rilevate</strong></u></em>”</p>\r\n			<p>Presentation at the conference “Environment Including Global Change – Congresso Fai 2009” </p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/.......\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">Cotroneo Y., Swart S., Ansorge I., Budillon G., Fusco G., 2010</p>\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Quasi synoptical detection of the ACC fronts south of Africa and New Zealand from in situ data</strong></u></em>”</p>\r\n			<p>Presentation at the conference “Scar Conference 2010”</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/.......\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">Budillon G., Cotroneo Y., Swart S., Ansorge I., Fusco G., 2011</p>\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>The Italian SOChIC project in the framework of a global survey of the ACC fronts and mesoscale eddies</strong></u></em>”</p>\r\n			<p>Presentation at the conference “IUGG 2011”</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/.......\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">Cotroneo Y., Swart S., Ansorge I., Budillon G., Fusco G., 2012</p>\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>An international activity to synoptically monitor ACC fronts and mesoscale eddies</strong></u></em>”</p>\r\n			<p>Work presentation at the conference “IPY2012” </p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/.......\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">Cotroneo, Y., Budillon G., Fusco G., Spezie G., 2013</p>\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Cold core eddies and fronts of the Antarctic Circumpolar Current south of New Zealand from in situ and satellite altimetry data</strong></u></em>”</p>\r\n			<p>Presentation at the conference “IAHS – IAPSO – IASPEI Joint Assembly 2013”</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/.......\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">Cotroneo Y., Budillon G., Fusco G., Spezie G., 2013</p>\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Cold core eddies and fronts of the Antarctic Circumpolar Current south of New Zealand from in situ and satellite data</strong></u></em>”</p>\r\n			<p>Presentation at the conference “XXI Congresso dell’Associazione Italiana di Oceanologia e Limnologia, 2013” </p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/.......\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">Cerrone D., Fusco G., Cotroneo Y., Budillon G., 2013</p>\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>The Antarctic Circumpolar Wave scenario described as a combination of interannual signals</strong></u></em>”</p>\r\n			<p>Presentation at the conference “First Annual Conference of Società Italiana per le Scienze del Clima, 2013”</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/.......\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n	</tbody>\r\n</table>','','full_html'),('node','photo_moorings_2014',0,21,21,'en',0,'','<p>Descrizione del Mooring B</p>\r\n','filtered_html'),('node','page',0,28,28,'en',0,'<h1 align=\"center\">Moorings 2014-2016 (Deployed 2014)</h1>\r\n<table align=\"center\">\r\n	<tbody>\r\n<tr>			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/22\" target=\"_blank\">Mooring L</a></td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/23\" target=\"_blank\">Mooring G</a></td>\r\n\r\n		</tr>\r\n<tr>			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/24\" target=\"_blank\">Mooring D</a></td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/21\" target=\"_blank\">Mooring B</a></td>\r\n\r\n		</tr>\r\n\r\n	</tbody>\r\n</table>\r\n<h1 align=\"center\">Moorings 2012-2014 (Deployed 2012)</h1>\r\n<table align=\"center\">\r\n	<tbody>\r\n<tr>			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/26\" target=\"_blank\">Mooring L</a></td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/36\" target=\"_blank\">Mooring G</a></td>\r\n\r\n		</tr>\r\n<tr>			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/35\" target=\"_blank\">Mooring D</a></td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/34\" target=\"_blank\">Mooring B</a></td>\r\n\r\n		</tr>\r\n\r\n	</tbody>\r\n</table>\r\n<h1 align=\"center\">Moorings 2010-2012 (Deployed 2010)</h1>\r\n<table align=\"center\">\r\n	<tbody>\r\n<tr>			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/115\" target=\"_blank\">Mooring L</a></td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/117\" target=\"_blank\">Mooring G</a></td>\r\n\r\n		</tr>\r\n<tr>			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/118\" target=\"_blank\">Mooring D</a></td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/116\" target=\"_blank\">Mooring B</a></td>\r\n\r\n		</tr>\r\n\r\n	</tbody>\r\n</table>','','full_html'),('node','page',0,30,30,'en',0,'<div><img alt=\"\" src=\"/sites/default/files/xbt_v2.png\" style=\"height:600px; width:610px;\" /></div>\r\n</br>\r\n<p align=\"center\"> <strong>XBT REPEATED OBSERVATION PROGRAMME </strong>\r\n<p align=\"justify\">\r\nSince 1994 The PNRA (Italian National Antarctic Research Program) funded several research programmes focused on the study of southern Ocean thermal properties across the Antarctic Circumpolar Current.\r\nThese project and their evolution represent today one of the Italian contribution to the Southern Ocean Observing System (SOOS).\r\nItalian monitoring of upper layer temperature characteristics of the SO started in the framework of the CLIMA (Climatic Long-term Interactions for the Mass Balance in Antarctica) project and lasted for about 15 years (1994-2017), white lines represent the mean position of ACC fronts in the area.\r\nIn more recent years monitoring activities have been developed in the framework of the SOCHiC (Southern Ocean observing CHokepoints: Italian Contribution), and MORSea (Marine Observatory in the Ross Sea) projects.\r\nIn situ eXpendable BathyTermograph (XBT) observations (see following paragraph for details), combined with continuous surface layer monitoring from ship, Argo temperature-salinity profiles and with satellite products, are used along the repeated transects to study the link between local wind forcing mechanisms and the long term variability and the dynamics of the ACC fronts south of South Africa, New Zealand and in the Drake Passage.\r\nThese projects have led to build various partnership between the University of Naples “Parthenope” and international research institutions such as the South Africans research centres involved in the SAMOC (South Atlantic’s branch of the Meridional Overturning Circulation) project and the Argentines Institution involved in the CANOPO (the Role of the Atlantic Sector of the Southern Ocean in CO2 Sequestration) project.\r\nMoreover the Italian research activities have been carried on using various foreign facilities and research vessels (i.e.: Irizar, Palmer, Agulhas, Agulhas II, Araon)\r\n</p>\r\n<p><a href=\"http://morsea.uniparthenope.it/?q=node/94\" target=\"_blank\">INTERNATIONAL BACKGROUND</a></p>\r\n<p><a href=\"http://morsea.uniparthenope.it/?q=node/95\" target=\"_blank\">INSTRUMENTATION</a></p>\r\n<p><a href=\"http://morsea.uniparthenope.it/?q=node/15\" target=\"_blank\">PUBBLICATIONS</a></p>\r\n\r\n<div>\r\n<table align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td align=\"center\"><strong>Austral Summer</strong></td>\r\n<td align=\"center\"><strong>South Atlantic</strong></td>\r\n<td align=\"center\"><strong>South Pacific</strong></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>1994/1995</strong></td>\r\n<td> </td>\r\n<td align=\"center\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>1995/1996</strong></td>\r\n<td> </td>\r\n<td align=\"center\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>1996/1997</strong></td>\r\n<td> </td>\r\n<td align=\"center\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>1997/1998</strong></td>\r\n<td> </td>\r\n<td align=\"center\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>1998/1999</strong></td>\r\n<td> </td>\r\n<td align=\"center\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>1999/2000</strong></td>\r\n<td> </td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/87\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>2000/2001</strong></td>\r\n<td> </td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/87\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>2001/2001</strong></td>\r\n<td> </td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/87\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>2002/2003</strong></td>\r\n<td> </td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/87\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>2003/2004</strong></td>\r\n<td> </td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/87\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>2004/2005</strong></td>\r\n<td> </td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/87\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>2006/2007</strong></td>\r\n<td> </td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/87\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>2007/2008</strong></td>\r\n<td> </td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/87\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>2009/2010</strong></td>\r\n<td> </td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/87\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>2011/2012</strong></td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/89\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/88\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>2012/2013</strong></td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/91\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/90\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>2013/2014</strong></td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/92\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n<td> </td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>2014/2015</strong></td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/93\" target=\"_blank\"><img href=\" \" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n<td> </td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>2015/2016</strong></td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/124\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/124\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></p></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>2016/2017</strong></td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/129\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/129\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n<p align=\"justify\">\r\nResearch activities along the South Africa – Antarctica have been possible thanks to the cooperation with the university of Cape Town (UCT) and the Council for Scientific and Industrial Research (CSIR). During each cruise an Italian scientist has been  hosted onboard of the R/Vs Agulhas or Agulahs II.\r\nCA 09-10	Agulhas	Dr. Yuri Cotroneo\r\nCA 10-11	Agulhas	Dr. Pasquale Castagno\r\nCA11-12	Agulhas	Dr. Yuri Cotroneo – Co-chief scientist\r\nCA12-13	Agulhas II	Dr. Giuseppe Aulicino\r\n</p>\r\n<p align=\"justify\">\r\nTo get access to XBT data please contact:\r\n<p><em>Prof. Giancarlo Spezie (P.I.)&nbsp;- &nbsp;giancarlo.spezie@uniparthenope.it</em></p>\r\n<p><em>Prof. Giorgio Budillon - giorgio.budillon@uniparthenope.it</em></p>\r\n</p>\r\n<p align=\"justify\">\r\nTo get access to SANAE XBT data please contact:\r\n<p><em>Prof. Isabelle Ansorge&nbsp;- &nbsp;isabelle.ansorge@utc.ac.za</em></p>\r\n</p>\r\n<p align=\"justify\">\r\nXBT data are being progressively added to the National Centers for Environmental Informations database of the NOAA (https://www.ncei.noaa.gov/).\r\n</p>\r\n\r\n<div>\r\n<table>\r\n<tr>\r\n<td align=\"center\"><strong>id</strong></td>\r\n<td align=\"center\"><strong>Title</strong></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">167834</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/167834\">Water temperature from XBT taken from research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 2012-01-13 to 2012-01-19 (NCEI Accession 0167834)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">167835</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/167835\">Water temperature data from XBT taken from research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 2010-01-25 to 2010-01-29 (NCEI Accession 0167835)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">170608</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/170608\">Water temperature data from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 1994-11-03 to 1995-01-01 (NCEI Accession 0170608)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">170765</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/170765\">Water temperature data from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 1995-01-06 to 1995-03-02 (NCEI Accession 0170765)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">171481</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/171481\">Water temperature from XBT taken from research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 1996-01-07 to 1996-02-18 (NCEI Accession 0171481)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">172042</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/172042\">Water temperature from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 1997-01-26 to 1997-02-19 (NCEI Accession 0172042)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">172859</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/172859\">Water temperature data from XBT collected from research vessel Italica in Southern Ocean and Southwest Pacific Ocean from 1997-11-23 to 1998-03-06 (NCEI Accession 0172859)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">173211</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/173211\">Water temperature from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 1999-01-05 to 1999-01-11 (NCEI Accession 0173211)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">173212</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/173212\">Water temperature from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 2000-01-07 to 2000-02-18 (NCEI Accession 0173212)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">173213</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/173213\">Water temperature from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 2001-01-06 to 2001-02-26 (NCEI Accession 0173213)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">173214</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/173214\">Water temperature from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 2001-12-24 to 2001-12-31 (NCEI Accession 0173214)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">173328</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/173328\">Water temperature from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 2003-12-24 to 2003-12-28 (NCEI Accession 0173328)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">173338</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/173338\">Water temperature from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 2003-01-06 to 2003-01-11 (NCEI Accession 0173338)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">173533</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/173533\">Water temperature from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 2005-01-01 to 2005-01-06 (NCEI Accession 0173533)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">174709</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/174709\">Water temperature from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 2007-02-05 to 2007-02-10 (NCEI Accession 0174709)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">174711</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/174711\">Water temperature from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 2008-01-16 to 2008-01-21 (NCEI Accession 0174711)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">174794</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/174794\">Water temperature from XBT taken from the research vessel Araon in the Southern Ocean and Southwest Pacific Ocean from 2013-01-24 to 2013-02-06 (NCEI Accession 0174794)</a></td>\r\n</tr>\r\n</table>\r\nXBT data are being progressively added to the National Centers for Environmental Informations database of the NOAA (https://www.ncei.noaa.gov/).\r\nToday 17 datasets/cruises are available and each of them is associated to a DOI.\r\nSee for example data belonging to the 2011/2012 cruise at the link https://data.nodc.noaa.gov/cgi-bin/iso?id=gov.noaa.nodc:0167834\r\n</div>\r\n\r\n\r\n\r\n<p align=\"center\"><strong>LINKS</strong></p> \r\n<p align=\"justify\">http://www.sippican.com</p>\r\n<p align=\"justify\">http://www.soos.aq</p>\r\n<p align=\"justify\">http://www.aoml.noaa.gov/phod/hdenxbt/index.php</p>\r\n<p align=\"justify\">http://en.wikipedia.org/wiki/S._A._Agulhas</p>\r\n<p align=\"justify\">http://en.wikipedia.org/wiki/S._A._Agulhas_II</p>\r\n<p align=\"justify\">http://en.wikipedia.org/wiki/RV_Araon</p>\r\n<p align=\"justify\">https://www.fleetmon.com/en/vessels/Italica_71874</p>\r\n<p align=\"justify\">http://en.wikipedia.org/wiki/Nathaniel_B._Palmer_%28icebreaker%29</p>\r\n<p align=\"justify\">http://it.wikipedia.org/wiki/ARA_Almirante_Irizar</p>\r\n','','full_html'),('node','page',0,32,32,'en',0,'<h1 align= \"center\"><strong>FLOAT CONTRIBUTION IN THE SOUTHERN OCEAN OBSERVING SYSTEM</strong></h1>\r\n<div align=\"center\"><img alt=\"\" src=\"/sites/default/files/drifter_alive_italy_ANTA_traj_M.png\"/></div>\r\n<p align=\"center\"><strong>Position  of drifters deployed during last campaign. Actual position available at http://nettuno.ogs.trieste.it/jungo/argoitaly/floats.html</b></strong>\r\n<div align=\"center\"><img alt=\"\" src=\"/sites/default/files/float_italy_antartica_traj.png\"/></div>\r\n<p align=\"center\"><strong>Position  of floats deployed during last campaign. Actual position available at http://nettuno.ogs.trieste.it/jungo/argoitaly/drifters.html</b></strong>\r\n<p align=\"justify\">Research programs over the past 15 years have demonstrated that sustained observations of the SO (Southern Ocean) are feasible. For example, repeated hydrographic sections have been used to quantify the evolving ocean inventory of heat and carbon, to demonstrate that changes are occurring throughout the full depth of the SO, and to provide a platform for a wide suite of interdisciplinary observations. Satellites are providing circumpolar, year-round coverage of physical and biological variables and sea ice properties. Moorings are providing time-series information on velocities and water properties in critical regions. Bottom pressure recorders (often enhanced with inverted echo sounders) are routinely monitoring flows of the major current systems at key choke points like Drake Passage, whilst conventional tide gauges at coastal locations are useful in this context and also for a range of other applications, including long-term sea level variability and change studies.</p>\r\n<p align=\"justify\">Classical oceanographic data collected by ships (CTD casts, along track measurements, XBT/XCTD casts, etc…) in the SO are deeply affected by temporal and spatial limitations. Ice cover and sea-weather conditions, limit the sampling at the summer season and in some geographic areas. The development of autonomous profiling floats now allows broad-scale, year-round measurements of the interior of the SO (to 2 km depth) to be made for the first time. The ocean beneath the sea ice, inaccessible with traditional platforms, is being measured with special polar profiling floats and miniaturized oceanographic sensors attached to marine mammals. Moreover, ocean gliders now offer the possibility of making real-time multi-disciplinary measurements of the upper 1000 m of the water column, and have recently been deployed for the first time around Antarctica. Measurements of biological distributions and processes using net tows, continuous plankton recorders, and acoustics are providing new insights into the coupling of physical, biogeochemical and ecological processes. Autonomous underwater vehicles are exploring the ocean deep beneath ice shelves.</p>\r\n<p align=\"justify\">All of the key science challenges require sustained, broad-scale measurements of the ocean state, measurements that can only be obtained using autonomous platforms such as profiling floats. Basic principles of float functioning is described here (<a href=\"http://morsea.uniparthenope.it/?q=node/108\">Functioning</a>)</p>\r\n<p align=\"justify\">A sustained commitment to maintenance of a profiling float array in the SO is critical. One of the most important research projects dedicated to float implementation and data collection also in the SO is the ARGO (Array for Real-time Geostrophic Oceanography) programme. A short summary of the ARGO programme is offered at this link (<a href=\"http://morsea.uniparthenope.it/?q=node/109\">ARGO</a>)</p>\r\n<p align=\"justify\">ARGO has made a particularly significant contribution to observations of remote areas like the SO. The number of profiles collected from ARGO floats is already higher than the number of profiles collected during the entire history of ship-based oceanography in this region. Floats with oxygen sensors are beginning to be deployed in the SO and we can anticipate that with time the capacity to measure additional variables from floats will increase. The float array needs to extend to seasonally ice-covered seas, through the use of ice-capable floats and acoustic tracking of floats. The first priority is to maintain the ARGO network at the nominal ARGO density (1 float per 3 degree longitude x 3 degree latitude square, or roughly 970 floats south of 40°S). The extension of the system to sample under sea ice is also important, as some of the most important changes are occurring near the ice shelves and within the sea ice zone. Floats capable of deeper profiling would be of particular value in the SO, where significant changes have been observed below 2000 m. Oxygen sensors will provide useful information on ventilation processes and the carbon cycle. Sensors to measure a wider range of biological and chemical parameters (e.g. bio-optics, CO2 system, nutrients) are needed to relate variations in the physical environment to biogeochemistry and ecosystem processes.</p>\r\n<p align=\"justify\">The Italian contribution to float population in the Mediterranean Sea, Black Sea and in the SO is represented by activities developed in the framework of ARGO-ITALY.</p>\r\n<p align=\"justify\">ARGO-ITALY is the Italian component of a worldwide in situ global observing system, based on autonomous profiling floats, surface drifters, gliders and ship-of-opportunity measurements. It is primarily focused on the Italian seas, and the Mediterranean and Black seas, and includes observations of temperature, salinity, currents and biogeochemical/optical properties of seawater. The ARGO-ITALY objective is to provide a significant and sustained Italian contribution to the global ocean monitoring.</p>\r\n<p align=\"justify\">The ARGO-ITALY objective is to provide a significant and sustained Italian contribution to the global ocean monitoring. ARGO-ITALY contributes to international programs such as ARGO and Euro-ARGO (global monitoring of water properties with profiling floats), GDP (Global Drifter Program to measure near-surface temperature and currents), EGO (gliding vehicles to measure water properties) and SOOP (Ship-Of-Opportunity Program to temperature profiles) which have been developed to monitor the entire World Ocean on a long term basis. ARGO-ITALY is a cost-effective long-term monitoring system that is a unique source of information to study the role of the oceans on the climate system. It also provides the data required by operational ocean monitoring systems in order to improve significantly extended forecasts of the atmosphere and oceans.</p>\r\n<p align=\"justify\">ARGO-ITALY contributes to programs of operational oceanography, such as MOON (Mediterranean Operational Oceanography Network) and MyOcean (FP7 European project) and is essential for the production of marine core and downstream services products of GMES (Global Monitoring for Environment and Security). It is also an important component of GEOSS (Global Earth Observation System of Systems). ARGO-ITALY is funded by the Italian Ministry of Instruction, University and Research (MIUR) since 2011.</p>\r\n<p align=\"justify\">ARGO-ITALY activities in the S.O. started in 2013 and are still ongoing.</p>\r\n<p align=\"justify\">The number of total floats released in the S.O. and the amount of floats per year are both increasing. Table 1 shows the number and details of floats per year and a rapid link to cruise details.</p>\r\n<table align=\"center\">\r\n	<tbody>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Year</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; text-align:center; font-weight: bold;\">Number of floats</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Number of drifters</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Cruise Details</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Ship</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">PNRA expedition</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">2013</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">3</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">0</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\"><a href=\"http://morsea.uniparthenope.it/?q=node/110\">report</a></p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">R/V Araon</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\"><a href=\" \">XXVIII</a></p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">2014</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">7</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">0</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\"><a href=\"http://morsea.uniparthenope.it/?q=node/111\">report</a></p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">R/V Italica</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\"><a href=\"http://morsea.uniparthenope.it/?q=node/14\">XXIX</a></p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">2015</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">10</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">10</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\"><a href=\"http://morsea.uniparthenope.it/?q=node/112\">report</a></p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">R/V Araon</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\"><a href=\"http://morsea.uniparthenope.it/?q=node/45\">XXX</a></p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>','','full_html'),('node','page',0,33,33,'en',0,'<div>\r\nProf. Giancarlo Spezie (p.i.)\r\nProf. Giorgio Budillon (co p.i.)\r\n</div>\r\n</br>\r\n<div>\r\n<h2>Research Team</h2>\r\nDr. Stefano Aliani - Consiglio Nazionale delle Ricerche (ISMAR La Spezia)\r\nDr. Giuseppe Aulicino - Università degli Studi di Napoli \"Parthenope\" (DiST)\r\nProf. Giorgio Budillon - Università degli Studi di Napoli \"Parthenope\" (DiST)\r\nDr. Marco Capello – Università degli Studi di Genova (DiSTAV)\r\nDr. Pasquale Castagno - Università degli Studi di Napoli \"Parthenope\" (DiST)\r\nDr. Yuri Cotroneo - Università degli Studi di Napoli \"Parthenope\" (DiST)\r\nDr. Arturo De Alteris - Università degli Studi di Napoli \"Parthenope\" (DiST)\r\nDr. Massimo De Stefano - Università degli Studi di Napoli \"Parthenope\" (DiST)\r\nDr. Diana Di Luccio - Università degli Studi di Napoli \"Parthenope\" (DiST)\r\nDr. Pierpaolo Falco – Università degli Studi di Napoli \"Parthenope\" (DiST)\r\nDr. Giannetta Fusco - Università degli Studi di Napoli \"Parthenope\" (DiST)\r\nDr. Federico Giglio – Consiglio Nazionale delle Ricerche (ISMAR Bologna)\r\nDr. Leonardo Langone – Consiglio Nazionale delle Ricerche (ISMAR Bologna)\r\nDr. Luigi Marziani - Università degli Studi di Napoli \"Parthenope\" (DiST)\r\nDr. Raffaele Montella - Università degli Studi di Napoli \"Parthenope\" (DiST)\r\nDr. Elio Paschini – Consiglio Nazionale delle Ricerche (ISMAR Ancona)\r\nDr. Pierluigi Penna – Consiglio Nazionale delle Ricerche (ISMAR Ancona)\r\nDott.ssa Mariangela Ravaioli - Consiglio Nazionale delle Ricerche (ISMAR Bologna)\r\nProf. Spezie - Università degli Studi di Napoli \"Parthenope\" (DiST)\r\nDr. Giovanni Zambardino - Università degli Studi di Napoli \"Parthenope\" (DiST)\r\n    <div>','','full_html'),('node','page',0,37,37,'en',0,'<form method=\"post\" action=\"/sites/all/themes/multipurpose/mooring.php\">\r\n<fieldset>\r\n <legend>Select the mooring</legend>\r\n <input type=\"checkbox\" name=\"mooring\" value=\"L\"> mooring L\r\n</br>\r\n<input type=\"checkbox\" name=\"mooring\" value=\"G\"> mooring G\r\n</br>\r\n<input type=\"checkbox\" name=\"mooring\" value=\"D\"> mooring D\r\n</br>\r\n<input type=\"checkbox\" name=\"mooring\" value=\"B\"> mooring B\r\n</fieldset>\r\n<fieldset>\r\n <legend>Select the period</legend>\r\n <input type=\"checkbox\" name=\"anno\" value=\"2012\"> 2010-2012\r\n</br>\r\n<input type=\"checkbox\" name=\"anno\" value=\"2014\"> 2012-2014\r\n</fieldset>\r\n<input type=\"submit\" name=\"submit\" value=\"invia\">\r\n</form>','','full_html'),('node','page',0,39,39,'und',0,'<table class=MsoTableGrid border=1 cellspacing=0 cellpadding=0 style=\'border-collapse:collapse;border:none;mso-border-alt:solid windowtext .5pt; mso-yfti-tbllook:1184;mso-padding-alt:0cm 5.4pt 0cm 5.4pt\'>\r\n <tr style=\'mso-yfti-irow:0;mso-yfti-firstrow:yes\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal align=center style=\'margin-bottom:0cm;margin-bottom:.0001pt; text-align:center;line-height:normal\'><b style=\'mso-bidi-font-weight:normal\'><span style=\'font-size:16.0pt;mso-bidi-font-size:11.0pt\'>MOORING L</span><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:1\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;\r\n  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>Cruise <span class=SpellE>deployment</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>PNRA - XXV <span class=SpellE>Expedition</span> – 2009/10</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:2\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>Cruise <span class=SpellE>recovery</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>PNRA - XXVII <span class=SpellE>Expedition</span> - 2011/12</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:3\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>Coordinates</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>74.76165 S 164.14038 E</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:4\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;\r\n  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>Water <span class=SpellE>depth</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>126 m</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>Magnetic</span> <span class=SpellE>declination</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>137°N</p>\r\n  </td>\r\n </tr>\r\n<tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>deployment</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>09/02/2010 18:58:00</p>\r\n  </td>\r\n </tr>\r\n<tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>recovery</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>29/01/2012 14:30:00 </p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:6\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal align=center style=\'margin-bottom:0cm;margin-bottom:.0001pt; text-align:center;line-height:normal\'><b style=\'mso-bidi-font-weight:normal\'><span style=\'font-size:12.0pt;mso-bidi-font-size:11.0pt\'>INSTRUMENT</span><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:7\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;\r\n  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;\r\n  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;\r\n  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Depth</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Sampling</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left: none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:8\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/79\">AANDERAA RCM7 SN 11974</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>40 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>30 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>U, V , T</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:9\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:10\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data </p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>09/02/2010<span style=\'mso-spacerun:yes\'>  </span>19:32:00</p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span lang=EN-US style=\'mso-ansi-language:EN-US\'>Stop (u, v) : 26/02/2011 12:02:00 \r\n <span  style=\'mso-spacerun:yes\'>Stop (T) : 12/11/2011  08:32:00  </span></span></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:11\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:12\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:13\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span  class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n</table>\r\n','','full_html'),('node','page',0,40,40,'und',0,'<table class=MsoTableGrid border=1 cellspacing=0 cellpadding=0 style=\'border-collapse:collapse;border:none;mso-border-alt:solid windowtext .5pt; mso-yfti-tbllook:1184;mso-padding-alt:0cm 5.4pt 0cm 5.4pt\'>\r\n <tr style=\'mso-yfti-irow:0;mso-yfti-firstrow:yes\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal align=center style=\'margin-bottom:0cm;margin-bottom:.0001pt; text-align:center;line-height:normal\'><b style=\'mso-bidi-font-weight:normal\'><span style=\'font-size:16.0pt;mso-bidi-font-size:11.0pt\'>MOORING L</span><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:1\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;\r\n  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>Cruise <span class=SpellE>deployment</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>PNRA - XXVII <span class=SpellE>Expedition</span> - 2011/12</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:2\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>Cruise <span class=SpellE>recovery</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>PNRA - XXIX <span class=SpellE>Expedition</span> - 2013/14</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:3\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>Coordinates</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>74.76165 S<span style=\'mso-spacerun:yes\'>  </span>164.14038 E</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:4\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>Water <span class=SpellE>depth</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>149 m</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>Magnetic</span> <span class=SpellE>declination</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>137°N</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:6\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal align=center style=\'margin-bottom:0cm;margin-bottom:.0001pt; text-align:center;line-height:normal\'><b style=\'mso-bidi-font-weight:normal\'><span style=\'font-size:12.0pt;mso-bidi-font-size:11.0pt\'>INSTRUMENT</span><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:7\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><b style=\'mso-bidi-font-weight:normal\'>Depth<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left: none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><b style=\'mso-bidi-font-weight:normal\'>Sampling<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left: none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b style=\'mso-bidi-font-weight:normal\'></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:8\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/80\">AANDERAA RCM7 SN 11559</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>144 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left: none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>60 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left: none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>U, V, Mod, Dir, T</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:9\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:10\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>Raw</span> data </p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>31/01/2012 10:00:00</p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt; border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt; border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt; mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span lang=EN-US style=\'mso-ansi-language:EN-US\'>08/11/2013<span style=\'mso-spacerun:yes\'>  </span>08:00:00</span></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:11\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;\r\n  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:12\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:13\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:15\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:16\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;   padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><b style=\'mso-bidi-font-weight:normal\'>Depth<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left: none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><b style=\'mso-bidi-font-weight:normal\'>Sampling<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left: none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:17\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/81\">AANDERAA RCM7 SN 11974</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>62 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left: none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>60 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left: none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>U, V, Mod, Dir, T</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:18\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:19\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>Raw</span> data </p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>31/01/2012 11:00:00</p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt; border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt; border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt; mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span lang=EN-US style=\'mso-ansi-language:EN-US\'>04/02/2014<span style=\'mso-spacerun:yes\'>  </span>19:00:00</span></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:20\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:21\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:22\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>3</p>\r\n  </td>\r\n </tr>\r\n</table>','','full_html'),('node','page',0,41,41,'und',0,'<table class=MsoTableGrid border=1 cellspacing=0 cellpadding=0 style=\'border-collapse:collapse;border:none;mso-border-alt:solid windowtext .5pt; mso-yfti-tbllook:1184;mso-padding-alt:0cm 5.4pt 0cm 5.4pt\'>\r\n <tr style=\'mso-yfti-irow:0;mso-yfti-firstrow:yes\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal align=center style=\'margin-bottom:0cm;margin-bottom:.0001pt;  text-align:center;line-height:normal\'><b style=\'mso-bidi-font-weight:normal\'><span  style=\'font-size:16.0pt;mso-bidi-font-size:11.0pt\'>MOORING G</span><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:1\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Cruise <span class=SpellE>deployment</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>PNRA - XXV <span class=SpellE>Expedition</span> – 2009/10</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:2\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Cruise <span class=SpellE>recovery</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>PNRA - XXVII <span class=SpellE>Expedition</span> - 2011/12</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:3\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Coordinates</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>72.39952 S 172.97842 E</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:4\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Water <span class=SpellE>depth</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>522 m</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Magnetic</span> <span class=SpellE>declination</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>106°N</p>\r\n  </td>\r\n </tr>\r\n<tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>deployment</span> </p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>31/01/2010  11:36:00</p>\r\n  </td>\r\n </tr>\r\n<tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>recovery</span> </p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>26/01/2012   ̴22:00:00 </p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:5\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal align=center style=\'margin-bottom:0cm;margin-bottom:.0001pt;  text-align:center;line-height:normal\'><b style=\'mso-bidi-font-weight:normal\'><span  style=\'font-size:12.0pt;mso-bidi-font-size:11.0pt\'>INSTRUMENT</span><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:6\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Depth</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Sampling</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n    <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:7\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/72\">AANDERAA RCM7 SN 11565</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>514 m<o:p></o:p></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>30 min<o:p></o:p></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>U, V , Mod, Dir, AWT<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:8\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b><o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:9\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;\r\n  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data <o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0<o:p></o:p></p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>31/01/2010  12:28:00<o:p></o:p></p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span lang=EN-US style=\'mso-ansi-language:EN-US\'>13/02/2011  <span  style=\'mso-spacerun:yes\'>  </span>06:28:00<o:p></o:p></span></p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:10\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span><o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:11\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span><o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:12\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span  class=SpellE>Parthenope</span> 09/2014<o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:13\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:14\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Depth</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Sampling</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:15\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/74\">SEACAT SBE39 SN 1214</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>494 m<o:p></o:p></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>10 min<o:p></o:p></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>T<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:16\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b><o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:17\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data <o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0<o:p></o:p></p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>31/01/2010  <span style=\'mso-spacerun:yes\'>  </span>11:49:00<o:p></o:p></p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span lang=EN-US style=\'mso-ansi-language:EN-US\'>26/01/2012  <span  style=\'mso-spacerun:yes\'>  </span>08:49:00<o:p></o:p></span></p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:18\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span><o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:19\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span><o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:20\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span  class=SpellE>Parthenope</span> 09/2014<o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:21\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:22\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Depth</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Sampling</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:23\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/73\">SEACAT SBE39 SN 1211</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>474 m<o:p></o:p></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>10 min<o:p></o:p></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>T<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:24\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b><o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:25\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data <o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0<o:p></o:p></p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>31/01/2010  <span style=\'mso-spacerun:yes\'>  </span>11:46:00<o:p></o:p></p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span lang=EN-US style=\'mso-ansi-language:EN-US\'>26/01/2012  <span  style=\'mso-spacerun:yes\'>  </span>08:06:00<o:p></o:p></span></p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:26\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span><o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:27\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span><o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:28\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span class=SpellE>Parthenope</span> 09/2014<o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:29\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:30\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Depth</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Sampling</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:31\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/71\">AANDERAA RCM7 SN 11199</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>454 m<o:p></o:p></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>30 min<o:p></o:p></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>U, V, Mod, Dir, T<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:32\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b><o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:33\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data <o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0<o:p></o:p></p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>01/02/2010  01:58:00<o:p></o:p></p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt; mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>28/05/2011  <span style=\'mso-spacerun:yes\'>  </span>00:28:00<o:p></o:p></p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:34\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span><o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:35\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span><o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:36;mso-yfti-lastrow:yes\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span class=SpellE>Parthenope</span> 09/2014<o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>3<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n</table>','','full_html'),('node','page',0,42,42,'und',0,'<table class=MsoTableGrid border=1 cellspacing=0 cellpadding=0 style=\'border-collapse:collapse;border:none;mso-border-alt:solid windowtext .5pt; mso-yfti-tbllook:1184;mso-padding-alt:0cm 5.4pt 0cm 5.4pt\'>\r\n <tr style=\'mso-yfti-irow:0;mso-yfti-firstrow:yes\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal align=center style=\'margin-bottom:0cm;margin-bottom:.0001pt;  text-align:center;line-height:normal\'><b style=\'mso-bidi-font-weight:normal\'><span  style=\'font-size:16.0pt;mso-bidi-font-size:11.0pt\'>MOORING G</span><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:1\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Cruise <span class=SpellE>deployment</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>PNRA - XXVII<span class=SpellE>Expedition</span> – 2011/12</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:2\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Cruise <span class=SpellE>recovery</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>PNRA - XXIX <span class=SpellE>Expedition</span> - 2013/14</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:3\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Coordinates</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>72.39585 S 172.98543 E</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:4\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Water <span class=SpellE>depth</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>532 m</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Magnetic</span> <span class=SpellE>declination</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>106°N</p>\r\n  </td>\r\n </tr>\r\n<tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>deployment</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>26/01/2012 16:25:00</p>\r\n  </td>\r\n </tr>\r\n<tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>recovery</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>23/01/2014   tra 01:00 e 02:00</p>\r\n  </td>\r\n </tr>\r\n<tr style=\'mso-yfti-irow:5\'>\r\n  <tr style=\'mso-yfti-irow:5\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal align=center style=\'margin-bottom:0cm;margin-bottom:.0001pt;  text-align:center;line-height:normal\'><b style=\'mso-bidi-font-weight:normal\'><span  style=\'font-size:12.0pt;mso-bidi-font-size:11.0pt\'>INSTRUMENT</span><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:6\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Depth</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Sampling</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n    <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:7\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/76\">AANDERAA RCM7 SN 11560</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>517 m<o:p></o:p></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>60 min<o:p></o:p></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>U, V, Mod, Dir, T<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:8\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b><o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:9\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;\r\n  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data <o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0<o:p></o:p></p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>26/01/2012 17:00:00<o:p></o:p></p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span lang=EN-US style=\'mso-ansi-language:EN-US\'>22/01/2014<span  style=\'mso-spacerun:yes\'>  </span>23:00:00<o:p></o:p></span></p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:10\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span><o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:11\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span><o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:12\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span  class=SpellE>Parthenope</span> 09/2014<o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:13\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:14\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Depth</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Sampling</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:15\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/77\">SEACAT SBE39 SN 1213</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>495 m<o:p></o:p></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>5 min<o:p></o:p></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>T<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:16\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b><o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:17\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data <o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0<o:p></o:p></p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>26/01/2012<span style=\'mso-spacerun:yes\'>  </span>16:35:00<o:p></o:p></p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span lang=EN-US style=\'mso-ansi-language:EN-US\'>23/01/2014<span  style=\'mso-spacerun:yes\'>  </span>00:25:00<o:p></o:p></span></p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:18\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span><o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:19\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span><o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:20\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span  class=SpellE>Parthenope</span> 09/2014<o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:21\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:22\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Depth</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Sampling</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:23\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/78\">SEACAT SBE39 SN 1210</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>475 m<o:p></o:p></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>5 min<o:p></o:p></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>T<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:24\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b><o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:25\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data <o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0<o:p></o:p></p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>26/01/2012<span style=\'mso-spacerun:yes\'>  </span>16:35:00<o:p></o:p></p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span lang=EN-US style=\'mso-ansi-language:EN-US\'>23/01/2014<span  style=\'mso-spacerun:yes\'>  </span>00:25:00<o:p></o:p></span></p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:26\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span><o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:27\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span><o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:28\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span class=SpellE>Parthenope</span> 09/2014<o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:29\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:30\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Depth</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Sampling</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:31\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/75\">AANDERAA RCM7 SN 9016</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>455 m<o:p></o:p></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>60 min<o:p></o:p></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>U, V, Mod, Dir<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:32\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b><o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:33\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data <o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0<o:p></o:p></p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>26/01/2012 17:00:00<o:p></o:p></p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt; mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>23/01/2014<span style=\'mso-spacerun:yes\'>  </span>00:00:00<o:p></o:p></p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:34\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span><o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:35\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span><o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:36;mso-yfti-lastrow:yes\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span class=SpellE>Parthenope</span> 09/2014<o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>3<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n</table>','','full_html'),('node','page',0,43,43,'und',0,'<table class=MsoTableGrid border=1 cellspacing=0 cellpadding=0 style=\'border-collapse:collapse;border:none;mso-border-alt:solid windowtext .5pt; mso-yfti-tbllook:1184;mso-padding-alt:0cm 5.4pt 0cm 5.4pt\'>\r\n <tr style=\'mso-yfti-irow:0;mso-yfti-firstrow:yes\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal align=center style=\'margin-bottom:0cm;margin-bottom:.0001pt;  text-align:center;line-height:normal\'><b style=\'mso-bidi-font-weight:normal\'><span  style=\'font-size:16.0pt;mso-bidi-font-size:11.0pt\'>MOORING D</span><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:1\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Cruise <span class=SpellE>deployment</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>PNRA - XXV <span class=SpellE>Expedition</span> – 2009/10</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:2\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Cruise <span class=SpellE>recovery</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>PNRA - XXVII <span class=SpellE>Expedition</span> - 2011/12</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:3\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Coordinates</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>75.13338 S 164.52256 E</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:4\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Water <span class=SpellE>depth</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1086 m</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Magnetic</span> <span class=SpellE>declination</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>138°N</p>\r\n  </td>\r\n </tr>\r\n<tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>deployment</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>06/02/2010  02:12:00</p>\r\n  </td>\r\n </tr>\r\n<tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>recovery</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>23/01/2012</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:6\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal align=center style=\'margin-bottom:0cm;margin-bottom:.0001pt;  text-align:center;line-height:normal\'><b style=\'mso-bidi-font-weight:normal\'><span  style=\'font-size:12.0pt;mso-bidi-font-size:11.0pt\'>INSTRUMENT</span><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:7\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Depth<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Sampling<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:8\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/57\">AANDERAA RCM7 SN 11559</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1078 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>30 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>U, V , Mod, Dir, T, AWT</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:9\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:10\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data </p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>06/02/2010 02:46:00</p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>10/08/2011<span style=\'mso-spacerun:yes\'>  </span>04:46:00</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:11\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:12\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:13\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span  class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:15\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:16\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Depth<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Sampling<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:17\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/61\">SEACAT SBE16 SN 1437</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1036 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>30 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left: none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>T, S</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:18\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:19\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data </p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>06/02/2010<span style=\'mso-spacerun:yes\'>  </span>02:34:00</p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>23/01/2012<span style=\'mso-spacerun:yes\'>  </span>15:04:00</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:20\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:21\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:22\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span  class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:24\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:25\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Depth<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Sampling<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:26\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/63\">SEACAT SBE39 SN 1213</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>950 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>5 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>T</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:27\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:28\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data </p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>06/02/2010 <span style=\'mso-spacerun:yes\'> </span>02:23:00</p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>23/01/2012<span style=\'mso-spacerun:yes\'>  </span>15:18:00</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:29\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:30\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:31\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span  class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:33\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:34\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Depth<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Sampling<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:35\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/60\">AANDERAA RCM9 SN 975</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>838 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>30 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>U, V, Mod, Dir, AWT</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:36\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:37\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data </p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>06/02/2010 02:46:00</p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>16/04/2010<span style=\'mso-spacerun:yes\'>  </span>10:46:00</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:38\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:39\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:40\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:42\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:43\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Depth<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Sampling<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:44\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/62\">SEACAT SBE39 SN 1210</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>694 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt; line-height: normal\'>5 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>T</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:45\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:46\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data </p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>06/02/2010<span style=\'mso-spacerun:yes\'>  </span>02:48:00</p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>23/01/2012<span style=\'mso-spacerun:yes\'>  </span>15:18:00</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:47\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:48\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:49\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span\r\n  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span  class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:51\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:52\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;   padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Depth<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Sampling<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:53\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/59\">AANDERAA RCM7 SN 11560</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>494 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>30 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>U, V, Mod, Dir, T</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:54\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:55\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data </p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>06/02/2010 02:46:00</p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>21/11/2010<span style=\'mso-spacerun:yes\'>  </span>03:46:00</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:56\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:57\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:58\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:60\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:61\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Depth<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Sampling<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:62\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/58\">SEACAT SBE16 SN 1433</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>463 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>30 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>T, S</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:63\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:64\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>Raw</span> data </p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=5 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>06/02/2010<span style=\'mso-spacerun:yes\'>  </span>02:55:00</p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=5 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>23/01/2012 14:25:00</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:65\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:66\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:67\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span   class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span  class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:68\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:normal\'>Correzione salinità CTD</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n</table>','','full_html'),('node','page',0,44,44,'und',0,'<table class=MsoTableGrid border=1 cellspacing=0 cellpadding=0 style=\'border-collapse:collapse;border:none;mso-border-alt:solid windowtext .5pt; mso-yfti-tbllook:1184;mso-padding-alt:0cm 5.4pt 0cm 5.4pt\'>\r\n <tr style=\'mso-yfti-irow:0;mso-yfti-firstrow:yes\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal align=center style=\'margin-bottom:0cm;margin-bottom:.0001pt;  text-align:center;line-height:normal\'><b style=\'mso-bidi-font-weight:normal\'><span  style=\'font-size:16.0pt;mso-bidi-font-size:11.0pt\'>MOORING D</span><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:1\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Cruise <span class=SpellE>deployment</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>PNRA - XXVII<span class=SpellE>Expedition</span> - 2011/12</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:2\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Cruise <span class=SpellE>recovery</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>PNRA - XXIX <span class=SpellE>Expedition</span> - 2013/14</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:3\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Coordinates</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>75.12955 S 164.84876 E</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:4\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Water <span class=SpellE>depth</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1117 m</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Magnetic</span> <span class=SpellE>declination</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>138°N</p>\r\n  </td>\r\n </tr>\r\n<tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>deployment</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>01/02/2012  22:13:00</p>\r\n  </td>\r\n </tr>\r\n<tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>recovery</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>11/01/2014  15:30:00</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:6\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal align=center style=\'margin-bottom:0cm;margin-bottom:.0001pt;  text-align:center;line-height:normal\'><b style=\'mso-bidi-font-weight:normal\'><span  style=\'font-size:12.0pt;mso-bidi-font-size:11.0pt\'>INSTRUMENT</span><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:7\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Depth<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Sampling<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:8\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/66\">AANDERAA RCM7 SN 11565</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1112 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>60 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>U, V, Mod, Dir, T</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:9\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:10\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data </p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>01/02/2012  23:00:00</p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt; mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>11/01/2014 <span style=\'mso-spacerun:yes\'>  </span>15:00:00</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:11\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:12\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:13\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span  class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:15\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:16\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;\r\n  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Depth<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Sampling<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:17\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/68\">SEACAT SBE16 SN 1437</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1069 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>30 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>T, S</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:18\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:19\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>01/02/2012  <span style=\'mso-spacerun:yes\'>  </span>22:30:00</p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>11/01/2014  <span style=\'mso-spacerun:yes\'>  </span>15:00:00</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:20\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:21\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:22\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span  class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:24\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:25\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Depth<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Sampling<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:26\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;\r\n  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/69\">SEACAT SBE39 SN 1211</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>966 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>10 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>T</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:27\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:28\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data </p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>01/02/2012 <span style=\'mso-spacerun:yes\'> </span>22:30:00</p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>11/01/2014<span style=\'mso-spacerun:yes\'>  </span>15:00:00</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:29\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:30\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:31\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span  class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:33\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:\r\n  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:34\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Depth<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Sampling<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:35\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/65\">AANDERAA RCM7 SN 11199</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>875 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>60 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>U, V, Mod, Dir</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:36\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:37\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data </p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>01/02/2012  23:04:00</p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>11/01/2014<span style=\'mso-spacerun:yes\'>  </span>15:04:00</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:38\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:39\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:40\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span  class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:42\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:43\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Depth<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Sampling<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:44\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/70\">SEACAT SBE39 SN 1214</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>739 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>10 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>T</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:45\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:\r\n  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:46\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data </p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>01/02/2012 <span style=\'mso-spacerun:yes\'>  </span>22:30:00</p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>11/01/2014<span style=\'mso-spacerun:yes\'>  </span>15:00:00</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:47\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:48\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:49\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span  class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:51\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:52\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Depth<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Sampling<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:53\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/64\">AANDERAA RCM7 SN 9022</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>539 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>60 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>U, V, Mod, Dir</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:54\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:55\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data </p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>01/02/2012  22:30:00</p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>11/01/2014  <span style=\'mso-spacerun:yes\'>  </span>14:30:00</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:56\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:57\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:58\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span  class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:60\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:61\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Depth<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Sampling<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:62\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/67\">SEACAT SBE16 SN 1433</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>509 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>30 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>T, S</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:63\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext.5pt;padding:0cm 5.4pt 0cm 5.4pt\'>  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:64\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data </p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=5 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>01/02/2012<span style=\'mso-spacerun:yes\'>  </span>22:30:00</p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=5 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>11/01/2014 15:00:00</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:65\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:66\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:67\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span  class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:68\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Correzione salinità CTD</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n</table>','','full_html'),('node','page',0,45,45,'en',0,'<h1 align= \"center\"><strong>Italian field activities in the Pacific Sector of the ACC</strong></h1>\r\n<h2 align=\"center\"><strong>Austral Summer 2014-2015</strong></h2>\r\n<h3 align=\"center\"><strong>30th Italian Expedition in Antarctica (PNRA XXX)</strong></h3>\r\n</br>\r\n<p align=\"justify\">The absence of continental barriers across the latitude band of Drake Passage permits an Antarctic Circumpolar Current (ACC) to flow and act as the primary driver for inter-basin exchanges. Due to its important climate impact, the ACC band is an area of high interest, especially since global ocean temperatures have been shown to increase in the last. Hydrographic observations are thus important as they aid the description and understanding of the processes which occur within the Southern Ocean and across the ACC. \r\nThe oceanographic Italian field activities in the Southern Ocean during Austral summer 2014-15 will be carried on in the framework of the MORSea project (http://morsea.uniparthenope.it/, founded by the Italian PNRA - National Program for Antarctic Research) and they will be focused on the in situ monitoring of the Pacific Sector of the ACC - between New Zealand and the Ross Sea - by means of XBT, floats, and drifters. Two Italian scientists of University of Napoli “Parthenope” will be host onboard of the South Korean R/V Araon in the framework of the collaboration between Italian PNRA and KOPRI (Korea Polar Research Institute).</p>\r\nThree main actions will be undertaken during the cruise:\r\n•	collection of in situ temperature data in the layer 0-800m;\r\n•	release of 10 SVP2 surface drifters;\r\n•	deployment of 10 ARVOR and PROVOR floats.\r\n<p align=\"justify\">Main focus of the cruise is the continuation of the about twenty year-long time series of temperature data along the endurance line New Zealand - Antarctica. Since 1994 in situ temperature data of the surface layer of the southern ocean have been collected in the framework of the Italian CLIMA and SOChIC projects. Up to 2013, 25 transects between New Zealand and the Ross Sea have been realized by the R/V Italica mainly in January and February (figure 1) collecting SST, SSS, XBT and XCTD data.\r\nDuring Austral summer 2014/2015 field activities will increase and preserve the importance of the large dataset collected since 1994 and will represent also a significant contribution to the Italian deployment of lagrangian platforms in the latitude band of the ACC with a grand total of 20 drifting platforms (10 floats and 10 surface drifters) provided by the ARGO-Italy program (http://argoitaly.ogs.trieste.it/).</p>\r\n<p ALIGN=\"center\"><a href=\" \"><img alt=\"\" src=\"/sites/all/themes/multipurpose/images/fig1.png\" width=\"500px\" /></a></p>\r\n \r\n<p align=\"justify\"><strong>Figure 1. Transects of XBT casts relating to the CLIMA/SOChIC/MORSea programmes (black dots) from 1994 to 2013. Underlying bathymetry (meters below sea level) is indicated by color shading.</b></strong>\r\n\r\n<p align=\"justify\">Temperature data are usually collected using Sippican T7 probes providing temperature profiles with a vertical resolution of 65 cm and a maximum nominal depth of 760 m. A regular 20 km sampling rate is adopted with increased sampling frequency over the main frontal regions of the ACC. Transects are usually performed in 5 days providing a synoptic picture of the thermal structure of the upper SO in this sector.\r\nSurface data related to temperature, salinity, chlorophyll and – more recently – other bio-geochemical tracers, as well as atmospheric data and CO2 atmospheric partial pressure, are usually collected by the R/V Italica along the entire transect while drifters and floats are released in correspondence of the main ACC fronts.\r\nSince 2009 the location of ACC fronts in this sector is also monitored on the basis of satellite altimetry data (SSH), in order to provide indications to sea-going staff on the position of fronts and also to study the variability of ACC fronts during the entire year and observe their modification during any eventual eddy shedding event.\r\nIn our data set the Polar Front (PF) positions (figure 2) are characterized by the minimum (northest position) value of 60.2°S reached during November 1994. The mean position of the PF is slightly southern (61.7°S) than previous estimation (61.5°S) from Budillon and Rintoul [2003], while the standard deviation (0.9°) remains unchanged. Figure 2 also shows the presence of isolated latitude band associated to the PF_SSH values not linked to any in situ front position. These isolated signals, often characterized by a very small latitudinal extension, can be due to the presence of water masses with the same physical properties of PF water in an unusual northern position. The explanation for the northern migration of water with PF characteristics can be linked to the presence of eddies detaching from the PF and moving northward to the Sub Antarctic Front.</p>\r\n <p ALIGN=\"center\"><a href=\" \"><img alt=\"\" src=\"/sites/all/themes/multipurpose/images/fig2.png\" width=\"500px\" /></a></p>\r\n<p align=\"justify\"><strong>Figure 2. Positions of the PF during the CLIMA/SOChIC/MORSea cruises from 1994 to 2010. Black line represents the mean latitude of front from in situ data, gray vertical bars represent the along track-latitude bands where fronts are detected using altimetry values (from Cotroneo et al. 2013).</strong></p>','','full_html'),('node','page',0,46,46,'en',0,'<div>\r\n<div style=\"float:left\">\r\n  <img src=\"sites/all/themes/multipurpose/images/sooslogo.jpg\" alt=\"SOUTHERN OCEAN DATA\" width=\"200\"/>	 \r\n</div>\r\n<div style=\"float:left\">\r\n  <div> <p style=\"font-size: 16px; padding-top: 15px;\">\r\n    <strong>Observation Activities in the Ross Sea - Report 2015</strong>  \r\n</p>\r\n</div>\r\n  <div style=\"border: none; width: 110px; height: 30px; padding-left: 180px;\">\r\n    <a href=\"/sites/all/themes/multipurpose/pubblications/RossSeaReport2015.pdf\"><img height=\"10\" src=\"sites/all/themes/multipurpose/images/readMore2.jpg\" style=\"border: none;\" align=\"left\"></a>\r\n  </div>               	    	  \r\n  </div>\r\n </div>\r\n\r\n\r\n<div>\r\n<div style=\"float:left\">\r\n  <img src=\"sites/all/themes/multipurpose/images/sooslogo.jpg\" alt=\"SOUTHERN OCEAN DATA\" width=\"200\"/>	 \r\n</div>\r\n<div style=\"float:left\">\r\n  <div> <p style=\"font-size: 16px; padding-top: 15px;\">\r\n    <strong>Italian Marine Ross Sea Observatory</strong>  \r\n</p>\r\n</div>\r\n  <div style=\"border: none; width: 110px; height: 30px; padding-left: 180px;\">\r\n    <a href=\"http://www.soos.aq/news/current-news/202-italian-moorings\"><img height=\"10\" src=\"sites/all/themes/multipurpose/images/readMore2.jpg\" style=\"border: none;\" align=\"left\"></a>\r\n  </div>                 	    	  \r\n  </div>\r\n </div>\r\n\r\n<div>\r\n<div style=\"float:left\">\r\n  <img src=\"sites/all/themes/multipurpose/images/sooslogo.jpg\" alt=\"SOUTHERN OCEAN DATA\" width=\"200\"/>	 \r\n</div>\r\n<div style=\"float:left\">\r\n  <div> <p style=\"font-size: 16px; padding-top: 15px;\">\r\n    <strong>Italian Activities this Season</strong>  \r\n</p>\r\n</div>\r\n  <div style=\"border: none; width: 110px; height: 30px; padding-left: 180px;\">\r\n    <a href=\"http://www.soos.aq/news/current-news/199-italiano-field-plans\"><img height=\"10\" src=\"sites/all/themes/multipurpose/images/readMore2.jpg\" style=\"border: none;\" align=\"left\"></a>\r\n  </div>                 	    	  \r\n  </div>\r\n </div>','','full_html'),('node','page',0,57,57,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/D/2010/rcm7_11559_1078m/rcm7_11559_1078m_speed.png\"/></div>\r\n<div><img alt=\"\" src=\"/sites/default/files/D/2010/rcm7_11559_1078m/rcm7_11559_1078m_T.png\"/></div>\r\n<div><img alt=\"\" src=\"/sites/default/files/D/2010/rcm7_11559_1078m/rcm7_11559_1078m_AWT.png\"/></div>\r\n\r\n','','full_html'),('node','page',0,58,58,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/D/2010/sbe16_1433_463m/sbe16_1433_463m_S.png\"/></div>\r\n<div><img alt=\"\" src=\"/sites/default/files/D/2010/sbe16_1433_463m/sbe16_1433_463m_T.png\"/></div>\r\n','','full_html'),('node','page',0,59,59,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/D/2010/rcm7_11560_494m/rcm7_11560_494m_speed.png\"/></div>\r\n<div><img alt=\"\" src=\"/sites/default/files/D/2010/rcm7_11560_494m/rcm7_11560_494m_AWT.png\"/></div>','','full_html'),('node','page',0,60,60,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/D/2010/rcm9_975_838m/rcm9_975_838m_speed_lvl1.png\"/></div>\r\n<div><img alt=\"\" src=\"/sites/default/files/D/2010/rcm9_975_838m/rcm9_975_838m_T_lvl1.png\"/></div>','','full_html'),('node','page',0,61,61,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/D/2010/sbe16_1437_1036m/sbe16_1437_1036m_S2.png\"/></div>\r\n<div><img alt=\"\" src=\"/sites/default/files/D/2010/sbe16_1437_1036m/sbe16_1437_1036m_T1.png\"/></div>\r\n','','full_html'),('node','page',0,62,62,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/D/2010/sbe39_1210_694m/sbe39_1210_694m_T.png\"/></div>','','full_html'),('node','page',0,63,63,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/D/2010/sbe39_1213_950m/sbe39_1213_950m_T.png\"/></div>','','full_html'),('node','page',0,64,64,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/D/2012/rcm7_9022_539m/rcm7_9022_539m_speed.png\"/></div>','','full_html'),('node','page',0,65,65,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/D/2012/rcm7_11199_875m/rcm7_11199_875m_speed.png\"/></div>','','full_html'),('node','page',0,66,66,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/D/2012/rcm7_11565_1112m/rcm7_11565_1112m_speed.png\"/></div>','','full_html'),('node','page',0,67,67,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/D/2012/sbe16_1433_509m/sbe16_1433_509m_S_lvl2.png\"/></div>\r\n<div><img alt=\"\" src=\"/sites/default/files/D/2012/sbe16_1433_509m/sbe16_1433_509m_T.png\"/></div>','','full_html'),('node','page',0,68,68,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/D/2012/sbe16_1437_1069m/sbe16_1437_1069m_S.png\"/></div>\r\n<div><img alt=\"\" src=\"/sites/default/files/D/2012/sbe16_1437_1069m/sbe16_1437_1069m_T.png\"/></div>','','full_html'),('node','page',0,69,69,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/D/2012/sbe39_1211_966m/sbe39_1211_966m_T.png\"/></div>','','full_html'),('node','page',0,70,70,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/D/2012/sbe39_1214_739m/sbe39_1214_739m_T.png\"/></div>','','full_html'),('node','page',0,71,71,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/G/2010/rcm7_11199_454m/rcm7_11199_454m_speed.png\"/></div>\r\n<div><img alt=\"\" src=\"/sites/default/files/G/2010/rcm7_11199_454m/rcm7_11199_454m_T.png\"/></div>','','full_html'),('node','page',0,72,72,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/G/2010/rcm7_11565_514m/rcm7_11565_514m_speed.png\"/></div>\r\n<div><img alt=\"\" src=\"/sites/default/files/G/2010/rcm7_11565_514m/rcm7_11565_514m_T.png\"/></div>','','full_html'),('node','page',0,73,73,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/G/2010/sbe39_1211_474m/sbe39_1211_474_T.png\"/></div>\r\n','','full_html'),('node','page',0,74,74,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/G/2010/sbe39_1214_494m/sbe39_1214_494m_T.png\"/></div>','','full_html'),('node','page',0,75,75,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/G/2012/rcm7_9016_455m/rcm7_9016_455m_speed.png\"/></div>','','full_html'),('node','page',0,76,76,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/G/2012/rcm7_11560_517m/rcm7_11560_517m_speed.png\"/></div>\r\n<div><img alt=\"\" src=\"/sites/default/files/G/2012/rcm7_11560_517m/rcm7_11560_517m_T.png\"/></div>','','full_html'),('node','page',0,77,77,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/G/2012/sbe39_1213_495m/sbe39_1213_495m_T.png\"/></div>','','full_html'),('node','page',0,78,78,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/G/2012/sbe39_1210_475m/sbe39_1210_475m_T.png\"/></div>','','full_html'),('node','page',0,79,79,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/L/2010/L_rcm7_11974_40m/rcm7_11974_40m_speed.png\"/></div>\r\n<div><img alt=\"\" src=\"/sites/default/files/L/2010/L_rcm7_11974_40m/rcm7_11974_40m_T_lvl1.png\"/></div>','','full_html'),('node','page',0,80,80,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/L/2012/L_rcm7_11559_144m/rcm7_11559_144m_speed.png\"/></div>\r\n<div><img alt=\"\" src=\"/sites/default/files/L/2012/L_rcm7_11559_144m/rcm7_11559_144m_T.png\"/></div>','','full_html'),('node','page',0,81,81,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/L/2012/L_rcm7_11974_62m/rcm7_11974_62m_speed.png\"/></div>\r\n<div><img alt=\"\" src=\"/sites/default/files/L/2012/L_rcm7_11974_62m/rcm7_11974_62m_T.png\"/></div>','','full_html'),('node','page',0,82,82,'en',0,'<h1 align= \"center\"><strong><a target=”_blank” href=\"http://rmm.an.ismar.cnr.it/index.php/antartide\">Antartide-Previsione di marea BTN (Baia Terra Nova)</a></strong></h1>\r\n<div align=\"center\"><iframe width=\'650\' height=\'910\' src=\'sites/default/files/Tide/PosterBTN.pdf\'></iframe></div>','','full_html'),('node','page',0,83,83,'en',0,'<table class=MsoTableGrid border=1 cellspacing=0 cellpadding=0 style=\'border-collapse:collapse;border:none;mso-border-alt:solid windowtext .5pt; mso-yfti-tbllook:1184;mso-padding-alt:0cm 5.4pt 0cm 5.4pt\'>\r\n <tr style=\'mso-yfti-irow:0;mso-yfti-firstrow:yes\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal align=center style=\'margin-bottom:0cm;margin-bottom:.0001pt;  text-align:center;line-height:normal\'><b style=\'mso-bidi-font-weight:normal\'><span  style=\'font-size:16.0pt;mso-bidi-font-size:11.0pt\'>MOORING B</span><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:1\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Cruise deployment</p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>PNRA - XXV Expedition – 2009/10</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:2\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Cruise recovery</p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>PNRA - XXVII Expedition - 2011/12</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:3\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Coordinates</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>74.00226 S 175.09839 E</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:4\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Water depth</p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>570 m</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Magnetic declination</p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>114°N</p>\r\n  </td>\r\n </tr>\r\n<tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>deployment</p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>11/02/2010  02:48:00</p>\r\n  </td>\r\n </tr>\r\n<tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>recovery</p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>27/01/2012  10:09:00</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:5\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal align=center style=\'margin-bottom:0cm;margin-bottom:.0001pt;  text-align:center;line-height:normal\'><b style=\'mso-bidi-font-weight:normal\'><span  style=\'font-size:12.0pt;mso-bidi-font-size:11.0pt\'>INSTRUMENT</span></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:6\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN</b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Depth</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Sampling</b></span><b  style=\'mso-bidi-font-weight:normal\'></b></p>\r\n  </td>\r\n    <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:7\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/102 \">AANDERAA RCM9 SN 1210</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>543 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>60 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Mod, Dir</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:8\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET</b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL</b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START</b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:9\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;\r\n  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Raw data</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>11/02/2010  03:45:00</p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>23/05/2011  22:45:00</p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:10\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:11\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD quality check</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:12\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Quality check L.Marziani Univ. Parthenope 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:13\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:14\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN</b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Depth</b></span><b  style=\'mso-bidi-font-weight:normal\'></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Sampling</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:15\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/103\">SEACAT SBE16 SN 4494</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>533 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>30 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>T, Turb</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:16\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET</b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL</b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START</b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:17\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Raw data</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>11/02/2010 03:33:00</p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>27/01/2012  08:33:00</p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:18\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:19\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:20\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span  class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:21\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:22\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Depth</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Sampling</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:23\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/104\">SEACAT SBE37 SN 4118</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>280 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>60 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>T, Turb</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:24\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET</b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL</b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START</b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:25\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Raw data</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>11/02/2010  03:31:00</p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>27/01/2012  08:31:00</p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:26\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:27\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span><o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:28\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span class=SpellE>Parthenope</span> 09/2014<o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n</table>','','full_html'),('node','page',0,84,84,'en',0,'<table class=MsoTableGrid border=1 cellspacing=0 cellpadding=0 style=\'border-collapse:collapse;border:none;mso-border-alt:solid windowtext .5pt; mso-yfti-tbllook:1184;mso-padding-alt:0cm 5.4pt 0cm 5.4pt\'>\r\n <tr style=\'mso-yfti-irow:0;mso-yfti-firstrow:yes\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal align=center style=\'margin-bottom:0cm;margin-bottom:.0001pt;  text-align:center;line-height:normal\'><b style=\'mso-bidi-font-weight:normal\'><span  style=\'font-size:16.0pt;mso-bidi-font-size:11.0pt\'>MOORING B</span></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:1\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Cruise deployment</p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>PNRA - XXVII Expedition - 2011/12</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:2\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Cruise recovery</p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>PNRA - XXIX Expedition - 2013/14</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:3\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Coordinates</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>74.00337 S 175.09768 E</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:4\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Water depth</p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>607 m</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Magnetic declination</p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>114°N</p>\r\n  </td>\r\n </tr>\r\n<tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>deployment</p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>28/01/2012 16:58:00</p>\r\n  </td>\r\n </tr>\r\n<tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>recovery</p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>29/01/2014</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:5\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal align=center style=\'margin-bottom:0cm;margin-bottom:.0001pt;  text-align:center;line-height:normal\'><b style=\'mso-bidi-font-weight:normal\'><span  style=\'font-size:12.0pt;mso-bidi-font-size:11.0pt\'>INSTRUMENT</span></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:6\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN</b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Depth</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Sampling</b></span><b  style=\'mso-bidi-font-weight:normal\'></b></p>\r\n  </td>\r\n    <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:7\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>AANDERAA RCM7 SN 9470</p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>602 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>120 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:8\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET</b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL</b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START</b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:9\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;\r\n  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Raw data</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'></p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'></p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:10\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:11\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD quality check</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:12\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Quality check L.Marziani Univ. Parthenope 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:13\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:14\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN</b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Depth</b></span><b  style=\'mso-bidi-font-weight:normal\'></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Sampling</b></span><b  style=\'mso-bidi-font-weight:normal\'></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:15\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/106\">SEACAT SBE16 SN 4494</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>500 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>30 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>T</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:16\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET</b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL</b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START</b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:17\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Raw data</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>28/01/2012  17:11:00</p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>28/01/2014  23:11:00</p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:18\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:19\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:20\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span  class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:21\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:22\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Depth</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Sampling</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:23\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/105\">AANDERAA RCM7 SN 9474</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>229 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>120 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>U, V, Mod, Dir</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:24\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET</b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL</b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START</b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:25\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Raw data</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>28/01/2012  17:00:00</p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>28/01/2014  23:00:00</p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:26\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:27\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:28\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:6\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN</b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Depth</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Sampling</b></span><b  style=\'mso-bidi-font-weight:normal\'></b></p>\r\n  </td>\r\n    <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:7\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/107\">SEACAT SBE37 SN 4118</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>228 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>30 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>T</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:8\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET</b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL</b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START</b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:9\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;\r\n  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Raw data</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>28/01/2012 17:30:00</p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>28/01/2014 23:00:00</p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:10\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:11\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD quality check</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:12\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Quality check L.Marziani Univ. Parthenope 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n</table>','','full_html'),('node','page',0,85,85,'und',0,'<h1 align= \"center\"><strong>CA 09-10 XXV Ita. Esp. New Zealand</strong></h1>\r\n\r\n<h2 align=\"center\"><strong>Extract from the Italian XXV Antarctic expedition report</strong></h2>\r\n</br>\r\n<p align=\"justify\">The vessel Italica leaves the port of Lyttelton (NZ) in the direction of Antarctica and began XBT (SIPPICAN mod.T7, depth. max 760 m) casts, just after the end of New Zealand continental slope, coordinates 46°22’S-173°38’E, at 14:15 of 25/01/2010.\r\nXBT launches continue until the beginning of the Antarctic continental slope, reached on 29/01/2010 at 13:27 in position 70°S-175°53’E following the route in figure 1.\r\nA total of 95 valid XBT profiles have been obtained, which have allowed to determine the positions of the ACC thermohaline fronts that in this zone separate areas with different characteristics and dynamics.\r\nDuring the cruise, reduced ship speed allowed to obtain XBT data even at about 900 m depth without any loss of vertical resolution or change in the probe type.\r\nThese data are also used as a comparison for  remote sensing data from operational satellites SMOS (Soil Moisture and Ocean Salinity).</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/CA09-10_XXVItaEsp_NZ_1.png\" /></div>\r\n<p align=\"center\">Fig 1: Map of XBT launches in the period 25-29/01/2010 (left)  and temperature (right) section relative to the layer 0-1000 m from New Zealand to the Ross Sea.</p>\r\n\r\n<a href=\"http://www.pnra.it/biblioteca/docs/rapporti_campagna/CA09-10.pdf\">http://www.pnra.it/biblioteca/docs/rapporti_campagna/CA09-10.pdf</a>','','full_html'),('node','page',0,86,86,'und',0,'<h1 align= \"center\"><strong>CA 09-10 XXV Ita. Esp. South Africa SANAE 49</strong></h1>\r\n\r\n<h2 align=\"center\"><strong>Extract from the SANAE_49_Cruise Report</strong></h2>\r\n</br>\r\n<p align=\"justify\">The SANAE cruise took place on board the R/V Agulhas which sailed from Cape Town on the 09/12/2009 and returned on the 23/02/2010. The cruise track is divided into two sections; the leg from Cape Town to Antarctica (09–22/12/2009; Figure 1), and the leg from Antarctica back to Cape Town (13–23/02/2010; Figure 2).\r\nThe two legs were mainly focused on the underway measurements of surface biochemical parameters together with the physical structure of the water column using expendable temperature probes (XBTs) and an Underway Conductivity Temperature and Depth probe (UCTD).\r\nDuring the cruise, first leg launches of disposable probes started at 33.89°S-17.15°E and finished at 68.11°S-4.61°E, while the casts during the return started at 69.5°S-5.54°W and ended at 34.45°S-15.98°E.</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/CA09-10_XXVItaEsp_SA_1.jpg\" /></div>\r\n<p align=\"center\">Fig 2: Map of XBT launches in the period 8-22/12/2009 (left) and section of temperature relative to the layer 0-800m, from Cape Town to Antarctica (right).</p>\r\n<p align=\"justify\">To effectively measure oceanic changes of heat fluxes, in particular across regions of inter-basin exchange, high density observations need to be undertaken. Repeat XBT sections across “chokepoint” sections provide measurements of changes in upper ocean heat content and SST on both seasonal and inter-annual time scales. In addition, by exploiting the relationship between upper ocean temperature and dynamic height, XBTs can be used to infer velocities even in the Southern Ocean where salinity changes are important. In this way, XBT sections serve as a useful tool in measuring changes in the inter-ocean exchange of heat as well as identify and locate fronts and water masses.</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/CA09-10_XXVItaEsp_SA_2.jpg\" /></div>\r\n<p align=\"center\">Fig 2: Map of XBT launches in the period 22/02-02/03/2009 (left), and section of temperature relative to the layer 0-900m, from Cape Town to Antarctica (right).</p>\r\n<p align=\"justify\">XBTs were funded by the NOAA\'s Office of Global Programs as part of their High Density XBT project at NOAA/AOML. 325 XBT’s were deployed every two hours (~15 nautical mile intervals) increasing to every one hour (~10 nm) over the main frontal regions and over major topographic features. Most deployments reached a maximum working depth of the Sippican Deep Blue XBT, which is in the order of 780 m but slower ship speed allowed data collection up to 900 m depth.</p>\r\n<a href=\"http://www.aoml.noaa.gov/phod/hdenxbt/high_density_home.html\">http://www.aoml.noaa.gov/phod/hdenxbt/high_density_home.html</a>','','full_html'),('node','page',0,87,87,'und',0,'<h1 align= \"center\"><strong>CA 10-11 XXVI ita. Esp. South Africa SANAE 50</strong></h1>\r\n\r\n<h2 align=\"center\"><strong>Extract from the 2010-2011 SANAE 50 DATA REPORT </strong></h2>\r\n</br>\r\n<p align=\"justify\">The voyage started from Cape Town on the 8/12/2010 and returned to Cape Town on 16/02/2011.\r\nIn the period 8-19/12/2010, southward along the GoodHope hydrographic transect, with hydrographic stations occurred at regular interval using XBT and UCTD deployments which began at 33.85 S and 18.25 E, and ended at 70.5 S and 7.9 W (Fig 1).</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/CA10-11_XXVItaEsp_SA_1.png\" /></div>\r\n<p align=\"center\">Fig 1. Map of XBT launches in the period 08-19/12/2010 (left), and temperature section relative to the layer 0-900 m from Cape Town to Antarctica (right).</p>\r\n<p align=\"justify\">The major part of the flow associated with the ACC is concentrated at a number of circumpolar fronts, which act as boundaries separating zones of uniform water masses. From north to south the fronts and associated zones of the Southern Ocean are: Subtropical Convergence (STC), Subantarctic Zone (SAZ), Subantarctic Front (SAF), Polar Frontal Zone (PFZ), Antarctic Polar Front (APF), Antarctic Zone (AAZ) and Antarctic Divergence (AAD).\r\nFrom 05/02 to 16/02/2011, northward along GoodHope hydrographic transect, hydrographic stations occurred at regular interval using a combination of XBT and UCTD deployments which began at 70.48 S and 7.7 W, and ended at 33.84 S and 17.8 W (fig 2).</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/CA10-11_XXVItaEsp_SA_2.png\" /></div>\r\n<p align=\"center\">Fig 2  Map of XBT launches in the period 22/02-02/03/2010(left), and temperature section relative to the layer 0-900 m from Antartica to Cape Town (right).</p>\r\n<p align=\"justify\">In the framework of the GoodHope program XBTs were funded by the NOAA\'s Office of Global Programs as part of their High Density XBT project at NOAA/AOML. A total of 166 Sippican Deep Blue XBTs were deployed between Cape Town and Antarctica at the GoodHope line XBTs were deployed at ~20 nautical mile intervals increasing to every ~10 nm over the main frontal regions and were alternated with UCTD casts. In total, 14 XBTs (~8%) failed mainly as a result of strong winds and sea swell blowing the running signal wire against the ship’s hull, which resulted in the XBT wire stretching and thus insulation leakages. On the return leg of the GoodHope line, 193 XBT’s were deployed of which 21 (~11%) malfunctioned. On the return leg, XBTs were deployed at higher spatial resolution northwards of ~50°S.\r\n\r\nThe aim of the GoodHope programme is to establish an intensive monitoring platform that will provide detailed information on the physical structure and volume flux of waters south of South Africa, where the inter-basin exchanges occur. A key component of this programme is the implementation of the high-density XBT line AX25 that runs from Cape Town to Antarctica.\r\nThe SANAE cruise track crossed four distinct oceanic domains: the seasonal marginal ice-edge zone, the permanently open ocean zone, the shelf zone of the South Sandwich and South Georgia Islands and the frontal zones of the Antarctic Polar Front, the Subantarctic Front and the Subtropical Front.</p>','','full_html'),('node','page',0,88,88,'und',0,'<h1 align= \"center\"><strong>CA 11-12 XXVII Ita. Esp	South Africa SANAE 51</strong></h1>\r\n\r\n<h2 align=\"center\"><strong>Extract from the Italian XXVII Antarctc expedition report and NOAA AX25 Report</strong></h2>\r\n</br>\r\n<p align=\"justify\">The Antarctic Campaign 2011-2012 has seen the fulfillment and continuation of the research activities of the Project SOChIC carried out in collaboration between the PNRA, and the South African National Antarctic Programme (SANAP).\r\nActivities connected to the launch of Expendable Bathytermograph (XBT) probes have been carried on in the framework of The GoodHope and NOAA/AOML Atlantic high-density projects.\r\nBoth projects carry on an intensive monitoring programme that provide information of the vertical thermal structure of the surface layer of the Ocean.\r\nDuring the 158th voyage of the R/V Agulhas between Cape Town and Antarctica a total of 280 XBT Have been deployed with a spatial resolution of about15 nautical mile (2 hours of navigation).\r\nMost deployments reached a maximum working depth of the Sippican Deep Blue XBT, which is in the order of 780 m but slower ship speed allowed data collection up to 900 m depth.\r\nXBTs were funded by the NOAA\'s Office of Global Programs as part of their High Density XBT project at NOAA/AOML. \r\nDuring the first leg of the cruise, from Cape Town to Antarctica (Fig 1), 161 XBT were launched between -33.86°S/18.01°E (08/12/2011 h16:16) and -70.48°S/8.14°W (22/12/2011 h22:02) where sea ice condition imposed a stop of the deployment.\r\nThe release of 167 XBT probes (only 6 showed malfunctions) occurred along the route shown in Figure 1, with equivalent temporal resolution of about 2h, to the average speed of the ship, about 20 nm.</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/CA11-12_XXVII_ItaEsp_SA_1.png\" /></div>\r\n<p align=\"center\">Fig 1 Map of XBT launches in the period 8-22/12/2011 (left), and section of temperature relative to the layer 0-900m, from Cape Town to Antarctica (right).</p>\r\n<p align=\"justify\">Is worth noting that the spatial and temporal resolution of the launches XBT is the result of a careful planning process aimed at optimizing the scientific and technological resources available to the research project. Indeed launches XBT were alternated with the use of a probe UCTD (Underway CTD) gathering, always moving ship, the data of temperature, salinity and pressure of the first 400 meters of the water column. The final result obtained through the merging of the two datasets is a spatial/temporal resolution in data collection of approximately 1h (10 nm).\r\nThe section of temperature obtained through the use of XBT probes has allowed to identify the location of the main thermohaline fronts of the Antarctic Circumpolar Current (ACC). \r\nFurthermore during the crossing were released about 20 different types of float able to collect various data, including, in addition to temperature and salinity, dissolved oxygen and nutrient concentration.\r\nSecond leg of the cruise started on the 22/02/2012 and was concluded on the 02/03/2012. During this leg 119 XBT were launched between 69.22°S/7.11°W and 35.63°S/17.44°E.\r\nShip and weather troubles imposed a track different from the expected Goodhope line. Map of deployments is shown in figure 2 as well as temperature section from profiles.</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/CA11-12_XXVII_ItaEsp_SA_2.png\" /></div>\r\n<p align=\"center\">Fig 2: Map of XBT launches in the period 22/02-03/03/2012 (left) and section of temperature relative to the layer 0-900m, from Antarctica to Cape Town (right).</p>','','full_html'),('node','page',0,89,89,'und',0,'<h1 align= \"center\"><strong>CA 11-12 XXVII ita. Esp.	New Zealand</strong></h1>\r\n\r\n<h2 align=\"center\"><strong>Extract from the Italian XXVII antarctic expedition report</strong></h2>\r\n</br>\r\n<p align=\"justify\">The launches of XBT probes were carried on along the track Christchurch (NZ)-Antarctica. XBT casts began on 13/01/2012 18:45 at 46°S/173.55°E and ended on 19/01/2012 at 66°S/176.54°E, the sampling rate was 15 miles nautical.\r\nDuring the southward journey 99 probes have been used of which 82 showed no operating problems, while 17 launches failed due almost entirely to the contact of the cable conductor with the hull of the ship.\r\nFigure1 shows XBT map and the thermal section of the sub-surface layer. Italian investigations on the thermal structure across the ACC, started in 1994 in the framework of the CLIMA project and nowadays have a relevant climatological significance both for the long period covering and the repetition of measurements along the same track.</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/CA11-12_XXVII_ItaEsp_NZ_1.jpg\" /></div>\r\n<p align=\"center\">Figure1: Map of XBT launches in the period 13-19/03/2012 (left) and section of temperature relative to the layer 0-760m, from New Zealand to Antarctica (right)</p>\r\n<p align=\"justify\">A similar activity, for a total of 17 probes, was carried out during the return of the vessel between the latitudinal band of 65°S/178.86°E and 60.5°S/179.357 in correspondence of the main frontal systems in the area of the Antarctic convergence.</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/CA11-12_XXVII_ItaEsp_NZ_2.jpg\" /></div>\r\n<p align=\"center\">Figure 2: Map of XBT launches in the period 14-15/02/2012 (left) and section of temperature relative to the layer 0-760m, from Antarctica to New Zealand (right).</p>\r\n<a href=\"http://www.pnra.it/biblioteca/docs/rapporti_campagna/RapFin2012.pdf\">http://www.pnra.it/biblioteca/docs/rapporti_campagna/RapFin2012.pdf</a>','','full_html'),('node','page',0,90,90,'und',0,'<h1 align= \"center\"><strong>CA 12-13 XXVIII ita. Esp. South Africa</strong></h1>\r\n\r\n<h2 align=\"center\"><strong>Extract from the Italian XXVIII antarctic expedition report</strong></h2>\r\n</br>\r\n<p align=\"justify\">The S/A Agulhas II has left the Cape Town harbor on the 06/12/2012, bound for the Antarctic continent, then reached on 17/12/2012. XBT launches started a few hours after the departure and continued throughout the GoodHope Line, the route covered by the Agulhas II toward Antarctica (fig. 1).</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/CA12-13_XXVIII_ItaEsp_SA_1.jpg\" /></div>\r\n<p align=\"center\">Fig. 1: Map of XBT launches in the period 6-15/12/2012 (left) and section of temperature relative to the 0-900m layer, from Cape Town to Antarctica (right).</p>\r\n<p align=\"justify\">During the first leg, from Cape Town to Antarctica, 157 XBT were launched (13 did not work properly) at a resolution of about 20nm. XBT activities were conducted between 33.86°S/17.88°E (06/12/2012 at 21:57) and 69.10°S/0.12°W (15/12/2012 at 13:10) when the sea ice conditions forced interruption of the measurements.\r\nThe XBT casts were also used for inter-calibration of the data collected by other instruments such as surveys CTD near the ice shelf, water column profiles realized by 15 ARGO floats and 3 Seagliders as well as with data collected continuously from thermosalinograph on board (TSG). After quality control process a reliable section of temperature of the first 900m along the Line GoodHope has been realized (Fig.1).\r\nThe section of temperature obtained through the use of XBT probes allowed so to identify the location of the main fronts thermhoaline of the Antarctic Circumpolar Current (ACC). \r\nThe day10/02/2012, the S/A Agulhas II left Antarctica direct to Cape Town, reached on 19/02/2012. 148 XBT (27 malfunctioning) were launched along the route (Figure 2) always at a resolution of 90 minutes (about 20 nautical miles) .\r\n</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/CA12-13_XXVIII_ItaEsp_SA_2.jpg\" /></div>\r\n<p align=\"center\">Fig. 2 Map of XBT launches in the period 11-19/12/2013 along the Antarctica-Cape Town transect (left) and temperature section relative to the layer 0-900m (right).</p>','','full_html'),('node','page',0,91,91,'und',0,'<h1 align= \"center\"><strong>CA 12-13 XXVIII Ita. Esp. New Zealand</strong></h1>\r\n\r\n</br>\r\n<p align=\"justify\">TThe R/V Araon left the harbor of Lyttelton (NZ) on 24/01/2012 at 09:00.\r\nXBT launches began on 25/01/2012 at 09:00, in correspondence of the 48th parallel south.\r\nXBT were launched every 0.25 Nm (about 1h10m of navigation time), for a total of 54 probes. The acquisition was interrupted to the parallel 54° 15\'due to bad sea weather conditions.\r\n\r\nOn 29/01/2012 at 03:00 taking advantage of the reduced speed of the ship to make measurements (magnetometry and CTD) it was possible to fix the launch system-acquisition position and then to start XBT operations at a latitude of 62°S, although intermittently. XBT operations lasted until ice presence imposed a final stop at 68.5°S.\r\n</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/CA12-13_XXVIII_ItaEsp_NZ_1.png\" /></div>\r\n<p align=\"center\">Figure 1: Map of XBT launches in the period 25/01-10/02/2012(left) and associated section of temperature relative to the layer 0-760m, from New Zealand to Antarctica (right).</p>\r\n<a href=\"http://www.pnra.it/biblioteca/docs/rapporti_campagna/CA12_13.pdf\">http://www.pnra.it/biblioteca/docs/rapporti_campagna/CA12_13.pdf</a>','','full_html'),('node','page',0,92,92,'und',0,'<h1 align= \"center\"><strong>CA 13-14 XXIX Ita. Esp.	New Zealand</strong></h1>\r\n</br>\r\n<p align=\"justify\">The R/V Italica left Lyttelton (NZ) at 19:30 of 29/12/2013 and arrived at MZS (Mario Zucchelli Station) approximately on 01/08/2014 at 11:30. \r\nThe launches of XBT probes (Sippican mod.T7, depth max 760 m) started on 30.12.2013 at 17:11 at latitude 48°S and ended on 03/01/2014 latitude 66°16\'S (Fig. 1).\r\nXBT activities were carried on also during the return trip from 16.02.2014 at 02.00 at about 69°S, to 02/19/2014 at 49.5°S.\r\nThe sampling resolution was 15 nautical miles during the first leg and 77 probes were used, while during the way back to New Zealand 57 probes were launched at a resolution of 20 nm.\r\nOnly a small percentage of probes showed operating problems due almost entirely to the contact of the copper cable conductor with the hull of the ship.\r\n</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/CA13-14_XXIX_ItaEsp_NZ_1.jpg\" /></div>\r\n<p align=\"center\">Fig 1: Map of XBT launches (left) and section of temperature relative to the layer 0-800m (right), from New Zealand to Antarctica in the period 30/12/2013-03/01/2014.</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/CA13-14_XXIX_ItaEsp_NZ_2.png\" /></div>\r\n<p align=\"center\">Fig. 2: Map of XBT launches (left) and temperature section 8right) from 16/02/2014 to 19/02/2014.</p>\r\n<a href=\"http://www.pnra.it/biblioteca/docs/rapporti_campagna/CA14.pdf\">http://www.pnra.it/biblioteca/docs/rapporti_campagna/CA14.pdf</a>','','full_html'),('node','page',0,93,93,'und',0,'<h1 align= \"center\"><strong>CA 14-15 XXX Ita. Esp. New Zeland</strong></h1>\r\n</br>\r\n<p align=\"justify\">XBT operations started a few hours after the departure from the harbor of Lyttelton (NZ) on 01/02/2015 at 47°59\'S/166° 45\'E and ended on 01/10/2015 at 73°13\'S 173°18\'E.\r\nActivities were carried on from ship Korean Araon. The release of 74 probes XBT occurred along the route illustrated in Figure 1, and it allowed to realize the temperature section at the spatial resolution of  about 10 Nm also thanks to the merging of XBT data with XCTD profiles.\r\n</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/CA14-15_XXX_ItaEsp_NZ_1.jpg\" /></div>\r\n<p align=\"center\">Figure 1 Map of XBT launches in the period 02-10/01/2015(left) and temperature section relative to the layer 0-800m, from New Zealand to Antarctica (right)</p>\r\n<p align=\"justify\">Italian studies on XBT data across the ACC started in 1994 and were carried on as part of several projects funded by PNRA, which have now a significant climatological significance both for the long period covering both the possible inter-connections with phenomena on a planetary scale. The measures are part of the XBT observations of the Antarctic Circumpolar Current solicited and regulated by the SOOS.\r\n</p>','','full_html'),('node','page',0,94,94,'und',0,'<h1 align=\"center\"><strong>INTERNATIONAL BACKGROUND</h1></strong>\r\n<p align=\"justify\">The international science community has long recognised the need for a coordinated and integrated approach to observing the Southern Ocean. Under the direction of the Scientific Committee for Oceanic Research (SCAR) and the Scientific Committee for Oceanic Research (SCOR), and with the input of the World Climate Research Programmes Climate and Cryosphere (CliC) and Climate Variability and Predictability (CLIVAR) projects, and the Partnership for Observation of the Global Oceans (POGO), the concept for the Southern Ocean Observing System was developed - SOOS. The SOOS International Project Office was officially opened in August 2011, hosted by the Institute for Marine and Antarctic Studies (IMAS) at the University of Tasmania, Australia.\r\nThe SOOS primary objective are design and implement a comprehensive and multidisciplinary observing system for the Southern Ocean for unify current observation efforts and leverage further resources and effectively integrate and coordinate national and international projects and programmes, across traditional disciplinary boundaries and between nations, so contribution of research vessels to the in-situ global ocean observing system is one example how one could break down the fallacious research-operational divide. Making oceanographic research observations fully and freely available in real time or so is a very difficult task, both technically and politically, but due to vast ocean space and relative scarceness of in-situ data, engagement of the oceanographic research community is a prerequisite for developing a comprehensive ocean observing system anywhere in the world oceans. This is especially true in the Southern Ocean with its unique and extreme challenges for in-situ measurements. Realistically, the Southern Ocean oceanographic research community is, and for many years will continue to be, both the primary provider and primary user of in-situ ocean data. Thus, incorporating research community products in the observing system, and simultaneously designing the system to help address research community hypotheses, will be absolutely critical in ensuring we can monitor the Southern Ocean.\r\nThe wealth of research observations in the Southern Ocean is broad. Observations have been carried out under the auspices of a number of major cooperative programs. The data provided by these programs is clearly an enormous contribution to our understanding of the Southern Ocean and as such, these data ought to be incorporated, whenever possible, as part of the observing system.</p>','','full_html'),('node','page',0,95,95,'und',0,'<h1 align=\"center\"><strong>INSTRUMENTATION</strong></h1> \r\n<p align=\"justify\">\r\nAn eXpendable BathyThermograph (XBT) is a probe that is dropped from a ship and measures the temperature as it falls through the water. A resistance in the head of the probe and a very thin twin-wire, connecting the probe to the equipment on the ship, compose the electronic circuit for measuring the water temperature. The probe is designed to fall at a known rate, so that the depth of the temperature profile can be inferred from the time since it enters the water.\r\nXBTs are valuable because they represent the largest fraction of the temperature profile observations since 1970s and until the fully implementation of Argo profiling floats in approximately 2007, measure the seasonal and inter-annual fluctuations in the transport of mass, heat, and freshwater across transects, which define large enclosed ocean areas, determine the long-term mean, seasonal cycle, and inter-annual fluctuations of temperature, geostrophic velocity and large-scale ocean circulation in the top 800 m of the ocean, provide long time-series of temperature profiles at approximately repeated locations in order to unambiguously separate temporal from spatial variability, determine the space-time variability of temperature and geostrophic shear fields and provide appropriate in situ data for testing ocean and ocean-atmosphere models.\r\n</p>','','full_html'),('node','page',0,96,96,'it',0,'<div><strong><a href=\"http://morsea.uniparthenope.it/?q=node/30\">a)  Monitoraggio della struttura termica sub superficiale dell\' Antarctic Circumpolar Current</a></strong></div>\r\n</br>\r\n<div><strong><a href=\"http://morsea.uniparthenope.it/?q=node/31\">b) Misure in continuo di temperatura e salinità superficiali</a></strong></div>\r\n</br>\r\n<div><strong><a href=\"http://morsea.uniparthenope.it/?q=node/32\">c) Misure lagrangiane tramite drifter e float</a></strong></div>\r\n','','full_html'),('node','page',0,98,98,'it',0,'<p>Nell’ultima spedizione del PNRA nel Mare di Ross (2013-14) sono stati recuperati e riposizionati tutti i mooring del progetto osservatorio marino “MORSea”. Di seguito è riportata la mappa del Mare di Ross con la localizzazione dei mooring e la loro composizione con le informazioni fondamentali.</p>\r\n<div><strong><a href=\"http://morsea.uniparthenope.it/?q=node/28\">Clicca QUI per avere maggiori dettagli sulle caratteristiche tecniche dei Moorings</a></strong></div>\r\n<div><strong><a href=\"https://www.google.com/maps/d/edit?mid=zbQQmJ6-SKww.kXWDxKLMktvM\">Clicca QUI per avere la mappa con la localizzazione attuale dei Moorings</a></strong></div>\r\n<div>&nbsp;</div>\r\n<div><img alt=\"\" src=\"/sites/default/files/MooringRossSea2014.png\" style=\"height:495px; width:660px\" /></div>\r\n','','full_html'),('node','page',0,99,99,'en',0,'<p align=\"justify\">The  <strong>MORSea</strong> (<em>Marine Observatory in the Ross Sea</em>), project funded by<a href=\"http://www.pnra.it/\"> P.N.R.A.</a>(<em>National Research Program in Antarctica</em>), focuses on the management of the marine observatory established since 1994 in the Ross Sea in the framework of CLIMA (Climatic Long-term Interaction for Mass balance in Antarctica p.i. G. Spezie) and ABIOCLEAR (<em>Antartic BIOgeochemical cycles-Climatic and. palEoclimAtic Recostructions</em> p.i. M. Ravaioli) projects. After the ending of these projects in 2010, the National Scientific Commission for Antarctica (<a href=\"http://www.csna.it/\">CSNA</a>) highlighted the importance of supporting activities connected to a network of four moorings in the Ross Sea. The moorings, previously named B, D, G and L, play an important role in the study of climate change and the interannual variability of the physical and biogeochemical processes in the water column.\r\nMooring activities have recently been associated to other oceanographic measurements conducted on the basis of the \"ship of opportunity\" concept. Measurements of sea surface temperature and salinity (SST and SSS respectively), launches of XBT and  XCTD probes, deployment of drifters and floats have been carried on without any need of additional ship-time.\r\nAll these activities were conducted up to 2009 in the framework of previous PNRA project as CLIMA and Southern Ocean Chokepoints Italian Contribution (SOChIC) and during last years have been introduced in the MORSea project in order to keep the continuity of the precious time series acquired since 1994\r\nIn Italy the project activities essentially concern the validation and analysis of the acquired data and the dissemination of scientific results achieved.</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/MooringRossSea2014.png\" style=\"height:495px; width:660px\" /></div>','','full_html'),('node','page',0,102,102,'en',0,'<div><img alt=\"\" src=\"/sites/default/files/B/2010/rcm9_1210_543m/rcm9_1210_543m_speed0.png\"/></div>','','full_html'),('node','page',0,103,103,'en',0,'<div><img alt=\"\" src=\"/sites/default/files/B/2010/sbe16_4494_533m/sbe16_4494_533m_T_lvl1.png\"/></div>\r\n<div><img alt=\"\" src=\"/sites/default/files/B/2010/sbe16_4494_533m/sbe16_4494_533m_Turb_lvl1.png\"/></div>','','full_html'),('node','page',0,104,104,'en',0,'<div><img alt=\"\" src=\"/sites/default/files/B/2010/sbe37_4118_280m/sbe37_4118_280m_T_lvl1.png\"/></div>\r\n<div><img alt=\"\" src=\"/sites/default/files/B/2010/sbe37_4118_280m/sbe37_4118_280m_Turb.png\"/></div>','','full_html'),('node','page',0,105,105,'en',0,'<div><img alt=\"\" src=\"/sites/default/files/B/2012/rcm7_9474_229m/rcm7_9474_229m_speed_lvl1.png\"/></div>','','full_html'),('node','page',0,106,106,'en',0,'<div><img alt=\"\" src=\"/sites/default/files/B/2012/sbe16_4494_500m/sbe16_4494_500m_S_lvl2.png\"/></div>\r\n<div><img alt=\"\" src=\"/sites/default/files/B/2012/sbe16_4494_500m/sbe16_4494_500m_SigmaT.png\"/></div>\r\n<div><img alt=\"\" src=\"/sites/default/files/B/2012/sbe16_4494_500m/sbe16_4494_500m_T.png\"/></div>\r\n<div><img alt=\"\" src=\"/sites/default/files/B/2012/sbe16_4494_500m/sbe16_4494_500m_Turb_lvl1.png\"/></div>','','full_html'),('node','page',0,107,107,'en',0,'<div><img alt=\"\" src=\"/sites/default/files/B/2012/sbe37_4118_228m/sbe37_4118_228m_T_lvl1.png\"/></div>','','full_html'),('node','page',0,108,108,'en',0,'<h1 align= \"center\"><strong>HOW FLOATS WORK</strong></h1>\r\n</br>\r\n<p align=\"justify\">The idea beneath the oceanographic use of deriving platform to sample the water column is to overpass limitation in sampling due to ship costs, sea-weather conditions, geographical limitations and ultimately the use of human resources. Nowadays floats offer the most cost-effective solution to this needs. The oceanographic data are collected by battery-powered autonomous floats that spend most of their life drifting at depth where they are stabilized by being neutrally buoyant at the \"parking depth\" pressure by having a density equal to the ambient pressure and a compressibility that is less than that of sea water.</p>\r\n<div align=\"center\"><img alt=\"\" src=\"/sites/default/files/argo_2.png\"/></div>\r\n<p align=\"center\"><strong>Figure 2. Scheme of the operation of the floats in the sea.</b></strong>\r\n<p align=\"justify\">At present there are several models of profiling float. All work in a similar fashion but differ somewhat in their design characteristics. At typically 10-day intervals, the floats pump fluid into an external bladder and rise to the surface over about 6 hours while measuring temperature and salinity. Satellites or GPS determine the position of the floats when they surface, and the floats transmit their data to the satellites. The bladder then deflates and the float returns to its original density and sinks to drift until the cycle is repeated. Floats are designed to make about 150 such cycles.</p>','','full_html'),('node','page',0,109,109,'en',0,'<h1 align= \"center\"><strong>ARGO</strong></h1>\r\n</br>\r\n<p align=\"justify\">The origins of ARGO (Array for Real-time Geostrophic Oceanography) can be found in the 1990-1997 World Ocean Circulation Experiment (WOCE). WOCE is part of the World Climate Research Programme (WCRP) and set out to collect an unprecedented set of observations.</p>\r\n<p align=\"justify\">The research program is based on the use of profiling floats that are battery-powered autonomous floats that spend most of their life drifting at depth. At typically 10-day intervals the floats pump rise to the surface while measuring temperature and salinity data that are then transmitted via satellite.</p>\r\n<p align=\"justify\">Float reliability has improved almost every year and the float lifetime has been extended. ARGO has developed a large user community in universities, government labs and meteorological/climate analysis/forecasting centers. The need for global ARGO observations will continue indefinitely into the future, though the technologies and design of the array will evolve as better instruments are built, models are improved, and more is learned about ocean variability.</p>\r\n<p align=\"justify\">ARGO deployments began in 2000 and by November 2007 the millionth profile was collected. Today, even with more than 3600 active floats, there are still some areas of the ocean that are over-populated while others have gaps that need to be filled with additional floats. Today\'s (July 2015) tally of floats is shown in the figure below. To maintain the ARGO array, national programs need to provide about 800 floats per year.</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/argo_1.png\"/></div>\r\n<p align=\"center\"><strong>Figure 1. Positions of the floats that have delivered data within the last 30 days.</b></strong>\r\n<p align=\"justify\">With over 3200 floats reporting free, ARGO provides a relevant, global ocean data set. The temperature, salinity and velocity data from ARGO can teach everything from basic concepts, like the temperature of the ocean and how to read graphs, to more complicated ones like analyzing ocean data over time and climate change issues.</p>\r\n<p align=\"justify\">More details can be found on the official ARGO web site: <a href=\"http://nettuno.ogs.trieste.it/sire/medargo/active/it_table_out.php?live=*\">http://nettuno.ogs.trieste.it/sire/medargo/active/it_table_out.php?live=*</a></p>','','full_html'),('node','page',0,110,110,'en',0,'<h1 align= \"center\"><strong>ARGO float activities in 2013</strong></h1>\r\n</br>\r\n<p align=\"justify\">The total effort of the 2013 consists in the deployment of 3 floats.</p>\r\n<p align=\"justify\">An Italian profiling float was deployed in the Ross Sea on 6 January 2013 from R/V Araon (South Korea). This float is an Arvor-I instrument manufactured by NKE in France. It is anchored and cycles between the surface and 1000 dbar every 1 day It measures temperature and salinity at each ascent, and transmits data to the Iridium satellite system when at surface where it is localized by GPS. This deployment in ice-free coastal Ross Sea in winter 2013 is part of the T-Rex experiment in collaboration with the KOPRI (Korea Polar Research Institute), and SOChIC (SouthernOcean ObservingSystem and ChokePoints: Italian Contribution).</p>\r\n<p align=\"justify\">The aim is to extend the time series of observations in the polynya using for the first time one ARGO Float anchored to 1100 m in depth (see diagram in figure 3) in such a way that have a profile per day of salinity and temperature of the entire water column from 1000 m depth to surface with a resolution of 20 m from 1000 to 500 m, 10 m from 500 to 250 m and 5 m from 250 m to surface.</p>\r\n<div align=\"center\"><img alt=\"\" src=\"/sites/default/files/argo_5.png\"/></div>\r\n<p align=\"center\"><strong>Figure 3. Diagram of float anchored at Terra Nova Bay.</b></strong>\r\n<p align=\"justify\">Unfortunately after 1 cycle this float encountered functioning problems and stopped transmitting data and only 29 profiles were obtained. In general, the reasons for theses failures are still unknown. They will be investigated in collaboration with the manufacturer NKE.</p>\r\n<p align=\"justify\">Two Italian profiling floats were deployed in the SO on 10 January 2013 from R/V Araon (South Korea).</p>\r\n<p align=\"justify\">The launch position established will allow ARGO Float to follow the path of the Antarctic Circumpolar Current and characterize the thermohaline structure, obviously as long as they will be working and will send data.</p>\r\n<p align=\"justify\">These floats are Arvor-I instruments manufactured by NKE in France. They cycle between the surface and 2000 dbar every 10 days and drift at the parking depth of 1000 dbar. They measure temperature and salinity at each ascent, and transmit data to the Iridium satellite system when at surface where it is localized by GPS. </p>\r\n<table align=\"center\">\r\n	<tbody>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Float model</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; text-align:center; font-weight: bold;\">Float WMO</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Deploy Date</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Lat</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Lon</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Arvor I - 2</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901813</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">06-Jan-2013 19:20</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-75.09</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">164.88</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Arvor I - 2</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901814</p>\r\n			</td> \r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">10-Jan-2013 07:55</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-61.5</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">178.67</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Arvor I - 2</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901815</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">10-Jan-2013 15:24</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-60</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">178.26</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n<p align=\"center\"><strong>Table 2 Status information for the 3 Italian floats in the SO during 2013. Updated positions, status and cycles number are available at  <a href=\"http://nettuno.ogs.trieste.it/sire/medargo/active/it_table_out.php?live=*\">http://nettuno.ogs.trieste.it/sire/medargo/active/it_table_out.php?live=*</a></b></strong></p>','','full_html'),('node','page',0,111,111,'en',0,'<h1 align= \"center\"><strong>ARGO float activities in 2014</strong></h1>\r\n</br>\r\n<p align=\"justify\">During 2014, 7 floats were deployed by ARGO -ITALY in the SO.</p>\r\n<p align=\"justify\">Five Italian profiling floats were deployed in the SO between 30 December 2013 and 3 January 2014 from R/V Italica in order to sample water column characteristics in the Antarctic circumpolar Current.</p>\r\n<p align=\"justify\">These floats are Apex instruments manufactured by Teledyne Webb Research in the USA. They cycle between the surface and 2000 dbar every 10 days and drift at the parking depth of 1000 dbar. They measure temperature and salinity at each ascent, and transmit data to the ARGO’s satellite system when at surface. Their position is also estimated by the ARGO’s system. Unfortunately, two of the floats did not function properly due to a software problem.</p>\r\n<p align=\"justify\">One float was deployed in the Ross Sea on 11 January 2014 from R/V Italica. This float is an Arvor-L instrument manufactured by NKE in France which measures temperature and salinity at each ascent, and transmits data to the ARGO’s satellite system when at surface. Its position is also estimated by the ARGO’s system. This float was anchored and was supposed to cycle between the surface and 1000 dbar every 1 day . This deployment in ice-free coastal Ross Sea in winter 2014 is part of the T-Rex experiment. Unfortunately, the float stopped transmitting just after deployment.</p>\r\n<p align=\"justify\">An additional profiling float was deployed in correspondence of the ACC streamlines on 15 February 2014 from R/V Italica . This float is an Provor-CTS2 instrument manufactured by NKE in France which measures temperature and salinity at each ascent, and transmits data to the ARGO’s satellite system when at surface. Its position is also estimated by the ARGO’s system. Unfortunately, this float malfunctioned and drifted at the surface without executing profiles.</p>\r\n<table align=\"center\">\r\n	<tbody>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Float model</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; text-align:center; font-weight: bold;\">WMO</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Deploy Date</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Lat</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Lon</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Apex</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901856</p>\r\n			</td>\r\n                       <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">30-Dec-2013 18:48</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-51</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">175.74</p>\r\n			</td> \r\n		</tr>\r\n\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Apex</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901850</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">01-Jan-2014 19:24</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-60.98</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-177.6</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Apex</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901849</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">02-Jan-2014 07:59</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-62.98</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-176.01</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Apex</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901855</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">02-Jan-2014 21:33</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-65</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-176.08</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Apex</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901857</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">02-Jan-2014 22:55</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-58.95</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-178.9</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Arvor L</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901853</p>\r\n			</td> \r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">11-Jan-2014 00:50</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-75.16</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-164.46</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Provor</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901854</p>\r\n			</td> \r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">15-Feb-2014 06:30</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-67.52</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">178.99</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n<p align=\"center\"><strong>Table 3 Status information for the 7 Italian floats deployed in the SO and Ross Sea during 2014. Updated positions, status and cycles number are available at  <a href=\"http://nettuno.ogs.trieste.it/sire/medargo/active/it_table_out.php?live=* \">http://nettuno.ogs.trieste.it/sire/medargo/active/it_table_out.php?live=* </a></b></strong></p>\r\n<p align=\"justify\">In the SO, the Apex floats WMO 6901849 and WMO 6901855 were incorrectly programmed and did not stay at the surface enough time to transmit their data via the ARGO’s satellite system. As a result, float WMO 6901849 provided only 19 incomplete profiles (out of 37 cycles) and no data were obtained from float WMO 6901855. The problem was discussed with Teledyne Webb Research but there was nothing that we could do to solve the problem since the floats were at sea and ARGO’s telemetry does not allow downlink commands.</p>\r\n<p align=\"justify\">The Provor CTS 2 WMO 6901854 which was refurbished by NKE apparently went into “end of mission” mode just after deployment and stayed at surface without profiling until 11 May 2014.</p>\r\n<p align=\"justify\">Unfortunately, float WMO 6901853, which was tethered to act as a virtual mooring in Ross Sea had transmission/floatation problems and never transmitted data.</p>','','full_html'),('node','page',0,112,112,'en',0,'<h1 align= \"center\"><strong>ARGO float activities in 2015</strong></h1>\r\n</br>\r\n<p align=\"justify\">During 2015, 10 floats and 10 drifters were deployed by ARGO -ITALY in the SO.</p>\r\n<p align=\"justify\">The program of the launches along the route of the ship Araon from Cristhchurch to Terra Nova Bay, in correspondence with the main fronts of the ACC, predicted launching simultaneously a float and a drifter. Five Apex and five Arvor-I floats were deployed in the SO from the polar R/V Araon in the period 3-6 January 2015. </p>\r\n<table align=\"center\">\r\n	<tbody>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Float model</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; text-align:center; font-weight: bold;\">Float WMO</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Drifter model</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Drifter WMO</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Deploy Date</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Lat</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Lon</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Apex</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901875</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">SVP</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">300234061363990</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">03-Jan-2015 02:27</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-51.01</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">163.01</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Arvor</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901843</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">SVP</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">300234062818740</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">03-Jan-2015 06:50</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-52.01</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">163.18</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Arvor</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901841</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">SVP</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">300234062831810</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">03-Jan-2015 11:05</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-53.01</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">163.05</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Arvor</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901840</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">SVP</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">300234061396460</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">03-Jan-2015 20:50</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-55</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">162.85</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Apex</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901871</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">SVP</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">300234062831750</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">04-Jan-2015 00:00</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-56</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">162.79</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Apex</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901872</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">SVP</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">300234062830780</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">04-Jan-2015 09:29</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-58.01</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">162.69</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Apex</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901873</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">SVP</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">300234061399590</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">04-Jan-2015 19:47</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-60.01</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">162.59</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Apex</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901874</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">SVP</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">300234062832730</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">06-Jan-2015 01:14</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-61.01</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">157.31</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Arvor</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901842</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">SVP</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">300234062832740</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">06-Jan-2015 09:42</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-62</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">158.48</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Arvor</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901838</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">SVP</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">300234062832780</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">06-Jan-2015 18:16</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-63</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">159.69</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n<p align=\"center\"><strong>Status information for the 10 Italian floats an drifters deployed in the SO and Ross Sea during 2015. Updated positions, status and cycles number are available at <a href=\"http://nettuno.ogs.trieste.it/sire/medargo/active/it_table_out.php?live=*\">http://nettuno.ogs.trieste.it/sire/medargo/active/it_table_out.php?live=*</a> for floats and <a href=\"http://nettuno.ogs.trieste.it/sire/drifter_italy.php?active=0\">http://nettuno.ogs.trieste.it/sire/drifter_italy.php?active=0</a> for drifters</b></strong></p>\r\n<p align=\"justify\">The 10 floats are programmed to cycle every 10 days with parking depth at 1000 dbar. They measure temperature and salinity at each ascent, and transmit data to the ARGO’s or Iridium satellite system when at surface.</p>\r\n<p align=\"justify\">Currently for the reference site of ARGO-ITALY, the floats and drifters made during the last Antarctic campaign are given to the following locations:</p>\r\n<div align=\"center\"><img alt=\"\" src=\"/sites/default/files/argo_4.png\"/></div>\r\n<p align=\"center\"><strong>Position  of drifters deployed during last campaign. Actual position available at http://nettuno.ogs.trieste.it/jungo/argoitaly/floats.html</b></strong>\r\n<div align=\"center\"><img alt=\"\" src=\"/sites/default/files/argo_3.png\"/></div>\r\n<p align=\"center\"><strong>Position  of floats deployed during last campaign. Actual position available at http://nettuno.ogs.trieste.it/jungo/argoitaly/drifters.html</b></strong>','','full_html'),('node','page',0,113,113,'it',0,'<form method=\"post\" action=\"/sites/all/themes/multipurpose/mooring.php\">\r\n<fieldset>\r\n <legend>Seleziona il mooring</legend>\r\n <input type=\"checkbox\" name=\"mooring\" value=\"L\"> mooring L\r\n</br>\r\n<input type=\"checkbox\" name=\"mooring\" value=\"G\"> mooring G\r\n</br>\r\n<input type=\"checkbox\" name=\"mooring\" value=\"D\"> mooring D\r\n</br>\r\n<input type=\"checkbox\" name=\"mooring\" value=\"B\"> mooring B\r\n</fieldset>\r\n<fieldset>\r\n <legend>Seleziona il periodo</legend>\r\n <input type=\"checkbox\" name=\"anno\" value=\"2012\"> 2010-2012\r\n</br>\r\n<input type=\"checkbox\" name=\"anno\" value=\"2014\"> 2012-2014\r\n</fieldset>\r\n<input type=\"submit\" name=\"submit\" value=\"invia\">\r\n</form>','','full_html'),('node','page',0,119,119,'it',0,'<h1 align=\"center\">Moorings 2014-2016 (Deployed 2014)</h1>\r\n<table align=\"center\">\r\n	<tbody>\r\n<tr>			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/22\" target=\"_blank\">Mooring L</a></td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/23\" target=\"_blank\">Mooring G</a></td>\r\n\r\n		</tr>\r\n<tr>			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/24\" target=\"_blank\">Mooring D</a></td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/21\" target=\"_blank\">Mooring B</a></td>\r\n\r\n		</tr>\r\n\r\n	</tbody>\r\n</table>\r\n<h1 align=\"center\">Moorings 2012-2014 (Deployed 2012)</h1>\r\n<table align=\"center\">\r\n	<tbody>\r\n<tr>			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/26\" target=\"_blank\">Mooring L</a></td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/36\" target=\"_blank\">Mooring G</a></td>\r\n\r\n		</tr>\r\n<tr>			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/35\" target=\"_blank\">Mooring D</a></td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/34\" target=\"_blank\">Mooring B</a></td>\r\n\r\n		</tr>\r\n\r\n	</tbody>\r\n</table>\r\n<h1 align=\"center\">Moorings 2010-2012 (Deployed 2010)</h1>\r\n<table align=\"center\">\r\n	<tbody>\r\n<tr>			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/115\" target=\"_blank\">Mooring L</a></td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/117\" target=\"_blank\">Mooring G</a></td>\r\n\r\n		</tr>\r\n<tr>			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/118\" target=\"_blank\">Mooring D</a></td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/116\" target=\"_blank\">Mooring B</a></td>\r\n\r\n		</tr>\r\n\r\n	</tbody>\r\n</table>','','full_html'),('node','page',0,124,124,'en',0,'<h1 align= \"center\"><strong>Rapporto sulla Campagna Antartica (estratto)</strong></h1>\r\n\r\n<h2 align=\"center\"><strong>Estate Australe 2015-2016</strong></h2>\r\n\r\n<h3 align=\"center\"><strong>Trentunesima Spedizione (PNRA XXXI)</strong></h3>\r\n\r\n<p align=\"center\"><strong>Progetto 2009/B.09: Osservatorio Marino Nel Mare di Ross ( MORSea)</strong><br />\r\n<em>G. Budillon, A. De Alteris, G. Zambardino</em></p>\r\n\r\n<p align=\"justify\">Le attività a bordo (descritte nel seguito in Universal Time Coordinated - UTC) del progetto MORSea (http://morsea.uniparthenope.it) sono state principalmente focalizzate al mantenimento della rete di osservazioni marine attualmente esistente nel Mare di Ross. L’obiettivo primario dell’osservatorio è quello di fornire un sostanziale contributo al monitoraggio della variabilità interannuale delle caratteristiche fisiche e geochimiche delle acque di shelf nel settore occidentale del Mare di Ross.\r\nL’osservatorio è attualmente costituito da 4 catene correntometriche (mooring) contrassegnate dalle lettere “B”, “D”, “G” e “L”.\r\nA queste attività si sono aggiunte anche le misure di “ship of opportunity” effettuate senza interferire con i tempi di navigazione della M/N Italica. In particolare quest’anno sono state eseguite misure di temperatura e salinità superficiale del mare (SST e SSS rispettivamente), lanci di XBT per la misura della struttura subsuperficiale dell’Oceano Meridionale; lanci di drifter e float (nell’ambito della collaborazione con il progetto ARGOItaly). Queste attività, svolte in passato da progetti non più attivi del PNRA (CLIMA e SOChIC), sono state condotte al fine di non interrompere le preziose serie temporali acquisite dal 1994 considerata la valenza ormai “climatica” di queste informazioni.\r\nAnche quest’anno non è stato possibile acquisire nuova strumentazione, fatta eccezione per un nuovo correntometro Aanderaa Seaguard ed una sonda SBE SMP ODO, per cui i sensori riposizionati sono stati sostanzialmente quelli degli anni precedenti che, in diversi casi, risalgono a oltre 20 anni fa. Il materiale di consumo e di ricambio per le trappole di sedimento è stato fornito: dal dott. M. Capello (Univ. di Genova) per i mooring “D” e “L” (2 trappole), dal dott. L. Langone (CNR – ISMAR) per il mooring “B” (1 trappola). Le attività di recupero, ricondizionamento, scarico dei dati e rimessa a mare sono state effettuate in simbiosi con il gruppo di Oceanografia Fisica (Dr. P.Falco e M. De Stefano).\r\nIn occasione della sosta in base del 4 febbraio (UTC) si è provveduto anche a recuperare la catena correntometrica posizionato dalla NIWA su un fondale di 516 m a circa 3 miglia a est di MZS.\r\nCome tradizione, sono state effettuate calate di CTD/LADCP - per la verifica e taratura dei sensori posizionati sulle catene correntometriche - prima del loro recupero e dopo il loro posizionamento.\r\nNel seguito vengono descritte le attività svolte su ogni catena correntometrica ed in tabella TM1 viene riportato la scheda riassuntiva dei periodi di funzionamento di ogni strumento.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “B”</strong><br />\r\nIl mooring “B” è stato recuperato il 24 gennaio e rimesso in mare il 27 gennaio 2016.\r\nIl recupero del mooring secondo la normale procedura di sgancio ha dato esito negativo, nonostante entrambi gli sganciatori avessero confermato l’avvenuto sgancio e la loro posizione verticale.\r\nGrazie alla collaborazione del gruppo EchoSurvey, è stato effettuato un passaggio sulla posizione del mooring rilevando tutta la struttura, sia nella parte di fondo sia superiore, avendo conferma in questo modo della sua effettiva integrità e posizione verticale.\r\nIn analogia con quanto effettuato nella XXIX spedizione, il mooring è stato recuperato filando da poppa una coppia di divergenti sostenuti da circa 500 metri di cavo d’acciaio e collegati tra loro da cime di kevlar di circa 250 metri, appesantite da una catena. Al primo tentativo il mooring è stato incocciato e recuperato a bordo senza eccessivi problemi.\r\nDopo la manutenzione del caso, la catena correntometrica è stata riposizionata nella configurazione riportata in figura M1, sostanzialmente analoga al precedente periodo ma aumentando la spinta di galleggiamento.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “G”</strong><br />\r\nIl mooring “G” è stato recuperato il 28 gennaio e rimesso in mare il 30 gennaio 2016.\r\nEntrambe le operazioni si svolte senza particolari problemi: il recupero con ottime condizioni meteo mentre il riposizionamento con mare forza 4-5.\r\nLa configurazione del mooring riposizionato è stata modificata inserendo una nuova quota di misura a circa 250 me di profondità (v. figura M3) costituita da un correntometro e una sonda SBE per la misura di T&C.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “D”</strong><br />\r\nIl mooring “D” è stato recuperato il 31 gennaio e rimesso in mare il 6 febbraio 2016.\r\nEffettuata l’ordinaria manutenzione della strumentazione, il mooring “D” è stato rimesso in posizione nella configurazione illustrata in figura M2, rispetto alla precedente risultano: 1) aggiunta al fondo una sonda SBE per la misura di T&C dotata di sensore di ossigeno, 2) eliminata una trappola per sedimenti a causa della rottura di un motore.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “L”</strong><br />\r\nIl mooring “L” è stato recuperato il 1° febbraio e rimesso in mare il 9 febbraio 2016.\r\nLa configurazione del mooring riposizionato è riportata in figura M4.\r\nIn tabella TM1 vengono elencate le informazioni principali sul funzionamento della strumentazione alloggiata sui mooring nel periodo 2014-16, tenendo conto che:\r\n- le profondità [m] si riferiscono agli schemi della campagna 2013-2014;\r\n- gli intervalli riportati si riferiscono al periodo effettivo di misura valida in acqua e alla profondità indicata nella prima colonna.</p>\r\n\r\n<p align=\"justify\"><strong>Misure in continuo di temperatura e salinità superficiale</strong><br />\r\nDurante tutta la campagna è stata misurata la temperatura e salinità superficiale del mare (SST –Sea Surface Temperature; SSS – Sea Surface Salinity) utilizzando la presa d’acqua a circa 4 metri di profondità. L’attività è stata condotta in stretta simbiosi con il gruppo di Oceanografia Fisica.\r\nL’attività di misura in continuo è iniziata il 17 gennaio 2016 ed è continuata sino al ritorno in Nuova Zelanda (22 febbraio 2016). Per queste misure sono stati impiegati tre sensori (due di temperatura ed uno di conducibilità) gestiti dal sistema SBE-21 ed un GPS Garmin, l’intervallo di acquisizione è stato di 30”. I dati hanno subìto un primo processamento a bordo per l’eliminazione dei picchi dovuti sostanzialmente al rollio della nave e alla presenza di ghiacci.\r\nDi particolare interesse sono i dati acquisiti durante le due traversate oceaniche (andata e ritorno) tra Nuova Zelanda e Mare di Ross, i dati acquisiti hanno permesso di determinare le posizioni dei fronti termoalini che in questa zona separano aree a dinamica diversa. In fase di analisi del data set saranno valutate eventuali possibilità di utilizzo dei dati acquisiti per cal/val di misure satellitari.\r\nLe misure di SST e SSS rappresentano quelle osservazioni ricorrenti della Antarctic Circumpolar Current sollecitate e regolate dal SOOS (Southern Ocean Observing System, http://www.soos.aq/).\r\n\r\n<p align=\"justify\"><strong>Misure XBT</strong><br />\r\nI lanci di sonde XBT (SIPPICAN mod.T7, prof. max 760 m) sono iniziati il 17 gennaio alla latitudine 48°S e sono terminati il 21 gennaio latitudine di 70°S; l\'intervallo di campionamento è stato, come in passato, di 15 miglia nautiche e sono state utilizzate 89 sonde durante il viaggio tra la Nuova Zelanda e il Mare di Ross; solo una piccolissima percentuale delle sonde utilizzate ha mostrato problemi di funzionamento dovuti quasi esclusivamente al contatto del cavo conduttore in rame con lo scafo della nave.\r\nI dati hanno subìto un primo processamento a bordo per eliminare valori spuri, i primi metri influenzati dall’inerzia termica del sensore e gli eventuali dati affetti dalla presenza del fondo. In figura 3 è riportata la sezione in temperatura dello strato sub-superficiale fino alla profondità massima di 700 m.\r\nTali indagini, iniziate nel 1994, sono state portate avanti nell’ambito di diversi progetti PNRA e hanno oramai una valenza climatologica rilevante sia per il lungo periodo che coprono, sia per le possibili inter-connessioni con fenomeni a scala planetaria. Le misure XBT rappresentano quelle osservazioni ricorrenti della Antarctic Circumpolar Current sollecitate e regolate dal SOOS (Southern Ocean Observing System).\r\nUna breve sezione XBT è stata effettuata anche in corrispondenza del mooring G in occasione di una linea condotta dall’echosurvey ed in concomitanza con il recupero del mooring stesso. In Figura 4 è rappresentata la sezione verticale ottenuta aggiungendo alle misure XBT, il profilo di temperatura misurato prima del recupero del mooring G.\r\n<p ALIGN=\"center\"><a href=\" \"><img alt=\"\" src=\"/sites/all/themes/multipurpose/images/fig_XXXI.png\" width=\"600px\" /></a></p>\r\n<p align=\"justify\"><strong>Figura 1. Sezione verticale della distribuzione della temperatura misurata dal 17 al 21 gennaio 2016 (raw data).</strong></p>\r\n\r\n<p align=\"justify\"><strong>Floats</strong><br />\r\nDurante il viaggio di andata sono stati rilasciati in mare 10 floats e 10 drifters. Queste attività rientrano nella collaborazione con il progetto ARGOItaly che ha fornito le sonde utilizzate (http://nettuno.ogs.trieste.it/jungo/argoitaly/floats.html) che rappresenta il contributo italiano ad un più ampio programma di monitoraggio globale degli oceani.\r\nI floats sono sonde automatizzate che, rilasciate in mare, si muovono in maniera “lagrangiana” (trasportata dalle correnti marine) ad una profondità predeterminata. Ad intervalli regolari la sonda sale in superficie misurando le proprietà termoaline che poi vengono trasmesse via satellite al centro di raccolta dati. Il ciclo tipico dei float utilizzati in questa occasione prevede una “parking depth” a 1000 metri, ad intervalli di 10 giorni il float è programmato per immergersi sino a 2000 metri e poi di risalire in superficie per eseguire il profilo di temperatura e salinità e per la trasmissione dei dati acquisiti. I float utilizzati nel progetto, in particolare, hanno un sistema di comunicazione satellitare bi-direzionale (Iridium, per i modelli APEX e Argos per i modelli Arvor e Provor) per poter modificare a distanza i parametri di missione.\r\nI drifters sono sonde che rimangono in superficie e anche esse si muovono in maniera “lagrangiana” trasmettendo in tempo reale le posizioni ed il valore di temperatura superficiale. I lanci dei drifters e dei float è avvenuto sostanzialmente in simultanea.\r\n','','full_html'),('node','page',0,125,125,'it',0,'<h1 align=\"center\"><strong>Rapporto sulla Campagna Antartica (estratto)</strong></h1>\r\n\r\n<h2 align=\"center\"><strong>Estate Australe 2013-2014</strong></h2>\r\n\r\n<h3 align=\"center\"><strong>Ventinovesima Spedizione (PNRA XXIX)</strong></h3>\r\n\r\n<p align=\"center\"><strong>Progetto 2009/B.09: Osservatorio Marino nel Mare di Ross. Resp. G. Spezie</strong><br />\r\n<em>G. Budillon, P. Falco, P. Penna</em></p>\r\n\r\n<p align=\"justify\">Il Progetto MORSea è sostanzialmente relativo alla attività di mantenimento della rete di osservazioni marine attualmente esistente nel Mare di Ross. L’obiettivo primario dell’osservatorio è quello di fornire un sostanziale contributo al monitoraggio della variabilità interannuale delle caratteristiche fisiche e geochimiche delle acque di shelf nel settore occidentale del Mare di Ross.\r\nL’osservatorio è attualmente costituito da 4 catene correntometriche (mooring) contrassegnate dalle lettere “B”, “D”, “G” e “L”. Il Progetto si occupa del mantenimento dei mooring esistenti e, possibilmente, di potenziare la strumentazione attualmente alloggiata sulla base anche di accordi e collaborazioni con progetti italiani e stranieri.\r\nA queste attività si sono aggiunte anche le misure di ship of opportunity effettuate senza interferire con i tempi di navigazione della nave Italica. In particolare quest’anno sono state eseguite misure di temperatura e salinità superficiale del mare (SST e SSS rispettivamente), lanci di XBT per la misura della struttura subsuperficiale dell’Oceano Meridionale e lanci di float (questi ultimi nell’ambito della collaborazione con il progetto ARGOItaly). Queste attività, svolte in passato da progetti non più attivi del PNRA (CLIMA e SOChIC), sono state condotte al fine di non interrompere le preziose serie temporali acquisite dal 1994, considerata la valenza ormai “climatica” di queste informazioni.\r\nIn attesa della attribuzione dei fondi per le attività di progetto, anche quest’anno le indispensabili acquisizioni di materiale di consumo (zinchi, batterie, …), marinaresco (boe di spinta, cavi, maniglioni, …) sono state eseguite anticipando le spese su dotazioni economiche non PNRA. In questo contesto non è stato possibile quindi acquisire nuovi strumenti per questa spedizione e, in buona sostanza, la strumentazione rimessa a mare è stata la stessa di quella degli anni precedenti che, in alcuni casi, risale a oltre 15 anni fa. Il materiale di consumo e di ricambio per le trappole di sedimento è stato fornito: dal dott. M. Capello (Univ. di Genova) per i mooring “D” e “L” (3 trappole), dal dott. L. Langone (CNR – ISMAR) per il mooring “B” (1 trappola). Quest’ultimo ha inoltre curato a bordo la conservazione dei campioni acquisiti, la programmazione dei motori, ed in generale il ricondizionamento delle trappole di sedimento per il successivo riposizionamento in mare.\r\nCome specificato nel seguito (se non specificato diversamente gli orari e le date sono in tempo locale – LT), il recupero di due mooring (“B” e “L”) ha visto la preziosa collaborazione del gruppo EchoSurvey (CNR-ISMAR, Ancona) che ha messo a disposizione la strumentazione da pesca (divergenti) e ha partecipato attivamente alle operazioni.\r\nCome tradizione, sono state effettuate calate di CTD/LADCP - per la verifica e taratura dei sensori posizionati sulle catene correntometriche - prima e dopo il loro recupero e posizionamento; le misure sono state eseguite in collaborazione con l’U.O. “Idrologia” del progetto RoME.\r\nNel seguito vengono descritte le attività svolte su ogni catena correntometrica e in tabella I viene riportato la scheda riassuntiva.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “B”</strong><br />\r\nIl mooring “B” è stato recuperato il 29 gennaio e rimesso in mare il 31 gennaio 2014.\r\nUn primo tentativo di recupero è stato effettuato il 6 gennaio 2014 durante l’avvicinamento della nave Italica verso la Base MZS in considerazione delle buone condizioni meteo marine. Nonostante tutte le operazioni fossero state eseguite con successo, sia quelle propedeutiche allo sgancio (wake up dello sganciatore, calcolo della distanza), sia lo sgancio stesso (con la regolare ricezione del segnale di conferma di avvenuto sgancio e posizione verticale di entrambi gli sganciatori), il mooring non è risalito in superficie. Dopo alcune ore di ulteriori tentativi e prove, constatata l’impossibilità di poter effettuare altre operazioni e la urgenza di raggiungere MZS, è stato deciso di abbandonare la zona posticipando altri tentativi di recupero. Grazie alla collaborazione del gruppo EchoSurvey, è stato effettuato un passaggio sulla posizione del mooring rilevando tutta la struttura, sia nella parte di fondo sia superiore, avendo conferma in questo modo della sua effettiva integrità e posizione verticale.\r\nUn secondo tentativo è stato effettuato il giorno 12 gennaio 2014. Ritornati sul posto è stata verificata nuovamente la piena funzionalità di entrambi gli sganciatori che rispondevano regolarmente alle interrogazioni con il segnale di avvenuto sgancio e posizione verticale, nonostante ciò il mooring non risaliva in superficie. Al fine di tentare il recupero del mooring è stata messa in mare una struttura a “U” composta alle due estremità verticali da una boa superficiale sostenente una cima di circa 150 metri appesantita da una catena, entrambe collegate in profondità da una cima orizzontale di circa 250 metri. Questa struttura è stata filata in mare dalla nave Italica a monte della corrente predominante ed è stato atteso il tempo necessario a far derivare la struttura sulla posizione del mooring. Al secondo tentativo il mooring è stato infatti “incocciato”: le boe superficiali, distanti tra loro circa 250 metri, hanno modificato la traiettoria di deriva avvicinandosi tra loro. Dopo circa mezz’ora la nave ha quindi operato per rampinare entrambe le boe e ha iniziato il recupero da poppa. Purtroppo durante questa fase si è notato che le cime andavano in bando testimoniando la perdita di aggancio con il mooring. Non è stato possibile ripetere ulteriori prove per le condizioni del mare; verificata ancora una volta la posizione del mooring, è stato deciso di rimandare nuovamente un ulteriore tentativo di recupero.\r\nIl mooring è stato recuperato il 29 gennaio 2014 operando in stretta collaborazione con il gruppo EchoSurvey presente a bordo (Giovanni Canduci e Giordano Giuliani) che ha messo a disposizione i divergenti e la propria professionalità. Verificata ancora una volta la posizione del mooring, sono stati filati da poppa i divergenti sostenuti da circa 500 metri di cavo d’acciaio e collegati tra loro da cime di kevlar di circa 500 metri, appesantite da una catena. Al secondo tentativo il mooring è stato incocciato e recuperato a bordo senza eccessivi problemi.\r\nL’esame della strumentazione recuperata ha evidenziato una anomala presenza di fouling sulla strumentazione profonda (e non su quella più superficiale) che risultava particolarmente intensa sugli sganciatori e ne aveva impedito lo sgancio, nonostante il meccanismo di svincolo avesse perfettamente funzionato.\r\nDopo la manutenzione del caso, la catena correntometrica è stata riposizionata.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “D”</strong><br />\r\nIl mooring “D” è stato recuperato il 12 gennaio e rimesso in mare il 21 gennaio 2014.\r\nDurante la XXVIII (2011-12) Spedizione il mooring era stato posizionato in mare incrementando il payload e prolungando la sua estensione sino a circa 124 m dalla superficie con la strumentazione fornita dal progetto “2010/A4.01” (sensori termoalini e un profilatore acustico). Per evitare possibili perdite di tutto il mooring, era stato deciso di collegare la parte inferiore con quella superiore (aggiunta per il progetto “2010/A4.01”) mediante un anello debole che avrebbe ceduto in caso di impatto con iceberg.\r\nIl recupero del mooring è stato effettuato in ottime condizioni meteo marine senza però rinvenire la parte superiore relativa al progetto “2010/A4.01”.\r\nA differenza di quanto evidenziato per il mooring “B”, non sono state rinvenute presenze anomale di fouling.\r\nEffettuata l’ordinaria manutenzione della strumentazione, il mooring “D” è stato rimesso in posizione.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “G”</strong><br />\r\nIl mooring “G” è stato recuperato il 23 gennaio e rimesso in mare il 26 gennaio 2014.\r\nEntrambe le operazioni si svolte senza particolari problemi in condizioni meteo marine accettabili. La configurazione del mooring riposizionato.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “L”</strong><br />\r\nIl mooring “L” è stato recuperato il 5 febbraio e rimesso in mare l’8 febbraio 2014.\r\nUn primo tentativo di recupero è stato effettuato l’11 gennaio, durante le operazioni di sbarco del materiale presso MZS, a bordo dell’Icebjorn. La risposta dello sganciatore alle interrogazioni con il modulo di sgancio a bordo dell’Icebjorn è sempre stata frammentaria e poco intellegibile. Analogo risultato si è ottenuto con il modulo di sgancio di rispetto a bordo della Italica. L’Italica ha quindi effettuato un passaggio sul punto teorico per rilevarlo con gli ecoscandagli del gruppo EchoSurvey, in questa indagine è stata identificata solo la strumentazione in prossimità del fondo.\r\nDurante le attività marine in Base, il battello Malippo ha effettuato un passaggio sulla posizione del mooring rilevandolo con l’ecoscandaglio di bordo e verificandone la posizione verticale.\r\nIn seguito a questa informazione è stato deciso di effettuare il recupero secondo le modalità già sperimentate in occasione del recupero del mooring “B” in collaborazione con il gruppo EchoSurvey. Il mooring è stato “incocciato” al primo tentativo l’8 febbraio ed è stato recuperato completamente integro.</p>\r\n\r\n<p align=\"justify\"><strong>Ringraziamenti:</strong><br />\r\nE’ doveroso un sentito ringraziamento:<br />\r\n- al gruppo EchoSurvey (CNR-ISMAR, Ancona) per la entusiastica collaborazione in fase di programmazione e di esecuzione delle operazioni di recupero dei mooring “B” e “L”, nonché per aver messo a disposizione parte della attrezzatura propria;<br />\r\n- al dott. Capello per l’assistenza in Italia e al dott. Langone per l’assistenza in Italia e a bordo nella manutenzione delle trappole di sedimento;<br />\r\n- a tutti coloro che hanno collaborato ai lanci degli XBT (G. Bruzzone, D. Cotterle, M. De Stefano, R. Geletti, G. Zambardino).<br />\r\n- al personale di bordo e del PNRA per l’assistenza continua e per aver coadiuvato con grande professionalità nelle operazioni marinaresche a poppa in occasione del recupero e messa a mare delle catene correntometriche, anche in condizioni meteo marine non facili.</p>\r\n','','full_html'),('node','page',0,126,126,'it',0,'<h1 align= \"center\"><strong>Rapporto sulla Campagna Antartica (estratto)</strong></h1>\r\n\r\n<h2 align=\"center\"><strong>Estate Australe 2011-2012</strong></h2>\r\n\r\n<h3 align=\"center\"><strong>Ventisettesima Spedizione (PNRA XXVII)</strong></h3>\r\n\r\n<p align=\"center\"><strong>Progetto 2009/B.09: Osservatorio Marino Nel Mare di Ross ( MORSea)</strong><br />\r\n<em>E. Paschini, P. Penna, G. Spezie</em></p>\r\n\r\n<p align=\"justify\">Il Progetto MORSea è relativo alla sola attività di mantenimento della rete di osservazioni marine attualmente esistente nel Mare di Ross. L’obiettivo primario della rete è quello di fornire un sostanziale contributo al monitoraggio della variabilità interannuale delle caratteristiche termoaline delle acque di shelf nel settore occidentale del Mare di Ross.\r\nL’osservatorio è costituito da 4 mooring contrassegnati dalle lettere B, D, G e L. Il Progetto si occupa del mantenimento dei mooring esistenti e, possibilmente, di potenziare la strumentazione attualmente alloggiata sulla base anche di accordi e collaborazioni con progetti italiani e stranieri.\r\nPer la Campagna 2011-12 la responsabilità delle operazioni è stata affidata a Elio Paschini del CNR – ISMAR Sezione di Ancona, coadiuvato da Pierluigi Penna dello stesso Istituto e in collaborazione con G. Budillon e P.P. Falco del Progetto T-REx, presenti a bordo.\r\nSi riporta, di seguito, la sintesi delle attività svolte, redatta da Elio Paschini.\r\nLa preparazione alla crociera é stata affrettata e senza finanziamenti. Siamo stati invitati a partecipare alla 27a Spedizione alla fine dell’estate 2011 ed avvertiti che bisognava far fronte alle spese vive anticipando con fondi propri.\r\nSono stati subito presi contatti con l’Istituto NURC della Nato di La Spezia per avere un certo numero di correntometri uguali a quelli in uso in Antartide. Questo, allo scopo di avere degli strumenti di riserva e soprattutto per abbreviare i tempi tra il recupero ed il successivo lancio dei mooring. Il NURC ci ha gentilmente prestato 6 correntometri Aanderaa RCM7, tutti dotati di sensore di pressione da 1000psi (600 metri di range) e 3 memorie da 64K byte. Tali strumenti sono stati testati in laboratorio e sottoposti ad una prova di durata, facendoli funzionare con un intervallo di misura di 5 minuti durante il viaggio dell’Italica. dall’Italia alla NZ. Alla fine solo 5 sono stati considerati validi e 4 di questi sono ora in uso nel Mare di Ross. .\r\nInutile ricordare che un rinnovo del parco strumenti é necessario. Stiamo utilizzando gli scarti degli istituti di ricerca ricchi per le ricerche (povere) in Antartide.\r\nPrima della partenza dei materiali, é stata fatta riparare e testare da un laboratorio elettronico di nostra fiducia, l’unità di sgancio EG&G mod 8011B dichiarata irriparabile dall’importatore. Nell’occasione é stato allungato il cavo del trasduttore di circa 20 m, constatando che il segnale veniva degradato soltanto del 10%.\r\nAl nostro arrivo in Nuova Zelanda abbiamo apprezzato il giorno e mezzo trascorso in porto, per approntare il laboratorio e predisporre la nostra attrezzatura per un pronto intervento.\r\nDurante questa campagna sono state usate le seguenti innovazioni rispetto al passato:\r\n<ol>\r\n<li align=\"justify\">Il trasduttore é stato posto in un V-fin, che ha permesso di eseguire le operazioni di avvicinamento e sgancio anche con nave in manovra a bassa velocità: fino a 5-6 nodi. Questa innovazione sarebbe risultata ancor più utile se si fosse dovuto eseguire una ricerca/inseguimento di un mooring vagante. Dato che il cavo ora é lungo 30 metri: l’unità di sgancio é stata portata in plancia, e da lì sono state effettuate le operazioni in stretta interazione con il comando della nave ed al caldo del ponte.</li>\r\n<li align=\"justify\">In fase di recupero si é fatto largo uso della bozza cortissima (due metri) e nodo Prusik direttamente sul cavo di ormeggio. Questo ha permesso maggiore sicurezza e velocità nelle operazioni. Molti sbirri da un metro sono stati recuperati e riposizionati in posti più utili.</li>\r\n<li align=\"justify\">Nel rilascio della zavorra é stato finalmente usato un congegno acquistato per questo scopo almeno 10 anni fà. Il nuovo sistema ha convinto tutti per semplicità e sicurezza. Lo stesso attrezzo é stato usato per la messa a mare dei componenti pesanti (trappole e coppie di sgancia tori).</li>\r\n<li align=\"justify\">Dove é stato possibile, sono state eliminate tutte le parti metalliche. Le boe di vetro OCEANO sono ora legate ad uno spezzone di kevlar, che ne facilita il trasporto ed elimina la corrosione. Con lo stesso sistema sono state collegate a coppia le boe NAUTILUS.</li>\r\n</ol>\r\n</p>\r\n<p align=\"justify\">Nella riunione preparatoria della campagna, tenutasi a Roma presso la sede ENEA, si era deciso che gli strumenti del Progetto Picco sarebbero stati aggiunti in cima al mooring D con un punto debole di circa 300kg di rottura. Questo per non compromettere tutto il mooring in caso di collisione con un iceberg nella parte superficiale della catena di strumenti. Durante le operazioni di lancio il punto debole é stato elevato a 500kg per la possibilità di strappi nella fase di lancio.\r\nLa U.O. ha prestato assistenza preziosa alla campagna. Il CTD utilizzato durante tutta la campagna é stato quello PNRA assegnato a questa U.O. e portato come riserva. Come pure il convertitore USB a quattro porte seriali ed un altro convertitore USB-seriale, usato per il lanciatore XBT. Un convertitore USB per dischi SATA é stato prestato al servizio informatico della nave. É stato fornito il segnale GPS al lanciatore XBT e Penna é entrato nei turni di lancio delle sonde XBT. Il controllo del funzionamento della misura automatica di CO2 ed il prelievo di 9 campioni di aria per la U.O. Ori é stato curato da questa U.O..\r\nLa U.O. stà compilando un modulo di crociera internazionale standardizzato (CSR) contenente i metadati di tutte le U.O. coinvolte direttamente o indirettamente nella campagna, che sarà inviato alla banca dati europea SEA-DATA-NET.\r\nEntrambi i correntometri Aanderaa RCM9 hanno mostrato di non essere adatti a temperature così fredde per tempi così prolungati in acqua: entrambi sono risultati allagati. Il modello RCM7 sebbene più vecchio si é dimostrato più robusto. La perdita di dati nel secondo anno di misura, riscontrata in ogni strumento é dovuto alla infelice scelta di lasciare l’intervallo di campionamento a mezzora, invece di spostarlo ad un ora.</p>\r\n\r\n<p align=\"justify\"><strong>Tentativo di recupero del Mooring L vecchio (2008)</strong>\r\nÉ stato possibile effettuare tentativi di recupero in tre giorni distinti, ma nonostante questo il mooring é ancora lì. Sappiamo solo che é ancora integro e conosciamo più precisamente la sua posizione. Ovviamente abbiamo interrogato lo sganciatore, che non ha mai risposto. Sarebbe lungo descrivere dettagliatamente tutti i tentativi effettuati e le tecniche utilizzate. Possiamo dire che il metodo di incoccio con una una barra di cavo in kevlar posta a 60 metri di profondità e lunga 160, trascinata dalla corrente verso il mooring é risultata la più efficace. Ha incocciato il cavo del mooring 4 volte su 5 tentativi. Purtroppo non avevamo esperienza con mooring dotati di trappole.\r\nGuardando lo schema del mooring si capisce che incocciamo il cavo sotto alla trappola per sedimenti, che non rappresenta un buon punto di aggancio come per esempio il correntometro RCM7. Se il correntometro fosse stato sotto la trappola, come negli altri mooring il recupero era cosa fatta.\r\nCi auguriamo che durante la prossima spedizione, il personale della Base, opportunamente istruito, sia in grado di tentare il recupero. Ormai dopo 4-5 anni di permanenza in mare, la corrosione ha già intaccato la struttura della trappola che é il punto più debole del mooring. Ogni anno in più diminuisce la probabilità di recuperarlo.</p>','','full_html'),('node','page',0,127,127,'it',0,'<h1 align= \"center\"><strong>Italian field activities in the Pacific Sector of the ACC</strong></h1>\r\n<h2 align=\"center\"><strong>Austral Summer 2014-2015</strong></h2>\r\n<h3 align=\"center\"><strong>30th Italian Expedition in Antarctica (PNRA XXX)</strong></h3>\r\n</br>\r\n<p align=\"justify\">The absence of continental barriers across the latitude band of Drake Passage permits an Antarctic Circumpolar Current (ACC) to flow and act as the primary driver for inter-basin exchanges. Due to its important climate impact, the ACC band is an area of high interest, especially since global ocean temperatures have been shown to increase in the last. Hydrographic observations are thus important as they aid the description and understanding of the processes which occur within the Southern Ocean and across the ACC. \r\nThe oceanographic Italian field activities in the Southern Ocean during Austral summer 2014-15 will be carried on in the framework of the MORSea project (http://morsea.uniparthenope.it/, founded by the Italian PNRA - National Program for Antarctic Research) and they will be focused on the in situ monitoring of the Pacific Sector of the ACC - between New Zealand and the Ross Sea - by means of XBT, floats, and drifters. Two Italian scientists of University of Napoli “Parthenope” will be host onboard of the South Korean R/V Araon in the framework of the collaboration between Italian PNRA and KOPRI (Korea Polar Research Institute).</p>\r\nThree main actions will be undertaken during the cruise:\r\n•	collection of in situ temperature data in the layer 0-800m;\r\n•	release of 10 SVP2 surface drifters;\r\n•	deployment of 10 ARVOR and PROVOR floats.\r\n<p align=\"justify\">Main focus of the cruise is the continuation of the about twenty year-long time series of temperature data along the endurance line New Zealand - Antarctica. Since 1994 in situ temperature data of the surface layer of the southern ocean have been collected in the framework of the Italian CLIMA and SOChIC projects. Up to 2013, 25 transects between New Zealand and the Ross Sea have been realized by the R/V Italica mainly in January and February (figure 1) collecting SST, SSS, XBT and XCTD data.\r\nDuring Austral summer 2014/2015 field activities will increase and preserve the importance of the large dataset collected since 1994 and will represent also a significant contribution to the Italian deployment of lagrangian platforms in the latitude band of the ACC with a grand total of 20 drifting platforms (10 floats and 10 surface drifters) provided by the ARGO-Italy program (http://argoitaly.ogs.trieste.it/).</p>\r\n<p ALIGN=\"center\"><a href=\" \"><img alt=\"\" src=\"/sites/all/themes/multipurpose/images/fig1.png\" width=\"500px\" /></a></p>\r\n \r\n<p align=\"justify\"><strong>Figure 1. Transects of XBT casts relating to the CLIMA/SOChIC/MORSea programmes (black dots) from 1994 to 2013. Underlying bathymetry (meters below sea level) is indicated by color shading.</b></strong>\r\n\r\n<p align=\"justify\">Temperature data are usually collected using Sippican T7 probes providing temperature profiles with a vertical resolution of 65 cm and a maximum nominal depth of 760 m. A regular 20 km sampling rate is adopted with increased sampling frequency over the main frontal regions of the ACC. Transects are usually performed in 5 days providing a synoptic picture of the thermal structure of the upper SO in this sector.\r\nSurface data related to temperature, salinity, chlorophyll and – more recently – other bio-geochemical tracers, as well as atmospheric data and CO2 atmospheric partial pressure, are usually collected by the R/V Italica along the entire transect while drifters and floats are released in correspondence of the main ACC fronts.\r\nSince 2009 the location of ACC fronts in this sector is also monitored on the basis of satellite altimetry data (SSH), in order to provide indications to sea-going staff on the position of fronts and also to study the variability of ACC fronts during the entire year and observe their modification during any eventual eddy shedding event.\r\nIn our data set the Polar Front (PF) positions (figure 2) are characterized by the minimum (northest position) value of 60.2°S reached during November 1994. The mean position of the PF is slightly southern (61.7°S) than previous estimation (61.5°S) from Budillon and Rintoul [2003], while the standard deviation (0.9°) remains unchanged. Figure 2 also shows the presence of isolated latitude band associated to the PF_SSH values not linked to any in situ front position. These isolated signals, often characterized by a very small latitudinal extension, can be due to the presence of water masses with the same physical properties of PF water in an unusual northern position. The explanation for the northern migration of water with PF characteristics can be linked to the presence of eddies detaching from the PF and moving northward to the Sub Antarctic Front.</p>\r\n <p ALIGN=\"center\"><a href=\" \"><img alt=\"\" src=\"/sites/all/themes/multipurpose/images/fig2.png\" width=\"500px\" /></a></p>\r\n<p align=\"justify\"><strong>Figure 2. Positions of the PF during the CLIMA/SOChIC/MORSea cruises from 1994 to 2010. Black line represents the mean latitude of front from in situ data, gray vertical bars represent the along track-latitude bands where fronts are detected using altimetry values (from Cotroneo et al. 2013).</strong></p>','','full_html'),('node','page',0,128,128,'it',0,'<h1 align= \"center\"><strong>Rapporto sulla Campagna Antartica (estratto)</strong></h1>\r\n\r\n<h2 align=\"center\"><strong>Estate Australe 2015-2016</strong></h2>\r\n\r\n<h3 align=\"center\"><strong>Trentunesima Spedizione (PNRA XXXI)</strong></h3>\r\n\r\n<p align=\"center\"><strong>Progetto 2009/B.09: Osservatorio Marino Nel Mare di Ross ( MORSea)</strong><br />\r\n<em>G. Budillon, A. De Alteris, G. Zambardino</em></p>\r\n\r\n<p align=\"justify\">Le attività a bordo (descritte nel seguito in Universal Time Coordinated - UTC) del progetto MORSea (http://morsea.uniparthenope.it) sono state principalmente focalizzate al mantenimento della rete di osservazioni marine attualmente esistente nel Mare di Ross. L’obiettivo primario dell’osservatorio è quello di fornire un sostanziale contributo al monitoraggio della variabilità interannuale delle caratteristiche fisiche e geochimiche delle acque di shelf nel settore occidentale del Mare di Ross.\r\nL’osservatorio è attualmente costituito da 4 catene correntometriche (mooring) contrassegnate dalle lettere “B”, “D”, “G” e “L”.\r\nA queste attività si sono aggiunte anche le misure di “ship of opportunity” effettuate senza interferire con i tempi di navigazione della M/N Italica. In particolare quest’anno sono state eseguite misure di temperatura e salinità superficiale del mare (SST e SSS rispettivamente), lanci di XBT per la misura della struttura subsuperficiale dell’Oceano Meridionale; lanci di drifter e float (nell’ambito della collaborazione con il progetto ARGOItaly). Queste attività, svolte in passato da progetti non più attivi del PNRA (CLIMA e SOChIC), sono state condotte al fine di non interrompere le preziose serie temporali acquisite dal 1994 considerata la valenza ormai “climatica” di queste informazioni.\r\nAnche quest’anno non è stato possibile acquisire nuova strumentazione, fatta eccezione per un nuovo correntometro Aanderaa Seaguard ed una sonda SBE SMP ODO, per cui i sensori riposizionati sono stati sostanzialmente quelli degli anni precedenti che, in diversi casi, risalgono a oltre 20 anni fa. Il materiale di consumo e di ricambio per le trappole di sedimento è stato fornito: dal dott. M. Capello (Univ. di Genova) per i mooring “D” e “L” (2 trappole), dal dott. L. Langone (CNR – ISMAR) per il mooring “B” (1 trappola). Le attività di recupero, ricondizionamento, scarico dei dati e rimessa a mare sono state effettuate in simbiosi con il gruppo di Oceanografia Fisica (Dr. P.Falco e M. De Stefano).\r\nIn occasione della sosta in base del 4 febbraio (UTC) si è provveduto anche a recuperare la catena correntometrica posizionato dalla NIWA su un fondale di 516 m a circa 3 miglia a est di MZS.\r\nCome tradizione, sono state effettuate calate di CTD/LADCP - per la verifica e taratura dei sensori posizionati sulle catene correntometriche - prima del loro recupero e dopo il loro posizionamento.\r\nNel seguito vengono descritte le attività svolte su ogni catena correntometrica ed in tabella TM1 viene riportato la scheda riassuntiva dei periodi di funzionamento di ogni strumento.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “B”</strong><br />\r\nIl mooring “B” è stato recuperato il 24 gennaio e rimesso in mare il 27 gennaio 2016.\r\nIl recupero del mooring secondo la normale procedura di sgancio ha dato esito negativo, nonostante entrambi gli sganciatori avessero confermato l’avvenuto sgancio e la loro posizione verticale.\r\nGrazie alla collaborazione del gruppo EchoSurvey, è stato effettuato un passaggio sulla posizione del mooring rilevando tutta la struttura, sia nella parte di fondo sia superiore, avendo conferma in questo modo della sua effettiva integrità e posizione verticale.\r\nIn analogia con quanto effettuato nella XXIX spedizione, il mooring è stato recuperato filando da poppa una coppia di divergenti sostenuti da circa 500 metri di cavo d’acciaio e collegati tra loro da cime di kevlar di circa 250 metri, appesantite da una catena. Al primo tentativo il mooring è stato incocciato e recuperato a bordo senza eccessivi problemi.\r\nDopo la manutenzione del caso, la catena correntometrica è stata riposizionata nella configurazione riportata in figura M1, sostanzialmente analoga al precedente periodo ma aumentando la spinta di galleggiamento.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “G”</strong><br />\r\nIl mooring “G” è stato recuperato il 28 gennaio e rimesso in mare il 30 gennaio 2016.\r\nEntrambe le operazioni si svolte senza particolari problemi: il recupero con ottime condizioni meteo mentre il riposizionamento con mare forza 4-5.\r\nLa configurazione del mooring riposizionato è stata modificata inserendo una nuova quota di misura a circa 250 me di profondità (v. figura M3) costituita da un correntometro e una sonda SBE per la misura di T&C.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “D”</strong><br />\r\nIl mooring “D” è stato recuperato il 31 gennaio e rimesso in mare il 6 febbraio 2016.\r\nEffettuata l’ordinaria manutenzione della strumentazione, il mooring “D” è stato rimesso in posizione nella configurazione illustrata in figura M2, rispetto alla precedente risultano: 1) aggiunta al fondo una sonda SBE per la misura di T&C dotata di sensore di ossigeno, 2) eliminata una trappola per sedimenti a causa della rottura di un motore.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “L”</strong><br />\r\nIl mooring “L” è stato recuperato il 1° febbraio e rimesso in mare il 9 febbraio 2016.\r\nLa configurazione del mooring riposizionato è riportata in figura M4.\r\nIn tabella TM1 vengono elencate le informazioni principali sul funzionamento della strumentazione alloggiata sui mooring nel periodo 2014-16, tenendo conto che:\r\n- le profondità [m] si riferiscono agli schemi della campagna 2013-2014;\r\n- gli intervalli riportati si riferiscono al periodo effettivo di misura valida in acqua e alla profondità indicata nella prima colonna.</p>\r\n\r\n<p align=\"justify\"><strong>Misure in continuo di temperatura e salinità superficiale</strong><br />\r\nDurante tutta la campagna è stata misurata la temperatura e salinità superficiale del mare (SST –Sea Surface Temperature; SSS – Sea Surface Salinity) utilizzando la presa d’acqua a circa 4 metri di profondità. L’attività è stata condotta in stretta simbiosi con il gruppo di Oceanografia Fisica.\r\nL’attività di misura in continuo è iniziata il 17 gennaio 2016 ed è continuata sino al ritorno in Nuova Zelanda (22 febbraio 2016). Per queste misure sono stati impiegati tre sensori (due di temperatura ed uno di conducibilità) gestiti dal sistema SBE-21 ed un GPS Garmin, l’intervallo di acquisizione è stato di 30”. I dati hanno subìto un primo processamento a bordo per l’eliminazione dei picchi dovuti sostanzialmente al rollio della nave e alla presenza di ghiacci.\r\nDi particolare interesse sono i dati acquisiti durante le due traversate oceaniche (andata e ritorno) tra Nuova Zelanda e Mare di Ross, i dati acquisiti hanno permesso di determinare le posizioni dei fronti termoalini che in questa zona separano aree a dinamica diversa. In fase di analisi del data set saranno valutate eventuali possibilità di utilizzo dei dati acquisiti per cal/val di misure satellitari.\r\nLe misure di SST e SSS rappresentano quelle osservazioni ricorrenti della Antarctic Circumpolar Current sollecitate e regolate dal SOOS (Southern Ocean Observing System, http://www.soos.aq/).\r\n\r\n<p align=\"justify\"><strong>Misure XBT</strong><br />\r\nI lanci di sonde XBT (SIPPICAN mod.T7, prof. max 760 m) sono iniziati il 17 gennaio alla latitudine 48°S e sono terminati il 21 gennaio latitudine di 70°S; l\'intervallo di campionamento è stato, come in passato, di 15 miglia nautiche e sono state utilizzate 89 sonde durante il viaggio tra la Nuova Zelanda e il Mare di Ross; solo una piccolissima percentuale delle sonde utilizzate ha mostrato problemi di funzionamento dovuti quasi esclusivamente al contatto del cavo conduttore in rame con lo scafo della nave.\r\nI dati hanno subìto un primo processamento a bordo per eliminare valori spuri, i primi metri influenzati dall’inerzia termica del sensore e gli eventuali dati affetti dalla presenza del fondo. In figura 3 è riportata la sezione in temperatura dello strato sub-superficiale fino alla profondità massima di 700 m.\r\nTali indagini, iniziate nel 1994, sono state portate avanti nell’ambito di diversi progetti PNRA e hanno oramai una valenza climatologica rilevante sia per il lungo periodo che coprono, sia per le possibili inter-connessioni con fenomeni a scala planetaria. Le misure XBT rappresentano quelle osservazioni ricorrenti della Antarctic Circumpolar Current sollecitate e regolate dal SOOS (Southern Ocean Observing System).\r\nUna breve sezione XBT è stata effettuata anche in corrispondenza del mooring G in occasione di una linea condotta dall’echosurvey ed in concomitanza con il recupero del mooring stesso. In Figura 4 è rappresentata la sezione verticale ottenuta aggiungendo alle misure XBT, il profilo di temperatura misurato prima del recupero del mooring G.\r\n<p ALIGN=\"center\"><a href=\" \"><img alt=\"\" src=\"/sites/all/themes/multipurpose/images/fig_XXXI.png\" width=\"600px\" /></a></p>\r\n<p align=\"justify\"><strong>Figura 1. Sezione verticale della distribuzione della temperatura misurata dal 17 al 21 gennaio 2016 (raw data).</strong></p>\r\n','','full_html'),('node','page',0,129,129,'en',0,'<h1 align= \"center\"><strong>Rapporto sulla Campagna Antartica (estratto)</strong></h1>\r\n\r\n<h2 align=\"center\"><strong>Estate Australe 2016-2017</strong></h2>\r\n\r\n<h3 align=\"center\"><strong>Trentduesima Spedizione (PNRA XXXII)</strong></h3>\r\n\r\n<p align=\"center\"><strong>Progetto 2009/B.09: Osservatorio Marino Nel Mare di Ross ( MORSea)</strong><br />\r\n<em>A. De Alteris, P. Falco, F. Grilli, G. Zambardino</em></p>\r\n\r\n<p align=\"justify\">Il progetto MORSea (http://morsea.uniparthenope.it) prevede la gestione e la manutenzione della rete di osservazioni marine attualmente esistente nel Mare di Ross. L’osservatorio è costituito da 4 catene correntometriche (mooring) contrassegnate dalle lettere “B”, “D”, “G” e “L”. Ogni punto di misura ha degli obiettivi specifici legati alla circolazione delle masse d’acqua che si generano sulla piattaforma e a quelle entranti attraverso il limite della scarpata continentale. In generale però l’obiettivo primario dell’osservatorio è quello di studiare la variabilità interannuale delle caratteristiche fisiche e geochimiche delle acque di shelf nel settore occidentale del Mare di Ross.\r\nA queste attività, negli ultimi anni si sono aggiunte delle misure di “ship of opportunity” effettuate quindi non impiegando tempo di navigazione della M/N Italica. Anche quest’anno infatti sono state eseguite misure di temperatura e salinità superficiale del mare (SST e SSS rispettivamente), lanci di XBT per la misura della struttura subsuperficiale dell’Oceano Meridionale; lanci di drifter e float (nell’ambito della collaborazione con il progetto ARGOItaly). In particolare le misure XBT hanno lo scopo essenziale di proseguire la serie storica di osservazioni, condotte durante la traversata dalla Nuova Zelanda fino al mare di Ross, realizzate al fine di caratterizzare la struttura della colonna d’acqua, fino alla profondità di 700 m, della Corrente Circumpolare Antartica (ACC), misure acquisite sin dal 1994.\r\nRelativamente all’attività dei mooring è da sottolineare che quest’anno è stato fatto un primo tentativo di svecchiamento della strumentazione utilizzata per le misure. In particolare, per quanto riguarda il mooring D, sono stati acquistati due nuovi sganciatori IXBLUE OCEANO 2500 che hanno sostituito i due precedenti ormai in cattive condizioni, è stato sostituito un vecchio correntometro RCM 7 con un nuovo correntometro Aanderaa Seaguard e aggiunta una sonda SBE 37 SMP al posto di un vecchio misuratore di temperatura SBE 39.\r\nInoltre, sul mooring G è stata aggiunta una sonda SBE 37 SMP ODO sul fondo. Ad ogni modo la percentuale di strumenti che, in diversi casi, risalgono a oltre 20 anni fa, è ancora decisamente prevalente per cui è auspicabile, quanto necessario, che questo primo tentativo di rinnovamento della strumentazione continui in futuro.\r\nIl materiale di consumo e di ricambio per le trappole di sedimento è stato fornito: dal dott. M. Capello (Univ. di Genova) per i mooring “D” e “L” (2 trappole), dal dott. L. Langone (CNR – ISMAR) per il mooring “B” (1 trappola). Sfortunatamente, il motore della trappola del mooring L ha mostrato malfunzionamenti non risolvibili a bordo per cui, non disponendo di un motore sostitutivo, è stato impossibile rimetterla in mare.\r\nLe attività di recupero e rimessa a mare sono state effettuate in simbiosi con il gruppo di Oceanografia Fisica (Dr. P. Castango e M. De Stefano) e con il contributo del Dr. L. Langone.\r\nDa prassi ormai consolidata, sono state effettuate calate di CTD/LADCP - per la verifica e taratura dei sensori posizionati sulle catene correntometriche - prima del loro recupero e dopo il loro posizionamento. Proprio durante la stazione di calibrazione avvenuta prima del recupero del mooring G, a causa di un violento urto del frame contenente la sensoristica per le misure, alcuni sensori, compresa la sonda principale SBE 9 plus, hanno riportato danni che hanno impedito il loro utilizzo nel prosieguo della campagna. Oltre alla sonda, anche il sensore di O2 e due sensori di temperatura e uno di conducibiltà della sonda MicroRider 1000 (anch’essa montata sul frame) sono risultati non funzionanti ed è stata necessaria la sostituzione con i sensori di rispetto.\r\nNel seguito vengono descritte le attività svolte su ogni catena correntometrica ed in tabella TM1 viene riportata la scheda riassuntiva dei periodi di funzionamento di ogni strumento. Tutti le date e gli orari sono riportati in UTC.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “D”</strong><br />\r\nIl mooring “D” è stato recuperato l’8 gennaio 2017 e rimesso in mare il giorno 11 febbraio 2017. Il comportamento degli sganciatori è risultato anomalo. Gli strumenti funzionano, sono cioè in grado di operare lo sgancio, ma non hanno dato alcuna informazione riguardo il loro stato e non rispondono ai codici di enable e disable. Tale comportamento era già stato evidenziato durante il precedente recupero. Considerando l’età degli strumenti e l’importanza del mooring si è deciso di acquistare due nuovi sganciatori e di sostituire quindi i vecchi.\r\nL’ordinaria manutenzione della strumentazione presente non ha mostrato particolari criticità se non nel caso della sonda di SBE37 SMP ODO acquistata pochi mesi prima della XXXI campagna e aggiunta al mooring. La sonda ha interrotto l’acquisizione dopo circa 5 mesi dal posizionamento per cause non bene chiarite nemmeno dalla casa costruttrice contattata tramite il rappresentante italiano. Dopo vari test di funzionamento svolti a bordo e d’accordo con la casa costruttrice, si è deciso di utilizzarla nuovamente.\r\nIl mooring “D” è stato rimesso in posizione nella configurazione illustrata in figura M2. Rispetto alla precedente configurazione, è stato sostituito un correntometro Aanderaa RCM 7 alla quota di circa 880 m con un Aanderaa SeaGuard e al posto di una sonda SBE 39 è stato usato un SBE 37 SMP, quindi con misura anche di pressione e salinità alla quota di circa 750 m. Infine è stata sostituita la coppia di sganciatori per i quali è necessaria una manutenzione prima di un eventuale riutilizzo, e al loro posto è stata montata una coppia di sganciatori nuovi della IXBLUE.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “L”</strong><br />\r\nIl mooring “L” è stato recuperato il 10 gennaio 2017 e rimesso in mare il 22 gennaio successivo.\r\nDurante la manutenzione della trappola di sedimento si sono riscontrate anomalie di funzionamento del motore che regola lo scorrimento delle bottigliette che raccolgono il sedimento. Non è stato possibile intervenire per riparare il guasto e tanto meno sostituire il motore in quando non disponibile uno di ricambio. Si è pertanto dovuto optare per la rimozione momentanea dal mooring della trappola. I problemi di recupero manifestati durante le spedizioni del 2013/14 e 2015/16, sono stati superati dall’aggiunta (eseguita la scorsa campagna oceanografica) di ulteriori boe di spinta che hanno consentito un risalita corretta di tutta la struttura. La configurazione del mooring riposizionato è riportata in figura M4.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “B”</strong><br />\r\nIl mooring “B” è stato recuperato il 17 gennaio e rimesso in mare il 30 gennaio 2017.\r\nIl recupero di questo mooring, che nelle ultime due spedizioni era risultato particolarmente complicato, quest’anno è avvenuto in modo regolare. Anche in questo caso l’aggiunta di ulteriori spinte decise durante la campagna della XXXI spedizione, è risultata determinante al fine di un corretto recupero. Rimangono perplessità riguardo alle cause che non hanno consentito a tutta la struttura di venire a galla spontaneamente nelle precedenti occasioni di recupero. Per verificare l’efficacia delle spinte sono state eseguite prove di galleggiabilità di tutti i gruppi boa presenti sul mooring, applicando un peso pari alla spinta nominale della boa e filando in acqua tutto per verificarne il comportamento. In tutti i casi le boe hanno sostenuto il peso dimostrando di essere ancora efficienti.\r\nAd ogni modo, onde evitare problemi in futuro, si è deciso di applicare un’ulteriore boa di spinta da 25 kg (tipo Vitrovex) nel settore immediatamente superiore alla trappola di sedimento presente alla quota di 460 metri. Dopo la manutenzione del caso, la catena correntometrica è stata riposizionata nella configurazione riportata in figura M1, sostanzialmente analoga al precedente periodo, ma aumentando la spinta di galleggiamento.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “G”</strong><br />\r\nIl mooring “G” è stato recuperato il 06 febbraio e rimesso in mare 09/02/2016.\r\nL’operazione di recupero, anche se condotta con mare 4/5, è stata eseguita in modo rapido e corretto (inizio ascolto ore 00:47 del 6/02, sganciatore a bordo ore 01:53 del 6/02). La manutenzione della strumentazione (come per i mooring precedenti) non ha messo in evidenza alcuna criticità sia dal punto di vista dell’integrità della strumentazione che del processo di acquisizione dati.\r\nAl fine di ottenere informazioni più mirate riguardo il transito della HSSW sul fondo nella zona di G, è stata aggiunta al mooring, nel suo settore più profondo, una sonda SBE 37 SMP ODO. Da riscontri fatti in rapporti di attività precedenti, si è rilevato che già in passato era presente una sonda simile e quindi si è pensato di ripristinare questa importante quota di misura dei parametri di T ed S aggiungendo però il parametro O2.\r\nLa configurazione del mooring riposizionato è riportata in figura M3.\r\nIn tabella TM1 vengono elencate le informazioni principali sul funzionamento della strumentazione alloggiata sui mooring nel periodo 2016-17, tenendo conto che:\r\n- le profondità [m] si riferiscono agli schemi della campagna 2015-2016;\r\n- gli intervalli riportati si riferiscono al periodo effettivo di misura valida in acqua e alla profondità indicata nella prima colonna.</p>\r\n\r\n<p align=\"justify\"><strong>Misure in continuo di temperatura e salinità superficiale</strong><br />\r\nDurante tutta la campagna si sono misurate la temperatura e la salinità superficiale del mare (SST – Sea Surface Temperature; SSS – Sea Surface Salinity) utilizzando la presa d’acqua a circa 4 metri di profondità. L’attività è stata condotta con il gruppo di Oceanografia Fisica.\r\nL’attività di misura in continuo è iniziata il 30 dicembre 2016, appena lasciato il fiordo di Lyttleton, ed è continuata sino al ritorno in Nuova Zelanda. Per queste misure sono stati impiegati tre sensori (due di temperatura e uno di conducibilità) gestiti dal sistema SBE-21 e un GPS Garmin; l’intervallo di acquisizione è stato di 30”. I dati hanno subìto un primo processamento a bordo per l’eliminazione dei picchi dovuti sostanzialmente al rollio della nave e alla presenza di ghiacci.\r\nDi particolare interesse sono i dati acquisiti durante le due traversate oceaniche tra Nuova Zelanda e Mare di Ross (andata e ritorno, non mostrati) in quanto permetteranno di determinare le posizioni dei fronti termoalini in superficie che in questa zona separano le zone a dinamica diversa della ACC. Questi dati risultano molto utili se integrati con i dati XBT e inoltre rappresentano la verità mare per validazioni di modelli e misure satellitari.\r\nAnche le misure di SST e SSS, come quelle con gli XBT, rappresentano quelle osservazioni ricorrenti della Antarctic Circumpolar Current sollecitate e regolate dal SOOS (Southern Ocean Observing System, http://www.soos.aq/).</p>\r\n\r\n<p align=\"justify\"><strong>Misure XBT</strong><br />\r\nI lanci di sonde XBT (SIPPICAN mod.T7, prof. max 760 m) sono iniziati il 31 dicembre 2016 alla latitudine 48°S e sono terminati il 05 gennaio 2017 alla latitudine di 68°46’S; la distanza tra ogni punto di campionamento è statao, come in passato, di 15 miglia nautiche e sono state utilizzate 90 sonde lungo la rotta seguita per entrare nel Mare di Ross; solo 3 di 90 sonde hanno mostrato problemi di funzionamento dovuti quasi esclusivamente al contatto del cavo conduttore in rame con lo scafo della nave.\r\nI dati hanno subìto un primo processamento a bordo per eliminare i valori spuri, i primi metri influenzati dall’inerzia termica del sensore e gli eventuali dati affetti dalla presenza del fondo. In figura 3 è riportata la sezione in temperatura dello strato sub-superficiale fino alla profondità massima di 700 m.\r\nLe misure XBT rappresentano quelle osservazioni ricorrenti della Antarctic Circumpolar Current sollecitate e regolate dal SOOS (Southern Ocean Observing System). Considerando che tali indagini sono iniziate nel 1994, portate avanti nell’ambito di diversi progetti PNRA, si può ritenere assodata la valenza a scala climatologica dato il lungo periodo che coprono.\r\nDurante il viaggio di ritorno, avendo disponibili ancora 6 sonde XBT, si è pensato di eseguire lanci a 15’ di latitudine di distanza per cercare di osservare il limite meridionale di intrusione di MCDW lungo la costa occidentale del mare di Ross. La latitudine di partenza dei lanci è stata 73°30’S e si è giunti fino a 72°15’S. I lanci sono cominciati il 14/02/2017 alle ore 23.30 circa e terminati il giorno 15/02/2017 alle ore 5.00 circa.\r\n<p ALIGN=\"center\"><a href=\" \"><img alt=\"\" src=\"/sites/all/themes/multipurpose/images/fig_XXXII.png\" width=\"600px\" /></a></p>\r\n<p align=\"justify\"><strong>Figura 1. Sezione verticale della distribuzione della temperatura misurata dal 31/12/2016 al 05/01/2017 (raw data).</strong></p>\r\n\r\n<p align=\"justify\"><strong>Floats</strong><br />\r\nOltre agli XBT, durante il trasferimento verso il mare di Ross, sono stati rilasciati in mare 10 float e 10 drifter. Queste misure rientrano nella collaborazione con il progetto ARGOItaly, che ha fornito gli strumenti (http://nettuno.ogs.trieste.it/jungo/argoitaly/floats.html), attività volta a fornire un contributo italiano all’interno del più ampio programma di osservazione, a scala globale, degli oceani denominato ARGO.\r\nI float sono strumenti autonomi lagrangiani ovvero, una volta rilasciati in mare, sono trasportati dalle correnti marine a una profondità predeterminata. A intervalli regolari la sonda sale in superficie misurando le proprietà termoaline che poi vengono trasmesse via satellite al centro di raccolta dati.\r\nIl ciclo tipico dei float utilizzato è quello standard stabilito nel programma ARGO, ovvero la cosiddetta “parking depth” (ovvero la profondità alla quale il float arresta la discesa ed è trasportato passivamente dalle correnti) è a 1000 metri; al termine di un intervallo di 10 giorni il float è programmato per immergersi sino a 2000 metri e poi di risalire in superficie (dove rimane per 6 ore) per eseguire il profilo di temperatura e salinità e per la trasmissione dei dati acquisiti.\r\nI float utilizzati nel progetto, in particolare, hanno un sistema di comunicazione satellitare bi-direzionale (Iridium) per poter modificare a distanza i parametri di missione. Quest’anno tra i float disponibili sono strati resi disponibili tre con inserito l’algoritmo per il rilevamento del ghiaccio in superficie. Questa tipologia di float potrebbe consentire un monitoraggio delle fasce polari dove la formazione di ghiaccio marino durante l’inverno impedisce l’affioramento dei float in superficie e spesso causa anche il loro danneggiamento.\r\nI drifter sono sempre strumenti lagrangiani, ma rimangono in superficie trasmettendo in tempo reale le posizioni e il valore di temperatura superficiale. Anche quest’anno sono stati rilasciati drifter del tipo Surface Velocity Programme (SVP) particolarmente adatti a misure di corrente superficiale in oceano aperto. I lanci dei drifter e dei float sono avvenuti simultaneamente e sono cominciati il giorno 02/01/2017 a circa 55°S, terminati il giorno successivo a 63°S.','','full_html'),('node','page',0,130,130,'en',0,'<h1 align= \"center\"><strong>Rapporto sulla Campagna Antartica (estratto)</strong></h1>\r\n\r\n<h2 align=\"center\"><strong>Estate Australe 2017-2018</strong></h2>\r\n\r\n<h3 align=\"center\"><strong>Trentduesima Spedizione (PNRA XXXIII)</strong></h3>\r\n\r\n<p align=\"center\"><strong>Progetto 2009/B.09: Osservatorio Marino Nel Mare di Ross ( MORSea)</strong><br />\r\n<em>Y. Cotroneo, L. Marziani</em></p>\r\n\r\n<p ALIGN=\"justify\">Lo scopo del progetto MOMA è lo studio della variabilità della corrente circumpolare antartica nella regione oceanica compresa tra Antartide e Sud Africa, nell’ambito delle attività scientifiche internazionali promosse dal Southern Ocean Observing System (SOOS) e dal First Antarctic and Southern Ocean Science Horizon Scan.\r\nMOMA si basa sulla raccolata e l’analisi di un dataset ad alta risoluzione, affiancato a simulazioni numeriche sviluppate e utilizzate nell’ambito del progetto.\r\nNell’ambito della XXXIII Spedizione in Antartide è stata effettuata la seconda campagna di misure del progetto attraverso la partecipazione di un ricercatore italiano alla campagna oceanografica del South African National Antarctic Programme (SANAP) dell’estate australe 2017/18.\r\nLa raccolta di dati mediante la strumentazione di bordo (CTD, XBT, ADCP, etc.) è stata integrata con un numero ridotto di float (3), poiché, per problemi relativi alle tempistiche d’imbarco, non è stato possibile acquisire e garantire la consegna di ulteriori boe/sonde. Consequenzialmente, anche il personale imbarcato del progetto MOMA è stato ridotto a una singola unità.\r\nSuccessivamente, grazie alla collaborazione con l’IFREMER e l’INOGS, prima della partenza della S/A Agulhas II da Città del Capo il 07/12/2017, è stato possibile integrare i float del progetto MOMA con 10 ARGO floats di un progetto di ricerca francese. L’unione dei dati provenienti dalle diverse sonde consentirà quindi una rappresentazione migliore dell’area di interesse.\r\nTali dispositivi, una volta rilasciati in mare, si muovono in maniera “lagrangiana” a una profondità predeterminata e a intervalli regolari risalgono in superficie misurando i dati relativi alle proprietà termoaline della colonna d’acqua. In particolare, a intervalli di 10 giorni, il float è programmato per immergersi sino a 2000 metri per poi risalire in superficie per eseguire il profilo di temperatura e salinità e trasmettere i dati acquisiti. Una volta effettuata la raccolta dati, il float ritorna a una “parking depth” di 1000 metri di profondità. Il periodo di vita massimo del singolo float è di circa 5 anni.\r\nI 3 Euro-Argo floats del progetto MOMA sono stati forniti dall’Istituto Nazionale di Oceanografia e di Geofisica Sperimentale (OGS) nell’ambito delle attività dell’Unità di Ricerca “3” – “Approvvigionamento, programmazione, messa a mare ed elaborazione dei dati di strumenti lagrangiani” coordinata dal Prof. Pierre Poulain, mentre l’integrazione con i 10 float francesi è il prodotto della collaborazione con Noé Poffa e Romain Cancouët dell’Institut français de recherche pour l\'exploitation de la mer - French Research Institute for Exploitation of the Sea (Ifremer).\r\nLe attività sul campo sono iniziate il giorno 15 gennaio 2018 con l’arrivo sul continente antartico del Dott. Luigi Marziani che ha raggiunto la base di ricerca Norvegese “Troll Station” con un volo Città del Capo – Antartide operato dalla Norwegian Antarctic Research Expeditionsed (NARE) ed è stato successivamente trasferito (16 gennaio), a bordo della nave di ricerca sudafricana S/A Agulhas II.\r\nUna volta verificata la condizione degli strumenti imbarcati alla partenza, l’attenzione si è spostata sulla raccolta dei dati acquisiti durante la navigazione verso sud, utili a una prima analisi per la conferma dei punti di messa a mare dei float sulla rotta di ritorno. Sulla base dei dati XBT raccolti durante il primo leg di navigazione, dei dati altimetrici e della bibliografia esistente, sono state identificate le posizioni dei principali fronti della ACC ed è stato quindi messo a punto il piano di messe a mare dei float.\r\n</p>\r\n\r\nLungo le due traversate Città del Capo – Antartide e viceversa sono state lanciate 227 sonde XBT alla risoluzione spaziale di circa 20 nm per la rilevazione dei dati di temperatura nello strato 0–900 metri dell’Oceano Meridionale (Figure 1 e 2).\r\n\r\n<p ALIGN=\"center\"><a href=\" \"><img alt=\"\" src=\"/sites/default/files/fig1_pnraXXXIII.png\" width=\"500px\" /></a></p>\r\n \r\n<p align=\"justify\"><strong>Figure 1. Sezione di temperatura nello strato 0–1000 m lungo la rotta Città del Capo – Antartide, nel periodo 07–20 dicembre 2017. La posizione dei principali fronti della ACC è indicata dalle linee rosse.</b></strong>\r\n\r\n<p ALIGN=\"center\"><a href=\" \"><img alt=\"\" src=\"/sites/default/files/fig2_pnraXXXIII.png\" width=\"500px\" /></a></p>\r\n \r\n<p align=\"justify\"><strong>Figure 2. Sezione di temperatura nello strato 0–1000 m lungo la rotta Antartide – Città del Capo, nel periodo 06-13 febbraio 2017. La posizione dei principali fronti della ACC è indicata dalle linee rosse.</b></strong>\r\n','','full_html'),('node','page',0,131,131,'en',0,'Pagina di prova','','full_html');
/*!40000 ALTER TABLE `field_data_body` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `field_data_comment_body`
--

DROP TABLE IF EXISTS `field_data_comment_body`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `field_data_comment_body` (
  `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to',
  `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  `deleted` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'A boolean indicating whether this data item has been deleted',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  `revision_id` int(10) unsigned DEFAULT NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
  `language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language for this data item.',
  `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  `comment_body_value` longtext DEFAULT NULL,
  `comment_body_format` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`entity_type`,`entity_id`,`deleted`,`delta`,`language`),
  KEY `entity_type` (`entity_type`),
  KEY `bundle` (`bundle`),
  KEY `deleted` (`deleted`),
  KEY `entity_id` (`entity_id`),
  KEY `revision_id` (`revision_id`),
  KEY `language` (`language`),
  KEY `comment_body_format` (`comment_body_format`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for field 1 (comment_body)';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `field_data_comment_body`
--

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

--
-- Table structure for table `field_data_field_gfdata`
--

DROP TABLE IF EXISTS `field_data_field_gfdata`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `field_data_field_gfdata` (
  `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to',
  `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  `deleted` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'A boolean indicating whether this data item has been deleted',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  `revision_id` int(10) unsigned DEFAULT NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
  `language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language for this data item.',
  `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  `field_gfdata_geom` longblob DEFAULT NULL,
  `field_gfdata_geo_type` varchar(64) DEFAULT '',
  `field_gfdata_lat` decimal(18,12) DEFAULT NULL,
  `field_gfdata_lon` decimal(18,12) DEFAULT NULL,
  `field_gfdata_left` decimal(18,12) DEFAULT NULL,
  `field_gfdata_top` decimal(18,12) DEFAULT NULL,
  `field_gfdata_right` decimal(18,12) DEFAULT NULL,
  `field_gfdata_bottom` decimal(18,12) DEFAULT NULL,
  `field_gfdata_geohash` varchar(16) DEFAULT NULL,
  PRIMARY KEY (`entity_type`,`entity_id`,`deleted`,`delta`,`language`),
  KEY `entity_type` (`entity_type`),
  KEY `bundle` (`bundle`),
  KEY `deleted` (`deleted`),
  KEY `entity_id` (`entity_id`),
  KEY `revision_id` (`revision_id`),
  KEY `language` (`language`),
  KEY `field_gfdata_lat` (`field_gfdata_lat`),
  KEY `field_gfdata_lon` (`field_gfdata_lon`),
  KEY `field_gfdata_top` (`field_gfdata_top`),
  KEY `field_gfdata_bottom` (`field_gfdata_bottom`),
  KEY `field_gfdata_left` (`field_gfdata_left`),
  KEY `field_gfdata_right` (`field_gfdata_right`),
  KEY `field_gfdata_geohash` (`field_gfdata_geohash`),
  KEY `field_gfdata_centroid` (`field_gfdata_lat`,`field_gfdata_lon`),
  KEY `field_gfdata_bbox` (`field_gfdata_top`,`field_gfdata_bottom`,`field_gfdata_left`,`field_gfdata_right`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for field 20 (field_gfdata)';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `field_data_field_gfdata`
--

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

--
-- Table structure for table `field_data_field_image`
--

DROP TABLE IF EXISTS `field_data_field_image`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `field_data_field_image` (
  `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to',
  `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  `deleted` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'A boolean indicating whether this data item has been deleted',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  `revision_id` int(10) unsigned DEFAULT NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
  `language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language for this data item.',
  `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  `field_image_fid` int(10) unsigned DEFAULT NULL COMMENT 'The file_managed.fid being referenced in this field.',
  `field_image_alt` varchar(512) DEFAULT NULL COMMENT 'Alternative image text, for the image’s ’alt’ attribute.',
  `field_image_title` varchar(1024) DEFAULT NULL COMMENT 'Image title text, for the image’s ’title’ attribute.',
  `field_image_width` int(10) unsigned DEFAULT NULL COMMENT 'The width of the image in pixels.',
  `field_image_height` int(10) unsigned DEFAULT NULL COMMENT 'The height of the image in pixels.',
  PRIMARY KEY (`entity_type`,`entity_id`,`deleted`,`delta`,`language`),
  KEY `entity_type` (`entity_type`),
  KEY `bundle` (`bundle`),
  KEY `deleted` (`deleted`),
  KEY `entity_id` (`entity_id`),
  KEY `revision_id` (`revision_id`),
  KEY `language` (`language`),
  KEY `field_image_fid` (`field_image_fid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for field 4 (field_image)';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `field_data_field_image`
--

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

--
-- Table structure for table `field_data_field_openlayers_example_input`
--

DROP TABLE IF EXISTS `field_data_field_openlayers_example_input`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `field_data_field_openlayers_example_input` (
  `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to',
  `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  `deleted` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'A boolean indicating whether this data item has been deleted',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  `revision_id` int(10) unsigned DEFAULT NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
  `language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language for this data item.',
  `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  `field_openlayers_example_input_geom` longblob DEFAULT NULL,
  `field_openlayers_example_input_geo_type` varchar(64) DEFAULT '',
  `field_openlayers_example_input_lat` decimal(18,12) DEFAULT NULL,
  `field_openlayers_example_input_lon` decimal(18,12) DEFAULT NULL,
  `field_openlayers_example_input_left` decimal(18,12) DEFAULT NULL,
  `field_openlayers_example_input_top` decimal(18,12) DEFAULT NULL,
  `field_openlayers_example_input_right` decimal(18,12) DEFAULT NULL,
  `field_openlayers_example_input_bottom` decimal(18,12) DEFAULT NULL,
  `field_openlayers_example_input_geohash` varchar(16) DEFAULT NULL,
  PRIMARY KEY (`entity_type`,`entity_id`,`deleted`,`delta`,`language`),
  KEY `entity_type` (`entity_type`),
  KEY `bundle` (`bundle`),
  KEY `deleted` (`deleted`),
  KEY `entity_id` (`entity_id`),
  KEY `revision_id` (`revision_id`),
  KEY `language` (`language`),
  KEY `field_openlayers_example_input_lat` (`field_openlayers_example_input_lat`),
  KEY `field_openlayers_example_input_lon` (`field_openlayers_example_input_lon`),
  KEY `field_openlayers_example_input_top` (`field_openlayers_example_input_top`),
  KEY `field_openlayers_example_input_bottom` (`field_openlayers_example_input_bottom`),
  KEY `field_openlayers_example_input_left` (`field_openlayers_example_input_left`),
  KEY `field_openlayers_example_input_right` (`field_openlayers_example_input_right`),
  KEY `field_openlayers_example_input_geohash` (`field_openlayers_example_input_geohash`),
  KEY `field_openlayers_example_input_centroid` (`field_openlayers_example_input_lat`,`field_openlayers_example_input_lon`),
  KEY `field_openlayers_example_input_bbox` (`field_openlayers_example_input_top`,`field_openlayers_example_input_bottom`,`field_openlayers_example_input_left`,`field_openlayers_example_input_right`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for field 5 (field_openlayers_example_input)';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `field_data_field_openlayers_example_input`
--

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

--
-- Table structure for table `field_data_field_photo`
--

DROP TABLE IF EXISTS `field_data_field_photo`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `field_data_field_photo` (
  `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to',
  `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  `deleted` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'A boolean indicating whether this data item has been deleted',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  `revision_id` int(10) unsigned DEFAULT NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
  `language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language for this data item.',
  `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  `field_photo_fid` int(10) unsigned DEFAULT NULL COMMENT 'The file_managed.fid being referenced in this field.',
  `field_photo_alt` varchar(512) DEFAULT NULL COMMENT 'Alternative image text, for the image’s ’alt’ attribute.',
  `field_photo_title` varchar(1024) DEFAULT NULL COMMENT 'Image title text, for the image’s ’title’ attribute.',
  `field_photo_width` int(10) unsigned DEFAULT NULL COMMENT 'The width of the image in pixels.',
  `field_photo_height` int(10) unsigned DEFAULT NULL COMMENT 'The height of the image in pixels.',
  PRIMARY KEY (`entity_type`,`entity_id`,`deleted`,`delta`,`language`),
  KEY `entity_type` (`entity_type`),
  KEY `bundle` (`bundle`),
  KEY `deleted` (`deleted`),
  KEY `entity_id` (`entity_id`),
  KEY `revision_id` (`revision_id`),
  KEY `language` (`language`),
  KEY `field_photo_fid` (`field_photo_fid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for field 21 (field_photo)';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `field_data_field_photo`
--

LOCK TABLES `field_data_field_photo` WRITE;
/*!40000 ALTER TABLE `field_data_field_photo` DISABLE KEYS */;
INSERT INTO `field_data_field_photo` VALUES ('node','photo_moorings_2014',0,21,21,'en',0,10,'','',720,960),('node','photo_moorings_2014',0,22,22,'en',0,11,'','',720,960),('node','photo_moorings_2014',0,23,23,'en',0,12,'','',720,960),('node','photo_moorings_2014',0,24,24,'en',0,15,'','',1691,1127);
/*!40000 ALTER TABLE `field_data_field_photo` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `field_data_field_photo_moorings_2010`
--

DROP TABLE IF EXISTS `field_data_field_photo_moorings_2010`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `field_data_field_photo_moorings_2010` (
  `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to',
  `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  `deleted` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'A boolean indicating whether this data item has been deleted',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  `revision_id` int(10) unsigned DEFAULT NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
  `language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language for this data item.',
  `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  `field_photo_moorings_2010_fid` int(10) unsigned DEFAULT NULL COMMENT 'The file_managed.fid being referenced in this field.',
  `field_photo_moorings_2010_alt` varchar(512) DEFAULT NULL COMMENT 'Alternative image text, for the image’s ’alt’ attribute.',
  `field_photo_moorings_2010_title` varchar(1024) DEFAULT NULL COMMENT 'Image title text, for the image’s ’title’ attribute.',
  `field_photo_moorings_2010_width` int(10) unsigned DEFAULT NULL COMMENT 'The width of the image in pixels.',
  `field_photo_moorings_2010_height` int(10) unsigned DEFAULT NULL COMMENT 'The height of the image in pixels.',
  PRIMARY KEY (`entity_type`,`entity_id`,`deleted`,`delta`,`language`),
  KEY `entity_type` (`entity_type`),
  KEY `bundle` (`bundle`),
  KEY `deleted` (`deleted`),
  KEY `entity_id` (`entity_id`),
  KEY `revision_id` (`revision_id`),
  KEY `language` (`language`),
  KEY `field_photo_moorings_2010_fid` (`field_photo_moorings_2010_fid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for field 25 (field_photo_moorings_2010)';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `field_data_field_photo_moorings_2010`
--

LOCK TABLES `field_data_field_photo_moorings_2010` WRITE;
/*!40000 ALTER TABLE `field_data_field_photo_moorings_2010` DISABLE KEYS */;
INSERT INTO `field_data_field_photo_moorings_2010` VALUES ('node','photo_moorings_2010',0,115,115,'und',0,40,'','',705,697),('node','photo_moorings_2010',0,116,116,'und',0,41,'','',557,724),('node','photo_moorings_2010',0,117,117,'und',0,42,'','',591,695),('node','photo_moorings_2010',0,118,118,'und',0,43,'','',595,838),('node','photo_moorings_2010',0,121,121,'und',0,40,'','',705,697),('node','photo_moorings_2010',0,122,122,'und',0,42,'','',591,695),('node','photo_moorings_2010',0,123,123,'und',0,41,'','',557,724);
/*!40000 ALTER TABLE `field_data_field_photo_moorings_2010` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `field_data_field_photo_moorings_2012`
--

DROP TABLE IF EXISTS `field_data_field_photo_moorings_2012`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `field_data_field_photo_moorings_2012` (
  `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to',
  `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  `deleted` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'A boolean indicating whether this data item has been deleted',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  `revision_id` int(10) unsigned DEFAULT NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
  `language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language for this data item.',
  `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  `field_photo_moorings_2012_fid` int(10) unsigned DEFAULT NULL COMMENT 'The file_managed.fid being referenced in this field.',
  `field_photo_moorings_2012_alt` varchar(512) DEFAULT NULL COMMENT 'Alternative image text, for the image’s ’alt’ attribute.',
  `field_photo_moorings_2012_title` varchar(1024) DEFAULT NULL COMMENT 'Image title text, for the image’s ’title’ attribute.',
  `field_photo_moorings_2012_width` int(10) unsigned DEFAULT NULL COMMENT 'The width of the image in pixels.',
  `field_photo_moorings_2012_height` int(10) unsigned DEFAULT NULL COMMENT 'The height of the image in pixels.',
  PRIMARY KEY (`entity_type`,`entity_id`,`deleted`,`delta`,`language`),
  KEY `entity_type` (`entity_type`),
  KEY `bundle` (`bundle`),
  KEY `deleted` (`deleted`),
  KEY `entity_id` (`entity_id`),
  KEY `revision_id` (`revision_id`),
  KEY `language` (`language`),
  KEY `field_photo_moorings_2012_fid` (`field_photo_moorings_2012_fid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for field 22 (field_photo_moorings_2012)';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `field_data_field_photo_moorings_2012`
--

LOCK TABLES `field_data_field_photo_moorings_2012` WRITE;
/*!40000 ALTER TABLE `field_data_field_photo_moorings_2012` DISABLE KEYS */;
INSERT INTO `field_data_field_photo_moorings_2012` VALUES ('node','photo_moorings_2012',0,26,26,'en',0,34,'','',720,960),('node','photo_moorings_2012',0,34,34,'en',0,32,'','',720,960),('node','photo_moorings_2012',0,35,35,'en',0,33,'','',886,637),('node','photo_moorings_2012',0,36,36,'en',0,35,'','',720,960),('node','photo_moorings_2012',0,120,120,'it',0,34,'','',720,960);
/*!40000 ALTER TABLE `field_data_field_photo_moorings_2012` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `field_data_field_tags`
--

DROP TABLE IF EXISTS `field_data_field_tags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `field_data_field_tags` (
  `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to',
  `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  `deleted` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'A boolean indicating whether this data item has been deleted',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  `revision_id` int(10) unsigned DEFAULT NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
  `language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language for this data item.',
  `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  `field_tags_tid` int(10) unsigned DEFAULT NULL,
  PRIMARY KEY (`entity_type`,`entity_id`,`deleted`,`delta`,`language`),
  KEY `entity_type` (`entity_type`),
  KEY `bundle` (`bundle`),
  KEY `deleted` (`deleted`),
  KEY `entity_id` (`entity_id`),
  KEY `revision_id` (`revision_id`),
  KEY `language` (`language`),
  KEY `field_tags_tid` (`field_tags_tid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for field 3 (field_tags)';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `field_data_field_tags`
--

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

--
-- Table structure for table `field_data_taxonomy_forums`
--

DROP TABLE IF EXISTS `field_data_taxonomy_forums`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `field_data_taxonomy_forums` (
  `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to',
  `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  `deleted` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'A boolean indicating whether this data item has been deleted',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  `revision_id` int(10) unsigned DEFAULT NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
  `language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language for this data item.',
  `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  `taxonomy_forums_tid` int(10) unsigned DEFAULT NULL,
  PRIMARY KEY (`entity_type`,`entity_id`,`deleted`,`delta`,`language`),
  KEY `entity_type` (`entity_type`),
  KEY `bundle` (`bundle`),
  KEY `deleted` (`deleted`),
  KEY `entity_id` (`entity_id`),
  KEY `revision_id` (`revision_id`),
  KEY `language` (`language`),
  KEY `taxonomy_forums_tid` (`taxonomy_forums_tid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for field 23 (taxonomy_forums)';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `field_data_taxonomy_forums`
--

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

--
-- Table structure for table `field_data_title_field`
--

DROP TABLE IF EXISTS `field_data_title_field`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `field_data_title_field` (
  `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to',
  `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  `deleted` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'A boolean indicating whether this data item has been deleted',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  `revision_id` int(10) unsigned DEFAULT NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
  `language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language for this data item.',
  `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  `title_field_value` varchar(255) DEFAULT NULL,
  `title_field_format` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`entity_type`,`entity_id`,`deleted`,`delta`,`language`),
  KEY `entity_type` (`entity_type`),
  KEY `bundle` (`bundle`),
  KEY `deleted` (`deleted`),
  KEY `entity_id` (`entity_id`),
  KEY `revision_id` (`revision_id`),
  KEY `language` (`language`),
  KEY `title_field_format` (`title_field_format`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for field 24 (title_field)';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `field_data_title_field`
--

LOCK TABLES `field_data_title_field` WRITE;
/*!40000 ALTER TABLE `field_data_title_field` DISABLE KEYS */;
INSERT INTO `field_data_title_field` VALUES ('node','page',0,1,1,'und',0,'MORSea Gallery',NULL),('node','page',0,2,2,'und',0,'Contacts',NULL),('node','page',0,3,3,'en',0,'Cooperations',NULL),('node','page',0,4,4,'en',0,'Data access',NULL),('node','page',0,7,7,'en',0,'Ancillary activities',NULL),('node','page',0,8,8,'und',0,'The network',NULL),('node','page',0,12,12,'en',0,'The Moorings',NULL),('node','page',0,13,13,'en',0,'2011/12 - PNRA XXVII',NULL),('node','page',0,14,14,'en',0,'2013/14 - PNRA XXIX',NULL),('node','page',0,15,15,'en',0,'Pubblications',NULL),('node','photo_moorings_2014',0,21,21,'en',0,'Mooring B',NULL),('node','photo_moorings_2014',0,22,22,'en',0,'Mooring L',NULL),('node','photo_moorings_2014',0,23,23,'en',0,'Mooring G',NULL),('node','photo_moorings_2014',0,24,24,'en',0,'Mooring D',NULL),('node','photo_moorings_2012',0,26,26,'en',0,'Mooring L',NULL),('node','page',0,28,28,'en',0,'Mooring details',NULL),('node','photos',0,29,29,'en',0,'Photos',NULL),('node','page',0,30,30,'en',0,'Ancillary Activities A',NULL),('node','page',0,31,31,'und',0,'Ancillary Activities B',NULL),('node','page',0,32,32,'en',0,'Ancillary Activities C',NULL),('node','page',0,33,33,'en',0,'People',NULL),('node','photo_moorings_2012',0,34,34,'en',0,'Mooring B',NULL),('node','photo_moorings_2012',0,35,35,'en',0,'Mooring D',NULL),('node','photo_moorings_2012',0,36,36,'en',0,'Mooring G',NULL),('node','page',0,37,37,'en',0,'Metadati',NULL),('node','page',0,39,39,'und',0,'Metadati Mooring L 2012',NULL),('node','page',0,40,40,'und',0,'Metadati Mooring L 2014',NULL),('node','page',0,41,41,'und',0,'Metadati Mooring G 2012',NULL),('node','page',0,42,42,'und',0,'Metadati Mooring G 2014',NULL),('node','page',0,43,43,'und',0,'Metadati Mooring D 2012',NULL),('node','page',0,44,44,'und',0,'Metadati Mooring D 2014',NULL),('node','page',0,45,45,'en',0,'2014/15 - PNRA XXX',NULL),('node','page',0,46,46,'en',0,'News',NULL),('node','page',0,57,57,'und',0,'2010_D_rcm7_11559_1078m',NULL),('node','page',0,58,58,'und',0,'2010_D_sbe16_1433_463m',NULL),('node','page',0,59,59,'und',0,'2010_D_rcm7_11560_494m',NULL),('node','page',0,60,60,'und',0,'2010_D_rcm9_975_838m',NULL),('node','page',0,61,61,'und',0,'2010_D_sbe16_1437_1036m',NULL),('node','page',0,62,62,'und',0,'2010_D_sbe39_1210_694m',NULL),('node','page',0,63,63,'und',0,'2010_D_sbe39_1213_950m',NULL),('node','page',0,64,64,'und',0,'2012_D_rcm7_9022_539m',NULL),('node','page',0,65,65,'und',0,'2012_D_rcm7_11199_875m',NULL),('node','page',0,66,66,'und',0,'2012_D_rcm7_11565_1112m',NULL),('node','page',0,67,67,'und',0,'2012_D_sbe16_1433_509m',NULL),('node','page',0,68,68,'und',0,'2012_D_sbe16_1437_1069m',NULL),('node','page',0,69,69,'und',0,'2012_D_sbe39_1211_966m',NULL),('node','page',0,70,70,'und',0,'2012_D_sbe39_1214_739m',NULL),('node','page',0,71,71,'und',0,'2010_G_rcm7_11199_454m',NULL),('node','page',0,72,72,'und',0,'2010_G_rcm7_11565_514m',NULL),('node','page',0,73,73,'und',0,'2010_G_sbe39_1211_474m',NULL),('node','page',0,74,74,'und',0,'2010_G_sbe39_1214_494m',NULL),('node','page',0,75,75,'und',0,'2012_G_rcm7_9016_455m',NULL),('node','page',0,76,76,'und',0,'2012_G_rcm7_11560_517m',NULL),('node','page',0,77,77,'und',0,'2012_G_sbe39_1213_495m',NULL),('node','page',0,78,78,'und',0,'2012_G_sbe39_1210_475m',NULL),('node','page',0,79,79,'und',0,'2010_L_L_rcm7_11974_40m',NULL),('node','page',0,80,80,'und',0,'2012_L_L_rcm7_11559_144m',NULL),('node','page',0,81,81,'und',0,'2012_L_L_rcm7_11974_62m',NULL),('node','page',0,82,82,'en',0,'Tide',NULL),('node','page',0,83,83,'en',0,'Metadati Mooring B 2012',NULL),('node','page',0,84,84,'en',0,'Metadati Mooring G 201B',NULL),('node','page',0,85,85,'und',0,'CA09-10_XXVItaEsp_NZ',NULL),('node','page',0,86,86,'und',0,'CA09-10_XXVItaEsp_SA',NULL),('node','page',0,87,87,'und',0,'CA10-11_XXVItaEsp_SA',NULL),('node','page',0,88,88,'und',0,'CA11-12_XXVII_ItaEsp_SA',NULL),('node','page',0,89,89,'und',0,'CA11-12_XXVII_ItaEsp_NZ',NULL),('node','page',0,90,90,'und',0,'CA12-13_XXVIII_ItaEsp_SA',NULL),('node','page',0,91,91,'und',0,'CA12-13_XXVIII_ItaEsp_NZ',NULL),('node','page',0,92,92,'und',0,'CA13-14_XXIX_ItaEsp_NZ',NULL),('node','page',0,93,93,'und',0,'CA14-15_XXX_ItaEsp_NZ',NULL),('node','page',0,94,94,'und',0,'XBT INTERNATIONAL BACKGROUND',NULL),('node','page',0,95,95,'und',0,'INSTRUMENTATION',NULL),('node','page',0,96,96,'it',0,'Ancillary activities',NULL),('node','page',0,98,98,'it',0,'The Moorings',NULL),('node','page',0,99,99,'en',0,'Home Page',NULL),('node','page',0,102,102,'en',0,'B_rcm9_1210_543m',NULL),('node','page',0,103,103,'en',0,'B_sbe16_4494_533m',NULL),('node','page',0,104,104,'en',0,'B_sbe37_4118_280m',NULL),('node','page',0,105,105,'en',0,'B_2012_rcm7_9474_229m',NULL),('node','page',0,106,106,'en',0,'B_2012_sbe16_4494_500m',NULL),('node','page',0,107,107,'en',0,'B_2012_sbe37_4118_228m',NULL),('node','page',0,108,108,'en',0,'ARGO functioning',NULL),('node','page',0,109,109,'en',0,'ARGO',NULL),('node','page',0,110,110,'en',0,'ARGO 2013',NULL),('node','page',0,111,111,'en',0,'ARGO 2014',NULL),('node','page',0,112,112,'en',0,'ARGO 2015',NULL),('node','page',0,113,113,'it',0,'Metadati',NULL),('node','page',0,119,119,'it',0,'Dettagli dei Moorings',NULL),('node','photo_moorings_2012',0,120,120,'it',0,'Mooring L',NULL),('node','page',0,124,124,'en',0,'2015/16 - PNRA XXXI',NULL),('node','page',0,125,125,'it',0,'2013/14 - PNRA XXIX',NULL),('node','page',0,126,126,'it',0,'2011/12 - PNRA XXVII',NULL),('node','page',0,127,127,'it',0,'2014/15 - PNRA XXX',NULL),('node','page',0,128,128,'it',0,'2015/16 - PNRA XXXI',NULL),('node','page',0,129,129,'en',0,'2016/17 - PNRA XXXII',NULL),('node','page',0,130,130,'en',0,'2017/18 - PNRA XXXIII',NULL),('node','page',0,131,131,'en',0,'Prova',NULL);
/*!40000 ALTER TABLE `field_data_title_field` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `field_revision_body`
--

DROP TABLE IF EXISTS `field_revision_body`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `field_revision_body` (
  `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to',
  `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  `deleted` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'A boolean indicating whether this data item has been deleted',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to',
  `language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language for this data item.',
  `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  `body_value` longtext DEFAULT NULL,
  `body_summary` longtext DEFAULT NULL,
  `body_format` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`entity_type`,`entity_id`,`revision_id`,`deleted`,`delta`,`language`),
  KEY `entity_type` (`entity_type`),
  KEY `bundle` (`bundle`),
  KEY `deleted` (`deleted`),
  KEY `entity_id` (`entity_id`),
  KEY `revision_id` (`revision_id`),
  KEY `language` (`language`),
  KEY `body_format` (`body_format`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for field 2 (body)';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `field_revision_body`
--

LOCK TABLES `field_revision_body` WRITE;
/*!40000 ALTER TABLE `field_revision_body` DISABLE KEYS */;
INSERT INTO `field_revision_body` VALUES ('node','page',0,1,1,'und',0,'\r\n','','full_html'),('node','page',0,2,2,'und',0,'<p><em>Prof. Giancarlo Spezie (P.I.)&nbsp;- &nbsp;giancarlo.spezie@uniparthenope.it</em></p>\r\n\r\n<p><em>Prof. Giorgio Budillon - giorgio.budillon@uniparthenope.it</em></p>\r\n\r\n<h2><strong>Università degli Studi di Napoli \"Parthenope\"</strong></h2>\r\n\r\n<p>DiST - Dipartimento di Scienze e Tecnologie<br />\r\nCentro Direzionale, Isola C4. 80143 Napoli - ITALY<br />\r\nph. +39 081 5476584<br />\r\nfax. +39 081 5476515</p>\r\n','','full_html'),('node','page',0,3,3,'en',0,'<p>Le attività vengono svolte in collaborazione con:</p>\r\n\r\n<div id=\"logoISMAR\">\r\n    <div>\r\n          <img src=\"/sites/all/themes/multipurpose/images/logoISMAR.jpg\" style=\"float: left;\" width=\"100\" border=\"none\"/>\r\n    <div\r\n    <div style=\"padding-top: 25px;\">\r\n         <a href=\"http://www.ismar.cnr.it\" target=\"_blank\">Consiglio Nazionale delle Ricerche - ISMAR Ancona</a>\r\n        <br>\r\n       <a href=\"http://www.ismar.cnr.it\" target=\"_blank\">Consiglio Nazionale delle Ricerche - ISMAR Bologna</a>\r\n    </div>\r\n</div>\r\n<br>\r\n<div id=\"logoDistav\">\r\n    <div>\r\n        <img src=\"/sites/all/themes/multipurpose/images/logoDistavGenova.jpg\" style=\"float: left;\"  width=\"150\" border=\"none\"/>\r\n    </div>\r\n    <div style=\"padding-top: 25px;\">\r\n        <a href=\"http://www.distav.unige.it\" target=\"_blank\">Università degli Studi di Genova - DiSTAV</a>\r\n    </div>\r\n</div>\r\n<br>\r\n<div id=\"logoUnivCapo\">\r\n    <div>\r\n        <img src=\"/sites/all/themes/multipurpose/images/UCT_logocircless.gif\" style=\"float: left;\"  width=\"100\" border=\"none\"/>\r\n    </div>\r\n    <div style=\"padding-top: 50px;\">\r\n        <a href=\"http://www.uct.ac.za/\" target=\"_blank\">Università di Città del Capo</a>\r\n    </div>\r\n</div>\r\n<br>\r\n<br>\r\n<div id=\"logoSanap\">\r\n    <div>\r\n        <img src=\"/sites/all/themes/multipurpose/images/sanap.gif\" style=\"float: left;\"  width=\"100\" border=\"none\"/>\r\n    </div>\r\n    <div style=\"padding-top: 70px;\">\r\n        <a href=\"http://www.sanap.ac.za/\" target=\"_blank\">South African National Antarctic Programme - SANAP</a>\r\n  </div>\r\n</div>','','full_html'),('node','page',0,4,4,'en',0,'<div style=\"text-align: center;\">\r\n<div style=\" float:left; border: none; margin-right:20px;\"><a href=\"morsea.uniparthenope.it/?q=node/37\"><img  style=\"border:none;\" width=\"250\" src=\"/sites/all/themes/multipurpose/images/Metadata.png\"/></a></div>\r\n\r\n<div style=\"border: none; margin-left:40px;\"><a href=\"http://morsea.uniparthenope.it/chart/page\"><img style=\"border:none;\" width=\"250\" src=\"/sites/all/themes/multipurpose/images/TimeSeries.png\"/></a>\r\n</div>\r\n</div>\r\n<br>\r\n<p style=\"align:justify;\">Data and samples are currently distributed according to Italian PNRA policies; for information contact the scientific coordinators <br>(giancarlo.spezie@uniparthenope.it or giorgio.budillon@uniparthenope.it)</p>\r\n','','filtered_html'),('node','page',0,7,7,'en',0,'<div><strong><a href=\"http://morsea.uniparthenope.it/?q=node/30\">a)  ACC sub surface thermal structure monitoring</a></strong></div>\r\n</br>\r\n<div><strong><a href=\"http://morsea.uniparthenope.it/?q=node/31\">b) Temperature and Salinity underway surface measurenments</a></strong></div>\r\n</br>\r\n<div><strong><a href=\"http://morsea.uniparthenope.it/?q=node/32\">c) Drifter and floats lagrangian measurements</a></strong></div>\r\n','','full_html'),('node','page',0,8,8,'und',0,'<p><a href=\"node/8\">Mooring B</a></p>\r\n\r\n<p><img alt=\"\" src=\"/sites/default/files/Mooring%20B%202014.png\" style=\"height:960px; width:720px\" /></p>\r\n','','full_html'),('node','page',0,12,12,'en',0,'<p>During the Italian XXIX Antarctic Expedition (Austral Summer 2013-14) all moorings included into the \"MORSea\" project were recovered, serviced and deployed.\r\nThe following map and links show the location of moorings in the Ross Sea and their composition together with basic information.</p>\r\n<div><strong><a href=\"http://morsea.uniparthenope.it/?q=node/28\">Click here to have more information about the moorings configuration</a></strong></div>\r\n<div><strong><a href=\"https://www.google.com/maps/d/edit?mid=zbQQmJ6-SKww.kXWDxKLMktvM\">Click here to have the moorings location map</a></strong></div>\r\n<div>&nbsp;</div>\r\n<div><img alt=\"\" src=\"/sites/default/files/MooringRossSea2014.png\" style=\"height:495px; width:660px\" /></div>\r\n','','full_html'),('node','page',0,13,13,'en',0,'<h1 align= \"center\"><strong>Rapporto sulla Campagna Antartica (estratto)</strong></h1>\r\n\r\n<h2 align=\"center\"><strong>Estate Australe 2011-2012</strong></h2>\r\n\r\n<h3 align=\"center\"><strong>Ventisettesima Spedizione (PNRA XXVII)</strong></h3>\r\n\r\n<p align=\"center\"><strong>Progetto 2009/B.09: Osservatorio Marino Nel Mare di Ross ( MORSea)</strong><br />\r\n<em>E. Paschini, P. Penna, G. Spezie</em></p>\r\n\r\n<p align=\"justify\">Il Progetto MORSea è relativo alla sola attività di mantenimento della rete di osservazioni marine attualmente esistente nel Mare di Ross. L’obiettivo primario della rete è quello di fornire un sostanziale contributo al monitoraggio della variabilità interannuale delle caratteristiche termoaline delle acque di shelf nel settore occidentale del Mare di Ross.\r\nL’osservatorio è costituito da 4 mooring contrassegnati dalle lettere B, D, G e L. Il Progetto si occupa del mantenimento dei mooring esistenti e, possibilmente, di potenziare la strumentazione attualmente alloggiata sulla base anche di accordi e collaborazioni con progetti italiani e stranieri.\r\nPer la Campagna 2011-12 la responsabilità delle operazioni è stata affidata a Elio Paschini del CNR – ISMAR Sezione di Ancona, coadiuvato da Pierluigi Penna dello stesso Istituto e in collaborazione con G. Budillon e P.P. Falco del Progetto T-REx, presenti a bordo.\r\nSi riporta, di seguito, la sintesi delle attività svolte, redatta da Elio Paschini.\r\nLa preparazione alla crociera é stata affrettata e senza finanziamenti. Siamo stati invitati a partecipare alla 27a Spedizione alla fine dell’estate 2011 ed avvertiti che bisognava far fronte alle spese vive anticipando con fondi propri.\r\nSono stati subito presi contatti con l’Istituto NURC della Nato di La Spezia per avere un certo numero di correntometri uguali a quelli in uso in Antartide. Questo, allo scopo di avere degli strumenti di riserva e soprattutto per abbreviare i tempi tra il recupero ed il successivo lancio dei mooring. Il NURC ci ha gentilmente prestato 6 correntometri Aanderaa RCM7, tutti dotati di sensore di pressione da 1000psi (600 metri di range) e 3 memorie da 64K byte. Tali strumenti sono stati testati in laboratorio e sottoposti ad una prova di durata, facendoli funzionare con un intervallo di misura di 5 minuti durante il viaggio dell’Italica. dall’Italia alla NZ. Alla fine solo 5 sono stati considerati validi e 4 di questi sono ora in uso nel Mare di Ross. .\r\nInutile ricordare che un rinnovo del parco strumenti é necessario. Stiamo utilizzando gli scarti degli istituti di ricerca ricchi per le ricerche (povere) in Antartide.\r\nPrima della partenza dei materiali, é stata fatta riparare e testare da un laboratorio elettronico di nostra fiducia, l’unità di sgancio EG&G mod 8011B dichiarata irriparabile dall’importatore. Nell’occasione é stato allungato il cavo del trasduttore di circa 20 m, constatando che il segnale veniva degradato soltanto del 10%.\r\nAl nostro arrivo in Nuova Zelanda abbiamo apprezzato il giorno e mezzo trascorso in porto, per approntare il laboratorio e predisporre la nostra attrezzatura per un pronto intervento.\r\nDurante questa campagna sono state usate le seguenti innovazioni rispetto al passato:\r\n<ol>\r\n<li align=\"justify\">Il trasduttore é stato posto in un V-fin, che ha permesso di eseguire le operazioni di avvicinamento e sgancio anche con nave in manovra a bassa velocità: fino a 5-6 nodi. Questa innovazione sarebbe risultata ancor più utile se si fosse dovuto eseguire una ricerca/inseguimento di un mooring vagante. Dato che il cavo ora é lungo 30 metri: l’unità di sgancio é stata portata in plancia, e da lì sono state effettuate le operazioni in stretta interazione con il comando della nave ed al caldo del ponte.</li>\r\n<li align=\"justify\">In fase di recupero si é fatto largo uso della bozza cortissima (due metri) e nodo Prusik direttamente sul cavo di ormeggio. Questo ha permesso maggiore sicurezza e velocità nelle operazioni. Molti sbirri da un metro sono stati recuperati e riposizionati in posti più utili.</li>\r\n<li align=\"justify\">Nel rilascio della zavorra é stato finalmente usato un congegno acquistato per questo scopo almeno 10 anni fà. Il nuovo sistema ha convinto tutti per semplicità e sicurezza. Lo stesso attrezzo é stato usato per la messa a mare dei componenti pesanti (trappole e coppie di sgancia tori).</li>\r\n<li align=\"justify\">Dove é stato possibile, sono state eliminate tutte le parti metalliche. Le boe di vetro OCEANO sono ora legate ad uno spezzone di kevlar, che ne facilita il trasporto ed elimina la corrosione. Con lo stesso sistema sono state collegate a coppia le boe NAUTILUS.</li>\r\n</ol>\r\n</p>\r\n<p align=\"justify\">Nella riunione preparatoria della campagna, tenutasi a Roma presso la sede ENEA, si era deciso che gli strumenti del Progetto Picco sarebbero stati aggiunti in cima al mooring D con un punto debole di circa 300kg di rottura. Questo per non compromettere tutto il mooring in caso di collisione con un iceberg nella parte superficiale della catena di strumenti. Durante le operazioni di lancio il punto debole é stato elevato a 500kg per la possibilità di strappi nella fase di lancio.\r\nLa U.O. ha prestato assistenza preziosa alla campagna. Il CTD utilizzato durante tutta la campagna é stato quello PNRA assegnato a questa U.O. e portato come riserva. Come pure il convertitore USB a quattro porte seriali ed un altro convertitore USB-seriale, usato per il lanciatore XBT. Un convertitore USB per dischi SATA é stato prestato al servizio informatico della nave. É stato fornito il segnale GPS al lanciatore XBT e Penna é entrato nei turni di lancio delle sonde XBT. Il controllo del funzionamento della misura automatica di CO2 ed il prelievo di 9 campioni di aria per la U.O. Ori é stato curato da questa U.O..\r\nLa U.O. stà compilando un modulo di crociera internazionale standardizzato (CSR) contenente i metadati di tutte le U.O. coinvolte direttamente o indirettamente nella campagna, che sarà inviato alla banca dati europea SEA-DATA-NET.\r\nEntrambi i correntometri Aanderaa RCM9 hanno mostrato di non essere adatti a temperature così fredde per tempi così prolungati in acqua: entrambi sono risultati allagati. Il modello RCM7 sebbene più vecchio si é dimostrato più robusto. La perdita di dati nel secondo anno di misura, riscontrata in ogni strumento é dovuto alla infelice scelta di lasciare l’intervallo di campionamento a mezzora, invece di spostarlo ad un ora.</p>\r\n\r\n<p align=\"justify\"><strong>Tentativo di recupero del Mooring L vecchio (2008)</strong>\r\nÉ stato possibile effettuare tentativi di recupero in tre giorni distinti, ma nonostante questo il mooring é ancora lì. Sappiamo solo che é ancora integro e conosciamo più precisamente la sua posizione. Ovviamente abbiamo interrogato lo sganciatore, che non ha mai risposto. Sarebbe lungo descrivere dettagliatamente tutti i tentativi effettuati e le tecniche utilizzate. Possiamo dire che il metodo di incoccio con una una barra di cavo in kevlar posta a 60 metri di profondità e lunga 160, trascinata dalla corrente verso il mooring é risultata la più efficace. Ha incocciato il cavo del mooring 4 volte su 5 tentativi. Purtroppo non avevamo esperienza con mooring dotati di trappole.\r\nGuardando lo schema del mooring si capisce che incocciamo il cavo sotto alla trappola per sedimenti, che non rappresenta un buon punto di aggancio come per esempio il correntometro RCM7. Se il correntometro fosse stato sotto la trappola, come negli altri mooring il recupero era cosa fatta.\r\nCi auguriamo che durante la prossima spedizione, il personale della Base, opportunamente istruito, sia in grado di tentare il recupero. Ormai dopo 4-5 anni di permanenza in mare, la corrosione ha già intaccato la struttura della trappola che é il punto più debole del mooring. Ogni anno in più diminuisce la probabilità di recuperarlo.</p>','','full_html'),('node','page',0,14,14,'en',0,'<h1 align=\"center\"><strong>Rapporto sulla Campagna Antartica (estratto)</strong></h1>\r\n\r\n<h2 align=\"center\"><strong>Estate Australe 2013-2014</strong></h2>\r\n\r\n<h3 align=\"center\"><strong>Ventinovesima Spedizione (PNRA XXIX)</strong></h3>\r\n\r\n<p align=\"center\"><strong>Progetto 2009/B.09: Osservatorio Marino nel Mare di Ross. Resp. G. Spezie</strong><br />\r\n<em>G. Budillon, P. Falco, P. Penna</em></p>\r\n\r\n<p align=\"justify\">Il Progetto MORSea è sostanzialmente relativo alla attività di mantenimento della rete di osservazioni marine attualmente esistente nel Mare di Ross. L’obiettivo primario dell’osservatorio è quello di fornire un sostanziale contributo al monitoraggio della variabilità interannuale delle caratteristiche fisiche e geochimiche delle acque di shelf nel settore occidentale del Mare di Ross.\r\nL’osservatorio è attualmente costituito da 4 catene correntometriche (mooring) contrassegnate dalle lettere “B”, “D”, “G” e “L”. Il Progetto si occupa del mantenimento dei mooring esistenti e, possibilmente, di potenziare la strumentazione attualmente alloggiata sulla base anche di accordi e collaborazioni con progetti italiani e stranieri.\r\nA queste attività si sono aggiunte anche le misure di ship of opportunity effettuate senza interferire con i tempi di navigazione della nave Italica. In particolare quest’anno sono state eseguite misure di temperatura e salinità superficiale del mare (SST e SSS rispettivamente), lanci di XBT per la misura della struttura subsuperficiale dell’Oceano Meridionale e lanci di float (questi ultimi nell’ambito della collaborazione con il progetto ARGOItaly). Queste attività, svolte in passato da progetti non più attivi del PNRA (CLIMA e SOChIC), sono state condotte al fine di non interrompere le preziose serie temporali acquisite dal 1994, considerata la valenza ormai “climatica” di queste informazioni.\r\nIn attesa della attribuzione dei fondi per le attività di progetto, anche quest’anno le indispensabili acquisizioni di materiale di consumo (zinchi, batterie, …), marinaresco (boe di spinta, cavi, maniglioni, …) sono state eseguite anticipando le spese su dotazioni economiche non PNRA. In questo contesto non è stato possibile quindi acquisire nuovi strumenti per questa spedizione e, in buona sostanza, la strumentazione rimessa a mare è stata la stessa di quella degli anni precedenti che, in alcuni casi, risale a oltre 15 anni fa. Il materiale di consumo e di ricambio per le trappole di sedimento è stato fornito: dal dott. M. Capello (Univ. di Genova) per i mooring “D” e “L” (3 trappole), dal dott. L. Langone (CNR – ISMAR) per il mooring “B” (1 trappola). Quest’ultimo ha inoltre curato a bordo la conservazione dei campioni acquisiti, la programmazione dei motori, ed in generale il ricondizionamento delle trappole di sedimento per il successivo riposizionamento in mare.\r\nCome specificato nel seguito (se non specificato diversamente gli orari e le date sono in tempo locale – LT), il recupero di due mooring (“B” e “L”) ha visto la preziosa collaborazione del gruppo EchoSurvey (CNR-ISMAR, Ancona) che ha messo a disposizione la strumentazione da pesca (divergenti) e ha partecipato attivamente alle operazioni.\r\nCome tradizione, sono state effettuate calate di CTD/LADCP - per la verifica e taratura dei sensori posizionati sulle catene correntometriche - prima e dopo il loro recupero e posizionamento; le misure sono state eseguite in collaborazione con l’U.O. “Idrologia” del progetto RoME.\r\nNel seguito vengono descritte le attività svolte su ogni catena correntometrica e in tabella I viene riportato la scheda riassuntiva.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “B”</strong><br />\r\nIl mooring “B” è stato recuperato il 29 gennaio e rimesso in mare il 31 gennaio 2014.\r\nUn primo tentativo di recupero è stato effettuato il 6 gennaio 2014 durante l’avvicinamento della nave Italica verso la Base MZS in considerazione delle buone condizioni meteo marine. Nonostante tutte le operazioni fossero state eseguite con successo, sia quelle propedeutiche allo sgancio (wake up dello sganciatore, calcolo della distanza), sia lo sgancio stesso (con la regolare ricezione del segnale di conferma di avvenuto sgancio e posizione verticale di entrambi gli sganciatori), il mooring non è risalito in superficie. Dopo alcune ore di ulteriori tentativi e prove, constatata l’impossibilità di poter effettuare altre operazioni e la urgenza di raggiungere MZS, è stato deciso di abbandonare la zona posticipando altri tentativi di recupero. Grazie alla collaborazione del gruppo EchoSurvey, è stato effettuato un passaggio sulla posizione del mooring rilevando tutta la struttura, sia nella parte di fondo sia superiore, avendo conferma in questo modo della sua effettiva integrità e posizione verticale.\r\nUn secondo tentativo è stato effettuato il giorno 12 gennaio 2014. Ritornati sul posto è stata verificata nuovamente la piena funzionalità di entrambi gli sganciatori che rispondevano regolarmente alle interrogazioni con il segnale di avvenuto sgancio e posizione verticale, nonostante ciò il mooring non risaliva in superficie. Al fine di tentare il recupero del mooring è stata messa in mare una struttura a “U” composta alle due estremità verticali da una boa superficiale sostenente una cima di circa 150 metri appesantita da una catena, entrambe collegate in profondità da una cima orizzontale di circa 250 metri. Questa struttura è stata filata in mare dalla nave Italica a monte della corrente predominante ed è stato atteso il tempo necessario a far derivare la struttura sulla posizione del mooring. Al secondo tentativo il mooring è stato infatti “incocciato”: le boe superficiali, distanti tra loro circa 250 metri, hanno modificato la traiettoria di deriva avvicinandosi tra loro. Dopo circa mezz’ora la nave ha quindi operato per rampinare entrambe le boe e ha iniziato il recupero da poppa. Purtroppo durante questa fase si è notato che le cime andavano in bando testimoniando la perdita di aggancio con il mooring. Non è stato possibile ripetere ulteriori prove per le condizioni del mare; verificata ancora una volta la posizione del mooring, è stato deciso di rimandare nuovamente un ulteriore tentativo di recupero.\r\nIl mooring è stato recuperato il 29 gennaio 2014 operando in stretta collaborazione con il gruppo EchoSurvey presente a bordo (Giovanni Canduci e Giordano Giuliani) che ha messo a disposizione i divergenti e la propria professionalità. Verificata ancora una volta la posizione del mooring, sono stati filati da poppa i divergenti sostenuti da circa 500 metri di cavo d’acciaio e collegati tra loro da cime di kevlar di circa 500 metri, appesantite da una catena. Al secondo tentativo il mooring è stato incocciato e recuperato a bordo senza eccessivi problemi.\r\nL’esame della strumentazione recuperata ha evidenziato una anomala presenza di fouling sulla strumentazione profonda (e non su quella più superficiale) che risultava particolarmente intensa sugli sganciatori e ne aveva impedito lo sgancio, nonostante il meccanismo di svincolo avesse perfettamente funzionato.\r\nDopo la manutenzione del caso, la catena correntometrica è stata riposizionata.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “D”</strong><br />\r\nIl mooring “D” è stato recuperato il 12 gennaio e rimesso in mare il 21 gennaio 2014.\r\nDurante la XXVIII (2011-12) Spedizione il mooring era stato posizionato in mare incrementando il payload e prolungando la sua estensione sino a circa 124 m dalla superficie con la strumentazione fornita dal progetto “2010/A4.01” (sensori termoalini e un profilatore acustico). Per evitare possibili perdite di tutto il mooring, era stato deciso di collegare la parte inferiore con quella superiore (aggiunta per il progetto “2010/A4.01”) mediante un anello debole che avrebbe ceduto in caso di impatto con iceberg.\r\nIl recupero del mooring è stato effettuato in ottime condizioni meteo marine senza però rinvenire la parte superiore relativa al progetto “2010/A4.01”.\r\nA differenza di quanto evidenziato per il mooring “B”, non sono state rinvenute presenze anomale di fouling.\r\nEffettuata l’ordinaria manutenzione della strumentazione, il mooring “D” è stato rimesso in posizione.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “G”</strong><br />\r\nIl mooring “G” è stato recuperato il 23 gennaio e rimesso in mare il 26 gennaio 2014.\r\nEntrambe le operazioni si svolte senza particolari problemi in condizioni meteo marine accettabili. La configurazione del mooring riposizionato.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “L”</strong><br />\r\nIl mooring “L” è stato recuperato il 5 febbraio e rimesso in mare l’8 febbraio 2014.\r\nUn primo tentativo di recupero è stato effettuato l’11 gennaio, durante le operazioni di sbarco del materiale presso MZS, a bordo dell’Icebjorn. La risposta dello sganciatore alle interrogazioni con il modulo di sgancio a bordo dell’Icebjorn è sempre stata frammentaria e poco intellegibile. Analogo risultato si è ottenuto con il modulo di sgancio di rispetto a bordo della Italica. L’Italica ha quindi effettuato un passaggio sul punto teorico per rilevarlo con gli ecoscandagli del gruppo EchoSurvey, in questa indagine è stata identificata solo la strumentazione in prossimità del fondo.\r\nDurante le attività marine in Base, il battello Malippo ha effettuato un passaggio sulla posizione del mooring rilevandolo con l’ecoscandaglio di bordo e verificandone la posizione verticale.\r\nIn seguito a questa informazione è stato deciso di effettuare il recupero secondo le modalità già sperimentate in occasione del recupero del mooring “B” in collaborazione con il gruppo EchoSurvey. Il mooring è stato “incocciato” al primo tentativo l’8 febbraio ed è stato recuperato completamente integro.</p>\r\n\r\n<p align=\"justify\"><strong>Ringraziamenti:</strong><br />\r\nE’ doveroso un sentito ringraziamento:<br />\r\n- al gruppo EchoSurvey (CNR-ISMAR, Ancona) per la entusiastica collaborazione in fase di programmazione e di esecuzione delle operazioni di recupero dei mooring “B” e “L”, nonché per aver messo a disposizione parte della attrezzatura propria;<br />\r\n- al dott. Capello per l’assistenza in Italia e al dott. Langone per l’assistenza in Italia e a bordo nella manutenzione delle trappole di sedimento;<br />\r\n- a tutti coloro che hanno collaborato ai lanci degli XBT (G. Bruzzone, D. Cotterle, M. De Stefano, R. Geletti, G. Zambardino).<br />\r\n- al personale di bordo e del PNRA per l’assistenza continua e per aver coadiuvato con grande professionalità nelle operazioni marinaresche a poppa in occasione del recupero e messa a mare delle catene correntometriche, anche in condizioni meteo marine non facili.</p>\r\n','','full_html'),('node','page',0,15,15,'en',0,'<h1 align=\"center\"><strong>Main Activities</strong></h1>\r\n<table align=\"center\">\r\n	<tbody>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">Williams M., Budillon G., Walker S., Ackley S., Blankenship D., Greenbaum J., Lee S., Lee W. S., 2015</p>\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Observation Activities in the Ross Sea - Current and Future National Contributions to the Southern Ocean Observing System</strong></u></em>”</p>\r\n			<p>SOOS Report Series, #1 (2015).</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/RossSeaReport2015.pdf\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">Rusciano E., Budillon G., Fusco G., Spezie G., 2013</p>\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Evidence of atmosphere–sea ice–ocean coupling in the Terra Nova Bay polynya (Ross Sea—Antarctica)</strong></u></em>”</p>\r\n			<p>Elsevier, Continental Shelf Research Vol. 61–62 (2013) 112–124.</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/Pub4.pdf\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">Budillon G., Castagno P., Aliani S., Spezie G., Padman L., 2011</p>\r\n\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Thermohaline variability and Antarctic bottom water formation at the Ross Sea shelf break</strong></u></em>”</p>\r\n\r\n			<p>Elsevier, Deep-Sea Research Vol. 58 (2011) 1002–1018.</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/Pub1.pdf\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">Catalano G., Budillon G., Aliani S., La Ferla R., Povero P., Ravaioli M., Saggiomo V., Accornero A., Azzaro M., Carrada G. C., Giglio F., Langone L., Mangoni O., Misic C., Modigh M., 2010</p>\r\n\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>The Ross Sea</strong></u></em>”</p>\r\n\r\n			<p>Carbon and Nutrient Fluxes in Continental Margins, Global Change. The IGBP Series. Vol. 6.3.</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/Pub2.pdf\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">Fusco G., Budillon G., Spezie G., 2009</p>\r\n\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Surface heat fluxes and thermohaline variability in the Ross Sea and in Terra Nova Bay polynya</strong></u></em>”</p>\r\n\r\n			<p>Elsevier, Continental Shelf Research Vol. 29 (2009) 1887–1895.</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/Pub3.pdf\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n<h1 align=\"center\"><strong>Ancillary Activities</strong></h1>\r\n<table align=\"center\">\r\n	<tbody>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">A. Russo, A. Artegiani, G. Budillon, E. Paschini, G. Spezie, 1999</p>\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Upper Ocean Thermal Structure and Fronts Between New Zealand and the Ross Sea (Austral Summer 1994-1995 and 1995-1996)</strong></u></em>”</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/......\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">E. Zambianchi, G. Budillon, P. Falco, G. Spezie, 1999</p>\r\n\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Observations of the Dynamics of the Antarctic Circumpolar Current in the Pacific Sector of the Southern Ocean</strong></u></em>”</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/........\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">G. Budillon, S.R. Rintoul, 2003</p>\r\n\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Fronts and upper ocean thermal variability south of New Zealand</strong></u></em>”</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/Budillon_rintoul_AS_2003.pdf\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">Y. Cotroneo, G. Budillon, G. Fusco, G. Spezie, 2013</p>\r\n\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Cold core eddies and fronts of the Antarctic Circumpolar Current south of New Zealand from in situ and satellite data</strong></u></em>”</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/jgrc20193.pdf\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Presentations by University of Naples Parthenope group at the 1st International Conference on The Oceanography of the Ross Sea Antarctica, Lerici (Sp), Italy 1997</strong></u></em>”</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/.........\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Presentations by University of Naples Parthenope group at the 2nd International Conference on the Oceanography of the Ross Sea Antarctica, Ischia (Na), Italy 2001</strong></u></em>”</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/.........\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n		<tr>\r\n			<td>\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Presentations by University of Naples Parthenope group at the 3nd International Conference on the Oceanography of the Ross Sea Antarctica, Venice (Ve), Italy 2005</strong></u></em>”</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/.........\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">Budillon G., Rintoul S. R., Hobart, Australia 2006</p>\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Fronts, temperature, and estimated transports variability in the upper ocean south of New Zealand</strong></u></em>”</p>\r\n			<p>Presentation at the conference “SCAR XXIX / COMNAP XVIII”</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/.......\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">Y. Cotroneo, G. Budillon, G. Fusco, G. Spezie, 2009</p>\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Identificazione di eddies a cuore freddo nella corrente circumpolare antartica da misure in situ e tele rilevate</strong></u></em>”</p>\r\n			<p>Presentation at the conference “Environment Including Global Change – Congresso Fai 2009” </p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/.......\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">Cotroneo Y., Swart S., Ansorge I., Budillon G., Fusco G., 2010</p>\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Quasi synoptical detection of the ACC fronts south of Africa and New Zealand from in situ data</strong></u></em>”</p>\r\n			<p>Presentation at the conference “Scar Conference 2010”</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/.......\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">Budillon G., Cotroneo Y., Swart S., Ansorge I., Fusco G., 2011</p>\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>The Italian SOChIC project in the framework of a global survey of the ACC fronts and mesoscale eddies</strong></u></em>”</p>\r\n			<p>Presentation at the conference “IUGG 2011”</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/.......\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">Cotroneo Y., Swart S., Ansorge I., Budillon G., Fusco G., 2012</p>\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>An international activity to synoptically monitor ACC fronts and mesoscale eddies</strong></u></em>”</p>\r\n			<p>Work presentation at the conference “IPY2012” </p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/.......\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">Cotroneo, Y., Budillon G., Fusco G., Spezie G., 2013</p>\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Cold core eddies and fronts of the Antarctic Circumpolar Current south of New Zealand from in situ and satellite altimetry data</strong></u></em>”</p>\r\n			<p>Presentation at the conference “IAHS – IAPSO – IASPEI Joint Assembly 2013”</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/.......\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">Cotroneo Y., Budillon G., Fusco G., Spezie G., 2013</p>\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>Cold core eddies and fronts of the Antarctic Circumpolar Current south of New Zealand from in situ and satellite data</strong></u></em>”</p>\r\n			<p>Presentation at the conference “XXI Congresso dell’Associazione Italiana di Oceanologia e Limnologia, 2013” </p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/.......\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px;\">Cerrone D., Fusco G., Cotroneo Y., Budillon G., 2013</p>\r\n			<p style=\"margin: 0; text-align: center;\">“<em><u><strong>The Antarctic Circumpolar Wave scenario described as a combination of interannual signals</strong></u></em>”</p>\r\n			<p>Presentation at the conference “First Annual Conference of Società Italiana per le Scienze del Clima, 2013”</p>\r\n			</td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"/sites/all/themes/multipurpose/pubblications/.......\" target=\"_blank\"><img alt=\"testo\" src=\"/sites/all/themes/multipurpose/images/downloadPDF.gif\" style=\"border:0px solid; margin:0px; padding:0px; width:100px\" /></a></td>\r\n		</tr>\r\n	</tbody>\r\n</table>','','full_html'),('node','photo_moorings_2014',0,21,21,'en',0,'','<p>Descrizione del Mooring B</p>\r\n','filtered_html'),('node','page',0,28,28,'en',0,'<h1 align=\"center\">Moorings 2014-2016 (Deployed 2014)</h1>\r\n<table align=\"center\">\r\n	<tbody>\r\n<tr>			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/22\" target=\"_blank\">Mooring L</a></td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/23\" target=\"_blank\">Mooring G</a></td>\r\n\r\n		</tr>\r\n<tr>			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/24\" target=\"_blank\">Mooring D</a></td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/21\" target=\"_blank\">Mooring B</a></td>\r\n\r\n		</tr>\r\n\r\n	</tbody>\r\n</table>\r\n<h1 align=\"center\">Moorings 2012-2014 (Deployed 2012)</h1>\r\n<table align=\"center\">\r\n	<tbody>\r\n<tr>			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/26\" target=\"_blank\">Mooring L</a></td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/36\" target=\"_blank\">Mooring G</a></td>\r\n\r\n		</tr>\r\n<tr>			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/35\" target=\"_blank\">Mooring D</a></td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/34\" target=\"_blank\">Mooring B</a></td>\r\n\r\n		</tr>\r\n\r\n	</tbody>\r\n</table>\r\n<h1 align=\"center\">Moorings 2010-2012 (Deployed 2010)</h1>\r\n<table align=\"center\">\r\n	<tbody>\r\n<tr>			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/115\" target=\"_blank\">Mooring L</a></td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/117\" target=\"_blank\">Mooring G</a></td>\r\n\r\n		</tr>\r\n<tr>			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/118\" target=\"_blank\">Mooring D</a></td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/116\" target=\"_blank\">Mooring B</a></td>\r\n\r\n		</tr>\r\n\r\n	</tbody>\r\n</table>','','full_html'),('node','page',0,30,30,'en',0,'<div><img alt=\"\" src=\"/sites/default/files/xbt_v2.png\" style=\"height:600px; width:610px;\" /></div>\r\n</br>\r\n<p align=\"center\"> <strong>XBT REPEATED OBSERVATION PROGRAMME </strong>\r\n<p align=\"justify\">\r\nSince 1994 The PNRA (Italian National Antarctic Research Program) funded several research programmes focused on the study of southern Ocean thermal properties across the Antarctic Circumpolar Current.\r\nThese project and their evolution represent today one of the Italian contribution to the Southern Ocean Observing System (SOOS).\r\nItalian monitoring of upper layer temperature characteristics of the SO started in the framework of the CLIMA (Climatic Long-term Interactions for the Mass Balance in Antarctica) project and lasted for about 15 years (1994-2017), white lines represent the mean position of ACC fronts in the area.\r\nIn more recent years monitoring activities have been developed in the framework of the SOCHiC (Southern Ocean observing CHokepoints: Italian Contribution), and MORSea (Marine Observatory in the Ross Sea) projects.\r\nIn situ eXpendable BathyTermograph (XBT) observations (see following paragraph for details), combined with continuous surface layer monitoring from ship, Argo temperature-salinity profiles and with satellite products, are used along the repeated transects to study the link between local wind forcing mechanisms and the long term variability and the dynamics of the ACC fronts south of South Africa, New Zealand and in the Drake Passage.\r\nThese projects have led to build various partnership between the University of Naples “Parthenope” and international research institutions such as the South Africans research centres involved in the SAMOC (South Atlantic’s branch of the Meridional Overturning Circulation) project and the Argentines Institution involved in the CANOPO (the Role of the Atlantic Sector of the Southern Ocean in CO2 Sequestration) project.\r\nMoreover the Italian research activities have been carried on using various foreign facilities and research vessels (i.e.: Irizar, Palmer, Agulhas, Agulhas II, Araon)\r\n</p>\r\n<p><a href=\"http://morsea.uniparthenope.it/?q=node/94\" target=\"_blank\">INTERNATIONAL BACKGROUND</a></p>\r\n<p><a href=\"http://morsea.uniparthenope.it/?q=node/95\" target=\"_blank\">INSTRUMENTATION</a></p>\r\n<p><a href=\"http://morsea.uniparthenope.it/?q=node/15\" target=\"_blank\">PUBBLICATIONS</a></p>\r\n\r\n<div>\r\n<table align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td align=\"center\"><strong>Austral Summer</strong></td>\r\n<td align=\"center\"><strong>South Atlantic</strong></td>\r\n<td align=\"center\"><strong>South Pacific</strong></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>1994/1995</strong></td>\r\n<td> </td>\r\n<td align=\"center\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>1995/1996</strong></td>\r\n<td> </td>\r\n<td align=\"center\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>1996/1997</strong></td>\r\n<td> </td>\r\n<td align=\"center\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>1997/1998</strong></td>\r\n<td> </td>\r\n<td align=\"center\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>1998/1999</strong></td>\r\n<td> </td>\r\n<td align=\"center\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>1999/2000</strong></td>\r\n<td> </td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/87\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>2000/2001</strong></td>\r\n<td> </td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/87\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>2001/2001</strong></td>\r\n<td> </td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/87\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>2002/2003</strong></td>\r\n<td> </td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/87\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>2003/2004</strong></td>\r\n<td> </td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/87\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>2004/2005</strong></td>\r\n<td> </td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/87\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>2006/2007</strong></td>\r\n<td> </td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/87\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>2007/2008</strong></td>\r\n<td> </td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/87\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>2009/2010</strong></td>\r\n<td> </td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/87\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>2011/2012</strong></td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/89\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/88\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>2012/2013</strong></td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/91\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/90\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>2013/2014</strong></td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/92\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n<td> </td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>2014/2015</strong></td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/93\" target=\"_blank\"><img href=\" \" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n<td> </td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>2015/2016</strong></td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/124\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/124\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></p></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\"><strong>2016/2017</strong></td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/129\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n<td align=\"center\"><a href=\"http://morsea.uniparthenope.it/?q=node/129\" target=\"_blank\"><img alt=\"\" src=\"/sites/default/files/spunta_verde.gif\" style=\"height:15px; border:0; margin:0;\"/></a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n<p align=\"justify\">\r\nResearch activities along the South Africa – Antarctica have been possible thanks to the cooperation with the university of Cape Town (UCT) and the Council for Scientific and Industrial Research (CSIR). During each cruise an Italian scientist has been  hosted onboard of the R/Vs Agulhas or Agulahs II.\r\nCA 09-10	Agulhas	Dr. Yuri Cotroneo\r\nCA 10-11	Agulhas	Dr. Pasquale Castagno\r\nCA11-12	Agulhas	Dr. Yuri Cotroneo – Co-chief scientist\r\nCA12-13	Agulhas II	Dr. Giuseppe Aulicino\r\n</p>\r\n<p align=\"justify\">\r\nTo get access to XBT data please contact:\r\n<p><em>Prof. Giancarlo Spezie (P.I.)&nbsp;- &nbsp;giancarlo.spezie@uniparthenope.it</em></p>\r\n<p><em>Prof. Giorgio Budillon - giorgio.budillon@uniparthenope.it</em></p>\r\n</p>\r\n<p align=\"justify\">\r\nTo get access to SANAE XBT data please contact:\r\n<p><em>Prof. Isabelle Ansorge&nbsp;- &nbsp;isabelle.ansorge@utc.ac.za</em></p>\r\n</p>\r\n<p align=\"justify\">\r\nXBT data are being progressively added to the National Centers for Environmental Informations database of the NOAA (https://www.ncei.noaa.gov/).\r\n</p>\r\n\r\n<div>\r\n<table>\r\n<tr>\r\n<td align=\"center\"><strong>id</strong></td>\r\n<td align=\"center\"><strong>Title</strong></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">167834</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/167834\">Water temperature from XBT taken from research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 2012-01-13 to 2012-01-19 (NCEI Accession 0167834)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">167835</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/167835\">Water temperature data from XBT taken from research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 2010-01-25 to 2010-01-29 (NCEI Accession 0167835)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">170608</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/170608\">Water temperature data from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 1994-11-03 to 1995-01-01 (NCEI Accession 0170608)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">170765</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/170765\">Water temperature data from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 1995-01-06 to 1995-03-02 (NCEI Accession 0170765)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">171481</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/171481\">Water temperature from XBT taken from research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 1996-01-07 to 1996-02-18 (NCEI Accession 0171481)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">172042</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/172042\">Water temperature from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 1997-01-26 to 1997-02-19 (NCEI Accession 0172042)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">172859</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/172859\">Water temperature data from XBT collected from research vessel Italica in Southern Ocean and Southwest Pacific Ocean from 1997-11-23 to 1998-03-06 (NCEI Accession 0172859)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">173211</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/173211\">Water temperature from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 1999-01-05 to 1999-01-11 (NCEI Accession 0173211)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">173212</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/173212\">Water temperature from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 2000-01-07 to 2000-02-18 (NCEI Accession 0173212)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">173213</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/173213\">Water temperature from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 2001-01-06 to 2001-02-26 (NCEI Accession 0173213)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">173214</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/173214\">Water temperature from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 2001-12-24 to 2001-12-31 (NCEI Accession 0173214)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">173328</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/173328\">Water temperature from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 2003-12-24 to 2003-12-28 (NCEI Accession 0173328)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">173338</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/173338\">Water temperature from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 2003-01-06 to 2003-01-11 (NCEI Accession 0173338)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">173533</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/173533\">Water temperature from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 2005-01-01 to 2005-01-06 (NCEI Accession 0173533)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">174709</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/174709\">Water temperature from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 2007-02-05 to 2007-02-10 (NCEI Accession 0174709)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">174711</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/174711\">Water temperature from XBT taken from the research vessel Italica in the Southern Ocean and Southwest Pacific Ocean from 2008-01-16 to 2008-01-21 (NCEI Accession 0174711)</a></td>\r\n</tr>\r\n\r\n<tr>\r\n<td align=\"center\">174794</td>\r\n<td align=\"justify\"><a href=\"https://www.nodc.noaa.gov/cgi-bin/OAS/prd/accession/details/174794\">Water temperature from XBT taken from the research vessel Araon in the Southern Ocean and Southwest Pacific Ocean from 2013-01-24 to 2013-02-06 (NCEI Accession 0174794)</a></td>\r\n</tr>\r\n</table>\r\nXBT data are being progressively added to the National Centers for Environmental Informations database of the NOAA (https://www.ncei.noaa.gov/).\r\nToday 17 datasets/cruises are available and each of them is associated to a DOI.\r\nSee for example data belonging to the 2011/2012 cruise at the link https://data.nodc.noaa.gov/cgi-bin/iso?id=gov.noaa.nodc:0167834\r\n</div>\r\n\r\n\r\n\r\n<p align=\"center\"><strong>LINKS</strong></p> \r\n<p align=\"justify\">http://www.sippican.com</p>\r\n<p align=\"justify\">http://www.soos.aq</p>\r\n<p align=\"justify\">http://www.aoml.noaa.gov/phod/hdenxbt/index.php</p>\r\n<p align=\"justify\">http://en.wikipedia.org/wiki/S._A._Agulhas</p>\r\n<p align=\"justify\">http://en.wikipedia.org/wiki/S._A._Agulhas_II</p>\r\n<p align=\"justify\">http://en.wikipedia.org/wiki/RV_Araon</p>\r\n<p align=\"justify\">https://www.fleetmon.com/en/vessels/Italica_71874</p>\r\n<p align=\"justify\">http://en.wikipedia.org/wiki/Nathaniel_B._Palmer_%28icebreaker%29</p>\r\n<p align=\"justify\">http://it.wikipedia.org/wiki/ARA_Almirante_Irizar</p>\r\n','','full_html'),('node','page',0,32,32,'en',0,'<h1 align= \"center\"><strong>FLOAT CONTRIBUTION IN THE SOUTHERN OCEAN OBSERVING SYSTEM</strong></h1>\r\n<div align=\"center\"><img alt=\"\" src=\"/sites/default/files/drifter_alive_italy_ANTA_traj_M.png\"/></div>\r\n<p align=\"center\"><strong>Position  of drifters deployed during last campaign. Actual position available at http://nettuno.ogs.trieste.it/jungo/argoitaly/floats.html</b></strong>\r\n<div align=\"center\"><img alt=\"\" src=\"/sites/default/files/float_italy_antartica_traj.png\"/></div>\r\n<p align=\"center\"><strong>Position  of floats deployed during last campaign. Actual position available at http://nettuno.ogs.trieste.it/jungo/argoitaly/drifters.html</b></strong>\r\n<p align=\"justify\">Research programs over the past 15 years have demonstrated that sustained observations of the SO (Southern Ocean) are feasible. For example, repeated hydrographic sections have been used to quantify the evolving ocean inventory of heat and carbon, to demonstrate that changes are occurring throughout the full depth of the SO, and to provide a platform for a wide suite of interdisciplinary observations. Satellites are providing circumpolar, year-round coverage of physical and biological variables and sea ice properties. Moorings are providing time-series information on velocities and water properties in critical regions. Bottom pressure recorders (often enhanced with inverted echo sounders) are routinely monitoring flows of the major current systems at key choke points like Drake Passage, whilst conventional tide gauges at coastal locations are useful in this context and also for a range of other applications, including long-term sea level variability and change studies.</p>\r\n<p align=\"justify\">Classical oceanographic data collected by ships (CTD casts, along track measurements, XBT/XCTD casts, etc…) in the SO are deeply affected by temporal and spatial limitations. Ice cover and sea-weather conditions, limit the sampling at the summer season and in some geographic areas. The development of autonomous profiling floats now allows broad-scale, year-round measurements of the interior of the SO (to 2 km depth) to be made for the first time. The ocean beneath the sea ice, inaccessible with traditional platforms, is being measured with special polar profiling floats and miniaturized oceanographic sensors attached to marine mammals. Moreover, ocean gliders now offer the possibility of making real-time multi-disciplinary measurements of the upper 1000 m of the water column, and have recently been deployed for the first time around Antarctica. Measurements of biological distributions and processes using net tows, continuous plankton recorders, and acoustics are providing new insights into the coupling of physical, biogeochemical and ecological processes. Autonomous underwater vehicles are exploring the ocean deep beneath ice shelves.</p>\r\n<p align=\"justify\">All of the key science challenges require sustained, broad-scale measurements of the ocean state, measurements that can only be obtained using autonomous platforms such as profiling floats. Basic principles of float functioning is described here (<a href=\"http://morsea.uniparthenope.it/?q=node/108\">Functioning</a>)</p>\r\n<p align=\"justify\">A sustained commitment to maintenance of a profiling float array in the SO is critical. One of the most important research projects dedicated to float implementation and data collection also in the SO is the ARGO (Array for Real-time Geostrophic Oceanography) programme. A short summary of the ARGO programme is offered at this link (<a href=\"http://morsea.uniparthenope.it/?q=node/109\">ARGO</a>)</p>\r\n<p align=\"justify\">ARGO has made a particularly significant contribution to observations of remote areas like the SO. The number of profiles collected from ARGO floats is already higher than the number of profiles collected during the entire history of ship-based oceanography in this region. Floats with oxygen sensors are beginning to be deployed in the SO and we can anticipate that with time the capacity to measure additional variables from floats will increase. The float array needs to extend to seasonally ice-covered seas, through the use of ice-capable floats and acoustic tracking of floats. The first priority is to maintain the ARGO network at the nominal ARGO density (1 float per 3 degree longitude x 3 degree latitude square, or roughly 970 floats south of 40°S). The extension of the system to sample under sea ice is also important, as some of the most important changes are occurring near the ice shelves and within the sea ice zone. Floats capable of deeper profiling would be of particular value in the SO, where significant changes have been observed below 2000 m. Oxygen sensors will provide useful information on ventilation processes and the carbon cycle. Sensors to measure a wider range of biological and chemical parameters (e.g. bio-optics, CO2 system, nutrients) are needed to relate variations in the physical environment to biogeochemistry and ecosystem processes.</p>\r\n<p align=\"justify\">The Italian contribution to float population in the Mediterranean Sea, Black Sea and in the SO is represented by activities developed in the framework of ARGO-ITALY.</p>\r\n<p align=\"justify\">ARGO-ITALY is the Italian component of a worldwide in situ global observing system, based on autonomous profiling floats, surface drifters, gliders and ship-of-opportunity measurements. It is primarily focused on the Italian seas, and the Mediterranean and Black seas, and includes observations of temperature, salinity, currents and biogeochemical/optical properties of seawater. The ARGO-ITALY objective is to provide a significant and sustained Italian contribution to the global ocean monitoring.</p>\r\n<p align=\"justify\">The ARGO-ITALY objective is to provide a significant and sustained Italian contribution to the global ocean monitoring. ARGO-ITALY contributes to international programs such as ARGO and Euro-ARGO (global monitoring of water properties with profiling floats), GDP (Global Drifter Program to measure near-surface temperature and currents), EGO (gliding vehicles to measure water properties) and SOOP (Ship-Of-Opportunity Program to temperature profiles) which have been developed to monitor the entire World Ocean on a long term basis. ARGO-ITALY is a cost-effective long-term monitoring system that is a unique source of information to study the role of the oceans on the climate system. It also provides the data required by operational ocean monitoring systems in order to improve significantly extended forecasts of the atmosphere and oceans.</p>\r\n<p align=\"justify\">ARGO-ITALY contributes to programs of operational oceanography, such as MOON (Mediterranean Operational Oceanography Network) and MyOcean (FP7 European project) and is essential for the production of marine core and downstream services products of GMES (Global Monitoring for Environment and Security). It is also an important component of GEOSS (Global Earth Observation System of Systems). ARGO-ITALY is funded by the Italian Ministry of Instruction, University and Research (MIUR) since 2011.</p>\r\n<p align=\"justify\">ARGO-ITALY activities in the S.O. started in 2013 and are still ongoing.</p>\r\n<p align=\"justify\">The number of total floats released in the S.O. and the amount of floats per year are both increasing. Table 1 shows the number and details of floats per year and a rapid link to cruise details.</p>\r\n<table align=\"center\">\r\n	<tbody>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Year</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; text-align:center; font-weight: bold;\">Number of floats</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Number of drifters</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Cruise Details</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Ship</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">PNRA expedition</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">2013</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">3</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">0</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\"><a href=\"http://morsea.uniparthenope.it/?q=node/110\">report</a></p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">R/V Araon</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\"><a href=\" \">XXVIII</a></p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">2014</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">7</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">0</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\"><a href=\"http://morsea.uniparthenope.it/?q=node/111\">report</a></p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">R/V Italica</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\"><a href=\"http://morsea.uniparthenope.it/?q=node/14\">XXIX</a></p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">2015</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">10</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">10</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\"><a href=\"http://morsea.uniparthenope.it/?q=node/112\">report</a></p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">R/V Araon</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\"><a href=\"http://morsea.uniparthenope.it/?q=node/45\">XXX</a></p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>','','full_html'),('node','page',0,33,33,'en',0,'<div>\r\nProf. Giancarlo Spezie (p.i.)\r\nProf. Giorgio Budillon (co p.i.)\r\n</div>\r\n</br>\r\n<div>\r\n<h2>Research Team</h2>\r\nDr. Stefano Aliani - Consiglio Nazionale delle Ricerche (ISMAR La Spezia)\r\nDr. Giuseppe Aulicino - Università degli Studi di Napoli \"Parthenope\" (DiST)\r\nProf. Giorgio Budillon - Università degli Studi di Napoli \"Parthenope\" (DiST)\r\nDr. Marco Capello – Università degli Studi di Genova (DiSTAV)\r\nDr. Pasquale Castagno - Università degli Studi di Napoli \"Parthenope\" (DiST)\r\nDr. Yuri Cotroneo - Università degli Studi di Napoli \"Parthenope\" (DiST)\r\nDr. Arturo De Alteris - Università degli Studi di Napoli \"Parthenope\" (DiST)\r\nDr. Massimo De Stefano - Università degli Studi di Napoli \"Parthenope\" (DiST)\r\nDr. Diana Di Luccio - Università degli Studi di Napoli \"Parthenope\" (DiST)\r\nDr. Pierpaolo Falco – Università degli Studi di Napoli \"Parthenope\" (DiST)\r\nDr. Giannetta Fusco - Università degli Studi di Napoli \"Parthenope\" (DiST)\r\nDr. Federico Giglio – Consiglio Nazionale delle Ricerche (ISMAR Bologna)\r\nDr. Leonardo Langone – Consiglio Nazionale delle Ricerche (ISMAR Bologna)\r\nDr. Luigi Marziani - Università degli Studi di Napoli \"Parthenope\" (DiST)\r\nDr. Raffaele Montella - Università degli Studi di Napoli \"Parthenope\" (DiST)\r\nDr. Elio Paschini – Consiglio Nazionale delle Ricerche (ISMAR Ancona)\r\nDr. Pierluigi Penna – Consiglio Nazionale delle Ricerche (ISMAR Ancona)\r\nDott.ssa Mariangela Ravaioli - Consiglio Nazionale delle Ricerche (ISMAR Bologna)\r\nProf. Spezie - Università degli Studi di Napoli \"Parthenope\" (DiST)\r\nDr. Giovanni Zambardino - Università degli Studi di Napoli \"Parthenope\" (DiST)\r\n    <div>','','full_html'),('node','page',0,37,37,'en',0,'<form method=\"post\" action=\"/sites/all/themes/multipurpose/mooring.php\">\r\n<fieldset>\r\n <legend>Select the mooring</legend>\r\n <input type=\"checkbox\" name=\"mooring\" value=\"L\"> mooring L\r\n</br>\r\n<input type=\"checkbox\" name=\"mooring\" value=\"G\"> mooring G\r\n</br>\r\n<input type=\"checkbox\" name=\"mooring\" value=\"D\"> mooring D\r\n</br>\r\n<input type=\"checkbox\" name=\"mooring\" value=\"B\"> mooring B\r\n</fieldset>\r\n<fieldset>\r\n <legend>Select the period</legend>\r\n <input type=\"checkbox\" name=\"anno\" value=\"2012\"> 2010-2012\r\n</br>\r\n<input type=\"checkbox\" name=\"anno\" value=\"2014\"> 2012-2014\r\n</fieldset>\r\n<input type=\"submit\" name=\"submit\" value=\"invia\">\r\n</form>','','full_html'),('node','page',0,39,39,'und',0,'<table class=MsoTableGrid border=1 cellspacing=0 cellpadding=0 style=\'border-collapse:collapse;border:none;mso-border-alt:solid windowtext .5pt; mso-yfti-tbllook:1184;mso-padding-alt:0cm 5.4pt 0cm 5.4pt\'>\r\n <tr style=\'mso-yfti-irow:0;mso-yfti-firstrow:yes\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal align=center style=\'margin-bottom:0cm;margin-bottom:.0001pt; text-align:center;line-height:normal\'><b style=\'mso-bidi-font-weight:normal\'><span style=\'font-size:16.0pt;mso-bidi-font-size:11.0pt\'>MOORING L</span><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:1\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;\r\n  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>Cruise <span class=SpellE>deployment</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>PNRA - XXV <span class=SpellE>Expedition</span> – 2009/10</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:2\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>Cruise <span class=SpellE>recovery</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>PNRA - XXVII <span class=SpellE>Expedition</span> - 2011/12</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:3\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>Coordinates</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>74.76165 S 164.14038 E</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:4\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;\r\n  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>Water <span class=SpellE>depth</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>126 m</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>Magnetic</span> <span class=SpellE>declination</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>137°N</p>\r\n  </td>\r\n </tr>\r\n<tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>deployment</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>09/02/2010 18:58:00</p>\r\n  </td>\r\n </tr>\r\n<tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>recovery</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>29/01/2012 14:30:00 </p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:6\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal align=center style=\'margin-bottom:0cm;margin-bottom:.0001pt; text-align:center;line-height:normal\'><b style=\'mso-bidi-font-weight:normal\'><span style=\'font-size:12.0pt;mso-bidi-font-size:11.0pt\'>INSTRUMENT</span><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:7\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;\r\n  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;\r\n  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;\r\n  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Depth</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Sampling</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left: none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:8\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/79\">AANDERAA RCM7 SN 11974</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>40 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>30 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>U, V , T</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:9\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:10\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data </p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>09/02/2010<span style=\'mso-spacerun:yes\'>  </span>19:32:00</p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span lang=EN-US style=\'mso-ansi-language:EN-US\'>Stop (u, v) : 26/02/2011 12:02:00 \r\n <span  style=\'mso-spacerun:yes\'>Stop (T) : 12/11/2011  08:32:00  </span></span></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:11\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:12\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:13\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span  class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n</table>\r\n','','full_html'),('node','page',0,40,40,'und',0,'<table class=MsoTableGrid border=1 cellspacing=0 cellpadding=0 style=\'border-collapse:collapse;border:none;mso-border-alt:solid windowtext .5pt; mso-yfti-tbllook:1184;mso-padding-alt:0cm 5.4pt 0cm 5.4pt\'>\r\n <tr style=\'mso-yfti-irow:0;mso-yfti-firstrow:yes\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal align=center style=\'margin-bottom:0cm;margin-bottom:.0001pt; text-align:center;line-height:normal\'><b style=\'mso-bidi-font-weight:normal\'><span style=\'font-size:16.0pt;mso-bidi-font-size:11.0pt\'>MOORING L</span><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:1\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;\r\n  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>Cruise <span class=SpellE>deployment</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>PNRA - XXVII <span class=SpellE>Expedition</span> - 2011/12</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:2\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>Cruise <span class=SpellE>recovery</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>PNRA - XXIX <span class=SpellE>Expedition</span> - 2013/14</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:3\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>Coordinates</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>74.76165 S<span style=\'mso-spacerun:yes\'>  </span>164.14038 E</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:4\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>Water <span class=SpellE>depth</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>149 m</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>Magnetic</span> <span class=SpellE>declination</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>137°N</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:6\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal align=center style=\'margin-bottom:0cm;margin-bottom:.0001pt; text-align:center;line-height:normal\'><b style=\'mso-bidi-font-weight:normal\'><span style=\'font-size:12.0pt;mso-bidi-font-size:11.0pt\'>INSTRUMENT</span><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:7\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><b style=\'mso-bidi-font-weight:normal\'>Depth<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left: none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><b style=\'mso-bidi-font-weight:normal\'>Sampling<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left: none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b style=\'mso-bidi-font-weight:normal\'></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:8\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/80\">AANDERAA RCM7 SN 11559</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>144 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left: none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>60 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left: none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>U, V, Mod, Dir, T</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:9\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:10\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>Raw</span> data </p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>31/01/2012 10:00:00</p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt; border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt; border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt; mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span lang=EN-US style=\'mso-ansi-language:EN-US\'>08/11/2013<span style=\'mso-spacerun:yes\'>  </span>08:00:00</span></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:11\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;\r\n  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:12\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:13\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:15\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:16\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;   padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><b style=\'mso-bidi-font-weight:normal\'>Depth<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left: none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><b style=\'mso-bidi-font-weight:normal\'>Sampling<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left: none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:17\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/81\">AANDERAA RCM7 SN 11974</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>62 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left: none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>60 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left: none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>U, V, Mod, Dir, T</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:18\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:19\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>Raw</span> data </p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>31/01/2012 11:00:00</p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt; border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt; border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt; mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span lang=EN-US style=\'mso-ansi-language:EN-US\'>04/02/2014<span style=\'mso-spacerun:yes\'>  </span>19:00:00</span></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:20\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:21\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:22\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>3</p>\r\n  </td>\r\n </tr>\r\n</table>','','full_html'),('node','page',0,41,41,'und',0,'<table class=MsoTableGrid border=1 cellspacing=0 cellpadding=0 style=\'border-collapse:collapse;border:none;mso-border-alt:solid windowtext .5pt; mso-yfti-tbllook:1184;mso-padding-alt:0cm 5.4pt 0cm 5.4pt\'>\r\n <tr style=\'mso-yfti-irow:0;mso-yfti-firstrow:yes\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal align=center style=\'margin-bottom:0cm;margin-bottom:.0001pt;  text-align:center;line-height:normal\'><b style=\'mso-bidi-font-weight:normal\'><span  style=\'font-size:16.0pt;mso-bidi-font-size:11.0pt\'>MOORING G</span><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:1\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Cruise <span class=SpellE>deployment</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>PNRA - XXV <span class=SpellE>Expedition</span> – 2009/10</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:2\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Cruise <span class=SpellE>recovery</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>PNRA - XXVII <span class=SpellE>Expedition</span> - 2011/12</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:3\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Coordinates</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>72.39952 S 172.97842 E</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:4\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Water <span class=SpellE>depth</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>522 m</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Magnetic</span> <span class=SpellE>declination</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>106°N</p>\r\n  </td>\r\n </tr>\r\n<tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>deployment</span> </p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>31/01/2010  11:36:00</p>\r\n  </td>\r\n </tr>\r\n<tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>recovery</span> </p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>26/01/2012   ̴22:00:00 </p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:5\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal align=center style=\'margin-bottom:0cm;margin-bottom:.0001pt;  text-align:center;line-height:normal\'><b style=\'mso-bidi-font-weight:normal\'><span  style=\'font-size:12.0pt;mso-bidi-font-size:11.0pt\'>INSTRUMENT</span><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:6\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Depth</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Sampling</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n    <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:7\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/72\">AANDERAA RCM7 SN 11565</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>514 m<o:p></o:p></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>30 min<o:p></o:p></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>U, V , Mod, Dir, AWT<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:8\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b><o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:9\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;\r\n  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data <o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0<o:p></o:p></p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>31/01/2010  12:28:00<o:p></o:p></p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span lang=EN-US style=\'mso-ansi-language:EN-US\'>13/02/2011  <span  style=\'mso-spacerun:yes\'>  </span>06:28:00<o:p></o:p></span></p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:10\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span><o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:11\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span><o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:12\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span  class=SpellE>Parthenope</span> 09/2014<o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:13\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:14\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Depth</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Sampling</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:15\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/74\">SEACAT SBE39 SN 1214</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>494 m<o:p></o:p></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>10 min<o:p></o:p></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>T<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:16\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b><o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:17\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data <o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0<o:p></o:p></p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>31/01/2010  <span style=\'mso-spacerun:yes\'>  </span>11:49:00<o:p></o:p></p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span lang=EN-US style=\'mso-ansi-language:EN-US\'>26/01/2012  <span  style=\'mso-spacerun:yes\'>  </span>08:49:00<o:p></o:p></span></p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:18\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span><o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:19\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span><o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:20\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span  class=SpellE>Parthenope</span> 09/2014<o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:21\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:22\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Depth</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Sampling</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:23\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/73\">SEACAT SBE39 SN 1211</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>474 m<o:p></o:p></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>10 min<o:p></o:p></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>T<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:24\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b><o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:25\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data <o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0<o:p></o:p></p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>31/01/2010  <span style=\'mso-spacerun:yes\'>  </span>11:46:00<o:p></o:p></p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span lang=EN-US style=\'mso-ansi-language:EN-US\'>26/01/2012  <span  style=\'mso-spacerun:yes\'>  </span>08:06:00<o:p></o:p></span></p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:26\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span><o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:27\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span><o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:28\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span class=SpellE>Parthenope</span> 09/2014<o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:29\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:30\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Depth</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Sampling</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:31\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/71\">AANDERAA RCM7 SN 11199</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>454 m<o:p></o:p></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>30 min<o:p></o:p></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>U, V, Mod, Dir, T<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:32\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b><o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:33\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data <o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0<o:p></o:p></p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>01/02/2010  01:58:00<o:p></o:p></p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt; mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>28/05/2011  <span style=\'mso-spacerun:yes\'>  </span>00:28:00<o:p></o:p></p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:34\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span><o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:35\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span><o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:36;mso-yfti-lastrow:yes\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span class=SpellE>Parthenope</span> 09/2014<o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>3<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n</table>','','full_html'),('node','page',0,42,42,'und',0,'<table class=MsoTableGrid border=1 cellspacing=0 cellpadding=0 style=\'border-collapse:collapse;border:none;mso-border-alt:solid windowtext .5pt; mso-yfti-tbllook:1184;mso-padding-alt:0cm 5.4pt 0cm 5.4pt\'>\r\n <tr style=\'mso-yfti-irow:0;mso-yfti-firstrow:yes\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal align=center style=\'margin-bottom:0cm;margin-bottom:.0001pt;  text-align:center;line-height:normal\'><b style=\'mso-bidi-font-weight:normal\'><span  style=\'font-size:16.0pt;mso-bidi-font-size:11.0pt\'>MOORING G</span><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:1\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Cruise <span class=SpellE>deployment</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>PNRA - XXVII<span class=SpellE>Expedition</span> – 2011/12</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:2\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Cruise <span class=SpellE>recovery</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>PNRA - XXIX <span class=SpellE>Expedition</span> - 2013/14</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:3\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Coordinates</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>72.39585 S 172.98543 E</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:4\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Water <span class=SpellE>depth</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>532 m</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Magnetic</span> <span class=SpellE>declination</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>106°N</p>\r\n  </td>\r\n </tr>\r\n<tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>deployment</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>26/01/2012 16:25:00</p>\r\n  </td>\r\n </tr>\r\n<tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>recovery</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>23/01/2014   tra 01:00 e 02:00</p>\r\n  </td>\r\n </tr>\r\n<tr style=\'mso-yfti-irow:5\'>\r\n  <tr style=\'mso-yfti-irow:5\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal align=center style=\'margin-bottom:0cm;margin-bottom:.0001pt;  text-align:center;line-height:normal\'><b style=\'mso-bidi-font-weight:normal\'><span  style=\'font-size:12.0pt;mso-bidi-font-size:11.0pt\'>INSTRUMENT</span><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:6\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Depth</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Sampling</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n    <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:7\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/76\">AANDERAA RCM7 SN 11560</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>517 m<o:p></o:p></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>60 min<o:p></o:p></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>U, V, Mod, Dir, T<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:8\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b><o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:9\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;\r\n  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data <o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0<o:p></o:p></p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>26/01/2012 17:00:00<o:p></o:p></p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span lang=EN-US style=\'mso-ansi-language:EN-US\'>22/01/2014<span  style=\'mso-spacerun:yes\'>  </span>23:00:00<o:p></o:p></span></p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:10\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span><o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:11\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span><o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:12\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span  class=SpellE>Parthenope</span> 09/2014<o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:13\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:14\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Depth</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Sampling</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:15\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/77\">SEACAT SBE39 SN 1213</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>495 m<o:p></o:p></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>5 min<o:p></o:p></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>T<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:16\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b><o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:17\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data <o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0<o:p></o:p></p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>26/01/2012<span style=\'mso-spacerun:yes\'>  </span>16:35:00<o:p></o:p></p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span lang=EN-US style=\'mso-ansi-language:EN-US\'>23/01/2014<span  style=\'mso-spacerun:yes\'>  </span>00:25:00<o:p></o:p></span></p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:18\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span><o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:19\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span><o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:20\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span  class=SpellE>Parthenope</span> 09/2014<o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:21\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:22\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Depth</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Sampling</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:23\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/78\">SEACAT SBE39 SN 1210</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>475 m<o:p></o:p></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>5 min<o:p></o:p></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>T<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:24\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b><o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:25\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data <o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0<o:p></o:p></p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>26/01/2012<span style=\'mso-spacerun:yes\'>  </span>16:35:00<o:p></o:p></p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span lang=EN-US style=\'mso-ansi-language:EN-US\'>23/01/2014<span  style=\'mso-spacerun:yes\'>  </span>00:25:00<o:p></o:p></span></p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:26\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span><o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:27\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span><o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:28\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span class=SpellE>Parthenope</span> 09/2014<o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:29\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:30\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Depth</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Sampling</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:31\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/75\">AANDERAA RCM7 SN 9016</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>455 m<o:p></o:p></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>60 min<o:p></o:p></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>U, V, Mod, Dir<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:32\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b><o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:33\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data <o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0<o:p></o:p></p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>26/01/2012 17:00:00<o:p></o:p></p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt; mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>23/01/2014<span style=\'mso-spacerun:yes\'>  </span>00:00:00<o:p></o:p></p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:34\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span><o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:35\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span><o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:36;mso-yfti-lastrow:yes\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span class=SpellE>Parthenope</span> 09/2014<o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>3<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n</table>','','full_html'),('node','page',0,43,43,'und',0,'<table class=MsoTableGrid border=1 cellspacing=0 cellpadding=0 style=\'border-collapse:collapse;border:none;mso-border-alt:solid windowtext .5pt; mso-yfti-tbllook:1184;mso-padding-alt:0cm 5.4pt 0cm 5.4pt\'>\r\n <tr style=\'mso-yfti-irow:0;mso-yfti-firstrow:yes\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal align=center style=\'margin-bottom:0cm;margin-bottom:.0001pt;  text-align:center;line-height:normal\'><b style=\'mso-bidi-font-weight:normal\'><span  style=\'font-size:16.0pt;mso-bidi-font-size:11.0pt\'>MOORING D</span><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:1\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Cruise <span class=SpellE>deployment</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>PNRA - XXV <span class=SpellE>Expedition</span> – 2009/10</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:2\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Cruise <span class=SpellE>recovery</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>PNRA - XXVII <span class=SpellE>Expedition</span> - 2011/12</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:3\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Coordinates</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>75.13338 S 164.52256 E</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:4\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Water <span class=SpellE>depth</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1086 m</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Magnetic</span> <span class=SpellE>declination</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>138°N</p>\r\n  </td>\r\n </tr>\r\n<tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>deployment</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>06/02/2010  02:12:00</p>\r\n  </td>\r\n </tr>\r\n<tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>recovery</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>23/01/2012</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:6\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal align=center style=\'margin-bottom:0cm;margin-bottom:.0001pt;  text-align:center;line-height:normal\'><b style=\'mso-bidi-font-weight:normal\'><span  style=\'font-size:12.0pt;mso-bidi-font-size:11.0pt\'>INSTRUMENT</span><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:7\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Depth<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Sampling<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:8\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/57\">AANDERAA RCM7 SN 11559</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1078 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>30 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>U, V , Mod, Dir, T, AWT</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:9\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:10\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data </p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>06/02/2010 02:46:00</p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>10/08/2011<span style=\'mso-spacerun:yes\'>  </span>04:46:00</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:11\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:12\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:13\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span  class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:15\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:16\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Depth<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Sampling<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:17\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/61\">SEACAT SBE16 SN 1437</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1036 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>30 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left: none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>T, S</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:18\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:19\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data </p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none; border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>06/02/2010<span style=\'mso-spacerun:yes\'>  </span>02:34:00</p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>23/01/2012<span style=\'mso-spacerun:yes\'>  </span>15:04:00</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:20\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:21\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:22\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span  class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:24\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:25\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Depth<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Sampling<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:26\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/63\">SEACAT SBE39 SN 1213</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>950 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>5 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>T</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:27\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:28\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data </p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>06/02/2010 <span style=\'mso-spacerun:yes\'> </span>02:23:00</p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>23/01/2012<span style=\'mso-spacerun:yes\'>  </span>15:18:00</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:29\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:30\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:31\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span  class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:33\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:34\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Depth<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Sampling<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:35\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/60\">AANDERAA RCM9 SN 975</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>838 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>30 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>U, V, Mod, Dir, AWT</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:36\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:37\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data </p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>06/02/2010 02:46:00</p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>16/04/2010<span style=\'mso-spacerun:yes\'>  </span>10:46:00</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:38\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:39\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:40\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:42\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:43\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Depth<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Sampling<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:44\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/62\">SEACAT SBE39 SN 1210</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>694 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt; line-height: normal\'>5 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>T</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:45\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:46\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data </p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>06/02/2010<span style=\'mso-spacerun:yes\'>  </span>02:48:00</p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>23/01/2012<span style=\'mso-spacerun:yes\'>  </span>15:18:00</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:47\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:48\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:49\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span\r\n  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span  class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:51\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:52\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;   padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Depth<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Sampling<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:53\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/59\">AANDERAA RCM7 SN 11560</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>494 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>30 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>U, V, Mod, Dir, T</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:54\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:55\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data </p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>06/02/2010 02:46:00</p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>21/11/2010<span style=\'mso-spacerun:yes\'>  </span>03:46:00</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:56\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:57\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:58\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:60\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:61\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Depth<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Sampling<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:62\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/58\">SEACAT SBE16 SN 1433</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>463 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>30 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>T, S</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:63\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:64\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>Raw</span> data </p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=5 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>06/02/2010<span style=\'mso-spacerun:yes\'>  </span>02:55:00</p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=5 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>23/01/2012 14:25:00</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:65\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:66\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:67\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span   class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span  class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:68\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:normal\'>Correzione salinità CTD</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n</table>','','full_html'),('node','page',0,44,44,'und',0,'<table class=MsoTableGrid border=1 cellspacing=0 cellpadding=0 style=\'border-collapse:collapse;border:none;mso-border-alt:solid windowtext .5pt; mso-yfti-tbllook:1184;mso-padding-alt:0cm 5.4pt 0cm 5.4pt\'>\r\n <tr style=\'mso-yfti-irow:0;mso-yfti-firstrow:yes\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal align=center style=\'margin-bottom:0cm;margin-bottom:.0001pt;  text-align:center;line-height:normal\'><b style=\'mso-bidi-font-weight:normal\'><span  style=\'font-size:16.0pt;mso-bidi-font-size:11.0pt\'>MOORING D</span><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:1\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Cruise <span class=SpellE>deployment</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>PNRA - XXVII<span class=SpellE>Expedition</span> - 2011/12</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:2\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Cruise <span class=SpellE>recovery</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>PNRA - XXIX <span class=SpellE>Expedition</span> - 2013/14</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:3\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Coordinates</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>75.12955 S 164.84876 E</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:4\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Water <span class=SpellE>depth</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1117 m</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Magnetic</span> <span class=SpellE>declination</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>138°N</p>\r\n  </td>\r\n </tr>\r\n<tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>deployment</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>01/02/2012  22:13:00</p>\r\n  </td>\r\n </tr>\r\n<tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>recovery</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>11/01/2014  15:30:00</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:6\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal align=center style=\'margin-bottom:0cm;margin-bottom:.0001pt;  text-align:center;line-height:normal\'><b style=\'mso-bidi-font-weight:normal\'><span  style=\'font-size:12.0pt;mso-bidi-font-size:11.0pt\'>INSTRUMENT</span><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:7\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Depth<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Sampling<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:8\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/66\">AANDERAA RCM7 SN 11565</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1112 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>60 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>U, V, Mod, Dir, T</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:9\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:10\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data </p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>01/02/2012  23:00:00</p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt; mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>11/01/2014 <span style=\'mso-spacerun:yes\'>  </span>15:00:00</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:11\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:12\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:13\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span  class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:15\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:16\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;\r\n  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Depth<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Sampling<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:17\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/68\">SEACAT SBE16 SN 1437</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1069 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>30 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>T, S</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:18\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:19\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>01/02/2012  <span style=\'mso-spacerun:yes\'>  </span>22:30:00</p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>11/01/2014  <span style=\'mso-spacerun:yes\'>  </span>15:00:00</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:20\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:21\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:22\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span  class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:24\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:25\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Depth<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Sampling<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:26\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt; border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;\r\n  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/69\">SEACAT SBE39 SN 1211</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>966 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>10 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>T</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:27\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:28\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data </p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>01/02/2012 <span style=\'mso-spacerun:yes\'> </span>22:30:00</p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>11/01/2014<span style=\'mso-spacerun:yes\'>  </span>15:00:00</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:29\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:30\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:31\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span  class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:33\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:\r\n  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:34\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Depth<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Sampling<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:35\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/65\">AANDERAA RCM7 SN 11199</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>875 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>60 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>U, V, Mod, Dir</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:36\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:37\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data </p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>01/02/2012  23:04:00</p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>11/01/2014<span style=\'mso-spacerun:yes\'>  </span>15:04:00</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:38\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:39\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:40\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span  class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:42\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:43\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Depth<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Sampling<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:44\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/70\">SEACAT SBE39 SN 1214</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>739 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>10 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>T</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:45\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:\r\n  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:46\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data </p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>01/02/2012 <span style=\'mso-spacerun:yes\'>  </span>22:30:00</p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>11/01/2014<span style=\'mso-spacerun:yes\'>  </span>15:00:00</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:47\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:48\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:49\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span  class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:51\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:52\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Depth<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Sampling<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:53\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/64\">AANDERAA RCM7 SN 9022</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>539 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>60 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>U, V, Mod, Dir</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:54\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:55\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data </p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>01/02/2012  22:30:00</p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>11/01/2014  <span style=\'mso-spacerun:yes\'>  </span>14:30:00</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:56\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:57\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt; padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:58\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span  class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:60\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:61\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Depth<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>Sampling<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:62\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/67\">SEACAT SBE16 SN 1433</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>509 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>30 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>T, S</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:63\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext.5pt;padding:0cm 5.4pt 0cm 5.4pt\'>  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:64\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Raw</span> data </p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=5 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>01/02/2012<span style=\'mso-spacerun:yes\'>  </span>22:30:00</p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=5 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>11/01/2014 15:00:00</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:65\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:66\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:67\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span  class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:68\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Correzione salinità CTD</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n</table>','','full_html'),('node','page',0,45,45,'en',0,'<h1 align= \"center\"><strong>Italian field activities in the Pacific Sector of the ACC</strong></h1>\r\n<h2 align=\"center\"><strong>Austral Summer 2014-2015</strong></h2>\r\n<h3 align=\"center\"><strong>30th Italian Expedition in Antarctica (PNRA XXX)</strong></h3>\r\n</br>\r\n<p align=\"justify\">The absence of continental barriers across the latitude band of Drake Passage permits an Antarctic Circumpolar Current (ACC) to flow and act as the primary driver for inter-basin exchanges. Due to its important climate impact, the ACC band is an area of high interest, especially since global ocean temperatures have been shown to increase in the last. Hydrographic observations are thus important as they aid the description and understanding of the processes which occur within the Southern Ocean and across the ACC. \r\nThe oceanographic Italian field activities in the Southern Ocean during Austral summer 2014-15 will be carried on in the framework of the MORSea project (http://morsea.uniparthenope.it/, founded by the Italian PNRA - National Program for Antarctic Research) and they will be focused on the in situ monitoring of the Pacific Sector of the ACC - between New Zealand and the Ross Sea - by means of XBT, floats, and drifters. Two Italian scientists of University of Napoli “Parthenope” will be host onboard of the South Korean R/V Araon in the framework of the collaboration between Italian PNRA and KOPRI (Korea Polar Research Institute).</p>\r\nThree main actions will be undertaken during the cruise:\r\n•	collection of in situ temperature data in the layer 0-800m;\r\n•	release of 10 SVP2 surface drifters;\r\n•	deployment of 10 ARVOR and PROVOR floats.\r\n<p align=\"justify\">Main focus of the cruise is the continuation of the about twenty year-long time series of temperature data along the endurance line New Zealand - Antarctica. Since 1994 in situ temperature data of the surface layer of the southern ocean have been collected in the framework of the Italian CLIMA and SOChIC projects. Up to 2013, 25 transects between New Zealand and the Ross Sea have been realized by the R/V Italica mainly in January and February (figure 1) collecting SST, SSS, XBT and XCTD data.\r\nDuring Austral summer 2014/2015 field activities will increase and preserve the importance of the large dataset collected since 1994 and will represent also a significant contribution to the Italian deployment of lagrangian platforms in the latitude band of the ACC with a grand total of 20 drifting platforms (10 floats and 10 surface drifters) provided by the ARGO-Italy program (http://argoitaly.ogs.trieste.it/).</p>\r\n<p ALIGN=\"center\"><a href=\" \"><img alt=\"\" src=\"/sites/all/themes/multipurpose/images/fig1.png\" width=\"500px\" /></a></p>\r\n \r\n<p align=\"justify\"><strong>Figure 1. Transects of XBT casts relating to the CLIMA/SOChIC/MORSea programmes (black dots) from 1994 to 2013. Underlying bathymetry (meters below sea level) is indicated by color shading.</b></strong>\r\n\r\n<p align=\"justify\">Temperature data are usually collected using Sippican T7 probes providing temperature profiles with a vertical resolution of 65 cm and a maximum nominal depth of 760 m. A regular 20 km sampling rate is adopted with increased sampling frequency over the main frontal regions of the ACC. Transects are usually performed in 5 days providing a synoptic picture of the thermal structure of the upper SO in this sector.\r\nSurface data related to temperature, salinity, chlorophyll and – more recently – other bio-geochemical tracers, as well as atmospheric data and CO2 atmospheric partial pressure, are usually collected by the R/V Italica along the entire transect while drifters and floats are released in correspondence of the main ACC fronts.\r\nSince 2009 the location of ACC fronts in this sector is also monitored on the basis of satellite altimetry data (SSH), in order to provide indications to sea-going staff on the position of fronts and also to study the variability of ACC fronts during the entire year and observe their modification during any eventual eddy shedding event.\r\nIn our data set the Polar Front (PF) positions (figure 2) are characterized by the minimum (northest position) value of 60.2°S reached during November 1994. The mean position of the PF is slightly southern (61.7°S) than previous estimation (61.5°S) from Budillon and Rintoul [2003], while the standard deviation (0.9°) remains unchanged. Figure 2 also shows the presence of isolated latitude band associated to the PF_SSH values not linked to any in situ front position. These isolated signals, often characterized by a very small latitudinal extension, can be due to the presence of water masses with the same physical properties of PF water in an unusual northern position. The explanation for the northern migration of water with PF characteristics can be linked to the presence of eddies detaching from the PF and moving northward to the Sub Antarctic Front.</p>\r\n <p ALIGN=\"center\"><a href=\" \"><img alt=\"\" src=\"/sites/all/themes/multipurpose/images/fig2.png\" width=\"500px\" /></a></p>\r\n<p align=\"justify\"><strong>Figure 2. Positions of the PF during the CLIMA/SOChIC/MORSea cruises from 1994 to 2010. Black line represents the mean latitude of front from in situ data, gray vertical bars represent the along track-latitude bands where fronts are detected using altimetry values (from Cotroneo et al. 2013).</strong></p>','','full_html'),('node','page',0,46,46,'en',0,'<div>\r\n<div style=\"float:left\">\r\n  <img src=\"sites/all/themes/multipurpose/images/sooslogo.jpg\" alt=\"SOUTHERN OCEAN DATA\" width=\"200\"/>	 \r\n</div>\r\n<div style=\"float:left\">\r\n  <div> <p style=\"font-size: 16px; padding-top: 15px;\">\r\n    <strong>Observation Activities in the Ross Sea - Report 2015</strong>  \r\n</p>\r\n</div>\r\n  <div style=\"border: none; width: 110px; height: 30px; padding-left: 180px;\">\r\n    <a href=\"/sites/all/themes/multipurpose/pubblications/RossSeaReport2015.pdf\"><img height=\"10\" src=\"sites/all/themes/multipurpose/images/readMore2.jpg\" style=\"border: none;\" align=\"left\"></a>\r\n  </div>               	    	  \r\n  </div>\r\n </div>\r\n\r\n\r\n<div>\r\n<div style=\"float:left\">\r\n  <img src=\"sites/all/themes/multipurpose/images/sooslogo.jpg\" alt=\"SOUTHERN OCEAN DATA\" width=\"200\"/>	 \r\n</div>\r\n<div style=\"float:left\">\r\n  <div> <p style=\"font-size: 16px; padding-top: 15px;\">\r\n    <strong>Italian Marine Ross Sea Observatory</strong>  \r\n</p>\r\n</div>\r\n  <div style=\"border: none; width: 110px; height: 30px; padding-left: 180px;\">\r\n    <a href=\"http://www.soos.aq/news/current-news/202-italian-moorings\"><img height=\"10\" src=\"sites/all/themes/multipurpose/images/readMore2.jpg\" style=\"border: none;\" align=\"left\"></a>\r\n  </div>                 	    	  \r\n  </div>\r\n </div>\r\n\r\n<div>\r\n<div style=\"float:left\">\r\n  <img src=\"sites/all/themes/multipurpose/images/sooslogo.jpg\" alt=\"SOUTHERN OCEAN DATA\" width=\"200\"/>	 \r\n</div>\r\n<div style=\"float:left\">\r\n  <div> <p style=\"font-size: 16px; padding-top: 15px;\">\r\n    <strong>Italian Activities this Season</strong>  \r\n</p>\r\n</div>\r\n  <div style=\"border: none; width: 110px; height: 30px; padding-left: 180px;\">\r\n    <a href=\"http://www.soos.aq/news/current-news/199-italiano-field-plans\"><img height=\"10\" src=\"sites/all/themes/multipurpose/images/readMore2.jpg\" style=\"border: none;\" align=\"left\"></a>\r\n  </div>                 	    	  \r\n  </div>\r\n </div>','','full_html'),('node','page',0,57,57,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/D/2010/rcm7_11559_1078m/rcm7_11559_1078m_speed.png\"/></div>\r\n<div><img alt=\"\" src=\"/sites/default/files/D/2010/rcm7_11559_1078m/rcm7_11559_1078m_T.png\"/></div>\r\n<div><img alt=\"\" src=\"/sites/default/files/D/2010/rcm7_11559_1078m/rcm7_11559_1078m_AWT.png\"/></div>\r\n\r\n','','full_html'),('node','page',0,58,58,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/D/2010/sbe16_1433_463m/sbe16_1433_463m_S.png\"/></div>\r\n<div><img alt=\"\" src=\"/sites/default/files/D/2010/sbe16_1433_463m/sbe16_1433_463m_T.png\"/></div>\r\n','','full_html'),('node','page',0,59,59,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/D/2010/rcm7_11560_494m/rcm7_11560_494m_speed.png\"/></div>\r\n<div><img alt=\"\" src=\"/sites/default/files/D/2010/rcm7_11560_494m/rcm7_11560_494m_AWT.png\"/></div>','','full_html'),('node','page',0,60,60,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/D/2010/rcm9_975_838m/rcm9_975_838m_speed_lvl1.png\"/></div>\r\n<div><img alt=\"\" src=\"/sites/default/files/D/2010/rcm9_975_838m/rcm9_975_838m_T_lvl1.png\"/></div>','','full_html'),('node','page',0,61,61,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/D/2010/sbe16_1437_1036m/sbe16_1437_1036m_S2.png\"/></div>\r\n<div><img alt=\"\" src=\"/sites/default/files/D/2010/sbe16_1437_1036m/sbe16_1437_1036m_T1.png\"/></div>\r\n','','full_html'),('node','page',0,62,62,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/D/2010/sbe39_1210_694m/sbe39_1210_694m_T.png\"/></div>','','full_html'),('node','page',0,63,63,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/D/2010/sbe39_1213_950m/sbe39_1213_950m_T.png\"/></div>','','full_html'),('node','page',0,64,64,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/D/2012/rcm7_9022_539m/rcm7_9022_539m_speed.png\"/></div>','','full_html'),('node','page',0,65,65,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/D/2012/rcm7_11199_875m/rcm7_11199_875m_speed.png\"/></div>','','full_html'),('node','page',0,66,66,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/D/2012/rcm7_11565_1112m/rcm7_11565_1112m_speed.png\"/></div>','','full_html'),('node','page',0,67,67,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/D/2012/sbe16_1433_509m/sbe16_1433_509m_S_lvl2.png\"/></div>\r\n<div><img alt=\"\" src=\"/sites/default/files/D/2012/sbe16_1433_509m/sbe16_1433_509m_T.png\"/></div>','','full_html'),('node','page',0,68,68,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/D/2012/sbe16_1437_1069m/sbe16_1437_1069m_S.png\"/></div>\r\n<div><img alt=\"\" src=\"/sites/default/files/D/2012/sbe16_1437_1069m/sbe16_1437_1069m_T.png\"/></div>','','full_html'),('node','page',0,69,69,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/D/2012/sbe39_1211_966m/sbe39_1211_966m_T.png\"/></div>','','full_html'),('node','page',0,70,70,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/D/2012/sbe39_1214_739m/sbe39_1214_739m_T.png\"/></div>','','full_html'),('node','page',0,71,71,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/G/2010/rcm7_11199_454m/rcm7_11199_454m_speed.png\"/></div>\r\n<div><img alt=\"\" src=\"/sites/default/files/G/2010/rcm7_11199_454m/rcm7_11199_454m_T.png\"/></div>','','full_html'),('node','page',0,72,72,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/G/2010/rcm7_11565_514m/rcm7_11565_514m_speed.png\"/></div>\r\n<div><img alt=\"\" src=\"/sites/default/files/G/2010/rcm7_11565_514m/rcm7_11565_514m_T.png\"/></div>','','full_html'),('node','page',0,73,73,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/G/2010/sbe39_1211_474m/sbe39_1211_474_T.png\"/></div>\r\n','','full_html'),('node','page',0,74,74,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/G/2010/sbe39_1214_494m/sbe39_1214_494m_T.png\"/></div>','','full_html'),('node','page',0,75,75,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/G/2012/rcm7_9016_455m/rcm7_9016_455m_speed.png\"/></div>','','full_html'),('node','page',0,76,76,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/G/2012/rcm7_11560_517m/rcm7_11560_517m_speed.png\"/></div>\r\n<div><img alt=\"\" src=\"/sites/default/files/G/2012/rcm7_11560_517m/rcm7_11560_517m_T.png\"/></div>','','full_html'),('node','page',0,77,77,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/G/2012/sbe39_1213_495m/sbe39_1213_495m_T.png\"/></div>','','full_html'),('node','page',0,78,78,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/G/2012/sbe39_1210_475m/sbe39_1210_475m_T.png\"/></div>','','full_html'),('node','page',0,79,79,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/L/2010/L_rcm7_11974_40m/rcm7_11974_40m_speed.png\"/></div>\r\n<div><img alt=\"\" src=\"/sites/default/files/L/2010/L_rcm7_11974_40m/rcm7_11974_40m_T_lvl1.png\"/></div>','','full_html'),('node','page',0,80,80,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/L/2012/L_rcm7_11559_144m/rcm7_11559_144m_speed.png\"/></div>\r\n<div><img alt=\"\" src=\"/sites/default/files/L/2012/L_rcm7_11559_144m/rcm7_11559_144m_T.png\"/></div>','','full_html'),('node','page',0,81,81,'und',0,'<div><img alt=\"\" src=\"/sites/default/files/L/2012/L_rcm7_11974_62m/rcm7_11974_62m_speed.png\"/></div>\r\n<div><img alt=\"\" src=\"/sites/default/files/L/2012/L_rcm7_11974_62m/rcm7_11974_62m_T.png\"/></div>','','full_html'),('node','page',0,82,82,'en',0,'<h1 align= \"center\"><strong><a target=”_blank” href=\"http://rmm.an.ismar.cnr.it/index.php/antartide\">Antartide-Previsione di marea BTN (Baia Terra Nova)</a></strong></h1>\r\n<div align=\"center\"><iframe width=\'650\' height=\'910\' src=\'sites/default/files/Tide/PosterBTN.pdf\'></iframe></div>','','full_html'),('node','page',0,83,83,'en',0,'<table class=MsoTableGrid border=1 cellspacing=0 cellpadding=0 style=\'border-collapse:collapse;border:none;mso-border-alt:solid windowtext .5pt; mso-yfti-tbllook:1184;mso-padding-alt:0cm 5.4pt 0cm 5.4pt\'>\r\n <tr style=\'mso-yfti-irow:0;mso-yfti-firstrow:yes\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal align=center style=\'margin-bottom:0cm;margin-bottom:.0001pt;  text-align:center;line-height:normal\'><b style=\'mso-bidi-font-weight:normal\'><span  style=\'font-size:16.0pt;mso-bidi-font-size:11.0pt\'>MOORING B</span><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:1\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Cruise deployment</p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>PNRA - XXV Expedition – 2009/10</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:2\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Cruise recovery</p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>PNRA - XXVII Expedition - 2011/12</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:3\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Coordinates</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>74.00226 S 175.09839 E</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:4\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Water depth</p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>570 m</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Magnetic declination</p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>114°N</p>\r\n  </td>\r\n </tr>\r\n<tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>deployment</p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>11/02/2010  02:48:00</p>\r\n  </td>\r\n </tr>\r\n<tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>recovery</p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>27/01/2012  10:09:00</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:5\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal align=center style=\'margin-bottom:0cm;margin-bottom:.0001pt;  text-align:center;line-height:normal\'><b style=\'mso-bidi-font-weight:normal\'><span  style=\'font-size:12.0pt;mso-bidi-font-size:11.0pt\'>INSTRUMENT</span></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:6\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN</b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Depth</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Sampling</b></span><b  style=\'mso-bidi-font-weight:normal\'></b></p>\r\n  </td>\r\n    <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:7\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/102 \">AANDERAA RCM9 SN 1210</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>543 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>60 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Mod, Dir</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:8\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET</b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL</b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START</b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:9\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;\r\n  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Raw data</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>11/02/2010  03:45:00</p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>23/05/2011  22:45:00</p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:10\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:11\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD quality check</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:12\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Quality check L.Marziani Univ. Parthenope 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:13\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:14\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN</b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Depth</b></span><b  style=\'mso-bidi-font-weight:normal\'></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Sampling</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:15\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/103\">SEACAT SBE16 SN 4494</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>533 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>30 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>T, Turb</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:16\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET</b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL</b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START</b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:17\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Raw data</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>11/02/2010 03:33:00</p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>27/01/2012  08:33:00</p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:18\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:19\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:20\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span  class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:21\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:22\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Depth</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Sampling</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:23\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/104\">SEACAT SBE37 SN 4118</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>280 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>60 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>T, Turb</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:24\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET</b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL</b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START</b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:25\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Raw data</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>11/02/2010  03:31:00</p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>27/01/2012  08:31:00</p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:26\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1<o:p></o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:27\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span><o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:28\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span class=SpellE>Parthenope</span> 09/2014<o:p></o:p></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n</table>','','full_html'),('node','page',0,84,84,'en',0,'<table class=MsoTableGrid border=1 cellspacing=0 cellpadding=0 style=\'border-collapse:collapse;border:none;mso-border-alt:solid windowtext .5pt; mso-yfti-tbllook:1184;mso-padding-alt:0cm 5.4pt 0cm 5.4pt\'>\r\n <tr style=\'mso-yfti-irow:0;mso-yfti-firstrow:yes\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt; mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal align=center style=\'margin-bottom:0cm;margin-bottom:.0001pt;  text-align:center;line-height:normal\'><b style=\'mso-bidi-font-weight:normal\'><span  style=\'font-size:16.0pt;mso-bidi-font-size:11.0pt\'>MOORING B</span></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:1\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Cruise deployment</p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>PNRA - XXVII Expedition - 2011/12</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:2\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Cruise recovery</p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>PNRA - XXIX Expedition - 2013/14</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:3\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Coordinates</span></p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'>74.00337 S 175.09768 E</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:4\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Water depth</p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>607 m</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Magnetic declination</p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>114°N</p>\r\n  </td>\r\n </tr>\r\n<tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>deployment</p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>28/01/2012 16:58:00</p>\r\n  </td>\r\n </tr>\r\n<tr style=\'mso-yfti-irow:5\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>recovery</p>\r\n  </td>\r\n  <td width=456 colspan=3 valign=top style=\'width:341.75pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>29/01/2014</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:5\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal align=center style=\'margin-bottom:0cm;margin-bottom:.0001pt;  text-align:center;line-height:normal\'><b style=\'mso-bidi-font-weight:normal\'><span  style=\'font-size:12.0pt;mso-bidi-font-size:11.0pt\'>INSTRUMENT</span></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:6\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN</b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Depth</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Sampling</b></span><b  style=\'mso-bidi-font-weight:normal\'></b></p>\r\n  </td>\r\n    <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:7\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>AANDERAA RCM7 SN 9470</p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>602 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>120 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:8\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET</b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL</b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START</b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:9\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;\r\n  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Raw data</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'></p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'></p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:10\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:11\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD quality check</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:12\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Quality check L.Marziani Univ. Parthenope 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:13\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:14\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN</b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Depth</b></span><b  style=\'mso-bidi-font-weight:normal\'></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Sampling</b></span><b  style=\'mso-bidi-font-weight:normal\'></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:15\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/106\">SEACAT SBE16 SN 4494</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>500 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>30 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>T</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:16\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET</b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none; border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL</b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START</b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:17\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Raw data</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>28/01/2012  17:11:00</p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>28/01/2014  23:11:00</p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:18\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:19\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:20\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span  class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:21\'>\r\n  <td width=652 colspan=5 valign=top style=\'width:488.9pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:22\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN<o:p></o:p></b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Depth</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Sampling</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:23\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/105\">AANDERAA RCM7 SN 9474</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>229 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>120 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>U, V, Mod, Dir</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:24\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET</b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL</b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START</b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:25\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Raw data</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt; mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>28/01/2012  17:00:00</p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>28/01/2014  23:00:00</p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:26\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:27\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD <span class=SpellE>quality</span> <span class=SpellE>check</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:28\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Quality</span> <span class=SpellE>check</span> <span  class=SpellE>L.Marziani</span> <span class=SpellE>Univ</span>. <span class=SpellE>Parthenope</span> 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:6\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Type</b></span><b  style=\'mso-bidi-font-weight:normal\'> &amp; SN</b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Depth</b></span><b  style=\'mso-bidi-font-weight:normal\'><o:p></o:p></b></p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Sampling</b></span><b  style=\'mso-bidi-font-weight:normal\'></b></p>\r\n  </td>\r\n    <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE><b style=\'mso-bidi-font-weight:normal\'>Parameters</b></span><b  style=\'mso-bidi-font-weight:normal\'></b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:7\'>\r\n  <td width=196 colspan=2 valign=top style=\'width:147.15pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><a href=\"http://morsea.uniparthenope.it/?q=node/107\">SEACAT SBE37 SN 4118</a></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>228 m</p>\r\n  </td>\r\n  <td width=142 valign=top style=\'width:106.35pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>30 min</p>\r\n  </td>\r\n  <td width=163 valign=top style=\'width:122.0pt;border-top:none;border-left:  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>T</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:8\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>DATASET</b></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>LEVEL</b></p>\r\n  </td>\r\n  <td width=151 valign=top style=\'width:4.0cm;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>START</b></p>\r\n  </td>\r\n  <td width=304 colspan=2 valign=top style=\'width:228.35pt;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><b style=\'mso-bidi-font-weight:normal\'>STOP</b></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:9\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;\r\n  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Raw data</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>0</p>\r\n  </td>\r\n  <td width=151 rowspan=4 valign=top style=\'width:4.0cm;border-top:none;  border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>28/01/2012 17:30:00</p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n  <td width=304 colspan=2 rowspan=4 valign=top style=\'width:228.35pt;  border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;  border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;  mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>28/01/2014 23:00:00</p>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><o:p>&nbsp;</o:p></p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:10\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'><span class=SpellE>Despiking</span></p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>1</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:11\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>CTD quality check</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>2</p>\r\n  </td>\r\n </tr>\r\n <tr style=\'mso-yfti-irow:12\'>\r\n  <td width=140 valign=top style=\'width:104.65pt;border:solid windowtext 1.0pt;  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;  padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>Quality check L.Marziani Univ. Parthenope 09/2014</p>\r\n  </td>\r\n  <td width=57 valign=top style=\'width:42.5pt;border-top:none;border-left:none;  border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt\'>\r\n  <p class=MsoNormal style=\'margin-bottom:0cm;margin-bottom:.0001pt;line-height:  normal\'>3</p>\r\n  </td>\r\n </tr>\r\n</table>','','full_html'),('node','page',0,85,85,'und',0,'<h1 align= \"center\"><strong>CA 09-10 XXV Ita. Esp. New Zealand</strong></h1>\r\n\r\n<h2 align=\"center\"><strong>Extract from the Italian XXV Antarctic expedition report</strong></h2>\r\n</br>\r\n<p align=\"justify\">The vessel Italica leaves the port of Lyttelton (NZ) in the direction of Antarctica and began XBT (SIPPICAN mod.T7, depth. max 760 m) casts, just after the end of New Zealand continental slope, coordinates 46°22’S-173°38’E, at 14:15 of 25/01/2010.\r\nXBT launches continue until the beginning of the Antarctic continental slope, reached on 29/01/2010 at 13:27 in position 70°S-175°53’E following the route in figure 1.\r\nA total of 95 valid XBT profiles have been obtained, which have allowed to determine the positions of the ACC thermohaline fronts that in this zone separate areas with different characteristics and dynamics.\r\nDuring the cruise, reduced ship speed allowed to obtain XBT data even at about 900 m depth without any loss of vertical resolution or change in the probe type.\r\nThese data are also used as a comparison for  remote sensing data from operational satellites SMOS (Soil Moisture and Ocean Salinity).</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/CA09-10_XXVItaEsp_NZ_1.png\" /></div>\r\n<p align=\"center\">Fig 1: Map of XBT launches in the period 25-29/01/2010 (left)  and temperature (right) section relative to the layer 0-1000 m from New Zealand to the Ross Sea.</p>\r\n\r\n<a href=\"http://www.pnra.it/biblioteca/docs/rapporti_campagna/CA09-10.pdf\">http://www.pnra.it/biblioteca/docs/rapporti_campagna/CA09-10.pdf</a>','','full_html'),('node','page',0,86,86,'und',0,'<h1 align= \"center\"><strong>CA 09-10 XXV Ita. Esp. South Africa SANAE 49</strong></h1>\r\n\r\n<h2 align=\"center\"><strong>Extract from the SANAE_49_Cruise Report</strong></h2>\r\n</br>\r\n<p align=\"justify\">The SANAE cruise took place on board the R/V Agulhas which sailed from Cape Town on the 09/12/2009 and returned on the 23/02/2010. The cruise track is divided into two sections; the leg from Cape Town to Antarctica (09–22/12/2009; Figure 1), and the leg from Antarctica back to Cape Town (13–23/02/2010; Figure 2).\r\nThe two legs were mainly focused on the underway measurements of surface biochemical parameters together with the physical structure of the water column using expendable temperature probes (XBTs) and an Underway Conductivity Temperature and Depth probe (UCTD).\r\nDuring the cruise, first leg launches of disposable probes started at 33.89°S-17.15°E and finished at 68.11°S-4.61°E, while the casts during the return started at 69.5°S-5.54°W and ended at 34.45°S-15.98°E.</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/CA09-10_XXVItaEsp_SA_1.jpg\" /></div>\r\n<p align=\"center\">Fig 2: Map of XBT launches in the period 8-22/12/2009 (left) and section of temperature relative to the layer 0-800m, from Cape Town to Antarctica (right).</p>\r\n<p align=\"justify\">To effectively measure oceanic changes of heat fluxes, in particular across regions of inter-basin exchange, high density observations need to be undertaken. Repeat XBT sections across “chokepoint” sections provide measurements of changes in upper ocean heat content and SST on both seasonal and inter-annual time scales. In addition, by exploiting the relationship between upper ocean temperature and dynamic height, XBTs can be used to infer velocities even in the Southern Ocean where salinity changes are important. In this way, XBT sections serve as a useful tool in measuring changes in the inter-ocean exchange of heat as well as identify and locate fronts and water masses.</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/CA09-10_XXVItaEsp_SA_2.jpg\" /></div>\r\n<p align=\"center\">Fig 2: Map of XBT launches in the period 22/02-02/03/2009 (left), and section of temperature relative to the layer 0-900m, from Cape Town to Antarctica (right).</p>\r\n<p align=\"justify\">XBTs were funded by the NOAA\'s Office of Global Programs as part of their High Density XBT project at NOAA/AOML. 325 XBT’s were deployed every two hours (~15 nautical mile intervals) increasing to every one hour (~10 nm) over the main frontal regions and over major topographic features. Most deployments reached a maximum working depth of the Sippican Deep Blue XBT, which is in the order of 780 m but slower ship speed allowed data collection up to 900 m depth.</p>\r\n<a href=\"http://www.aoml.noaa.gov/phod/hdenxbt/high_density_home.html\">http://www.aoml.noaa.gov/phod/hdenxbt/high_density_home.html</a>','','full_html'),('node','page',0,87,87,'und',0,'<h1 align= \"center\"><strong>CA 10-11 XXVI ita. Esp. South Africa SANAE 50</strong></h1>\r\n\r\n<h2 align=\"center\"><strong>Extract from the 2010-2011 SANAE 50 DATA REPORT </strong></h2>\r\n</br>\r\n<p align=\"justify\">The voyage started from Cape Town on the 8/12/2010 and returned to Cape Town on 16/02/2011.\r\nIn the period 8-19/12/2010, southward along the GoodHope hydrographic transect, with hydrographic stations occurred at regular interval using XBT and UCTD deployments which began at 33.85 S and 18.25 E, and ended at 70.5 S and 7.9 W (Fig 1).</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/CA10-11_XXVItaEsp_SA_1.png\" /></div>\r\n<p align=\"center\">Fig 1. Map of XBT launches in the period 08-19/12/2010 (left), and temperature section relative to the layer 0-900 m from Cape Town to Antarctica (right).</p>\r\n<p align=\"justify\">The major part of the flow associated with the ACC is concentrated at a number of circumpolar fronts, which act as boundaries separating zones of uniform water masses. From north to south the fronts and associated zones of the Southern Ocean are: Subtropical Convergence (STC), Subantarctic Zone (SAZ), Subantarctic Front (SAF), Polar Frontal Zone (PFZ), Antarctic Polar Front (APF), Antarctic Zone (AAZ) and Antarctic Divergence (AAD).\r\nFrom 05/02 to 16/02/2011, northward along GoodHope hydrographic transect, hydrographic stations occurred at regular interval using a combination of XBT and UCTD deployments which began at 70.48 S and 7.7 W, and ended at 33.84 S and 17.8 W (fig 2).</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/CA10-11_XXVItaEsp_SA_2.png\" /></div>\r\n<p align=\"center\">Fig 2  Map of XBT launches in the period 22/02-02/03/2010(left), and temperature section relative to the layer 0-900 m from Antartica to Cape Town (right).</p>\r\n<p align=\"justify\">In the framework of the GoodHope program XBTs were funded by the NOAA\'s Office of Global Programs as part of their High Density XBT project at NOAA/AOML. A total of 166 Sippican Deep Blue XBTs were deployed between Cape Town and Antarctica at the GoodHope line XBTs were deployed at ~20 nautical mile intervals increasing to every ~10 nm over the main frontal regions and were alternated with UCTD casts. In total, 14 XBTs (~8%) failed mainly as a result of strong winds and sea swell blowing the running signal wire against the ship’s hull, which resulted in the XBT wire stretching and thus insulation leakages. On the return leg of the GoodHope line, 193 XBT’s were deployed of which 21 (~11%) malfunctioned. On the return leg, XBTs were deployed at higher spatial resolution northwards of ~50°S.\r\n\r\nThe aim of the GoodHope programme is to establish an intensive monitoring platform that will provide detailed information on the physical structure and volume flux of waters south of South Africa, where the inter-basin exchanges occur. A key component of this programme is the implementation of the high-density XBT line AX25 that runs from Cape Town to Antarctica.\r\nThe SANAE cruise track crossed four distinct oceanic domains: the seasonal marginal ice-edge zone, the permanently open ocean zone, the shelf zone of the South Sandwich and South Georgia Islands and the frontal zones of the Antarctic Polar Front, the Subantarctic Front and the Subtropical Front.</p>','','full_html'),('node','page',0,88,88,'und',0,'<h1 align= \"center\"><strong>CA 11-12 XXVII Ita. Esp	South Africa SANAE 51</strong></h1>\r\n\r\n<h2 align=\"center\"><strong>Extract from the Italian XXVII Antarctc expedition report and NOAA AX25 Report</strong></h2>\r\n</br>\r\n<p align=\"justify\">The Antarctic Campaign 2011-2012 has seen the fulfillment and continuation of the research activities of the Project SOChIC carried out in collaboration between the PNRA, and the South African National Antarctic Programme (SANAP).\r\nActivities connected to the launch of Expendable Bathytermograph (XBT) probes have been carried on in the framework of The GoodHope and NOAA/AOML Atlantic high-density projects.\r\nBoth projects carry on an intensive monitoring programme that provide information of the vertical thermal structure of the surface layer of the Ocean.\r\nDuring the 158th voyage of the R/V Agulhas between Cape Town and Antarctica a total of 280 XBT Have been deployed with a spatial resolution of about15 nautical mile (2 hours of navigation).\r\nMost deployments reached a maximum working depth of the Sippican Deep Blue XBT, which is in the order of 780 m but slower ship speed allowed data collection up to 900 m depth.\r\nXBTs were funded by the NOAA\'s Office of Global Programs as part of their High Density XBT project at NOAA/AOML. \r\nDuring the first leg of the cruise, from Cape Town to Antarctica (Fig 1), 161 XBT were launched between -33.86°S/18.01°E (08/12/2011 h16:16) and -70.48°S/8.14°W (22/12/2011 h22:02) where sea ice condition imposed a stop of the deployment.\r\nThe release of 167 XBT probes (only 6 showed malfunctions) occurred along the route shown in Figure 1, with equivalent temporal resolution of about 2h, to the average speed of the ship, about 20 nm.</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/CA11-12_XXVII_ItaEsp_SA_1.png\" /></div>\r\n<p align=\"center\">Fig 1 Map of XBT launches in the period 8-22/12/2011 (left), and section of temperature relative to the layer 0-900m, from Cape Town to Antarctica (right).</p>\r\n<p align=\"justify\">Is worth noting that the spatial and temporal resolution of the launches XBT is the result of a careful planning process aimed at optimizing the scientific and technological resources available to the research project. Indeed launches XBT were alternated with the use of a probe UCTD (Underway CTD) gathering, always moving ship, the data of temperature, salinity and pressure of the first 400 meters of the water column. The final result obtained through the merging of the two datasets is a spatial/temporal resolution in data collection of approximately 1h (10 nm).\r\nThe section of temperature obtained through the use of XBT probes has allowed to identify the location of the main thermohaline fronts of the Antarctic Circumpolar Current (ACC). \r\nFurthermore during the crossing were released about 20 different types of float able to collect various data, including, in addition to temperature and salinity, dissolved oxygen and nutrient concentration.\r\nSecond leg of the cruise started on the 22/02/2012 and was concluded on the 02/03/2012. During this leg 119 XBT were launched between 69.22°S/7.11°W and 35.63°S/17.44°E.\r\nShip and weather troubles imposed a track different from the expected Goodhope line. Map of deployments is shown in figure 2 as well as temperature section from profiles.</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/CA11-12_XXVII_ItaEsp_SA_2.png\" /></div>\r\n<p align=\"center\">Fig 2: Map of XBT launches in the period 22/02-03/03/2012 (left) and section of temperature relative to the layer 0-900m, from Antarctica to Cape Town (right).</p>','','full_html'),('node','page',0,89,89,'und',0,'<h1 align= \"center\"><strong>CA 11-12 XXVII ita. Esp.	New Zealand</strong></h1>\r\n\r\n<h2 align=\"center\"><strong>Extract from the Italian XXVII antarctic expedition report</strong></h2>\r\n</br>\r\n<p align=\"justify\">The launches of XBT probes were carried on along the track Christchurch (NZ)-Antarctica. XBT casts began on 13/01/2012 18:45 at 46°S/173.55°E and ended on 19/01/2012 at 66°S/176.54°E, the sampling rate was 15 miles nautical.\r\nDuring the southward journey 99 probes have been used of which 82 showed no operating problems, while 17 launches failed due almost entirely to the contact of the cable conductor with the hull of the ship.\r\nFigure1 shows XBT map and the thermal section of the sub-surface layer. Italian investigations on the thermal structure across the ACC, started in 1994 in the framework of the CLIMA project and nowadays have a relevant climatological significance both for the long period covering and the repetition of measurements along the same track.</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/CA11-12_XXVII_ItaEsp_NZ_1.jpg\" /></div>\r\n<p align=\"center\">Figure1: Map of XBT launches in the period 13-19/03/2012 (left) and section of temperature relative to the layer 0-760m, from New Zealand to Antarctica (right)</p>\r\n<p align=\"justify\">A similar activity, for a total of 17 probes, was carried out during the return of the vessel between the latitudinal band of 65°S/178.86°E and 60.5°S/179.357 in correspondence of the main frontal systems in the area of the Antarctic convergence.</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/CA11-12_XXVII_ItaEsp_NZ_2.jpg\" /></div>\r\n<p align=\"center\">Figure 2: Map of XBT launches in the period 14-15/02/2012 (left) and section of temperature relative to the layer 0-760m, from Antarctica to New Zealand (right).</p>\r\n<a href=\"http://www.pnra.it/biblioteca/docs/rapporti_campagna/RapFin2012.pdf\">http://www.pnra.it/biblioteca/docs/rapporti_campagna/RapFin2012.pdf</a>','','full_html'),('node','page',0,90,90,'und',0,'<h1 align= \"center\"><strong>CA 12-13 XXVIII ita. Esp. South Africa</strong></h1>\r\n\r\n<h2 align=\"center\"><strong>Extract from the Italian XXVIII antarctic expedition report</strong></h2>\r\n</br>\r\n<p align=\"justify\">The S/A Agulhas II has left the Cape Town harbor on the 06/12/2012, bound for the Antarctic continent, then reached on 17/12/2012. XBT launches started a few hours after the departure and continued throughout the GoodHope Line, the route covered by the Agulhas II toward Antarctica (fig. 1).</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/CA12-13_XXVIII_ItaEsp_SA_1.jpg\" /></div>\r\n<p align=\"center\">Fig. 1: Map of XBT launches in the period 6-15/12/2012 (left) and section of temperature relative to the 0-900m layer, from Cape Town to Antarctica (right).</p>\r\n<p align=\"justify\">During the first leg, from Cape Town to Antarctica, 157 XBT were launched (13 did not work properly) at a resolution of about 20nm. XBT activities were conducted between 33.86°S/17.88°E (06/12/2012 at 21:57) and 69.10°S/0.12°W (15/12/2012 at 13:10) when the sea ice conditions forced interruption of the measurements.\r\nThe XBT casts were also used for inter-calibration of the data collected by other instruments such as surveys CTD near the ice shelf, water column profiles realized by 15 ARGO floats and 3 Seagliders as well as with data collected continuously from thermosalinograph on board (TSG). After quality control process a reliable section of temperature of the first 900m along the Line GoodHope has been realized (Fig.1).\r\nThe section of temperature obtained through the use of XBT probes allowed so to identify the location of the main fronts thermhoaline of the Antarctic Circumpolar Current (ACC). \r\nThe day10/02/2012, the S/A Agulhas II left Antarctica direct to Cape Town, reached on 19/02/2012. 148 XBT (27 malfunctioning) were launched along the route (Figure 2) always at a resolution of 90 minutes (about 20 nautical miles) .\r\n</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/CA12-13_XXVIII_ItaEsp_SA_2.jpg\" /></div>\r\n<p align=\"center\">Fig. 2 Map of XBT launches in the period 11-19/12/2013 along the Antarctica-Cape Town transect (left) and temperature section relative to the layer 0-900m (right).</p>','','full_html'),('node','page',0,91,91,'und',0,'<h1 align= \"center\"><strong>CA 12-13 XXVIII Ita. Esp. New Zealand</strong></h1>\r\n\r\n</br>\r\n<p align=\"justify\">TThe R/V Araon left the harbor of Lyttelton (NZ) on 24/01/2012 at 09:00.\r\nXBT launches began on 25/01/2012 at 09:00, in correspondence of the 48th parallel south.\r\nXBT were launched every 0.25 Nm (about 1h10m of navigation time), for a total of 54 probes. The acquisition was interrupted to the parallel 54° 15\'due to bad sea weather conditions.\r\n\r\nOn 29/01/2012 at 03:00 taking advantage of the reduced speed of the ship to make measurements (magnetometry and CTD) it was possible to fix the launch system-acquisition position and then to start XBT operations at a latitude of 62°S, although intermittently. XBT operations lasted until ice presence imposed a final stop at 68.5°S.\r\n</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/CA12-13_XXVIII_ItaEsp_NZ_1.png\" /></div>\r\n<p align=\"center\">Figure 1: Map of XBT launches in the period 25/01-10/02/2012(left) and associated section of temperature relative to the layer 0-760m, from New Zealand to Antarctica (right).</p>\r\n<a href=\"http://www.pnra.it/biblioteca/docs/rapporti_campagna/CA12_13.pdf\">http://www.pnra.it/biblioteca/docs/rapporti_campagna/CA12_13.pdf</a>','','full_html'),('node','page',0,92,92,'und',0,'<h1 align= \"center\"><strong>CA 13-14 XXIX Ita. Esp.	New Zealand</strong></h1>\r\n</br>\r\n<p align=\"justify\">The R/V Italica left Lyttelton (NZ) at 19:30 of 29/12/2013 and arrived at MZS (Mario Zucchelli Station) approximately on 01/08/2014 at 11:30. \r\nThe launches of XBT probes (Sippican mod.T7, depth max 760 m) started on 30.12.2013 at 17:11 at latitude 48°S and ended on 03/01/2014 latitude 66°16\'S (Fig. 1).\r\nXBT activities were carried on also during the return trip from 16.02.2014 at 02.00 at about 69°S, to 02/19/2014 at 49.5°S.\r\nThe sampling resolution was 15 nautical miles during the first leg and 77 probes were used, while during the way back to New Zealand 57 probes were launched at a resolution of 20 nm.\r\nOnly a small percentage of probes showed operating problems due almost entirely to the contact of the copper cable conductor with the hull of the ship.\r\n</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/CA13-14_XXIX_ItaEsp_NZ_1.jpg\" /></div>\r\n<p align=\"center\">Fig 1: Map of XBT launches (left) and section of temperature relative to the layer 0-800m (right), from New Zealand to Antarctica in the period 30/12/2013-03/01/2014.</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/CA13-14_XXIX_ItaEsp_NZ_2.png\" /></div>\r\n<p align=\"center\">Fig. 2: Map of XBT launches (left) and temperature section 8right) from 16/02/2014 to 19/02/2014.</p>\r\n<a href=\"http://www.pnra.it/biblioteca/docs/rapporti_campagna/CA14.pdf\">http://www.pnra.it/biblioteca/docs/rapporti_campagna/CA14.pdf</a>','','full_html'),('node','page',0,93,93,'und',0,'<h1 align= \"center\"><strong>CA 14-15 XXX Ita. Esp. New Zeland</strong></h1>\r\n</br>\r\n<p align=\"justify\">XBT operations started a few hours after the departure from the harbor of Lyttelton (NZ) on 01/02/2015 at 47°59\'S/166° 45\'E and ended on 01/10/2015 at 73°13\'S 173°18\'E.\r\nActivities were carried on from ship Korean Araon. The release of 74 probes XBT occurred along the route illustrated in Figure 1, and it allowed to realize the temperature section at the spatial resolution of  about 10 Nm also thanks to the merging of XBT data with XCTD profiles.\r\n</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/CA14-15_XXX_ItaEsp_NZ_1.jpg\" /></div>\r\n<p align=\"center\">Figure 1 Map of XBT launches in the period 02-10/01/2015(left) and temperature section relative to the layer 0-800m, from New Zealand to Antarctica (right)</p>\r\n<p align=\"justify\">Italian studies on XBT data across the ACC started in 1994 and were carried on as part of several projects funded by PNRA, which have now a significant climatological significance both for the long period covering both the possible inter-connections with phenomena on a planetary scale. The measures are part of the XBT observations of the Antarctic Circumpolar Current solicited and regulated by the SOOS.\r\n</p>','','full_html'),('node','page',0,94,94,'und',0,'<h1 align=\"center\"><strong>INTERNATIONAL BACKGROUND</h1></strong>\r\n<p align=\"justify\">The international science community has long recognised the need for a coordinated and integrated approach to observing the Southern Ocean. Under the direction of the Scientific Committee for Oceanic Research (SCAR) and the Scientific Committee for Oceanic Research (SCOR), and with the input of the World Climate Research Programmes Climate and Cryosphere (CliC) and Climate Variability and Predictability (CLIVAR) projects, and the Partnership for Observation of the Global Oceans (POGO), the concept for the Southern Ocean Observing System was developed - SOOS. The SOOS International Project Office was officially opened in August 2011, hosted by the Institute for Marine and Antarctic Studies (IMAS) at the University of Tasmania, Australia.\r\nThe SOOS primary objective are design and implement a comprehensive and multidisciplinary observing system for the Southern Ocean for unify current observation efforts and leverage further resources and effectively integrate and coordinate national and international projects and programmes, across traditional disciplinary boundaries and between nations, so contribution of research vessels to the in-situ global ocean observing system is one example how one could break down the fallacious research-operational divide. Making oceanographic research observations fully and freely available in real time or so is a very difficult task, both technically and politically, but due to vast ocean space and relative scarceness of in-situ data, engagement of the oceanographic research community is a prerequisite for developing a comprehensive ocean observing system anywhere in the world oceans. This is especially true in the Southern Ocean with its unique and extreme challenges for in-situ measurements. Realistically, the Southern Ocean oceanographic research community is, and for many years will continue to be, both the primary provider and primary user of in-situ ocean data. Thus, incorporating research community products in the observing system, and simultaneously designing the system to help address research community hypotheses, will be absolutely critical in ensuring we can monitor the Southern Ocean.\r\nThe wealth of research observations in the Southern Ocean is broad. Observations have been carried out under the auspices of a number of major cooperative programs. The data provided by these programs is clearly an enormous contribution to our understanding of the Southern Ocean and as such, these data ought to be incorporated, whenever possible, as part of the observing system.</p>','','full_html'),('node','page',0,95,95,'und',0,'<h1 align=\"center\"><strong>INSTRUMENTATION</strong></h1> \r\n<p align=\"justify\">\r\nAn eXpendable BathyThermograph (XBT) is a probe that is dropped from a ship and measures the temperature as it falls through the water. A resistance in the head of the probe and a very thin twin-wire, connecting the probe to the equipment on the ship, compose the electronic circuit for measuring the water temperature. The probe is designed to fall at a known rate, so that the depth of the temperature profile can be inferred from the time since it enters the water.\r\nXBTs are valuable because they represent the largest fraction of the temperature profile observations since 1970s and until the fully implementation of Argo profiling floats in approximately 2007, measure the seasonal and inter-annual fluctuations in the transport of mass, heat, and freshwater across transects, which define large enclosed ocean areas, determine the long-term mean, seasonal cycle, and inter-annual fluctuations of temperature, geostrophic velocity and large-scale ocean circulation in the top 800 m of the ocean, provide long time-series of temperature profiles at approximately repeated locations in order to unambiguously separate temporal from spatial variability, determine the space-time variability of temperature and geostrophic shear fields and provide appropriate in situ data for testing ocean and ocean-atmosphere models.\r\n</p>','','full_html'),('node','page',0,96,96,'it',0,'<div><strong><a href=\"http://morsea.uniparthenope.it/?q=node/30\">a)  Monitoraggio della struttura termica sub superficiale dell\' Antarctic Circumpolar Current</a></strong></div>\r\n</br>\r\n<div><strong><a href=\"http://morsea.uniparthenope.it/?q=node/31\">b) Misure in continuo di temperatura e salinità superficiali</a></strong></div>\r\n</br>\r\n<div><strong><a href=\"http://morsea.uniparthenope.it/?q=node/32\">c) Misure lagrangiane tramite drifter e float</a></strong></div>\r\n','','full_html'),('node','page',0,98,98,'it',0,'<p>Nell’ultima spedizione del PNRA nel Mare di Ross (2013-14) sono stati recuperati e riposizionati tutti i mooring del progetto osservatorio marino “MORSea”. Di seguito è riportata la mappa del Mare di Ross con la localizzazione dei mooring e la loro composizione con le informazioni fondamentali.</p>\r\n<div><strong><a href=\"http://morsea.uniparthenope.it/?q=node/28\">Clicca QUI per avere maggiori dettagli sulle caratteristiche tecniche dei Moorings</a></strong></div>\r\n<div><strong><a href=\"https://www.google.com/maps/d/edit?mid=zbQQmJ6-SKww.kXWDxKLMktvM\">Clicca QUI per avere la mappa con la localizzazione attuale dei Moorings</a></strong></div>\r\n<div>&nbsp;</div>\r\n<div><img alt=\"\" src=\"/sites/default/files/MooringRossSea2014.png\" style=\"height:495px; width:660px\" /></div>\r\n','','full_html'),('node','page',0,99,99,'en',0,'<p align=\"justify\">The  <strong>MORSea</strong> (<em>Marine Observatory in the Ross Sea</em>), project funded by<a href=\"http://www.pnra.it/\"> P.N.R.A.</a>(<em>National Research Program in Antarctica</em>), focuses on the management of the marine observatory established since 1994 in the Ross Sea in the framework of CLIMA (Climatic Long-term Interaction for Mass balance in Antarctica p.i. G. Spezie) and ABIOCLEAR (<em>Antartic BIOgeochemical cycles-Climatic and. palEoclimAtic Recostructions</em> p.i. M. Ravaioli) projects. After the ending of these projects in 2010, the National Scientific Commission for Antarctica (<a href=\"http://www.csna.it/\">CSNA</a>) highlighted the importance of supporting activities connected to a network of four moorings in the Ross Sea. The moorings, previously named B, D, G and L, play an important role in the study of climate change and the interannual variability of the physical and biogeochemical processes in the water column.\r\nMooring activities have recently been associated to other oceanographic measurements conducted on the basis of the \"ship of opportunity\" concept. Measurements of sea surface temperature and salinity (SST and SSS respectively), launches of XBT and  XCTD probes, deployment of drifters and floats have been carried on without any need of additional ship-time.\r\nAll these activities were conducted up to 2009 in the framework of previous PNRA project as CLIMA and Southern Ocean Chokepoints Italian Contribution (SOChIC) and during last years have been introduced in the MORSea project in order to keep the continuity of the precious time series acquired since 1994\r\nIn Italy the project activities essentially concern the validation and analysis of the acquired data and the dissemination of scientific results achieved.</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/MooringRossSea2014.png\" style=\"height:495px; width:660px\" /></div>','','full_html'),('node','page',0,102,102,'en',0,'<div><img alt=\"\" src=\"/sites/default/files/B/2010/rcm9_1210_543m/rcm9_1210_543m_speed0.png\"/></div>','','full_html'),('node','page',0,103,103,'en',0,'<div><img alt=\"\" src=\"/sites/default/files/B/2010/sbe16_4494_533m/sbe16_4494_533m_T_lvl1.png\"/></div>\r\n<div><img alt=\"\" src=\"/sites/default/files/B/2010/sbe16_4494_533m/sbe16_4494_533m_Turb_lvl1.png\"/></div>','','full_html'),('node','page',0,104,104,'en',0,'<div><img alt=\"\" src=\"/sites/default/files/B/2010/sbe37_4118_280m/sbe37_4118_280m_T_lvl1.png\"/></div>\r\n<div><img alt=\"\" src=\"/sites/default/files/B/2010/sbe37_4118_280m/sbe37_4118_280m_Turb.png\"/></div>','','full_html'),('node','page',0,105,105,'en',0,'<div><img alt=\"\" src=\"/sites/default/files/B/2012/rcm7_9474_229m/rcm7_9474_229m_speed_lvl1.png\"/></div>','','full_html'),('node','page',0,106,106,'en',0,'<div><img alt=\"\" src=\"/sites/default/files/B/2012/sbe16_4494_500m/sbe16_4494_500m_S_lvl2.png\"/></div>\r\n<div><img alt=\"\" src=\"/sites/default/files/B/2012/sbe16_4494_500m/sbe16_4494_500m_SigmaT.png\"/></div>\r\n<div><img alt=\"\" src=\"/sites/default/files/B/2012/sbe16_4494_500m/sbe16_4494_500m_T.png\"/></div>\r\n<div><img alt=\"\" src=\"/sites/default/files/B/2012/sbe16_4494_500m/sbe16_4494_500m_Turb_lvl1.png\"/></div>','','full_html'),('node','page',0,107,107,'en',0,'<div><img alt=\"\" src=\"/sites/default/files/B/2012/sbe37_4118_228m/sbe37_4118_228m_T_lvl1.png\"/></div>','','full_html'),('node','page',0,108,108,'en',0,'<h1 align= \"center\"><strong>HOW FLOATS WORK</strong></h1>\r\n</br>\r\n<p align=\"justify\">The idea beneath the oceanographic use of deriving platform to sample the water column is to overpass limitation in sampling due to ship costs, sea-weather conditions, geographical limitations and ultimately the use of human resources. Nowadays floats offer the most cost-effective solution to this needs. The oceanographic data are collected by battery-powered autonomous floats that spend most of their life drifting at depth where they are stabilized by being neutrally buoyant at the \"parking depth\" pressure by having a density equal to the ambient pressure and a compressibility that is less than that of sea water.</p>\r\n<div align=\"center\"><img alt=\"\" src=\"/sites/default/files/argo_2.png\"/></div>\r\n<p align=\"center\"><strong>Figure 2. Scheme of the operation of the floats in the sea.</b></strong>\r\n<p align=\"justify\">At present there are several models of profiling float. All work in a similar fashion but differ somewhat in their design characteristics. At typically 10-day intervals, the floats pump fluid into an external bladder and rise to the surface over about 6 hours while measuring temperature and salinity. Satellites or GPS determine the position of the floats when they surface, and the floats transmit their data to the satellites. The bladder then deflates and the float returns to its original density and sinks to drift until the cycle is repeated. Floats are designed to make about 150 such cycles.</p>','','full_html'),('node','page',0,109,109,'en',0,'<h1 align= \"center\"><strong>ARGO</strong></h1>\r\n</br>\r\n<p align=\"justify\">The origins of ARGO (Array for Real-time Geostrophic Oceanography) can be found in the 1990-1997 World Ocean Circulation Experiment (WOCE). WOCE is part of the World Climate Research Programme (WCRP) and set out to collect an unprecedented set of observations.</p>\r\n<p align=\"justify\">The research program is based on the use of profiling floats that are battery-powered autonomous floats that spend most of their life drifting at depth. At typically 10-day intervals the floats pump rise to the surface while measuring temperature and salinity data that are then transmitted via satellite.</p>\r\n<p align=\"justify\">Float reliability has improved almost every year and the float lifetime has been extended. ARGO has developed a large user community in universities, government labs and meteorological/climate analysis/forecasting centers. The need for global ARGO observations will continue indefinitely into the future, though the technologies and design of the array will evolve as better instruments are built, models are improved, and more is learned about ocean variability.</p>\r\n<p align=\"justify\">ARGO deployments began in 2000 and by November 2007 the millionth profile was collected. Today, even with more than 3600 active floats, there are still some areas of the ocean that are over-populated while others have gaps that need to be filled with additional floats. Today\'s (July 2015) tally of floats is shown in the figure below. To maintain the ARGO array, national programs need to provide about 800 floats per year.</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/argo_1.png\"/></div>\r\n<p align=\"center\"><strong>Figure 1. Positions of the floats that have delivered data within the last 30 days.</b></strong>\r\n<p align=\"justify\">With over 3200 floats reporting free, ARGO provides a relevant, global ocean data set. The temperature, salinity and velocity data from ARGO can teach everything from basic concepts, like the temperature of the ocean and how to read graphs, to more complicated ones like analyzing ocean data over time and climate change issues.</p>\r\n<p align=\"justify\">More details can be found on the official ARGO web site: <a href=\"http://nettuno.ogs.trieste.it/sire/medargo/active/it_table_out.php?live=*\">http://nettuno.ogs.trieste.it/sire/medargo/active/it_table_out.php?live=*</a></p>','','full_html'),('node','page',0,110,110,'en',0,'<h1 align= \"center\"><strong>ARGO float activities in 2013</strong></h1>\r\n</br>\r\n<p align=\"justify\">The total effort of the 2013 consists in the deployment of 3 floats.</p>\r\n<p align=\"justify\">An Italian profiling float was deployed in the Ross Sea on 6 January 2013 from R/V Araon (South Korea). This float is an Arvor-I instrument manufactured by NKE in France. It is anchored and cycles between the surface and 1000 dbar every 1 day It measures temperature and salinity at each ascent, and transmits data to the Iridium satellite system when at surface where it is localized by GPS. This deployment in ice-free coastal Ross Sea in winter 2013 is part of the T-Rex experiment in collaboration with the KOPRI (Korea Polar Research Institute), and SOChIC (SouthernOcean ObservingSystem and ChokePoints: Italian Contribution).</p>\r\n<p align=\"justify\">The aim is to extend the time series of observations in the polynya using for the first time one ARGO Float anchored to 1100 m in depth (see diagram in figure 3) in such a way that have a profile per day of salinity and temperature of the entire water column from 1000 m depth to surface with a resolution of 20 m from 1000 to 500 m, 10 m from 500 to 250 m and 5 m from 250 m to surface.</p>\r\n<div align=\"center\"><img alt=\"\" src=\"/sites/default/files/argo_5.png\"/></div>\r\n<p align=\"center\"><strong>Figure 3. Diagram of float anchored at Terra Nova Bay.</b></strong>\r\n<p align=\"justify\">Unfortunately after 1 cycle this float encountered functioning problems and stopped transmitting data and only 29 profiles were obtained. In general, the reasons for theses failures are still unknown. They will be investigated in collaboration with the manufacturer NKE.</p>\r\n<p align=\"justify\">Two Italian profiling floats were deployed in the SO on 10 January 2013 from R/V Araon (South Korea).</p>\r\n<p align=\"justify\">The launch position established will allow ARGO Float to follow the path of the Antarctic Circumpolar Current and characterize the thermohaline structure, obviously as long as they will be working and will send data.</p>\r\n<p align=\"justify\">These floats are Arvor-I instruments manufactured by NKE in France. They cycle between the surface and 2000 dbar every 10 days and drift at the parking depth of 1000 dbar. They measure temperature and salinity at each ascent, and transmit data to the Iridium satellite system when at surface where it is localized by GPS. </p>\r\n<table align=\"center\">\r\n	<tbody>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Float model</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; text-align:center; font-weight: bold;\">Float WMO</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Deploy Date</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Lat</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Lon</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Arvor I - 2</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901813</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">06-Jan-2013 19:20</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-75.09</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">164.88</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Arvor I - 2</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901814</p>\r\n			</td> \r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">10-Jan-2013 07:55</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-61.5</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">178.67</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Arvor I - 2</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901815</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">10-Jan-2013 15:24</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-60</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">178.26</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n<p align=\"center\"><strong>Table 2 Status information for the 3 Italian floats in the SO during 2013. Updated positions, status and cycles number are available at  <a href=\"http://nettuno.ogs.trieste.it/sire/medargo/active/it_table_out.php?live=*\">http://nettuno.ogs.trieste.it/sire/medargo/active/it_table_out.php?live=*</a></b></strong></p>','','full_html'),('node','page',0,111,111,'en',0,'<h1 align= \"center\"><strong>ARGO float activities in 2014</strong></h1>\r\n</br>\r\n<p align=\"justify\">During 2014, 7 floats were deployed by ARGO -ITALY in the SO.</p>\r\n<p align=\"justify\">Five Italian profiling floats were deployed in the SO between 30 December 2013 and 3 January 2014 from R/V Italica in order to sample water column characteristics in the Antarctic circumpolar Current.</p>\r\n<p align=\"justify\">These floats are Apex instruments manufactured by Teledyne Webb Research in the USA. They cycle between the surface and 2000 dbar every 10 days and drift at the parking depth of 1000 dbar. They measure temperature and salinity at each ascent, and transmit data to the ARGO’s satellite system when at surface. Their position is also estimated by the ARGO’s system. Unfortunately, two of the floats did not function properly due to a software problem.</p>\r\n<p align=\"justify\">One float was deployed in the Ross Sea on 11 January 2014 from R/V Italica. This float is an Arvor-L instrument manufactured by NKE in France which measures temperature and salinity at each ascent, and transmits data to the ARGO’s satellite system when at surface. Its position is also estimated by the ARGO’s system. This float was anchored and was supposed to cycle between the surface and 1000 dbar every 1 day . This deployment in ice-free coastal Ross Sea in winter 2014 is part of the T-Rex experiment. Unfortunately, the float stopped transmitting just after deployment.</p>\r\n<p align=\"justify\">An additional profiling float was deployed in correspondence of the ACC streamlines on 15 February 2014 from R/V Italica . This float is an Provor-CTS2 instrument manufactured by NKE in France which measures temperature and salinity at each ascent, and transmits data to the ARGO’s satellite system when at surface. Its position is also estimated by the ARGO’s system. Unfortunately, this float malfunctioned and drifted at the surface without executing profiles.</p>\r\n<table align=\"center\">\r\n	<tbody>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Float model</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; text-align:center; font-weight: bold;\">WMO</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Deploy Date</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Lat</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Lon</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Apex</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901856</p>\r\n			</td>\r\n                       <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">30-Dec-2013 18:48</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-51</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">175.74</p>\r\n			</td> \r\n		</tr>\r\n\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Apex</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901850</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">01-Jan-2014 19:24</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-60.98</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-177.6</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Apex</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901849</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">02-Jan-2014 07:59</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-62.98</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-176.01</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Apex</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901855</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">02-Jan-2014 21:33</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-65</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-176.08</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Apex</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901857</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">02-Jan-2014 22:55</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-58.95</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-178.9</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Arvor L</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901853</p>\r\n			</td> \r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">11-Jan-2014 00:50</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-75.16</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-164.46</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Provor</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901854</p>\r\n			</td> \r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">15-Feb-2014 06:30</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-67.52</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">178.99</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n<p align=\"center\"><strong>Table 3 Status information for the 7 Italian floats deployed in the SO and Ross Sea during 2014. Updated positions, status and cycles number are available at  <a href=\"http://nettuno.ogs.trieste.it/sire/medargo/active/it_table_out.php?live=* \">http://nettuno.ogs.trieste.it/sire/medargo/active/it_table_out.php?live=* </a></b></strong></p>\r\n<p align=\"justify\">In the SO, the Apex floats WMO 6901849 and WMO 6901855 were incorrectly programmed and did not stay at the surface enough time to transmit their data via the ARGO’s satellite system. As a result, float WMO 6901849 provided only 19 incomplete profiles (out of 37 cycles) and no data were obtained from float WMO 6901855. The problem was discussed with Teledyne Webb Research but there was nothing that we could do to solve the problem since the floats were at sea and ARGO’s telemetry does not allow downlink commands.</p>\r\n<p align=\"justify\">The Provor CTS 2 WMO 6901854 which was refurbished by NKE apparently went into “end of mission” mode just after deployment and stayed at surface without profiling until 11 May 2014.</p>\r\n<p align=\"justify\">Unfortunately, float WMO 6901853, which was tethered to act as a virtual mooring in Ross Sea had transmission/floatation problems and never transmitted data.</p>','','full_html'),('node','page',0,112,112,'en',0,'<h1 align= \"center\"><strong>ARGO float activities in 2015</strong></h1>\r\n</br>\r\n<p align=\"justify\">During 2015, 10 floats and 10 drifters were deployed by ARGO -ITALY in the SO.</p>\r\n<p align=\"justify\">The program of the launches along the route of the ship Araon from Cristhchurch to Terra Nova Bay, in correspondence with the main fronts of the ACC, predicted launching simultaneously a float and a drifter. Five Apex and five Arvor-I floats were deployed in the SO from the polar R/V Araon in the period 3-6 January 2015. </p>\r\n<table align=\"center\">\r\n	<tbody>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Float model</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; text-align:center; font-weight: bold;\">Float WMO</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Drifter model</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Drifter WMO</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Deploy Date</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Lat</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center; font-weight: bold;\">Lon</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Apex</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901875</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">SVP</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">300234061363990</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">03-Jan-2015 02:27</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-51.01</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">163.01</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Arvor</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901843</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">SVP</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">300234062818740</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">03-Jan-2015 06:50</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-52.01</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">163.18</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Arvor</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901841</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">SVP</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">300234062831810</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">03-Jan-2015 11:05</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-53.01</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">163.05</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Arvor</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901840</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">SVP</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">300234061396460</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">03-Jan-2015 20:50</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-55</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">162.85</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Apex</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901871</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">SVP</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">300234062831750</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">04-Jan-2015 00:00</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-56</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">162.79</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Apex</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901872</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">SVP</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">300234062830780</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">04-Jan-2015 09:29</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-58.01</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">162.69</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Apex</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901873</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">SVP</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">300234061399590</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">04-Jan-2015 19:47</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-60.01</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">162.59</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Apex</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901874</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">SVP</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">300234062832730</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">06-Jan-2015 01:14</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-61.01</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">157.31</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Arvor</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901842</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">SVP</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">300234062832740</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">06-Jan-2015 09:42</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-62</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">158.48</p>\r\n			</td>\r\n		</tr>\r\n<tr>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">Arvor</p>\r\n			</td>\r\n			<td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">6901838</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">SVP</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">300234062832780</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">06-Jan-2015 18:16</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">-63</p>\r\n			</td>\r\n                        <td>\r\n			<p style=\"margin: 0; padding-top: 15px; text-align:center;\">159.69</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n<p align=\"center\"><strong>Status information for the 10 Italian floats an drifters deployed in the SO and Ross Sea during 2015. Updated positions, status and cycles number are available at <a href=\"http://nettuno.ogs.trieste.it/sire/medargo/active/it_table_out.php?live=*\">http://nettuno.ogs.trieste.it/sire/medargo/active/it_table_out.php?live=*</a> for floats and <a href=\"http://nettuno.ogs.trieste.it/sire/drifter_italy.php?active=0\">http://nettuno.ogs.trieste.it/sire/drifter_italy.php?active=0</a> for drifters</b></strong></p>\r\n<p align=\"justify\">The 10 floats are programmed to cycle every 10 days with parking depth at 1000 dbar. They measure temperature and salinity at each ascent, and transmit data to the ARGO’s or Iridium satellite system when at surface.</p>\r\n<p align=\"justify\">Currently for the reference site of ARGO-ITALY, the floats and drifters made during the last Antarctic campaign are given to the following locations:</p>\r\n<div align=\"center\"><img alt=\"\" src=\"/sites/default/files/argo_4.png\"/></div>\r\n<p align=\"center\"><strong>Position  of drifters deployed during last campaign. Actual position available at http://nettuno.ogs.trieste.it/jungo/argoitaly/floats.html</b></strong>\r\n<div align=\"center\"><img alt=\"\" src=\"/sites/default/files/argo_3.png\"/></div>\r\n<p align=\"center\"><strong>Position  of floats deployed during last campaign. Actual position available at http://nettuno.ogs.trieste.it/jungo/argoitaly/drifters.html</b></strong>','','full_html'),('node','page',0,113,113,'it',0,'<form method=\"post\" action=\"/sites/all/themes/multipurpose/mooring.php\">\r\n<fieldset>\r\n <legend>Seleziona il mooring</legend>\r\n <input type=\"checkbox\" name=\"mooring\" value=\"L\"> mooring L\r\n</br>\r\n<input type=\"checkbox\" name=\"mooring\" value=\"G\"> mooring G\r\n</br>\r\n<input type=\"checkbox\" name=\"mooring\" value=\"D\"> mooring D\r\n</br>\r\n<input type=\"checkbox\" name=\"mooring\" value=\"B\"> mooring B\r\n</fieldset>\r\n<fieldset>\r\n <legend>Seleziona il periodo</legend>\r\n <input type=\"checkbox\" name=\"anno\" value=\"2012\"> 2010-2012\r\n</br>\r\n<input type=\"checkbox\" name=\"anno\" value=\"2014\"> 2012-2014\r\n</fieldset>\r\n<input type=\"submit\" name=\"submit\" value=\"invia\">\r\n</form>','','full_html'),('node','page',0,119,119,'it',0,'<h1 align=\"center\">Moorings 2014-2016 (Deployed 2014)</h1>\r\n<table align=\"center\">\r\n	<tbody>\r\n<tr>			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/22\" target=\"_blank\">Mooring L</a></td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/23\" target=\"_blank\">Mooring G</a></td>\r\n\r\n		</tr>\r\n<tr>			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/24\" target=\"_blank\">Mooring D</a></td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/21\" target=\"_blank\">Mooring B</a></td>\r\n\r\n		</tr>\r\n\r\n	</tbody>\r\n</table>\r\n<h1 align=\"center\">Moorings 2012-2014 (Deployed 2012)</h1>\r\n<table align=\"center\">\r\n	<tbody>\r\n<tr>			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/26\" target=\"_blank\">Mooring L</a></td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/36\" target=\"_blank\">Mooring G</a></td>\r\n\r\n		</tr>\r\n<tr>			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/35\" target=\"_blank\">Mooring D</a></td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/34\" target=\"_blank\">Mooring B</a></td>\r\n\r\n		</tr>\r\n\r\n	</tbody>\r\n</table>\r\n<h1 align=\"center\">Moorings 2010-2012 (Deployed 2010)</h1>\r\n<table align=\"center\">\r\n	<tbody>\r\n<tr>			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/115\" target=\"_blank\">Mooring L</a></td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/117\" target=\"_blank\">Mooring G</a></td>\r\n\r\n		</tr>\r\n<tr>			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/118\" target=\"_blank\">Mooring D</a></td>\r\n			<td style=\"text-align:center; vertical-align:middle\"><a href=\"http://morsea.uniparthenope.it/?q=node/116\" target=\"_blank\">Mooring B</a></td>\r\n\r\n		</tr>\r\n\r\n	</tbody>\r\n</table>','','full_html'),('node','page',0,124,124,'en',0,'<h1 align= \"center\"><strong>Rapporto sulla Campagna Antartica (estratto)</strong></h1>\r\n\r\n<h2 align=\"center\"><strong>Estate Australe 2015-2016</strong></h2>\r\n\r\n<h3 align=\"center\"><strong>Trentunesima Spedizione (PNRA XXXI)</strong></h3>\r\n\r\n<p align=\"center\"><strong>Progetto 2009/B.09: Osservatorio Marino Nel Mare di Ross ( MORSea)</strong><br />\r\n<em>G. Budillon, A. De Alteris, G. Zambardino</em></p>\r\n\r\n<p align=\"justify\">Le attività a bordo (descritte nel seguito in Universal Time Coordinated - UTC) del progetto MORSea (http://morsea.uniparthenope.it) sono state principalmente focalizzate al mantenimento della rete di osservazioni marine attualmente esistente nel Mare di Ross. L’obiettivo primario dell’osservatorio è quello di fornire un sostanziale contributo al monitoraggio della variabilità interannuale delle caratteristiche fisiche e geochimiche delle acque di shelf nel settore occidentale del Mare di Ross.\r\nL’osservatorio è attualmente costituito da 4 catene correntometriche (mooring) contrassegnate dalle lettere “B”, “D”, “G” e “L”.\r\nA queste attività si sono aggiunte anche le misure di “ship of opportunity” effettuate senza interferire con i tempi di navigazione della M/N Italica. In particolare quest’anno sono state eseguite misure di temperatura e salinità superficiale del mare (SST e SSS rispettivamente), lanci di XBT per la misura della struttura subsuperficiale dell’Oceano Meridionale; lanci di drifter e float (nell’ambito della collaborazione con il progetto ARGOItaly). Queste attività, svolte in passato da progetti non più attivi del PNRA (CLIMA e SOChIC), sono state condotte al fine di non interrompere le preziose serie temporali acquisite dal 1994 considerata la valenza ormai “climatica” di queste informazioni.\r\nAnche quest’anno non è stato possibile acquisire nuova strumentazione, fatta eccezione per un nuovo correntometro Aanderaa Seaguard ed una sonda SBE SMP ODO, per cui i sensori riposizionati sono stati sostanzialmente quelli degli anni precedenti che, in diversi casi, risalgono a oltre 20 anni fa. Il materiale di consumo e di ricambio per le trappole di sedimento è stato fornito: dal dott. M. Capello (Univ. di Genova) per i mooring “D” e “L” (2 trappole), dal dott. L. Langone (CNR – ISMAR) per il mooring “B” (1 trappola). Le attività di recupero, ricondizionamento, scarico dei dati e rimessa a mare sono state effettuate in simbiosi con il gruppo di Oceanografia Fisica (Dr. P.Falco e M. De Stefano).\r\nIn occasione della sosta in base del 4 febbraio (UTC) si è provveduto anche a recuperare la catena correntometrica posizionato dalla NIWA su un fondale di 516 m a circa 3 miglia a est di MZS.\r\nCome tradizione, sono state effettuate calate di CTD/LADCP - per la verifica e taratura dei sensori posizionati sulle catene correntometriche - prima del loro recupero e dopo il loro posizionamento.\r\nNel seguito vengono descritte le attività svolte su ogni catena correntometrica ed in tabella TM1 viene riportato la scheda riassuntiva dei periodi di funzionamento di ogni strumento.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “B”</strong><br />\r\nIl mooring “B” è stato recuperato il 24 gennaio e rimesso in mare il 27 gennaio 2016.\r\nIl recupero del mooring secondo la normale procedura di sgancio ha dato esito negativo, nonostante entrambi gli sganciatori avessero confermato l’avvenuto sgancio e la loro posizione verticale.\r\nGrazie alla collaborazione del gruppo EchoSurvey, è stato effettuato un passaggio sulla posizione del mooring rilevando tutta la struttura, sia nella parte di fondo sia superiore, avendo conferma in questo modo della sua effettiva integrità e posizione verticale.\r\nIn analogia con quanto effettuato nella XXIX spedizione, il mooring è stato recuperato filando da poppa una coppia di divergenti sostenuti da circa 500 metri di cavo d’acciaio e collegati tra loro da cime di kevlar di circa 250 metri, appesantite da una catena. Al primo tentativo il mooring è stato incocciato e recuperato a bordo senza eccessivi problemi.\r\nDopo la manutenzione del caso, la catena correntometrica è stata riposizionata nella configurazione riportata in figura M1, sostanzialmente analoga al precedente periodo ma aumentando la spinta di galleggiamento.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “G”</strong><br />\r\nIl mooring “G” è stato recuperato il 28 gennaio e rimesso in mare il 30 gennaio 2016.\r\nEntrambe le operazioni si svolte senza particolari problemi: il recupero con ottime condizioni meteo mentre il riposizionamento con mare forza 4-5.\r\nLa configurazione del mooring riposizionato è stata modificata inserendo una nuova quota di misura a circa 250 me di profondità (v. figura M3) costituita da un correntometro e una sonda SBE per la misura di T&C.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “D”</strong><br />\r\nIl mooring “D” è stato recuperato il 31 gennaio e rimesso in mare il 6 febbraio 2016.\r\nEffettuata l’ordinaria manutenzione della strumentazione, il mooring “D” è stato rimesso in posizione nella configurazione illustrata in figura M2, rispetto alla precedente risultano: 1) aggiunta al fondo una sonda SBE per la misura di T&C dotata di sensore di ossigeno, 2) eliminata una trappola per sedimenti a causa della rottura di un motore.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “L”</strong><br />\r\nIl mooring “L” è stato recuperato il 1° febbraio e rimesso in mare il 9 febbraio 2016.\r\nLa configurazione del mooring riposizionato è riportata in figura M4.\r\nIn tabella TM1 vengono elencate le informazioni principali sul funzionamento della strumentazione alloggiata sui mooring nel periodo 2014-16, tenendo conto che:\r\n- le profondità [m] si riferiscono agli schemi della campagna 2013-2014;\r\n- gli intervalli riportati si riferiscono al periodo effettivo di misura valida in acqua e alla profondità indicata nella prima colonna.</p>\r\n\r\n<p align=\"justify\"><strong>Misure in continuo di temperatura e salinità superficiale</strong><br />\r\nDurante tutta la campagna è stata misurata la temperatura e salinità superficiale del mare (SST –Sea Surface Temperature; SSS – Sea Surface Salinity) utilizzando la presa d’acqua a circa 4 metri di profondità. L’attività è stata condotta in stretta simbiosi con il gruppo di Oceanografia Fisica.\r\nL’attività di misura in continuo è iniziata il 17 gennaio 2016 ed è continuata sino al ritorno in Nuova Zelanda (22 febbraio 2016). Per queste misure sono stati impiegati tre sensori (due di temperatura ed uno di conducibilità) gestiti dal sistema SBE-21 ed un GPS Garmin, l’intervallo di acquisizione è stato di 30”. I dati hanno subìto un primo processamento a bordo per l’eliminazione dei picchi dovuti sostanzialmente al rollio della nave e alla presenza di ghiacci.\r\nDi particolare interesse sono i dati acquisiti durante le due traversate oceaniche (andata e ritorno) tra Nuova Zelanda e Mare di Ross, i dati acquisiti hanno permesso di determinare le posizioni dei fronti termoalini che in questa zona separano aree a dinamica diversa. In fase di analisi del data set saranno valutate eventuali possibilità di utilizzo dei dati acquisiti per cal/val di misure satellitari.\r\nLe misure di SST e SSS rappresentano quelle osservazioni ricorrenti della Antarctic Circumpolar Current sollecitate e regolate dal SOOS (Southern Ocean Observing System, http://www.soos.aq/).\r\n\r\n<p align=\"justify\"><strong>Misure XBT</strong><br />\r\nI lanci di sonde XBT (SIPPICAN mod.T7, prof. max 760 m) sono iniziati il 17 gennaio alla latitudine 48°S e sono terminati il 21 gennaio latitudine di 70°S; l\'intervallo di campionamento è stato, come in passato, di 15 miglia nautiche e sono state utilizzate 89 sonde durante il viaggio tra la Nuova Zelanda e il Mare di Ross; solo una piccolissima percentuale delle sonde utilizzate ha mostrato problemi di funzionamento dovuti quasi esclusivamente al contatto del cavo conduttore in rame con lo scafo della nave.\r\nI dati hanno subìto un primo processamento a bordo per eliminare valori spuri, i primi metri influenzati dall’inerzia termica del sensore e gli eventuali dati affetti dalla presenza del fondo. In figura 3 è riportata la sezione in temperatura dello strato sub-superficiale fino alla profondità massima di 700 m.\r\nTali indagini, iniziate nel 1994, sono state portate avanti nell’ambito di diversi progetti PNRA e hanno oramai una valenza climatologica rilevante sia per il lungo periodo che coprono, sia per le possibili inter-connessioni con fenomeni a scala planetaria. Le misure XBT rappresentano quelle osservazioni ricorrenti della Antarctic Circumpolar Current sollecitate e regolate dal SOOS (Southern Ocean Observing System).\r\nUna breve sezione XBT è stata effettuata anche in corrispondenza del mooring G in occasione di una linea condotta dall’echosurvey ed in concomitanza con il recupero del mooring stesso. In Figura 4 è rappresentata la sezione verticale ottenuta aggiungendo alle misure XBT, il profilo di temperatura misurato prima del recupero del mooring G.\r\n<p ALIGN=\"center\"><a href=\" \"><img alt=\"\" src=\"/sites/all/themes/multipurpose/images/fig_XXXI.png\" width=\"600px\" /></a></p>\r\n<p align=\"justify\"><strong>Figura 1. Sezione verticale della distribuzione della temperatura misurata dal 17 al 21 gennaio 2016 (raw data).</strong></p>\r\n\r\n<p align=\"justify\"><strong>Floats</strong><br />\r\nDurante il viaggio di andata sono stati rilasciati in mare 10 floats e 10 drifters. Queste attività rientrano nella collaborazione con il progetto ARGOItaly che ha fornito le sonde utilizzate (http://nettuno.ogs.trieste.it/jungo/argoitaly/floats.html) che rappresenta il contributo italiano ad un più ampio programma di monitoraggio globale degli oceani.\r\nI floats sono sonde automatizzate che, rilasciate in mare, si muovono in maniera “lagrangiana” (trasportata dalle correnti marine) ad una profondità predeterminata. Ad intervalli regolari la sonda sale in superficie misurando le proprietà termoaline che poi vengono trasmesse via satellite al centro di raccolta dati. Il ciclo tipico dei float utilizzati in questa occasione prevede una “parking depth” a 1000 metri, ad intervalli di 10 giorni il float è programmato per immergersi sino a 2000 metri e poi di risalire in superficie per eseguire il profilo di temperatura e salinità e per la trasmissione dei dati acquisiti. I float utilizzati nel progetto, in particolare, hanno un sistema di comunicazione satellitare bi-direzionale (Iridium, per i modelli APEX e Argos per i modelli Arvor e Provor) per poter modificare a distanza i parametri di missione.\r\nI drifters sono sonde che rimangono in superficie e anche esse si muovono in maniera “lagrangiana” trasmettendo in tempo reale le posizioni ed il valore di temperatura superficiale. I lanci dei drifters e dei float è avvenuto sostanzialmente in simultanea.\r\n','','full_html'),('node','page',0,125,125,'it',0,'<h1 align=\"center\"><strong>Rapporto sulla Campagna Antartica (estratto)</strong></h1>\r\n\r\n<h2 align=\"center\"><strong>Estate Australe 2013-2014</strong></h2>\r\n\r\n<h3 align=\"center\"><strong>Ventinovesima Spedizione (PNRA XXIX)</strong></h3>\r\n\r\n<p align=\"center\"><strong>Progetto 2009/B.09: Osservatorio Marino nel Mare di Ross. Resp. G. Spezie</strong><br />\r\n<em>G. Budillon, P. Falco, P. Penna</em></p>\r\n\r\n<p align=\"justify\">Il Progetto MORSea è sostanzialmente relativo alla attività di mantenimento della rete di osservazioni marine attualmente esistente nel Mare di Ross. L’obiettivo primario dell’osservatorio è quello di fornire un sostanziale contributo al monitoraggio della variabilità interannuale delle caratteristiche fisiche e geochimiche delle acque di shelf nel settore occidentale del Mare di Ross.\r\nL’osservatorio è attualmente costituito da 4 catene correntometriche (mooring) contrassegnate dalle lettere “B”, “D”, “G” e “L”. Il Progetto si occupa del mantenimento dei mooring esistenti e, possibilmente, di potenziare la strumentazione attualmente alloggiata sulla base anche di accordi e collaborazioni con progetti italiani e stranieri.\r\nA queste attività si sono aggiunte anche le misure di ship of opportunity effettuate senza interferire con i tempi di navigazione della nave Italica. In particolare quest’anno sono state eseguite misure di temperatura e salinità superficiale del mare (SST e SSS rispettivamente), lanci di XBT per la misura della struttura subsuperficiale dell’Oceano Meridionale e lanci di float (questi ultimi nell’ambito della collaborazione con il progetto ARGOItaly). Queste attività, svolte in passato da progetti non più attivi del PNRA (CLIMA e SOChIC), sono state condotte al fine di non interrompere le preziose serie temporali acquisite dal 1994, considerata la valenza ormai “climatica” di queste informazioni.\r\nIn attesa della attribuzione dei fondi per le attività di progetto, anche quest’anno le indispensabili acquisizioni di materiale di consumo (zinchi, batterie, …), marinaresco (boe di spinta, cavi, maniglioni, …) sono state eseguite anticipando le spese su dotazioni economiche non PNRA. In questo contesto non è stato possibile quindi acquisire nuovi strumenti per questa spedizione e, in buona sostanza, la strumentazione rimessa a mare è stata la stessa di quella degli anni precedenti che, in alcuni casi, risale a oltre 15 anni fa. Il materiale di consumo e di ricambio per le trappole di sedimento è stato fornito: dal dott. M. Capello (Univ. di Genova) per i mooring “D” e “L” (3 trappole), dal dott. L. Langone (CNR – ISMAR) per il mooring “B” (1 trappola). Quest’ultimo ha inoltre curato a bordo la conservazione dei campioni acquisiti, la programmazione dei motori, ed in generale il ricondizionamento delle trappole di sedimento per il successivo riposizionamento in mare.\r\nCome specificato nel seguito (se non specificato diversamente gli orari e le date sono in tempo locale – LT), il recupero di due mooring (“B” e “L”) ha visto la preziosa collaborazione del gruppo EchoSurvey (CNR-ISMAR, Ancona) che ha messo a disposizione la strumentazione da pesca (divergenti) e ha partecipato attivamente alle operazioni.\r\nCome tradizione, sono state effettuate calate di CTD/LADCP - per la verifica e taratura dei sensori posizionati sulle catene correntometriche - prima e dopo il loro recupero e posizionamento; le misure sono state eseguite in collaborazione con l’U.O. “Idrologia” del progetto RoME.\r\nNel seguito vengono descritte le attività svolte su ogni catena correntometrica e in tabella I viene riportato la scheda riassuntiva.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “B”</strong><br />\r\nIl mooring “B” è stato recuperato il 29 gennaio e rimesso in mare il 31 gennaio 2014.\r\nUn primo tentativo di recupero è stato effettuato il 6 gennaio 2014 durante l’avvicinamento della nave Italica verso la Base MZS in considerazione delle buone condizioni meteo marine. Nonostante tutte le operazioni fossero state eseguite con successo, sia quelle propedeutiche allo sgancio (wake up dello sganciatore, calcolo della distanza), sia lo sgancio stesso (con la regolare ricezione del segnale di conferma di avvenuto sgancio e posizione verticale di entrambi gli sganciatori), il mooring non è risalito in superficie. Dopo alcune ore di ulteriori tentativi e prove, constatata l’impossibilità di poter effettuare altre operazioni e la urgenza di raggiungere MZS, è stato deciso di abbandonare la zona posticipando altri tentativi di recupero. Grazie alla collaborazione del gruppo EchoSurvey, è stato effettuato un passaggio sulla posizione del mooring rilevando tutta la struttura, sia nella parte di fondo sia superiore, avendo conferma in questo modo della sua effettiva integrità e posizione verticale.\r\nUn secondo tentativo è stato effettuato il giorno 12 gennaio 2014. Ritornati sul posto è stata verificata nuovamente la piena funzionalità di entrambi gli sganciatori che rispondevano regolarmente alle interrogazioni con il segnale di avvenuto sgancio e posizione verticale, nonostante ciò il mooring non risaliva in superficie. Al fine di tentare il recupero del mooring è stata messa in mare una struttura a “U” composta alle due estremità verticali da una boa superficiale sostenente una cima di circa 150 metri appesantita da una catena, entrambe collegate in profondità da una cima orizzontale di circa 250 metri. Questa struttura è stata filata in mare dalla nave Italica a monte della corrente predominante ed è stato atteso il tempo necessario a far derivare la struttura sulla posizione del mooring. Al secondo tentativo il mooring è stato infatti “incocciato”: le boe superficiali, distanti tra loro circa 250 metri, hanno modificato la traiettoria di deriva avvicinandosi tra loro. Dopo circa mezz’ora la nave ha quindi operato per rampinare entrambe le boe e ha iniziato il recupero da poppa. Purtroppo durante questa fase si è notato che le cime andavano in bando testimoniando la perdita di aggancio con il mooring. Non è stato possibile ripetere ulteriori prove per le condizioni del mare; verificata ancora una volta la posizione del mooring, è stato deciso di rimandare nuovamente un ulteriore tentativo di recupero.\r\nIl mooring è stato recuperato il 29 gennaio 2014 operando in stretta collaborazione con il gruppo EchoSurvey presente a bordo (Giovanni Canduci e Giordano Giuliani) che ha messo a disposizione i divergenti e la propria professionalità. Verificata ancora una volta la posizione del mooring, sono stati filati da poppa i divergenti sostenuti da circa 500 metri di cavo d’acciaio e collegati tra loro da cime di kevlar di circa 500 metri, appesantite da una catena. Al secondo tentativo il mooring è stato incocciato e recuperato a bordo senza eccessivi problemi.\r\nL’esame della strumentazione recuperata ha evidenziato una anomala presenza di fouling sulla strumentazione profonda (e non su quella più superficiale) che risultava particolarmente intensa sugli sganciatori e ne aveva impedito lo sgancio, nonostante il meccanismo di svincolo avesse perfettamente funzionato.\r\nDopo la manutenzione del caso, la catena correntometrica è stata riposizionata.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “D”</strong><br />\r\nIl mooring “D” è stato recuperato il 12 gennaio e rimesso in mare il 21 gennaio 2014.\r\nDurante la XXVIII (2011-12) Spedizione il mooring era stato posizionato in mare incrementando il payload e prolungando la sua estensione sino a circa 124 m dalla superficie con la strumentazione fornita dal progetto “2010/A4.01” (sensori termoalini e un profilatore acustico). Per evitare possibili perdite di tutto il mooring, era stato deciso di collegare la parte inferiore con quella superiore (aggiunta per il progetto “2010/A4.01”) mediante un anello debole che avrebbe ceduto in caso di impatto con iceberg.\r\nIl recupero del mooring è stato effettuato in ottime condizioni meteo marine senza però rinvenire la parte superiore relativa al progetto “2010/A4.01”.\r\nA differenza di quanto evidenziato per il mooring “B”, non sono state rinvenute presenze anomale di fouling.\r\nEffettuata l’ordinaria manutenzione della strumentazione, il mooring “D” è stato rimesso in posizione.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “G”</strong><br />\r\nIl mooring “G” è stato recuperato il 23 gennaio e rimesso in mare il 26 gennaio 2014.\r\nEntrambe le operazioni si svolte senza particolari problemi in condizioni meteo marine accettabili. La configurazione del mooring riposizionato.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “L”</strong><br />\r\nIl mooring “L” è stato recuperato il 5 febbraio e rimesso in mare l’8 febbraio 2014.\r\nUn primo tentativo di recupero è stato effettuato l’11 gennaio, durante le operazioni di sbarco del materiale presso MZS, a bordo dell’Icebjorn. La risposta dello sganciatore alle interrogazioni con il modulo di sgancio a bordo dell’Icebjorn è sempre stata frammentaria e poco intellegibile. Analogo risultato si è ottenuto con il modulo di sgancio di rispetto a bordo della Italica. L’Italica ha quindi effettuato un passaggio sul punto teorico per rilevarlo con gli ecoscandagli del gruppo EchoSurvey, in questa indagine è stata identificata solo la strumentazione in prossimità del fondo.\r\nDurante le attività marine in Base, il battello Malippo ha effettuato un passaggio sulla posizione del mooring rilevandolo con l’ecoscandaglio di bordo e verificandone la posizione verticale.\r\nIn seguito a questa informazione è stato deciso di effettuare il recupero secondo le modalità già sperimentate in occasione del recupero del mooring “B” in collaborazione con il gruppo EchoSurvey. Il mooring è stato “incocciato” al primo tentativo l’8 febbraio ed è stato recuperato completamente integro.</p>\r\n\r\n<p align=\"justify\"><strong>Ringraziamenti:</strong><br />\r\nE’ doveroso un sentito ringraziamento:<br />\r\n- al gruppo EchoSurvey (CNR-ISMAR, Ancona) per la entusiastica collaborazione in fase di programmazione e di esecuzione delle operazioni di recupero dei mooring “B” e “L”, nonché per aver messo a disposizione parte della attrezzatura propria;<br />\r\n- al dott. Capello per l’assistenza in Italia e al dott. Langone per l’assistenza in Italia e a bordo nella manutenzione delle trappole di sedimento;<br />\r\n- a tutti coloro che hanno collaborato ai lanci degli XBT (G. Bruzzone, D. Cotterle, M. De Stefano, R. Geletti, G. Zambardino).<br />\r\n- al personale di bordo e del PNRA per l’assistenza continua e per aver coadiuvato con grande professionalità nelle operazioni marinaresche a poppa in occasione del recupero e messa a mare delle catene correntometriche, anche in condizioni meteo marine non facili.</p>\r\n','','full_html'),('node','page',0,126,126,'it',0,'<h1 align= \"center\"><strong>Rapporto sulla Campagna Antartica (estratto)</strong></h1>\r\n\r\n<h2 align=\"center\"><strong>Estate Australe 2011-2012</strong></h2>\r\n\r\n<h3 align=\"center\"><strong>Ventisettesima Spedizione (PNRA XXVII)</strong></h3>\r\n\r\n<p align=\"center\"><strong>Progetto 2009/B.09: Osservatorio Marino Nel Mare di Ross ( MORSea)</strong><br />\r\n<em>E. Paschini, P. Penna, G. Spezie</em></p>\r\n\r\n<p align=\"justify\">Il Progetto MORSea è relativo alla sola attività di mantenimento della rete di osservazioni marine attualmente esistente nel Mare di Ross. L’obiettivo primario della rete è quello di fornire un sostanziale contributo al monitoraggio della variabilità interannuale delle caratteristiche termoaline delle acque di shelf nel settore occidentale del Mare di Ross.\r\nL’osservatorio è costituito da 4 mooring contrassegnati dalle lettere B, D, G e L. Il Progetto si occupa del mantenimento dei mooring esistenti e, possibilmente, di potenziare la strumentazione attualmente alloggiata sulla base anche di accordi e collaborazioni con progetti italiani e stranieri.\r\nPer la Campagna 2011-12 la responsabilità delle operazioni è stata affidata a Elio Paschini del CNR – ISMAR Sezione di Ancona, coadiuvato da Pierluigi Penna dello stesso Istituto e in collaborazione con G. Budillon e P.P. Falco del Progetto T-REx, presenti a bordo.\r\nSi riporta, di seguito, la sintesi delle attività svolte, redatta da Elio Paschini.\r\nLa preparazione alla crociera é stata affrettata e senza finanziamenti. Siamo stati invitati a partecipare alla 27a Spedizione alla fine dell’estate 2011 ed avvertiti che bisognava far fronte alle spese vive anticipando con fondi propri.\r\nSono stati subito presi contatti con l’Istituto NURC della Nato di La Spezia per avere un certo numero di correntometri uguali a quelli in uso in Antartide. Questo, allo scopo di avere degli strumenti di riserva e soprattutto per abbreviare i tempi tra il recupero ed il successivo lancio dei mooring. Il NURC ci ha gentilmente prestato 6 correntometri Aanderaa RCM7, tutti dotati di sensore di pressione da 1000psi (600 metri di range) e 3 memorie da 64K byte. Tali strumenti sono stati testati in laboratorio e sottoposti ad una prova di durata, facendoli funzionare con un intervallo di misura di 5 minuti durante il viaggio dell’Italica. dall’Italia alla NZ. Alla fine solo 5 sono stati considerati validi e 4 di questi sono ora in uso nel Mare di Ross. .\r\nInutile ricordare che un rinnovo del parco strumenti é necessario. Stiamo utilizzando gli scarti degli istituti di ricerca ricchi per le ricerche (povere) in Antartide.\r\nPrima della partenza dei materiali, é stata fatta riparare e testare da un laboratorio elettronico di nostra fiducia, l’unità di sgancio EG&G mod 8011B dichiarata irriparabile dall’importatore. Nell’occasione é stato allungato il cavo del trasduttore di circa 20 m, constatando che il segnale veniva degradato soltanto del 10%.\r\nAl nostro arrivo in Nuova Zelanda abbiamo apprezzato il giorno e mezzo trascorso in porto, per approntare il laboratorio e predisporre la nostra attrezzatura per un pronto intervento.\r\nDurante questa campagna sono state usate le seguenti innovazioni rispetto al passato:\r\n<ol>\r\n<li align=\"justify\">Il trasduttore é stato posto in un V-fin, che ha permesso di eseguire le operazioni di avvicinamento e sgancio anche con nave in manovra a bassa velocità: fino a 5-6 nodi. Questa innovazione sarebbe risultata ancor più utile se si fosse dovuto eseguire una ricerca/inseguimento di un mooring vagante. Dato che il cavo ora é lungo 30 metri: l’unità di sgancio é stata portata in plancia, e da lì sono state effettuate le operazioni in stretta interazione con il comando della nave ed al caldo del ponte.</li>\r\n<li align=\"justify\">In fase di recupero si é fatto largo uso della bozza cortissima (due metri) e nodo Prusik direttamente sul cavo di ormeggio. Questo ha permesso maggiore sicurezza e velocità nelle operazioni. Molti sbirri da un metro sono stati recuperati e riposizionati in posti più utili.</li>\r\n<li align=\"justify\">Nel rilascio della zavorra é stato finalmente usato un congegno acquistato per questo scopo almeno 10 anni fà. Il nuovo sistema ha convinto tutti per semplicità e sicurezza. Lo stesso attrezzo é stato usato per la messa a mare dei componenti pesanti (trappole e coppie di sgancia tori).</li>\r\n<li align=\"justify\">Dove é stato possibile, sono state eliminate tutte le parti metalliche. Le boe di vetro OCEANO sono ora legate ad uno spezzone di kevlar, che ne facilita il trasporto ed elimina la corrosione. Con lo stesso sistema sono state collegate a coppia le boe NAUTILUS.</li>\r\n</ol>\r\n</p>\r\n<p align=\"justify\">Nella riunione preparatoria della campagna, tenutasi a Roma presso la sede ENEA, si era deciso che gli strumenti del Progetto Picco sarebbero stati aggiunti in cima al mooring D con un punto debole di circa 300kg di rottura. Questo per non compromettere tutto il mooring in caso di collisione con un iceberg nella parte superficiale della catena di strumenti. Durante le operazioni di lancio il punto debole é stato elevato a 500kg per la possibilità di strappi nella fase di lancio.\r\nLa U.O. ha prestato assistenza preziosa alla campagna. Il CTD utilizzato durante tutta la campagna é stato quello PNRA assegnato a questa U.O. e portato come riserva. Come pure il convertitore USB a quattro porte seriali ed un altro convertitore USB-seriale, usato per il lanciatore XBT. Un convertitore USB per dischi SATA é stato prestato al servizio informatico della nave. É stato fornito il segnale GPS al lanciatore XBT e Penna é entrato nei turni di lancio delle sonde XBT. Il controllo del funzionamento della misura automatica di CO2 ed il prelievo di 9 campioni di aria per la U.O. Ori é stato curato da questa U.O..\r\nLa U.O. stà compilando un modulo di crociera internazionale standardizzato (CSR) contenente i metadati di tutte le U.O. coinvolte direttamente o indirettamente nella campagna, che sarà inviato alla banca dati europea SEA-DATA-NET.\r\nEntrambi i correntometri Aanderaa RCM9 hanno mostrato di non essere adatti a temperature così fredde per tempi così prolungati in acqua: entrambi sono risultati allagati. Il modello RCM7 sebbene più vecchio si é dimostrato più robusto. La perdita di dati nel secondo anno di misura, riscontrata in ogni strumento é dovuto alla infelice scelta di lasciare l’intervallo di campionamento a mezzora, invece di spostarlo ad un ora.</p>\r\n\r\n<p align=\"justify\"><strong>Tentativo di recupero del Mooring L vecchio (2008)</strong>\r\nÉ stato possibile effettuare tentativi di recupero in tre giorni distinti, ma nonostante questo il mooring é ancora lì. Sappiamo solo che é ancora integro e conosciamo più precisamente la sua posizione. Ovviamente abbiamo interrogato lo sganciatore, che non ha mai risposto. Sarebbe lungo descrivere dettagliatamente tutti i tentativi effettuati e le tecniche utilizzate. Possiamo dire che il metodo di incoccio con una una barra di cavo in kevlar posta a 60 metri di profondità e lunga 160, trascinata dalla corrente verso il mooring é risultata la più efficace. Ha incocciato il cavo del mooring 4 volte su 5 tentativi. Purtroppo non avevamo esperienza con mooring dotati di trappole.\r\nGuardando lo schema del mooring si capisce che incocciamo il cavo sotto alla trappola per sedimenti, che non rappresenta un buon punto di aggancio come per esempio il correntometro RCM7. Se il correntometro fosse stato sotto la trappola, come negli altri mooring il recupero era cosa fatta.\r\nCi auguriamo che durante la prossima spedizione, il personale della Base, opportunamente istruito, sia in grado di tentare il recupero. Ormai dopo 4-5 anni di permanenza in mare, la corrosione ha già intaccato la struttura della trappola che é il punto più debole del mooring. Ogni anno in più diminuisce la probabilità di recuperarlo.</p>','','full_html'),('node','page',0,127,127,'it',0,'<h1 align= \"center\"><strong>Italian field activities in the Pacific Sector of the ACC</strong></h1>\r\n<h2 align=\"center\"><strong>Austral Summer 2014-2015</strong></h2>\r\n<h3 align=\"center\"><strong>30th Italian Expedition in Antarctica (PNRA XXX)</strong></h3>\r\n</br>\r\n<p align=\"justify\">The absence of continental barriers across the latitude band of Drake Passage permits an Antarctic Circumpolar Current (ACC) to flow and act as the primary driver for inter-basin exchanges. Due to its important climate impact, the ACC band is an area of high interest, especially since global ocean temperatures have been shown to increase in the last. Hydrographic observations are thus important as they aid the description and understanding of the processes which occur within the Southern Ocean and across the ACC. \r\nThe oceanographic Italian field activities in the Southern Ocean during Austral summer 2014-15 will be carried on in the framework of the MORSea project (http://morsea.uniparthenope.it/, founded by the Italian PNRA - National Program for Antarctic Research) and they will be focused on the in situ monitoring of the Pacific Sector of the ACC - between New Zealand and the Ross Sea - by means of XBT, floats, and drifters. Two Italian scientists of University of Napoli “Parthenope” will be host onboard of the South Korean R/V Araon in the framework of the collaboration between Italian PNRA and KOPRI (Korea Polar Research Institute).</p>\r\nThree main actions will be undertaken during the cruise:\r\n•	collection of in situ temperature data in the layer 0-800m;\r\n•	release of 10 SVP2 surface drifters;\r\n•	deployment of 10 ARVOR and PROVOR floats.\r\n<p align=\"justify\">Main focus of the cruise is the continuation of the about twenty year-long time series of temperature data along the endurance line New Zealand - Antarctica. Since 1994 in situ temperature data of the surface layer of the southern ocean have been collected in the framework of the Italian CLIMA and SOChIC projects. Up to 2013, 25 transects between New Zealand and the Ross Sea have been realized by the R/V Italica mainly in January and February (figure 1) collecting SST, SSS, XBT and XCTD data.\r\nDuring Austral summer 2014/2015 field activities will increase and preserve the importance of the large dataset collected since 1994 and will represent also a significant contribution to the Italian deployment of lagrangian platforms in the latitude band of the ACC with a grand total of 20 drifting platforms (10 floats and 10 surface drifters) provided by the ARGO-Italy program (http://argoitaly.ogs.trieste.it/).</p>\r\n<p ALIGN=\"center\"><a href=\" \"><img alt=\"\" src=\"/sites/all/themes/multipurpose/images/fig1.png\" width=\"500px\" /></a></p>\r\n \r\n<p align=\"justify\"><strong>Figure 1. Transects of XBT casts relating to the CLIMA/SOChIC/MORSea programmes (black dots) from 1994 to 2013. Underlying bathymetry (meters below sea level) is indicated by color shading.</b></strong>\r\n\r\n<p align=\"justify\">Temperature data are usually collected using Sippican T7 probes providing temperature profiles with a vertical resolution of 65 cm and a maximum nominal depth of 760 m. A regular 20 km sampling rate is adopted with increased sampling frequency over the main frontal regions of the ACC. Transects are usually performed in 5 days providing a synoptic picture of the thermal structure of the upper SO in this sector.\r\nSurface data related to temperature, salinity, chlorophyll and – more recently – other bio-geochemical tracers, as well as atmospheric data and CO2 atmospheric partial pressure, are usually collected by the R/V Italica along the entire transect while drifters and floats are released in correspondence of the main ACC fronts.\r\nSince 2009 the location of ACC fronts in this sector is also monitored on the basis of satellite altimetry data (SSH), in order to provide indications to sea-going staff on the position of fronts and also to study the variability of ACC fronts during the entire year and observe their modification during any eventual eddy shedding event.\r\nIn our data set the Polar Front (PF) positions (figure 2) are characterized by the minimum (northest position) value of 60.2°S reached during November 1994. The mean position of the PF is slightly southern (61.7°S) than previous estimation (61.5°S) from Budillon and Rintoul [2003], while the standard deviation (0.9°) remains unchanged. Figure 2 also shows the presence of isolated latitude band associated to the PF_SSH values not linked to any in situ front position. These isolated signals, often characterized by a very small latitudinal extension, can be due to the presence of water masses with the same physical properties of PF water in an unusual northern position. The explanation for the northern migration of water with PF characteristics can be linked to the presence of eddies detaching from the PF and moving northward to the Sub Antarctic Front.</p>\r\n <p ALIGN=\"center\"><a href=\" \"><img alt=\"\" src=\"/sites/all/themes/multipurpose/images/fig2.png\" width=\"500px\" /></a></p>\r\n<p align=\"justify\"><strong>Figure 2. Positions of the PF during the CLIMA/SOChIC/MORSea cruises from 1994 to 2010. Black line represents the mean latitude of front from in situ data, gray vertical bars represent the along track-latitude bands where fronts are detected using altimetry values (from Cotroneo et al. 2013).</strong></p>','','full_html'),('node','page',0,128,128,'it',0,'<h1 align= \"center\"><strong>Rapporto sulla Campagna Antartica (estratto)</strong></h1>\r\n\r\n<h2 align=\"center\"><strong>Estate Australe 2015-2016</strong></h2>\r\n\r\n<h3 align=\"center\"><strong>Trentunesima Spedizione (PNRA XXXI)</strong></h3>\r\n\r\n<p align=\"center\"><strong>Progetto 2009/B.09: Osservatorio Marino Nel Mare di Ross ( MORSea)</strong><br />\r\n<em>G. Budillon, A. De Alteris, G. Zambardino</em></p>\r\n\r\n<p align=\"justify\">Le attività a bordo (descritte nel seguito in Universal Time Coordinated - UTC) del progetto MORSea (http://morsea.uniparthenope.it) sono state principalmente focalizzate al mantenimento della rete di osservazioni marine attualmente esistente nel Mare di Ross. L’obiettivo primario dell’osservatorio è quello di fornire un sostanziale contributo al monitoraggio della variabilità interannuale delle caratteristiche fisiche e geochimiche delle acque di shelf nel settore occidentale del Mare di Ross.\r\nL’osservatorio è attualmente costituito da 4 catene correntometriche (mooring) contrassegnate dalle lettere “B”, “D”, “G” e “L”.\r\nA queste attività si sono aggiunte anche le misure di “ship of opportunity” effettuate senza interferire con i tempi di navigazione della M/N Italica. In particolare quest’anno sono state eseguite misure di temperatura e salinità superficiale del mare (SST e SSS rispettivamente), lanci di XBT per la misura della struttura subsuperficiale dell’Oceano Meridionale; lanci di drifter e float (nell’ambito della collaborazione con il progetto ARGOItaly). Queste attività, svolte in passato da progetti non più attivi del PNRA (CLIMA e SOChIC), sono state condotte al fine di non interrompere le preziose serie temporali acquisite dal 1994 considerata la valenza ormai “climatica” di queste informazioni.\r\nAnche quest’anno non è stato possibile acquisire nuova strumentazione, fatta eccezione per un nuovo correntometro Aanderaa Seaguard ed una sonda SBE SMP ODO, per cui i sensori riposizionati sono stati sostanzialmente quelli degli anni precedenti che, in diversi casi, risalgono a oltre 20 anni fa. Il materiale di consumo e di ricambio per le trappole di sedimento è stato fornito: dal dott. M. Capello (Univ. di Genova) per i mooring “D” e “L” (2 trappole), dal dott. L. Langone (CNR – ISMAR) per il mooring “B” (1 trappola). Le attività di recupero, ricondizionamento, scarico dei dati e rimessa a mare sono state effettuate in simbiosi con il gruppo di Oceanografia Fisica (Dr. P.Falco e M. De Stefano).\r\nIn occasione della sosta in base del 4 febbraio (UTC) si è provveduto anche a recuperare la catena correntometrica posizionato dalla NIWA su un fondale di 516 m a circa 3 miglia a est di MZS.\r\nCome tradizione, sono state effettuate calate di CTD/LADCP - per la verifica e taratura dei sensori posizionati sulle catene correntometriche - prima del loro recupero e dopo il loro posizionamento.\r\nNel seguito vengono descritte le attività svolte su ogni catena correntometrica ed in tabella TM1 viene riportato la scheda riassuntiva dei periodi di funzionamento di ogni strumento.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “B”</strong><br />\r\nIl mooring “B” è stato recuperato il 24 gennaio e rimesso in mare il 27 gennaio 2016.\r\nIl recupero del mooring secondo la normale procedura di sgancio ha dato esito negativo, nonostante entrambi gli sganciatori avessero confermato l’avvenuto sgancio e la loro posizione verticale.\r\nGrazie alla collaborazione del gruppo EchoSurvey, è stato effettuato un passaggio sulla posizione del mooring rilevando tutta la struttura, sia nella parte di fondo sia superiore, avendo conferma in questo modo della sua effettiva integrità e posizione verticale.\r\nIn analogia con quanto effettuato nella XXIX spedizione, il mooring è stato recuperato filando da poppa una coppia di divergenti sostenuti da circa 500 metri di cavo d’acciaio e collegati tra loro da cime di kevlar di circa 250 metri, appesantite da una catena. Al primo tentativo il mooring è stato incocciato e recuperato a bordo senza eccessivi problemi.\r\nDopo la manutenzione del caso, la catena correntometrica è stata riposizionata nella configurazione riportata in figura M1, sostanzialmente analoga al precedente periodo ma aumentando la spinta di galleggiamento.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “G”</strong><br />\r\nIl mooring “G” è stato recuperato il 28 gennaio e rimesso in mare il 30 gennaio 2016.\r\nEntrambe le operazioni si svolte senza particolari problemi: il recupero con ottime condizioni meteo mentre il riposizionamento con mare forza 4-5.\r\nLa configurazione del mooring riposizionato è stata modificata inserendo una nuova quota di misura a circa 250 me di profondità (v. figura M3) costituita da un correntometro e una sonda SBE per la misura di T&C.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “D”</strong><br />\r\nIl mooring “D” è stato recuperato il 31 gennaio e rimesso in mare il 6 febbraio 2016.\r\nEffettuata l’ordinaria manutenzione della strumentazione, il mooring “D” è stato rimesso in posizione nella configurazione illustrata in figura M2, rispetto alla precedente risultano: 1) aggiunta al fondo una sonda SBE per la misura di T&C dotata di sensore di ossigeno, 2) eliminata una trappola per sedimenti a causa della rottura di un motore.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “L”</strong><br />\r\nIl mooring “L” è stato recuperato il 1° febbraio e rimesso in mare il 9 febbraio 2016.\r\nLa configurazione del mooring riposizionato è riportata in figura M4.\r\nIn tabella TM1 vengono elencate le informazioni principali sul funzionamento della strumentazione alloggiata sui mooring nel periodo 2014-16, tenendo conto che:\r\n- le profondità [m] si riferiscono agli schemi della campagna 2013-2014;\r\n- gli intervalli riportati si riferiscono al periodo effettivo di misura valida in acqua e alla profondità indicata nella prima colonna.</p>\r\n\r\n<p align=\"justify\"><strong>Misure in continuo di temperatura e salinità superficiale</strong><br />\r\nDurante tutta la campagna è stata misurata la temperatura e salinità superficiale del mare (SST –Sea Surface Temperature; SSS – Sea Surface Salinity) utilizzando la presa d’acqua a circa 4 metri di profondità. L’attività è stata condotta in stretta simbiosi con il gruppo di Oceanografia Fisica.\r\nL’attività di misura in continuo è iniziata il 17 gennaio 2016 ed è continuata sino al ritorno in Nuova Zelanda (22 febbraio 2016). Per queste misure sono stati impiegati tre sensori (due di temperatura ed uno di conducibilità) gestiti dal sistema SBE-21 ed un GPS Garmin, l’intervallo di acquisizione è stato di 30”. I dati hanno subìto un primo processamento a bordo per l’eliminazione dei picchi dovuti sostanzialmente al rollio della nave e alla presenza di ghiacci.\r\nDi particolare interesse sono i dati acquisiti durante le due traversate oceaniche (andata e ritorno) tra Nuova Zelanda e Mare di Ross, i dati acquisiti hanno permesso di determinare le posizioni dei fronti termoalini che in questa zona separano aree a dinamica diversa. In fase di analisi del data set saranno valutate eventuali possibilità di utilizzo dei dati acquisiti per cal/val di misure satellitari.\r\nLe misure di SST e SSS rappresentano quelle osservazioni ricorrenti della Antarctic Circumpolar Current sollecitate e regolate dal SOOS (Southern Ocean Observing System, http://www.soos.aq/).\r\n\r\n<p align=\"justify\"><strong>Misure XBT</strong><br />\r\nI lanci di sonde XBT (SIPPICAN mod.T7, prof. max 760 m) sono iniziati il 17 gennaio alla latitudine 48°S e sono terminati il 21 gennaio latitudine di 70°S; l\'intervallo di campionamento è stato, come in passato, di 15 miglia nautiche e sono state utilizzate 89 sonde durante il viaggio tra la Nuova Zelanda e il Mare di Ross; solo una piccolissima percentuale delle sonde utilizzate ha mostrato problemi di funzionamento dovuti quasi esclusivamente al contatto del cavo conduttore in rame con lo scafo della nave.\r\nI dati hanno subìto un primo processamento a bordo per eliminare valori spuri, i primi metri influenzati dall’inerzia termica del sensore e gli eventuali dati affetti dalla presenza del fondo. In figura 3 è riportata la sezione in temperatura dello strato sub-superficiale fino alla profondità massima di 700 m.\r\nTali indagini, iniziate nel 1994, sono state portate avanti nell’ambito di diversi progetti PNRA e hanno oramai una valenza climatologica rilevante sia per il lungo periodo che coprono, sia per le possibili inter-connessioni con fenomeni a scala planetaria. Le misure XBT rappresentano quelle osservazioni ricorrenti della Antarctic Circumpolar Current sollecitate e regolate dal SOOS (Southern Ocean Observing System).\r\nUna breve sezione XBT è stata effettuata anche in corrispondenza del mooring G in occasione di una linea condotta dall’echosurvey ed in concomitanza con il recupero del mooring stesso. In Figura 4 è rappresentata la sezione verticale ottenuta aggiungendo alle misure XBT, il profilo di temperatura misurato prima del recupero del mooring G.\r\n<p ALIGN=\"center\"><a href=\" \"><img alt=\"\" src=\"/sites/all/themes/multipurpose/images/fig_XXXI.png\" width=\"600px\" /></a></p>\r\n<p align=\"justify\"><strong>Figura 1. Sezione verticale della distribuzione della temperatura misurata dal 17 al 21 gennaio 2016 (raw data).</strong></p>\r\n','','full_html'),('node','page',0,129,129,'en',0,'<h1 align= \"center\"><strong>Rapporto sulla Campagna Antartica (estratto)</strong></h1>\r\n\r\n<h2 align=\"center\"><strong>Estate Australe 2016-2017</strong></h2>\r\n\r\n<h3 align=\"center\"><strong>Trentduesima Spedizione (PNRA XXXII)</strong></h3>\r\n\r\n<p align=\"center\"><strong>Progetto 2009/B.09: Osservatorio Marino Nel Mare di Ross ( MORSea)</strong><br />\r\n<em>A. De Alteris, P. Falco, F. Grilli, G. Zambardino</em></p>\r\n\r\n<p align=\"justify\">Il progetto MORSea (http://morsea.uniparthenope.it) prevede la gestione e la manutenzione della rete di osservazioni marine attualmente esistente nel Mare di Ross. L’osservatorio è costituito da 4 catene correntometriche (mooring) contrassegnate dalle lettere “B”, “D”, “G” e “L”. Ogni punto di misura ha degli obiettivi specifici legati alla circolazione delle masse d’acqua che si generano sulla piattaforma e a quelle entranti attraverso il limite della scarpata continentale. In generale però l’obiettivo primario dell’osservatorio è quello di studiare la variabilità interannuale delle caratteristiche fisiche e geochimiche delle acque di shelf nel settore occidentale del Mare di Ross.\r\nA queste attività, negli ultimi anni si sono aggiunte delle misure di “ship of opportunity” effettuate quindi non impiegando tempo di navigazione della M/N Italica. Anche quest’anno infatti sono state eseguite misure di temperatura e salinità superficiale del mare (SST e SSS rispettivamente), lanci di XBT per la misura della struttura subsuperficiale dell’Oceano Meridionale; lanci di drifter e float (nell’ambito della collaborazione con il progetto ARGOItaly). In particolare le misure XBT hanno lo scopo essenziale di proseguire la serie storica di osservazioni, condotte durante la traversata dalla Nuova Zelanda fino al mare di Ross, realizzate al fine di caratterizzare la struttura della colonna d’acqua, fino alla profondità di 700 m, della Corrente Circumpolare Antartica (ACC), misure acquisite sin dal 1994.\r\nRelativamente all’attività dei mooring è da sottolineare che quest’anno è stato fatto un primo tentativo di svecchiamento della strumentazione utilizzata per le misure. In particolare, per quanto riguarda il mooring D, sono stati acquistati due nuovi sganciatori IXBLUE OCEANO 2500 che hanno sostituito i due precedenti ormai in cattive condizioni, è stato sostituito un vecchio correntometro RCM 7 con un nuovo correntometro Aanderaa Seaguard e aggiunta una sonda SBE 37 SMP al posto di un vecchio misuratore di temperatura SBE 39.\r\nInoltre, sul mooring G è stata aggiunta una sonda SBE 37 SMP ODO sul fondo. Ad ogni modo la percentuale di strumenti che, in diversi casi, risalgono a oltre 20 anni fa, è ancora decisamente prevalente per cui è auspicabile, quanto necessario, che questo primo tentativo di rinnovamento della strumentazione continui in futuro.\r\nIl materiale di consumo e di ricambio per le trappole di sedimento è stato fornito: dal dott. M. Capello (Univ. di Genova) per i mooring “D” e “L” (2 trappole), dal dott. L. Langone (CNR – ISMAR) per il mooring “B” (1 trappola). Sfortunatamente, il motore della trappola del mooring L ha mostrato malfunzionamenti non risolvibili a bordo per cui, non disponendo di un motore sostitutivo, è stato impossibile rimetterla in mare.\r\nLe attività di recupero e rimessa a mare sono state effettuate in simbiosi con il gruppo di Oceanografia Fisica (Dr. P. Castango e M. De Stefano) e con il contributo del Dr. L. Langone.\r\nDa prassi ormai consolidata, sono state effettuate calate di CTD/LADCP - per la verifica e taratura dei sensori posizionati sulle catene correntometriche - prima del loro recupero e dopo il loro posizionamento. Proprio durante la stazione di calibrazione avvenuta prima del recupero del mooring G, a causa di un violento urto del frame contenente la sensoristica per le misure, alcuni sensori, compresa la sonda principale SBE 9 plus, hanno riportato danni che hanno impedito il loro utilizzo nel prosieguo della campagna. Oltre alla sonda, anche il sensore di O2 e due sensori di temperatura e uno di conducibiltà della sonda MicroRider 1000 (anch’essa montata sul frame) sono risultati non funzionanti ed è stata necessaria la sostituzione con i sensori di rispetto.\r\nNel seguito vengono descritte le attività svolte su ogni catena correntometrica ed in tabella TM1 viene riportata la scheda riassuntiva dei periodi di funzionamento di ogni strumento. Tutti le date e gli orari sono riportati in UTC.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “D”</strong><br />\r\nIl mooring “D” è stato recuperato l’8 gennaio 2017 e rimesso in mare il giorno 11 febbraio 2017. Il comportamento degli sganciatori è risultato anomalo. Gli strumenti funzionano, sono cioè in grado di operare lo sgancio, ma non hanno dato alcuna informazione riguardo il loro stato e non rispondono ai codici di enable e disable. Tale comportamento era già stato evidenziato durante il precedente recupero. Considerando l’età degli strumenti e l’importanza del mooring si è deciso di acquistare due nuovi sganciatori e di sostituire quindi i vecchi.\r\nL’ordinaria manutenzione della strumentazione presente non ha mostrato particolari criticità se non nel caso della sonda di SBE37 SMP ODO acquistata pochi mesi prima della XXXI campagna e aggiunta al mooring. La sonda ha interrotto l’acquisizione dopo circa 5 mesi dal posizionamento per cause non bene chiarite nemmeno dalla casa costruttrice contattata tramite il rappresentante italiano. Dopo vari test di funzionamento svolti a bordo e d’accordo con la casa costruttrice, si è deciso di utilizzarla nuovamente.\r\nIl mooring “D” è stato rimesso in posizione nella configurazione illustrata in figura M2. Rispetto alla precedente configurazione, è stato sostituito un correntometro Aanderaa RCM 7 alla quota di circa 880 m con un Aanderaa SeaGuard e al posto di una sonda SBE 39 è stato usato un SBE 37 SMP, quindi con misura anche di pressione e salinità alla quota di circa 750 m. Infine è stata sostituita la coppia di sganciatori per i quali è necessaria una manutenzione prima di un eventuale riutilizzo, e al loro posto è stata montata una coppia di sganciatori nuovi della IXBLUE.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “L”</strong><br />\r\nIl mooring “L” è stato recuperato il 10 gennaio 2017 e rimesso in mare il 22 gennaio successivo.\r\nDurante la manutenzione della trappola di sedimento si sono riscontrate anomalie di funzionamento del motore che regola lo scorrimento delle bottigliette che raccolgono il sedimento. Non è stato possibile intervenire per riparare il guasto e tanto meno sostituire il motore in quando non disponibile uno di ricambio. Si è pertanto dovuto optare per la rimozione momentanea dal mooring della trappola. I problemi di recupero manifestati durante le spedizioni del 2013/14 e 2015/16, sono stati superati dall’aggiunta (eseguita la scorsa campagna oceanografica) di ulteriori boe di spinta che hanno consentito un risalita corretta di tutta la struttura. La configurazione del mooring riposizionato è riportata in figura M4.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “B”</strong><br />\r\nIl mooring “B” è stato recuperato il 17 gennaio e rimesso in mare il 30 gennaio 2017.\r\nIl recupero di questo mooring, che nelle ultime due spedizioni era risultato particolarmente complicato, quest’anno è avvenuto in modo regolare. Anche in questo caso l’aggiunta di ulteriori spinte decise durante la campagna della XXXI spedizione, è risultata determinante al fine di un corretto recupero. Rimangono perplessità riguardo alle cause che non hanno consentito a tutta la struttura di venire a galla spontaneamente nelle precedenti occasioni di recupero. Per verificare l’efficacia delle spinte sono state eseguite prove di galleggiabilità di tutti i gruppi boa presenti sul mooring, applicando un peso pari alla spinta nominale della boa e filando in acqua tutto per verificarne il comportamento. In tutti i casi le boe hanno sostenuto il peso dimostrando di essere ancora efficienti.\r\nAd ogni modo, onde evitare problemi in futuro, si è deciso di applicare un’ulteriore boa di spinta da 25 kg (tipo Vitrovex) nel settore immediatamente superiore alla trappola di sedimento presente alla quota di 460 metri. Dopo la manutenzione del caso, la catena correntometrica è stata riposizionata nella configurazione riportata in figura M1, sostanzialmente analoga al precedente periodo, ma aumentando la spinta di galleggiamento.</p>\r\n\r\n<p align=\"justify\"><strong>Mooring “G”</strong><br />\r\nIl mooring “G” è stato recuperato il 06 febbraio e rimesso in mare 09/02/2016.\r\nL’operazione di recupero, anche se condotta con mare 4/5, è stata eseguita in modo rapido e corretto (inizio ascolto ore 00:47 del 6/02, sganciatore a bordo ore 01:53 del 6/02). La manutenzione della strumentazione (come per i mooring precedenti) non ha messo in evidenza alcuna criticità sia dal punto di vista dell’integrità della strumentazione che del processo di acquisizione dati.\r\nAl fine di ottenere informazioni più mirate riguardo il transito della HSSW sul fondo nella zona di G, è stata aggiunta al mooring, nel suo settore più profondo, una sonda SBE 37 SMP ODO. Da riscontri fatti in rapporti di attività precedenti, si è rilevato che già in passato era presente una sonda simile e quindi si è pensato di ripristinare questa importante quota di misura dei parametri di T ed S aggiungendo però il parametro O2.\r\nLa configurazione del mooring riposizionato è riportata in figura M3.\r\nIn tabella TM1 vengono elencate le informazioni principali sul funzionamento della strumentazione alloggiata sui mooring nel periodo 2016-17, tenendo conto che:\r\n- le profondità [m] si riferiscono agli schemi della campagna 2015-2016;\r\n- gli intervalli riportati si riferiscono al periodo effettivo di misura valida in acqua e alla profondità indicata nella prima colonna.</p>\r\n\r\n<p align=\"justify\"><strong>Misure in continuo di temperatura e salinità superficiale</strong><br />\r\nDurante tutta la campagna si sono misurate la temperatura e la salinità superficiale del mare (SST – Sea Surface Temperature; SSS – Sea Surface Salinity) utilizzando la presa d’acqua a circa 4 metri di profondità. L’attività è stata condotta con il gruppo di Oceanografia Fisica.\r\nL’attività di misura in continuo è iniziata il 30 dicembre 2016, appena lasciato il fiordo di Lyttleton, ed è continuata sino al ritorno in Nuova Zelanda. Per queste misure sono stati impiegati tre sensori (due di temperatura e uno di conducibilità) gestiti dal sistema SBE-21 e un GPS Garmin; l’intervallo di acquisizione è stato di 30”. I dati hanno subìto un primo processamento a bordo per l’eliminazione dei picchi dovuti sostanzialmente al rollio della nave e alla presenza di ghiacci.\r\nDi particolare interesse sono i dati acquisiti durante le due traversate oceaniche tra Nuova Zelanda e Mare di Ross (andata e ritorno, non mostrati) in quanto permetteranno di determinare le posizioni dei fronti termoalini in superficie che in questa zona separano le zone a dinamica diversa della ACC. Questi dati risultano molto utili se integrati con i dati XBT e inoltre rappresentano la verità mare per validazioni di modelli e misure satellitari.\r\nAnche le misure di SST e SSS, come quelle con gli XBT, rappresentano quelle osservazioni ricorrenti della Antarctic Circumpolar Current sollecitate e regolate dal SOOS (Southern Ocean Observing System, http://www.soos.aq/).</p>\r\n\r\n<p align=\"justify\"><strong>Misure XBT</strong><br />\r\nI lanci di sonde XBT (SIPPICAN mod.T7, prof. max 760 m) sono iniziati il 31 dicembre 2016 alla latitudine 48°S e sono terminati il 05 gennaio 2017 alla latitudine di 68°46’S; la distanza tra ogni punto di campionamento è statao, come in passato, di 15 miglia nautiche e sono state utilizzate 90 sonde lungo la rotta seguita per entrare nel Mare di Ross; solo 3 di 90 sonde hanno mostrato problemi di funzionamento dovuti quasi esclusivamente al contatto del cavo conduttore in rame con lo scafo della nave.\r\nI dati hanno subìto un primo processamento a bordo per eliminare i valori spuri, i primi metri influenzati dall’inerzia termica del sensore e gli eventuali dati affetti dalla presenza del fondo. In figura 3 è riportata la sezione in temperatura dello strato sub-superficiale fino alla profondità massima di 700 m.\r\nLe misure XBT rappresentano quelle osservazioni ricorrenti della Antarctic Circumpolar Current sollecitate e regolate dal SOOS (Southern Ocean Observing System). Considerando che tali indagini sono iniziate nel 1994, portate avanti nell’ambito di diversi progetti PNRA, si può ritenere assodata la valenza a scala climatologica dato il lungo periodo che coprono.\r\nDurante il viaggio di ritorno, avendo disponibili ancora 6 sonde XBT, si è pensato di eseguire lanci a 15’ di latitudine di distanza per cercare di osservare il limite meridionale di intrusione di MCDW lungo la costa occidentale del mare di Ross. La latitudine di partenza dei lanci è stata 73°30’S e si è giunti fino a 72°15’S. I lanci sono cominciati il 14/02/2017 alle ore 23.30 circa e terminati il giorno 15/02/2017 alle ore 5.00 circa.\r\n<p ALIGN=\"center\"><a href=\" \"><img alt=\"\" src=\"/sites/all/themes/multipurpose/images/fig_XXXII.png\" width=\"600px\" /></a></p>\r\n<p align=\"justify\"><strong>Figura 1. Sezione verticale della distribuzione della temperatura misurata dal 31/12/2016 al 05/01/2017 (raw data).</strong></p>\r\n\r\n<p align=\"justify\"><strong>Floats</strong><br />\r\nOltre agli XBT, durante il trasferimento verso il mare di Ross, sono stati rilasciati in mare 10 float e 10 drifter. Queste misure rientrano nella collaborazione con il progetto ARGOItaly, che ha fornito gli strumenti (http://nettuno.ogs.trieste.it/jungo/argoitaly/floats.html), attività volta a fornire un contributo italiano all’interno del più ampio programma di osservazione, a scala globale, degli oceani denominato ARGO.\r\nI float sono strumenti autonomi lagrangiani ovvero, una volta rilasciati in mare, sono trasportati dalle correnti marine a una profondità predeterminata. A intervalli regolari la sonda sale in superficie misurando le proprietà termoaline che poi vengono trasmesse via satellite al centro di raccolta dati.\r\nIl ciclo tipico dei float utilizzato è quello standard stabilito nel programma ARGO, ovvero la cosiddetta “parking depth” (ovvero la profondità alla quale il float arresta la discesa ed è trasportato passivamente dalle correnti) è a 1000 metri; al termine di un intervallo di 10 giorni il float è programmato per immergersi sino a 2000 metri e poi di risalire in superficie (dove rimane per 6 ore) per eseguire il profilo di temperatura e salinità e per la trasmissione dei dati acquisiti.\r\nI float utilizzati nel progetto, in particolare, hanno un sistema di comunicazione satellitare bi-direzionale (Iridium) per poter modificare a distanza i parametri di missione. Quest’anno tra i float disponibili sono strati resi disponibili tre con inserito l’algoritmo per il rilevamento del ghiaccio in superficie. Questa tipologia di float potrebbe consentire un monitoraggio delle fasce polari dove la formazione di ghiaccio marino durante l’inverno impedisce l’affioramento dei float in superficie e spesso causa anche il loro danneggiamento.\r\nI drifter sono sempre strumenti lagrangiani, ma rimangono in superficie trasmettendo in tempo reale le posizioni e il valore di temperatura superficiale. Anche quest’anno sono stati rilasciati drifter del tipo Surface Velocity Programme (SVP) particolarmente adatti a misure di corrente superficiale in oceano aperto. I lanci dei drifter e dei float sono avvenuti simultaneamente e sono cominciati il giorno 02/01/2017 a circa 55°S, terminati il giorno successivo a 63°S.','','full_html'),('node','page',0,130,130,'en',0,'<h1 align= \"center\"><strong>Rapporto sulla Campagna Antartica (estratto)</strong></h1>\r\n\r\n<h2 align=\"center\"><strong>Estate Australe 2017-2018</strong></h2>\r\n\r\n<h3 align=\"center\"><strong>Trentduesima Spedizione (PNRA XXXIII)</strong></h3>\r\n\r\n<p align=\"center\"><strong>Progetto 2009/B.09: Osservatorio Marino Nel Mare di Ross ( MORSea)</strong><br />\r\n<em>Y. Cotroneo, L. Marziani</em></p>\r\n\r\n<p ALIGN=\"justify\">Lo scopo del progetto MOMA è lo studio della variabilità della corrente circumpolare antartica nella regione oceanica compresa tra Antartide e Sud Africa, nell’ambito delle attività scientifiche internazionali promosse dal Southern Ocean Observing System (SOOS) e dal First Antarctic and Southern Ocean Science Horizon Scan.\r\nMOMA si basa sulla raccolata e l’analisi di un dataset ad alta risoluzione, affiancato a simulazioni numeriche sviluppate e utilizzate nell’ambito del progetto.\r\nNell’ambito della XXXIII Spedizione in Antartide è stata effettuata la seconda campagna di misure del progetto attraverso la partecipazione di un ricercatore italiano alla campagna oceanografica del South African National Antarctic Programme (SANAP) dell’estate australe 2017/18.\r\nLa raccolta di dati mediante la strumentazione di bordo (CTD, XBT, ADCP, etc.) è stata integrata con un numero ridotto di float (3), poiché, per problemi relativi alle tempistiche d’imbarco, non è stato possibile acquisire e garantire la consegna di ulteriori boe/sonde. Consequenzialmente, anche il personale imbarcato del progetto MOMA è stato ridotto a una singola unità.\r\nSuccessivamente, grazie alla collaborazione con l’IFREMER e l’INOGS, prima della partenza della S/A Agulhas II da Città del Capo il 07/12/2017, è stato possibile integrare i float del progetto MOMA con 10 ARGO floats di un progetto di ricerca francese. L’unione dei dati provenienti dalle diverse sonde consentirà quindi una rappresentazione migliore dell’area di interesse.\r\nTali dispositivi, una volta rilasciati in mare, si muovono in maniera “lagrangiana” a una profondità predeterminata e a intervalli regolari risalgono in superficie misurando i dati relativi alle proprietà termoaline della colonna d’acqua. In particolare, a intervalli di 10 giorni, il float è programmato per immergersi sino a 2000 metri per poi risalire in superficie per eseguire il profilo di temperatura e salinità e trasmettere i dati acquisiti. Una volta effettuata la raccolta dati, il float ritorna a una “parking depth” di 1000 metri di profondità. Il periodo di vita massimo del singolo float è di circa 5 anni.\r\nI 3 Euro-Argo floats del progetto MOMA sono stati forniti dall’Istituto Nazionale di Oceanografia e di Geofisica Sperimentale (OGS) nell’ambito delle attività dell’Unità di Ricerca “3” – “Approvvigionamento, programmazione, messa a mare ed elaborazione dei dati di strumenti lagrangiani” coordinata dal Prof. Pierre Poulain, mentre l’integrazione con i 10 float francesi è il prodotto della collaborazione con Noé Poffa e Romain Cancouët dell’Institut français de recherche pour l\'exploitation de la mer - French Research Institute for Exploitation of the Sea (Ifremer).\r\nLe attività sul campo sono iniziate il giorno 15 gennaio 2018 con l’arrivo sul continente antartico del Dott. Luigi Marziani che ha raggiunto la base di ricerca Norvegese “Troll Station” con un volo Città del Capo – Antartide operato dalla Norwegian Antarctic Research Expeditionsed (NARE) ed è stato successivamente trasferito (16 gennaio), a bordo della nave di ricerca sudafricana S/A Agulhas II.\r\nUna volta verificata la condizione degli strumenti imbarcati alla partenza, l’attenzione si è spostata sulla raccolta dei dati acquisiti durante la navigazione verso sud, utili a una prima analisi per la conferma dei punti di messa a mare dei float sulla rotta di ritorno. Sulla base dei dati XBT raccolti durante il primo leg di navigazione, dei dati altimetrici e della bibliografia esistente, sono state identificate le posizioni dei principali fronti della ACC ed è stato quindi messo a punto il piano di messe a mare dei float.\r\n</p>\r\n\r\nLungo le due traversate Città del Capo – Antartide e viceversa sono state lanciate 227 sonde XBT alla risoluzione spaziale di circa 20 nm per la rilevazione dei dati di temperatura nello strato 0–900 metri dell’Oceano Meridionale (Figure 1 e 2).\r\n\r\n<p ALIGN=\"center\"><a href=\" \"><img alt=\"\" src=\"/sites/default/files/fig1_pnraXXXIII.png\" width=\"500px\" /></a></p>\r\n \r\n<p align=\"justify\"><strong>Figure 1. Sezione di temperatura nello strato 0–1000 m lungo la rotta Città del Capo – Antartide, nel periodo 07–20 dicembre 2017. La posizione dei principali fronti della ACC è indicata dalle linee rosse.</b></strong>\r\n\r\n<p ALIGN=\"center\"><a href=\" \"><img alt=\"\" src=\"/sites/default/files/fig2_pnraXXXIII.png\" width=\"500px\" /></a></p>\r\n \r\n<p align=\"justify\"><strong>Figure 2. Sezione di temperatura nello strato 0–1000 m lungo la rotta Antartide – Città del Capo, nel periodo 06-13 febbraio 2017. La posizione dei principali fronti della ACC è indicata dalle linee rosse.</b></strong>\r\n','','full_html'),('node','page',0,131,131,'en',0,'Pagina di prova','','full_html');
/*!40000 ALTER TABLE `field_revision_body` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `field_revision_comment_body`
--

DROP TABLE IF EXISTS `field_revision_comment_body`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `field_revision_comment_body` (
  `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to',
  `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  `deleted` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'A boolean indicating whether this data item has been deleted',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to',
  `language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language for this data item.',
  `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  `comment_body_value` longtext DEFAULT NULL,
  `comment_body_format` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`entity_type`,`entity_id`,`revision_id`,`deleted`,`delta`,`language`),
  KEY `entity_type` (`entity_type`),
  KEY `bundle` (`bundle`),
  KEY `deleted` (`deleted`),
  KEY `entity_id` (`entity_id`),
  KEY `revision_id` (`revision_id`),
  KEY `language` (`language`),
  KEY `comment_body_format` (`comment_body_format`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for field 1 (comment_body)';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `field_revision_comment_body`
--

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

--
-- Table structure for table `field_revision_field_gfdata`
--

DROP TABLE IF EXISTS `field_revision_field_gfdata`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `field_revision_field_gfdata` (
  `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to',
  `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  `deleted` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'A boolean indicating whether this data item has been deleted',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to',
  `language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language for this data item.',
  `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  `field_gfdata_geom` longblob DEFAULT NULL,
  `field_gfdata_geo_type` varchar(64) DEFAULT '',
  `field_gfdata_lat` decimal(18,12) DEFAULT NULL,
  `field_gfdata_lon` decimal(18,12) DEFAULT NULL,
  `field_gfdata_left` decimal(18,12) DEFAULT NULL,
  `field_gfdata_top` decimal(18,12) DEFAULT NULL,
  `field_gfdata_right` decimal(18,12) DEFAULT NULL,
  `field_gfdata_bottom` decimal(18,12) DEFAULT NULL,
  `field_gfdata_geohash` varchar(16) DEFAULT NULL,
  PRIMARY KEY (`entity_type`,`entity_id`,`revision_id`,`deleted`,`delta`,`language`),
  KEY `entity_type` (`entity_type`),
  KEY `bundle` (`bundle`),
  KEY `deleted` (`deleted`),
  KEY `entity_id` (`entity_id`),
  KEY `revision_id` (`revision_id`),
  KEY `language` (`language`),
  KEY `field_gfdata_lat` (`field_gfdata_lat`),
  KEY `field_gfdata_lon` (`field_gfdata_lon`),
  KEY `field_gfdata_top` (`field_gfdata_top`),
  KEY `field_gfdata_bottom` (`field_gfdata_bottom`),
  KEY `field_gfdata_left` (`field_gfdata_left`),
  KEY `field_gfdata_right` (`field_gfdata_right`),
  KEY `field_gfdata_geohash` (`field_gfdata_geohash`),
  KEY `field_gfdata_centroid` (`field_gfdata_lat`,`field_gfdata_lon`),
  KEY `field_gfdata_bbox` (`field_gfdata_top`,`field_gfdata_bottom`,`field_gfdata_left`,`field_gfdata_right`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for field 20 (field_gfdata)';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `field_revision_field_gfdata`
--

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

--
-- Table structure for table `field_revision_field_image`
--

DROP TABLE IF EXISTS `field_revision_field_image`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `field_revision_field_image` (
  `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to',
  `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  `deleted` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'A boolean indicating whether this data item has been deleted',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to',
  `language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language for this data item.',
  `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  `field_image_fid` int(10) unsigned DEFAULT NULL COMMENT 'The file_managed.fid being referenced in this field.',
  `field_image_alt` varchar(512) DEFAULT NULL COMMENT 'Alternative image text, for the image’s ’alt’ attribute.',
  `field_image_title` varchar(1024) DEFAULT NULL COMMENT 'Image title text, for the image’s ’title’ attribute.',
  `field_image_width` int(10) unsigned DEFAULT NULL COMMENT 'The width of the image in pixels.',
  `field_image_height` int(10) unsigned DEFAULT NULL COMMENT 'The height of the image in pixels.',
  PRIMARY KEY (`entity_type`,`entity_id`,`revision_id`,`deleted`,`delta`,`language`),
  KEY `entity_type` (`entity_type`),
  KEY `bundle` (`bundle`),
  KEY `deleted` (`deleted`),
  KEY `entity_id` (`entity_id`),
  KEY `revision_id` (`revision_id`),
  KEY `language` (`language`),
  KEY `field_image_fid` (`field_image_fid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for field 4 (field_image)';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `field_revision_field_image`
--

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

--
-- Table structure for table `field_revision_field_openlayers_example_input`
--

DROP TABLE IF EXISTS `field_revision_field_openlayers_example_input`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `field_revision_field_openlayers_example_input` (
  `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to',
  `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  `deleted` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'A boolean indicating whether this data item has been deleted',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to',
  `language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language for this data item.',
  `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  `field_openlayers_example_input_geom` longblob DEFAULT NULL,
  `field_openlayers_example_input_geo_type` varchar(64) DEFAULT '',
  `field_openlayers_example_input_lat` decimal(18,12) DEFAULT NULL,
  `field_openlayers_example_input_lon` decimal(18,12) DEFAULT NULL,
  `field_openlayers_example_input_left` decimal(18,12) DEFAULT NULL,
  `field_openlayers_example_input_top` decimal(18,12) DEFAULT NULL,
  `field_openlayers_example_input_right` decimal(18,12) DEFAULT NULL,
  `field_openlayers_example_input_bottom` decimal(18,12) DEFAULT NULL,
  `field_openlayers_example_input_geohash` varchar(16) DEFAULT NULL,
  PRIMARY KEY (`entity_type`,`entity_id`,`revision_id`,`deleted`,`delta`,`language`),
  KEY `entity_type` (`entity_type`),
  KEY `bundle` (`bundle`),
  KEY `deleted` (`deleted`),
  KEY `entity_id` (`entity_id`),
  KEY `revision_id` (`revision_id`),
  KEY `language` (`language`),
  KEY `field_openlayers_example_input_lat` (`field_openlayers_example_input_lat`),
  KEY `field_openlayers_example_input_lon` (`field_openlayers_example_input_lon`),
  KEY `field_openlayers_example_input_top` (`field_openlayers_example_input_top`),
  KEY `field_openlayers_example_input_bottom` (`field_openlayers_example_input_bottom`),
  KEY `field_openlayers_example_input_left` (`field_openlayers_example_input_left`),
  KEY `field_openlayers_example_input_right` (`field_openlayers_example_input_right`),
  KEY `field_openlayers_example_input_geohash` (`field_openlayers_example_input_geohash`),
  KEY `field_openlayers_example_input_centroid` (`field_openlayers_example_input_lat`,`field_openlayers_example_input_lon`),
  KEY `field_openlayers_example_input_bbox` (`field_openlayers_example_input_top`,`field_openlayers_example_input_bottom`,`field_openlayers_example_input_left`,`field_openlayers_example_input_right`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for field 5 (field_openlayers...';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `field_revision_field_openlayers_example_input`
--

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

--
-- Table structure for table `field_revision_field_photo`
--

DROP TABLE IF EXISTS `field_revision_field_photo`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `field_revision_field_photo` (
  `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to',
  `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  `deleted` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'A boolean indicating whether this data item has been deleted',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to',
  `language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language for this data item.',
  `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  `field_photo_fid` int(10) unsigned DEFAULT NULL COMMENT 'The file_managed.fid being referenced in this field.',
  `field_photo_alt` varchar(512) DEFAULT NULL COMMENT 'Alternative image text, for the image’s ’alt’ attribute.',
  `field_photo_title` varchar(1024) DEFAULT NULL COMMENT 'Image title text, for the image’s ’title’ attribute.',
  `field_photo_width` int(10) unsigned DEFAULT NULL COMMENT 'The width of the image in pixels.',
  `field_photo_height` int(10) unsigned DEFAULT NULL COMMENT 'The height of the image in pixels.',
  PRIMARY KEY (`entity_type`,`entity_id`,`revision_id`,`deleted`,`delta`,`language`),
  KEY `entity_type` (`entity_type`),
  KEY `bundle` (`bundle`),
  KEY `deleted` (`deleted`),
  KEY `entity_id` (`entity_id`),
  KEY `revision_id` (`revision_id`),
  KEY `language` (`language`),
  KEY `field_photo_fid` (`field_photo_fid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for field 21 (field_photo)';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `field_revision_field_photo`
--

LOCK TABLES `field_revision_field_photo` WRITE;
/*!40000 ALTER TABLE `field_revision_field_photo` DISABLE KEYS */;
INSERT INTO `field_revision_field_photo` VALUES ('node','photo_moorings_2014',0,21,21,'en',0,10,'','',720,960),('node','photo_moorings_2014',0,22,22,'en',0,11,'','',720,960),('node','photo_moorings_2014',0,23,23,'en',0,12,'','',720,960),('node','photo_moorings_2014',0,24,24,'en',0,15,'','',1691,1127);
/*!40000 ALTER TABLE `field_revision_field_photo` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `field_revision_field_photo_moorings_2010`
--

DROP TABLE IF EXISTS `field_revision_field_photo_moorings_2010`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `field_revision_field_photo_moorings_2010` (
  `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to',
  `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  `deleted` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'A boolean indicating whether this data item has been deleted',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to',
  `language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language for this data item.',
  `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  `field_photo_moorings_2010_fid` int(10) unsigned DEFAULT NULL COMMENT 'The file_managed.fid being referenced in this field.',
  `field_photo_moorings_2010_alt` varchar(512) DEFAULT NULL COMMENT 'Alternative image text, for the image’s ’alt’ attribute.',
  `field_photo_moorings_2010_title` varchar(1024) DEFAULT NULL COMMENT 'Image title text, for the image’s ’title’ attribute.',
  `field_photo_moorings_2010_width` int(10) unsigned DEFAULT NULL COMMENT 'The width of the image in pixels.',
  `field_photo_moorings_2010_height` int(10) unsigned DEFAULT NULL COMMENT 'The height of the image in pixels.',
  PRIMARY KEY (`entity_type`,`entity_id`,`revision_id`,`deleted`,`delta`,`language`),
  KEY `entity_type` (`entity_type`),
  KEY `bundle` (`bundle`),
  KEY `deleted` (`deleted`),
  KEY `entity_id` (`entity_id`),
  KEY `revision_id` (`revision_id`),
  KEY `language` (`language`),
  KEY `field_photo_moorings_2010_fid` (`field_photo_moorings_2010_fid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for field 25 (field_photo...';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `field_revision_field_photo_moorings_2010`
--

LOCK TABLES `field_revision_field_photo_moorings_2010` WRITE;
/*!40000 ALTER TABLE `field_revision_field_photo_moorings_2010` DISABLE KEYS */;
INSERT INTO `field_revision_field_photo_moorings_2010` VALUES ('node','photo_moorings_2010',0,115,115,'und',0,40,'','',705,697),('node','photo_moorings_2010',0,116,116,'und',0,41,'','',557,724),('node','photo_moorings_2010',0,117,117,'und',0,42,'','',591,695),('node','photo_moorings_2010',0,118,118,'und',0,43,'','',595,838),('node','photo_moorings_2010',0,121,121,'und',0,40,'','',705,697),('node','photo_moorings_2010',0,122,122,'und',0,42,'','',591,695),('node','photo_moorings_2010',0,123,123,'und',0,41,'','',557,724);
/*!40000 ALTER TABLE `field_revision_field_photo_moorings_2010` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `field_revision_field_photo_moorings_2012`
--

DROP TABLE IF EXISTS `field_revision_field_photo_moorings_2012`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `field_revision_field_photo_moorings_2012` (
  `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to',
  `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  `deleted` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'A boolean indicating whether this data item has been deleted',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to',
  `language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language for this data item.',
  `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  `field_photo_moorings_2012_fid` int(10) unsigned DEFAULT NULL COMMENT 'The file_managed.fid being referenced in this field.',
  `field_photo_moorings_2012_alt` varchar(512) DEFAULT NULL COMMENT 'Alternative image text, for the image’s ’alt’ attribute.',
  `field_photo_moorings_2012_title` varchar(1024) DEFAULT NULL COMMENT 'Image title text, for the image’s ’title’ attribute.',
  `field_photo_moorings_2012_width` int(10) unsigned DEFAULT NULL COMMENT 'The width of the image in pixels.',
  `field_photo_moorings_2012_height` int(10) unsigned DEFAULT NULL COMMENT 'The height of the image in pixels.',
  PRIMARY KEY (`entity_type`,`entity_id`,`revision_id`,`deleted`,`delta`,`language`),
  KEY `entity_type` (`entity_type`),
  KEY `bundle` (`bundle`),
  KEY `deleted` (`deleted`),
  KEY `entity_id` (`entity_id`),
  KEY `revision_id` (`revision_id`),
  KEY `language` (`language`),
  KEY `field_photo_moorings_2012_fid` (`field_photo_moorings_2012_fid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for field 22 (field_photo...';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `field_revision_field_photo_moorings_2012`
--

LOCK TABLES `field_revision_field_photo_moorings_2012` WRITE;
/*!40000 ALTER TABLE `field_revision_field_photo_moorings_2012` DISABLE KEYS */;
INSERT INTO `field_revision_field_photo_moorings_2012` VALUES ('node','photo_moorings_2012',0,26,26,'en',0,34,'','',720,960),('node','photo_moorings_2012',0,34,34,'en',0,32,'','',720,960),('node','photo_moorings_2012',0,35,35,'en',0,33,'','',886,637),('node','photo_moorings_2012',0,36,36,'en',0,35,'','',720,960),('node','photo_moorings_2012',0,120,120,'it',0,34,'','',720,960);
/*!40000 ALTER TABLE `field_revision_field_photo_moorings_2012` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `field_revision_field_tags`
--

DROP TABLE IF EXISTS `field_revision_field_tags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `field_revision_field_tags` (
  `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to',
  `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  `deleted` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'A boolean indicating whether this data item has been deleted',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to',
  `language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language for this data item.',
  `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  `field_tags_tid` int(10) unsigned DEFAULT NULL,
  PRIMARY KEY (`entity_type`,`entity_id`,`revision_id`,`deleted`,`delta`,`language`),
  KEY `entity_type` (`entity_type`),
  KEY `bundle` (`bundle`),
  KEY `deleted` (`deleted`),
  KEY `entity_id` (`entity_id`),
  KEY `revision_id` (`revision_id`),
  KEY `language` (`language`),
  KEY `field_tags_tid` (`field_tags_tid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for field 3 (field_tags)';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `field_revision_field_tags`
--

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

--
-- Table structure for table `field_revision_taxonomy_forums`
--

DROP TABLE IF EXISTS `field_revision_taxonomy_forums`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `field_revision_taxonomy_forums` (
  `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to',
  `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  `deleted` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'A boolean indicating whether this data item has been deleted',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to',
  `language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language for this data item.',
  `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  `taxonomy_forums_tid` int(10) unsigned DEFAULT NULL,
  PRIMARY KEY (`entity_type`,`entity_id`,`revision_id`,`deleted`,`delta`,`language`),
  KEY `entity_type` (`entity_type`),
  KEY `bundle` (`bundle`),
  KEY `deleted` (`deleted`),
  KEY `entity_id` (`entity_id`),
  KEY `revision_id` (`revision_id`),
  KEY `language` (`language`),
  KEY `taxonomy_forums_tid` (`taxonomy_forums_tid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for field 23 (taxonomy_forums)';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `field_revision_taxonomy_forums`
--

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

--
-- Table structure for table `field_revision_title_field`
--

DROP TABLE IF EXISTS `field_revision_title_field`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `field_revision_title_field` (
  `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to',
  `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  `deleted` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'A boolean indicating whether this data item has been deleted',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to',
  `language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language for this data item.',
  `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  `title_field_value` varchar(255) DEFAULT NULL,
  `title_field_format` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`entity_type`,`entity_id`,`revision_id`,`deleted`,`delta`,`language`),
  KEY `entity_type` (`entity_type`),
  KEY `bundle` (`bundle`),
  KEY `deleted` (`deleted`),
  KEY `entity_id` (`entity_id`),
  KEY `revision_id` (`revision_id`),
  KEY `language` (`language`),
  KEY `title_field_format` (`title_field_format`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for field 24 (title_field)';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `field_revision_title_field`
--

LOCK TABLES `field_revision_title_field` WRITE;
/*!40000 ALTER TABLE `field_revision_title_field` DISABLE KEYS */;
INSERT INTO `field_revision_title_field` VALUES ('node','page',0,1,1,'und',0,'MORSea Gallery',NULL),('node','page',0,2,2,'und',0,'Contacts',NULL),('node','page',0,3,3,'en',0,'Cooperations',NULL),('node','page',0,4,4,'en',0,'Data access',NULL),('node','page',0,7,7,'en',0,'Ancillary activities',NULL),('node','page',0,8,8,'und',0,'The network',NULL),('node','page',0,12,12,'en',0,'The Moorings',NULL),('node','page',0,13,13,'en',0,'2011/12 - PNRA XXVII',NULL),('node','page',0,14,14,'en',0,'2013/14 - PNRA XXIX',NULL),('node','page',0,15,15,'en',0,'Pubblications',NULL),('node','photo_moorings_2014',0,21,21,'en',0,'Mooring B',NULL),('node','photo_moorings_2014',0,22,22,'en',0,'Mooring L',NULL),('node','photo_moorings_2014',0,23,23,'en',0,'Mooring G',NULL),('node','photo_moorings_2014',0,24,24,'en',0,'Mooring D',NULL),('node','photo_moorings_2012',0,26,26,'en',0,'Mooring L',NULL),('node','page',0,28,28,'en',0,'Mooring details',NULL),('node','photos',0,29,29,'en',0,'Photos',NULL),('node','page',0,30,30,'en',0,'Ancillary Activities A',NULL),('node','page',0,31,31,'und',0,'Ancillary Activities B',NULL),('node','page',0,32,32,'en',0,'Ancillary Activities C',NULL),('node','page',0,33,33,'en',0,'People',NULL),('node','photo_moorings_2012',0,34,34,'en',0,'Mooring B',NULL),('node','photo_moorings_2012',0,35,35,'en',0,'Mooring D',NULL),('node','photo_moorings_2012',0,36,36,'en',0,'Mooring G',NULL),('node','page',0,37,37,'en',0,'Metadati',NULL),('node','page',0,39,39,'und',0,'Metadati Mooring L 2012',NULL),('node','page',0,40,40,'und',0,'Metadati Mooring L 2014',NULL),('node','page',0,41,41,'und',0,'Metadati Mooring G 2012',NULL),('node','page',0,42,42,'und',0,'Metadati Mooring G 2014',NULL),('node','page',0,43,43,'und',0,'Metadati Mooring D 2012',NULL),('node','page',0,44,44,'und',0,'Metadati Mooring D 2014',NULL),('node','page',0,45,45,'en',0,'2014/15 - PNRA XXX',NULL),('node','page',0,46,46,'en',0,'News',NULL),('node','page',0,57,57,'und',0,'2010_D_rcm7_11559_1078m',NULL),('node','page',0,58,58,'und',0,'2010_D_sbe16_1433_463m',NULL),('node','page',0,59,59,'und',0,'2010_D_rcm7_11560_494m',NULL),('node','page',0,60,60,'und',0,'2010_D_rcm9_975_838m',NULL),('node','page',0,61,61,'und',0,'2010_D_sbe16_1437_1036m',NULL),('node','page',0,62,62,'und',0,'2010_D_sbe39_1210_694m',NULL),('node','page',0,63,63,'und',0,'2010_D_sbe39_1213_950m',NULL),('node','page',0,64,64,'und',0,'2012_D_rcm7_9022_539m',NULL),('node','page',0,65,65,'und',0,'2012_D_rcm7_11199_875m',NULL),('node','page',0,66,66,'und',0,'2012_D_rcm7_11565_1112m',NULL),('node','page',0,67,67,'und',0,'2012_D_sbe16_1433_509m',NULL),('node','page',0,68,68,'und',0,'2012_D_sbe16_1437_1069m',NULL),('node','page',0,69,69,'und',0,'2012_D_sbe39_1211_966m',NULL),('node','page',0,70,70,'und',0,'2012_D_sbe39_1214_739m',NULL),('node','page',0,71,71,'und',0,'2010_G_rcm7_11199_454m',NULL),('node','page',0,72,72,'und',0,'2010_G_rcm7_11565_514m',NULL),('node','page',0,73,73,'und',0,'2010_G_sbe39_1211_474m',NULL),('node','page',0,74,74,'und',0,'2010_G_sbe39_1214_494m',NULL),('node','page',0,75,75,'und',0,'2012_G_rcm7_9016_455m',NULL),('node','page',0,76,76,'und',0,'2012_G_rcm7_11560_517m',NULL),('node','page',0,77,77,'und',0,'2012_G_sbe39_1213_495m',NULL),('node','page',0,78,78,'und',0,'2012_G_sbe39_1210_475m',NULL),('node','page',0,79,79,'und',0,'2010_L_L_rcm7_11974_40m',NULL),('node','page',0,80,80,'und',0,'2012_L_L_rcm7_11559_144m',NULL),('node','page',0,81,81,'und',0,'2012_L_L_rcm7_11974_62m',NULL),('node','page',0,82,82,'en',0,'Tide',NULL),('node','page',0,83,83,'en',0,'Metadati Mooring B 2012',NULL),('node','page',0,84,84,'en',0,'Metadati Mooring G 201B',NULL),('node','page',0,85,85,'und',0,'CA09-10_XXVItaEsp_NZ',NULL),('node','page',0,86,86,'und',0,'CA09-10_XXVItaEsp_SA',NULL),('node','page',0,87,87,'und',0,'CA10-11_XXVItaEsp_SA',NULL),('node','page',0,88,88,'und',0,'CA11-12_XXVII_ItaEsp_SA',NULL),('node','page',0,89,89,'und',0,'CA11-12_XXVII_ItaEsp_NZ',NULL),('node','page',0,90,90,'und',0,'CA12-13_XXVIII_ItaEsp_SA',NULL),('node','page',0,91,91,'und',0,'CA12-13_XXVIII_ItaEsp_NZ',NULL),('node','page',0,92,92,'und',0,'CA13-14_XXIX_ItaEsp_NZ',NULL),('node','page',0,93,93,'und',0,'CA14-15_XXX_ItaEsp_NZ',NULL),('node','page',0,94,94,'und',0,'XBT INTERNATIONAL BACKGROUND',NULL),('node','page',0,95,95,'und',0,'INSTRUMENTATION',NULL),('node','page',0,96,96,'it',0,'Ancillary activities',NULL),('node','page',0,98,98,'it',0,'The Moorings',NULL),('node','page',0,99,99,'en',0,'Home Page',NULL),('node','page',0,102,102,'en',0,'B_rcm9_1210_543m',NULL),('node','page',0,103,103,'en',0,'B_sbe16_4494_533m',NULL),('node','page',0,104,104,'en',0,'B_sbe37_4118_280m',NULL),('node','page',0,105,105,'en',0,'B_2012_rcm7_9474_229m',NULL),('node','page',0,106,106,'en',0,'B_2012_sbe16_4494_500m',NULL),('node','page',0,107,107,'en',0,'B_2012_sbe37_4118_228m',NULL),('node','page',0,108,108,'en',0,'ARGO functioning',NULL),('node','page',0,109,109,'en',0,'ARGO',NULL),('node','page',0,110,110,'en',0,'ARGO 2013',NULL),('node','page',0,111,111,'en',0,'ARGO 2014',NULL),('node','page',0,112,112,'en',0,'ARGO 2015',NULL),('node','page',0,113,113,'it',0,'Metadati',NULL),('node','page',0,119,119,'it',0,'Dettagli dei Moorings',NULL),('node','photo_moorings_2012',0,120,120,'it',0,'Mooring L',NULL),('node','page',0,124,124,'en',0,'2015/16 - PNRA XXXI',NULL),('node','page',0,125,125,'it',0,'2013/14 - PNRA XXIX',NULL),('node','page',0,126,126,'it',0,'2011/12 - PNRA XXVII',NULL),('node','page',0,127,127,'it',0,'2014/15 - PNRA XXX',NULL),('node','page',0,128,128,'it',0,'2015/16 - PNRA XXXI',NULL),('node','page',0,129,129,'en',0,'2016/17 - PNRA XXXII',NULL),('node','page',0,130,130,'en',0,'2017/18 - PNRA XXXIII',NULL),('node','page',0,131,131,'en',0,'Prova',NULL);
/*!40000 ALTER TABLE `field_revision_title_field` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `file_managed`
--

DROP TABLE IF EXISTS `file_managed`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `file_managed` (
  `fid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'File ID.',
  `uid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'The users.uid of the user who is associated with the file.',
  `filename` varchar(255) NOT NULL DEFAULT '' COMMENT 'Name of the file with no path components. This may differ from the basename of the URI if the file is renamed to avoid overwriting an existing file.',
  `uri` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '' COMMENT 'The URI to access the file (either local or remote).',
  `filemime` varchar(255) NOT NULL DEFAULT '' COMMENT 'The file’s MIME type.',
  `filesize` bigint(20) unsigned NOT NULL DEFAULT 0 COMMENT 'The size of the file in bytes.',
  `status` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'A field indicating the status of the file. Two status are defined in core: temporary (0) and permanent (1). Temporary files older than DRUPAL_MAXIMUM_TEMP_FILE_AGE will be removed during a cron run.',
  `timestamp` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'UNIX timestamp for when the file was added.',
  PRIMARY KEY (`fid`),
  UNIQUE KEY `uri` (`uri`),
  KEY `uid` (`uid`),
  KEY `status` (`status`),
  KEY `timestamp` (`timestamp`)
) ENGINE=InnoDB AUTO_INCREMENT=44 DEFAULT CHARSET=utf8 COMMENT='Stores information for uploaded files.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `file_managed`
--

LOCK TABLES `file_managed` WRITE;
/*!40000 ALTER TABLE `file_managed` DISABLE KEYS */;
INSERT INTO `file_managed` VALUES (6,1,'MooringRossSea2014.png','public://MooringRossSea2014.png','image/png',210186,1,1411576651),(7,1,'Mooring B 2014.png','public://Mooring B 2014.png','image/png',84190,1,1411577353),(8,1,'Mooring L 2014.png','public://Mooring L 2014.png','image/png',96653,1,1411577499),(9,0,'gmap_markers.js','public://js/gmap_markers.js','application/x-javascript',4365,1,1422552667),(10,1,'Mooring B 2014.png','public://Mooring B 2014_0.png','image/png',84190,1,1412948575),(11,1,'Mooring L 2014.png','public://Mooring L 2014_0.png','image/png',96653,1,1412948676),(12,1,'Mooring G 2014.png','public://Mooring G 2014.png','image/png',82803,1,1412949488),(15,1,'Mooring_D_2014.png','public://Mooring_D_2014.png','image/png',352066,1,1413227395),(16,1,'Moorings.kml','public://Moorings.kml','application/vnd.google-earth.kml+xml',3071,1,1413467886),(18,1,'23gen2014 gruppo Rome.JPG','public://photos/23gen2014 gruppo Rome.JPG','image/jpeg',216763,1,1414409476),(19,1,'23gen2014 Helipad (18).JPG','public://photos/23gen2014 Helipad (18).JPG','image/jpeg',269314,1,1414409476),(20,1,'Antartide - 2014-01-03 134.JPG','public://photos/Antartide - 2014-01-03 134.JPG','image/jpeg',200960,1,1414409476),(21,1,'Antartide - 2014-01-07 046.JPG','public://photos/image_1/Antartide - 2014-01-07 046.JPG','image/jpeg',244514,1,1414411616),(22,1,'cw1.27.jpg','public://photos/image_1/cw1.27.jpg','image/jpeg',146788,1,1414411616),(24,1,'DSC_3519.jpg','public://photos/image_1/DSC_3519.jpg','image/jpeg',198117,1,1414411616),(25,1,'DSC_3827.jpg','public://photos/image_1/DSC_3827.jpg','image/jpeg',202802,1,1414411664),(26,1,'DSC_3885.jpg','public://photos/image_1/DSC_3885.jpg','image/jpeg',301851,1,1414411664),(27,1,'IMG_2246.JPG','public://photos/image_1/IMG_2246.JPG','image/jpeg',177490,1,1414411664),(28,1,'IMG_2472.JPG','public://photos/image_1/IMG_2472.JPG','image/jpeg',192137,1,1414411664),(29,1,'IMGP7148.JPG','public://photos/image_1/IMGP7148.JPG','image/jpeg',222379,1,1414411664),(32,1,'Mooring_B_2012.png','public://Mooring_B_2012.png','image/png',337396,1,1415042322),(33,1,'Mooring_D_2012.png','public://Mooring_D_2012.png','image/png',261576,1,1415042464),(34,1,'Mooring_L_2012.png','public://Mooring_L_2012_0.png','image/png',265613,1,1415042521),(35,1,'Mooring_G_2012.png','public://Mooring_G_2012.png','image/png',305073,1,1415042570),(36,1,'DSC_0001.jpg','public://photos/image_1?/DSC_0001.jpg','image/jpeg',154805,1,1416819560),(37,1,'DSC_0016.jpg','public://photos/image_1?/DSC_0016.jpg','image/jpeg',277378,1,1416819567),(38,1,'DSC_0095.JPG','public://photos/image_1?/DSC_0095.JPG','image/jpeg',118843,1,1416819575),(39,1,'DSC_0965.JPG','public://photos/image_1?/DSC_0965.JPG','image/jpeg',198821,1,1416819581),(40,1,'Mooring _L _2010.png','public://Mooring _L _2010.png','image/png',92403,1,1442135396),(41,1,'Mooring _B _2010.png','public://Mooring _B _2010.png','image/png',117402,1,1442135650),(42,1,'Mooring _G_2010.png','public://Mooring _G_2010.png','image/png',148968,1,1442135697),(43,1,'Mooring _D_2010.png','public://Mooring _D_2010.png','image/png',115968,1,1442135746);
/*!40000 ALTER TABLE `file_managed` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `file_usage`
--

DROP TABLE IF EXISTS `file_usage`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `file_usage` (
  `fid` int(10) unsigned NOT NULL COMMENT 'File ID.',
  `module` varchar(255) NOT NULL DEFAULT '' COMMENT 'The name of the module that is using the file.',
  `type` varchar(64) NOT NULL DEFAULT '' COMMENT 'The name of the object type in which the file is used.',
  `id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'The primary key of the object using the file.',
  `count` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'The number of times this file is used by this object.',
  PRIMARY KEY (`fid`,`type`,`id`,`module`),
  KEY `type_id` (`type`,`id`),
  KEY `fid_count` (`fid`,`count`),
  KEY `fid_module` (`fid`,`module`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Track where a file is used.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `file_usage`
--

LOCK TABLES `file_usage` WRITE;
/*!40000 ALTER TABLE `file_usage` DISABLE KEYS */;
INSERT INTO `file_usage` VALUES (6,'imce','file',6,1),(7,'imce','file',7,1),(8,'imce','file',8,1),(10,'file','node',21,1),(11,'file','node',22,1),(12,'file','node',23,1),(15,'file','node',24,1),(16,'openlayers','layer_type',1,3),(18,'photos','node',29,1),(19,'photos','node',29,1),(20,'photos','node',29,1),(21,'photos','node',29,1),(22,'photos','node',29,1),(24,'photos','node',29,1),(25,'photos','node',29,1),(26,'photos','node',29,1),(27,'photos','node',29,1),(28,'photos','node',29,1),(29,'photos','node',29,1),(32,'file','node',34,1),(33,'file','node',35,1),(34,'file','node',26,1),(34,'file','node',120,1),(35,'file','node',36,1),(36,'photos','node',29,1),(37,'photos','node',29,1),(38,'photos','node',29,1),(39,'photos','node',29,1),(40,'file','node',115,1),(40,'file','node',121,1),(41,'file','node',116,1),(41,'file','node',123,1),(42,'file','node',117,1),(42,'file','node',122,1),(43,'file','node',118,1);
/*!40000 ALTER TABLE `file_usage` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `filter`
--

DROP TABLE IF EXISTS `filter`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `filter` (
  `format` varchar(255) NOT NULL COMMENT 'Foreign key: The filter_format.format to which this filter is assigned.',
  `module` varchar(64) NOT NULL DEFAULT '' COMMENT 'The origin module of the filter.',
  `name` varchar(32) NOT NULL DEFAULT '' COMMENT 'Name of the filter being referenced.',
  `weight` int(11) NOT NULL DEFAULT 0 COMMENT 'Weight of filter within format.',
  `status` int(11) NOT NULL DEFAULT 0 COMMENT 'Filter enabled status. (1 = enabled, 0 = disabled)',
  `settings` longblob DEFAULT NULL COMMENT 'A serialized array of name value pairs that store the filter settings for the specific format.',
  PRIMARY KEY (`format`,`name`),
  KEY `list` (`weight`,`module`,`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Table that maps filters (HTML corrector) to text formats ...';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `filter`
--

LOCK TABLES `filter` WRITE;
/*!40000 ALTER TABLE `filter` DISABLE KEYS */;
INSERT INTO `filter` VALUES ('filtered_html','filter','filter_autop',2,1,'a:0:{}'),('filtered_html','filter','filter_html',1,1,'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;}'),('filtered_html','filter','filter_htmlcorrector',10,1,'a:0:{}'),('filtered_html','filter','filter_html_escape',-10,0,'a:0:{}'),('filtered_html','filter','filter_url',0,1,'a:1:{s:17:\"filter_url_length\";i:72;}'),('full_html','filter','filter_autop',1,1,'a:0:{}'),('full_html','filter','filter_html',-10,0,'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;}'),('full_html','filter','filter_htmlcorrector',10,1,'a:0:{}'),('full_html','filter','filter_html_escape',-10,0,'a:0:{}'),('full_html','filter','filter_url',0,1,'a:1:{s:17:\"filter_url_length\";s:2:\"72\";}'),('php_code','filter','filter_autop',0,0,'a:0:{}'),('php_code','filter','filter_html',-10,0,'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;}'),('php_code','filter','filter_htmlcorrector',10,0,'a:0:{}'),('php_code','filter','filter_html_escape',-10,0,'a:0:{}'),('php_code','photos','filter_photos',0,0,'a:0:{}'),('php_code','filter','filter_url',0,0,'a:1:{s:17:\"filter_url_length\";i:72;}'),('php_code','gmap','gmap_macro',0,0,'a:0:{}'),('php_code','php','php_code',0,1,'a:0:{}'),('plain_text','filter','filter_autop',2,1,'a:0:{}'),('plain_text','filter','filter_html',-10,0,'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;}'),('plain_text','filter','filter_htmlcorrector',10,0,'a:0:{}'),('plain_text','filter','filter_html_escape',0,1,'a:0:{}'),('plain_text','filter','filter_url',1,1,'a:1:{s:17:\"filter_url_length\";i:72;}');
/*!40000 ALTER TABLE `filter` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `filter_format`
--

DROP TABLE IF EXISTS `filter_format`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `filter_format` (
  `format` varchar(255) NOT NULL COMMENT 'Primary Key: Unique machine name of the format.',
  `name` varchar(255) NOT NULL DEFAULT '' COMMENT 'Name of the text format (Filtered HTML).',
  `cache` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'Flag to indicate whether format is cacheable. (1 = cacheable, 0 = not cacheable)',
  `status` tinyint(3) unsigned NOT NULL DEFAULT 1 COMMENT 'The status of the text format. (1 = enabled, 0 = disabled)',
  `weight` int(11) NOT NULL DEFAULT 0 COMMENT 'Weight of text format to use when listing.',
  PRIMARY KEY (`format`),
  UNIQUE KEY `name` (`name`),
  KEY `status_weight` (`status`,`weight`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores text formats: custom groupings of filters, such as...';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `filter_format`
--

LOCK TABLES `filter_format` WRITE;
/*!40000 ALTER TABLE `filter_format` DISABLE KEYS */;
INSERT INTO `filter_format` VALUES ('filtered_html','Filtered HTML',1,1,0),('full_html','Full HTML',1,1,1),('php_code','PHP code',0,1,11),('plain_text','Plain text',1,1,10);
/*!40000 ALTER TABLE `filter_format` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `flood`
--

DROP TABLE IF EXISTS `flood`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `flood` (
  `fid` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Unique flood event ID.',
  `event` varchar(64) NOT NULL DEFAULT '' COMMENT 'Name of event (e.g. contact).',
  `identifier` varchar(128) NOT NULL DEFAULT '' COMMENT 'Identifier of the visitor, such as an IP address or hostname.',
  `timestamp` int(11) NOT NULL DEFAULT 0 COMMENT 'Timestamp of the event.',
  `expiration` int(11) NOT NULL DEFAULT 0 COMMENT 'Expiration timestamp. Expired events are purged on cron run.',
  PRIMARY KEY (`fid`),
  KEY `allow` (`event`,`identifier`,`timestamp`),
  KEY `purge` (`expiration`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Flood controls the threshold of events, such as the...';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `flood`
--

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

--
-- Table structure for table `forum`
--

DROP TABLE IF EXISTS `forum`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `forum` (
  `nid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'The node.nid of the node.',
  `vid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Primary Key: The node.vid of the node.',
  `tid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'The taxonomy_term_data.tid of the forum term assigned to the node.',
  PRIMARY KEY (`vid`),
  KEY `forum_topic` (`nid`,`tid`),
  KEY `tid` (`tid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores the relationship of nodes to forum terms.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `forum`
--

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

--
-- Table structure for table `forum_index`
--

DROP TABLE IF EXISTS `forum_index`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `forum_index` (
  `nid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'The node.nid this record tracks.',
  `title` varchar(255) NOT NULL DEFAULT '' COMMENT 'The title of this node, always treated as non-markup plain text.',
  `tid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'The term ID.',
  `sticky` tinyint(4) DEFAULT 0 COMMENT 'Boolean indicating whether the node is sticky.',
  `created` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'The Unix timestamp when the node was created.',
  `last_comment_timestamp` int(11) NOT NULL DEFAULT 0 COMMENT 'The Unix timestamp of the last comment that was posted within this node, from comment.timestamp.',
  `comment_count` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'The total number of comments on this node.',
  KEY `forum_topics` (`nid`,`tid`,`sticky`,`last_comment_timestamp`),
  KEY `created` (`created`),
  KEY `last_comment_timestamp` (`last_comment_timestamp`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Maintains denormalized information about node/term...';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `forum_index`
--

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

--
-- Table structure for table `gmap_taxonomy_node`
--

DROP TABLE IF EXISTS `gmap_taxonomy_node`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `gmap_taxonomy_node` (
  `nid` int(10) unsigned NOT NULL DEFAULT 0,
  `tid` int(10) unsigned NOT NULL DEFAULT 0,
  `marker` varchar(32) DEFAULT NULL,
  PRIMARY KEY (`nid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `gmap_taxonomy_node`
--

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

--
-- Table structure for table `gmap_taxonomy_term`
--

DROP TABLE IF EXISTS `gmap_taxonomy_term`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `gmap_taxonomy_term` (
  `tid` int(10) unsigned NOT NULL DEFAULT 0,
  `marker` varchar(32) DEFAULT NULL,
  PRIMARY KEY (`tid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `gmap_taxonomy_term`
--

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

--
-- Table structure for table `history`
--

DROP TABLE IF EXISTS `history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `history` (
  `uid` int(11) NOT NULL DEFAULT 0 COMMENT 'The users.uid that read the node nid.',
  `nid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'The node.nid that was read.',
  `timestamp` int(11) NOT NULL DEFAULT 0 COMMENT 'The Unix timestamp at which the read occurred.',
  PRIMARY KEY (`uid`,`nid`),
  KEY `nid` (`nid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='A record of which users have read which nodes.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `history`
--

LOCK TABLES `history` WRITE;
/*!40000 ALTER TABLE `history` DISABLE KEYS */;
INSERT INTO `history` VALUES (1,4,1652168595),(1,12,1652162968),(1,29,1652162920),(1,129,1652162647),(1,130,1652167789);
/*!40000 ALTER TABLE `history` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `i18n_block_language`
--

DROP TABLE IF EXISTS `i18n_block_language`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `i18n_block_language` (
  `module` varchar(64) NOT NULL COMMENT 'The block’s origin module, from block.module.',
  `delta` varchar(32) NOT NULL COMMENT 'The block’s unique delta within module, from block.delta.',
  `language` varchar(12) NOT NULL DEFAULT '' COMMENT 'Language code, e.g. ’de’ or ’en-US’.',
  PRIMARY KEY (`module`,`delta`,`language`),
  KEY `language` (`language`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sets block visibility based on language';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `i18n_block_language`
--

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

--
-- Table structure for table `i18n_path`
--

DROP TABLE IF EXISTS `i18n_path`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `i18n_path` (
  `tpid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'The primary identifier for a path in the translation set.',
  `tsid` int(10) unsigned NOT NULL COMMENT 'The primary identifier for a translation set.',
  `path` varchar(255) NOT NULL DEFAULT '' COMMENT 'The Drupal path this alias is for; e.g. node/12.',
  `language` varchar(12) NOT NULL DEFAULT '' COMMENT 'The language for which this path is a translation.',
  `pid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'A unique path alias identifier if the path has an alias.',
  PRIMARY KEY (`tpid`),
  UNIQUE KEY `set_language` (`tsid`,`language`),
  KEY `path` (`path`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Path translation';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `i18n_path`
--

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

--
-- Table structure for table `i18n_string`
--

DROP TABLE IF EXISTS `i18n_string`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `i18n_string` (
  `lid` int(11) NOT NULL DEFAULT 0 COMMENT 'Source string ID. References locales_source.lid.',
  `textgroup` varchar(50) NOT NULL DEFAULT 'default' COMMENT 'A module defined group of translations, see hook_locale().',
  `context` varchar(255) NOT NULL DEFAULT '' COMMENT 'Full string ID for quick search: type:objectid:property.',
  `objectid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Object ID.',
  `type` varchar(255) NOT NULL DEFAULT '' COMMENT 'Object type for this string.',
  `property` varchar(255) NOT NULL DEFAULT '' COMMENT 'Object property for this string.',
  `objectindex` bigint(20) NOT NULL DEFAULT 0 COMMENT 'Integer value of Object ID.',
  `format` varchar(255) DEFAULT NULL COMMENT 'The filter_format.format of the string.',
  PRIMARY KEY (`lid`),
  KEY `group_context` (`textgroup`,`context`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Metadata for source strings.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `i18n_string`
--

LOCK TABLES `i18n_string` WRITE;
/*!40000 ALTER TABLE `i18n_string` DISABLE KEYS */;
INSERT INTO `i18n_string` VALUES (4765,'menu','menu:main-menu:title','main-menu','menu','title',0,''),(4766,'menu','menu:main-menu:description','main-menu','menu','description',0,''),(4767,'menu','menu:management:title','management','menu','title',0,''),(4768,'menu','menu:management:description','management','menu','description',0,''),(4769,'menu','menu:navigation:title','navigation','menu','title',0,''),(4770,'menu','menu:navigation:description','navigation','menu','description',0,''),(4771,'menu','menu:user-menu:title','user-menu','menu','title',0,''),(4772,'menu','menu:user-menu:description','user-menu','menu','description',0,''),(4773,'node','type:article:name','article','type','name',0,''),(4774,'node','type:article:title_label','article','type','title_label',0,''),(4775,'node','type:article:description','article','type','description',0,''),(4776,'node','type:page:name','page','type','name',0,''),(4777,'node','type:page:title_label','page','type','title_label',0,''),(4778,'node','type:page:description','page','type','description',0,''),(4782,'node','type:photos:name','photos','type','name',0,''),(4783,'node','type:photos:title_label','photos','type','title_label',0,''),(4784,'node','type:photos:description','photos','type','description',0,''),(6312,'node','type:openlayers_example_content:name','openlayers_example_content','type','name',0,''),(6313,'node','type:openlayers_example_content:title_label','openlayers_example_content','type','title_label',0,''),(6314,'node','type:openlayers_example_content:description','openlayers_example_content','type','description',0,''),(6449,'node','type:mooring:name','mooring','type','name',0,''),(6450,'node','type:mooring:title_label','mooring','type','title_label',0,''),(6451,'node','type:mooring:description','mooring','type','description',0,''),(6455,'node','type:photo_moorings_2014:name','photo_moorings_2014','type','name',0,''),(6456,'node','type:photo_moorings_2014:title_label','photo_moorings_2014','type','title_label',0,''),(6459,'node','type:photo_moorings_2012:name','photo_moorings_2012','type','name',0,''),(6460,'node','type:photo_moorings_2012:title_label','photo_moorings_2012','type','title_label',0,''),(6712,'node','type:forum:name','forum','type','name',0,''),(6713,'node','type:forum:title_label','forum','type','title_label',0,''),(6714,'node','type:forum:description','forum','type','description',0,''),(6746,'field','title_field:photos:label','photos','title_field','label',0,''),(6747,'field','body:photos:label','photos','body','label',0,''),(6748,'field','title_field:article:label','article','title_field','label',0,''),(6749,'field','body:article:label','article','body','label',0,''),(6750,'field','field_tags:article:label','article','field_tags','label',0,''),(6751,'field','field_tags:article:description','article','field_tags','description',0,''),(6752,'field','field_image:article:label','article','field_image','label',0,''),(6753,'field','field_image:article:description','article','field_image','description',0,''),(6754,'field','title_field:page:label','page','title_field','label',0,''),(6755,'field','body:page:label','page','body','label',0,''),(6756,'field','title_field:forum:label','forum','title_field','label',0,''),(6757,'field','taxonomy_forums:forum:label','forum','taxonomy_forums','label',0,''),(6758,'field','body:forum:label','forum','body','label',0,''),(6759,'field','title_field:mooring:label','mooring','title_field','label',0,''),(6760,'field','field_gfdata:mooring:label','mooring','field_gfdata','label',0,''),(6761,'field','body:mooring:label','mooring','body','label',0,''),(6762,'field','title_field:openlayers_example_content:label','openlayers_example_content','title_field','label',0,''),(6763,'field','field_openlayers_example_input:openlayers_example_content:label','openlayers_example_content','field_openlayers_example_input','label',0,''),(6764,'field','body:openlayers_example_content:label','openlayers_example_content','body','label',0,''),(6765,'field','title_field:photo_moorings_2012:label','photo_moorings_2012','title_field','label',0,''),(6766,'field','body:photo_moorings_2012:label','photo_moorings_2012','body','label',0,''),(6767,'field','field_photo_moorings_2012:photo_moorings_2012:label','photo_moorings_2012','field_photo_moorings_2012','label',0,''),(6768,'field','title_field:photo_moorings_2014:label','photo_moorings_2014','title_field','label',0,''),(6769,'field','body:photo_moorings_2014:label','photo_moorings_2014','body','label',0,''),(6770,'field','field_photo:photo_moorings_2014:label','photo_moorings_2014','field_photo','label',0,''),(7150,'blocks','block:1:body','1','block','body',1,'full_html'),(7160,'blocks','block:2:body','2','block','body',2,'full_html'),(7202,'field','comment_body:comment_node_photo_moorings_2010:label','comment_node_photo_moorings_2010','comment_body','label',0,''),(7203,'node','type:photo_moorings_2010:name','photo_moorings_2010','type','name',0,''),(7204,'node','type:photo_moorings_2010:title_label','photo_moorings_2010','type','title_label',0,''),(7205,'field','body:photo_moorings_2010:label','photo_moorings_2010','body','label',0,''),(7206,'field','field_photo_moorings_2010:photo_moorings_2010:label','photo_moorings_2010','field_photo_moorings_2010','label',0,'');
/*!40000 ALTER TABLE `i18n_string` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `i18n_translation_set`
--

DROP TABLE IF EXISTS `i18n_translation_set`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `i18n_translation_set` (
  `tsid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'The primary identifier for a translation set.',
  `title` varchar(255) NOT NULL DEFAULT '' COMMENT 'The title of this translation set, always treated as non-markup plain text.',
  `type` varchar(32) NOT NULL DEFAULT '' COMMENT 'Object type or entity type.',
  `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'Optional bundle for entity translation sets.',
  `master_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'The master object/entity id (the others will be synchronized with this one).',
  `status` int(11) NOT NULL DEFAULT 1 COMMENT 'Status of this translation set. TBD.',
  `created` int(11) NOT NULL DEFAULT 0 COMMENT 'The Unix timestamp when the set was created.',
  `changed` int(11) NOT NULL DEFAULT 0 COMMENT 'The Unix timestamp when the set was most recently saved.',
  PRIMARY KEY (`tsid`),
  KEY `entity_bundle` (`type`,`bundle`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Translation set.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `i18n_translation_set`
--

LOCK TABLES `i18n_translation_set` WRITE;
/*!40000 ALTER TABLE `i18n_translation_set` DISABLE KEYS */;
INSERT INTO `i18n_translation_set` VALUES (1,'','menu_link','',0,0,1438187545,1438187662);
/*!40000 ALTER TABLE `i18n_translation_set` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `image_effects`
--

DROP TABLE IF EXISTS `image_effects`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `image_effects` (
  `ieid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'The primary identifier for an image effect.',
  `isid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'The image_styles.isid for an image style.',
  `weight` int(11) NOT NULL DEFAULT 0 COMMENT 'The weight of the effect in the style.',
  `name` varchar(255) NOT NULL COMMENT 'The unique name of the effect to be executed.',
  `data` longblob NOT NULL COMMENT 'The configuration data for the effect.',
  PRIMARY KEY (`ieid`),
  KEY `isid` (`isid`),
  KEY `weight` (`weight`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='Stores configuration options for image effects.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `image_effects`
--

LOCK TABLES `image_effects` WRITE;
/*!40000 ALTER TABLE `image_effects` DISABLE KEYS */;
INSERT INTO `image_effects` VALUES (1,1,1,'image_resize','a:2:{s:5:\"width\";s:3:\"120\";s:6:\"height\";s:3:\"260\";}'),(3,4,0,'image_scale','a:3:{s:5:\"width\";s:3:\"200\";s:6:\"height\";s:3:\"200\";s:7:\"upscale\";i:1;}'),(4,5,0,'image_scale','a:3:{s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"600\";s:7:\"upscale\";i:0;}');
/*!40000 ALTER TABLE `image_effects` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `image_styles`
--

DROP TABLE IF EXISTS `image_styles`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `image_styles` (
  `isid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'The primary identifier for an image style.',
  `name` varchar(255) NOT NULL COMMENT 'The style machine name.',
  `label` varchar(255) NOT NULL DEFAULT '' COMMENT 'The style administrative name.',
  PRIMARY KEY (`isid`),
  UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='Stores configuration options for image styles.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `image_styles`
--

LOCK TABLES `image_styles` WRITE;
/*!40000 ALTER TABLE `image_styles` DISABLE KEYS */;
INSERT INTO `image_styles` VALUES (1,'photo_gallery','Photo Gallery'),(4,'thumbnail','Thumbnail (200x200)'),(5,'large','Large (800x600)');
/*!40000 ALTER TABLE `image_styles` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `l10n_update_file`
--

DROP TABLE IF EXISTS `l10n_update_file`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `l10n_update_file` (
  `project` varchar(50) NOT NULL COMMENT 'A unique short name to identify the project.',
  `language` varchar(12) NOT NULL COMMENT 'Reference to the languages.language for this translation.',
  `type` varchar(50) NOT NULL DEFAULT '' COMMENT 'File origin: download or localfile',
  `filename` varchar(255) NOT NULL DEFAULT '' COMMENT 'Link to translation file for download.',
  `fileurl` varchar(255) NOT NULL DEFAULT '' COMMENT 'Link to translation file for download.',
  `uri` varchar(255) NOT NULL DEFAULT '' COMMENT 'File system path for importing the file.',
  `timestamp` int(11) DEFAULT 0 COMMENT 'Unix timestamp of the time the file was downloaded or saved to disk. Zero if not yet downloaded',
  `version` varchar(128) NOT NULL DEFAULT '' COMMENT 'Version tag of the downloaded file.',
  `status` int(11) NOT NULL DEFAULT 1 COMMENT 'Status flag. TBD',
  `last_checked` int(11) DEFAULT 0 COMMENT 'Unix timestamp of the last time this translation was downloaded from or checked at remote server and confirmed to be the most recent release available.',
  PRIMARY KEY (`project`,`language`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='File and download information for project translations.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `l10n_update_file`
--

LOCK TABLES `l10n_update_file` WRITE;
/*!40000 ALTER TABLE `l10n_update_file` DISABLE KEYS */;
INSERT INTO `l10n_update_file` VALUES ('addressfield','it','download','addressfield-7.x-1.2.it.po','https://ftp-origin.drupal.org/files/translations/7.x/addressfield/addressfield-7.x-1.2.it.po','/tmp/translation-47gZ86',1539774129,'7.x-1.2',1,1651663083),('ckeditor','it','download','ckeditor-7.x-1.15.it.po','http://ftp.drupal.org/files/translations/7.x/ckeditor/ckeditor-7.x-1.15.it.po','/tmp/translation-gUPZMl',1413798259,'7.x-1.15',1,1413798258),('features','it','download','features-7.x-2.10.it.po','https://ftp-origin.drupal.org/files/translations/7.x/features/features-7.x-2.10.it.po','/tmp/translation-SNYN1c',1540379483,'7.x-2.10',1,1651663083),('geocoder','it','download','geocoder-7.x-1.4.it.po','https://ftp-origin.drupal.org/files/translations/7.x/geocoder/geocoder-7.x-1.4.it.po','/tmp/translation-TzeWzI',1539774130,'7.x-1.4',1,1651663083),('gmap','it','download','gmap-7.x-2.11.it.po','https://ftp-origin.drupal.org/files/translations/7.x/gmap/gmap-7.x-2.11.it.po','/tmp/translation-zI6hOF',1651663083,'7.x-2.11',1,1651663083),('imce','it','download','imce-7.x-1.11.it.po','https://ftp-origin.drupal.org/files/translations/7.x/imce/imce-7.x-1.11.it.po','/tmp/translation-AVDtLD',1539164955,'7.x-1.11',1,1651663083),('jquery_update','it','download','jquery_update-7.x-2.4.it.po','http://ftp.drupal.org/files/translations/7.x/jquery_update/jquery_update-7.x-2.4.it.po','/tmp/translation-edP0xe',1411570340,'7.x-2.4',1,1411570339),('juicebox','it','download','juicebox-7.x-2.0.it.po','http://ftp.drupal.org/files/translations/7.x/juicebox/juicebox-7.x-2.0.it.po','/tmp/translation-BkQEWF',1448178838,'7.x-2.0',1,1651663083),('l10n_update','it','download','l10n_update-7.x-1.1.it.po','http://ftp.drupal.org/files/translations/7.x/l10n_update/l10n_update-7.x-1.1.it.po','/tmp/translation-FCLGkM',1428589871,'7.x-1.1',1,1557436038),('languageicons','it','download','languageicons-7.x-1.1.it.po','http://ftp.drupal.org/files/translations/7.x/languageicons/languageicons-7.x-1.1.it.po','/tmp/translation-h5boBR',1428585649,'7.x-1.1',1,1651663083),('libraries','it','download','libraries-7.x-2.4.it.po','https://ftp-origin.drupal.org/files/translations/7.x/libraries/libraries-7.x-2.4.it.po','/tmp/translation-yYuHue',1651056049,'7.x-2.4',1,1651056044),('location','it','download','location-7.x-3.7.it.po','https://ftp-origin.drupal.org/files/translations/7.x/location/location-7.x-3.7.it.po','/tmp/translation-gWHLkl',1539164956,'7.x-3.7',1,1651663083),('locationmap','it','download','locationmap-7.x-2.3.it.po','http://ftp.drupal.org/files/translations/7.x/locationmap/locationmap-7.x-2.3.it.po','/tmp/translation-ioilw0',1412673438,'7.x-2.3',1,1651663083),('openlayers','it','download','openlayers-7.x-2.0-beta9.it.po','http://ftp.drupal.org/files/translations/7.x/openlayers/openlayers-7.x-2.0-beta9.it.po','/tmp/translation-Vu48Ow',1412683366,'7.x-2.0-beta9',1,1412683365),('photos','it','download','photos-7.x-3.0-rc4.it.po','https://ftp-origin.drupal.org/files/translations/7.x/photos/photos-7.x-3.0-rc4.it.po','/tmp/translation-kjPbAd',1651056048,'7.x-3.0-rc4',1,1651056044),('title','it','download','title-7.x-1.0-alpha9.it.po','https://ftp-origin.drupal.org/files/translations/7.x/title/title-7.x-1.0-alpha9.it.po','/tmp/translation-40ZINY',1533635535,'7.x-1.0-alpha9',1,1651663083);
/*!40000 ALTER TABLE `l10n_update_file` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `l10n_update_project`
--

DROP TABLE IF EXISTS `l10n_update_project`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `l10n_update_project` (
  `name` varchar(50) NOT NULL COMMENT 'A unique short name to identify the project.',
  `project_type` varchar(50) NOT NULL COMMENT 'Project type, may be core, module, theme',
  `core` varchar(128) NOT NULL DEFAULT '' COMMENT 'Core compatibility string for this project.',
  `version` varchar(128) NOT NULL DEFAULT '' COMMENT 'Human readable name for project used on the interface.',
  `l10n_server` varchar(255) NOT NULL DEFAULT '' COMMENT 'Localization server for this project.',
  `l10n_path` varchar(255) NOT NULL DEFAULT '' COMMENT 'Server path this project updates.',
  `status` int(11) NOT NULL DEFAULT 1 COMMENT 'Status flag. TBD',
  PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Update information for project translations.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `l10n_update_project`
--

LOCK TABLES `l10n_update_project` WRITE;
/*!40000 ALTER TABLE `l10n_update_project` DISABLE KEYS */;
INSERT INTO `l10n_update_project` VALUES ('addressfield','module','7.x','7.x-1.2','','http://ftp.drupal.org/files/translations/7.x/addressfield/addressfield-7.x-1.2.%language.po',1),('alpha_responsive_theme','theme','7.x','7.x-1.4','','http://ftp.drupal.org/files/translations/7.x/alpha_responsive_theme/alpha_responsive_theme-7.x-1.4.%language.po',1),('ckeditor','module','7.x','7.x-1.16','','http://ftp.drupal.org/files/translations/7.x/ckeditor/ckeditor-7.x-1.16.%language.po',0),('colorbox','module','7.x','7.x-2.8','','http://ftp.drupal.org/files/translations/7.x/colorbox/colorbox-7.x-2.8.%language.po',1),('ctools','module','7.x','7.x-1.14','','http://ftp.drupal.org/files/translations/7.x/ctools/ctools-7.x-1.14.%language.po',1),('drupal','core','7.x','7.59','','http://ftp.drupal.org/files/translations/7.x/drupal/drupal-7.59.%language.po',1),('entity','module','7.x','7.x-1.9','','http://ftp.drupal.org/files/translations/7.x/entity/entity-7.x-1.9.%language.po',1),('entity_translation','module','7.x','7.x-1.0','','http://ftp.drupal.org/files/translations/7.x/entity_translation/entity_translation-7.x-1.0.%language.po',1),('features','module','7.x','7.x-2.10','','http://ftp.drupal.org/files/translations/7.x/features/features-7.x-2.10.%language.po',1),('geocoder','module','7.x','7.x-1.4','','http://ftp.drupal.org/files/translations/7.x/geocoder/geocoder-7.x-1.4.%language.po',1),('geofield','module','7.x','7.x-2.3','','http://ftp.drupal.org/files/translations/7.x/geofield/geofield-7.x-2.3.%language.po',1),('geophp','module','7.x','7.x-1.7','','http://ftp.drupal.org/files/translations/7.x/geophp/geophp-7.x-1.7.%language.po',1),('gmap','module','7.x','7.x-2.11','','http://ftp.drupal.org/files/translations/7.x/gmap/gmap-7.x-2.11.%language.po',1),('i18n','module','7.x','7.x-1.26','','http://ftp.drupal.org/files/translations/7.x/i18n/i18n-7.x-1.26.%language.po',1),('imce','module','7.x','7.x-1.11','','http://ftp.drupal.org/files/translations/7.x/imce/imce-7.x-1.11.%language.po',1),('jquery_update','module','7.x','7.x-2.4','','http://ftp.drupal.org/files/translations/7.x/jquery_update/jquery_update-7.x-2.4.%language.po',0),('juicebox','module','7.x','7.x-2.0','','http://ftp.drupal.org/files/translations/7.x/juicebox/juicebox-7.x-2.0.%language.po',1),('l10n_update','module','7.x','7.x-1.1','','http://ftp.drupal.org/files/translations/7.x/l10n_update/l10n_update-7.x-1.1.%language.po',1),('languageicons','module','7.x','7.x-1.1','','http://ftp.drupal.org/files/translations/7.x/languageicons/languageicons-7.x-1.1.%language.po',1),('libraries','module','7.x','7.x-2.4','','http://ftp.drupal.org/files/translations/7.x/libraries/libraries-7.x-2.4.%language.po',1),('location','module','7.x','7.x-3.7','','http://ftp.drupal.org/files/translations/7.x/location/location-7.x-3.7.%language.po',1),('locationmap','module','7.x','7.x-2.3','','http://ftp.drupal.org/files/translations/7.x/locationmap/locationmap-7.x-2.3.%language.po',1),('multipurpose','theme','7.x','7.x-1.0','','http://ftp.drupal.org/files/translations/7.x/multipurpose/multipurpose-7.x-1.0.%language.po',1),('openlayers','module','7.x','7.x-2.0-beta9','','http://ftp.drupal.org/files/translations/7.x/openlayers/openlayers-7.x-2.0-beta9.%language.po',0),('photos','module','7.x','7.x-3.0-rc4','','http://ftp.drupal.org/files/translations/7.x/photos/photos-7.x-3.0-rc4.%language.po',1),('proj4js','module','7.x','7.x-1.2','','http://ftp.drupal.org/files/translations/7.x/proj4js/proj4js-7.x-1.2.%language.po',1),('radius_client','module','7.x','7.x-1.x-dev','','http://ftp.drupal.org/files/translations/7.x/radius_client/radius_client-7.x-1.x-dev.%language.po',0),('radius_dictionary','module','7.x','7.x-1.0-beta+0-dev','','http://ftp.drupal.org/files/translations/7.x/radius_dictionary/radius_dictionary-7.x-1.0-beta+0-dev.%language.po',0),('title','module','7.x','7.x-1.0-alpha9','','http://ftp.drupal.org/files/translations/7.x/title/title-7.x-1.0-alpha9.%language.po',1),('variable','module','7.x','7.x-2.5','','http://ftp.drupal.org/files/translations/7.x/variable/variable-7.x-2.5.%language.po',1),('venture_theme','theme','7.x','7.x-1.1','','http://ftp.drupal.org/files/translations/7.x/venture_theme/venture_theme-7.x-1.1.%language.po',1),('views','module','7.x','7.x-3.20','','http://ftp.drupal.org/files/translations/7.x/views/views-7.x-3.20.%language.po',1),('views_stylizer','module','7.x','7.x-1.3','','http://ftp.drupal.org/files/translations/7.x/views_stylizer/views_stylizer-7.x-1.3.%language.po',1);
/*!40000 ALTER TABLE `l10n_update_project` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `languages`
--

DROP TABLE IF EXISTS `languages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `languages` (
  `language` varchar(12) NOT NULL DEFAULT '' COMMENT 'Language code, e.g. ’de’ or ’en-US’.',
  `name` varchar(64) NOT NULL DEFAULT '' COMMENT 'Language name in English.',
  `native` varchar(64) NOT NULL DEFAULT '' COMMENT 'Native language name.',
  `direction` int(11) NOT NULL DEFAULT 0 COMMENT 'Direction of language (Left-to-Right = 0, Right-to-Left = 1).',
  `enabled` int(11) NOT NULL DEFAULT 0 COMMENT 'Enabled flag (1 = Enabled, 0 = Disabled).',
  `plurals` int(11) NOT NULL DEFAULT 0 COMMENT 'Number of plural indexes in this language.',
  `formula` varchar(255) NOT NULL DEFAULT '' COMMENT 'Plural formula in PHP code to evaluate to get plural indexes.',
  `domain` varchar(128) NOT NULL DEFAULT '' COMMENT 'Domain to use for this language.',
  `prefix` varchar(128) NOT NULL DEFAULT '' COMMENT 'Path prefix to use for this language.',
  `weight` int(11) NOT NULL DEFAULT 0 COMMENT 'Weight, used in lists of languages.',
  `javascript` varchar(64) NOT NULL DEFAULT '' COMMENT 'Location of JavaScript translation file.',
  PRIMARY KEY (`language`),
  KEY `list` (`weight`,`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='List of all available languages in the system.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `languages`
--

LOCK TABLES `languages` WRITE;
/*!40000 ALTER TABLE `languages` DISABLE KEYS */;
INSERT INTO `languages` VALUES ('en','English','English',0,1,0,'','','',0,''),('it','Italian','Italiano',0,1,2,'($n!=1)','','it',0,'');
/*!40000 ALTER TABLE `languages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `locales_source`
--

DROP TABLE IF EXISTS `locales_source`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `locales_source` (
  `lid` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Unique identifier of this string.',
  `location` longtext DEFAULT NULL COMMENT 'Drupal path in case of online discovered translations or file path in case of imported strings.',
  `textgroup` varchar(255) NOT NULL DEFAULT 'default' COMMENT 'A module defined group of translations, see hook_locale().',
  `source` blob NOT NULL COMMENT 'The original string in English.',
  `context` varchar(255) NOT NULL DEFAULT '' COMMENT 'The context this string applies to.',
  `version` varchar(20) NOT NULL DEFAULT 'none' COMMENT 'Version of Drupal, where the string was last used (for locales optimization).',
  PRIMARY KEY (`lid`),
  KEY `source_context` (`source`(30),`context`),
  KEY `textgroup_context` (`textgroup`,`context`)
) ENGINE=InnoDB AUTO_INCREMENT=7255 DEFAULT CHARSET=utf8 COMMENT='List of English source strings.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `locales_source`
--

LOCK TABLES `locales_source` WRITE;
/*!40000 ALTER TABLE `locales_source` DISABLE KEYS */;
INSERT INTO `locales_source` VALUES (1,'; misc/drupal.js','default','An AJAX HTTP error occurred.','','none'),(2,'; misc/drupal.js','default','HTTP Result Code: !status','','none'),(3,'; misc/drupal.js','default','An AJAX HTTP request terminated abnormally.','','none'),(4,'; misc/drupal.js','default','Debugging information follows.','','none'),(5,'; misc/drupal.js','default','Path: !uri','','none'),(6,'; misc/drupal.js','default','StatusText: !statusText','','none'),(7,'; misc/drupal.js','default','ResponseText: !responseText','','none'),(8,'; misc/drupal.js','default','ReadyState: !readyState','','none'),(9,'; modules/overlay/overlay-child.js','default','Loading','','none'),(10,'; modules/overlay/overlay-child.js; misc/vertical-tabs.js','default','(active tab)','','7.59'),(11,'; misc/collapse.js','default','Hide','','none'),(12,'; misc/collapse.js','default','Show','','none'),(13,'; misc/tabledrag.js','default','Re-order rows by numerical weight instead of dragging.','','none'),(14,'; misc/tabledrag.js','default','Show row weights','','none'),(15,'; misc/tabledrag.js','default','Hide row weights','','none'),(16,'; misc/tabledrag.js','default','Drag to re-order','','none'),(17,'; misc/tabledrag.js','default','Changes made in this table will not be saved until the form is submitted.','','none'),(18,'; sites/all/modules/jquery_update/replace/misc/1.9/overlay-parent.js; modules/overlay/overlay-parent.js','default','@title dialog','','none'),(19,'','default','Configure','','7.59'),(20,'; modules/toolbar/toolbar.js','default','Show shortcuts','','none'),(21,'; modules/toolbar/toolbar.js','default','Hide shortcuts','','7.59'),(22,'','default','Home','','7.59'),(23,'','default','User interface','','7.59'),(24,'','default','Title','','7.59'),(25,'','default','Body','','7.59'),(26,'; modules/locale/locale.datepicker.js','default','Next','','none'),(27,'','default','user','','7.34'),(28,'','default','Pages','','7.59'),(29,'','default','Save configuration','','7.59'),(30,'','default','Reset to defaults','','7.34'),(31,'','default','delete','','7.34'),(32,'','default','Status','','7.59'),(33,'','default','Create a new user account.','','7.31'),(34,'','default','Request new password via e-mail.','','7.34'),(35,'','default','Prefix','','none'),(36,'','default','Suffix','','none'),(37,'','default','approve','','none'),(38,'','default','E-mail','','7.59'),(39,'','default','Approve','','none'),(40,'','default','Delete','','7.59'),(41,'','default','Operations','','7.34'),(42,'','default','Content','','7.59'),(43,'','default','Username','','7.59'),(44,'','default','Email address','','7.59'),(45,'','default','content','','none'),(46,'','default','Development','','7.59'),(47,'','default','Group','','7.59'),(48,'','default','Type','','7.59'),(49,'','default','Author','','7.59'),(50,'','default','Replies','','7.34'),(51,'','default','Closed','','7.34'),(52,'','default','yes','','7.31'),(53,'','default','List','','7.59'),(54,'','default','Subject','','7.59'),(55,'','default','closed','','none'),(56,'','default','Actions','','7.59'),(57,'','default','disabled','','7.34'),(58,'','default','Confirm','','7.34'),(59,'','default','Cancel','','7.34'),(60,'','default','Remove','','7.34'),(61,'','default','administrator','','none'),(62,'','default','Description','','7.59'),(63,'','default','Language','','7.59'),(64,'','default','RSS feed','','7.59'),(65,'','default','Enable','','7.34'),(66,'','default','Disable','','7.34'),(67,'','default','Explanation or submission guidelines','','7.34'),(68,'','default','Article','','none'),(69,'','default','Disabled','','7.59'),(70,'','default','Enabled','','7.59'),(71,'','default','Administration','','7.59'),(72,'','default','Comments','','7.59'),(73,'','default','More','','7.34'),(74,'','default','not verified','','7.59'),(75,'','default','Action','','none'),(76,'','default','Last updated','','none'),(77,'','default','new','','7.34'),(78,'','default','error','','none'),(79,'','default','Tags','','none'),(80,'','default','Block title','','7.34'),(81,'','default','The title of the block as shown to the user.','','7.34'),(82,'','default','Taxonomy','','7.59'),(83,'','default','Yes','','none'),(84,'','default','No','','none'),(85,'','default','cron','','none'),(86,'','default','Blue Lagoon (Default)','','none'),(87,'','default','Ash','','none'),(88,'','default','Aquamarine','','none'),(89,'','default','Belgian Chocolate','','none'),(90,'','default','Bluemarine','','none'),(91,'','default','Citrus Blast','','none'),(92,'','default','Cold Day','','none'),(93,'','default','Greenbeam','','none'),(94,'','default','Mediterrano','','none'),(95,'','default','Mercury','','none'),(96,'','default','Nocturnal','','none'),(97,'','default','Olivia','','none'),(98,'','default','Pink Plastic','','none'),(99,'','default','Shiny Tomato','','none'),(100,'','default','Teal Top','','none'),(101,'','default','Content types','','7.59'),(102,'','default','Homepage','','none'),(103,'','default','Home page','','7.59'),(104,'','default','Categories','','none'),(105,'','default','Download','','none'),(106,'','default','Version','','7.59'),(107,'','default','view','','7.34'),(108,'','default','updated','','7.34'),(109,'','default','Overview','','7.34'),(110,'','default','File information','','none'),(111,'','default','File','','7.59'),(112,'','default','Advanced options','','none'),(113,'','default','Release notes','','none'),(114,'','default','Edit','','7.59'),(115,'','default','Date','','none'),(116,'','default','Size','','7.59'),(117,'','default','Search','','7.31'),(118,'','default','Reset','','7.59'),(119,'','default','Daily','','none'),(120,'','default','Weekly','','none'),(121,'','default','None','','7.59'),(122,'','default','Display settings','','7.34'),(123,'','default','This action cannot be undone.','','7.34'),(124,'','default','Test','','none'),(125,'','default','Number','','7.34'),(126,'','default','Message','','none'),(127,'','default','No log messages available.','','none'),(128,'','default','Password','','7.59'),(129,'','default','- None -','','7.34'),(130,'','default','Weight','','7.59'),(131,'','default','The configuration options have been saved.','','7.59'),(132,'','default','Link','','7.59'),(133,'','default','Image','','7.59'),(134,'','default','Center','','none'),(135,'','default','Help text','','7.59'),(136,'','default','Types','','7.34'),(137,'','default','Required','','7.34'),(138,'','default','root','','none'),(139,'','default','Parent','','7.59'),(140,'','default','Pages at a given level are ordered first by weight and then by title.','','none'),(141,'','default','none','','none'),(142,'','default','Category','','7.59'),(143,'','default','Add container','','7.34'),(144,'','default','Settings','','7.34'),(145,'','default','Add category','','7.34'),(146,'','default','Name','','7.59'),(147,'','default','edit container','','none'),(148,'','default','edit','','7.34'),(149,'','default','No categories available.','','none'),(150,'','default','‹ ','','none'),(151,'','default','Go to previous page','','7.59'),(152,'','default','up','','none'),(153,'','default','Go to parent page','','none'),(154,'','default',' ›','','none'),(155,'','default','Go to next page','','7.59'),(156,'','default','Import','','7.34'),(157,'','default','Book','','none'),(158,'','default','Export','','7.34'),(159,'','default','Taxonomy term','','7.59'),(160,'','default','Field','','7.59'),(161,'','default','Outline','','none'),(162,'','default','Label','','7.59'),(163,'; sites/all/modules/openlayers/modules/openlayers_ui/js/openlayers_ui.styles.js','default','Preview','','7.34'),(164,'','default','Save','','7.34'),(165,'','default','Session opened for %name.','','none'),(166,'','default','Help','','7.59'),(167,'','default','Default','','7.59'),(168,'','default','Summary','','7.59'),(169,'','default','Update','','7.34'),(170,'','default','Open','','7.34'),(171,'','default','Sunday','','7.59'),(172,'','default','Monday','','7.59'),(173,'','default','Tuesday','','7.59'),(174,'','default','Wednesday','','7.59'),(175,'','default','Thursday','','7.59'),(176,'','default','Friday','','7.59'),(177,'','default','Saturday','','7.59'),(178,'','default','Core','','7.59'),(179,'','default','Time','','none'),(180,'; sites/all/modules/views/js/views-admin.js','default','Add','','none'),(181,'','default','View','','7.59'),(182,'','default','Format','','7.34'),(183,'','default','History','','7.59'),(184,'','default','URL','','7.59'),(185,'','default','Path','','7.59'),(186,'','default','Filename','','none'),(187,'','default','Vocabularies','','none'),(188,'','default','Modules','','7.59'),(189,'','default','Clear index','','none'),(190,'','default','General discussion','','none'),(191,'','default','edit forum','','none'),(192,'','default','Forum name','','none'),(193,'','default','forum','','7.34'),(194,'','default','Are you sure you want to delete the forum %name?','','none'),(195,'','default','Refresh','','7.34'),(196,'','default','Region','','7.34'),(197,'','default','Visible','','7.34'),(198,'','default','Anchor','','none'),(199,'','default','Display','','none'),(200,'','default','Menu','','7.59'),(201,'','default','Advanced settings','','none'),(202,'','default','results','','none'),(203,'','default','search','','none'),(204,'','default','Teaser','','7.59'),(205,'','default','never','','none'),(206,'','default','The username %name does not exist.','','none'),(207,'','default','mail','','none'),(208,'','default','Updated','','7.34'),(209,'','default','actions','','none'),(210,'','default','Text','','7.59'),(211,'','default','aggregator','','none'),(212,'','default','read more','','none'),(213,'','default','Update interval','','none'),(214,'','default','The fully-qualified URL of the feed.','','none'),(215,'','default','Add forum','','7.34'),(216,'','default','Add term','','none'),(217,'','default','theme','','none'),(218,'','default','no screenshot','','none'),(219,'','default','Timestamp','','7.59'),(220,'','default','Keywords','','none'),(221,'','default','Access log settings','','none'),(222,'','default','Enable access log','','none'),(223,'','default','Discard access logs older than','','none'),(224,'','default','Preview comment','','7.34'),(225,'','default','<none>','','none'),(226,'','default','Unassign','','none'),(227,'','default','Statistics','','none'),(228,'','default','Advanced search','','none'),(229,'','default','You are not authorized to access this page.','','7.34'),(230,'','default','Unknown','','7.59'),(231,'','default','Attachment','','7.59'),(232,'','default','n/a','','7.34'),(233,'','default','Upload','','7.34'),(234,'','default','Picture','','7.59'),(235,'','default','type','','7.34'),(236,'','default','Find content','','none'),(237,'','default','Database type','','none'),(238,'','default','User','','7.59'),(239,'','default','Content type','','7.59'),(240,'','default','action','','none'),(241,'','default','Continue','','none'),(242,'','default','Email','','7.59'),(243,'','default','Files','','7.59'),(244,'','default','file','','7.34'),(245,'','default','status','','7.34'),(246,'','default','User ID','','7.59'),(247,'','default','Error','','7.59'),(248,'','default','Options','','7.59'),(249,'','default','Contact','','7.59'),(250,'','default','no','','7.31'),(251,'','default','Created','','7.59'),(252,'','default','Node','','7.59'),(253,'','default','Sent email to %recipient','','none'),(254,'','default','Unable to send email to %recipient','','none'),(255,'','default','The subject of the message.','','none'),(256,'','default','Create','','none'),(257,'','default','Are you sure you want to delete %title?','','7.34'),(258,'','default','Save categories','','none'),(259,'','default','Parent item','','7.34'),(260,'','default','Question','','none'),(261,'','default','Add child page','','none'),(262,'','default','Printer-friendly version','','none'),(263,'','default','Content type for child pages','','none'),(264,'','default','Update options','','7.34'),(265,'','default','Remove from outline','','none'),(266,'','default','Unknown export format.','','none'),(267,'','default','All','','7.34'),(268,'','default','Active','','7.59'),(269,'; modules/dashboard/dashboard.js; modules/locale/locale.datepicker.js','default','Done','','none'),(270,'','default','Last post','','7.34'),(271,'','default','Access denied','','7.34'),(272,'','default','Year','','none'),(273,'','default','Date format','','7.59'),(274,'','default','Add content','','7.59'),(275,'','default','Page title','','none'),(276,'','default','Block','','7.59'),(277,'','default','Add block','','7.34'),(278,'','default','Page','','7.59'),(279,'','default','RSS','','7.59'),(280,'','default','1 hour','','7.59'),(281,'','default','@count hours','','7.34'),(282,'','default','1 day','','none'),(283,'','default','@count days','','none'),(284,'','default','Configuration saved.','','none'),(285,'','default','Taxonomy terms','','7.59'),(286,'','default','Logo','','none'),(287,'','default','Site name','','7.59'),(288,'','default','Site slogan','','7.59'),(289,'','default','Good','','7.31'),(290,'','default','php','','7.34'),(291,'','default','Only site administrators can create new user accounts.','','none'),(292,'','default','Drupal','','7.59'),(293,'','default','Not found','','none'),(294,'','default','Url','','none'),(295,'','default','PHP','','7.59'),(296,'','default','Host','','none'),(297,'','default','PostgreSQL','','none'),(298,'','default','Available updates','','7.34'),(299,'','default','Manual update check','','none'),(300,'','default','Never','','none'),(301,'','default','Check manually','','none'),(302,'','default','Up to date','','7.59'),(303,'','default','Update available','','none'),(304,'','default','Drupal core update status','','7.59'),(305,'','default','Out of date','','7.59'),(306,'','default','Header','','7.59'),(307,'','default','Left sidebar','','none'),(308,'','default','Right sidebar','','none'),(309,'','default','Footer','','7.59'),(310,'','default','Inline','','7.34'),(311,'','default','Recipients','','none'),(312,'','default','Selected','','none'),(313,'','default','Set this to <em>Yes</em> if you would like this category to be selected by default.','','none'),(314,'','default','You must enter a category.','','none'),(315,'','default','Are you sure you want to delete %category?','','none'),(316,'','default','Category %category has been deleted.','','none'),(317,'','default','Your name','','none'),(318,'','default','Your e-mail address','','none'),(319,'','default','Send e-mail','','none'),(320,'','default','You must select a valid category.','','none'),(321,'','default','You must enter a valid e-mail address.','','none'),(322,'','default','[!category] !subject','','none'),(323,'','default','Menu link','','7.59'),(324,'','default','To','','none'),(325,'','default','Feed description','','7.59'),(326,'','default','Custom','','none'),(327,'','default','Visibility','','none'),(328,'','default','Roles','','7.59'),(329,'','default','Revision ID','','7.59'),(330,'','default','Comment','','7.59'),(331,'','default','Comment ID','','7.59'),(332,'','default','Hostname','','7.59'),(333,'','default','Published','','7.59'),(334,'','default','Signature','','7.59'),(335,'','default','Filter','','7.34'),(336,'','default','Location','','7.59'),(337,'','default','Locale','','none'),(338,'','default','Title field label','','7.34'),(339,'','default','Promoted to front page','','7.59'),(340,'','default','Sticky at top of lists','','7.34'),(341,'','default','Revisions','','none'),(342,'','default','URL alias','','7.34'),(343,'','default','Poll duration','','none'),(344,'','default','Poll choices','','none'),(345,'','default','Poll votes','','none'),(346,'','default','Explanation','','none'),(347,'','default','Selection options','','none'),(348,'','default','File ID','','7.59'),(349,'','default','File name','','7.59'),(350,'','default','File size','','7.59'),(351,'','default','Vocabulary','','7.59'),(352,'','default','Vocabulary ID','','7.59'),(353,'','default','Vocabulary name','','none'),(354,'','default','Term ID','','7.59'),(355,'','default','Role name','','none'),(356,'','default','E-mail address','','7.34'),(357,'','default','Last access','','7.59'),(358,'','default','Last login','','7.59'),(359,'','default','Time zone','','7.34'),(360,'','default','Severity','','none'),(361,'','default','Field name','','none'),(362,'','default','Field type','','7.34'),(363,'','default','Global settings','','7.34'),(364,'','default','Widget type','','none'),(365,'','default','Vote','','none'),(366,'','default','Count','','none'),(367,'','default','Overridden','','7.59'),(368,'','default','Set name','','none'),(369,'','default','Original image','','none'),(370,'','default','RSS - blogs','','none'),(371,'','default','Heading','','none'),(372,'','default','Search settings','','none'),(373,'','default','Mode','','none'),(374,'','default','Warning','','none'),(375,'','default','blocked','','none'),(376,'','default','active','','none'),(377,'','default','N/A','','none'),(378,'','default','OK','','none'),(379,'','default','OPML feed','','none'),(380,'','default','configure','','7.34'),(381,'','default','Number of news items in block','','none'),(382,'','default','View this feed\'s recent news.','','none'),(383,'','default','View this category\'s recent news.','','none'),(384,'','default','Feed overview','','none'),(385,'','default','Items','','7.34'),(386,'','default','Last update','','7.34'),(387,'','default','Next update','','none'),(388,'','default','%time left','','none'),(389,'','default','remove items','','none'),(390,'','default','update items','','none'),(391,'','default','Category overview','','none'),(392,'','default','Categorize','','none'),(393,'','default','The categories have been saved.','','none'),(394,'','default','URL:','','none'),(395,'','default','Updated:','','none'),(396,'','default','%age old','','none'),(397,'','default','%ago ago','','none'),(398,'','default','Nodes','','7.59'),(399,'','default','Authored by','','7.34'),(400,'','default','The feed %feed has been updated.','','none'),(401,'','default','Feed %feed deleted.','','none'),(402,'','default','The feed %feed has been deleted.','','none'),(403,'','default','Feed %feed added.','','none'),(404,'','default','The feed %feed has been added.','','none'),(405,'','default','The news items from %site have been removed.','','none'),(406,'','default','Performance','','7.59'),(407,'','default','Width','','none'),(408,'','default','Height','','none'),(409,'','default','This field is required.','','7.59'),(410,'','default','Maximum','','none'),(411,'','default','Line','','none'),(412,'','default','Scale','','7.59'),(413,'','default','Medium','','7.59'),(414,'','default','Media','','7.59'),(415,'','default','Plain text','','7.59'),(416,'','default','Caching','','none'),(417,'','default','Month','','none'),(418,'','default','Details','','none'),(419,'','default','Widget','','7.34'),(420,'','default','Last reply','','7.34'),(421,'; modules/locale/locale.datepicker.js','default','Prev','','none'),(422,'','default','System','','7.59'),(423,'','default','Domain','','none'),(424,'','default','Processors','','none'),(425,'','default','Unlimited','','none'),(426,'','default','Send','','none'),(427,'','default','Code','','7.34'),(428,'','default','Enter a valid username.','','none'),(429,'','default','Owner','','7.59'),(430,'','default','Recipient','','none'),(431,'','default','Add a role to the selected users','','none'),(432,'','default','Remove a role from the selected users','','none'),(433,'','default','security','','none'),(434,'','default','node','','7.59'),(435,'','default','Administer content','','none'),(436,'','default','General','','none'),(437,'','default','Method','','none'),(438,'','default','Egypt','','7.34'),(439,'','default','Namibia','','7.34'),(440,'','default','Israel','','7.34'),(441,'','default','Iran','','7.34'),(442,'','default','New Zealand','','7.34'),(443,'','default','Tonga','','7.34'),(444,'','default','Cuba','','7.34'),(445,'','default','Brazil','','7.34'),(446,'','default','Chile','','7.34'),(447,'','default','Paraguay','','7.34'),(448,'','default','Jamaica','','7.34'),(449,'','default','Japan','','7.34'),(450,'','default','Libya','','7.34'),(451,'','default','Navajo','','none'),(452,'','default','Poland','','7.34'),(453,'','default','Portugal','','7.34'),(454,'','default','Singapore','','7.34'),(455,'','default','Turkey','','7.34'),(456,'','default','Day','','none'),(457,'','default','Table','','7.59'),(458,'; modules/locale/locale.datepicker.js','default','Mon','','7.59'),(459,'; modules/locale/locale.datepicker.js','default','Tue','','7.59'),(460,'; modules/locale/locale.datepicker.js','default','Wed','','7.59'),(461,'; modules/locale/locale.datepicker.js','default','Thu','','7.59'),(462,'; modules/locale/locale.datepicker.js','default','Fri','','7.34'),(463,'; modules/locale/locale.datepicker.js','default','Sat','','7.59'),(464,'; modules/locale/locale.datepicker.js','default','Sun','','7.59'),(465,'; modules/locale/locale.datepicker.js','default','January','','none'),(466,'; modules/locale/locale.datepicker.js','default','February','','none'),(467,'; modules/locale/locale.datepicker.js','default','March','','none'),(468,'; modules/locale/locale.datepicker.js','default','April','','none'),(469,'; modules/locale/locale.datepicker.js','default','May','','none'),(470,'; modules/locale/locale.datepicker.js','default','June','','none'),(471,'; modules/locale/locale.datepicker.js','default','July','','none'),(472,'; modules/locale/locale.datepicker.js','default','August','','none'),(473,'; modules/locale/locale.datepicker.js','default','September','','none'),(474,'; modules/locale/locale.datepicker.js','default','October','','none'),(475,'; modules/locale/locale.datepicker.js','default','November','','none'),(476,'; modules/locale/locale.datepicker.js','default','December','','none'),(477,'','default','am','','none'),(478,'','default','pm','','none'),(479,'','default','Forum','','7.34'),(480,'','default','Configuration','','7.59'),(481,'','default','!time ago','','none'),(482,'','default','Background color','','none'),(483,'','default','Text color','','none'),(484,'','default','Navigation','','7.59'),(485,'','default','Basic','','7.59'),(486,'','default','Color','','none'),(487,'','default','Appearance','','7.59'),(488,'','default','Role','','7.59'),(489,'','default','User login','','7.59'),(490,'','default','Log in','','7.59'),(491,'','default','Updated URL for feed %title to %url.','','none'),(492,'','default','Blog','','none'),(493,'','default','Jump to the first comment of this posting.','','none'),(494,'','default','Jump to the first new comment of this posting.','','none'),(495,'','default','Add new comment','','none'),(496,'','default','Add a new comment to this page.','','none'),(497,'','default','Share your thoughts and opinions related to this posting.','','none'),(498,'','default','reset','','7.34'),(499,'','default','String','','7.34'),(500,'','default','Users','','7.59'),(501,'','default','Not installed','','none'),(502,'','default','Choices','','none'),(503,'','default','Minimum cache lifetime','','7.59'),(504,'','default','Referrer','','none'),(505,'','default','1 vote','','none'),(506,'','default','@count votes','','none'),(507,'','default','@site is currently under maintenance. We should be back shortly. Thank you for your patience.','','7.59'),(508,'','default','Default front page','','7.59'),(509,'','default','Top pages','','none'),(510,'','default','Text processing','','none'),(511,'','default','Maximum length','','none'),(512,'','default','Rows','','none'),(513,'','default','Save changes','','none'),(514,'','default','access denied','','none'),(515,'','default','Anonymous','','7.59'),(516,'','default','Uninstall','','7.34'),(517,'','default','Install','','none'),(518,'','default','Optional','','7.34'),(519,'','default','Order','','none'),(520,'','default','Recent comments','','7.59'),(521,'','default','Recent hits','','none'),(522,'','default','Set default','','none'),(523,'','default','Integer','','7.59'),(524,'','default','IP Address','','7.59'),(525,'','default','The comment and all its replies have been deleted.','','none'),(526,'','default','Preformatted','','none'),(527,'','default','Profile','','none'),(528,'','default','Anonymous users','','none'),(529,'','default','Clear cache','','none'),(530,'','default','Visibility settings','','7.34'),(531,'','default','Votes','','none'),(532,'','default','Term description','','7.59'),(533,'','default','Save settings','','none'),(534,'','default','Operation','','7.34'),(535,'','default','reply','','none'),(536,'','default','Function','','none'),(537,'','default','Session closed for %name.','','none'),(538,'','default','Tracker','','none'),(539,'','default','You have to specify a valid date.','','none'),(540,'','default','Server settings','','none'),(541,'','default','The field %field is required.','','none'),(542,'','default','Germany','','7.34'),(543,'','default','Logout','','none'),(544,'','default','1 new','','none'),(545,'','default','@count new','','none'),(546,'','default','Default language','','7.34'),(547,'','default','Afghanistan','','7.34'),(548,'','default','Albania','','7.34'),(549,'','default','Algeria','','7.34'),(550,'','default','American Samoa','','7.34'),(551,'','default','Andorra','','7.34'),(552,'','default','Angola','','7.34'),(553,'','default','Anguilla','','7.34'),(554,'','default','Antarctica','','7.34'),(555,'','default','Antigua and Barbuda','','7.34'),(556,'','default','Argentina','','7.34'),(557,'','default','Armenia','','7.34'),(558,'','default','Aruba','','7.34'),(559,'','default','Australia','','7.34'),(560,'','default','Austria','','7.34'),(561,'','default','Azerbaijan','','7.34'),(562,'','default','Bahamas','','7.34'),(563,'','default','Bahrain','','7.34'),(564,'','default','Bangladesh','','7.34'),(565,'','default','Barbados','','7.34'),(566,'','default','Belarus','','7.34'),(567,'','default','Belgium','','7.34'),(568,'','default','Belize','','7.34'),(569,'','default','Benin','','7.34'),(570,'','default','Bermuda','','7.34'),(571,'','default','Bhutan','','7.34'),(572,'','default','Bolivia','','7.34'),(573,'','default','Bosnia and Herzegovina','','7.34'),(574,'','default','Botswana','','7.34'),(575,'','default','Bouvet Island','','7.34'),(576,'','default','Brunei','','7.34'),(577,'','default','Bulgaria','','7.34'),(578,'','default','Burkina Faso','','7.34'),(579,'','default','Burundi','','7.34'),(580,'','default','Cambodia','','7.34'),(581,'','default','Cameroon','','7.34'),(582,'','default','Canada','','7.34'),(583,'','default','Cape Verde','','7.34'),(584,'','default','Cayman Islands','','7.34'),(585,'','default','Central African Republic','','7.34'),(586,'','default','Chad','','7.34'),(587,'','default','China','','7.34'),(588,'','default','Christmas Island','','7.34'),(589,'','default','Cocos (Keeling) Islands','','7.34'),(590,'','default','Colombia','','7.34'),(591,'','default','Comoros','','7.34'),(592,'','default','Cook Islands','','7.34'),(593,'','default','Costa Rica','','7.34'),(594,'','default','Cyprus','','7.34'),(595,'','default','Czech Republic','','7.34'),(596,'','default','Denmark','','7.34'),(597,'','default','Djibouti','','7.34'),(598,'','default','Dominica','','7.34'),(599,'','default','Dominican Republic','','7.34'),(600,'','default','Ecuador','','7.34'),(601,'','default','El Salvador','','7.34'),(602,'','default','Equatorial Guinea','','7.34'),(603,'','default','Eritrea','','7.34'),(604,'','default','Estonia','','7.34'),(605,'','default','Ethiopia','','7.34'),(606,'','default','Faroe Islands','','7.34'),(607,'','default','Finland','','7.34'),(608,'','default','France','','7.34'),(609,'','default','French Guiana','','7.34'),(610,'','default','French Polynesia','','7.34'),(611,'','default','Gabon','','7.34'),(612,'','default','Gambia','','7.34'),(613,'','default','Georgia','','7.34'),(614,'','default','Ghana','','7.34'),(615,'','default','Gibraltar','','7.34'),(616,'','default','Greece','','7.34'),(617,'','default','Greenland','','7.34'),(618,'','default','Grenada','','7.34'),(619,'','default','Guadeloupe','','7.34'),(620,'','default','Guam','','7.34'),(621,'','default','Guatemala','','7.34'),(622,'','default','Guinea','','7.34'),(623,'','default','Guinea-Bissau','','7.34'),(624,'','default','Guyana','','7.34'),(625,'','default','Haiti','','7.34'),(626,'','default','Heard Island and McDonald Islands','','7.34'),(627,'','default','Honduras','','7.34'),(628,'','default','Hungary','','7.34'),(629,'','default','Iceland','','7.34'),(630,'','default','India','','7.34'),(631,'','default','Indonesia','','7.34'),(632,'','default','Iraq','','7.34'),(633,'','default','Ireland','','7.34'),(634,'','default','Italy','','7.34'),(635,'','default','Jordan','','7.34'),(636,'','default','Kazakhstan','','7.34'),(637,'','default','Kenya','','7.34'),(638,'','default','Kiribati','','7.34'),(639,'','default','Kuwait','','7.34'),(640,'','default','Kyrgyzstan','','7.34'),(641,'','default','Laos','','7.34'),(642,'','default','Latvia','','7.34'),(643,'','default','Lebanon','','7.34'),(644,'','default','Lesotho','','7.34'),(645,'','default','Liberia','','7.34'),(646,'','default','Liechtenstein','','7.34'),(647,'','default','Lithuania','','7.34'),(648,'','default','Luxembourg','','7.34'),(649,'','default','Madagascar','','7.34'),(650,'','default','Malawi','','7.34'),(651,'','default','Malaysia','','7.34'),(652,'','default','Maldives','','7.34'),(653,'','default','Mali','','7.34'),(654,'','default','Malta','','7.34'),(655,'','default','Marshall Islands','','7.34'),(656,'','default','Martinique','','7.34'),(657,'','default','Mauritania','','7.34'),(658,'','default','Mauritius','','7.34'),(659,'','default','Mayotte','','7.34'),(660,'','default','Mexico','','7.34'),(661,'','default','Micronesia','','7.34'),(662,'','default','Moldova','','7.34'),(663,'','default','Monaco','','7.34'),(664,'','default','Mongolia','','7.34'),(665,'','default','Montserrat','','7.34'),(666,'','default','Morocco','','7.34'),(667,'','default','Mozambique','','7.34'),(668,'','default','Myanmar','','7.34'),(669,'','default','Nauru','','7.34'),(670,'','default','Nepal','','7.34'),(671,'','default','Netherlands','','7.34'),(672,'','default','Netherlands Antilles','','7.34'),(673,'','default','New Caledonia','','7.34'),(674,'','default','Nicaragua','','7.34'),(675,'','default','Niger','','7.34'),(676,'','default','Nigeria','','7.34'),(677,'','default','Niue','','7.34'),(678,'','default','Norfolk Island','','7.34'),(679,'','default','North Korea','','7.34'),(680,'','default','Northern Mariana Islands','','7.34'),(681,'','default','Norway','','7.34'),(682,'','default','Oman','','7.34'),(683,'','default','Pakistan','','7.34'),(684,'','default','Palau','','7.34'),(685,'','default','Panama','','7.34'),(686,'','default','Papua New Guinea','','7.34'),(687,'','default','Peru','','7.34'),(688,'','default','Philippines','','7.34'),(689,'','default','Puerto Rico','','7.34'),(690,'','default','Qatar','','7.34'),(691,'','default','Reunion','','7.34'),(692,'','default','Romania','','7.34'),(693,'','default','Russia','','7.34'),(694,'','default','Rwanda','','7.34'),(695,'','default','Samoa','','7.34'),(696,'','default','San Marino','','7.34'),(697,'','default','Saudi Arabia','','7.34'),(698,'','default','Senegal','','7.34'),(699,'','default','Seychelles','','7.34'),(700,'','default','Sierra Leone','','7.34'),(701,'','default','Slovakia','','7.34'),(702,'','default','Slovenia','','7.34'),(703,'','default','Solomon Islands','','7.34'),(704,'','default','Somalia','','7.34'),(705,'','default','South Africa','','7.34'),(706,'','default','South Georgia and the South Sandwich Islands','','7.34'),(707,'','default','Spain','','7.34'),(708,'','default','Sri Lanka','','7.34'),(709,'','default','Sudan','','7.34'),(710,'','default','Suriname','','7.34'),(711,'','default','Svalbard and Jan Mayen','','7.34'),(712,'','default','Swaziland','','7.34'),(713,'','default','Sweden','','7.34'),(714,'','default','Switzerland','','7.34'),(715,'','default','Syria','','7.34'),(716,'','default','Taiwan','','7.34'),(717,'','default','Tajikistan','','7.34'),(718,'','default','Tanzania','','7.34'),(719,'','default','Thailand','','7.34'),(720,'','default','Togo','','7.34'),(721,'','default','Tokelau','','7.34'),(722,'','default','Trinidad and Tobago','','7.34'),(723,'','default','Tunisia','','7.34'),(724,'','default','Turkmenistan','','7.34'),(725,'','default','Turks and Caicos Islands','','7.34'),(726,'','default','Tuvalu','','7.34'),(727,'','default','Uganda','','7.34'),(728,'','default','Ukraine','','7.34'),(729,'','default','United Arab Emirates','','7.34'),(730,'','default','United Kingdom','','7.34'),(731,'','default','United States','','7.34'),(732,'','default','United States Minor Outlying Islands','','7.34'),(733,'','default','Uruguay','','7.34'),(734,'','default','Uzbekistan','','7.34'),(735,'','default','Vanuatu','','7.34'),(736,'','default','Venezuela','','7.34'),(737,'','default','Wallis and Futuna','','7.34'),(738,'','default','Yemen','','7.34'),(739,'','default','Zambia','','7.34'),(740,'','default','Zimbabwe','','7.34'),(741,'','default','Table prefix','','none'),(742,'','default','Database username','','none'),(743,'','default','Database password','','none'),(744,'','default','Database name','','none'),(745,'','default','Add user','','7.34'),(746,'','default','Port','','none'),(747,'','default','Size of textfield','','none'),(748,'','default','Authoring information','','7.34'),(749,'','default','Authored on','','7.34'),(750,'','default','Leave blank for %anonymous.','','7.34'),(751,'','default','Hidden','','7.34'),(752,'','default','Enable or disable page caching for anonymous users and set CSS and JS bandwidth optimization options.','','7.59'),(753,'','default','Syslog','','none'),(754,'','default','Key','','7.59'),(755,'','default','Enabled languages','','7.34'),(756,'','default','Arabic','','none'),(757,'','default','English','','7.59'),(758,'','default','French','','none'),(759,'','default','Italian','','7.59'),(760,'','default','Spanish','','none'),(761,'','default','Japanese','','none'),(762,'','default','Korean','','none'),(763,'','default','A valid e-mail address. All e-mails from the system will be sent to this address. The e-mail address is not made public and will only be used if you wish to receive a new password or wish to receive certain news or notifications by e-mail.','','7.31'),(764,'','default','The e-mail address %email is already registered. <a href=\"@password\">Have you forgotten your password?</a>','','none'),(765,'','default','Import OPML','','none'),(766,'','default','Remove items','','none'),(767,'','default','OPML File','','none'),(768,'','default','Allowed HTML tags','','none'),(769,'','default','Sources','','none'),(770,'','default','!title category latest items','','none'),(771,'','default','!title feed latest items','','none'),(772,'','default','The category %category has been updated.','','none'),(773,'','default','Category %category deleted.','','none'),(774,'','default','The category %category has been deleted.','','none'),(775,'','default','Category %category added.','','none'),(776,'','default','The category %category has been added.','','none'),(777,'','default','aggregator - @title','','none'),(778,'','default','1 item','','none'),(779,'','default','@count items','','none'),(780,'','default','Add menu','','7.34'),(781,'','default','menu','','7.59'),(782,'','default','‹ previous','','7.59'),(783,'','default','next ›','','7.59'),(784,'','default','No items selected.','','none'),(785,'','default','The update has been performed.','','none'),(786,'','default','Browser','','none'),(787,'','default','View user profile.','','7.59'),(788,'','default','Titles only','','7.59'),(789,'','default','Full text','','7.59'),(790,'','default','This cannot be undone.','','none'),(791,'','default','Upload picture','','7.31'),(792,'','default','Message:','','none'),(793,'','default','Language file','','none'),(794,'','default','published','','7.34'),(795,'','default','Average page generation time','','none'),(796,'','default','The changes have been saved.','','none'),(797,'','default','Show only users where','','none'),(798,'','default','Refine','','none'),(799,'','default','Undo','','none'),(800,'','default','Member for','','7.31'),(801,'','default','@time ago','','none'),(802,'','default','No users selected.','','none'),(803,'','default','Detected malicious attempt to alter protected user fields.','','none'),(804,'; misc/tableselect.js','default','Select all rows in this table','','none'),(805,'; misc/tableselect.js','default','Deselect all rows in this table','','none'),(806,'','default','Search results','','none'),(807,'','default','Your search yielded no results','','none'),(808,'','default','Please enter some keywords.','','none'),(809,'','default','Front page','','7.34'),(810,'','default','Request new password','','7.59'),(811,'','default','Deleted','','none'),(812,'','default','Languages','','7.59'),(813,'','default','Topics','','7.34'),(814,'','default','Topic','','7.34'),(815,'','default','Allowed values list','','none'),(816,'; modules/locale/locale.datepicker.js','default','Today','','none'),(817,'','default','Edit menu','','7.59'),(818,'','default','Delete menu','','none'),(819,'','default','Publishing options','','7.34'),(820,'','default','Create new revision','','7.34'),(821,'','default','Minimum height','','none'),(822,'','default','Minimum width','','none'),(823,'','default','Locale settings','','7.31'),(824,'','default','Configure block','','7.59'),(825,'','default','How many content items to display in \"day\" list.','','none'),(826,'; modules/locale/locale.datepicker.js','default','Jan','','none'),(827,'; modules/locale/locale.datepicker.js','default','Feb','','none'),(828,'; modules/locale/locale.datepicker.js','default','Mar','','none'),(829,'; modules/locale/locale.datepicker.js','default','Apr','','none'),(830,'; modules/locale/locale.datepicker.js','default','Jun','','none'),(831,'; modules/locale/locale.datepicker.js','default','Jul','','none'),(832,'; modules/locale/locale.datepicker.js','default','Aug','','none'),(833,'; modules/locale/locale.datepicker.js','default','Sep','','none'),(834,'; modules/locale/locale.datepicker.js','default','Oct','','none'),(835,'; modules/locale/locale.datepicker.js','default','Nov','','none'),(836,'; modules/locale/locale.datepicker.js','default','Dec','','none'),(837,'','default','Select list','','7.59'),(838,'','default','Text field','','7.59'),(839,'','default','Long','','7.59'),(840,'','default','Short','','7.59'),(841,'','default','Posts','','7.34'),(842,'','default','Configure permissions','','none'),(843,'','default','Workflow','','7.59'),(844,'','default','Randomize','','none'),(845,'','default','Revert','','7.34'),(846,'','default','Empty','','none'),(847,'','default','Existing system path','','none'),(848,'','default','Path alias','','none'),(849,'','default','Specify an alternative path by which this data can be accessed. For example, type \"about\" when writing an about page. Use a relative path and don\'t add a trailing slash or the URL alias won\'t work.','','none'),(850,'','default','Greater than','','none'),(851,'','default','Less than','','none'),(852,'','default','any','','7.34'),(853,'','default','Choice','','none'),(854,'','default','Log out','','7.59'),(855,'','default','Number of day\'s top views to display','','none'),(856,'','default','Number of all time views to display','','none'),(857,'','default','Number of most recent views to display','','none'),(858,'','default','The settings have not been saved because of the errors.','','none'),(859,'','default','characters','','none'),(860,'','default','profile','','none'),(861,'; modules/locale/locale.datepicker.js','default','Su','','none'),(862,'; modules/locale/locale.datepicker.js','default','Mo','','none'),(863,'; modules/locale/locale.datepicker.js','default','Tu','','none'),(864,'; modules/locale/locale.datepicker.js','default','We','','none'),(865,'; modules/locale/locale.datepicker.js','default','Th','','none'),(866,'; modules/locale/locale.datepicker.js','default','Fr','','none'),(867,'; modules/locale/locale.datepicker.js','default','Sa','','none'),(868,'','default','First day of week','','7.59'),(869,'','default','Autocomplete taxonomy','','none'),(870,'','default','Send yourself a copy.','','none'),(871,'','default','Your message has been sent.','','none'),(872,'','default','Create new account','','7.31'),(873,'','default','role','','none'),(874,'','default','Are you sure you want to delete the block %name?','','none'),(875,'','default','The block %name has been removed.','','none'),(876,'','default','Info','','none'),(877,'','default','People','','7.59'),(878,'','default','list terms','','none'),(879,'','default','add terms','','none'),(880,'','default','Created new term %term.','','none'),(881,'','default','Are you sure you want to delete the term %title?','','none'),(882,'','default','Deleted term %name.','','none'),(883,'','default','warning','','none'),(884,'','default','No statistics available.','','none'),(885,'','default','Last run !time ago','','7.59'),(886,'','default','Site information','','7.59'),(887,'','default','Blocked','','7.59'),(888,'','default','Enabled filters','','none'),(889,'','default','critical','','none'),(890,'','default','Results','','none'),(891,'','default','Older polls','','none'),(892,'','default','View the list of polls on this site.','','none'),(893,'','default','Poll settings','','none'),(894,'','default','You must fill in at least two choices.','','none'),(895,'','default','open','','none'),(896,'','default','This table lists all the recorded votes for this poll. If anonymous users are allowed to vote, they will be identified by the IP address of the computer they used when they voted.','','none'),(897,'','default','Visitor','','none'),(898,'','default','Cancel your vote','','none'),(899,'','default','View the current poll results.','','none'),(900,'','default','Deleting a term will delete all its children if there are any. This action cannot be undone.','','none'),(901,'','default','Parent term','','7.59'),(902,'','default','Parent terms','','7.59'),(903,'','default','Syndicate','','7.59'),(904,'','default','Blogs','','none'),(905,'','default','Books','','none'),(906,'','default','The feed from %site seems to be broken, due to an error \"%error\" on line %line.','','none'),(907,'','default','The feed from %site seems to be broken, because of error \"%error\" on line %line.','','none'),(908,'','default','Forums','','7.59'),(909,'','default','Revisions for %title','','none'),(910,'','default','!date by !username','','none'),(911,'','default','revert','','none'),(912,'','default','Revision','','7.34'),(913,'','default','current revision','','none'),(914,'','default','The specified passwords do not match.','','none'),(915,'','default','Session','','none'),(916,'','default','Track','','none'),(917,'','default','No forums defined','','none'),(918,'','default','This topic has been moved','','none'),(919,'','default','Permissions','','7.59'),(920,'','default','Your settings have been saved.','','7.34'),(921,'','default','Cron','','7.59'),(922,'','default','Installed','','none'),(923,'','default','permission','','none'),(924,'','default','Your vote was recorded.','','none'),(925,'','default','Allows your site to capture votes on different topics in the form of multiple choice questions.','','none'),(926,'','default','Link color','','none'),(927,'','default','Date created','','7.59'),(928,'','default','Testing','','none'),(929,'','default','Standard','','none'),(930,'','default','Aland Islands','','7.34'),(931,'','default','Fiji','','7.34'),(932,'','default','Falkland Islands','','7.34'),(933,'','default','Saint Kitts and Nevis','','7.34'),(934,'','default','South Korea','','7.34'),(935,'','default','Saint Lucia','','7.34'),(936,'','default','Saint Helena','','7.34'),(937,'','default','Sao Tome and Principe','','7.34'),(938,'','default','French Southern Territories','','7.34'),(939,'','default','Saint Vincent and the Grenadines','','7.34'),(940,'','default','British Virgin Islands','','7.34'),(941,'','default','U.S. Virgin Islands','','7.34'),(942,'','default','Vietnam','','7.34'),(943,'','default','Guernsey','','7.34'),(944,'','default','Jersey','','7.34'),(945,'','default','%type settings','','none'),(946,'; modules/node/node.js; modules/node/content_types.js','default','Not published','','7.59'),(947,'','default','Menu settings','','7.34'),(948,'','default','Color scheme','','none'),(949,'','default','Unformatted','','7.59'),(950,'','default','Formats','','7.34'),(951,'','default','@type: deleted %title.','','none'),(952,'','default','Allowed file extensions','','none'),(953,'','default','New comments','','7.59'),(954,'','default','Redirect to URL','','none'),(955,'','default','details','','none'),(956,'','default','Top left','','none'),(957,'','default','Top right','','none'),(958,'','default','Bottom right','','none'),(959,'','default','Bottom left','','none'),(960,'','default','The username %name has not been activated or is blocked.','','none'),(961,'','default','Login attempt failed for %user.','','none'),(962,'','default','image','','7.34'),(963,'','default','Revision of %title from %date','','none'),(964,'','default','The username of the user to which you would like to assign ownership.','','none'),(965,'','default','Manage the actions defined for your site.','','7.59'),(966,'','default','Delete action','','none'),(967,'','default','The action has been successfully saved.','','none'),(968,'','default','Deleted action %aid (%action)','','none'),(969,'','default','Action \'%action\' added.','','none'),(970,'','default','Remove orphaned actions','','none'),(971,'','default','Themes','','none'),(972,'','default','JPEG quality','','none'),(973,'','default','%','','none'),(974,'','default','Delete comments','','none'),(975,'','default','not published','','7.34'),(976,'','default','Published comments','','7.34'),(977,'','default','!name field is required.','','none'),(978,'','default','Protected','','7.59'),(979,'','default','Comment settings','','7.34'),(980,'','default','Hits','','none'),(981,'','default','not sticky','','7.34'),(982,'','default','sticky','','7.34'),(983,'','default','not promoted','','7.34'),(984,'','default','promoted','','7.34'),(985,'','default','You are here','','7.59'),(986,'','default','Default options','','7.59'),(987,'','default','Contact settings','','none'),(988,'','default','Reset password','','none'),(989,'','default','Processing','','none'),(990,'','default','Finished','','none'),(991,'','default','disable','','none'),(992,'','default','Temporary directory','','none'),(993,'','default','date','','none'),(994,'','default','File upload error. Could not move uploaded file.','','none'),(995,'','default','Shortcuts','','7.59'),(996,'','default','Shortcut','','none'),(997,'','default','Default value','','7.59'),(998,'','default','Timezone','','7.59'),(999,'','default','The specified date is invalid.','','none'),(1000,'','default','Password strength:','','7.31'),(1001,'','default','Passwords match:','','7.31'),(1002,'','default','Slogan','','7.59'),(1003,'','default','The name used to indicate anonymous users.','','7.59'),(1004,'','default','Alternate text','','7.34'),(1005,'; misc/ajax.js','default','Please wait...','','none'),(1006,'','default','Assign','','none'),(1007,'','default','Not translated','','7.34'),(1008,'','default','Go to first page','','7.59'),(1009,'','default','Go to last page','','7.59'),(1010,'','default','Go to page @number','','7.59'),(1011,'','default','Enter the terms you wish to search for.','','none'),(1012,'','default','Underlined','','none'),(1013,'','default','Tasks','','7.59'),(1014,'','default','Delete role','','none'),(1015,'','default','Basic configuration','','none'),(1016,'','default','List menus','','7.34'),(1017,'','default','Customize menu','','none'),(1018,'','default','British Indian Ocean Territory','','7.34'),(1019,'','default','Croatia','','7.34'),(1020,'','default','Macedonia','','7.34'),(1021,'','default','Pitcairn','','7.34'),(1022,'','default','Western Sahara','','7.34'),(1023,'','default','English name','','7.34'),(1024,'','default','Native name','','7.34'),(1025,'','default','Block description','','7.34'),(1026,'','default','Form name','','none'),(1027,'','default','The title of the new field. The title will be shown to the user. An example title is \"Favorite color\".','','none'),(1028,'','default','An optional explanation to go with the new field. The explanation will be shown to the user.','','none'),(1029,'','default','Save field','','none'),(1030,'','default','Blocks','','7.59'),(1031,'','default','Configure what block content appears in your site\'s sidebars and other regions.','','7.34'),(1032,'','default','Delete block','','none'),(1033,'','default','Save blocks','','7.34'),(1034,'','default','The block settings have been updated.','','7.34'),(1035,'','default','\'%name\' block','','7.34'),(1036,'','default','Allow individual users to customize the visibility of this block in their account settings.','','7.34'),(1037,'','default','Show block for specific roles','','7.34'),(1038,'','default','Show this block only for the selected role(s). If you select no roles, the block will be visible to all users.','','7.34'),(1039,'','default','Show block on specific pages','','7.34'),(1040,'','default','Save block','','7.34'),(1041,'','default','The block configuration has been saved.','','7.34'),(1042,'','default','The block has been created.','','7.34'),(1043,'','default','Block body','','7.34'),(1044,'','default','The content of the block as shown to the user.','','7.34'),(1045,'','default','Menus','','7.59'),(1046,'','default','Any customizations will be lost. This action cannot be undone.','','none'),(1047,'','default','Allows administrators to customize the site navigation menu.','','none'),(1048,'','default','Add vocabulary','','7.34'),(1049,'','default','edit vocabulary','','none'),(1050,'','default','Created new vocabulary %name.','','none'),(1051,'','default','Updated vocabulary %name.','','none'),(1052,'','default','Are you sure you want to delete the vocabulary %title?','','none'),(1053,'','default','Deleting a vocabulary will delete all the terms in it. This action cannot be undone.','','none'),(1054,'','default','Deleted vocabulary %name.','','none'),(1055,'','default','Above','','7.34'),(1056,'','default','Number of values','','none'),(1057,'','default','Default time zone','','7.59'),(1058,'','default','Add another item','','none'),(1059,'','default','Manage fields','','7.34'),(1060,'','default','Add field','','none'),(1061,'','default','Trimmed','','7.59'),(1062,'','default','Used in','','none'),(1063,'','default','Add existing field','','7.34'),(1064,'','default','If you have any content left in this field, it will be lost. This action cannot be undone.','','none'),(1065,'','default','Save field settings','','none'),(1066,'','default','The update has encountered an error.','','none'),(1067,'','default','1 item successfully processed:','','none'),(1068,'','default','@count items successfully processed:','','none'),(1069,'','default','Decimal','','7.59'),(1070,'','default','Float','','7.59'),(1071,'','default','Minimum','','none'),(1072,'','default','Precision','','none'),(1073,'','default','The total number of digits to store in the database, including those to the right of the decimal.','','none'),(1074,'','default','The number of digits to the right of the decimal.','','none'),(1075,'','default','Decimal marker','','none'),(1076,'','default','The character users will input to mark the decimal point in forms.','','none'),(1077,'','default','Defines numeric field types.','','none'),(1078,'','default','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.','','none'),(1079,'','default','Check boxes/radio buttons','','7.59'),(1080,'','default','Single on/off checkbox','','7.59'),(1081,'','default','Defines selection, check box and radio button widgets for text and numeric fields.','','none'),(1082,'','default','Text area (multiple rows)','','7.59'),(1083,'','default','Defines simple text field types.','','none'),(1084,'','default','Index','','7.59'),(1085,'','default','Enable clean URLs','','none'),(1086,'','default','Permalink','','none'),(1087,'','default','Theme-engine-specific settings','','none'),(1088,'','default','Debug','','7.34'),(1089,'','default','Exception','','none'),(1090,'','default','Permission','','7.59'),(1091,'','default','@module module','','none'),(1092,'','default','Incompatible with this version of PHP','','none'),(1093,'','default','This module requires PHP version @php_required and is incompatible with PHP version !php_version.','','none'),(1094,'','default','More information','','none'),(1095,'','default','!title !required','','7.59'),(1096,'','default','My blog','','none'),(1097,'','default','Anonymous commenting','','7.34'),(1098,'','default','Anonymous posters may not enter their contact information','','7.34'),(1099,'','default','Anonymous posters may leave their contact information','','7.34'),(1100,'','default','Anonymous posters must leave their contact information','','7.34'),(1101,'','default','The content of this field is kept private and will not be shown publicly.','','none'),(1102,'','default','Your signature will be publicly displayed at the end of your comments.','','7.31'),(1103,'','default','Date - newest first','','7.59'),(1104,'','default','Date - oldest first','','7.59'),(1105,'','default','1 comment','','none'),(1106,'','default','@count comments','','none'),(1107,'','default','1 new comment','','none'),(1108,'','default','@count new comments','','none'),(1109,'','default','Save content type','','7.34'),(1110,'','default','Show descriptions','','none'),(1111,'','default','Subtitle','','none'),(1112,'','default','Language code','','7.34'),(1113,'','default','Save role','','none'),(1114,'','default','debug','','none'),(1115,'','default','file system','','none'),(1116,'','default','Menu link title','','7.34'),(1117,'','default','The menu system stores system paths only, but will use the URL alias for display. %link_path has been stored as %normal_path','','none'),(1118,'','default','The path \'@link_path\' is either invalid or you do not have access to it.','','none'),(1119,'','default','There was an error saving the menu link.','','none'),(1120,'','default','Menu name','','7.34'),(1121,'','default','Are you sure you want to delete the custom menu %title?','','none'),(1122,'','default','Number of users to display','','none'),(1123,'','default','RSS - !title','','none'),(1124,'','default','...','','none'),(1125,'','default','RDF','','none'),(1126,'','default','Profiles','','none'),(1127,'','default','Edit container','','none'),(1128,'','default','Last visit','','none'),(1129,'','default','Hot topic threshold','','7.59'),(1130,'','default','Topics per page','','7.59'),(1131,'','default','Posts - most active first','','7.59'),(1132,'','default','Posts - least active first','','7.59'),(1133,'','default','URL path settings','','7.34'),(1134,'','default','@user\'s picture','','none'),(1135,'','default','Are you sure you want to revert to the revision from %revision-date?','','none'),(1136,'','default','Are you sure you want to delete the revision from %revision-date?','','none'),(1137,'','default','Maximum upload size','','none'),(1138,'','default','KB','','none'),(1139,'','default','Space','','none'),(1140,'','default','New forum topics','','7.59'),(1141,'','default','@type: deleted %title revision %revision.','','none'),(1142,'','default','Page not found','','7.59'),(1143,'','default','Language neutral','','7.34'),(1144,'','default','More help','','none'),(1145,'','default','Preview trimmed version','','none'),(1146,'','default','Preview full version','','none'),(1147,'','default','Account blocked','','none'),(1148,'','default','Expand','','none'),(1149,'','default','The name %name is already taken.','','none'),(1150,'','default','info','','none'),(1151,'','default','OpenID redirect','','none'),(1152,'','default','OpenID Login','','none'),(1153,'','default','Delete OpenID','','none'),(1154,'','default','Log in using OpenID','','none'),(1155,'','default','Cancel OpenID login','','none'),(1156,'','default','What is OpenID?','','none'),(1157,'','default','OpenID login failed.','','none'),(1158,'','default','OpenID login cancelled.','','none'),(1159,'','default','Successfully added %identity','','none'),(1160,'','default','OpenID','','none'),(1161,'','default','Add an OpenID','','none'),(1162,'','default','That OpenID is already in use on this site.','','none'),(1163,'','default','Are you sure you want to delete the OpenID %authname for %user?','','none'),(1164,'','default','OpenID deleted.','','none'),(1165,'','default','edit menu','','7.34'),(1166,'','default','« first','','7.59'),(1167,'','default','last »','','7.59'),(1168,'','default','Overlay','','none'),(1169,'','default','Resize','','7.59'),(1170,'','default','The directory %directory does not exist.','','none'),(1171,'','default','Defines a file field type.','','none'),(1172,'','default','Show only items where','','7.34'),(1173,'','default','No comments available.','','7.34'),(1174,'','default','ok','','none'),(1175,'','default','Rebuild permissions','','7.59'),(1176,'','default','@type: updated %title.','','none'),(1177,'','default','@type: added %title.','','none'),(1178,'','default','Error saving user account.','','none'),(1179,'','default','Action %action has been unassigned.','','none'),(1180,'','default','Add role','','none'),(1181,'','default','You must specify a valid role name.','','none'),(1182,'','default','The role has been added.','','none'),(1183,'','default','Path to custom logo','','none'),(1184,'','default','taxonomy','','7.34'),(1185,'','default','Updated term %term.','','none'),(1186,'','default','- Please choose -','','none'),(1187,'','default','- None selected -','','none'),(1188,'','default','Parser','','none'),(1189,'','default','Discard items older than','','none'),(1190,'','default','@site_name - aggregated feeds in category @title','','none'),(1191,'','default','@site_name - aggregated feeds','','none'),(1192,'','default','@site_name aggregator','','none'),(1193,'','default','!title feed','','none'),(1194,'','default','Aggregator','','none'),(1195,'','default','The feed from %site seems to be broken, because of error \"%error\".','','none'),(1196,'','default','There is no new syndicated content from %site.','','none'),(1197,'','default','There is new syndicated content from %site.','','none'),(1198,'','default','The feed from %site seems to be broken, due to \"%error\".','','none'),(1199,'','default','Feed aggregator','','none'),(1200,'','default','Aggregates syndicated content (RSS, RDF, and Atom feeds).','','none'),(1201,'','default','Alias','','none'),(1202,'','default','Account settings','','7.59'),(1203,'','default','The content type %name has been deleted.','','none'),(1204,'','default','Deleted content type %name.','','none'),(1205,'','default','Enter your keywords','','none'),(1206,'','default','Clean URLs','','7.59'),(1207,'','default','My account','','7.59'),(1208,'','default','Number of topics','','none'),(1209,'','default','Active forum topics','','7.59'),(1210,'','default','Read the latest forum topics.','','none'),(1211,'','default','HTTP authentication','','none'),(1212,'','default','User activity','','none'),(1213,'','default','The category the new field should be part of. Categories are used to group fields logically. An example category is \"Personal information\".','','none'),(1214,'','default','The user must enter a value.','','none'),(1215,'','default','Visible in user registration form.','','none'),(1216,'','default','New feed items are automatically filed in the checked categories.','','none'),(1217,'','default','A user is considered online for this long after they have last viewed a page.','','none'),(1218,'','default','Maximum number of currently online users to display.','','none'),(1219,'','default','ajax','','none'),(1220,'','default','Context','','none'),(1221,'','default','Book navigation','','none'),(1222,'','default','Taxonomy vocabulary','','7.59'),(1223,'','default','1 year','','none'),(1224,'','default','@count years','','none'),(1225,'','default','1 week','','none'),(1226,'','default','@count weeks','','none'),(1227,'','default','1 min','','none'),(1228,'','default','@count min','','7.59'),(1229,'','default','1 sec','','none'),(1230,'','default','@count sec','','7.34'),(1231,'','default','-n/a-','','none'),(1232,'','default','Found the @submit button','','none'),(1233,'','default','Failed to set field @name to @value','','none'),(1234,'','default','No temporary directories to remove.','','none'),(1235,'','default','Run tests against Drupal core and your active modules. These tests help assure that your site code is working as designed.','','none'),(1236,'','default','Palestinian Territory','','7.34'),(1237,'','default','Vatican','','7.34'),(1238,'','default','Bulgarian','','none'),(1239,'','default','Croatian','','none'),(1240,'','default','Czech','','none'),(1241,'','default','Danish','','none'),(1242,'','default','Dutch','','none'),(1243,'','default','Finnish','','none'),(1244,'','default','German','','none'),(1245,'','default','Greek','','none'),(1246,'','default','Hebrew','','none'),(1247,'','default','Hungarian','','none'),(1248,'','default','Indonesian','','none'),(1249,'','default','Polish','','none'),(1250,'','default','Romanian','','none'),(1251,'','default','Russian','','none'),(1252,'','default','Slovak','','none'),(1253,'','default','Swedish','','none'),(1254,'','default','Turkish','','none'),(1255,'','default','Featured','','7.59'),(1256,'','default','Send message','','none'),(1257,'','default','Machine name','','7.59'),(1258,'','default','Allow Upscaling','','none'),(1259,'','default','Let scale make images larger than their original size','','none'),(1260,'','default','Rotation angle','','none'),(1261,'','default','The number of degrees the image should be rotated. Positive numbers are clockwise, negative are counter-clockwise.','','none'),(1262,'','default','Randomize the rotation angle for each image. The angle specified above is used as a maximum.','','none'),(1263,'','default','Print','','none'),(1264,'','default','The file could not be created.','','7.34'),(1265,'','default','Locked','','none'),(1266,'','default','Password reset instructions mailed to %name at %email.','','none'),(1267,'','default','The e-mail address %mail is not valid.','','none'),(1268,'','default','Account','','7.31'),(1269,'','default','authenticated user','','7.34'),(1270,'','default','Any','','none'),(1271,'','default','E-mail addresses to notify when updates are available','','none'),(1272,'','default','Whenever your site checks for available updates and finds new releases, it can notify a list of users via e-mail. Put each address on a separate line. If blank, no e-mails will be sent.','','none'),(1273,'','default','Check for updates','','none'),(1274,'','default','All newer versions','','none'),(1275,'','default','Only security updates','','none'),(1276,'','default','%email is not a valid e-mail address.','','none'),(1277,'','default','%emails are not valid e-mail addresses.','','none'),(1278,'','default','No update data available','','7.34'),(1279,'','default','Not secure!','','7.59'),(1280,'','default','Revoked!','','none'),(1281,'','default','Unsupported release','','none'),(1282,'','default','Can not determine status','','none'),(1283,'','default','(version @version available)','','7.59'),(1284,'','default','See the available updates page for more information:','','none'),(1285,'','default','New release(s) available for !site_name','','none'),(1286,'','default','There is a security update available for your version of Drupal. To ensure the security of your server, you should update immediately!','','7.59'),(1287,'','default','Your version of Drupal has been revoked and is no longer available for download. Upgrading is strongly recommended!','','none'),(1288,'','default','The installed version of at least one of your modules or themes has been revoked and is no longer available for download. Upgrading or disabling is strongly recommended!','','none'),(1289,'','default','Your version of Drupal is no longer supported. Upgrading is strongly recommended!','','none'),(1290,'','default','There are updates available for your version of Drupal. To ensure the proper functioning of your site, you should update as soon as possible.','','none'),(1291,'','default','See the <a href=\"@available_updates\">available updates</a> page for more information.','','7.59'),(1292,'','default','Project not secure','','none'),(1293,'','default','This project has been labeled insecure by the Drupal security team, and is no longer available for download. Immediately disabling everything included by this project is strongly recommended!','','none'),(1294,'','default','Project revoked','','none'),(1295,'','default','This project has been revoked, and is no longer available for download. Disabling everything included by this project is strongly recommended!','','none'),(1296,'','default','Project not supported','','none'),(1297,'','default','This project is no longer supported, and is no longer available for download. Disabling everything included by this project is strongly recommended!','','none'),(1298,'','default','No available releases found','','7.34'),(1299,'','default','Release revoked','','none'),(1300,'','default','Your currently installed release has been revoked, and is no longer available for download. Disabling everything included in this release or upgrading is strongly recommended!','','none'),(1301,'','default','Release not supported','','none'),(1302,'','default','Your currently installed release is now unsupported, and is no longer available for download. Disabling everything included in this release or upgrading is strongly recommended!','','none'),(1303,'','default','Invalid info','','none'),(1304,'','default','Security update required!','','none'),(1305,'','default','Not supported!','','none'),(1306,'','default','Recommended version:','','none'),(1307,'','default','Security update:','','none'),(1308,'','default','Latest version:','','none'),(1309,'','default','Development version:','','none'),(1310,'','default','Also available:','','none'),(1311,'','default','Node count','','7.59'),(1312,'','default','Field settings','','none'),(1313,'','default','Skip to main content','','7.59'),(1314,'','default','@title','','7.34'),(1315,'','default','Edit forum','','none'),(1316,'','default','Default order','','7.59'),(1317,'','default','This is the designated forum vocabulary. Some of the normal vocabulary options have been removed.','','none'),(1318,'','default','Leave shadow copy','','none'),(1319,'','default','If you move this topic, you can leave a link in the old forum to the new forum.','','none'),(1320,'','default','Container name','','none'),(1321,'','default','forum container','','none'),(1322,'','default','Created new @type %term.','','none'),(1323,'','default','The @type %term has been updated.','','none'),(1324,'','default','Add new field','','7.34'),(1325,'','default','Containing any of the words','','none'),(1326,'','default','Containing the phrase','','none'),(1327,'','default','Containing none of the words','','none'),(1328,'','default','Only of the type(s)','','none'),(1329,'','default','Content ranking','','none'),(1330,'','default','Keyword relevance','','none'),(1331,'','default','Recently posted','','none'),(1332,'','default','Number of comments','','none'),(1333,'','default','Number of views','','none'),(1334,'','default','Factor','','none'),(1335,'','default','Expand layout to include descriptions.','','none'),(1336,'','default','Hide descriptions','','7.59'),(1337,'','default','Compress layout by hiding descriptions.','','7.59'),(1338,'','default','Or','','none'),(1339,'','default','Color set','','none'),(1340,'','default','Content ID','','none'),(1341,'','default','About','','none'),(1342,'','default','Database host','','none'),(1343,'','default','Maximum link text length','','none'),(1344,'','default','URLs longer than this number of characters will be truncated to prevent long strings that break formatting. The link itself will be retained; just the text portion of the link will be truncated.','','none'),(1345,'','default','Reports','','7.59'),(1346,'','default','Default picture','','7.59'),(1347,'','default','URL of picture to display for users with no custom picture selected. Leave blank for none.','','7.59'),(1348,'','default','If the amount of boxes above isn\'t enough, click here to add more choices.','','none'),(1349,'','default','Toggle display','','none'),(1350,'','default','If you don\'t have direct file access to the server, use this field to upload your logo.','','none'),(1351,'','default','Configuration file','','7.59'),(1352,'','default','Install profile','','none'),(1353,'','default','%percentage of the site has been indexed.','','none'),(1354,'','default','File directory','','none'),(1355,'','default','Default theme','','7.59'),(1356,'','default','Web server','','7.59'),(1357,'','default','There is 1 item left to index.','','none'),(1358,'','default','There are @count items left to index.','','none'),(1359,'','default','The content access permissions have been rebuilt.','','none'),(1360,'','default','sort by @s','','7.34'),(1361,'','default','Sorry, unrecognized username or password. <a href=\"@password\">Have you forgotten your password?</a>','','7.34'),(1362,'','default','Publish content','','none'),(1363,'','default','Stack overflow: too many calls to actions_do(). Aborting to prevent infinite recursion.','','none'),(1364,'','default','Action %action saved.','','none'),(1365,'','default','You may proceed to the <a href=\"@url\">Triggers</a> page to assign these actions to system events.','','none'),(1366,'','default','Manage actions','','7.34'),(1367,'','default','Configure an advanced action','','7.34'),(1368,'','default','Delete an action.','','none'),(1369,'','default','Remove orphans','','none'),(1370,'','default','Triggers','','none'),(1371,'','default','Unassign an action from a trigger.','','none'),(1372,'','default','Choose an advanced action','','none'),(1373,'','default','Action type','','none'),(1374,'','default','Are you sure you want to delete the action %action?','','none'),(1375,'','default','Action %action was deleted','','none'),(1376,'','default','Deleted orphaned action (%action).','','none'),(1377,'','default','Are you sure you want to unassign the action %title?','','none'),(1378,'','default','You can assign it again later if you wish.','','none'),(1379,'','default','unassign','','none'),(1380,'','default','Choose an action','','none'),(1381,'','default','The action you chose is already assigned to that trigger.','','none'),(1382,'','default','When cron runs','','none'),(1383,'','default','The URL to which the user should be redirected. This can be an internal URL like node/1234 or an external URL like http://drupal.org.','','none'),(1384,'','default','When content is viewed by an authenticated user','','none'),(1385,'','default','Display a message to the user','','none'),(1386,'','default','Unpublish comment','','none'),(1387,'','default','Unpublish comment containing keyword(s)','','none'),(1388,'','default','Block current user','','none'),(1389,'','default','Ban IP address of current user','','none'),(1390,'','default','Set @type %title to published.','','none'),(1391,'','default','Set @type %title to unpublished.','','none'),(1392,'','default','Set @type %title to sticky.','','none'),(1393,'','default','Set @type %title to unsticky.','','none'),(1394,'','default','Promoted @type %title to front page.','','none'),(1395,'','default','Removed @type %title from front page.','','none'),(1396,'','default','Saved @type %title','','none'),(1397,'','default','Changed owner of @type %title to uid %name.','','none'),(1398,'','default','After saving a new comment','','none'),(1399,'','default','After saving an updated comment','','none'),(1400,'','default','After deleting a comment','','none'),(1401,'','default','When a comment is being viewed by an authenticated user','','none'),(1402,'','default','Unpublished comment %subject.','','none'),(1403,'','default','After a user has been deleted','','none'),(1404,'','default','After a user has logged in','','none'),(1405,'','default','After a user has logged out','','none'),(1406,'','default','When a user\'s profile is being viewed','','none'),(1407,'','default','Blocked user %name.','','none'),(1408,'','default','Banned IP address %ip','','none'),(1409,'','default','After saving a new term to the database','','none'),(1410,'','default','After saving an updated term to the database','','none'),(1411,'','default','After deleting a term','','none'),(1412,'','default','Enables actions to be fired on certain system events, such as when new content is created.','','none'),(1413,'','default','1 read','','none'),(1414,'','default','@count reads','','none'),(1415,'','default','- Select -','','7.34'),(1416,'','default','Enables the categorization of content.','','none'),(1417,'','default','Path prefix','','none'),(1418,'','default','Delete contact','','none'),(1419,'','default','Auto-reply','','7.59'),(1420,'','default','Optional auto-reply. Leave empty if you do not want to send the user an auto-reply message.','','none'),(1421,'','default','%recipient is an invalid e-mail address.','','none'),(1422,'','default','Lithuanian','','none'),(1423,'','default','Up to date translation','','7.34'),(1424,'','default','Outdated translation','','7.34'),(1425,'','default','Some required modules must be enabled','','none'),(1426,'','default','New posts','','none'),(1427,'; modules/locale/locale.datepicker.js','default','mm/dd/yy','','none'),(1428,'','default','Translate','','7.59'),(1429,'','default','File to import not found.','','none'),(1430,'','default','The translation import failed, because the file %filename could not be read.','','none'),(1431,'','default','The translation file %filename contains an error: \"msgstr\" was expected but not found on line %line.','','none'),(1432,'','default','The translation file %filename contains an error: \"msgid_plural\" was expected but not found on line %line.','','none'),(1433,'','default','The translation file %filename contains a syntax error on line %line.','','none'),(1434,'','default','The translation file %filename contains an error: \"msgid\" is unexpected on line %line.','','none'),(1435,'','default','The translation file %filename contains an error: \"msgstr[]\" is unexpected on line %line.','','none'),(1436,'','default','The translation file %filename contains an error: \"msgstr\" is unexpected on line %line.','','none'),(1437,'','default','The translation file %filename contains an error: there is an unexpected string on line %line.','','none'),(1438,'','default','The translation file %filename ended unexpectedly at line %line.','','none'),(1439,'','default','Save translations','','none'),(1440,'','default','Export template','','none'),(1441,'','default','Create @name','','7.34'),(1442,'','default','The custom menu %title has been deleted.','','none'),(1443,'','default','@type %title has been deleted.','','7.34'),(1444,'','default','Crop','','7.59'),(1445,'','default','Not enabled','','7.59'),(1446,'','default','Instructions to present to the user below this field on the editing form.<br />Allowed HTML tags: @tags','','none'),(1447,'','default','anonymous user','','7.34'),(1448,'','default','@module (<span class=\"admin-disabled\">disabled</span>)','','none'),(1449,'','default','@module (<span class=\"admin-enabled\">enabled</span>)','','none'),(1450,'','default','Web services','','7.59'),(1451,'','default','Save permissions','','none'),(1452,'','default','The e-mail address %email is already taken.','','none'),(1453,'','default','Effect','','none'),(1454,'','default','Error message','','7.59'),(1455,'','default','Original text','','none'),(1456,'','default','Delete content type','','7.34'),(1457,'','default','Change book (update list of parents)','','none'),(1458,'','default','create a new book','','none'),(1459,'','default','edit permissions','','none'),(1460,'','default','edit order and titles','','none'),(1461,'','default','Manage your site\'s book outlines.','','none'),(1462,'','default','For security reasons, your upload has been renamed to %filename.','','none'),(1463,'','default','Installed version','','none'),(1464,'','default','Recommended version','','none'),(1465,'','default','Cron run successfully.','','none'),(1466,'','default','notice','','none'),(1467,'','default','User account','','7.59'),(1468,'','default','File download','','none'),(1469,'','default','Acronym','','none'),(1470,'','default','original','','7.34'),(1471,'','default','Failed to upload the picture image; the %directory directory doesn\'t exist or is not writable.','','none'),(1472,'','default','Dates','','none'),(1473,'','default','The field has been updated.','','none'),(1474,'','default','pixels','','none'),(1475,'','default','1 month','','none'),(1476,'','default','@count months','','none'),(1477,'','default','Save order','','none'),(1478,'','default','done','','none'),(1479,'','default','List, edit, or add user roles.','','7.34'),(1480,'','default','edit role','','none'),(1481,'','default','Custom format','','none'),(1482,'','default','Direction','','7.34'),(1483,'','default','%name: illegal value.','','none'),(1484,'','default','Edit %title','','none'),(1485,'','default','Drupal core','','none'),(1486,'','default','Book navigation block display','','none'),(1487,'','default','Relations','','none'),(1488,'','default','Password field is required.','','none'),(1489,'','default','Confirm password','','7.31'),(1490,'','default','No content available.','','7.34'),(1491,'','default','Administration theme','','none'),(1492,'','default','Thank you for applying for an account. Your account is currently pending approval by the site administrator.<br />In the meantime, a welcome message with further instructions has been sent to your e-mail address.','','none'),(1493,'','default','Congo (Kinshasa)','','7.34'),(1494,'','default','Congo (Brazzaville)','','7.34'),(1495,'','default','Ivory Coast','','7.34'),(1496,'','default','Hong Kong S.A.R., China','','7.34'),(1497,'','default','Isle of Man','','7.34'),(1498,'','default','Montenegro','','7.34'),(1499,'','default','Macao S.A.R., China','','7.34'),(1500,'','default','Saint Pierre and Miquelon','','7.34'),(1501,'','default','Serbia','','7.34'),(1502,'','default','Afar','','none'),(1503,'','default','Somali','','none'),(1504,'','default','Komi','','none'),(1505,'','default','Run cron','','none'),(1506,'','default','Warning message','','7.59'),(1507,'','default','Security warning: Couldn\'t write .htaccess file. Please create a .htaccess file in your %directory directory which contains the following lines: <code>!htaccess</code>','','none'),(1508,'','default','The specified file %file could not be copied, because no file by that name exists. Please check that you supplied the correct filename.','','none'),(1509,'','default','The specified file %file was not copied because it would overwrite itself.','','none'),(1510,'','default','The file %file could not be saved, because it exceeds %maxsize, the maximum allowed size for uploads.','','none'),(1511,'','default','The file %file could not be saved, because the upload did not complete.','','none'),(1512,'','default','The file %file could not be saved. An unknown error has occurred.','','none'),(1513,'','default','The specified file %name could not be uploaded.','','none'),(1514,'','default','The file\'s name is empty. Please give a name to the file.','','none'),(1515,'','default','Only files with the following extensions are allowed: %files-allowed.','','none'),(1516,'','default','The file is %filesize exceeding the maximum file size of %maxsize.','','none'),(1517,'','default','The file is %filesize which would exceed your disk quota of %quota.','','none'),(1518,'','default','Only JPEG, PNG and GIF images are allowed.','','none'),(1519,'','default','The image was resized to fit within the maximum allowed dimensions of %dimensions pixels.','','none'),(1520,'','default','The image is too large; the maximum dimensions are %dimensions pixels.','','none'),(1521,'','default','The image is too small; the minimum dimensions are %dimensions pixels.','','none'),(1522,'','default','The file %path was not deleted, because it does not exist.','','none'),(1523,'','default','Upload error. Could not move uploaded file %file to destination %destination.','','none'),(1524,'','default','Add to book outline','','none'),(1525,'','default','Stark','','none'),(1526,'','default','New set','','none'),(1527,'','default','outdated','','none'),(1528,'','default','<strong>@language_name</strong> (source)','','7.34'),(1529,'','default','add translation','','7.34'),(1530,'','default','Translations of %title','','7.34'),(1531,'','default','Manage tagging, categorization, and classification of your content.','','7.34'),(1532,'','default','Database port','','none'),(1533,'','default','Re-index site','','none'),(1534,'','default','Are you sure you want to re-index the site?','','none'),(1535,'','default','cURL','','none'),(1536,'','default','Pass','','none'),(1537,'','default','Fail','','none'),(1538,'','default','No test results to display.','','none'),(1539,'','default','Save and continue','','none'),(1540,'','default','These options are only necessary for some sites. If you\'re not sure what you should enter here, leave the default settings or check with your hosting provider.','','none'),(1541,'','default','If your database is located on a different server, change this.','','none'),(1542,'','default','If your database server is listening to a non-standard port, enter its number.','','none'),(1543,'','default','Database port must be a number.','','none'),(1544,'','default','Spaces are allowed; punctuation is not allowed except for periods, hyphens, and underscores.','','none'),(1545,'','default','IP address','','none'),(1546,'','default','Maximum height','','none'),(1547,'','default','Maximum width','','none'),(1548,'','default','Timor-Leste','','7.34'),(1549,'','default','Primary tabs','','7.59'),(1550,'','default','Secondary tabs','','7.34'),(1551,'','default','Enable or disable the display of certain page elements.','','none'),(1552,'','default','Add new content','','7.34'),(1553,'','default','Boolean','','7.59'),(1554,'','default','Maximum image resolution','','none'),(1555,'','default','An illegal choice has been detected. Please contact the site administrator.','','none'),(1556,'','default','Illegal choice %choice in !name element.','','none'),(1557,'','default','First sidebar','','7.59'),(1558,'','default','Status report','','7.34'),(1559,'','default','Not writable','','none'),(1560,'','default','Decimal point','','none'),(1561,'','default','Book outline','','none'),(1562,'','default','This will be the top-level page in this book.','','none'),(1563,'','default','Revision information','','7.34'),(1564,'','default','Notify user of new account','','7.31'),(1565,'','default','View comment','','none'),(1566,'','default','Comma','','none'),(1567,'','default','Uses','','none'),(1568,'','default','Path to custom icon','','none'),(1569,'','default','Current user','','none'),(1570,'','default','Digest','','none'),(1571,'','default','You are not authorized to post comments.','','none'),(1572,'','default','The comment you are replying to does not exist.','','none'),(1573,'','default','This discussion is closed: you can\'t post new comments.','','none'),(1574,'','default','You are not authorized to view comments.','','none'),(1575,'','default','Are you sure you want to delete the comment %title?','','none'),(1576,'','default','Any replies to this comment will be lost. This action cannot be undone.','','none'),(1577,'','default','Publish the selected comments','','none'),(1578,'','default','Unpublish the selected comments','','none'),(1579,'','default','Are you sure you want to delete these comments and all their children?','','none'),(1580,'','default','You have to specify a valid author.','','none'),(1581,'','default','The name you used belongs to a registered user.','','none'),(1582,'','default','The e-mail address you specified is not valid.','','none'),(1583,'','default','The URL of your homepage is not valid. Remember that it must be fully qualified, i.e. of the form <code>http://example.com/directory</code>.','','none'),(1584,'','default','(No subject)','','none'),(1585,'','default','Default image','','none'),(1586,'','default','This text will be used by screen readers, search engines, or when the image cannot be loaded.','','7.34'),(1587,'','default','Add feed','','none'),(1588,'','default','List links','','7.59'),(1589,'','default','MIME type','','7.59'),(1590,'','default','File system','','7.59'),(1591,'','default','@name\'s blog','','none'),(1592,'','default','Toolbar','','none'),(1593,'','default','Enter your @s username.','','7.59'),(1594,'','default','Posted in','','none'),(1595,'','default','Comment: unauthorized comment submitted or comment submitted to a closed post %subject.','','none'),(1596,'','default','!name\'s blog','','none'),(1597,'','default','Email:','','none'),(1598,'','default','All languages','','none'),(1599,'','default','Dashboard','','7.59'),(1600,'','default','Search index','','7.31'),(1601,'','default','The size of the file.','','7.59'),(1602,'','default','The MIME type of the file.','','7.59'),(1603,'','default','@type %title has been created.','','7.34'),(1604,'','default','@type %title has been updated.','','7.34'),(1605,'','default','The post could not be saved.','','none'),(1606,'','default','1 character','','none'),(1607,'','default','@count characters','','none'),(1608,'','default','Filter settings','','none'),(1609,'','default','You do not have any administrative items.','','none'),(1610,'','default','One or more problems were detected with your Drupal installation. Check the <a href=\"@status\">status report</a> for more information.','','7.34'),(1611,'','default','Help topics','','none'),(1612,'','default','Help is available on the following items:','','none'),(1613,'','default','No help is available for module %module.','','none'),(1614,'','default','@module administration pages','','none'),(1615,'','default','Translate interface','','7.59'),(1616,'','default','Add language','','7.34'),(1617,'','default','Edit string','','none'),(1618,'','default','Delete string','','none'),(1619,'','default','Are you sure you want to delete the language %name?','','none'),(1620,'','default','The language %locale has been removed.','','none'),(1621,'','default','Are you sure you want to delete the string \"%source\"?','','none'),(1622,'','default','Deleting the string will remove all translations of this string in all languages. This action cannot be undone.','','none'),(1623,'','default','locale','','7.34'),(1624,'','default','AM','','none'),(1625,'','default','PM','','none'),(1626,'','default','PHP extensions','','7.59'),(1627,'','default','Comments per page','','7.34'),(1628,'','default','Multilingual support','','7.59'),(1629,'','default','Enabled, with translation','','7.59'),(1630,'','default','Publish comment','','none'),(1631,'','default','The file could not be uploaded.','','none'),(1632,'','default','The selected image handling toolkit %toolkit can not correctly process %function.','','none'),(1633,'','default','FTP','','none'),(1634,'','default','The directory %file is not protected from modifications and poses a security risk. You must change the directory\'s permissions to be non-writable. ','','none'),(1635,'','default','Collaboration','','none'),(1636,'','default','Administration pages','','none'),(1637,'','default','Currently using !item !version','','none'),(1638,'','default','Created content type %type.','','none'),(1639,'','default','User created with name %name and pass %pass','','none'),(1640,'','default','Created permissions: @perms','','none'),(1641,'','default','Invalid permission %permission.','','none'),(1642,'','default','Username field found.','','none'),(1643,'','default','Password field found.','','none'),(1644,'','default','!method @url returned @status (!length).','','none'),(1645,'','default','Valid HTML found on \"@path\"','','none'),(1646,'','default','Parsed page successfully.','','none'),(1647,'','default','Found the requested form fields at @path','','none'),(1648,'','default','Did not find field by name @name','','none'),(1649,'','default','Found field by id @id','','none'),(1650,'','default','Did not find field by id @id','','none'),(1651,'','default','HTTP response expected !code, actual !curl_code','','none'),(1652,'','default','The website encountered an unexpected error. Please try again later.','','7.59'),(1653,'','default','Tests','','none'),(1654,'','default','Run tests','','none'),(1655,'','default','Clean test environment','','none'),(1656,'','default','Remove tables with the prefix \"simpletest\" and temporary directories that are left over from tests that crashed. This is intended for developers when creating tests.','','none'),(1657,'','default','Clean environment','','none'),(1658,'','default','No tests to display.','','none'),(1659,'','default','@pass, @fail, and @exception','','none'),(1660,'','default','No test(s) selected.','','none'),(1661,'','default','Processing test @num of @max - %test.','','none'),(1662,'','default','@name: @summary','','none'),(1663,'','default','Processed test @num of @max - %test.','','none'),(1664,'','default','1 pass','','none'),(1665,'','default','@count passes','','none'),(1666,'','default','1 fail','','none'),(1667,'','default','@count fails','','none'),(1668,'','default','1 exception','','none'),(1669,'','default','@count exceptions','','none'),(1670,'','default','PHP DOMDocument class','','none'),(1671,'','default','Provides a framework for unit and functional testing.','','none'),(1672,'','default','Main menu','','7.59'),(1673,'','default','Hindi','','none'),(1674,'','default','User %name used one-time login link at time %timestamp.','','none'),(1675,'','default','Created a new user account for <a href=\"@url\">%name</a>. No e-mail has been sent.','','none'),(1676,'','default','Registration successful. You are now logged in.','','none'),(1677,'','default','New user: %name (%email).','','none'),(1678,'','default','Trigger','','none'),(1679,'','default','Add link','','7.34'),(1680,'','default','View comments','','none'),(1681,'','default','Username or e-mail address','','7.59'),(1682,'','default','%name: this field cannot hold more than @count values.','','none'),(1683,'','default','No fields available.','','none'),(1684,'','default','After saving new content','','none'),(1685,'','default','After deleting content','','none'),(1686,'','default','Vertical Tabs','','7.34'),(1687,'','default','Not in book','','none'),(1688,'','default','New book','','none'),(1689,'; modules/node/node.js','default','By @name on @date','','none'),(1690,'; modules/node/node.js','default','By @name','','none'),(1691,'; modules/menu/menu.js','default','Not in menu','','none'),(1692,'; modules/path/path.js','default','Alias: @alias','','none'),(1693,'; modules/path/path.js','default','No alias','','none'),(1694,'','default','User autocomplete','','7.34'),(1695,'','default','Initializing.','','none'),(1696,'','default','An error has occurred.','','none'),(1697,'','default','Please continue to <a href=\"@error_url\">the error page</a>','','none'),(1698,'','default','HTTP POST is required.','','none'),(1699,'','default','Your page will be a part of the selected book.','','none'),(1700,'','default','0 sec','','none'),(1701,'','default','form','','none'),(1702,'','default','alert','','none'),(1703,'','default','emergency','','none'),(1704,'','default','Filter log messages','','none'),(1705,'','default','You must select something to filter by.','','none'),(1706,'; modules/node/node.js','default','New revision','','none'),(1707,'','default','To change the current user password, enter the new password in both fields.','','7.31'),(1708,'','default','You have tried to use a one-time login link that has expired. Please request a new one using the form below.','','none'),(1709,'','default','This login can be used only once.','','none'),(1710,'','default','The translation import of %filename failed.','','none'),(1711,'','default','More choices','','none'),(1712,'','default','Abbreviation','','none'),(1713,'','default','Inserted','','none'),(1714,'','default','Provide a password for the new account in both fields.','','none'),(1715,'','default','(@language)','','none'),(1716,'','default','filter','','7.34'),(1717,'','default','The title of the comment.','','7.59'),(1718,'','default','Comment count','','7.59'),(1719,'','default','The title of the node.','','7.59'),(1720,'','default','The date the node was posted.','','7.59'),(1721,'','default','Poll','','none'),(1722,'','default','Views today','','none'),(1723,'','default','contact','','7.34'),(1724,'','default','Search for either of the two terms with uppercase <strong>OR</strong>. For example, <strong>cats OR dogs</strong>.','','none'),(1725,'','default','PHP filter','','none'),(1726,'','default','Language settings','','7.31'),(1727,'','default','Attempting to re-run cron while it is already running.','','none'),(1728,'','default','Cron run completed.','','none'),(1729,'','default','HTTP request status','','none'),(1730,'','default','Fails','','none'),(1731,'','default','Visitors','','none'),(1732,'','default','The maximum length of the field in characters.','','none'),(1733,'','default','Machine-readable name','','7.34'),(1734,'','default','Already added languages','','none'),(1735,'','default','Recent blog posts','','none'),(1736,'','default','Who\'s new','','7.59'),(1737,'','default','Language name','','none'),(1738,'','default','Edit language','','7.34'),(1739,'','default','list links','','7.34'),(1740,'','default','Edit category','','none'),(1741,'','default','The content type %name has been updated.','','7.34'),(1742,'','default','The content type %name has been added.','','none'),(1743,'','default','Catalan','','none'),(1744,'','default','Contact form','','7.34'),(1745,'','default','Blue Lagoon (default)','','none'),(1746,'','default','The requested page could not be found.','','none'),(1747,'','default','The user account %id does not exist.','','none'),(1748,'','default','Attempted to cancel non-existing user account: %id.','','none'),(1749,'','default','Requirements problem','','none'),(1750,'','default','Database configuration','','none'),(1751,'','default','The type of database your @drupal data will be stored in.','','none'),(1752,'','default','The name of the database your @drupal data will be stored in. It must exist on your server before @drupal can be installed.','','none'),(1753,'','default','If more than one application will be sharing this database, enter a table prefix such as %prefix for your @drupal site here.','','none'),(1754,'','default','Select an installation profile','','none'),(1755,'','default','Choose language','','none'),(1756,'','default','Learn how to install Drupal in other languages','','none'),(1757,'','default','(built-in)','','none'),(1758,'','default','No profiles available','','none'),(1759,'','default','Drupal already installed','','none'),(1760,'','default','<ul><li>To start over, you must empty your existing database.</li><li>To install to a different database, edit the appropriate <em>settings.php</em> file in the <em>sites</em> folder.</li><li>To upgrade an existing installation, proceed to the <a href=\"@base-url/update.php\">update script</a>.</li><li>View your <a href=\"@base-url\">existing site</a>.</li></ul>','','none'),(1761,'','default','Installing @drupal','','none'),(1762,'','default','The installation has encountered an error.','','none'),(1763,'','default','Configure site','','none'),(1764,'','default','@drupal installation complete','','none'),(1765,'','default','Installed %module module.','','none'),(1766,'','default','Choose profile','','none'),(1767,'','default','Verify requirements','','none'),(1768,'','default','Set up database','','none'),(1769,'','default','Set up translations','','none'),(1770,'','default','Install site','','none'),(1771,'','default','Finish translations','','none'),(1772,'','default','Site e-mail address','','none'),(1773,'','default','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.)','','7.59'),(1774,'','default','By default, dates in this site will be displayed in the chosen time zone.','','none'),(1775,'','default','Update notifications','','7.59'),(1776,'','default','Check for updates automatically','','none'),(1777,'','default','Removed orphaned action \'%action\' from database.','','none'),(1778,'','default','Cron run exceeded the time limit and was aborted.','','none'),(1779,'','default','1 byte','','none'),(1780,'','default','@count bytes','','none'),(1781,'','default','!name cannot be longer than %max characters but is currently %length characters long.','','none'),(1782,'','default','Illegal choice %choice in %name element.','','none'),(1783,'','default','GD2 image manipulation toolkit','','7.34'),(1784,'','default','The GD toolkit is installed and working properly.','','none'),(1785,'','default','Define the image quality for JPEG manipulations. Ranges from 0 to 100. Higher values mean better image quality but bigger files.','','none'),(1786,'','default','The GD image toolkit requires that the GD module for PHP be installed and configured properly. For more information see <a href=\"@url\">PHP\'s image documentation</a>.','','none'),(1787,'','default','JPEG quality must be a number between 0 and 100.','','none'),(1788,'','default','Right to left','','7.34'),(1789,'','default','Left to right','','7.34'),(1790,'','default','Predefined language','','none'),(1791,'','default','Custom language','','none'),(1792,'','default','Add custom language','','none'),(1793,'','default','Save language','','7.34'),(1794,'','default','<a href=\"@rfc4646\">RFC 4646</a> compliant language identifier. Language codes typically use a country code, and optionally, a script or regional variant name. <em>Examples: \"en\", \"en-US\" and \"zh-Hant\".</em>','','none'),(1795,'','default','Language name in English','','7.34'),(1796,'','default','Name of the language in English. Will be available for translation in all languages.','','7.34'),(1797,'','default','Native language name','','7.34'),(1798,'','default','Name of the language in the language being added.','','7.34'),(1799,'','default','Language domain','','7.34'),(1800,'','default','Direction that text in this language is presented.','','7.34'),(1801,'','default','The language %language (%code) already exists.','','none'),(1802,'','default','Invalid language code.','','none'),(1803,'','default','The language %language has been created and can now be used. More information is available on the <a href=\"@locale-help\">help screen</a>.','','none'),(1804,'','default','Domain and path prefix values should not be set at the same time.','','none'),(1805,'','default','The domain (%domain) is already tied to a language (%language).','','none'),(1806,'','default','Only the default language can have both the domain and prefix empty.','','none'),(1807,'','default','The prefix (%prefix) is already tied to a language (%language).','','none'),(1808,'','default','The English language cannot be deleted.','','none'),(1809,'','default','The default language cannot be deleted.','','none'),(1810,'','default','Deleting a language will remove all interface translations associated with it, and posts in this language will be set to be language neutral. This action cannot be undone.','','none'),(1811,'','default','Language negotiation configuration saved.','','none'),(1812,'','default','English (built-in)','','none'),(1813,'','default','String contains','','none'),(1814,'','default','Leave blank to show all strings. The search is case sensitive.','','none'),(1815,'','default','English (provided by Drupal)','','none'),(1816,'','default','Search in','','none'),(1817,'','default','Both translated and untranslated strings','','none'),(1818,'','default','Only translated strings','','none'),(1819,'','default','Only untranslated strings','','none'),(1820,'','default','Limit search to','','none'),(1821,'','default','All text groups','','none'),(1822,'','default','Languages not yet added','','none'),(1823,'','default','Import translation','','none'),(1824,'','default','A Gettext Portable Object (<em>.po</em>) file.','','none'),(1825,'','default','Import into','','none'),(1826,'','default','Choose the language you want to add strings into. If you choose a language which is not yet set up, it will be added.','','none'),(1827,'','default','Text group','','none'),(1828,'','default','Imported translations will be added to this text group.','','none'),(1829,'','default','The language %language has been created.','','none'),(1830,'','default','Export translation','','none'),(1831,'','default','Select the language to export in Gettext Portable Object (<em>.po</em>) format.','','none'),(1832,'','default','Generate a Gettext Portable Object Template (<em>.pot</em>) file with all strings from the Drupal locale database.','','none'),(1833,'','default','String not found.','','none'),(1834,'','default','The submitted string contains disallowed HTML: %string','','none'),(1835,'','default','The string has been saved.','','none'),(1836,'','default','The string has been removed.','','none'),(1837,'','default','The language selected for import is not supported.','','none'),(1838,'','default','The translation file %filename appears to have a missing or malformed header.','','none'),(1839,'','default','The translation was successfully imported. There are %number newly created translated strings, %update strings were updated and %delete strings were removed.','','none'),(1840,'','default','Importing interface translations','','none'),(1841,'','default','Starting import','','none'),(1842,'','default','Error importing interface translations','','none'),(1843,'','default','Attempted submission of a translation string with disallowed HTML: %string','','none'),(1844,'','default','The %language language (%code) has been created.','','none'),(1845,'','default','Imported %file into %locale: %number new strings added, %update updated and %delete removed.','','none'),(1846,'','default','Exported %locale translation file: %filename.','','none'),(1847,'','default','Exported translation file: %filename.','','none'),(1848,'','default','Updated JavaScript translation file for the language %language.','','none'),(1849,'','default','Created JavaScript translation file for the language %language.','','none'),(1850,'','default','Removed JavaScript translation file for the language %language, because no translations currently exist for that language.','','none'),(1851,'','default','An error occurred during creation of the JavaScript translation file for the language %language.','','none'),(1852,'','default','One translation string was skipped because it contains disallowed HTML.','','none'),(1853,'','default','@count translation strings were skipped because they contain disallowed HTML.','','none'),(1854,'','default','One translation file imported for the newly installed modules.','','none'),(1855,'','default','@count translation files imported for the newly installed modules.','','none'),(1856,'','default','One translation file imported for the enabled modules.','','none'),(1857,'','default','@count translation files imported for the enabled modules.','','none'),(1858,'','default','Abkhazian','','none'),(1859,'','default','Avestan','','none'),(1860,'','default','Afrikaans','','none'),(1861,'','default','Akan','','none'),(1862,'','default','Amharic','','none'),(1863,'','default','Assamese','','none'),(1864,'','default','Avar','','none'),(1865,'','default','Aymara','','none'),(1866,'','default','Azerbaijani','','none'),(1867,'','default','Bashkir','','none'),(1868,'','default','Belarusian','','none'),(1869,'','default','Bihari','','none'),(1870,'','default','Bislama','','none'),(1871,'','default','Bambara','','none'),(1872,'','default','Bengali','','none'),(1873,'','default','Tibetan','','none'),(1874,'','default','Breton','','none'),(1875,'','default','Bosnian','','none'),(1876,'','default','Chechen','','none'),(1877,'','default','Chamorro','','none'),(1878,'','default','Corsican','','none'),(1879,'','default','Cree','','none'),(1880,'','default','Old Slavonic','','none'),(1881,'','default','Chuvash','','none'),(1882,'','default','Welsh','','none'),(1883,'','default','Maldivian','','none'),(1884,'','default','Bhutani','','none'),(1885,'','default','Ewe','','none'),(1886,'','default','Esperanto','','none'),(1887,'','default','Estonian','','none'),(1888,'','default','Basque','','none'),(1889,'','default','Persian','','none'),(1890,'','default','Fulah','','none'),(1891,'','default','Faeroese','','none'),(1892,'','default','Frisian','','none'),(1893,'','default','Irish','','none'),(1894,'','default','Scots Gaelic','','none'),(1895,'','default','Galician','','none'),(1896,'','default','Guarani','','none'),(1897,'','default','Gujarati','','none'),(1898,'','default','Manx','','none'),(1899,'','default','Hausa','','none'),(1900,'','default','Hiri Motu','','none'),(1901,'','default','Armenian','','none'),(1902,'','default','Herero','','none'),(1903,'','default','Interlingua','','none'),(1904,'','default','Interlingue','','none'),(1905,'','default','Igbo','','none'),(1906,'','default','Inupiak','','none'),(1907,'','default','Icelandic','','none'),(1908,'','default','Inuktitut','','none'),(1909,'','default','Javanese','','none'),(1910,'','default','Georgian','','none'),(1911,'','default','Kongo','','none'),(1912,'','default','Kikuyu','','none'),(1913,'','default','Kwanyama','','none'),(1914,'','default','Kazakh','','none'),(1915,'','default','Greenlandic','','none'),(1916,'','default','Cambodian','','none'),(1917,'','default','Kannada','','none'),(1918,'','default','Kanuri','','none'),(1919,'','default','Kashmiri','','none'),(1920,'','default','Kurdish','','none'),(1921,'','default','Cornish','','none'),(1922,'','default','Latin','','none'),(1923,'','default','Luxembourgish','','none'),(1924,'','default','Luganda','','none'),(1925,'','default','Lingala','','none'),(1926,'','default','Laothian','','none'),(1927,'','default','Latvian','','none'),(1928,'','default','Malagasy','','none'),(1929,'','default','Marshallese','','none'),(1930,'','default','Macedonian','','none'),(1931,'','default','Malayalam','','none'),(1932,'','default','Mongolian','','none'),(1933,'','default','Moldavian','','none'),(1934,'','default','Marathi','','none'),(1935,'','default','Malay','','none'),(1936,'','default','Maltese','','none'),(1937,'','default','Burmese','','none'),(1938,'','default','North Ndebele','','none'),(1939,'','default','Nepali','','none'),(1940,'','default','Ndonga','','none'),(1941,'','default','Norwegian Bokmål','','none'),(1942,'','default','Norwegian Nynorsk','','none'),(1943,'','default','South Ndebele','','none'),(1944,'','default','Chichewa','','none'),(1945,'','default','Occitan','','none'),(1946,'','default','Oromo','','none'),(1947,'','default','Oriya','','none'),(1948,'','default','Ossetian','','none'),(1949,'','default','Punjabi','','none'),(1950,'','default','Pali','','none'),(1951,'','default','Pashto','','none'),(1952,'','default','Portuguese, Portugal','','none'),(1953,'','default','Portuguese, Brazil','','none'),(1954,'','default','Quechua','','none'),(1955,'','default','Rhaeto-Romance','','none'),(1956,'','default','Kirundi','','none'),(1957,'','default','Kinyarwanda','','none'),(1958,'','default','Sanskrit','','none'),(1959,'','default','Sardinian','','none'),(1960,'','default','Sindhi','','none'),(1961,'','default','Northern Sami','','none'),(1962,'','default','Sango','','none'),(1963,'','default','Serbo-Croatian','','none'),(1964,'','default','Sinhala','','none'),(1965,'','default','Slovenian','','none'),(1966,'','default','Samoan','','none'),(1967,'','default','Shona','','none'),(1968,'','default','Albanian','','none'),(1969,'','default','Serbian','','none'),(1970,'','default','Siswati','','none'),(1971,'','default','Sesotho','','none'),(1972,'','default','Sudanese','','none'),(1973,'','default','Swahili','','none'),(1974,'','default','Tamil','','none'),(1975,'','default','Telugu','','none'),(1976,'','default','Tajik','','none'),(1977,'','default','Thai','','none'),(1978,'','default','Tigrinya','','none'),(1979,'','default','Turkmen','','none'),(1980,'','default','Tagalog','','none'),(1981,'','default','Setswana','','none'),(1982,'','default','Tsonga','','none'),(1983,'','default','Tatar','','none'),(1984,'','default','Twi','','none'),(1985,'','default','Tahitian','','none'),(1986,'','default','Ukrainian','','none'),(1987,'','default','Urdu','','none'),(1988,'','default','Uzbek','','none'),(1989,'','default','Venda','','none'),(1990,'','default','Vietnamese','','none'),(1991,'','default','Wolof','','none'),(1992,'','default','Xhosa','','none'),(1993,'','default','Yiddish','','none'),(1994,'','default','Yoruba','','none'),(1995,'','default','Zhuang','','none'),(1996,'','default','Chinese, Simplified','','none'),(1997,'','default','Chinese, Traditional','','none'),(1998,'','default','Zulu','','none'),(1999,'','default','Error sending e-mail (from %from to %to).','','none'),(2000,'','default','sort ascending','','7.34'),(2001,'','default','sort descending','','7.34'),(2002,'','default','Operations on Unicode strings are emulated on a best-effort basis. Install the <a href=\"@url\">PHP mbstring extension</a> for improved Unicode support.','','none'),(2003,'','default','Multibyte string function overloading in PHP is active and must be disabled. Check the php.ini <em>mbstring.func_overload</em> setting. Please refer to the <a href=\"@url\">PHP mbstring documentation</a> for more information.','','none'),(2004,'','default','Multibyte string input conversion in PHP is active and must be disabled. Check the php.ini <em>mbstring.encoding_translation</em> setting. Please refer to the <a href=\"@url\">PHP mbstring documentation</a> for more information.','','none'),(2005,'','default','Multibyte string input conversion in PHP is active and must be disabled. Check the php.ini <em>mbstring.http_input</em> setting. Please refer to the <a href=\"@url\">PHP mbstring documentation</a> for more information.','','none'),(2006,'','default','Multibyte string output conversion in PHP is active and must be disabled. Check the php.ini <em>mbstring.http_output</em> setting. Please refer to the <a href=\"@url\">PHP mbstring documentation</a> for more information.','','none'),(2007,'','default','Standard PHP','','7.59'),(2008,'','default','PHP Mbstring Extension','','7.59'),(2009,'','default','Unicode library','','7.59'),(2010,'','default','Could not convert XML encoding %s to UTF-8.','','none'),(2011,'','default','Unsupported encoding %s. Please install iconv, GNU recode or mbstring for PHP.','','none'),(2012,'','default','Parse error. Not well formed','','none'),(2013,'','default','Parse error. Request not well formed.','','none'),(2014,'','default','Server error. Invalid XML-RPC. Request must be a methodCall.','','none'),(2015,'','default','Server error. Requested method @methodname not specified.','','none'),(2016,'','default','Server error. Wrong number of method parameters.','','none'),(2017,'','default','Server error. Invalid method parameters.','','none'),(2018,'','default','Server error. Requested function @method does not exist.','','none'),(2019,'','default','Invalid syntax for system.multicall.','','none'),(2020,'','default','Recursive calls to system.multicall are forbidden.','','none'),(2021,'','default','Server error. Requested method @methodname signature not specified.','','none'),(2022,'','default','The name of the feed (or the name of the website providing the feed).','','none'),(2023,'','default','Categorize news items','','none'),(2024,'','default','Are you sure you want to remove all items from the feed %feed?','','none'),(2025,'','default','checkboxes','','none'),(2026,'','default','multiple selector','','none'),(2027,'','default','Thousands of sites (particularly news sites and blogs) publish their latest headlines and posts in feeds, using a number of standardized XML-based formats. Formats supported by the aggregator include <a href=\"@rss\">RSS</a>, <a href=\"@rdf\">RDF</a>, and <a href=\"@atom\">Atom</a>.','','none'),(2028,'','default','Current feeds are listed below, and <a href=\"@addfeed\">new feeds may be added</a>. For each feed or feed category, the <em>latest items</em> block may be enabled at the <a href=\"@block\">blocks administration page</a>.','','none'),(2029,'','default','Add a feed in RSS, RDF or Atom format. A feed may only have one entry.','','none'),(2030,'','default','Categories allow feed items from different feeds to be grouped together. For example, several sport-related feeds may belong to a category named <em>Sports</em>. Feed items may be grouped automatically (by selecting a category when creating or editing a feed) or manually (via the <em>Categorize</em> page available from feed item listings). Each category provides its own feed page and block.','','none'),(2031,'','default','Configure which content your site aggregates from other sites, how often it polls them, and how they\'re categorized.','','none'),(2032,'','default','Update items','','none'),(2033,'','default','Edit feed','','none'),(2034,'','default','No blocks in this region','','7.34'),(2035,'','default','The block %info was assigned to the invalid region %region and has been disabled.','','none'),(2036,'; modules/block/block.js','default','The changes to these blocks will not be saved until the <em>Save blocks</em> button is clicked.','','none'),(2037,'','default','Post new blog entry.','','none'),(2038,'','default','You are not allowed to post a new blog entry.','','none'),(2039,'','default','You have not created any blog entries.','','none'),(2040,'','default','!author has not created any blog entries.','','none'),(2041,'','default','No blog entries have been created.','','none'),(2042,'','default','Blog entry','','none'),(2043,'','default','View recent blog entries','','none'),(2044,'','default','Read !username\'s latest blog entries.','','none'),(2045,'','default','!username\'s blog','','none'),(2046,'','default','Read the latest blog entries.','','none'),(2047,'','default','The content type for the %add-child link must be one of those selected as an allowed book outline type.','','none'),(2048,'','default','Save book pages','','none'),(2049,'','default','This book has been modified by another user, the changes could not be saved.','','none'),(2050,'','default','Title changed from %original to %current.','','none'),(2051,'','default','Updated book %title.','','none'),(2052,'','default','book: updated %title.','','none'),(2053,'','default','Update book outline','','none'),(2054,'','default','Remove from book outline','','none'),(2055,'','default','No changes were made','','none'),(2056,'','default','The post has been added to the selected book. You may now position it relative to other pages.','','none'),(2057,'','default','The book outline has been updated.','','none'),(2058,'','default','There was an error adding the post to the book.','','none'),(2059,'','default','%title has associated child pages, which will be relocated automatically to maintain their connection to the book. To recreate the hierarchy (as it was before removing this page), %title may be added again using the Outline tab, and each of its former child pages will need to be relocated manually.','','none'),(2060,'','default','%title may be added to hierarchy again using the Outline tab.','','none'),(2061,'','default','Are you sure you want to remove %title from the book hierarchy?','','none'),(2062,'','default','The post has been removed from the book.','','none'),(2063,'','default','Show a printer-friendly version of this book page and its sub-pages.','','none'),(2064,'','default','Show block on all pages','','none'),(2065,'','default','Show block only on book pages','','none'),(2066,'','default','If <em>Show block on all pages</em> is selected, the block will contain the automatically generated menus for all of the site\'s books. If <em>Show block only on book pages</em> is selected, the block will contain only the one menu corresponding to the current page\'s book. In this case, if the current page is not in a book, no block will be displayed. The <em>Page specific visibility settings</em> or other visibility settings can be used in addition to selectively display this block.','','none'),(2067,'','default','This is the top-level page in this book.','','none'),(2068,'','default','No book selected.','','none'),(2069,'','default','The parent page in the book. The maximum depth for a book and all child pages is !maxdepth. Some pages in the selected book may not be available as parents if selecting them would exceed this limit.','','none'),(2070,'','default','%title is part of a book outline, and has associated child pages. If you proceed with deletion, the child pages will be relocated automatically.','','none'),(2071,'','default','Re-order book pages and change titles','','none'),(2072,'','default','Book page','','none'),(2073,'','default','Base color','','none'),(2074,'','default','Header top','','none'),(2075,'','default','Header bottom','','none'),(2076,'','default','There is not enough memory available to PHP to change this theme\'s color scheme. You need at least %size more. Check the <a href=\"@url\">PHP documentation</a> for more information.','','none'),(2077,'','default','Delete the selected comments','','none'),(2078,'','default','Allows users to comment on and discuss published content.','','none'),(2079,'','default','Example: \'website feedback\' or \'product information\'.','','none'),(2080,'','default','When listing categories, those with lighter (smaller) weights get listed before categories with heavier (larger) weights. Categories with equal weights are sorted alphabetically.','','none'),(2081,'','default','The contact form has not been configured. <a href=\"@add\">Add one or more categories</a> to the form.','','none'),(2082,'','default','Personal contact form','','none'),(2083,'','default','Create a system contact form and set up categories for the form to use.','','7.34'),(2084,'','default','Edit contact category','','none'),(2085,'','default','Enables the use of both personal and site-wide contact forms.','','none'),(2086,'','default','Database logging','','none'),(2087,'','default','View events that have recently been logged.','','7.34'),(2088,'','default','Top \'page not found\' errors','','7.34'),(2089,'','default','View \'page not found\' errors (404s).','','7.34'),(2090,'','default','Top \'access denied\' errors','','7.34'),(2091,'','default','View \'access denied\' errors (403s).','','7.34'),(2092,'','default','Logs and records system events to the database.','','none'),(2093,'','default','No roles may use this format','','none'),(2094,'','default','Allowed HTML tags: @tags','','7.34'),(2095,'','default','Anchors are used to make links to other pages.','','none'),(2096,'','default','By default line break tags are automatically added, so use this tag to add additional ones. Use of this tag is different because it is not used with an open/close pair like all the others. Use the extra \" /\" inside the tag to maintain XHTML 1.0 compatibility','','none'),(2097,'','default','Text with <br />line break','','none'),(2098,'','default','By default paragraph tags are automatically added, so use this tag to add additional ones.','','none'),(2099,'','default','Paragraph one.','','none'),(2100,'','default','Paragraph two.','','none'),(2101,'','default','Strong','','7.31'),(2102,'','default','Emphasized','','none'),(2103,'','default','Cited','','none'),(2104,'','default','Coded text used to show programming source code','','none'),(2105,'','default','Coded','','none'),(2106,'','default','Bolded','','none'),(2107,'','default','Italicized','','none'),(2108,'','default','Superscripted','','none'),(2109,'','default','<sup>Super</sup>scripted','','none'),(2110,'','default','Subscripted','','none'),(2111,'','default','<sub>Sub</sub>scripted','','none'),(2112,'','default','<abbr title=\"Abbreviation\">Abbrev.</abbr>','','none'),(2113,'','default','<acronym title=\"Three-Letter Acronym\">TLA</acronym>','','none'),(2114,'','default','Block quoted','','none'),(2115,'','default','Quoted inline','','none'),(2116,'','default','Table header','','none'),(2117,'','default','Table cell','','none'),(2118,'','default','Ordered list - use the &lt;li&gt; to begin each list item','','none'),(2119,'','default','First item','','none'),(2120,'','default','Second item','','none'),(2121,'','default','Unordered list - use the &lt;li&gt; to begin each list item','','none'),(2122,'','default','Definition lists are similar to other HTML lists. &lt;dl&gt; begins the definition list, &lt;dt&gt; begins the definition term and &lt;dd&gt; begins the definition description.','','none'),(2123,'','default','First term','','none'),(2124,'','default','First definition','','none'),(2125,'','default','Second term','','none'),(2126,'','default','Second definition','','none'),(2127,'','default','Subtitle three','','none'),(2128,'','default','Subtitle four','','none'),(2129,'','default','Subtitle five','','none'),(2130,'','default','Subtitle six','','none'),(2131,'','default','Tag Description','','none'),(2132,'','default','You Type','','none'),(2133,'','default','You Get','','none'),(2134,'','default','No help provided for tag %tag.','','none'),(2135,'','default','Ampersand','','none'),(2136,'','default','Quotation mark','','none'),(2137,'','default','Character Description','','none'),(2138,'','default','Lines and paragraphs break automatically.','','7.34'),(2139,'','default','Lines and paragraphs are automatically recognized. The &lt;br /&gt; line break, &lt;p&gt; paragraph and &lt;/p&gt; close paragraph tags are inserted automatically. If paragraphs are not recognized simply add a couple blank lines.','','none'),(2140,'','default','Web page addresses and e-mail addresses turn into links automatically.','','7.34'),(2141,'','default','Configure how content input by users is filtered, including allowed HTML tags. Also allows enabling of module-provided filters.','','7.59'),(2142,'','default','Compose tips','','7.59'),(2143,'','default','Short but meaningful name for this collection of threaded discussions.','','none'),(2144,'','default','Description and guidelines for discussions within this forum.','','none'),(2145,'','default','Forums are displayed in ascending order by weight (forums with equal weights are displayed alphabetically).','','none'),(2146,'','default','Short but meaningful name for this collection of related forums.','','none'),(2147,'','default','Description and guidelines for forums within this container.','','none'),(2148,'','default','Containers are displayed in ascending order by weight (containers with equal weights are displayed alphabetically).','','none'),(2149,'','default','Deleting a forum or container will also delete its sub-forums, if any. To delete posts in this forum, visit <a href=\"@content\">content administration</a> first. This action cannot be undone.','','none'),(2150,'','default','Default number of forum topics displayed per page.','','7.59'),(2151,'','default','Default display order for topics.','','7.59'),(2152,'','default','Containers are usually placed at the top (root) level, but may also be placed inside another container or forum.','','none'),(2153,'','default','Forums may be placed at the top (root) level, or inside another container or forum.','','none'),(2154,'','default','For more information, see the online handbook entry for <a href=\"@forum\">Forum module</a>.','','none'),(2155,'','default','Forum topic','','7.59'),(2156,'','default','You are not allowed to post new content in the forum.','','none'),(2157,'','default','Manages the display of online help.','','none'),(2158,'','default','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.','','none'),(2159,'','default','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>.','','none'),(2160,'','default','This page exports the translated strings used by your site. An export file may be in Gettext Portable Object (<em>.po</em>) form, which includes both the original string and the translation (used to share translations with others), or in Gettext Portable Object Template (<em>.pot</em>) form, which includes the original strings only (used to create new translations with a Gettext translation editor).','','none'),(2161,'','default','Built-in interface','','none'),(2162,'','default','This account\'s default language for e-mails, and preferred language for site presentation.','','7.59'),(2163,'','default','This account\'s default language for e-mails.','','none'),(2164,'','default','A path alias set for a specific language will always be used when displaying this page in that language, and takes precedence over path aliases set for <em>All languages</em>.','','none'),(2165,'','default','Enable multilingual support for this content type. If enabled, a language selection field will be added to the editing form, allowing you to select from one of the <a href=\"!languages\">enabled languages</a>. If disabled, new posts are saved with the default language. Existing content will not be affected by changing this option.','','7.59'),(2166,'','default','Configure languages for content and the user interface.','','7.59'),(2167,'','default','Translate the built in interface and optionally other text.','','7.59'),(2168,'','default','Adds language handling functionality and enables the translation of the user interface to languages other than English.','','none'),(2169,'','default','Submission form settings','','7.34'),(2170,'','default','This content type does not have a title field.','','none'),(2171,'','default','The machine-readable name must contain only lowercase letters, numbers, and underscores.','','none'),(2172,'','default','The human-readable name %name is already taken.','','none'),(2173,'','default','Are you sure you want to delete the content type %type?','','none'),(2174,'','default','Added content type %name.','','none'),(2175,'','default','Changed the content type of 1 post from %old-type to %type.','','none'),(2176,'','default','Changed the content type of @count posts from %old-type to %type.','','none'),(2177,'','default','Are you sure you want to rebuild the permissions on site content?','','none'),(2178,'','default','This action rebuilds all permissions on site content, and may be a lengthy process. This action cannot be undone.','','none'),(2179,'','default','language','','7.34'),(2180,'','default','An error occurred and processing did not complete.','','none'),(2181,'','default','The trimmed version of your post shows what your post looks like when promoted to the main page or when exported for syndication.<span class=\"no-js\"> You can insert the delimiter \"&lt;!--break--&gt;\" (without the quotes) to fine-tune where your post gets split.</span>','','none'),(2182,'','default','Copy of the revision from %date.','','none'),(2183,'','default','@type %title has been reverted back to the revision from %revision-date.','','none'),(2184,'','default','Revision from %revision-date of @type %title has been deleted.','','none'),(2185,'','default','@type: reverted %title revision %revision.','','none'),(2186,'','default','The content access permissions need to be rebuilt.','','none'),(2187,'','default','<strong>Configure your website</strong> Once logged in, visit the <a href=\"@admin\">administration section</a>, where you can <a href=\"@config\">customize and configure</a> all aspects of your website.','','none'),(2188,'','default','<strong>Enable additional functionality</strong> Next, visit the <a href=\"@modules\">module list</a> and enable features which suit your specific needs. You can find additional modules in the <a href=\"@download_modules\">Drupal modules download section</a>.','','none'),(2189,'','default','<strong>Customize your website design</strong> To change the \"look and feel\" of your website, visit the <a href=\"@themes\">themes section</a>. You may choose from one of the included themes or download additional themes from the <a href=\"@download_themes\">Drupal themes download section</a>.','','none'),(2190,'','default','Rebuilding content access permissions','','none'),(2191,'','default','Content permissions have been rebuilt.','','none'),(2192,'','default','The content access permissions have not been properly rebuilt.','','none'),(2193,'','default','Add content type','','7.34'),(2194,'','default','Revert to earlier revision','','none'),(2195,'','default','Delete earlier revision','','none'),(2196,'','default','Allows content to be submitted to the site and displayed on pages.','','none'),(2197,'','default','To use OpenID you must first establish an identity on a public or private OpenID server. If you do not have an OpenID and would like one, look into one of the <a href=\"@openid-providers\">free public providers</a>. You can find out more about OpenID at <a href=\"@openid-net\">this website</a>.','','none'),(2198,'','default','OpenID identities','','none'),(2199,'','default','Allows users to log into your site using OpenID.','','none'),(2200,'','default','The alias %alias is already in use in this language.','','none'),(2201,'','default','The alias has been saved.','','none'),(2202,'','default','Are you sure you want to delete path alias %title?','','none'),(2203,'','default','Filter aliases','','none'),(2204,'','default','Enter the path you wish to create the alias for, followed by the name of the new alias.','','none'),(2205,'','default','URL aliases','','7.59'),(2206,'','default','Change your site\'s URL paths by aliasing them.','','7.59'),(2207,'','default','Edit alias','','none'),(2208,'','default','Delete alias','','none'),(2209,'','default','Add alias','','7.34'),(2210,'','default','Allows users to rename URLs.','','none'),(2211,'','default','<a href=\"@drupal\">Drupal.org</a> offers <a href=\"@php-snippets\">some example PHP snippets</a>, or you can create your own with some PHP experience and knowledge of the Drupal system.','','none'),(2212,'','default','You may post PHP code. You should include &lt;?php ?&gt; tags.','','7.34'),(2213,'','default','Using custom PHP code','','none'),(2214,'','default','Custom PHP code may be embedded in some types of site content, including posts and blocks. While embedding PHP code inside a post or block is a powerful and flexible feature when used by a trusted user with PHP experience, it is a significant and dangerous security risk when used improperly. Even a small mistake when posting PHP code may accidentally compromise your site.','','none'),(2215,'','default','If you are unfamiliar with PHP, SQL, or Drupal, avoid using custom PHP code within posts. Experimenting with PHP may corrupt your database, render your site inoperable, or significantly compromise security.','','none'),(2216,'','default','Notes:','','none'),(2217,'','default','Remember to double-check each line for syntax and logic errors <strong>before</strong> saving.','','none'),(2218,'','default','Statements must be correctly terminated with semicolons.','','none'),(2219,'','default','Global variables used within your PHP code retain their values after your script executes.','','none'),(2220,'','default','<code>register_globals</code> is <strong>turned off</strong>. If you need to use forms, understand and use the functions in <a href=\"@formapi\">the Drupal Form API</a>.','','none'),(2221,'','default','Use a <code>print</code> or <code>return</code> statement in your code to output content.','','none'),(2222,'','default','Develop and test your PHP code using a separate test script and sample database before deploying on a production site.','','none'),(2223,'','default','Consider including your custom PHP code within a site-specific module or <code>template.php</code> file rather than embedding it directly into a post or block.','','none'),(2224,'','default','Be aware that the ability to embed PHP code within content is provided by the PHP Filter module. If this module is disabled or deleted, then blocks and posts with embedded PHP may display, rather than execute, the PHP code.','','none'),(2225,'','default','A basic example: <em>Creating a \"Welcome\" block that greets visitors with a simple message.</em>','','none'),(2226,'','default','PHP evaluator','','7.59'),(2227,'','default','Executes a piece of PHP code. The usage of this filter should be restricted to administrators only!','','7.59'),(2228,'','default','Allows embedded PHP code/snippets to be evaluated.','','none'),(2229,'','default','Total votes: @votes','','none'),(2230,'','default','Most recent poll','','none'),(2231,'','default','A <em>poll</em> is a question with a set of possible responses. A <em>poll</em>, once created, automatically provides a simple running count of the number of votes received for each response.','','none'),(2232,'','default','Poll status','','none'),(2233,'','default','When a poll is closed, visitors can no longer vote for it.','','none'),(2234,'','default','After this period, the poll will be closed automatically.','','none'),(2235,'','default','Negative values are not allowed.','','none'),(2236,'','default','Your vote could not be recorded because you did not select any of the choices.','','none'),(2237,'','default','Vote count','','none'),(2238,'','default','Polls','','none'),(2239,'','default','Profile fields have been updated.','','none'),(2240,'','default','No fields in this category. If this category remains empty when saved, it will be removed.','','none'),(2241,'','default','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\".','','none'),(2242,'','default','A list of all options. Put each option on a separate line. Example options are \"red\", \"blue\", \"green\", etc.','','none'),(2243,'','default','Hidden profile field, only accessible by administrators, modules and themes.','','none'),(2244,'','default','Private field, content only available to privileged users.','','none'),(2245,'','default','Public field, content shown on profile page but not used on member list pages.','','none'),(2246,'','default','Public field, content shown on profile page and on member list pages.','','none'),(2247,'','default','The weights define the order in which the form fields are shown. Lighter fields \"float up\" towards the top of the category.','','none'),(2248,'','default','Form will auto-complete while user is typing.','','none'),(2249,'','default','For security, auto-complete will be disabled if the user does not have access to user profiles.','','none'),(2250,'','default','The specified form name contains one or more illegal characters. Spaces or any other special characters except dash (-) and underscore (_) are not allowed.','','none'),(2251,'','default','The specified form name is reserved for use by Drupal.','','none'),(2252,'','default','The specified category name is reserved for use by Drupal.','','none'),(2253,'','default','The specified title is already in use.','','none'),(2254,'','default','The specified name is already in use.','','none'),(2255,'','default','A hidden field cannot be required.','','none'),(2256,'','default','A hidden field cannot be set to visible on the user registration form.','','none'),(2257,'','default','The field has been created.','','none'),(2258,'','default','Are you sure you want to delete the field %field?','','none'),(2259,'','default','This action cannot be undone. If users have entered values into this field in their profile, these entries will also be deleted. If you want to keep the user-entered data, instead of deleting the field you may wish to <a href=\"@edit-field\">edit this field</a> and change it to a hidden profile field so that it may only be accessed by administrators.','','none'),(2260,'','default','The field %field has been deleted.','','none'),(2261,'','default','Profile field %field added under category %category.','','none'),(2262,'','default','Profile field %field deleted.','','none'),(2263,'','default','User list','','none'),(2264,'','default','single-line textfield','','none'),(2265,'','default','multi-line textfield','','none'),(2266,'','default','checkbox','','none'),(2267,'','default','list selection','','none'),(2268,'','default','freeform list','','none'),(2269,'','default','Author information','','none'),(2270,'','default','Link to full user profile','','none'),(2271,'','default','Profile fields to display','','none'),(2272,'','default','Select which profile fields you wish to display in the block. Only fields designated as public in the <a href=\"@profile-admin\">profile field configuration</a> are available.','','none'),(2273,'','default','View full user profile','','none'),(2274,'','default','About %name','','none'),(2275,'','default','Put each item on a separate line or separate them by commas. No HTML allowed.','','none'),(2276,'','default','The value provided for %field is not a valid URL.','','none'),(2277,'','default','Create customizable fields for your users.','','none'),(2278,'','default','Profile category autocomplete','','none'),(2279,'','default','Edit field','','none'),(2280,'','default','Delete field','','none'),(2281,'','default','Profile autocomplete','','none'),(2282,'','default','Supports configurable user profiles.','','none'),(2283,'','default','The index will be rebuilt.','','none'),(2284,'','default','Indexing status','','none'),(2285,'','default','Indexing throttle','','none'),(2286,'','default','Number of items to index per cron run','','none'),(2287,'','default','The maximum number of items indexed in each pass of a <a href=\"@cron\">cron maintenance task</a>. If necessary, reduce the number of items to prevent timeouts and memory errors while indexing.','','none'),(2288,'','default','Indexing settings','','none'),(2289,'','default','<p><em>Changing the settings below will cause the site index to be rebuilt. The search index is not cleared but systematically updated to reflect the new settings. Searching will continue to work but new content won\'t be indexed until all existing content has been re-indexed.</em></p><p><em>The default settings should be appropriate for the majority of sites.</em></p>','','none'),(2290,'','default','Minimum word length to index','','none'),(2291,'','default','The number of characters a word has to be to be indexed. A lower setting means better search result ranking, but also a larger database. Each search query must contain at least one keyword that is this size (or longer).','','none'),(2292,'','default','Simple CJK handling','','none'),(2293,'','default','Whether to apply a simple Chinese/Japanese/Korean tokenizer based on overlapping sequences. Turn this off if you want to use an external preprocessor for this instead. Does not affect other languages.','','none'),(2294,'','default','The search engine maintains an index of words found in your site\'s content. To build and maintain this index, a correctly configured <a href=\"@cron\">cron maintenance task</a> is required. Indexing behavior can be adjusted using the settings below.','','none'),(2295,'','default','Search form','','none'),(2296,'','default','Top search phrases','','none'),(2297,'','default','View most popular search phrases.','','none'),(2298,'','default','Enables site-wide keyword searching.','','none'),(2299,'','default','Total page generation time','','none'),(2300,'','default','%time ms','','none'),(2301,'','default','Top pages in the past %interval','','none'),(2302,'','default','Top visitors in the past %interval','','none'),(2303,'','default','Top referrers in the past %interval','','none'),(2304,'','default','Log each page access. Required for referrer statistics.','','none'),(2305,'','default','Older access log entries (including referrer statistics) will be automatically discarded. (Requires a correctly configured <a href=\"@cron\">cron maintenance task</a>.)','','none'),(2306,'','default','Content viewing counter settings','','none'),(2307,'','default','Count content views','','none'),(2308,'','default','Increment a counter each time content is viewed.','','none'),(2309,'','default','Settings for the statistical information that Drupal will keep about the site. See <a href=\"@statistics\">site statistics</a> for the actual information.','','none'),(2310,'','default','This page displays the site\'s most recent hits.','','none'),(2311,'','default','This page displays all external referrers, or external references to your website.','','none'),(2312,'','default','When you ban a visitor, you prevent the visitor\'s IP address from accessing your site. Unlike blocking a user, banning a visitor works even for anonymous users. This is most commonly used to block resource-intensive bots or web crawlers.','','none'),(2313,'','default','Popular content','','none'),(2314,'','default','How many content items to display in \"all time\" list.','','none'),(2315,'','default','How many content items to display in \"recently viewed\" list.','','none'),(2316,'','default','Today\'s:','','none'),(2317,'','default','All time:','','none'),(2318,'','default','Last viewed:','','none'),(2319,'','default','View pages that have recently been visited.','','none'),(2320,'','default','View pages that have been hit frequently.','','none'),(2321,'','default','Top visitors','','none'),(2322,'','default','View visitors that hit many pages.','','none'),(2323,'','default','Top referrers','','none'),(2324,'','default','View top referrers.','','none'),(2325,'','default','View access log.','','none'),(2326,'','default','Track page visits','','none'),(2327,'','default','Logs access statistics for your site.','','none'),(2328,'','default','Logs and records system events to syslog.','','none'),(2329,'','default','User pictures in posts','','none'),(2330,'','default','User pictures in comments','','none'),(2331,'','default','Shortcut icon','','none'),(2332,'','default','Logo image settings','','none'),(2333,'','default','If toggled on, the following logo will be displayed.','','none'),(2334,'','default','Use the default logo','','none'),(2335,'','default','Check here if you want the theme to use the logo supplied with it.','','none'),(2336,'','default','The path to the file you would like to use as your logo file instead of the default logo.','','none'),(2337,'','default','Upload logo image','','none'),(2338,'','default','Shortcut icon settings','','none'),(2339,'','default','Your shortcut icon, or \'favicon\', is displayed in the address bar and bookmarks of most browsers.','','none'),(2340,'','default','Use the default shortcut icon.','','none'),(2341,'','default','Check here if you want the theme to use the default shortcut icon.','','none'),(2342,'','default','The path to the image file you would like to use as your custom shortcut icon.','','none'),(2343,'','default','Upload icon image','','none'),(2344,'','default','If you don\'t have direct file access to the server, use this field to upload your shortcut icon.','','none'),(2345,'','default','@module (<span class=\"admin-missing\">missing</span>)','','none'),(2346,'','default','The following modules will be completely uninstalled from your site, and <em>all data from these modules will be lost</em>!','','none'),(2347,'','default','Confirm uninstall','','none'),(2348,'','default','Would you like to continue with uninstalling the above?','','none'),(2349,'','default','No modules selected.','','none'),(2350,'','default','The selected modules have been uninstalled.','','none'),(2351,'','default','Default 403 (access denied) page','','7.59'),(2352,'','default','Default 404 (not found) page','','7.59'),(2353,'','default','Caches cleared.','','none'),(2354,'','default','Select an image processing toolkit','','none'),(2355,'','default','Number of items in each feed','','7.59'),(2356,'','default','Default number of items to include in each feed.','','7.59'),(2357,'','default','Feed content','','7.59'),(2358,'','default','Titles plus teaser','','7.59'),(2359,'','default','Global setting for the default display of content items in each feed.','','7.59'),(2360,'','default','Cron ran successfully.','','none'),(2361,'','default','Cron run failed.','','none'),(2362,'','default','No modules are available to uninstall.','','none'),(2363,'','default','This theme requires PHP version @php_required and is incompatible with PHP version !php_version.','','none'),(2364,'','default','This page shows you all available administration tasks for each module.','','none'),(2365,'','default','These options control the default display settings for your entire site, across all themes. Unless they have been overridden by a specific theme, these settings will be used.','','none'),(2366,'','default','The <em>Powered by Drupal</em> block is an optional link to the home page of the Drupal project. While there is absolutely no requirement that sites feature this link, it may be used to show support for Drupal.','','none'),(2367,'','default','Here you can find a short overview of your site\'s parameters as well as any problems detected with your installation. It may be useful to copy and paste this information into support requests filed on drupal.org\'s support forums and project issue queues.','','none'),(2368,'','default','Powered by Drupal','','7.59'),(2369,'','default','Could not delete temporary file \"%path\" during garbage collection','','none'),(2370,'','default','Compact mode','','none'),(2371,'','default','Tell Drupal where to store uploaded files and how they are accessed.','','7.59'),(2372,'','default','Image toolkit','','7.59'),(2373,'','default','Choose which image toolkit to use if you have installed optional toolkits.','','7.59'),(2374,'','default','RSS publishing','','7.59'),(2375,'','default','Date and time','','7.59'),(2376,'','default','Date and time lookup','','none'),(2377,'','default','Enable or disable clean URLs for your site.','','7.59'),(2378,'','default','Clean URL check','','none'),(2379,'','default','Get a status report about your site\'s operation and any detected problems.','','7.34'),(2380,'','default','-1 (Unlimited)','','none'),(2381,'','default','Your PHP installation is too old. Drupal requires at least PHP %version.','','none'),(2382,'','default','PHP register globals','','7.59'),(2383,'','default','<em>register_globals</em> is enabled. Drupal requires this configuration directive to be disabled. Your site may not be secure when <em>register_globals</em> is enabled. The PHP manual has instructions for <a href=\"http://php.net/configuration.changes\">how to change configuration settings</a>.','','none'),(2384,'','default','Enabled (\'@value\')','','none'),(2385,'','default','PHP memory limit','','7.59'),(2386,'','default','Consider increasing your PHP memory limit to %memory_minimum_limit to help prevent errors in the installation process.','','none'),(2387,'','default','Consider increasing your PHP memory limit to %memory_minimum_limit to help prevent errors in the update process.','','none'),(2388,'','default','Depending on your configuration, Drupal can run with a %memory_limit PHP memory limit. However, a %memory_minimum_limit PHP memory limit or above is recommended, especially if your site uses additional custom or contributed modules.','','none'),(2389,'','default','Increase the memory limit by editing the memory_limit parameter in the file %configuration-file and then restart your web server (or contact your system administrator or hosting provider for assistance).','','none'),(2390,'','default','Contact your system administrator or hosting provider for assistance with increasing your PHP memory limit.','','none'),(2391,'','default','See the <a href=\"@url\">Drupal requirements</a> for more information.','','none'),(2392,'','default','Not protected','','none'),(2393,'','default','The file %file is not protected from modifications and poses a security risk. You must change the file\'s permissions to be non-writable.','','none'),(2394,'','default','For more information, see the online handbook entry for <a href=\"@cron-handbook\">configuring cron jobs</a>.','','7.59'),(2395,'','default','Cron has not run recently.','','none'),(2396,'','default','Cron maintenance tasks','','7.59'),(2397,'','default','You can <a href=\"@cron\">run cron manually</a>.','','7.59'),(2398,'','default','The directory %directory is not writable.','','none'),(2399,'','default','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.','','none'),(2400,'','default','Writable (<em>public</em> download method)','','7.59'),(2401,'','default','Writable (<em>private</em> download method)','','none'),(2402,'','default','Database updates','','7.59'),(2403,'','default','Some modules have database schema updates to install. You should run the <a href=\"@update\">database update script</a> immediately.','','none'),(2404,'','default','The update.php script is accessible to everyone without authentication check, which is a security risk. You must change the $update_free_access value in your settings.php back to FALSE.','','none'),(2405,'','default','Access to update.php','','7.59'),(2406,'','default','Handles general site configuration for administrators.','','none'),(2407,'','default','Reset to alphabetical','','none'),(2408,'','default','Terms are displayed in ascending order by weight.','','none'),(2409,'','default','Weight value must be numeric.','','none'),(2410,'','default','Are you sure you want to reset the vocabulary %title to alphabetical order?','','none'),(2411,'','default','Resetting a vocabulary will discard all custom ordering and sort items alphabetically.','','none'),(2412,'','default','Reset vocabulary %name to alphabetical order.','','none'),(2413,'','default','Translations of a piece of content are managed with translation sets. Each translation set has one source post and any number of translations in any of the <a href=\"!languages\">enabled languages</a>. All translations are tracked to be up to date or outdated based on whether the source post was modified significantly.','','7.34'),(2414,'','default','Translation settings','','7.34'),(2415,'','default','Flag translations as outdated','','7.34'),(2416,'','default','If you made a significant change, which means translations should be updated, you can flag all translations of this post as outdated. This will not change any other property of those posts, like whether they are published or not.','','7.34'),(2417,'','default','This translation needs to be updated','','7.34'),(2418,'','default','When this option is checked, this translation needs to be updated because the source post has changed. Uncheck when the translation is up to date again.','','7.34'),(2419,'','default','Content translation','','7.59'),(2420,'','default','Allows content to be translated into different languages.','','none'),(2421,'','default','Unknown release date','','none'),(2422,'','default','Last checked: @time ago','','none'),(2423,'','default','Last checked: never','','none'),(2424,'','default','Includes: %includes','','none'),(2425,'','default','Disabled modules','','none'),(2426,'','default','Disabled themes','','none'),(2427,'','default','Select how frequently you want to automatically check for new releases of your currently installed modules and themes.','','none'),(2428,'','default','E-mail notification threshold','','none'),(2429,'','default','You can choose to send e-mail only if a security update is available, or to be notified about all newer versions. If there are updates available of Drupal core or any of your installed modules and themes, your site will always print a message on the <a href=\"@status_report\">status report</a> page, and will also display an error message on administration pages if there is a security update.','','none'),(2430,'','default','Here you can find information about available updates for your installed modules and themes. Note that each module or theme is part of a \"project\", which may or may not have the same name, and might include multiple modules or themes within it.','','none'),(2431,'','default','Module and theme update status','','7.59'),(2432,'','default','There are security updates available for one or more of your modules or themes. To ensure the security of your server, you should update immediately!','','7.59'),(2433,'','default','There are updates available for one or more of your modules or themes. To ensure the proper functioning of your site, you should update as soon as possible.','','7.59'),(2434,'','default','Get a status report about available updates for your installed modules and themes.','','7.34'),(2435,'','default','Notify user when account is activated.','','7.59'),(2436,'','default','Notify user when account is blocked.','','7.59'),(2437,'','default','Picture guidelines','','7.59'),(2438,'','default','This text is displayed at the picture upload form in addition to the default guidelines. It\'s useful for helping or instructing your users.','','7.59'),(2439,'','default','The name for this role. Example: \"moderator\", \"editorial board\", \"site architect\".','','none'),(2440,'','default','The role has been renamed.','','none'),(2441,'','default','The role has been deleted.','','none'),(2442,'','default','E-mail new password','','7.59'),(2443,'','default','Sorry, %name is not recognized as a user name or an e-mail address.','','none'),(2444,'','default','Further instructions have been sent to your e-mail address.','','none'),(2445,'','default','%name has been deleted.','','none'),(2446,'','default','You must enter a username.','','none'),(2447,'','default','The username cannot begin with a space.','','none'),(2448,'','default','The username cannot end with a space.','','none'),(2449,'','default','The username cannot contain multiple spaces in a row.','','none'),(2450,'','default','The username contains an illegal character.','','none'),(2451,'','default','The username %name is too long: it must be %max characters or less.','','none'),(2452,'','default','You must enter an e-mail address.','','none'),(2453,'','default','Who\'s online','','7.59'),(2454,'','default','User list length','','none'),(2455,'','default','Enter the password that accompanies your username.','','7.59'),(2456,'','default','Signature settings','','7.31'),(2457,'','default','Delete picture','','7.31'),(2458,'','default','Check this box to delete your current picture.','','7.31'),(2459,'','default','Unblock the selected users','','none'),(2460,'','default','Block the selected users','','none'),(2461,'','default','This web page allows administrators to register new users. Users\' e-mail addresses and usernames must be unique.','','none'),(2462,'','default','Enter a simple pattern (\"*\" may be used as a wildcard match) to search for a username or e-mail address. For example, one may search for \"br\" and Drupal might return \"brian\", \"brad\", and \"brenda@example.com\".','','none'),(2463,'','default','Deleted user: %name %email.','','none'),(2464,'','default','Determine access to features by selecting permissions for roles.','','7.34'),(2465,'','default','Edit role','','none'),(2466,'','default','Manages the user registration and login system.','','none'),(2467,'','default','Garland','','none'),(2468,'','default','Run the clean URL test','','none'),(2469,'','default','The title is used as a tool tip when the user hovers the mouse over the image.','','7.34'),(2470,'','default','Progress indicator','','none'),(2471,'','default','Bar with progress meter','','none'),(2472,'','default','Throbber','','none'),(2473,'','default','The file upload failed. %upload','','none'),(2474,'','default','URL to file','','7.59'),(2475,'','default','An unrecoverable error occurred. The uploaded file likely exceeded the maximum file size (@size) that this server supports.','','none'),(2476,'','default','Starting upload...','','none'),(2477,'','default','Uploading... (@current of @total)','','none'),(2478,'','default','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>.','','7.59'),(2479,'','default','Your server is capable of displaying file upload progress using APC RFC1867. Note that only one upload at a time is supported. It is recommended to use the <a href=\"http://pecl.php.net/package/uploadprogress\">PECL uploadprogress library</a> if possible.','','none'),(2480,'','default','Your server is not capable of displaying file upload progress. File upload progress requires PHP be run with mod_php and not as FastCGI.','','none'),(2481,'','default','Your server is capable of displaying file upload progress through APC, but it is not enabled. Add <code>apc.rfc1867 = 1</code> to your php.ini configuration. Alternatively, it is recommended to use <a href=\"http://pecl.php.net/package/uploadprogress\">PECL uploadprogress</a>, which supports more than one simultaneous upload.','','7.34'),(2482,'','default','Enabled (<a href=\"http://php.net/manual/en/apc.configuration.php#ini.apc.rfc1867\">APC RFC1867</a>)','','none'),(2483,'','default','Enabled (<a href=\"http://pecl.php.net/package/uploadprogress\">PECL uploadprogress</a>)','','none'),(2484,'','default','Upload progress','','7.59'),(2485,'','default','Interface','','none'),(2486,'','default','@size KB','','7.34'),(2487,'','default','@size MB','','7.34'),(2488,'','default','@size GB','','7.34'),(2489,'','default','@size TB','','7.34'),(2490,'','default','@size PB','','7.34'),(2491,'','default','@size EB','','7.34'),(2492,'','default','@size ZB','','7.34'),(2493,'','default','@size YB','','7.34'),(2494,'','default','All messages','','none'),(2495,'','default','(empty)','','7.34'),(2496,'','default','Text format','','7.59'),(2497,'','default','No new posts','','7.34'),(2498,'','default','Sticky topic','','none'),(2499,'','default','The translation file %filename contains an error: \"msgctxt\" is unexpected on line %line.','','none'),(2500,'','default','The name of the site.','','7.59'),(2501,'','default','Region settings','','7.34'),(2502,'','default','Top center','','none'),(2503,'','default','Bottom center','','none'),(2504,'','default','Format string','','none'),(2505,'','default','Are you sure you want to remove the format %format?','','none'),(2506,'','default','Removed date format %format.','','none'),(2507,'','default','Add format','','7.34'),(2508,'','default','Allow users to add additional date formats.','','7.34'),(2509,'','default','Delete date format','','none'),(2510,'','default','Allow users to delete a configured date format.','','none'),(2511,'','default','Configure date formats for each locale','','7.34'),(2512,'','default','Content type name','','none'),(2513,'','default','Slate','','none'),(2514,'','default','manage fields','','7.34'),(2515,'','default','@field_name (Locked)','','none'),(2516,'','default','- Select a field type -','','7.34'),(2517,'','default','- Select a widget -','','7.34'),(2518,'','default','Type of data to store.','','7.34'),(2519,'','default','Form element to edit the data.','','7.34'),(2520,'','default','- Select an existing field -','','7.34'),(2521,'','default','Field to share','','7.34'),(2522,'','default','Add new field: you need to provide a label.','','none'),(2523,'','default','Add new field: you need to provide a field name.','','none'),(2524,'','default','Add new field: you need to select a field type.','','none'),(2525,'','default','Add new field: you need to select a widget.','','none'),(2526,'','default','Add new field: invalid widget.','','none'),(2527,'','default','Add existing field: you need to provide a label.','','none'),(2528,'','default','Add existing field: you need to select a field.','','none'),(2529,'','default','Add existing field: you need to select a widget.','','none'),(2530,'','default','Add existing field: invalid widget.','','none'),(2531,'','default','@type: @field (@label)','','7.34'),(2532,'','default','The field %field is locked and cannot be edited.','','none'),(2533,'','default','Maximum number of values users can enter for this field.','','none'),(2534,'','default','\'Unlimited\' will provide an \'Add more\' button so the users can add as many values as they like.','','none'),(2535,'','default','%name must be an integer.','','none'),(2536,'','default','%name must be a positive integer.','','none'),(2537,'','default','%name must be a number.','','none'),(2538,'','default','Only numbers are allowed in %field.','','none'),(2539,'','default','Regional settings','','7.59'),(2540,'','default','update.php','','none'),(2541,'','default','Rotate','','7.59'),(2542,'','default','Page top','','7.59'),(2543,'','default','Page bottom','','7.59'),(2544,'','default','Hello <strong>@username</strong>','','7.59'),(2545,'','default','width @width','','none'),(2546,'','default','height @height','','none'),(2547,'','default','upscaling allowed','','none'),(2548,'','default','random between -@degrees&deg and @degrees&deg','','none'),(2549,'','default','@degrees&deg','','none'),(2550,'','default','Sidebar first','','7.59'),(2551,'','default','Database is encoded in UTF-8','','none'),(2552,'','default','Drupal could not determine the encoding of the database was set to UTF-8','','none'),(2553,'','default','PostgreSQL has initialized itself.','','none'),(2554,'','default','Structure','','7.59'),(2555,'','default','Created role of name: @name, id: @rid','','none'),(2556,'','default','User %name successfully logged in.','','none'),(2557,'','default','Raw \"@raw\" found','','none'),(2558,'','default','Raw \"@raw\" not found','','none'),(2559,'','default','\"@text\" found','','none'),(2560,'','default','\"@text\" not found','','none'),(2561,'','default','Pattern \"@pattern\" found','','none'),(2562,'','default','Pattern \"@pattern\" not found','','none'),(2563,'','default','Checkbox field @id is checked.','','none'),(2564,'','default','Checkbox field @id is not checked.','','none'),(2565,'','default','Verbose message','','none'),(2566,'','default','Select the test(s) or test group(s) you would like to run, and click <em>Run tests</em>.','','none'),(2567,'','default','All (@count)','','none'),(2568,'','default','Pass (@count)','','none'),(2569,'','default','Fail (@count)','','none'),(2570,'','default','Return to list','','none'),(2571,'','default','Clear results after each complete test suite run','','none'),(2572,'','default','Provide verbose information when running tests','','none'),(2573,'','default','The verbose data will be printed along with the standard assertions and is useful for debugging. The verbose data will be erased between each test suite run. The verbose data output is very detailed and should only be used when debugging.','','none'),(2574,'','default','HTTP auth settings to be used by the SimpleTest browser during testing. Useful when the site requires basic HTTP authentication.','','none'),(2575,'','default','@pass, @fail, @exception, and @debug','','none'),(2576,'','default','The test run did not successfully finish.','','none'),(2577,'','default','Clear results is disabled and the test results table will not be cleared.','','none'),(2578,'','default','No leftover tables to remove.','','none'),(2579,'','default','1 debug message','','none'),(2580,'','default','@count debug messages','','none'),(2581,'','default','Removed 1 test result.','','none'),(2582,'','default','Removed @count test results.','','none'),(2583,'','default','Removed 1 leftover table.','','none'),(2584,'','default','Removed @count leftover tables.','','none'),(2585,'','default','Removed 1 temporary directory.','','none'),(2586,'','default','Removed @count temporary directories.','','none'),(2587,'','default','Test result','','none'),(2588,'','default','View result of tests.','','none'),(2589,'','default','hash','','none'),(2590,'','default','Comment permalink','','none'),(2591,'','default','!site_name blogs','','none'),(2592,'','default','Search block','','none'),(2593,'','default','Edit style','','none'),(2594,'','default','Delete style','','none'),(2595,'','default','Check for updates of disabled modules and themes','','none'),(2596,'','default','Fetcher','','none'),(2597,'; modules/user/user.permissions.js','default','This permission is inherited from the authenticated user role.','','none'),(2598,'','default','Seven','','7.34'),(2599,'','default','openid','','none'),(2600,'','default','Submitted by !username on !datetime','','none'),(2601,'','default','Administer forums','','none'),(2602,'','default','Cancel account','','7.31'),(2603,'','default','Secondary menu','','7.59'),(2604,'','default','Administrator role','','none'),(2605,'; modules/node/node.js','default','No revision','','none'),(2606,'; modules/comment/comment-node-form.js','default','@number comments per page','','none'),(2607,'; modules/node/content_types.js','default','Requires a title','','none'),(2608,'','default','Private files','','none'),(2609,'; modules/block/block.js; sites/all/modules/i18n/i18n_block/i18n_block.js','default','Not restricted','','none'),(2610,'','default','Other blocks','','none'),(2611,'','default','The unique ID of the comment.','','7.59'),(2612,'','default','The IP address of the computer the comment was posted from.','','7.59'),(2613,'','default','The name left by the comment author.','','7.59'),(2614,'','default','The email address left by the comment author.','','7.59'),(2615,'','default','The home page URL left by the comment author.','','7.59'),(2616,'','default','The formatted content of the comment itself.','','none'),(2617,'','default','The URL of the comment.','','7.59'),(2618,'','default','Edit URL','','7.59'),(2619,'','default','The URL of the comment\'s edit page.','','7.59'),(2620,'','default','The date the comment was posted.','','7.59'),(2621,'','default','The comment\'s parent, if comment threading is active.','','7.59'),(2622,'','default','The node the comment was posted to.','','7.59'),(2623,'','default','The author of the comment, if they were logged in.','','none'),(2624,'','default','The number of comments posted on a node.','','7.59'),(2625,'','default','New comment count','','7.59'),(2626,'','default','The number of comments posted on a node since the reader last viewed it.','','7.59'),(2627,'','default','The unique ID of the node\'s latest revision.','','none'),(2628,'','default','Translation set ID','','none'),(2629,'','default','The unique ID of the original-language version of this node, if one exists.','','none'),(2630,'','default','The type of the node.','','7.59'),(2631,'','default','The human-readable name of the node type.','','none'),(2632,'','default','The language the node is written in.','','7.59'),(2633,'','default','The URL of the node.','','7.59'),(2634,'','default','The URL of the node\'s edit page.','','7.59'),(2635,'','default','Date changed','','7.59'),(2636,'','default','The date the node was most recently updated.','','7.59'),(2637,'','default','The author of the node.','','7.59'),(2638,'','default','Poll winner','','none'),(2639,'','default','The winning poll answer.','','none'),(2640,'','default','Poll winner votes','','none'),(2641,'','default','The number of votes received by the winning poll answer.','','none'),(2642,'','default','Poll winner percent','','none'),(2643,'','default','The percentage of votes received by the winning poll answer.','','none'),(2644,'','default','The number of visitors who have read the node.','','none'),(2645,'','default','The number of visitors who have read the node today.','','none'),(2646,'','default','Last view','','none'),(2647,'','default','The date on which a visitor last read the node.','','none'),(2648,'','default','The slogan of the site.','','7.59'),(2649,'','default','The administrative email address for the site.','','7.59'),(2650,'','default','The URL of the site\'s front page.','','7.59'),(2651,'','default','Login page','','7.59'),(2652,'','default','The URL of the site\'s login page.','','7.59'),(2653,'','default','The unique ID of the uploaded file.','','7.59'),(2654,'','default','The name of the file on disk.','','7.59'),(2655,'','default','The web-accessible URL for the file.','','7.59'),(2656,'','default','The date the file was most recently changed.','','7.59'),(2657,'','default','The user who originally uploaded the file.','','7.59'),(2658,'','default','The unique ID of the taxonomy term.','','7.59'),(2659,'','default','The name of the taxonomy term.','','7.59'),(2660,'','default','The optional description of the taxonomy term.','','7.59'),(2661,'','default','The number of nodes tagged with the taxonomy term.','','7.59'),(2662,'','default','The URL of the taxonomy term.','','7.59'),(2663,'','default','The vocabulary the taxonomy term belongs to.','','7.59'),(2664,'','default','The parent term of the taxonomy term, if one exists.','','none'),(2665,'','default','The unique ID of the taxonomy vocabulary.','','7.59'),(2666,'','default','The name of the taxonomy vocabulary.','','7.59'),(2667,'','default','The optional description of the taxonomy vocabulary.','','7.59'),(2668,'','default','The number of nodes tagged with terms belonging to the taxonomy vocabulary.','','none'),(2669,'','default','Term count','','7.59'),(2670,'','default','The number of terms belonging to the taxonomy vocabulary.','','7.59'),(2671,'','default','The unique ID of the user account.','','7.59'),(2672,'','default','The login name of the user account.','','7.59'),(2673,'','default','The email address of the user account.','','7.59'),(2674,'','default','The URL of the account profile page.','','7.59'),(2675,'','default','The date the user last logged in to the site.','','7.59'),(2676,'','default','The date the user account was created.','','7.59'),(2677,'','default','Your OpenID','','none'),(2678,'','default','This OpenID will be attached to your account after registration.','','none'),(2679,'','default','Main page content','','7.59'),(2680,'','default','You are not allowed to access this page.','','none'),(2681,'','default','Authorize file system changes','','none'),(2682,'','default','It appears you have reached this page in error.','','none'),(2683,'','default','authorize.php','','none'),(2684,'','default','Cron could not run because an invalid key was used.','','none'),(2685,'','default','Cron could not run because the site is in maintenance mode.','','none'),(2686,'','default','Default country','','7.59'),(2687,'','default','Check the error messages and <a href=\"!url\">proceed with the installation</a>.','','none'),(2688,'','default','In your %settings_file file you have configured @drupal to use a %driver server, however your PHP installation currently does not support this database type.','','none'),(2689,'','default','Sorry, you must select a language to continue the installation.','','none'),(2690,'','default','We were unable to find any installation profiles. Installation profiles tell us what modules to enable and what schema to install in the database. A profile is necessary to continue with the installation process.','','none'),(2691,'','default','Sorry, the profile you have chosen cannot be loaded.','','none'),(2692,'','default','All necessary changes to %dir and %file have been made, so you should remove write permissions to them now in order to avoid security risks. If you are unsure how to do so, consult the <a href=\"@handbook_url\">online handbook</a>.','','none'),(2693,'','default','Congratulations, you installed @drupal!','','none'),(2694,'','default','Review the messages above before visiting <a href=\"@url\">your new site</a>.','','none'),(2695,'','default','<a href=\"@url\">Visit your new site</a>.','','none'),(2696,'','default','Settings file','','none'),(2697,'','default','The settings file does not exist.','','none'),(2698,'','default','The @drupal installer requires that you create a settings file as part of the installation process. Copy the %default_file file to %file. More details about installing Drupal are available in <a href=\"@install_txt\">INSTALL.txt</a>.','','none'),(2699,'','default','The %file file exists.','','none'),(2700,'','default','The settings file is not writable.','','none'),(2701,'','default','The @drupal installer requires write permissions to %file during the installation process. If you are unsure how to grant file permissions, consult the <a href=\"@handbook_url\">online handbook</a>.','','none'),(2702,'','default','Automated e-mails, such as registration information, will be sent from this address. Use an address ending in your site\'s domain to help prevent these e-mails from being flagged as spam.','','none'),(2703,'','default','Site maintenance account','','none'),(2704,'','default','Select the default country for the site.','','none'),(2705,'','default','Receive e-mail notifications','','none'),(2706,'','default','The system will notify you when updates and important security releases are available for installed components. Anonymous information about your site is sent to <a href=\"@drupal\">Drupal.org</a>.','','none'),(2707,'','default','No pending updates.','','none'),(2708,'','default','1 pending update','','none'),(2709,'','default','@count pending updates','','none'),(2710,'','default','An error occurred while handling the request: The server received invalid input.','','none'),(2711,'','default','Invalid form POST data.','','none'),(2712,'','default','Unable to continue, no available methods of file transfer','','none'),(2713,'','default','WARNING: You are not using an encrypted connection, so your password will be sent in plain text. <a href=\"@https-link\">Learn more</a>.','','none'),(2714,'','default','To continue, provide your server connection details','','none'),(2715,'','default','Connection method','','none'),(2716,'','default','Enter connection settings','','none'),(2717,'','default','@backend connection settings','','none'),(2718,'','default','Change connection type','','none'),(2719,'','default','Error, this type of connection protocol (%backend) does not exist.','','none'),(2720,'','default','No active batch.','','none'),(2721,'','default','Site under maintenance','','7.59'),(2722,'','default','Archivers can only operate on local files: %file not supported','','none'),(2723,'','default','The file could not be uploaded, because the destination %destination is invalid.','','none'),(2724,'','default','The file %source could not be uploaded because a file by that name already exists in the destination %directory.','','none'),(2725,'','default','The file\'s name exceeds the 240 characters limit. Please rename the file and try again.','','none'),(2726,'','default','%path is a directory and cannot be removed using file_unmanaged_delete().','','none'),(2727,'','default','The file %path is not of a recognized type so it was not deleted.','','none'),(2728,'','default','The file permissions could not be set on %uri.','','none'),(2729,'','default','Completed @current of @total.','','none'),(2730,'','default','Failed to run all tasks against the database server. The task %task wasn\'t found.','','none'),(2731,'','default','Failed to modify %settings. Verify the file permissions.','','none'),(2732,'','default','Failed to open %settings. Verify the file permissions.','','none'),(2733,'','default','Required modules','','none'),(2734,'','default','Required modules not found.','','none'),(2735,'','default','The following modules are required but were not found. Move them into the appropriate modules subdirectory, such as <em>sites/all/modules</em>. Missing modules: !modules','','none'),(2736,'','default','system','','7.34'),(2737,'','default','%module module uninstalled.','','none'),(2738,'','default','Saint Barthélemy','','7.34'),(2739,'','default','Saint Martin (French part)','','7.34'),(2740,'','default','Use the default site language (@language_name).','','none'),(2741,'','default','The translation file %filepath contains an error: the plural formula could not be parsed.','','none'),(2742,'','default','No strings available.','','none'),(2743,'','default','@count disallowed HTML string(s) in %file','','none'),(2744,'','default','JavaScript translation file %file.js was lost.','','none'),(2745,'','default','Unable to send e-mail. Contact the site administrator if the problem persists.','','7.34'),(2746,'','default','Class %class does not implement interface %interface','','none'),(2747,'','default','Operating in maintenance mode. <a href=\"@url\">Go online.</a>','','7.59'),(2748,'','default','Operating in maintenance mode.','','none'),(2749,'','default','%module module enabled.','','none'),(2750,'','default','%module module disabled.','','none'),(2751,'','default','Status message','','7.59'),(2752,'','default','Unable to determine the type of the source directory.','','none'),(2753,'','default','Cannot determine the type of project.','','none'),(2754,'','default','Fatal error in update, cowardly refusing to wipe out the install directory.','','none'),(2755,'','default','File Transfer failed, reason: !reason','','none'),(2756,'','default','Unable to create %directory due to the following: %reason','','none'),(2757,'','default','Drupal could not be correctly setup with the existing database. Revise any errors.','','none'),(2758,'','default','No feeds available. <a href=\"@link\">Add feed</a>.','','none'),(2759,'','default','No categories available. <a href=\"@link\">Add category</a>.','','none'),(2760,'','default','The length of time between feed updates. Requires a correctly configured <a href=\"@cron\">cron maintenance task</a>.','','none'),(2761,'','default','News items in block','','none'),(2762,'','default','Drupal can make a block with the most recent news items of this feed. You can <a href=\"@block-admin\">configure blocks</a> to be displayed in the sidebar of your page. This setting lets you configure the number of news items to show in this feed\'s block. If you choose \'0\' this feed\'s block will be disabled.','','none'),(2763,'','default','The URL %url is invalid. Enter a fully-qualified URL, such as http://www.example.com/feed.xml.','','none'),(2764,'','default','A feed named %feed already exists. Enter a unique title.','','none'),(2765,'','default','A feed with this URL %url already exists. Enter a unique URL.','','none'),(2766,'','default','Upload an OPML file containing a list of feeds to be imported.','','none'),(2767,'','default','OPML Remote URL','','none'),(2768,'','default','Enter the URL of an OPML file. This file will be downloaded and processed only once on submission of the form.','','none'),(2769,'','default','Drupal can make a block with the most recent news items of a feed. You can <a href=\"@block-admin\">configure blocks</a> to be displayed in the sidebar of your page. This setting lets you configure the number of news items to show in a feed\'s block. If you choose \'0\' these feeds\' blocks will be disabled.','','none'),(2770,'','default','You must <em>either</em> upload a file or enter a URL.','','none'),(2771,'','default','This URL is not valid.','','none'),(2772,'','default','No new feed has been added.','','none'),(2773,'','default','The URL %url is invalid.','','none'),(2774,'','default','A feed named %title already exists.','','none'),(2775,'','default','A feed with the URL %url already exists.','','none'),(2776,'','default','Fetchers download data from an external source. Choose a fetcher suitable for the external source you would like to download from.','','none'),(2777,'','default','Parsers transform downloaded data into standard structures. Choose a parser suitable for the type of feeds you would like to aggregate.','','none'),(2778,'','default','Processors act on parsed feed data, for example they store feed items. Choose the processors suitable for your task.','','none'),(2779,'','default','For most aggregation tasks, the default settings are fine.','','none'),(2780,'','default','A category named %category already exists. Enter a unique title.','','none'),(2781,'','default','Default fetcher','','none'),(2782,'','default','Downloads data from a URL using Drupal\'s HTTP request handler.','','none'),(2783,'','default','Default parser','','none'),(2784,'','default','Parses RSS, Atom and RDF feeds.','','none'),(2785,'','default','Default processor','','none'),(2786,'','default','Creates lightweight records from feed items.','','none'),(2787,'','default','Default processor settings','','none'),(2788,'','default','Number of items shown in listing pages','','none'),(2789,'','default','Requires a correctly configured <a href=\"@cron\">cron maintenance task</a>.','','none'),(2790,'','default','Select categories using','','none'),(2791,'','default','For a small number of categories, checkboxes are easier to use, while a multiple selector works well with large numbers of categories.','','none'),(2792,'','default','Length of trimmed description','','none'),(2793,'','default','The maximum number of characters used in the trimmed version of content.','','none'),(2794,'','default','The Aggregator module is an on-site syndicator and news reader that gathers and displays fresh content from RSS-, RDF-, and Atom-based feeds made available across the web. Thousands of sites (particularly news sites and blogs) publish their latest headlines in feeds, using a number of standardized XML-based formats. For more information, see the online handbook entry for <a href=\"@aggregator-module\">Aggregator module</a>.','','none'),(2795,'','default','Viewing feeds','','none'),(2796,'','default','Feeds contain published content, and may be grouped in categories, generally by topic. Users view feed content in the <a href=\"@aggregator\">main aggregator display</a>, or by <a href=\"@aggregator-sources\">their source</a> (usually via an RSS feed reader). The most recent content in a feed or category can be displayed as a block through the <a href=\"@admin-block\">Blocks administration page</a>.','','none'),(2797,'','default','Adding, editing, and deleting feeds','','none'),(2798,'','default','Administrators can add, edit, and delete feeds, and choose how often to check each feed for newly updated items on the <a href=\"@feededit\">Feed aggregator administration page</a>.','','none'),(2799,'','default','OPML integration','','none'),(2800,'','default','A <a href=\"@aggregator-opml\">machine-readable OPML file</a> of all feeds is available. OPML is an XML-based file format used to share outline-structured information such as a list of RSS feeds. Feeds can also be <a href=\"@import-opml\">imported via an OPML file</a>.','','none'),(2801,'','default','Configuring cron','','none'),(2802,'','default','A correctly configured <a href=\"@cron\">cron maintenance task</a> is required to update feeds automatically.','','none'),(2803,'','default','<acronym title=\"Outline Processor Markup Language\">OPML</acronym> is an XML format used to exchange multiple feeds between aggregators. A single OPML document may contain a collection of many feeds. Drupal can parse such a file and import all feeds at once, saving you the effort of adding them manually. You may either upload a local file from your computer or enter a URL where Drupal can download it.','','none'),(2804,'','default','Administer news feeds','','none'),(2805,'','default','View news feeds','','none'),(2806,'','default','Configure the behavior of the feed aggregator, including when to discard feed items and how to present feed items and categories.','','none'),(2807,'','default','Override the default title for the block. Use <em>!placeholder</em> to display no title, or leave blank to use the default block title.','','7.34'),(2808,'','default','Specify in which themes and regions this block is displayed.','','7.34'),(2809,'','default','All pages except those listed','','7.34'),(2810,'','default','Only the listed pages','','7.34'),(2811,'','default','Specify pages by using their paths. Enter one path per line. The \'*\' character is a wildcard. Example paths are %blog for the blog page and %blog-wildcard for every personal blog. %front is the front page.','','7.59'),(2812,'','default','Pages on which this PHP code returns <code>TRUE</code> (experts only)','','7.34'),(2813,'','default','Pages or PHP code','','7.59'),(2814,'','default','If the PHP option is chosen, enter PHP code between %php. Note that executing incorrect PHP code can break your Drupal site.','','7.59'),(2815,'','default','Customizable per user','','7.34'),(2816,'; modules/block/block.js','default','Not customizable','','7.34'),(2817,'','default','Customizable, visible by default','','7.34'),(2818,'','default','Customizable, hidden by default','','7.34'),(2819,'','default','Ensure that each block description is unique.','','none'),(2820,'','default','The Block module allows you to create boxes of content, which are rendered into an area, or region, of one or more pages of a website. The core Seven administration theme, for example, implements the regions \"Content\", \"Help\", \"Dashboard main\", and \"Dashboard sidebar\", and a block may appear in any one of these regions. The <a href=\"@blocks\">Blocks administration page</a> provides a drag-and-drop interface for assigning a block to a region, and for controlling the order of blocks within regions. For more information, see the online handbook entry for <a href=\"@block\">Block module</a>.','','none'),(2821,'','default','Positioning content','','none'),(2822,'','default','When working with blocks, remember that all themes do <em>not</em> implement the same regions, or display regions in the same way. Blocks are positioned on a per-theme basis. Users with the <em>Administer blocks</em> permission can disable blocks. Disabled blocks are listed on the <a href=\"@blocks\">Blocks administration page</a>, but are not displayed in any region.','','none'),(2823,'','default','Controlling visibility','','none'),(2824,'','default','Blocks can be configured to be visible only on certain pages, only to users of certain roles, or only on pages displaying certain <a href=\"@content-type\">content types</a>. Administrators can also allow specific blocks to be enabled or disabled by users when they edit their <a href=\"@user\">My account</a> page. Some dynamic blocks, such as those generated by modules, will be displayed only on certain pages.','','none'),(2825,'','default','Creating custom blocks','','none'),(2826,'','default','Users with the <em>Administer blocks</em> permission can <a href=\"@block-add\">add custom blocks</a>, which are then listed on the <a href=\"@blocks\">Blocks administration page</a>. Once created, custom blocks behave just like default and module-generated blocks.','','none'),(2827,'','default','This page provides a drag-and-drop interface for assigning a block to a region, and for controlling the order of blocks within regions. Since not all themes implement the same regions, or display regions in the same way, blocks are positioned on a per-theme basis. Remember that your changes will not be saved until you click the <em>Save blocks</em> button at the bottom of the page. Click the <em>configure</em> link next to each block to configure its specific title and visibility settings.','','7.34'),(2828,'','default','Demonstrate block regions (@theme)','','7.34'),(2829,'','default','Administer blocks','','none'),(2830,'','default','A brief description of your block. Used on the <a href=\"@overview\">Blocks administration page</a>.','','7.34'),(2831,'','default','Personalize blocks','','none'),(2832,'','default','Blocks consist of content or information that complements the main content of the page. Enable or disable optional blocks using the checkboxes below.','','none'),(2833,'','default','Cache blocks','','7.59'),(2834,'','default','Block caching is inactive because you have enabled modules defining content access restrictions.','','none'),(2835,'','default','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.','','none'),(2836,'; modules/block/block.js','default','Restricted to certain pages','','none'),(2837,'; modules/block/block.js','default','The block cannot be placed in this region.','','none'),(2838,'','default','Use for multi-user blogs. Every user gets a personal blog.','','none'),(2839,'','default','Single-user blogs','','none'),(2840,'','default','Each user\'s blog entries are automatically displayed with a link to the user\'s main blog page. You can create as many single-user blogs as you have site users with permission to create blog content.','','none'),(2841,'','default','Multi-user blogs','','none'),(2842,'','default','Blog entries from each single-user blog are also aggregated into one central multi-user blog, which displays the blog content of all users in a single listing.','','none'),(2843,'','default','There is an optional <em>Blogs</em> menu item added to the Navigation menu, which displays all blogs available on your site, and a <em>My blog</em> item displaying the current user\'s blog entries.','','none'),(2844,'','default','The Blog module also creates a default <em>Recent blog posts</em> block that may be enabled at the <a href=\"@blocks\">blocks administration page</a>.','','none'),(2845,'','default','Create new blog entry','','none'),(2846,'','default','Enables multi-user blogs.','','none'),(2847,'','default','No books available.','','none'),(2848,'','default','Content types allowed in book outlines','','none'),(2849,'','default','Users with the %outline-perm permission can add all content types.','','none'),(2850,'','default','Administer book outlines','','none'),(2851,'','default','The Book module is used for creating structured, multi-page content, such as site resource guides, manuals, and wikis. It allows you to create content that has chapters, sections, subsections, or any similarly-tiered structure. For more information, see the online handbook entry for <a href=\"@book\">Book module</a>.','','none'),(2852,'','default','Adding and managing book content','','none'),(2853,'','default','You can assign separate permissions for <em>creating</em>, <em>editing</em>, and <em>deleting</em> book content, as well as <em>adding content to books</em>, and <em>creating new books</em>. Users with the <em>Administer book outlines</em> permission can add <em>any</em> type of content to a book by selecting the appropriate book outline while editing the content. They can also view a list of all books, and edit and rearrange section titles on the <a href=\"@admin-book\">Book administration page</a>.','','none'),(2854,'','default','Book pages have a default book-specific navigation block. This navigation block contains links that lead to the previous and next pages in the book, and to the level above the current page in the book\'s structure. This block can be enabled on the <a href=\'@admin-block\'>Blocks administration page</a>. For book pages to show up in the book navigation, they must be added to a book outline.','','none'),(2855,'','default','Books can be created collaboratively, as they allow users with appropriate permissions to add pages into existing books, and add those pages to a custom table of contents menu.','','none'),(2856,'','default','Printing books','','none'),(2857,'','default','Users with the <em>View printer-friendly books</em> permission can select the <em>printer-friendly version</em> link visible at the bottom of a book page\'s content to generate a printer-friendly display of the page and all of its subsections.','','none'),(2858,'','default','The book module offers a means to organize a collection of related content pages, collectively known as a book. When viewed, this content automatically displays links to adjacent book pages, providing a simple navigation system for creating and reviewing structured content.','','none'),(2859,'','default','The outline feature allows you to include pages in the <a href=\"@book\">Book hierarchy</a>, as well as move them within the hierarchy or to <a href=\"@book-admin\">reorder an entire book</a>.','','none'),(2860,'','default','Create new books','','none'),(2861,'','default','Add content and child pages to books','','none'),(2862,'','default','View printer-friendly books','','none'),(2863,'','default','View a book page and all of its sub-pages as a single document for ease of printing. Can be performance heavy.','','none'),(2864,'','default','<em>Books</em> have a built-in hierarchical navigation. Use for handbooks or tutorials.','','none'),(2865,'','default','Allows users to create and organize related content in an outline.','','none'),(2866,'','default','The Color module allows users with the <em>Administer site configuration</em> permission to quickly and easily change the color scheme of themes that have been built to be compatible with it. For more information, see the online handbook entry for <a href=\"@color\">Color module</a>.','','none'),(2867,'','default','Changing colors','','none'),(2868,'','default','Using the Color module allows you to easily change the color of links, backgrounds, text, and other theme elements. To change the color settings for a compatible theme, select the <em>Settings</em> link for your theme on the <a href=\'@configure\'>Themes administration page</a>. If you don\'t see a color picker on that page, then your theme is not compatible with the color module. If you are sure that the theme does indeed support the color module, but the color picker does not appear, then <a href=\'@troubleshoot\'>follow these troubleshooting procedures</a>.','','none'),(2869,'','default','The Color module saves a modified copy of the theme\'s specified stylesheets in the files directory. This means that if you make any manual changes to your theme\'s stylesheet, <em>you must save your color settings again, even if they haven\'t changed</em>. This step is required because the module stylesheets (in the files directory) need to be recreated to include your changes.','','none'),(2870,'','default','The GD library for PHP is enabled, but was compiled without PNG support. Check the <a href=\"@url\">PHP image documentation</a> for information on how to correct this.','','none'),(2871,'','default','The GD library for PHP is missing or outdated. Check the <a href=\"@url\">PHP image documentation</a> for information on how to correct this.','','none'),(2872,'','default','Allows administrators to change the color scheme of compatible themes.','','none'),(2873,'','default','Select one or more comments to perform the update on.','','none'),(2874,'','default','There do not appear to be any comments to delete, or your selected comment was deleted by another administrator.','','none'),(2875,'','default','Deleted @count comments.','','none'),(2876,'','default','Deleted comment @cid and its replies.','','none'),(2877,'','default','Comment approved.','','none'),(2878,'','default','Tokens for comments posted on the site.','','none'),(2879,'','default','The Comment module allows users to comment on site content, set commenting defaults and permissions, and moderate comments. For more information, see the online handbook entry for <a href=\"@comment\">Comment module</a>.','','none'),(2880,'','default','Default and custom settings','','none'),(2881,'','default','Each <a href=\'@content-type\'>content type</a> can have its own default comment settings configured as: <em>Open</em> to allow new comments, <em>Hidden</em> to hide existing comments and prevent new comments, or <em>Closed</em> to view existing comments, but prevent new comments. These defaults will apply to all new content created (changes to the settings on existing content must be done manually). Other comment settings can also be customized per content type, and can be overridden for any given item of content. When a comment has no replies, it remains editable by its author, as long as the author has a user account and is logged in.','','none'),(2882,'','default','Full comment','','7.59'),(2883,'','default','Unapproved comments (@count)','','7.34'),(2884,'','default','Administer comments and comment settings','','none'),(2885,'','default','Edit own comments','','none'),(2886,'','default','Number of recent comments','','none'),(2887,'','default','Threading','','7.34'),(2888,'','default','Show comment replies in a threaded list.','','7.34'),(2889,'','default','Default comment setting for new content','','7.34'),(2890,'','default','Allow comment title','','7.34'),(2891,'','default','Show reply form on the same page as comments','','7.34'),(2892,'','default','Users with the \"Post comments\" permission can post comments.','','7.34'),(2893,'','default','Users cannot post comments, but existing comments will be displayed.','','7.34'),(2894,'','default','Comments are hidden from view.','','7.34'),(2895,'','default','Users cannot post comments.','','7.34'),(2896,'','default','Your comment has been queued for review by site administrators and will be published after approval.','','none'),(2897,'','default','Your comment has been posted.','','none'),(2898,'','default','<a href=\"@login\">Log in</a> or <a href=\"@register\">register</a> to post comments','','none'),(2899,'','default','<a href=\"@login\">Log in</a> to post comments','','none'),(2900,'','default','Flat list','','none'),(2901,'','default','Threaded list','','none'),(2902,'','default','Save comment','','none'),(2903,'','default','The comment will be unpublished if it contains any of the phrases above. Use a case-sensitive, comma-separated list of phrases. Example: funny, bungee jumping, \"Company, Inc.\"','','none'),(2904,'','default','Published comment %subject.','','none'),(2905,'','default','Saved comment %title','','none'),(2906,'','default','List and edit site comments and the comment approval queue.','','7.34'),(2907,'','default','Unapproved comments','','none'),(2908,'','default','Example: \'webmaster@example.com\' or \'sales@example.com,support@example.com\' . To specify multiple recipients, separate each e-mail address with a comma.','','none'),(2909,'','default','Category %category has been saved.','','none'),(2910,'','default','You cannot send more than %limit messages in @interval. Try again later.','','none'),(2911,'','default','Contact @username','','none'),(2912,'','default','%sender-name (@sender-from) sent an e-mail regarding %category.','','none'),(2913,'','default','%sender-name (@sender-from) sent %recipient-name an e-mail.','','none'),(2914,'','default','The Contact module allows visitors to contact site administrators and other users. Users specify a subject, write their message, and can have a copy of their message sent to their own e-mail address. For more information, see the online handbook entry for <a href=\"@contact\">Contact module</a>.','','none'),(2915,'','default','User contact forms','','none'),(2916,'','default','Site users can be contacted with a user contact form that keeps their e-mail address private. Users may enable or disable their personal contact forms by editing their <em>My account</em> page. If enabled, a <em>Contact</em> tab leads to a personal contact form displayed on their user profile. Site administrators are still able to use the contact form, even if has been disabled. The <em>Contact</em> tab is not shown when you view your own profile.','','none'),(2917,'','default','Site-wide contact forms','','none'),(2918,'','default','The <a href=\"@contact\">Contact page</a> provides a simple form for users with the <em>Use the site-wide contact form</em> permission to send comments, feedback, or other requests. You can create categories for directing the contact form messages to a set of defined recipients. Common categories for a business site, for example, might include \"Website feedback\" (messages are forwarded to website administrators) and \"Product information\" (messages are forwarded to members of the sales department). E-mail addresses defined within a category are not displayed publicly.','','none'),(2919,'','default','When the site-wide contact form is enabled, a link in the main <em>Navigation</em> menu is created, but the link is disabled by default. This menu link can be enabled on the <a href=\'@menu\'>Menus administration page</a>.','','none'),(2920,'','default','Customization','','none'),(2921,'','default','If you would like additional text to appear on the site-wide or personal contact page, use a block. You can create and edit blocks on the <a href=\"@blocks\">Blocks administration page</a>.','','none'),(2922,'','default','Add one or more categories on this page to set up your site-wide <a href=\"@form\">contact form</a>.','','none'),(2923,'','default','A <em>Contact</em> menu item (disabled by default) is added to the Navigation menu, which you can modify on the <a href=\"@menu-settings\">Menus administration page</a>.','','none'),(2924,'','default','If you would like additional text to appear on the site-wide contact page, use a block. You can create and edit blocks on the <a href=\"@blocks\">Blocks administration page</a>.','','none'),(2925,'','default','Administer contact forms and contact form settings','','none'),(2926,'','default','Use the site-wide contact form','','none'),(2927,'','default','Use users\' personal contact forms','','none'),(2928,'','default','!sender-name (!sender-url) sent a message using the contact form at !form-url.','','none'),(2929,'','default','[!site-name] !subject','','none'),(2930,'','default','!sender-name (!sender-url) has sent you a message via your contact form (!form-url) at !site-name.','','none'),(2931,'','default','If you don\'t want to receive such e-mails, you can change your settings at !recipient-edit-url.','','none'),(2932,'','default','Allow other users to contact you via a <a href=\"@url\">personal contact form</a> which keeps your e-mail address hidden. Note that some privileged users such as site administrators are still able to contact you even if you choose to disable this feature.','','none'),(2933,'','default','Enable the personal contact form by default for new users.','','none'),(2934,'','default','Changing this setting will not affect existing users.','','none'),(2935,'','default','The Contextual links module displays links related to regions of pages on your site to users with <em>access contextual links</em> permission. For more information, see the online handbook entry for <a href=\"@contextual\">Contextual links module</a>.','','none'),(2936,'','default','Displaying contextual links','','none'),(2937,'','default','Contextual links are supplied by modules, to give you quick access to tasks associated with regions of pages on your site. For instance, if you have a custom menu block displayed in a sidebar of your site, the Blocks and Menus modules will supply links to configure the block and edit the menu. The Contextual links module collects these links into a list for display by your theme, and also adds JavaScript code to the page to hide the links initially, and display them when your mouse hovers over the block.','','none'),(2938,'','default','Use contextual links','','none'),(2939,'','default','Use contextual links to perform actions related to elements on a page.','','none'),(2940,'','default','Contextual links','','none'),(2941,'','default','Provides contextual links to perform actions related to elements on a page.','','none'),(2942,'','default','Tracking user activity','','none'),(2943,'','default','By enabling blocks such as <em>Who\'s online</em> and <em>Who\'s new</em>, site users can track who is logged in and new user signups at a centralized location.','','none'),(2944,'','default','Tracking content activity','','none'),(2945,'','default','By enabling blocks such as <em>Recent blog posts</em>, <em>New forum topics</em> and <em>Recent comments</em>, site users can view newly added site content at a glance.','','none'),(2946,'','default','View the administrative dashboard','','none'),(2947,'','default','This dashboard region is empty. Click <em>Customize dashboard</em> to add blocks to it.','','7.34'),(2948,'','default','DRAG HERE','','7.34'),(2949,'','default','Provides a dashboard page in the administrative interface for organizing administrative tasks and tracking information within your site.','','none'),(2950,'; modules/dashboard/dashboard.js','default','Customize dashboard','','7.34'),(2951,'','default','Clear log messages','','none'),(2952,'','default','This will permanently remove the log messages from the database.','','none'),(2953,'','default','Database log cleared.','','none'),(2954,'','default','The Database logging module logs system events in the Drupal database. For more information, see the online handbook entry for the <a href=\"@dblog\">Database logging module</a>.','','none'),(2955,'','default','Monitoring your site','','none'),(2956,'','default','Debugging site problems','','none'),(2957,'','default','Field validation errors','','none'),(2958,'','default','Attempt to create a field with a name longer than 32 characters: %name','','none'),(2959,'','default','Attempt to create field name %name which already exists and is active.','','none'),(2960,'','default','Attempt to create field name %name which already exists, although it is inactive.','','none'),(2961,'','default','Attempt to create field name %name which is reserved by entity type %type.','','none'),(2962,'','default','Attempt to create a field of unknown type %type.','','none'),(2963,'','default','Attempt to create a field with unknown storage type %type.','','none'),(2964,'','default','Attempt to create an instance of field @field_name without a bundle.','','none'),(2965,'','default','Enabling field types','','none'),(2966,'','default','The Field module provides the infrastructure for fields and field attachment; the field types and input widgets themselves are provided by additional modules. Some of the modules are required; the optional modules can be enabled from the <a href=\"@modules\">Modules administration page</a>. Drupal core includes the following field type modules: Number (required), Text (required), List (required), Taxonomy (optional), Image (optional), and File (optional); the required Options module provides input widgets for other field modules. Additional fields and widgets may be provided by contributed modules, which you can find in the <a href=\"@contrib\">contributed module section of Drupal.org</a>. Currently enabled field and input widget modules:','','none'),(2967,'','default','Managing field data storage','','none'),(2968,'','default','Developers of field modules can either use the default <a href=\"@sql-store\">Field SQL storage module</a> to store data for their fields, or a contributed or custom module developed using the <a href=\"@storage-api\">field storage API</a>.','','none'),(2969,'','default','The Field SQL storage module stores field data in the database. It is the default field storage module; other field storage mechanisms may be available as contributed modules. See the <a href=\"@field-help\">Field module help page</a> for more information about fields.','','none'),(2970,'','default','Default SQL storage','','7.59'),(2971,'','default','Stores fields in the local SQL database, using per-field tables.','','7.59'),(2972,'','default','Field SQL storage','','none'),(2973,'','default','Stores field data in an SQL database.','','none'),(2974,'','default','The List module defines various fields for storing a list of items, for use with the Field module. Usually these items are entered through a select list, checkboxes, or radio buttons. See the <a href=\"@field-help\">Field module help page</a> for more information about fields.','','none'),(2975,'','default','This field stores simple on/off or yes/no options.','','7.59'),(2976,'','default','List (text)','','7.59'),(2977,'','default','The \'checkboxes/radio buttons\' widget will display checkboxes if the <em>Number of values</em> option is greater than 1 for this field, otherwise radios will be displayed.','','none'),(2978,'','default','Allowed HTML tags in labels: @tags','','none'),(2979,'','default','The value of this field is being determined by the %function function and may not be changed.','','none'),(2980,'','default','Allowed values list: each key must be a valid integer or decimal.','','none'),(2981,'','default','Allowed values list: each key must be a string at most 255 characters long.','','none'),(2982,'','default','Allowed values list: keys must be integers.','','none'),(2983,'','default','Defines list field types. Use with Options to create selection lists.','','none'),(2984,'','default','The Number module defines various numeric field types for the Field module. Numbers can be in integer, decimal, or floating-point form, and they can be formatted when displayed. Number fields can be limited to a specific set of input values or to a range of values. See the <a href=\"@field-help\">Field module help page</a> for more information about fields.','','none'),(2985,'','default','This field stores a number in the database as an integer.','','7.59'),(2986,'','default','This field stores a number in the database in a fixed decimal format.','','7.59'),(2987,'','default','This field stores a number in the database in a floating point format.','','7.59'),(2988,'','default','The minimum value that should be allowed in this field. Leave blank for no minimum.','','none'),(2989,'','default','The maximum value that should be allowed in this field. Leave blank for no maximum.','','none'),(2990,'','default','Define a string that should be prefixed to the value, like \'$ \' or \'&euro; \'. Leave blank for none. Separate singular and plural values with a pipe (\'pound|pounds\').','','none'),(2991,'','default','Only numbers and the decimal separator (@separator) allowed in %field.','','none'),(2992,'','default','The Options module defines checkbox, selection, and other input widgets for the Field module. See the <a href=\"@field-help\">Field module help page</a> for more information about fields.','','none'),(2993,'','default','The Text module defines various text field types for the Field module. A text field may contain plain text only, or optionally, may use Drupal\'s <a href=\'@filter-help\'>text filters</a> to securely manage HTML output. 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, the field can be validated, so that it is limited to a set of allowed values. See the <a href=\'@field-help\'>Field module help page</a> for more information about fields.','','none'),(2994,'','default','This field stores varchar text in the database.','','7.59'),(2995,'','default','Long text','','7.59'),(2996,'','default','This field stores long text in the database.','','7.59'),(2997,'','default','Long text and summary','','7.59'),(2998,'','default','This field stores long text in the database along with optional summary text.','','7.59'),(2999,'','default','Filtered text (user selects text format)','','none'),(3000,'','default','Summary input','','none'),(3001,'','default','This allows authors to input an explicit summary, to be displayed instead of the automatically trimmed text when using the \"Summary or trimmed\" display type.','','none'),(3002,'','default','%name: the text may not be longer than %max characters.','','none'),(3003,'','default','%name: the summary may not be longer than %max characters.','','none'),(3004,'','default','Summary or trimmed','','7.59'),(3005,'','default','Text area with a summary','','7.59'),(3006,'','default','Leave blank to use trimmed value of full text as the summary.','','7.34'),(3007,'; modules/field/modules/text/text.js','default','Hide summary','','none'),(3008,'; modules/field/modules/text/text.js','default','Edit summary','','none'),(3009,'','default','%field (@field_name) field requires the %widget_type widget provided by %widget_module module','','none'),(3010,'','default','Inactive fields are not shown unless their providing modules are enabled. The following fields are not enabled: !list','','none'),(3011,'','default','Edit field settings.','','7.34'),(3012,'','default','Change widget type.','','7.34'),(3013,'','default','Edit instance settings.','','7.34'),(3014,'','default','Delete instance.','','7.34'),(3015,'','default','The field %label cannot be added because it is locked.','','none'),(3016,'','default','There was a problem creating field instance %label: @message.','','none'),(3017,'','default','There are no fields yet added. You can add new fields on the <a href=\"@link\">Manage fields</a> page.','','none'),(3018,'','default','These settings apply to the %field field everywhere it is used. These settings impact the way that data is stored in the database and cannot be changed once data has been created.','','none'),(3019,'','default','%field has no field settings.','','none'),(3020,'','default','Updated field %label field settings.','','none'),(3021,'','default','Attempt to update field %label failed: %message.','','none'),(3022,'','default','Change widget','','none'),(3023,'','default','The type of form element you would like to present to the user when creating this field in the %type type.','','none'),(3024,'','default','Changed the widget for field %label.','','none'),(3025,'','default','There was a problem changing the widget for field %label.','','none'),(3026,'','default','This field is <strong>locked</strong> and cannot be deleted.','','none'),(3027,'','default','The field %field has been deleted from the %type content type.','','none'),(3028,'','default','There was a problem removing the %field from the %type content type.','','none'),(3029,'','default','These settings apply only to the %field field when used in the %type type.','','none'),(3030,'','default','Required field','','none'),(3031,'','default','These settings apply to the %field field everywhere it is used. Because the field already has data, some settings can no longer be changed.','','none'),(3032,'','default','These settings apply to the %field field everywhere it is used.','','none'),(3033,'','default','%field field settings','','none'),(3034,'','default','The default value for this field, used when creating new content.','','none'),(3035,'','default','Saved %label configuration.','','none'),(3036,'','default','This list shows all fields currently in use for easy reference.','','none'),(3037,'','default','Save and add fields','','none'),(3038,'','default','Field list','','7.34'),(3039,'','default','Manage display','','7.34'),(3040,'','default','Field UI','','none'),(3041,'','default','This field stores the ID of a file as an integer value.','','7.59'),(3042,'','default','Enable <em>Display</em> field','','none'),(3043,'','default','The display option allows users to choose if a file should be shown when viewing the content.','','none'),(3044,'','default','Files displayed by default','','none'),(3045,'','default','This setting only has an effect if the display option is enabled.','','none'),(3046,'','default','Upload destination','','none'),(3047,'','default','Select where the final files should be stored. Private file storage has significantly more overhead than public files, but allows restricted access to files within this field.','','none'),(3048,'','default','Optional subdirectory within the upload destination where files will be stored. Do not include preceding or trailing slashes.','','none'),(3049,'','default','Enter a value like \"512\" (bytes), \"80 KB\" (kilobytes) or \"50 MB\" (megabytes) in order to restrict the allowed file size. If left empty the file sizes will be limited only by PHP\'s maximum post and file upload sizes (current limit <strong>%limit</strong>).','','none'),(3050,'','default','Enable <em>Description</em> field','','none'),(3051,'','default','The description field allows users to enter a description about the uploaded file.','','none'),(3052,'','default','The \"!name\" option must contain a valid value. You may either leave the text field empty or enter a string like \"512\" (bytes), \"80 KB\" (kilobytes) or \"50 MB\" (megabytes).','','none'),(3053,'','default','The list of allowed extensions is not valid, be sure to exclude leading dots and to separate extensions with a comma or space.','','none'),(3054,'','default','Generic file','','7.59'),(3055,'','default','Table of files','','7.59'),(3056,'','default','Add a new file','','none'),(3057,'','default','Include file in display','','none'),(3058,'','default','The description may be used as the label of the link to the file.','','none'),(3059,'','default','Files must be less than !size.','','none'),(3060,'','default','Allowed file types: !extensions.','','none'),(3061,'','default','Images must be exactly !size pixels.','','none'),(3062,'','default','Images must be between !min and !max pixels.','','none'),(3063,'','default','Images must be larger than !min pixels.','','none'),(3064,'','default','Images must be smaller than !max pixels.','','none'),(3065,'','default','The File module defines a <em>File</em> field type for the Field module, which lets you manage and validate uploaded files attached to content on your site (see the <a href=\"@field-help\">Field module help page</a> for more information about fields). For more information, see the online handbook entry for <a href=\"@file\">File module</a>.','','none'),(3066,'','default','Attaching files to content','','none'),(3067,'','default','The File module allows users to attach files to content (e.g., PDF files, spreadsheets, etc.), when a <em>File</em> field is added to a given content type using the <a href=\"@fieldui-help\">Field UI module</a>. You can add validation options to your File field, such as specifying a maximum file size and allowed file extensions.','','none'),(3068,'','default','Managing attachment display','','none'),(3069,'','default','When you attach a file to content, you can specify whether it is <em>listed</em> or not. Listed files are displayed automatically in a section at the bottom of your content; non-listed files are available for embedding in your content, but are not included in the list at the bottom.','','none'),(3070,'','default','Managing file locations','','none'),(3071,'','default','When you create a File field, you can specify a directory where the files will be stored, which can be within either the <em>public</em> or <em>private</em> files directory. Files in the public directory can be accessed directly through the web server; when public files are listed, direct links to the files are used, and anyone who knows a file\'s URL can download the file. Files in the private directory are not accessible directly through the web server; when private files are listed, the links are Drupal path requests. This adds to server load and download time, since Drupal must start up and resolve the path for each file download request, but allows for access restrictions.','','none'),(3072,'','default','An unrecoverable error occurred. Use of this form has expired. Try reloading the page and submitting again.','','none'),(3073,'','default','The file referenced by the !name field does not exist.','','none'),(3074,'','default','The file in the !name field was unable to be uploaded.','','none'),(3075,'','default','The upload directory %directory for the file field !name could not be created or is not accessible. A newly uploaded file could not be saved in this directory as a consequence, and the upload was canceled.','','none'),(3076,'','default','Your server is not capable of displaying file upload progress. File upload progress requires an Apache server running PHP with mod_php.','','none'),(3077,'','default','All roles may use this format','','none'),(3078,'','default','The text format ordering has been saved.','','none'),(3079,'','default','Add text format','','7.34'),(3080,'','default','All roles for this text format must be enabled and cannot be changed.','','none'),(3081,'','default','Filter processing order','','none'),(3082,'','default','Text format names must be unique. A format named %name already exists.','','none'),(3083,'','default','Added text format %format.','','none'),(3084,'','default','The text format %format has been updated.','','none'),(3085,'','default','Text formats','','7.59'),(3086,'','default','The Filter module allows administrators to configure text formats. A text format defines the HTML tags, codes, and other input allowed in content and comments, and is a key feature in guarding against potentially damaging input from malicious users. For more information, see the online handbook entry for <a href=\"@filter\">Filter module</a>.','','none'),(3087,'','default','Applying filters to text','','none'),(3088,'','default','Each text format uses filters to manipulate text, and most formats apply several different filters to text in a specific order. Each filter is designed for a specific purpose, and generally either adds, removes, or transforms elements within user-entered text before it is displayed. A filter does not change the actual content, but instead, modifies it temporarily before it is displayed. One filter may remove unapproved HTML tags, while another automatically adds HTML to make URLs display as clickable links.','','none'),(3089,'','default','Defining text formats','','none'),(3090,'','default','One format is included by default: <em>Plain text</em> (which removes all HTML tags). Additional formats may be created by your installation profile when you install Drupal, and more can be created by an administrator on the <a href=\"@text-formats\">Text formats page</a>.','','none'),(3091,'','default','Choosing a text format','','none'),(3092,'','default','A text format contains filters that change the user input, for example stripping out malicious HTML or making URLs clickable. Filters are executed from top to bottom and the order is important, since one filter may prevent another filter from doing its job. For example, when URLs are converted into links before disallowed HTML tags are removed, all links may be removed. When this happens, the order of filters may need to be re-arranged.','','none'),(3093,'','default','Warning: This permission may have security implications depending on how the text format is configured.','','none'),(3094,'','default','Use the !text_format text format','','none'),(3095,'','default','More information about text formats','','7.34'),(3096,'','default','Limit allowed HTML tags','','7.59'),(3097,'','default','Convert line breaks into HTML (i.e. <code>&lt;br&gt;</code> and <code>&lt;p&gt;</code>)','','7.59'),(3098,'','default','Convert URLs into links','','7.59'),(3099,'','default','Correct faulty and chopped off HTML','','7.59'),(3100,'','default','Display any HTML as plain text','','7.59'),(3101,'','default','A list of HTML tags that can be used. JavaScript event attributes, JavaScript URLs, and CSS are always stripped.','','none'),(3102,'','default','Display basic HTML help in long filter tips','','none'),(3103,'','default','Add rel=\"nofollow\" to all links','','none'),(3104,'','default','This site allows HTML content. While learning all of HTML may feel intimidating, learning how to use a very small number of the most basic HTML \"tags\" is very easy. This table provides examples for each tag that is enabled on this site.','','none'),(3105,'','default','For more information see W3C\'s <a href=\"@html-specifications\">HTML Specifications</a> or use your favorite search engine to find other sites that explain HTML.','','none'),(3106,'','default','Most unusual characters can be directly entered without any problems.','','none'),(3107,'','default','If you do encounter problems, try using HTML character entities. A common example looks like &amp;amp; for an ampersand &amp; character. For a full list of entities see HTML\'s <a href=\"@html-entities\">entities</a> page. Some of the available characters include:','','none'),(3108,'','default','No HTML tags allowed.','','7.34'),(3109,'','default','Filters content in preparation for display.','','none'),(3110,'','default','By !author @time ago','','none'),(3111,'','default','The forum %term and all sub-forums have been deleted.','','none'),(3112,'','default','The number of replies a topic must have to be considered \"hot\".','','7.59'),(3113,'','default','No containers or forums available. <a href=\"@container\">Add container</a> or <a href=\"@forum\">Add forum</a>.','','none'),(3114,'','default','forum: deleted %term and all its sub-forums.','','none'),(3115,'','default','The Forum module lets you create threaded discussion forums with functionality similar to other message board systems. Forums are useful because they allow community members to discuss topics with one another while ensuring those conversations are archived for later reference. In a forum, users post topics and threads in nested hierarchies, allowing discussions to be categorized and grouped. The forum hierarchy consists of:','','none'),(3116,'','default','Optional containers (for example, <em>Support</em>), which can hold:','','none'),(3117,'','default','Forums (for example, <em>Installing Drupal</em>), which can hold:','','none'),(3118,'','default','Forum topics submitted by users (for example, <em>How to start a Drupal 6 Multisite</em>), which start discussions and are starting points for:','','none'),(3119,'','default','Threaded comments submitted by users (for example, <em>You have these options...</em>).','','none'),(3120,'','default','Setting up forum structure','','none'),(3121,'','default','Visit the <a href=\"@forums\">Forums page</a> to set up containers and forums to hold your discussion topics.','','none'),(3122,'','default','Starting a discussion','','none'),(3123,'','default','The <a href=\"@create-topic\">Forum topic</a> link on the <a href=\"@content-add\">Add new content</a> page creates the first post of a new threaded discussion, or thread.','','none'),(3124,'','default','Enabling the Forum module provides a default <em>Forums</em> menu item in the navigation menu that links to the <a href=\"@forums\">Forums page</a>.','','none'),(3125,'','default','Moving forum topics','','none'),(3126,'','default','A forum topic (and all of its comments) may be moved between forums by selecting a different forum while editing a forum topic. When moving a forum topic between forums, the <em>Leave shadow copy</em> option creates a link in the original forum pointing to the new location.','','none'),(3127,'','default','Locking and disabling comments','','none'),(3128,'','default','Selecting <em>Closed</em> under <em>Comment settings</em> while editing a forum topic will lock (prevent new comments on) the thread. Selecting <em>Hidden</em> under <em>Comment settings</em> while editing a forum topic will hide all existing comments on the thread, and prevent new ones.','','none'),(3129,'','default','Forums contain forum topics. Use containers to group related forums.','','none'),(3130,'','default','Use containers to group related forums.','','none'),(3131,'','default','A forum holds related forum topics.','','none'),(3132,'','default','Adjust the display of your forum topics. Organize the forums on the <a href=\"@forum-structure\">forum structure page</a>.','','none'),(3133,'','default','Add new @node_type','','none'),(3134,'','default','<a href=\"@login\">Log in</a> to post new content in the forum.','','7.34'),(3135,'','default','The item %forum is a forum container, not a forum. Select one of the forums below instead.','','none'),(3136,'','default','A <em>forum topic</em> starts a new discussion thread within a forum.','','7.59'),(3137,'','default','Control forum hierarchy settings.','','7.34'),(3138,'','default','Forum navigation vocabulary','','7.59'),(3139,'','default','Provides discussion forums.','','none'),(3140,'','default','Follow these steps to set up and start using your website:','','none'),(3141,'','default','<strong>Start posting content</strong> Finally, you can <a href=\"@content\">add new content</a> for your website.','','none'),(3142,'','default','For more information, refer to the specific topics listed in the next section or to the <a href=\"@handbook\">online Drupal handbooks</a>. You may also post at the <a href=\"@forum\">Drupal forum</a> or view the wide range of <a href=\"@support\">other support options</a> available.','','none'),(3143,'','default','The Help module provides <a href=\"@help-page\">Help reference pages</a> and context-sensitive advice to guide you through the use and configuration of modules. It is a starting point for the online <a href=\"@handbook\">Drupal handbooks</a>. The handbooks contain more extensive and up-to-date information, are annotated with user-contributed comments, and serve as the definitive reference point for all Drupal documentation. For more information, see the online handbook entry for the <a href=\"@help\">Help module</a>.','','none'),(3144,'','default','Providing a help reference','','none'),(3145,'','default','The Help module displays explanations for using each module listed on the main <a href=\"@help\">Help reference page</a>.','','none'),(3146,'','default','Providing context-sensitive help','','none'),(3147,'','default','The Help module displays context-sensitive advice and explanations on various pages.','','none'),(3148,'','default','Edit %name style','','none'),(3149,'','default','This image style is currently being provided by a module. Click the \"Override defaults\" button to change its settings.','','none'),(3150,'','default','Image style name','','none'),(3151,'','default','The name is used in URLs for generated images. Use only lowercase alphanumeric characters, underscores (_), and hyphens (-).','','none'),(3152,'','default','Select a new effect','','none'),(3153,'','default','Override defaults','','none'),(3154,'','default','Update style','','none'),(3155,'','default','Select an effect to add.','','none'),(3156,'','default','The image effect was successfully applied.','','none'),(3157,'','default','The %style style has been overridden, allowing you to change its settings.','','none'),(3158,'','default','Style name','','none'),(3159,'','default','Create new style','','none'),(3160,'','default','Style %name was created.','','none'),(3161,'','default','The image style name %name is already in use.','','none'),(3162,'','default','Please only use lowercase alphanumeric characters, underscores (_), and hyphens (-) for style names.','','none'),(3163,'','default','No replacement, just delete','','none'),(3164,'','default','Replacement style','','none'),(3165,'','default','Optionally select a style before deleting %style','','none'),(3166,'','default','If this style is in use on the site, you may select another style to replace it. All images that have been generated for this style will be permanently deleted.','','none'),(3167,'','default','Style %name was deleted.','','none'),(3168,'','default','Revert the %style style?','','none'),(3169,'','default','Reverting this style will delete the customized settings and restore the defaults provided by the @module module.','','none'),(3170,'','default','Edit %label effect','','none'),(3171,'','default','Add %label effect','','none'),(3172,'','default','Update effect','','none'),(3173,'','default','Add effect','','none'),(3174,'','default','Are you sure you want to delete the @effect effect from the %style style?','','none'),(3175,'','default','The image effect %name has been deleted.','','none'),(3176,'','default','!name must be an integer.','','none'),(3177,'','default','!name must be a positive integer.','','none'),(3178,'','default','!name must be a hexadecimal color value.','','none'),(3179,'','default','Width and height can not both be blank.','','none'),(3180,'','default','The part of the image that will be retained during the crop.','','none'),(3181,'','default','The background color to use for exposed areas of the image. Use web-style hex colors (#FFFFFF for white, #000000 for black). Leave blank for transparency on image types that support it.','','none'),(3182,'','default','There are currently no styles. <a href=\"!url\">Add a new one</a>.','','none'),(3183,'','default','There are currently no effects in this style. Add one by selecting an option below.','','none'),(3184,'','default','view actual size','','none'),(3185,'','default','Sample original image','','none'),(3186,'','default','Sample modified image','','none'),(3187,'','default','Resizing will make images an exact set of dimensions. This may cause images to be stretched or shrunk disproportionately.','','7.59'),(3188,'','default','Scaling will maintain the aspect-ratio of the original image. If only a single dimension is specified, the other dimension will be calculated.','','7.59'),(3189,'','default','Scale and crop','','7.59'),(3190,'','default','Scale and crop will maintain the aspect-ratio of the original image, then crop the larger dimension. This is most useful for creating perfectly square thumbnails without stretching the image.','','7.59'),(3191,'','default','Cropping will remove portions of an image to make it the specified dimensions.','','7.59'),(3192,'','default','Desaturate','','7.59'),(3193,'','default','Desaturate converts an image to grayscale.','','7.59'),(3194,'','default','Rotating an image may cause the dimensions of an image to increase to fit the diagonal.','','7.59'),(3195,'','default','Image resize failed using the %toolkit toolkit on %path (%mimetype, %dimensions)','','none'),(3196,'','default','Image scale failed using the %toolkit toolkit on %path (%mimetype, %dimensions)','','none'),(3197,'','default','Image crop failed using the %toolkit toolkit on %path (%mimetype, %dimensions)','','none'),(3198,'','default','Image scale and crop failed using the %toolkit toolkit on %path (%mimetype, %dimensions)','','none'),(3199,'','default','Image desaturate failed using the %toolkit toolkit on %path (%mimetype, %dimensions)','','none'),(3200,'','default','Image rotate failed using the %toolkit toolkit on %path (%mimetype, %dimensions)','','none'),(3201,'','default','This field stores the ID of an image file as an integer value.','','7.59'),(3202,'','default','If no image is uploaded, this image will be shown on display.','','none'),(3203,'','default','The maximum allowed image size expressed as WIDTHxHEIGHT (e.g. 640x480). Leave blank for no restriction. If a larger image is uploaded, it will be resized to reflect the given width and height. Resizing images on upload will cause the loss of <a href=\"http://en.wikipedia.org/wiki/Exchangeable_image_file_format\">EXIF data</a> in the image.','','none'),(3204,'','default','Minimum image resolution','','none'),(3205,'','default','The minimum allowed image size expressed as WIDTHxHEIGHT (e.g. 640x480). Leave blank for no restriction. If a smaller image is uploaded, it will be rejected.','','none'),(3206,'','default','Enable <em>Alt</em> field','','none'),(3207,'','default','The alt attribute may be used by search engines, screen readers, and when the image cannot be loaded.','','none'),(3208,'','default','Enable <em>Title</em> field','','none'),(3209,'','default','The title attribute is used as a tooltip when the mouse hovers over the image.','','none'),(3210,'','default','Height and width values must be numeric.','','none'),(3211,'','default','Both a height and width value must be specified in the !name field.','','none'),(3212,'','default','Preview image style','','none'),(3213,'','default','no preview','','none'),(3214,'','default','The preview image will be shown while editing the content.','','none'),(3215,'','default','The Image module allows you to manipulate images on your website. It exposes a setting for using the <em>Image toolkit</em>, allows you to configure <em>Image styles</em> that can be used for resizing or adjusting images on display, and provides an <em>Image</em> field for attaching images to content. For more information, see the online handbook entry for <a href=\"@image\">Image module</a>.','','none'),(3216,'','default','Manipulating images','','none'),(3217,'','default','With the Image module you can scale, crop, resize, rotate and desaturate images without affecting the original image using <a href=\"@image\">image styles</a>. When you change an image style, the module automatically refreshes all created images. Every image style must have a name, which will be used in the URL of the generated images. There are two common approaches to naming image styles (which you use will depend on how the image style is being applied):','','none'),(3218,'','default','Based on where it will be used: eg. <em>profile-picture</em>','','none'),(3219,'','default','Describing its appearance: eg. <em>square-85x85</em>','','none'),(3220,'','default','Attaching images to content as fields','','none'),(3221,'','default','Image module also allows you to attach images to content as fields. To add an image field to a <a href=\'@content-type\'>content type</a>, go to the content type\'s <em>manage fields</em> page, and add a new field of type <em>Image</em>. Attaching images to content this way allows image styles to be applied and maintained, and also allows you more flexibility when theming.','','none'),(3222,'','default','Image styles commonly provide thumbnail sizes by scaling and cropping images, but can also add various effects before an image is displayed. When an image is displayed with a style, a new file is created and the original image is left unchanged.','','none'),(3223,'','default','Administer image styles','','none'),(3224,'','default','Create and modify styles for generating image modifications such as thumbnails.','','none'),(3225,'','default','No defined styles','','none'),(3226,'','default','Image generation in progress. Try again shortly.','','none'),(3227,'','default','Error generating image.','','none'),(3228,'','default','Unable to generate the derived image located at %path.','','none'),(3229,'','default','Failed to create style directory: %directory','','none'),(3230,'','default','Cached image file %destination already exists. There may be an issue with your rewrite configuration.','','none'),(3231,'','default','Generate image style','','7.59'),(3232,'','default','Image styles','','7.59'),(3233,'','default','Configure styles that can be used for resizing or adjusting images on display.','','7.59'),(3234,'','default','List the current image styles on the site.','','7.34'),(3235,'','default','Add style','','7.34'),(3236,'','default','Add a new image style.','','7.34'),(3237,'','default','Configure an image style.','','none'),(3238,'','default','Delete an image style.','','none'),(3239,'','default','Revert style','','none'),(3240,'','default','Revert an image style.','','none'),(3241,'','default','Edit image effect','','none'),(3242,'','default','Delete image effect','','none'),(3243,'','default','Add image effect','','none'),(3244,'','default','Add a new effect to a style.','','none'),(3245,'','default','Provides image manipulation tools.','','none'),(3246,'','default','Use the <em>Custom language</em> section below if your desired language does not appear in this list.','','none'),(3247,'','default','Path prefix language code','','7.34'),(3248,'','default','Language code or other custom text to use as a path prefix for URL language detection, if your <em>Detection and selection</em> settings use URL path prefixes. For the default language, this value may be left blank. <strong>Modifying this value may break existing URLs. Use with caution in a production environment.</strong> Example: Specifying \"deutsch\" as the path prefix code for German results in URLs like \"example.com/deutsch/contact\".','','7.34'),(3249,'','default','Detection method','','none'),(3250,'','default','Part of the URL that determines language','','none'),(3251,'','default','<em>Path prefix</em>: URLs like http://example.com/de/contact set language to German (de). <em>Domain</em>: URLs like http://de.example.com/contact set the language to German. <strong>Warning: Changing this setting may break incoming URLs. Use with caution on a production site.</strong>','','none'),(3252,'','default','Request/session parameter','','none'),(3253,'','default','Name of the request/session parameter used to determine the desired language.','','none'),(3254,'','default','Filter translatable strings','','none'),(3255,'','default','Date type','','7.34'),(3256,'','default','Are you sure you want to reset the date formats for %language to the global defaults?','','none'),(3257,'','default','Resetting will remove all localized date formats for this language. This action cannot be undone.','','none'),(3258,'','default','The Locale module allows your Drupal site to be presented in languages other than the default English, and to be multilingual. The Locale module works by maintaining a database of translations, and examining text as it is about to be displayed. When a translation of the text is available in the language to be displayed, the translation is displayed rather than the original text. When a translation is unavailable, the original text is displayed, and then stored for review by a translator. For more information, see the online handbook entry for <a href=\"@locale\">Locale module</a>.','','none'),(3259,'','default','Translating interface text','','none'),(3260,'','default','Translations of text in the Drupal interface may be provided by:','','none'),(3261,'','default','Translating within your site, using the Locale module\'s integrated <a href=\'@translate\'>translation interface</a>.','','none'),(3262,'','default','Importing files from a set of existing translations, known as a translation package. A translation package enables the display of a specific version of Drupal in a specific language, and contains files in the Gettext Portable Object (<em>.po</em>) format. Although not all languages are available for every version of Drupal, translation packages for many languages are available for download from the <a href=\"@translations\">Drupal translations page</a>.','','none'),(3263,'','default','If an existing translation package does not meet your needs, the Gettext Portable Object (<em>.po</em>) files within a package may be modified, or new <em>.po</em> files may be created, using a desktop Gettext editor. The Locale module\'s <a href=\'@import\'>import</a> feature allows the translated strings from a new or modified <em>.po</em> file to be added to your site. The Locale module\'s <a href=\'@export\'>export</a> feature generates files from your site\'s translated strings, that can either be shared with others or edited offline by a Gettext translation editor.','','none'),(3264,'','default','Configuring a multilingual site','','none'),(3265,'','default','Language negotiation allows your site to automatically change language based on the domain or path used for each request. Users may (optionally) select their preferred language on their <em>My account</em> page, and your site can be configured to honor a web browser\'s preferred language settings. Site content can be translated using the <a href=\'@content-help\'>Content translation module</a>.','','none'),(3266,'','default','With multiple languages enabled, interface text can be translated, registered users may select their preferred language, and authors can assign a specific language to content. <a href=\"@translations\">Download contributed translations</a> from Drupal.org.','','7.34'),(3267,'','default','Add a language to be supported by your site. If your desired language is not available in the <em>Language name</em> drop-down, click <em>Custom language</em> and provide a language code and other details manually. When providing a language code manually, be sure to enter a standardized language code, since this code may be used by browsers to determine an appropriate display language.','','none'),(3268,'','default','Determine the language from a request/session parameter. Example: \"http://example.com?language=de\" sets language to German based on the use of \"de\" within the \"language\" parameter.','','none'),(3269,'','default','See the <a href=\"@languages\">Languages page</a> for more information on adding support for additional languages.','','none'),(3270,'','default','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 offline editing in a Gettext translation editor. Importing an individual <em>.po</em> file may be a lengthy process.','','none'),(3271,'','default','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 offline editing in a desktop Gettext translation editor.) Searches may be limited to strings found within a specific text group or in a specific language.','','none'),(3272,'','default','Administer languages','','none'),(3273,'','default','Translate interface texts','','none'),(3274,'','default','Order of language detection methods for content. If a version of content is available in the detected language, it will be displayed.','','7.59'),(3275,'','default','Order of language detection methods for user interface text. If a translation of user interface text is available in the detected language, it will be displayed.','','7.59'),(3276,'','default','Determine the language from the URL (Path prefix or domain).','','none'),(3277,'','default','Determine the language from a request/session parameter.','','none'),(3278,'','default','Follow the user\'s language preference.','','none'),(3279,'','default','Determine the language from the browser\'s language settings.','','none'),(3280,'','default','Language switcher (@type)','','7.59'),(3281,'','default','Detection and selection','','7.34'),(3282,'','default','URL language detection configuration','','7.34'),(3283,'','default','Session language detection configuration','','7.34'),(3284,'','default','Localize','','7.34'),(3285,'','default','Localize date formats','','none'),(3286,'','default','Reset date formats','','none'),(3287,'','default','Reset localized date formats to global defaults','','none'),(3288,'','default','January','Long month name','none'),(3289,'','default','February','Long month name','none'),(3290,'','default','March','Long month name','none'),(3291,'','default','April','Long month name','none'),(3292,'','default','May','Long month name','none'),(3293,'','default','June','Long month name','none'),(3294,'','default','July','Long month name','none'),(3295,'','default','August','Long month name','none'),(3296,'','default','September','Long month name','7.31'),(3297,'','default','October','Long month name','none'),(3298,'','default','November','Long month name','none'),(3299,'','default','December','Long month name','none'),(3300,'','default','add link','','7.34'),(3301,'','default','There are no menu links yet. <a href=\"@link\">Add link</a>.','','none'),(3302,'','default','The text to be used for this link in the menu.','','7.34'),(3303,'','default','The path for this menu link. This can be an internal Drupal path such as %add-node or an external URL such as %drupal. Enter %front to link to the front page.','','7.34'),(3304,'','default','Menu links that are not enabled will not be listed in any menu.','','7.34'),(3305,'','default','Show as expanded','','7.34'),(3306,'','default','If selected and this menu link has children, the menu will always appear expanded.','','7.34'),(3307,'','default','Parent link','','7.34'),(3308,'','default','The maximum depth for a link and all its children is fixed at !maxdepth. Some menu links may not be available as parents if selecting them would exceed this limit.','','7.34'),(3309,'','default','Optional. In the menu, the heavier links will sink and the lighter links will be positioned nearer the top.','','7.34'),(3310,'','default','Are you sure you want to delete the custom menu link %item?','','7.34'),(3311,'','default','The menu link %title has been deleted.','','7.34'),(3312,'','default','Are you sure you want to reset the link %item to its default values?','','none'),(3313,'','default','The menu link was reset to its default settings.','','none'),(3314,'','default','No Main links','','7.59'),(3315,'','default','Source for the Main links','','7.59'),(3316,'','default','Select what should be displayed as the Main links (typically at the top of the page).','','7.59'),(3317,'','default','No Secondary links','','7.59'),(3318,'','default','Source for the Secondary links','','7.59'),(3319,'','default','Select the source for the Secondary links. An advanced option allows you to use the same source for both Main links (currently %main) and Secondary links: if your source menu has two levels of hierarchy, the top level menu links will appear in the Main links, and the children of the active link will appear in the Secondary links.','','none'),(3320,'','default','Deleted custom menu %title and all its menu links.','','none'),(3321,'','default','Deleted menu link %title.','','none'),(3322,'','default','<strong>Warning:</strong> There is currently 1 menu link in %title. It will be deleted (system-defined items will be reset).','','none'),(3323,'','default','<strong>Warning:</strong> There are currently @count menu links in %title. They will be deleted (system-defined links will be reset).','','none'),(3324,'','default','Managing menus','','none'),(3325,'','default','Users with the <em>Administer menus and menu items</em> permission can add, edit and delete custom menus on the <a href=\"@menu\">Menus administration page</a>. Custom menus can be special site menus, menus of external links, or any combination of internal and external links. You may create an unlimited number of additional menus, each of which will automatically have an associated block. By selecting <em>list links</em>, you can add, edit, or delete links for a given menu. The links listing page provides a drag-and-drop interface for controlling the order of links, and creating a hierarchy within the menu.','','none'),(3326,'','default','Displaying menus','','none'),(3327,'','default','After you have created a menu, you must enable and position the associated block on the <a href=\"@blocks\">Blocks administration page</a>.','','none'),(3328,'','default','You can enable the newly-created block for this menu on the <a href=\"@blocks\">Blocks administration page</a>.','','none'),(3329,'','default','Each menu has a corresponding block that is managed on the <a href=\"@blocks\">Blocks administration page</a>.','','7.34'),(3330,'','default','Administer menus and menu items','','none'),(3331,'','default','Provide a menu link','','7.34'),(3332,'','default','Menu links with smaller weights are displayed before links with larger weights.','','7.34'),(3333,'','default','Available menus','','7.34'),(3334,'','default','The menus available to place links in for this content type.','','7.34'),(3335,'','default','Default parent item','','7.34'),(3336,'','default','Choose the menu item to be the default parent for a new link in the content authoring form.','','7.34'),(3337,'','default','Add new menus to your site, edit existing menus, and rename and reorganize menu links.','','7.34'),(3338,'','default','Parent menu items','','none'),(3339,'','default','Edit menu link','','7.34'),(3340,'','default','Reset menu link','','none'),(3341,'','default','Delete menu link','','7.34'),(3342,'','default','The <em>Navigation</em> menu contains links intended for site visitors. Links are added to the <em>Navigation</em> menu automatically by some modules.','','none'),(3343,'','default','The <em>User</em> menu contains links related to the user\'s account, as well as the \'Log out\' link.','','none'),(3344,'','default','The <em>Management</em> menu contains links for administrative tasks.','','none'),(3345,'','default','The <em>Main</em> menu is used on many sites to show the major sections of the site, often in a top navigation bar.','','none'),(3346,'','default','manage display','','7.34'),(3347,'','default','No content types available. <a href=\"@link\">Add content type</a>.','','7.34'),(3348,'','default','The human-readable name of this content type. This text will be displayed as part of the list on the <em>Add new content</em> page. It is recommended that this name begin with a capital letter and contain only letters, numbers, and spaces. This name must be unique.','','7.34'),(3349,'','default','Describe this content type. The text will be displayed on the <em>Add new content</em> page.','','7.34'),(3350,'','default','Preview before submitting','','7.59'),(3351,'','default','This text will be displayed at the top of the page when creating or editing content of this type.','','7.34'),(3352,'','default','Users with the <em>Administer content</em> permission will be able to override these options.','','7.34'),(3353,'','default','Display author and date information.','','7.59'),(3354,'','default','Author username and publish date will be displayed.','','7.59'),(3355,'','default','Invalid machine-readable name. Enter a name other than %invalid.','','none'),(3356,'','default','%type is used by 1 piece of content on your site. If you remove this content type, you will not be able to edit the %type content and it may not display correctly.','','none'),(3357,'','default','%type is used by @count pieces of content on your site. If you remove %type, you will not be able to edit the %type content and it may not display correctly.','','none'),(3358,'','default','Publish selected content','','7.34'),(3359,'','default','Unpublish selected content','','7.34'),(3360,'','default','Promote selected content to front page','','7.34'),(3361,'','default','Demote selected content from front page','','7.34'),(3362,'','default','Make selected content sticky','','7.34'),(3363,'','default','Make selected content not sticky','','7.34'),(3364,'','default','Delete selected content','','7.34'),(3365,'','default','Deleted @count posts.','','none'),(3366,'','default','Are you sure you want to delete this item?','','none'),(3367,'','default','Are you sure you want to delete these items?','','none'),(3368,'','default','<em>Edit @type</em> @title','','7.34'),(3369,'','default','You have not created any content types yet. Go to the <a href=\"@create-content\">content type creation page</a> to add a new content type.','','none'),(3370,'','default','Revision log message','','7.59'),(3371,'','default','Provide an explanation of the changes you are making. This will help other authors understand your motivations.','','7.34'),(3372,'','default','Tokens related to individual content items, or \"nodes\".','','none'),(3373,'','default','The unique ID of the content item, or \"node\".','','none'),(3374,'','default','The main body text of the node.','','none'),(3375,'','default','The summary of the node\'s main body text.','','none'),(3376,'','default','The content access permissions need to be rebuilt. <a href=\"@node_access_rebuild\">Rebuild permissions</a>.','','none'),(3377,'','default','The Node module manages the creation, editing, deletion, settings, and display of the main site content. Content items managed by the Node module are typically displayed as pages on your site, and include a title, some meta-data (author, creation time, content type, etc.), and optional fields containing text or other data (fields are managed by the <a href=\"@field\">Field module</a>). For more information, see the online handbook entry for <a href=\"@node\">Node module</a>.','','none'),(3378,'','default','Creating content','','none'),(3379,'','default','When new content is created, the Node module records basic information about the content, including the author, date of creation, and the <a href=\"@content-type\">Content type</a>. It also manages the <em>publishing options</em>, which define whether or not the content is published, promoted to the front page of the site, and/or sticky at the top of content lists. Default settings can be configured for each <a href=\"@content-type\">type of content</a> on your site.','','none'),(3380,'','default','Creating custom content types','','none'),(3381,'','default','The Node module gives users with the <em>Administer content types</em> permission the ability to <a href=\"@content-new\">create new content types</a> in addition to the default ones already configured. Creating custom content types allows you the flexibility to add <a href=\"@field\">fields</a> and configure default settings that suit the differing needs of various site content.','','none'),(3382,'','default','Administering content','','none'),(3383,'','default','The <a href=\"@content\">Content administration page</a> allows you to review and bulk manage your site content.','','none'),(3384,'','default','Creating revisions','','none'),(3385,'','default','The Node module also enables you to create multiple versions of any content, and revert to older versions using the <em>Revision information</em> settings.','','none'),(3386,'','default','User permissions','','none'),(3387,'','default','The Node module makes a number of permissions available for each content type, which can be set by role on the <a href=\"@permissions\">permissions page</a>.','','none'),(3388,'','default','Individual content types can have different fields, behaviors, and permissions assigned to them.','','none'),(3389,'','default','Content items can be displayed using different view modes: Teaser, Full content, Print, RSS, etc. <em>Teaser</em> is a short format that is typically used in lists of multiple content items. <em>Full content</em> is typically used when the content is displayed on its own page.','','7.34'),(3390,'','default','Here, you can define which fields are shown and hidden when %type content is displayed in each view mode, and define how the fields are displayed in each view mode.','','7.34'),(3391,'','default','Revisions allow you to track differences between multiple versions of your content, and revert back to older versions.','','none'),(3392,'','default','Full content','','7.59'),(3393,'','default','Search result','','7.31'),(3394,'','default','The content on this page has either been modified by another user, or you have already submitted modifications using this form. As a result, your changes cannot be saved.','','none'),(3395,'','default','Administer content types','','none'),(3396,'','default','Warning: Give to trusted roles only; this permission has security implications.','','none'),(3397,'','default','View published content','','none'),(3398,'','default','Access the content overview page','','none'),(3399,'','default','Bypass content access control','','none'),(3400,'','default','View content revisions','','none'),(3401,'','default','Revert content revisions','','none'),(3402,'','default','Delete content revisions','','none'),(3403,'','default','View own unpublished content','','none'),(3404,'','default','Content is sticky at top of lists','','none'),(3405,'','default','Content is promoted to the front page','','none'),(3406,'','default','Recent content','','7.59'),(3407,'','default','Number of recent content items to display','','none'),(3408,'','default','Show block for specific content types','','7.34'),(3409,'','default','Show this block only on pages that display content of the given type(s). If you select no types, there will be no type-specific limitation.','','7.34'),(3410,'','default','Welcome to @site-name','','7.34'),(3411,'','default','No front page content has been created yet.','','7.34'),(3412,'','default','Unpublish content','','none'),(3413,'','default','Make content sticky','','none'),(3414,'','default','Make content unsticky','','none'),(3415,'','default','Promote content to front page','','none'),(3416,'','default','Remove content from front page','','none'),(3417,'','default','Change the author of content','','none'),(3418,'','default','Save content','','none'),(3419,'','default','Unpublish content containing keyword(s)','','none'),(3420,'','default','The content will be unpublished if it contains any of the phrases above. Use a case-sensitive, comma-separated list of phrases. Example: funny, bungee jumping, \"Company, Inc.\"','','none'),(3421,'','default','If the site is experiencing problems with permissions to content, you may have to rebuild the permissions cache. Rebuilding will remove all privileges to content and replace them with permissions based on the current modules and settings. Rebuilding may take some time if there is a lot of content or complex permission settings. After rebuilding has completed, content will automatically use the new permissions.','','7.59'),(3422,'','default','Node Access Permissions','','7.59'),(3423,'','default','One permission in use','','none'),(3424,'','default','@count permissions in use','','7.59'),(3425,'','default','Find and manage content.','','none'),(3426,'','default','Manage content types, including default status, front page promotion, comment settings, etc.','','7.34'),(3427,'','default','Edit content type','','none'),(3428,'; modules/node/content_types.js','default','Don\'t display post information','','none'),(3429,'','default','This site supports <a href=\"@openid-net\">OpenID</a>, a secure way to log in to many websites using a single username and password. OpenID can reduce the necessity of managing many usernames and passwords for many websites.','','none'),(3430,'','default','If you already have an OpenID, enter the URL to your OpenID server below (e.g. myusername.openidprovider.com). Next time you log in, you will be able to use this URL instead of a regular username and password. You can have multiple OpenID servers if you like; just keep adding them here.','','none'),(3431,'','default','The OpenID module allows users to log in using the OpenID single sign on service. <a href=\"@openid-net\">OpenID</a> is a secure method for logging into many websites with a single username and password. It does not require special software, and it does not share passwords with any site to which it is associated, including the site being logged into. The main benefit to users is that they can have a single password that they can use on many websites. This means they can easily update their single password from a centralized location, rather than having to change dozens of passwords individually. For more information, see the online handbook entry for <a href=\"@handbook\">OpenID module</a>.','','none'),(3432,'','default','Logging in with OpenID','','none'),(3433,'','default','To log in using OpenID, a user must already have an OpenID account. Users can then create site accounts using their OpenID, assign one or more OpenIDs to an existing account, and log in using an OpenID. This lowers the barrier to registration, which helps increase the user base, and offers convenience and security to the users. Because OpenID cannot guarantee a user is legitimate, email verification is still necessary. When logging in, users are presented with the option of entering their OpenID URL, which will look like <em>myusername.openidprovider.com</em>. The site then communicates with the OpenID server, asking it to verify the identity of the user. If the user is logged into their OpenID server, the server communicates back to your site, verifying the user. If they are not logged in, the OpenID server will ask the user for their password. At no point does the site being logged into record the user\'s OpenID password.','','none'),(3434,'','default','Once you have verified your e-mail address, you may log in via OpenID.','','none'),(3435,'','default','Sorry, that is not a valid OpenID. Ensure you have spelled your ID correctly.','','none'),(3436,'','default','Complete the registration by filling out the form below. If you already have an account, you can <a href=\"@login\">log in</a> now and add your OpenID under \"My account\".','','none'),(3437,'','default','Account registration using the information provided by your OpenID provider failed due to the reasons listed below. Complete the registration by filling out the form below. If you already have an account, you can <a href=\"@login\">log in</a> now and add your OpenID under \"My account\".','','none'),(3438,'','default','The Overlay module makes the administration pages on your site display in a JavaScript overlay of the page you were viewing when you clicked the administrative link, instead of replacing the page in your browser window. Use the close link on the overlay to return to the page you were viewing when you clicked the link. For more information, see the online handbook entry for <a href=\"@overlay\">Overlay module</a>.','','none'),(3439,'','default','Access the administrative overlay','','none'),(3440,'','default','View administrative pages in the overlay.','','none'),(3441,'','default','Displays the Drupal administration interface in an overlay.','','none'),(3442,'','default','Specify the existing path you wish to alias. For example: node/28, forum/1, taxonomy/term/1.','','none'),(3443,'','default','The Path module allows you to specify an alias, or custom URL, for any existing internal system path. Aliases should not be confused with URL redirects, which allow you to forward a changed or inactive URL to a new URL. In addition to making URLs more readable, aliases also help search engines index content more effectively. Multiple aliases may be used for a single internal system path. To automate the aliasing of paths, you can install the contributed module <a href=\"@pathauto\">Pathauto</a>. For more information, see the online handbook entry for the <a href=\"@path\">Path module</a>.','','none'),(3444,'','default','Creating aliases','','none'),(3445,'','default','Users with sufficient <a href=\"@permissions\">permissions</a> can create aliases under the <em>URL path settings</em> section when they create or edit content. Some examples of aliases are: ','','none'),(3446,'','default','<em>member/jane-smith</em> aliased to internal path <em>user/123</em>','','none'),(3447,'','default','<em>about-us/team</em> aliased to internal path <em>node/456</em>','','none'),(3448,'','default','Managing aliases','','none'),(3449,'','default','The Path module provides a way to search and view a <a href=\"@aliases\">list of all aliases</a> that are in use on your website. Aliases can be added, edited and deleted through this list.','','none'),(3450,'','default','An alias defines a different name for an existing URL path - for example, the alias \'about\' for the URL path \'node/1\'. A URL path can have multiple aliases.','','none'),(3451,'','default','Administer URL aliases','','none'),(3452,'','default','Create and edit URL aliases','','none'),(3453,'','default','The alias is already in use.','','none'),(3454,'','default','Optionally specify an alternative URL by which this term can be accessed. Use a relative path and don\'t add a trailing slash or the URL alias won\'t work.','','none'),(3455,'','default','Enabling execution of PHP in text fields','','none'),(3456,'','default','The PHP filter module allows users with the proper permissions to include custom PHP code that will get executed when pages of your site are processed. While this is a powerful and flexible feature if used by a trusted user with PHP experience, it is a significant and dangerous security risk in the hands of a malicious or inexperienced user. Even a trusted user may accidentally compromise the site by entering malformed or incorrect PHP code. Only the most trusted users should be granted permission to use the PHP filter, and all PHP code added through the PHP filter should be carefully examined before use. <a href=\"@php-snippets\">Example PHP snippets</a> can be found on Drupal.org.','','none'),(3457,'','default','Use PHP for settings','','none'),(3458,'','default','<p>Add a custom block to your site, named \"Welcome\" . With its text format set to \"PHP code\" (or another format supporting PHP input), add the following in the Block body:</p>\n<pre>\nprint t(\'Welcome visitor! Thank you for visiting.\');\n</pre>','','none'),(3459,'','default','<p>To display the name of a registered user, use this instead:</p>\n<pre>\nglobal $user;\nif ($user->uid) {\n  print t(\'Welcome @name! Thank you for visiting.\', array(\'@name\' => format_username($user)));\n}\nelse {\n  print t(\'Welcome visitor! Thank you for visiting.\');\n}\n</pre>','','none'),(3460,'','default','The PHP module has been disabled. Any existing content that was using the PHP filter will now be visible in plain text. This might pose a security risk by exposing sensitive information, if any, used in the PHP code.','','none'),(3461,'','default','The Poll module can be used to create simple surveys or questionnaires that display cumulative results. A poll is a good way to receive feedback from site users and community members. For more information, see the online handbook entry for the <a href=\"@poll\">Poll module</a>.','','none'),(3462,'','default','Creating a poll','','none'),(3463,'','default','Users can create a poll by clicking on Poll on the <a href=\"@add-content\">Add new content</a> page, and entering the question being posed, the answer choices, and beginning vote counts for each choice. The status (closed or active) and duration (length of time the poll remains active for new votes) can also be specified.','','none'),(3464,'','default','Viewing polls','','none'),(3465,'','default','You can visit the <a href=\"@poll\">Polls</a> page to view all current polls, or alternately enable the <em>Most recent poll</em> block on the <a href=\"@blocks\">Blocks administration page</a>. To vote in or view the results of a specific poll, you can click on the poll itself.','','none'),(3466,'','default','Vote on polls','','none'),(3467,'','default','Cancel and change own votes','','none'),(3468,'','default','Your vote was cancelled.','','none'),(3469,'','default','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.','','none'),(3470,'','default','To enable browsing this field by value, enter a title for the resulting page. An example page title is \"People who are employed\" . This is only applicable for a public field.','','none'),(3471,'','default','The Profile module allows site administrators to define custom fields (such as country, full name, or age) for user profiles, which are then displayed in the <a href=\"@user\">My Account</a> section. This permits users of a site to share more information about themselves, and can help community-based sites organize users around specific information. For more information, see the online handbook entry for <a href=\"@profile\">Profile module</a>.','','none'),(3472,'','default','Adding fields to the default profile','','none'),(3473,'','default','To provide the ability for users to enter more information about themselves, the Profile module allows additional fields to be added to the default user profile. Examples of common additions would be <em>Location</em>, <em>Company</em>, <em>Age</em>, or <em>About me</em>.','','none'),(3474,'','default','User information pages','','none'),(3475,'','default','The Profile module enables links to see further information about site users. You can view both a main <a href=\"@profile\">User list page</a>, and more specified pages by clicking on linked fields in any profile. For example, the <a href=\"@profile-country\">People who live in Canada</a> listing on Drupal.org displays all users who have entered <em>Canada</em> in the <em>Country</em> field on their user profile.','','none'),(3476,'','default','Author information block','','none'),(3477,'','default','The <em>Author information block</em> is a default block created by the Profile module that can be enabled on the <a href=\"@blocks\">Blocks administration page</a>. It shows visitors of your website information about the author of the page they are reading.','','none'),(3478,'','default','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.','','none'),(3479,'','default','Enriches your content with metadata to let other applications (e.g. search engines, aggregators) better understand its relationships and attributes.','','none'),(3480,'','default','The active search modules have been changed.','','none'),(3481,'','default','You must include at least one positive keyword with 1 character or more.','','none'),(3482,'','default','You must include at least one positive keyword with @count characters or more.','','none'),(3483,'','default','Searched %type for %keys.','','none'),(3484,'','default','The Search module provides the ability to index and search for content by exact keywords, and for users by username or e-mail. For more information, see the online handbook entry for <a href=\"@search-module\">Search module</a>.','','none'),(3485,'','default','Searching content and users','','none'),(3486,'','default','Users with <em>Use search</em> permission can use the search block and <a href=\"@search\">Search page</a>. Users with the <em>View published content</em> permission can search for content containing exact keywords. Users with the <em>View user profiles</em> permission can search for users containing the keyword anywhere in the user name, and users with the <em>Administer users</em> permission can search for users by email address. Additionally, users with <em>Use advanced search</em> permission can find content using more complex search methods and filtering by choosing the <em>Advanced search</em> option on the <a href=\"@search\">Search page</a>.','','none'),(3487,'','default','Indexing content with cron','','none'),(3488,'','default','Configuring search settings','','none'),(3489,'','default','Indexing behavior can be adjusted using the <a href=\"@searchsettings\">Search settings page</a>. Users with <em>Administer search</em> permission can control settings such as the <em>Number of items to index per cron run</em>, <em>Indexing settings</em> (word length), <em>Active search modules</em>, and <em>Content ranking</em>, which lets you adjust the priority in which indexed content is returned in results.','','none'),(3490,'','default','The Search module includes a default <em>Search form</em> block, which can be enabled and configured on the <a href=\"@blocks\">Blocks administration page</a>. The block is available to users with the <em>Search content</em> permission.','','none'),(3491,'','default','Extending Search module','','none'),(3492,'','default','By default, the Search module only supports exact keyword matching in content searches. You can modify this behavior by installing a language-specific stemming module for your language (such as <a href=\"http://drupal.org/project/porterstemmer\">Porter Stemmer</a> for American English), which allows words such as walk, walking, and walked to be matched in the Search module. Another approach is to use a third-party search technology with stemming or partial word matching features built in, such as <a href=\"http://drupal.org/project/apachesolr\">Apache Solr</a> or <a href=\"http://drupal.org/project/sphinx\">Sphinx</a>. These and other <a href=\"@contrib-search\">search-related contributed modules</a> can be downloaded by visiting Drupal.org.','','none'),(3493,'','default','<ul>\n<li>Check if your spelling is correct.</li>\n<li>Remove quotes around phrases to search for each word individually. <em>bike shed</em> will often show more results than <em>&quot;bike shed&quot;</em>.</li>\n<li>Consider loosening your query with <em>OR</em>. <em>bike OR shed</em> will often show more results than <em>bike shed</em>.</li>\n</ul>','','none'),(3494,'','default','Administer search','','none'),(3495,'','default','Use search','','none'),(3496,'','default','Use advanced search','','none'),(3497,'','default','Configure relevance settings for search and other indexing options.','','none'),(3498,'','default','Choose a set of shortcuts to use','','none'),(3499,'','default','Choose a set of shortcuts for this user','','none'),(3500,'','default','You are now using the new %set_name shortcut set. You can edit it from this page or <a href=\"@switch-url\">switch back to a different one.</a>','','none'),(3501,'','default','%user is now using a new shortcut set called %set_name. You can edit it from this page.','','none'),(3502,'','default','You are now using the %set_name shortcut set.','','none'),(3503,'','default','%user is now using the %set_name shortcut set.','','none'),(3504,'','default','Change set','','none'),(3505,'','default','The shortcut set has been updated.','','none'),(3506,'','default','Add new shortcut','','none'),(3507,'','default','Editing @shortcut','','none'),(3508,'','default','The name of the shortcut.','','none'),(3509,'','default','The path to the shortcut.','','none'),(3510,'','default','The link must correspond to a valid path on the site.','','none'),(3511,'','default','The shortcut %link has been updated.','','none'),(3512,'','default','Added a shortcut for %title.','','none'),(3513,'','default','Are you sure you want to delete the shortcut %title?','','none'),(3514,'','default','The shortcut %title has been deleted.','','none'),(3515,'','default','Unable to add a shortcut for %title.','','none'),(3516,'','default','Adding and removing shortcuts','','none'),(3517,'','default','Displaying shortcuts','','none'),(3518,'','default','You can display your shortcuts by enabling the Shortcuts block on the <a href=\"@blocks\">Blocks administration page</a>. Certain administrative modules also display your shortcuts; for example, the core <a href=\"@toolbar-help\">Toolbar module</a> displays them near the top of the page, along with an <em>Edit shortcuts</em> link.','','none'),(3519,'','default','Administer shortcuts','','none'),(3520,'','default','@shortcut_set shortcuts','','none'),(3521,'','default','Add to %shortcut_set shortcuts','','7.59'),(3522,'','default','Add to shortcuts','','none'),(3523,'','default','Remove from %shortcut_set shortcuts','','7.34'),(3524,'','default','Remove from shortcuts','','none'),(3525,'','default','Edit shortcuts','','7.59'),(3526,'','default','Add shortcut','','none'),(3527,'','default','Edit shortcut','','none'),(3528,'','default','Delete shortcut','','none'),(3529,'','default','Allows users to manage customizable lists of shortcut links.','','none'),(3530,'','default','Value @value is TRUE.','','none'),(3531,'','default','Value @value is FALSE.','','none'),(3532,'','default','Value @value is NULL.','','none'),(3533,'','default','Value @value is not NULL.','','none'),(3534,'','default','Value @first is equal to value @second.','','none'),(3535,'','default','Value @first is not equal to value @second.','','none'),(3536,'','default','Value @first is identical to value @second.','','none'),(3537,'','default','Value @first is not identical to value @second.','','none'),(3538,'','default','The test did not complete due to a fatal error.','','none'),(3539,'','default','Link with label %label found.','','none'),(3540,'','default','Link with label %label not found.','','none'),(3541,'','default','Link containing href %href found.','','none'),(3542,'','default','No link containing href %href found.','','none'),(3543,'','default','Clicked link %label (@url_target) from @url_before','','none'),(3544,'','default','Option @option for field @id is selected.','','none'),(3545,'','default','Option @option for field @id is not selected.','','none'),(3546,'','default','By default SimpleTest will clear the results after they have been viewed on the results page, but in some cases it may be useful to leave the results in the database. The results can then be viewed at <em>admin/config/development/testing/[test_id]</em>. The test ID can be found in the database, simpletest table, or kept track of when viewing the results the first time. Additionally, some modules may provide more analysis or features that require this setting to be disabled.','','none'),(3547,'','default','GSS negotiate','','none'),(3548,'','default','NTLM','','none'),(3549,'','default','Any safe','','none'),(3550,'','default','The Testing module provides a framework for running automated unit tests. It can be used to verify a working state of Drupal before and after any code changes, or as a means for developers to write and execute tests for their modules. For more information, see the online handbook entry for <a href=\"@simpletest\">Testing module</a>.','','none'),(3551,'','default','Running tests','','none'),(3552,'','default','Visit the <a href=\"@admin-simpletest\">Testing page</a> to display a list of available tests. For comprehensive testing, select <em>all</em> tests, or individually select tests for more targeted testing. Note that it might take several minutes for all tests to complete. For more information on creating and modifying your own tests, see the <a href=\"@simpletest-api\">Testing API Documentation</a> in the Drupal handbook.','','none'),(3553,'','default','After the tests run, a message will be displayed next to each test group indicating whether tests within it passed, failed, or had exceptions. A pass means that the test returned the expected results, while fail means that it did not. An exception normally indicates an error outside of the test, such as a PHP warning or notice. If there were failures or exceptions, the results will be expanded to show details, and the tests that had failures or exceptions will be indicated in red or pink rows. You can then use these results to refine your code and tests, until all tests pass.','','none'),(3554,'','default','Administer tests','','none'),(3555,'','default','The test run finished in @elapsed.','','none'),(3556,'','default','Use the <em>Clean environment</em> button to clean-up temporary files and tables.','','none'),(3557,'','default','The testing framework requires the PHP <a href=\"@open_basedir-url\">open_basedir</a> restriction to be disabled. Check your webserver configuration or contact your web host.','','none'),(3558,'','default','The testing framework could not be installed because the PHP <a href=\"@curl_url\">cURL</a> library is not available.','','none'),(3559,'','default','The testing framework could not be installed because the PHP <a href=\"@hash_url\">hash</a> extension is disabled.','','none'),(3560,'','default','PHP open_basedir restriction','','none'),(3561,'','default','unblock IP address','','none'),(3562,'','default','block IP address','','none'),(3563,'','default','The Statistics module shows you how often a given page is viewed, who viewed it, the previous page the user visited (referrer URL), and when it was viewed. These statistics are useful in determining how users are visiting and navigating your site. For more information, see the online handbook entry for the <a href=\"@statistics\">Statistics module</a>.','','none'),(3564,'','default','Managing logs','','none'),(3565,'','default','To enable collection of statistics, the <em>Enable access log</em> checkbox on the <a href=\"@statistics-settings\">Statistics settings page</a> must be checked. The <em>Discard access logs older than</em> setting on the settings page specifies the length of time entries are kept in the log before they are deleted. This setting requires a correctly configured <a href=\"@cron\">cron maintenance task</a> to run.','','none'),(3566,'','default','Viewing site usage','','none'),(3567,'','default','The Statistics module can help you break down details about your users and how they are using the site. The module offers four reports:','','none'),(3568,'','default','<a href=\"@recent-hits\">Recent hits</a> displays information about the latest activity on your site, including the URL and title of the page that was accessed, the user name (if available) and the IP address of the viewer.','','none'),(3569,'','default','<a href=\"@top-referrers\">Top referrers</a> displays where visitors came from (referrer URL).','','none'),(3570,'','default','<a href=\"@top-pages\">Top pages</a> displays a list of pages ordered by how often they were viewed.','','none'),(3571,'','default','<a href=\"@top-visitors\">Top visitors</a> shows you the most active visitors for your site and allows you to ban abusive visitors.','','none'),(3572,'','default','Displaying popular content','','none'),(3573,'','default','The module includes a <em>Popular content</em> block that displays the most viewed pages today and for all time, and the last content viewed. To use the block, enable <em>Count content views</em> on the <a href=\"@statistics-settings\">statistics settings page</a>, and then you can enable and configure the block on the <a href=\"@blocks\">blocks administration page</a>.','','none'),(3574,'','default','Page view counter','','none'),(3575,'','default','The Statistics module includes a counter for each page that increases whenever the page is viewed. To use the counter, enable <em>Count content views</em> on the <a href=\"@statistics-settings\">statistics settings page</a>, and set the necessary <a href=\"@permissions\">permissions</a> (<em>View content hits</em>) so that the counter is visible to the users.','','none'),(3576,'','default','Administer statistics','','none'),(3577,'','default','View content access statistics','','none'),(3578,'','default','View content hits','','none'),(3579,'','default','Control details about what and how your site logs access statistics.','','none'),(3580,'','default','The Syslog module logs events by sending messages to the logging facility of your web server\'s operating system. Syslog is an operating system administrative logging tool that provides valuable information for use in system management and security auditing. Most suited to medium and large sites, Syslog provides filtering tools that allow messages to be routed by type and severity. For more information, see the online handbook entry for <a href=\'@syslog\'>Syslog module</a> and PHP\'s <a href=\'@php_openlog\'>openlog</a> and <a href=\'@php_syslog\'>syslog</a> functions.','','none'),(3581,'','default','Logging for UNIX, Linux, and Mac OS X','','none'),(3582,'','default','On UNIX, Linux, and Mac OS X, the file <em>/etc/syslog.conf</em> defines the routing configuration. Messages can be flagged with the codes <code>LOG_LOCAL0</code> through <code>LOG_LOCAL7</code>. For information on Syslog facilities, severity levels, and how to set up <em>syslog.conf</em>, see the <em>syslog.conf</em> manual page on your command line.','','none'),(3583,'','default','Logging for Microsoft Windows','','none'),(3584,'','default','On Microsoft Windows, messages are always sent to the Event Log using the code <code>LOG_USER</code>.','','none'),(3585,'','default','Syslog facility','','none'),(3586,'','default','Depending on the system configuration, Syslog and other logging tools use this code to identify or filter messages from within the entire system log.','','none'),(3587,'','default','The image %file could not be rotated because the imagerotate() function is not available in this PHP installation.','','none'),(3588,'','default','The image %file could not be desaturated because the imagefilter() function is not available in this PHP installation.','','none'),(3589,'','default','Screenshot for !theme theme','','none'),(3590,'','default','Settings for !theme theme','','none'),(3591,'','default','Disable !theme theme','','none'),(3592,'','default','Set !theme as default theme','','none'),(3593,'','default','Enable !theme theme','','none'),(3594,'','default','Enable and set default','','none'),(3595,'','default','Enable !theme as default theme','','none'),(3596,'','default','default theme','','none'),(3597,'','default','Choose \"Default theme\" to always use the same theme as the rest of the site.','','none'),(3598,'','default','Use the administration theme when editing or creating content','','none'),(3599,'','default','The %theme theme has been enabled.','','none'),(3600,'','default','The %theme theme was not found.','','none'),(3601,'','default','%theme is the default theme and cannot be disabled.','','none'),(3602,'','default','The %theme theme has been disabled.','','none'),(3603,'','default','Please note that the administration theme is still set to the %admin_theme theme; consequently, the theme on this page remains unchanged. All non-administrative sections of the site, however, will show the selected %selected_theme theme by default.','','none'),(3604,'','default','%theme is now the default theme.','','none'),(3605,'','default','User verification status in comments','','none'),(3606,'','default','These settings only exist for the themes based on the %engine theme engine.','','none'),(3607,'','default','The logo could not be uploaded.','','none'),(3608,'','default','The favicon could not be uploaded.','','none'),(3609,'','default','The custom logo path is invalid.','','none'),(3610,'','default','The custom favicon path is invalid.','','none'),(3611,'','default','@module (<span class=\"admin-missing\">incompatible with</span> version @version)','','none'),(3612,'','default','This version is not compatible with Drupal !core_version and should be replaced.','','none'),(3613,'','default','Would you like to continue with the above?','','none'),(3614,'','default','Enter a valid IP address.','','none'),(3615,'','default','This IP address is already blocked.','','none'),(3616,'','default','You may not block your own IP address.','','none'),(3617,'','default','The IP address %ip has been blocked.','','none'),(3618,'','default','Are you sure you want to delete %ip?','','none'),(3619,'','default','The IP address %ip was deleted.','','none'),(3620,'','default','How this is used depends on your site\'s theme.','','7.34'),(3621,'','default','Number of posts on front page','','7.34'),(3622,'','default','The maximum number of posts displayed on overview pages such as the front page.','','7.59'),(3623,'','default','This page is displayed when the requested document is denied to the current user. Leave blank to display a generic \"access denied\" page.','','7.59'),(3624,'','default','This page is displayed when no other content matches the requested document. Leave blank to display a generic \"page not found\" page.','','7.59'),(3625,'','default','Errors and warnings','','none'),(3626,'','default','Clear all caches','','none'),(3627,'','default','<strong class=\"error\">Set up the <a href=\"!file-system\">public files directory</a> to make these optimizations available.</strong>','','none'),(3628,'','default','Bandwidth optimization','','none'),(3629,'','default','Compress cached pages.','','7.59'),(3630,'','default','Public file system path','','none'),(3631,'','default','A local file system path where public files will be stored. This directory must exist and be writable by Drupal. This directory must be relative to the Drupal installation directory and be accessible over the web.','','none'),(3632,'','default','Private file system path','','none'),(3633,'','default','A local file system path where temporary files will be stored. This directory should not be accessible over the web.','','none'),(3634,'','default','Default download method','','none'),(3635,'','default','This setting is used as the preferred download method. The use of public files is more efficient, but does not provide any access control.','','none'),(3636,'','default','No image toolkits were detected. Drupal includes support for <a href=\'!gd-link\'>PHP\'s built-in image processing functions</a> but they were not detected on this system. You should consult your system administrator to have them enabled, or try using a third party toolkit.','','none'),(3637,'','default','Description of your site, included in each feed.','','7.59'),(3638,'','default','Time zones','','none'),(3639,'','default','Users may set their own time zone.','','7.59'),(3640,'','default','Remind users at login if their time zone is not set.','','7.59'),(3641,'','default','Only applied if users may set their own time zone.','','7.59'),(3642,'','default','Time zone for new users','','7.59'),(3643,'','default','Default time zone.','','7.59'),(3644,'','default','Empty time zone.','','7.59'),(3645,'','default','Users may set their own time zone at registration.','','7.59'),(3646,'','default','No date types available. <a href=\"@link\">Add date type</a>.','','none'),(3647,'','default','Add date type','','7.34'),(3648,'','default','The date type must contain only alphanumeric characters and underscores.','','none'),(3649,'','default','This date type already exists. Enter a unique type.','','none'),(3650,'','default','New date type added successfully.','','none'),(3651,'','default','Put site into maintenance mode','','7.59'),(3652,'','default','Maintenance mode message','','7.59'),(3653,'','default','Message to show visitors when the site is in maintenance mode.','','7.59'),(3654,'','default','Use URLs like <code>example.com/user</code> instead of <code>example.com/?q=user</code>.','','none'),(3655,'','default','Requires: !module-list','','none'),(3656,'','default','Required by: !module-list','','none'),(3657,'','default','Are you sure you want to remove the date type %type?','','none'),(3658,'','default','Removed date type %type.','','none'),(3659,'','default','No custom date formats available. <a href=\"@link\">Add date format</a>.','','none'),(3660,'','default','Displayed as','','none'),(3661,'','default','Displayed as %date','','none'),(3662,'','default','A user-defined date format. See the <a href=\"@url\">PHP manual</a> for available options.','','none'),(3663,'','default','Save format','','none'),(3664,'','default','This format already exists. Enter a unique format string.','','none'),(3665,'','default','Custom date format updated.','','none'),(3666,'','default','Custom date format added.','','none'),(3667,'','default','Available actions:','','none'),(3668,'','default','Create an advanced action','','none'),(3669,'','default','A unique label for this advanced action. This label will be displayed in the interface of modules that integrate with actions, such as Trigger module.','','none'),(3670,'','default','Deleted %ip','','none'),(3671,'','default','Enabled theme','','none'),(3672,'','default','Enabled themes','','none'),(3673,'','default','Disabled theme','','none'),(3674,'','default','You must enable the @required module to install @module.','','none'),(3675,'','default','You must enable the @required modules to install @module.','','none'),(3676,'','default','Tokens for site-wide settings and other global information.','','none'),(3677,'','default','Tokens related to times and dates.','','none'),(3678,'','default','Tokens related to uploaded files.','','none'),(3679,'','default','URL (brief)','','none'),(3680,'','default','The URL of the site\'s front page without the protocol.','','none'),(3681,'','default','Short format','','none'),(3682,'','default','A date in \'short\' format. (%date)','','none'),(3683,'','default','Medium format','','none'),(3684,'','default','A date in \'medium\' format. (%date)','','none'),(3685,'','default','Long format','','none'),(3686,'','default','A date in \'long\' format. (%date)','','none'),(3687,'','default','A date in a custom format. See !php-date for details.','','none'),(3688,'','default','the PHP documentation','','none'),(3689,'','default','Time-since','','none'),(3690,'','default','Raw timestamp','','none'),(3691,'','default','A date in UNIX timestamp format (%date)','','none'),(3692,'','default','The System module is integral to the site, and provides basic but extensible functionality for use by other modules and themes. Some integral elements of Drupal are contained in and managed by the System module, including caching, enabling and disabling modules and themes, preparing and displaying the administrative page, and configuring fundamental site settings. A number of key system maintenance operations are also part of the System module. For more information, see the online handbook entry for <a href=\"@system\">System module</a>.','','none'),(3693,'','default','Managing modules','','none'),(3694,'','default','The System module allows users with the appropriate permissions to enable and disable modules on the <a href=\"@modules\">Modules administration page</a>. Drupal comes with a number of core modules, and each module provides a discrete set of features and may be enabled or disabled depending on the needs of the site. Many additional modules contributed by members of the Drupal community are available for download at the <a href=\"@drupal-modules\">Drupal.org module page</a>.','','none'),(3695,'','default','Managing themes','','none'),(3696,'','default','The System module allows users with the appropriate permissions to enable and disable themes on the <a href=\"@themes\">Appearance administration page</a>. Themes determine the design and presentation of your site. Drupal comes packaged with several core themes, and additional contributed themes are available at the <a href=\"@drupal-themes\">Drupal.org theme page</a>.','','none'),(3697,'','default','Managing caching','','none'),(3698,'','default','The System module allows users with the appropriate permissions to manage caching on the <a href=\'@cache-settings\'>Performance settings page</a>. Drupal has a robust caching system that allows the efficient re-use of previously-constructed web pages and web page components. Pages requested by anonymous users are stored in a compressed format; depending on your site configuration and the amount of your web traffic tied to anonymous visitors, the caching system may significantly increase the speed of your site.','','none'),(3699,'','default','Performing system maintenance','','none'),(3700,'','default','Configuring basic site settings','','none'),(3701,'','default','The System module also handles basic configuration options for your site, including <a href=\"@date-time-settings\">Date and time settings</a>, <a href=\"@file-system\">File system settings</a>, <a href=\"@clean-url\">Clean URL support</a>, <a href=\"@site-info\">Site name and other information</a>, and a <a href=\"@maintenance-mode\">Maintenance mode</a> for taking your site temporarily offline.','','none'),(3702,'','default','Configuring actions','','none'),(3703,'','default','Actions are individual tasks that the system can do, such as unpublishing a piece of content or banning a user. Modules, such as the <a href=\"@trigger-help\">Trigger module</a>, 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. Visit the <a href=\"@actions\">Actions page</a> to configure actions.','','none'),(3704,'','default','Set and configure the default theme for your website.  Alternative <a href=\"@themes\">themes</a> are available.','','none'),(3705,'','default','Download additional <a href=\"@modules\">contributed modules</a> to extend Drupal\'s functionality.','','none'),(3706,'','default','Regularly review and install <a href=\"@updates\">available updates</a> to maintain a secure and current site. Always run the <a href=\"@update-php\">update script</a> each time a module is updated.','','none'),(3707,'','default','Regularly review <a href=\"@updates\">available updates</a> to maintain a secure and current site. Always run the <a href=\"@update-php\">update script</a> each time a module is updated.','','none'),(3708,'','default','Regularly review available updates to maintain a secure and current site. Always run the <a href=\"@update-php\">update script</a> each time a module is updated. Enable the Update manager module to update and install modules and themes.','','none'),(3709,'','default','If you are upgrading to a newer version of Drupal or upgrading contributed modules or themes, you may need to run the <a href=\"@update-php\">update script</a>.','','none'),(3710,'','default','There are two types of actions: simple and advanced. Simple actions do not require any additional configuration, and are listed here automatically. Advanced actions need to be created and configured before they can be used, because they have options that need to be specified; for example, sending an e-mail to a specified address, or unpublishing content containing certain words. To create an advanced action, select the action from the drop-down list in the advanced action section below and click the <em>Create</em> button.','','none'),(3711,'','default','An advanced action offers additional configuration options which may be filled out below. Changing the <em>Description</em> field is recommended, in order to better identify the precise action taking place. This description will be displayed in modules such as the Trigger module when assigning actions to system events, so it is best if it is as descriptive as possible (for example, \"Send e-mail to Moderation Team\" rather than simply \"Send e-mail\").','','none'),(3712,'','default','Administer modules','','none'),(3713,'','default','Administer site configuration','','none'),(3714,'','default','Administer themes','','none'),(3715,'','default','Administer actions','','none'),(3716,'','default','Use the administration pages and help','','none'),(3717,'','default','Use the site in maintenance mode','','none'),(3718,'','default','View site reports','','none'),(3719,'','default','Block IP addresses','','none'),(3720,'','default','Public files','','7.59'),(3721,'','default','Public local files served by the webserver.','','7.59'),(3722,'','default','Private local files served by Drupal.','','none'),(3723,'','default','Temporary files','','7.59'),(3724,'','default','Temporary local files for upload and previews.','','7.59'),(3725,'','default','Update modules','','none'),(3726,'','default','Update themes','','none'),(3727,'','default','SSH','','none'),(3728,'','default','Your password is not saved in the database and is only used to establish a connection.','','none'),(3729,'','default','The connection will be created between your web server and the machine hosting the web server files. In the vast majority of cases, this will be the same machine, and \"localhost\" is correct.','','none'),(3730,'','default','Configure your <a href=\"@user-edit\">account time zone setting</a>.','','none'),(3731,'','default','Select the desired local time and time zone. Dates and times throughout this site will be displayed using this time zone.','','7.31'),(3732,'','default','Your time zone setting will be automatically detected if possible. Confirm the selection and click save.','','7.31'),(3733,'','default','System help','','7.59'),(3734,'','default','The directory %directory does not exist and could not be created.','','none'),(3735,'','default','The directory %directory exists but is not writable and could not be made writable.','','none'),(3736,'','default','The email address to which the message should be sent OR enter [node:author:mail], [comment:author:mail], etc. if you would like to send an e-mail to the author of the original post.','','none'),(3737,'','default','The message that should be sent. You may include placeholders like [node:title], [user:name], and [comment:body] to represent data that will be different each time message is sent. Not all placeholders will be available in all contexts.','','none'),(3738,'','default','The message to be displayed to the current user. You may include placeholders like [node:title], [user:name], and [comment:body] to represent data that will be different each time message is sent. Not all placeholders will be available in all contexts.','','none'),(3739,'','default','@zone: @date','','7.31'),(3740,'','default','Powered by <a href=\"@poweredby\">Drupal</a>','','none'),(3741,'','default','AHAH callback','','none'),(3742,'','default','Administer blocks, content types, menus, etc.','','7.59'),(3743,'','default','Select and configure your theme','','7.34'),(3744,'','default','Enable theme','','none'),(3745,'','default','Disable theme','','none'),(3746,'','default','Set default theme','','none'),(3747,'','default','Configure default and theme specific settings.','','7.34'),(3748,'','default','IP address blocking','','7.59'),(3749,'','default','Manage blocked IP addresses.','','7.59'),(3750,'','default','Delete IP address','','none'),(3751,'','default','Media tools.','','7.59'),(3752,'','default','Tools related to web services.','','7.59'),(3753,'','default','Configure the site description, the number of items per feed and whether feeds should be titles/teasers/full-text.','','7.59'),(3754,'','default','Development tools.','','7.59'),(3755,'','default','Maintenance mode','','7.59'),(3756,'','default','Take the site offline for maintenance or bring it back online.','','7.59'),(3757,'','default','Logging and errors','','7.59'),(3758,'','default','Settings for logging and alerts modules. Various modules can route Drupal\'s system events to different destinations, such as syslog, database, email, etc.','','7.59'),(3759,'','default','Regional and language','','7.59'),(3760,'','default','Regional settings, localization and translation.','','7.59'),(3761,'','default','Settings for the site\'s default time zone and country.','','7.59'),(3762,'','default','Configure display formats for date and time.','','7.59'),(3763,'','default','Add new date type.','','7.34'),(3764,'','default','Delete date type','','none'),(3765,'','default','Allow users to delete a configured date type.','','none'),(3766,'','default','Configure display format strings for date and time.','','7.34'),(3767,'','default','Edit date format','','none'),(3768,'','default','Allow users to edit a configured date format.','','none'),(3769,'','default','Search and metadata','','7.59'),(3770,'','default','Local site search, metadata and SEO.','','7.59'),(3771,'','default','General system related configuration.','','7.59'),(3772,'','default','Tools that enhance the user interface.','','7.59'),(3773,'','default','Content workflow, editorial workflow tools.','','7.59'),(3774,'','default','Content authoring','','7.59'),(3775,'','default','Settings related to formatting and authoring content.','','7.59'),(3776,'','default','The host !host is no longer blocked because it is not a valid IP address.','','none'),(3777,'','default','Inserted into {role_permission} the permissions for role ID !id','','none'),(3778,'','default','Aggressive caching was disabled and replaced with normal caching. Read the page caching section in default.settings.php for more information on how to enable similar functionality.','','none'),(3779,'','default','%profile_name (%profile-%version)','','none'),(3780,'','default','more information','','7.59'),(3781,'','default','The phpinfo() function has been disabled for security reasons. To see your server\'s phpinfo() information, change your PHP settings or contact your server administrator. For more information, <a href=\"@phpinfo\">Enabling and disabling phpinfo()</a> handbook page.','','none'),(3782,'','default','To run cron from outside the site, go to <a href=\"!cron\">!cron</a>','','7.59'),(3783,'','default','An automated attempt to create this directory failed, possibly due to a permissions problem. To proceed with the installation, either create the directory and modify its permissions manually or ensure that the installer has the permissions to create it automatically. For more information, see INSTALL.txt or the <a href=\"@handbook_url\">online handbook</a>.','','none'),(3784,'','default','Your configuration has been saved.','','7.34'),(3785,'','default','No vocabularies available. <a href=\"@link\">Add vocabulary</a>.','','none'),(3786,'','default','No terms available. <a href=\"@link\">Add term</a>.','','none'),(3787,'','default','There is currently no content classified with this term.','','7.34'),(3788,'','default','Tokens related to taxonomy terms.','','none'),(3789,'','default','Tokens related to taxonomy vocabularies.','','none'),(3790,'','default','The Taxonomy module allows you to classify the content of your website. To classify content, you define <em>vocabularies</em> that contain related <em>terms</em>, and then assign the vocabularies to content types. For more information, see the online handbook entry for the <a href=\"@taxonomy\">Taxonomy module</a>.','','none'),(3791,'','default','Creating vocabularies','','none'),(3792,'','default','Users with sufficient <a href=\"@perm\">permissions</a> can create <em>vocabularies</em> and <em>terms</em> through the <a href=\"@taxo\">Taxonomy page</a>. The page listing the terms provides a drag-and-drop interface for controlling the order of the terms and sub-terms within a vocabulary, in a hierarchical fashion. A <em>controlled vocabulary</em> classifying music by genre with terms and sub-terms could look as follows:','','none'),(3793,'','default','<em>vocabulary</em>: Music','','none'),(3794,'','default','<em>term</em>: Jazz','','none'),(3795,'','default','<em>sub-term</em>: Swing','','none'),(3796,'','default','<em>sub-term</em>: Fusion','','none'),(3797,'','default','<em>term</em>: Rock','','none'),(3798,'','default','<em>sub-term</em>: Country rock','','none'),(3799,'','default','<em>sub-term</em>: Hard rock','','none'),(3800,'','default','You can assign a sub-term to multiple parent terms. For example, <em>fusion</em> can be assigned to both <em>rock</em> and <em>jazz</em>.','','none'),(3801,'','default','Terms in a <em>free-tagging vocabulary</em> can be built gradually as you create or edit content. This is often done used for blogs or photo management applications.','','none'),(3802,'','default','Assigning vocabularies to content types','','none'),(3803,'','default','Before you can use a new vocabulary to classify your content, a new Taxonomy term field must be added to a <a href=\"@ctedit\">content type</a> on its <em>manage fields</em> page. When adding a taxonomy field, you choose a <em>widget</em> to use to enter the taxonomy information on the content editing page: a select list, checkboxes, radio buttons, or an auto-complete field (to build a free-tagging vocabulary). After choosing the field type and widget, on the subsequent <em>field settings</em> page you can choose the desired vocabulary, whether one or multiple terms can be chosen from the vocabulary, and other settings. The same vocabulary can be added to multiple content types, by using the \"Add existing field\" section on the manage fields page.','','none'),(3804,'','default','Classifying content','','none'),(3805,'','default','After the vocabulary is assigned to the content type, you can start classifying content. The field with terms will appear on the content editing screen when you edit or <a href=\"@addnode\">add new content</a>.','','none'),(3806,'','default','Viewing listings and RSS feeds by term','','none'),(3807,'','default','Each taxonomy term automatically provides a page listing content that has its classification, and a corresponding RSS feed. For example, if the taxonomy term <em>country rock</em> has the ID 123 (you can see this by looking at the URL when hovering on the linked term, which you can click to navigate to the listing page), then you will find this list at the path <em>taxonomy/term/123</em>. The RSS feed will use the path <em>taxonomy/term/123/feed</em> (the RSS icon for this term\'s listing will automatically display in your browser\'s address bar when viewing the listing page).','','none'),(3808,'','default','Extending Taxonomy module','','none'),(3809,'','default','There are <a href=\"@taxcontrib\">many contributed modules</a> that extend the behavior of the Taxonomy module for both display and organization of terms.','','none'),(3810,'','default','Taxonomy is for categorizing content. Terms are grouped into vocabularies. For example, a vocabulary called \"Fruit\" would contain the terms \"Apple\" and \"Banana\".','','none'),(3811,'','default','You can reorganize the terms in %capital_name using their drag-and-drop handles, and group terms under a parent term by sliding them under and to the right of the parent.','','none'),(3812,'','default','%capital_name contains terms grouped under parent terms. You can reorganize the terms in %capital_name using their drag-and-drop handles.','','none'),(3813,'','default','%capital_name contains terms with multiple parents. Drag and drop of terms with multiple parents is not supported, but you can re-enable drag-and-drop support by editing each term to include only a single parent.','','none'),(3814,'','default','Administer vocabularies and terms','','none'),(3815,'','default','Edit terms in %vocabulary','','none'),(3816,'','default','Delete terms from %vocabulary','','none'),(3817,'','default','Taxonomy term page','','7.59'),(3818,'','default','Term reference','','7.59'),(3819,'','default','This field stores a reference to a taxonomy term.','','7.59'),(3820,'','default','Autocomplete term widget (tagging)','','7.59'),(3821,'','default','The vocabulary which supplies the options for this field.','','none'),(3822,'','default','The Toolbar module displays links to top-level administration menu items and links from other modules at the top of the screen. For more information, see the online handbook entry for <a href=\"@toolbar\">Toolbar module</a>.','','none'),(3823,'','default','Displaying administrative links','','none'),(3824,'','default','Use the administration toolbar','','none'),(3825,'','default','Toggle drawer visibility','','none'),(3826,'','default','Provides a toolbar that shows the top-level administration menu items and links from other modules.','','none'),(3827,'','default','The Tracker module displays the most recently added and updated content on your site, and allows you to follow new content created by each user. This module has no configuration options. For more information, see the online handbook entry for <a href=\"@tracker\">Tracker module</a>.','','none'),(3828,'','default','The Tracker module adds a new menu item to the Navigation menu, called <em>Recent content</em>. You can configure menu items via the <a href=\"@menus\">Menus administration page</a>.','','none'),(3829,'','default','Tracking new and updated site content','','none'),(3830,'','default','The <a href=\'@recent\'>Recent content</a> page shows new and updated content in reverse chronological order, listing the content type, title, author\'s name, number of comments, and time of last update. Content is considered updated when changes occur in the text, or when new comments are added. The <em>My recent content</em> tab limits the list to the currently logged-in user.','','none'),(3831,'','default','Tracking user-specific content','','none'),(3832,'','default','To follow a specific user\'s new and updated content, select the <em>Track</em> tab from the user\'s profile page.','','none'),(3833,'','default','All recent content','','none'),(3834,'','default','My recent content','','none'),(3835,'','default','Track content','','none'),(3836,'','default','Enables tracking of recent content for users.','','none'),(3837,'','default','The Content translation module allows content to be translated into different languages. Working with the <a href=\"@locale\">Locale module</a> (which manages enabled languages and provides translation for the site interface), the Content translation module is key to creating and maintaining translated site content. For more information, see the online handbook entry for <a href=\"@translation\">Content translation module</a>.','','none'),(3838,'','default','Configuring content types for translation','','none'),(3839,'','default','To configure a particular content type for translation, visit the <a href=\"@content-types\">Content types</a> page, and click the <em>edit</em> link for the content type. In the <em>Publishing options</em> section, select <em>Enabled, with translation</em> under <em>Multilingual support</em>.','','none'),(3840,'','default','Assigning a language to content','','none'),(3841,'','default','Use the <em>Language</em> drop down to select the appropriate language when creating or editing content.','','none'),(3842,'','default','Translating content','','none'),(3843,'','default','Users with the <em>translate content</em> permission can translate content, if the content type has been configured to allow translations. To translate content, select the <em>Translation</em> tab when viewing the content, select the language for which you wish to provide content, and then enter the content.','','none'),(3844,'','default','Maintaining translations','','none'),(3845,'','default','If editing content in one language requires that translated versions also be updated to reflect the change, use the <em>Flag translations as outdated</em> check box to mark the translations as outdated and in need of revision. Individual translations may also be marked for revision by selecting the <em>This translation needs to be updated</em> check box on the translation editing form.','','none'),(3846,'','default','Translate content','','none'),(3847,'','default','There is already a translation in this language.','','none'),(3848,'','default','Trigger: !description','','none'),(3849,'','default','No actions available for this trigger. <a href=\"@link\">Add action</a>.','','none'),(3850,'','default','Missing/undefined save action (%save_aid) for %aid action.','','none'),(3851,'','default','The %label action has been appended, which is required to save the property change.','','none'),(3852,'','default','The %label action was moved to save the property change.','','none'),(3853,'','default','Triggers are events on your site, such as new content being added or a user logging in. The Trigger module associates these triggers with actions (functional tasks), such as unpublishing content containing certain keywords or e-mailing an administrator. The <a href=\"@url\">Actions settings page</a> contains a list of existing actions and provides the ability to create and configure advanced actions (actions requiring configuration, such as an e-mail address or a list of banned words).','','none'),(3854,'','default','The Trigger module provides the ability to cause <em>actions</em> to run when certain <em>triggers</em> take place on your site. Triggers are events, such as new content being added to your site or a user logging in, and actions are tasks, such as unpublishing content or e-mailing an administrator. For more information, see the online handbook entry for <a href=\"@trigger\">Trigger module</a>.','','none'),(3855,'','default','Configuring triggers and actions','','none'),(3856,'','default','The combination of actions and triggers can perform many useful tasks, such as e-mailing an administrator if a user account is deleted, or automatically unpublishing comments that contain certain words. To set up a trigger/action combination, first visit the <a href=\"@actions-page\">Actions configuration page</a>, where you can either verify that the action you want is already listed, or create a new <em>advanced</em> action. You will need to set up an advanced action if there are configuration options in your trigger/action combination, such as specifying an e-mail address or a list of banned words. After configuring or verifying your action, visit the <a href=\"@triggers-page\">Triggers configuration page</a> and choose the appropriate tab (Comment, Taxonomy, etc.), where you can assign the action to run when the trigger event occurs.','','none'),(3857,'','default','When either saving new content or updating existing content','','none'),(3858,'','default','After saving updated content','','none'),(3859,'','default','When either saving a new comment or updating an existing comment','','none'),(3860,'','default','After creating a new user account','','none'),(3861,'','default','After updating a user account','','none'),(3862,'','default','Configure when to execute actions.','','none'),(3863,'','default','Installing updates','','none'),(3864,'','default','Preparing to update your site','','none'),(3865,'','default','Installing %project','','none'),(3866,'','default','Preparing to install','','none'),(3867,'','default','Error installing / updating','','none'),(3868,'','default','Installed %project_name successfully','','none'),(3869,'','default','Update was completed successfully. Your site has been taken out of maintenance mode.','','none'),(3870,'','default','Update was completed successfully.','','none'),(3871,'','default','Update failed! See the log below for more information.','','none'),(3872,'','default','Update failed! See the log below for more information. Your site is still in maintenance mode.','','none'),(3873,'','default','Installation was completed successfully. Your site has been taken out of maintenance mode.','','none'),(3874,'','default','Installation was completed successfully.','','none'),(3875,'','default','Installation failed! See the log below for more information.','','none'),(3876,'','default','Installation failed! See the log below for more information. Your site is still in maintenance mode.','','none'),(3877,'','default','Failed to get available update data.','','7.34'),(3878,'','default','No available update data','','7.34'),(3879,'','default','Checking available update data','','none'),(3880,'','default','Trying to check available update data ...','','none'),(3881,'','default','Error checking available update data.','','none'),(3882,'','default','Checking available update data ...','','none'),(3883,'','default','Checked available update data for %title.','','none'),(3884,'','default','Failed to check available update data for %title.','','none'),(3885,'','default','An error occurred trying to get available update data.','','none'),(3886,'','default','Checked available update data for one project.','','none'),(3887,'','default','Checked available update data for @count projects.','','none'),(3888,'','default','Failed to get available update data for one project.','','none'),(3889,'','default','Failed to get available update data for @count projects.','','none'),(3890,'','default','There was a problem getting update information. Try again later.','','none'),(3891,'','default','(Theme)','','none'),(3892,'','default','(Release notes)','','none'),(3893,'','default','This update is a major version update which means that it may not be backwards compatible with your currently running version.  It is recommended that you read the release notes and proceed at your own risk.','','none'),(3894,'','default','(Security update)','','none'),(3895,'','default','(Unsupported)','','none'),(3896,'','default','All of your projects are up to date.','','none'),(3897,'','default','Download these updates','','none'),(3898,'','default','Manual updates required','','none'),(3899,'','default','Updates of Drupal core are not supported at this time.','','none'),(3900,'','default','You must select at least one project to update.','','none'),(3901,'','default','Downloading updates','','none'),(3902,'','default','Preparing to download selected updates','','none'),(3903,'','default','Downloading updates failed:','','none'),(3904,'','default','Updates downloaded successfully.','','none'),(3905,'','default','Fatal error trying to download.','','none'),(3906,'','default','Back up your database and site before you continue. <a href=\"@backup_url\">Learn how</a>.','','none'),(3907,'','default','Perform updates with site in maintenance mode (strongly recommended)','','none'),(3908,'','default','Install from a URL','','none'),(3909,'','default','For example: %url','','none'),(3910,'','default','Upload a module or theme archive to install','','none'),(3911,'','default','For example: %filename from your local computer','','none'),(3912,'','default','You must either provide a URL or upload an archive file to install.','','none'),(3913,'','default','The provided URL is invalid.','','none'),(3914,'','default','Unable to retrieve Drupal project from %url.','','none'),(3915,'','default','Provided archive contains no files.','','none'),(3916,'','default','Unable to determine %project name.','','none'),(3917,'','default','%project is already installed.','','none'),(3918,'','default','Cannot extract %file, not a valid archive.','','none'),(3919,'','default','Downloading %project','','none'),(3920,'','default','Failed to download %project from %url','','none'),(3921,'','default','Includes:','','none'),(3922,'','default','Enabled: %includes','','none'),(3923,'','default','Disabled: %disabled','','none'),(3924,'','default','%base_theme (!base_label)','','none'),(3925,'','default','Depends on: !basethemes','','none'),(3926,'','default','Required by: %subthemes','','none'),(3927,'','default','The Update manager module periodically checks for new versions of your site\'s software (including contributed modules and themes), and alerts administrators to available updates. In order to provide update information, anonymous usage statistics are sent to Drupal.org. If desired, you may disable the Update manager module from the <a href=\'@modules\'>Module administration page</a>. For more information, see the online handbook entry for <a href=\'@update\'>Update manager module</a>.','','none'),(3928,'','default','The Update manager also allows administrators to update and install modules and themes through the administration interface.','','none'),(3929,'','default','Checking for available updates','','none'),(3930,'','default','A report of <a href=\"@update-report\">available updates</a> will alert you when new releases are available for download. You may configure options for the frequency for checking updates (which are performed during <a href=\"@cron\">cron</a> runs) and e-mail notifications at the <a href=\"@update-settings\">Update manager settings</a>  page.','','none'),(3931,'','default','Performing updates through the user interface','','none'),(3932,'','default','The Update manager module allows administrators to perform updates directly through the administration interface. At the top of the <a href=\"@modules_page\">modules</a> and <a href=\"@themes_page\">themes</a> pages you will see a link to update to new releases. This will direct you to the <a href=\"@update-page\">update page</a> where you see a listing of all the missing updates and confirm which ones you want to upgrade. From there, you are prompted for your FTP/SSH password, which then transfers the files into your Drupal installation, overwriting your old files. More detailed instructions can be found in the <a href=\"@update\">online handbook</a>.','','none'),(3933,'','default','Installing new modules and themes through the user interface','','none'),(3934,'','default','You can also install new modules and themes in the same fashion, through the <a href=\"@install\">install page</a>, or by clicking the <em>Install new module/theme</em> link at the top of the <a href=\"@modules_page\">modules</a> and <a href=\"@themes_page\">themes</a> pages. In this case, you are prompted to provide either the URL to the download, or to upload a packaged release file from your local computer.','','none'),(3935,'','default','No update information available. <a href=\"@run_cron\">Run cron</a> or <a href=\"@check_manually\">check manually</a>.','','7.34'),(3936,'','default','You can automatically install your missing updates using the Update manager:','','none'),(3937,'','default','Your site is currently configured to send these emails when any updates are available. To get notified only for security updates, !url.','','7.59'),(3938,'','default','Your site is currently configured to send these emails only when security updates are available. To get notified for any available updates, !url.','','none'),(3939,'','default','The installed version of at least one of your modules or themes is no longer supported. Upgrading or disabling is strongly recommended. See the project homepage for more details.','','none'),(3940,'','default','There was a problem checking <a href=\"@update-report\">available updates</a> for Drupal.','','7.34'),(3941,'','default','There was a problem checking <a href=\"@update-report\">available updates</a> for your modules or themes.','','7.34'),(3942,'','default','See the <a href=\"@available_updates\">available updates</a> page for more information and to install your missing updates.','','7.34'),(3943,'','default','Ready to update','','none'),(3944,'','default','Update manager','','none'),(3945,'','default','Checks for available updates, and can securely install or update modules and themes via a web interface.','','none'),(3946,'','default','No people available.','','none'),(3947,'','default','This role will be automatically assigned new permissions whenever a module is enabled. Changing this setting will not affect existing permissions.','','none'),(3948,'','default','Registration and cancellation','','none'),(3949,'','default','Who can register accounts?','','none'),(3950,'','default','Administrators only','','none'),(3951,'','default','Visitors, but administrator approval is required','','none'),(3952,'','default','Require e-mail verification when a visitor creates an account.','','none'),(3953,'','default','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 this setting disabled, users will be logged in immediately upon registering, and may select their own passwords during registration.','','none'),(3954,'','default','When cancelling a user account','','none'),(3955,'','default','Users with the %select-cancel-method or %administer-users <a href=\"@permissions-url\">permissions</a> can override this default method.','','none'),(3956,'','default','Select method for cancelling account','','none'),(3957,'','default','Administer users','','none'),(3958,'','default','Personalization','','none'),(3959,'','default','Enable signatures.','','none'),(3960,'','default','The directory %directory does not exist or is not writable.','','none'),(3961,'','default','Enable user pictures.','','none'),(3962,'','default','Picture directory','','7.59'),(3963,'','default','Picture display style','','none'),(3964,'','default','The style selected will be used on display, while the original image is retained. Styles may be configured in the <a href=\"!url\">Image styles</a> administration area.','','none'),(3965,'','default','Picture upload dimensions','','none'),(3966,'','default','Picture upload file size','','none'),(3967,'','default','E-mails','','none'),(3968,'','default','Welcome (new user created by administrator)','','none'),(3969,'','default','Edit the welcome e-mail messages sent to new member accounts created by an administrator.','','none'),(3970,'','default','Welcome (awaiting approval)','','none'),(3971,'','default','Edit the welcome e-mail messages sent to new members upon registering, when administrative approval is required.','','none'),(3972,'','default','Welcome (no approval required)','','none'),(3973,'','default','Edit the welcome e-mail messages sent to new members upon registering, when no administrator approval is required.','','none'),(3974,'','default','Password recovery','','none'),(3975,'','default','Edit the e-mail messages sent to users who request a new password.','','none'),(3976,'','default','Account activation','','none'),(3977,'','default','Enable and edit 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).','','none'),(3978,'','default','Enable and edit e-mail messages sent to users when their accounts are blocked.','','none'),(3979,'','default','Account cancellation confirmation','','7.59'),(3980,'','default','Edit the e-mail messages sent to users when they attempt to cancel their accounts.','','7.59'),(3981,'','default','Account canceled','','none'),(3982,'','default','Enable and edit e-mail messages sent to users when their accounts are canceled.','','none'),(3983,'','default','Notify user when account is canceled.','','none'),(3984,'','default','The role name %name already exists. Choose another role name.','','none'),(3985,'','default','You are logged in as %user. <a href=\"!user_edit\">Change your password.</a>','','none'),(3986,'','default','Another user (%other_user) is already logged into the site on this computer, but you tried to use a one-time link for user %resetting_user. Please <a href=\"!logout\">logout</a> and try using the link again.','','none'),(3987,'','default','The one-time login link you clicked is invalid.','','none'),(3988,'','default','You have just used your one-time login link. It is no longer necessary to use this link to log in. Please change your password.','','none'),(3989,'','default','<p>This is a one-time login for %user_name and will expire on %expiration_date.</p><p>Click on this button to log in to the site and change your password.</p>','','none'),(3990,'','default','You have tried to use a one-time login link that has either been used or is no longer valid. Please request a new one using the form below.','','none'),(3991,'','default','When cancelling your account','','none'),(3992,'','default','When cancelling the account','','none'),(3993,'','default','Require e-mail confirmation to cancel account.','','none'),(3994,'','default','When enabled, the user must confirm the account cancellation via e-mail.','','none'),(3995,'','default','When enabled, the user will receive an e-mail notification after the account has been cancelled.','','none'),(3996,'','default','Are you sure you want to cancel your account?','','none'),(3997,'','default','Are you sure you want to cancel the account %name?','','none'),(3998,'','default','Select the method to cancel the account above.','','none'),(3999,'','default','A confirmation request to cancel your account has been sent to your e-mail address.','','none'),(4000,'','default','Your account will be blocked and you will no longer be able to log in. All of your content will remain attributed to your user name.','','none'),(4001,'','default','Your account will be blocked and you will no longer be able to log in. All of your content will be hidden from everyone but administrators.','','none'),(4002,'','default','Your account will be removed and all account information deleted. All of your content will be assigned to the %anonymous-name user.','','none'),(4003,'','default','Your account will be removed and all account information deleted. All of your content will also be deleted.','','none'),(4004,'','default','You have tried to use an account cancellation link that has expired. Please request a new one using the form below.','','none'),(4005,'','default','Sent account cancellation request to %name %email.','','none'),(4006,'','default','Tokens related to individual user accounts.','','none'),(4007,'','default','Tokens related to the currently logged in user.','','none'),(4008,'','default','The User module allows users to register, log in, and log out. It also allows users with proper permissions to manage user roles (used to classify users) and permissions associated with those roles. For more information, see the online handbook entry for <a href=\"@user\">User module</a>.','','none'),(4009,'','default','Creating and managing users','','none'),(4010,'','default','The User module allows users with the appropriate <a href=\"@permissions\">permissions</a> to create user accounts through the <a href=\"@people\">People administration page</a>, where they can also assign users to one or more roles, and block or delete user accounts. If allowed, users without accounts (anonymous users) can create their own accounts on the <a href=\"@register\">Create new account</a> page.','','none'),(4011,'','default','User roles and permissions','','none'),(4012,'','default','<em>Roles</em> are used to group and classify users; each user can be assigned one or more roles. By default there are two roles: <em>anonymous user</em> (users that are not logged in) and <em>authenticated user</em> (users that are registered and logged in). Depending on choices you made when you installed Drupal, the installation process may have defined more roles, and you can create additional custom roles on the <a href=\"@roles\">Roles page</a>. After creating roles, you can set permissions for each role on the <a href=\"@permissions_user\">Permissions page</a>. Granting a permission allows users who have been assigned a particular role to perform an action on the site, such as viewing a particular type of content, editing or creating content, administering settings for a particular module, or using a particular function of the site (such as search).','','none'),(4013,'','default','The <a href=\"@accounts\">Account settings page</a> allows you to manage settings for the displayed name of the anonymous user role, personal contact forms, user registration, and account cancellation. On this page you can also manage settings for account personalization (including signatures and user pictures), and adapt the text for the e-mail messages that are sent automatically during the user registration process.','','none'),(4014,'','default','By default, Drupal comes with two user roles:','','none'),(4015,'','default','Anonymous user: this role is used for users that don\'t have a user account or that are not authenticated.','','none'),(4016,'','default','Authenticated user: this role is automatically granted to all logged in users.','','none'),(4017,'','default','This form lets administrators add, edit, and arrange fields for storing user data.','','none'),(4018,'','default','This form lets administrators configure how fields should be displayed when rendering a user profile page.','','none'),(4019,'','default','User module timezone form element.','','7.59'),(4020,'','default','User module history view element.','','7.59'),(4021,'','default','Administer permissions','','none'),(4022,'','default','View user profiles','','none'),(4023,'','default','Change own username','','none'),(4024,'','default','Cancel own user account','','none'),(4025,'','default','Note: content may be kept, unpublished, deleted or transferred to the %anonymous-name user depending on the configured <a href=\"@user-settings-url\">user settings</a>.','','none'),(4026,'','default','Select method for cancelling own account','','none'),(4027,'','default','Spaces are allowed; punctuation is not allowed except for periods, hyphens, apostrophes, and underscores.','','7.31'),(4028,'','default','The signature is too long: it must be %max characters or less.','','none'),(4029,'','default','Sorry, too many failed login attempts from your IP address. This IP address is temporarily blocked. Try again later or <a href=\"@url\">request a new password</a>.','','none'),(4030,'','default','Cancelling account','','none'),(4031,'','default','Cancelling user account','','none'),(4032,'','default','%name has been disabled.','','none'),(4033,'','default','Account details for [user:name] at [site:name]','','none'),(4034,'','default','An administrator created an account for you at [site:name]','','none'),(4035,'','default','Account details for [user:name] at [site:name] (pending admin approval)','','none'),(4036,'','default','[user:name],\n\nThank you for registering at [site:name]. Your application for an account is currently pending approval. Once it has been approved, you will receive another e-mail containing information about how to log in, set your password, and other details.\n\n\n--  [site:name] team','','none'),(4037,'','default','[user:name] has applied for an account.\n\n[user:edit-url]','','none'),(4038,'','default','Replacement login information for [user:name] at [site:name]','','none'),(4039,'','default','Account details for [user:name] at [site:name] (approved)','','none'),(4040,'','default','Account details for [user:name] at [site:name] (blocked)','','none'),(4041,'','default','Account cancellation request for [user:name] at [site:name]','','none'),(4042,'','default','Account details for [user:name] at [site:name] (canceled)','','none'),(4043,'','default','Cancel the selected user accounts','','none'),(4044,'','default','The user account %name cannot be cancelled.','','none'),(4045,'','default','When cancelling these accounts','','none'),(4046,'','default','Are you sure you want to cancel these user accounts?','','none'),(4047,'','default','Cancel accounts','','none'),(4048,'','default','To make your password stronger:','','7.31'),(4049,'','default','Make it at least 6 characters','','7.31'),(4050,'','default','Add lowercase letters','','7.31'),(4051,'','default','Add uppercase letters','','7.31'),(4052,'','default','Add numbers','','7.31'),(4053,'','default','Add punctuation','','7.31'),(4054,'','default','Make it different from your username','','7.31'),(4055,'','default','Weak','','7.31'),(4056,'','default','Fair','','7.31'),(4057,'','default','Blocked user: %name %email.','','none'),(4058,'','default','There is currently 1 user online.','','7.34'),(4059,'','default','There are currently @count users online.','','none'),(4060,'','default','Sorry, there has been more than one failed login attempt for this account. It is temporarily blocked. Try again later or <a href=\"@url\">request a new password</a>.','','none'),(4061,'','default','Sorry, there have been more than @count failed login attempts for this account. It is temporarily blocked. Try again later or <a href=\"@url\">request a new password</a>.','','7.34'),(4062,'','default','Find and manage people interacting with your site.','','7.34'),(4063,'','default','Confirm account cancellation','','none'),(4064,'','default','User passwords rehashed to improve security','','none'),(4065,'','default','Migrated user time zones','','none'),(4066,'','default','Minimal','','none'),(4067,'','default','Start with only a few modules enabled.','','none'),(4068,'','default','Basic page','','none'),(4069,'','default','Use <em>basic pages</em> for your static content, such as an \'About us\' page.','','7.59'),(4070,'','default','Use tags to group articles on similar topics into categories.','','none'),(4071,'','default','Enter a comma-separated list of words to describe your content.','','none'),(4072,'','default','Install with commonly used features pre-configured.','','none'),(4073,'','default','Content width','','none'),(4074,'','default','Fluid width','','none'),(4075,'','default','Fixed width','','none'),(4076,'','default','Specify whether the content will wrap to a fixed width or will fluidly expand to the width of the browser window.','','none'),(4077,'','default','A multi-column theme which can be configured to modify colors and switch between fixed and fluid width layouts.','','none'),(4078,'','default','A simple one-column, tableless, fluid width administration theme.','','none'),(4079,'','default','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>.','','none'),(4080,'','default','Image style','','none'),(4081,'','default','1 pending update (@number_applied to be applied, @number_incompatible skipped)','','none'),(4082,'','default','@count pending updates (@number_applied to be applied, @number_incompatible skipped)','','none'),(4083,'','default','The Blog module allows registered users to maintain an online journal, or <em>blog</em>. Blogs are made up of individual <em>blog entries</em>. By default, the blog entries are displayed by creation time in descending order, with comments enabled, and are promoted to the site\'s front page. For more information, see the online handbook entry for <a href=\'@blog\'>Blog module</a>.','','none'),(4084,'','default','Author textfield','','7.59'),(4085,'','default','Subject textfield','','7.59'),(4086,'','default','A contact form with category %category already exists.','','none'),(4087,'','default','Hello !recipient-name,','','none'),(4088,'','default','Attempt to create an instance of a field @field_name that doesn\'t exist or is currently inactive.','','none'),(4089,'','default','Attempt to create an instance of field @field_name on bundle @bundle that already has an instance of that field.','','none'),(4090,'','default','Field API to add fields to entities like nodes and users.','','none'),(4091,'','default','Overview of fields on all entity types.','','7.34'),(4092,'','default','Configuring text formats','','none'),(4093,'','default','Configure text formats on the <a href=\"@formats\">Text formats page</a>. <strong>Improper text format configuration is a security risk</strong>. To ensure security, untrusted users should only have access to text formats that restrict them to either plain text or a safe set of HTML tags, since certain HTML tags can allow embedding malicious links or scripts in text. More trusted registered users may be granted permission to use less restrictive text formats in order to create rich content.','','none'),(4094,'','default','Users with access to more than one text format can use the <em>Text format</em> fieldset to choose between available text formats when creating or editing multi-line content. Administrators can define the text formats available to each user role, and control the order of formats listed in the <em>Text format</em> fieldset on the <a href=\"@text-formats\">Text formats page</a>.','','none'),(4095,'','default','Text formats define the HTML tags, code, and other formatting that can be used when entering text. <strong>Improper text format configuration is a security risk</strong>. Learn more on the <a href=\"@filterhelp\">Filter module help page</a>.','','none'),(4096,'','default','Show more content','','7.34'),(4097,'','default','Collapse','','none'),(4098,'','default','The testing framework requires the DOMDocument class to be available. Check the configure command at the <a href=\"@link-phpinfo\">PHP info page</a>.','','none'),(4099,'','default','Error messages to display','','none'),(4100,'','default','It is recommended that sites running on production environments do not display any errors.','','none'),(4101,'','default','Cannot open %file_path','','none'),(4102,'','default','Term name textfield','','7.59'),(4103,'','default','Term description textarea','','7.59'),(4104,'','default','Password reset instructions will be mailed to %email. You must log out to use the password reset link in the e-mail.','','none'),(4105,'','default','Enter your current password to change the %mail or %pass. !request_new.','','7.31'),(4106,'','default','Current password','','7.31'),(4107,'','default','Your current password is missing or incorrect; it\'s required to change the %name.','','none'),(4108,'','default','A welcome message with further instructions has been e-mailed to the new user <a href=\"@url\">%name</a>.','','none'),(4109,'','default','A welcome message with further instructions has been sent to your e-mail address.','','none'),(4110,'','default','Configure user accounts.','','7.59'),(4111,'','default','Configure default behavior of users, including registration requirements, e-mails, fields, and user pictures.','','7.59'),(4112,'','default','%module module installed.','','none'),(4113,'','default','Table %name already exists.','','none'),(4114,'','default','Cannot rename %table to %table_new: table %table doesn\'t exist.','','none'),(4115,'','default','Cannot rename %table to %table_new: table %table_new already exists.','','none'),(4116,'','default','Cannot add field %table.%field: table doesn\'t exist.','','none'),(4117,'','default','Cannot add field %table.%field: field already exists.','','none'),(4118,'','default','Cannot set default value of field %table.%field: field doesn\'t exist.','','none'),(4119,'','default','Cannot remove default value of field %table.%field: field doesn\'t exist.','','none'),(4120,'','default','Cannot add primary key to table %table: table doesn\'t exist.','','none'),(4121,'','default','Cannot add primary key to table %table: primary key already exists.','','none'),(4122,'','default','Cannot add unique key %name to table %table: table doesn\'t exist.','','none'),(4123,'','default','Cannot add unique key %name to table %table: unique key already exists.','','none'),(4124,'','default','Cannot add index %name to table %table: table doesn\'t exist.','','none'),(4125,'','default','Cannot add index %name to table %table: index already exists.','','none'),(4126,'','default','Cannot change the definition of field %table.%name: field doesn\'t exist.','','none'),(4127,'','default','Cannot rename field %table.%name to %name_new: target field already exists.','','none'),(4128,'','default','Use this page to create a new custom block.','','7.34'),(4129,'','default','Number of recent blog posts to display','','none'),(4130,'','default','@node_type comment','','7.59'),(4131,'','default','Edit comment %comment','','none'),(4132,'','default','The Field UI module provides an administrative user interface (UI) for attaching and managing fields. Fields can be defined at the content-type level for content items and comments, at the vocabulary level for taxonomy terms, and at the site level for user accounts. Other modules may also enable fields to be defined for their data. Field types (text, image, number, etc.) are defined by modules, and collected and managed by the <a href=\"@field\">Field module</a>. For more information, see the online handbook entry for <a href=\"@field_ui\" target=\"_blank\">Field UI module</a>.','','none'),(4133,'','default','Planning fields','','none'),(4134,'','default','What the field will be called','','none'),(4135,'','default','A field has a <em>label</em> (the name displayed in the user interface) and a <em>machine name</em> (the name used internally). The label can be changed after you create the field, if needed, but the machine name cannot be changed after you have created the field.','','none'),(4136,'','default','What type of data the field will store','','none'),(4137,'','default','Each field can store one type of data (text, number, file, etc.). When you define a field, you choose a particular <em>field type</em>, which corresponds to the type of data you want to store. The field type cannot be changed after you have created the field.','','none'),(4138,'','default','How the data will be input and displayed','','none'),(4139,'','default','How many values the field will store','','none'),(4140,'','default','You can store one value, a specific maximum number of values, or an unlimited number of values in each field. For example, an employee identification number field might store a single number, whereas a phone number field might store multiple phone numbers. This setting can be changed after you have created the field, but if you reduce the maximum number of values, you may lose information.','','none'),(4141,'','default','Reusing fields','','none'),(4142,'','default','Once you have defined a field, you can reuse it. For example, if you define a custom image field for one content type, and you need to have an image field with the same parameters on another content type, you can add the same field to the second content type, in the <em>Add existing field</em> area of the user interface. You could also add this field to a taxonomy vocabulary, comments, user accounts, etc.','','none'),(4143,'','default','Some settings of a reused field are unique to each use of the field; others are shared across all places you use the field. For example, the label of a text field is unique to each use, while the setting for the number of values is shared.','','none'),(4144,'','default','There are two main reasons for reusing fields. First, reusing fields can save you time over defining new fields. Second, reusing fields also allows you to display, filter, group, and sort content together by field across content types. For example, the contributed Views module allows you to create lists and tables of content. So if you use the same field on multiple content types, you can create a View containing all of those content types together displaying that field, sorted by that field, and/or filtered by that field.','','none'),(4145,'','default','Fields on content items','','none'),(4146,'','default','Fields on content items are defined at the content-type level, on the <em>Manage fields</em> tab of the content type edit page (which you can reach from the <a href=\"@types\">Content types page</a>). When you define a field for a content type, each content item of that type will have that field added to it. Some fields, such as the Title and Body, are provided for you when you create a content type, or are provided on content types created by your installation profile.','','none'),(4147,'','default','Fields on taxonomy terms','','none'),(4148,'','default','Fields on taxonomy terms are defined at the taxonomy vocabulary level, on the <em>Manage fields</em> tab of the vocabulary edit page (which you can reach from the <a href=\"@taxonomy\">Taxonomy page</a>). When you define a field for a vocabulary, each term in that vocabulary will have that field added to it. For example, you could define an image field for a vocabulary to store an icon with each term.','','none'),(4149,'','default','Fields on user accounts','','none'),(4150,'','default','Fields on user accounts are defined on a site-wide basis on the <a href=\"@fields\">Manage fields tab</a> of the <a href=\"@accounts\">Account settings</a> page. When you define a field for user accounts, each user account will have that field added to it. For example, you could add a long text field to allow users to include a biography.','','none'),(4151,'','default','Fields on comments','','none'),(4152,'','default','Fields on comments are defined at the content-type level, on the <em>Comment fields</em> tab of the content type edit page (which you can reach from the <a href=\"@types\">Content types page</a>). When you add a field for comments, each comment on a content item of that type will have that field added to it. For example, you could add a website field to the comments on forum posts, to allow forum commenters to add a link to their website.','','none'),(4153,'','default','Administer text formats and filters','','none'),(4154,'','default','@type language detection','','none'),(4155,'','default','Strings in the uploaded file replace existing ones, new ones are added. The plural format is updated.','','none'),(4156,'','default','Existing strings and the plural format are kept, only new strings are added.','','none'),(4157,'','default','Define how to decide which language is used to display page elements (primarily text provided by Drupal and modules, such as field labels and help text). This decision is made by evaluating a series of detection methods for languages; the first detection method that gets a result will determine which language is used for that type of text. Define the order of evaluation of language detection methods on this page.','','none'),(4158,'','default','User interface text','','7.59'),(4159,'','default','Use the detected interface language.','','none'),(4160,'','default','Add new %type','','none'),(4161,'','default','The new set is created by copying items from your default shortcut set.','','none'),(4162,'','default','The new set is created by copying items from the %default set.','','none'),(4163,'','default','You are currently using the %set-name shortcut set.','','none'),(4164,'','default','edit set name','','none'),(4165,'','default','delete set','','none'),(4166,'','default','Create new set','','none'),(4167,'','default','The %set_name shortcut set has been created. You can edit it from this page.','','none'),(4168,'','default','Updated set name to %set-name.','','none'),(4169,'','default','If you have chosen this shortcut set as the default for some or all users, they may also be affected by deleting it.','','none'),(4170,'','default','Are you sure you want to delete the shortcut set %title?','','none'),(4171,'','default','The shortcut set %title has been deleted.','','none'),(4172,'','default','1 user has chosen or been assigned to this shortcut set.','','none'),(4173,'','default','@count users have chosen or been assigned to this shortcut set.','','none'),(4174,'','default','The Shortcut module allows users to create sets of <em>shortcut</em> links to commonly-visited pages of the site. Shortcuts are contained within <em>sets</em>. Each user with <em>Select any shortcut set</em> permission can select a shortcut set created by anyone at the site. For more information, see the online handbook entry for <a href=\"@shortcut\">Shortcut module</a>.','','none'),(4175,'','default','Administering shortcuts','','none'),(4176,'','default','Users with the <em>Administer shortcuts</em> permission can manage shortcut sets and edit the shortcuts within sets from the <a href=\"@shortcuts\">Shortcuts administration page</a>.','','none'),(4177,'','default','Choosing shortcut sets','','none'),(4178,'','default','Users with permission to switch shortcut sets can choose a shortcut set to use from the Shortcuts tab of their user account page.','','none'),(4179,'','default','The Shortcut module creates an add/remove link for each page on your site; the link lets you add or remove the current page from the currently-enabled set of shortcuts (if your theme displays it and you have permission to edit your shortcut set). The core Seven administration theme displays this link next to the page title, as a small + or - sign. If you click on the + sign, you will add that page to your preferred set of shortcuts. If the page is already part of your shortcut set, the link will be a - sign, and will allow you to remove the current page from your shortcut set.','','none'),(4180,'','default','Define which shortcut set you are using on the <a href=\"@shortcut-link\">Shortcuts tab</a> of your account page.','','none'),(4181,'','default','Edit current shortcut set','','none'),(4182,'','default','Editing the current shortcut set will affect other users if that set has been assigned to or selected by other users. Granting \"Select any shortcut set\" permission along with this permission will grant permission to edit any shortcut set.','','none'),(4183,'','default','Select any shortcut set','','none'),(4184,'','default','From all shortcut sets, select one to be own active set. Without this permission, an administrator selects shortcut sets for users.','','none'),(4185,'','default','Add and modify shortcut sets.','','7.59'),(4186,'','default','Add shortcut set','','7.34'),(4187,'','default','Edit set name','','none'),(4188,'','default','Delete shortcut set','','none'),(4189,'','default','@remote could not be saved to @path.','','none'),(4190,'','default','Drupal requires you to enable the PHP extensions in the following list (see the <a href=\"@system_requirements\">system requirements page</a> for more information):','','none'),(4191,'','default','Database support','','none'),(4192,'','default','Your web server does not appear to support any common PDO database extensions. Check with your hosting provider to see if they support PDO (PHP Data Objects) and offer any databases that <a href=\"@drupal-databases\">Drupal supports</a>.','','none'),(4193,'','default','Footer first column','','7.59'),(4194,'','default','Footer second column','','7.59'),(4195,'','default','Footer third column','','7.59'),(4196,'','default','Footer fourth column','','7.59'),(4197,'','default','Kyrgyz','','none'),(4198,'','default','theme() may not be called until all modules are loaded.','','none'),(4199,'','default','GD library PNG support','','7.59'),(4200,'','default','The date the comment was most recently updated.','','none'),(4201,'','default','Comment posted: %subject.','','none'),(4202,'','default','On value','','none'),(4203,'','default','If left empty, \"1\" will be used.','','none'),(4204,'','default','Off value','','none'),(4205,'','default','If left empty, \"0\" will be used.','','none'),(4206,'','default','This field has been disabled because you do not have sufficient permissions to edit it.','','none'),(4207,'','default','Select a forum.','','none'),(4208,'','default','The GD Library for PHP is enabled, but was compiled without support for functions used by the rotate and desaturate effects. It was probably compiled using the official GD libraries from http://www.libgd.org instead of the GD library bundled with PHP. You should recompile PHP --with-gd using the bundled GD library. See <a href=\"http://www.php.net/manual/book.image.php\">the PHP manual</a>.','','none'),(4209,'','default','GD library rotate and desaturate effects','','7.59'),(4210,'','default','View, edit and delete all content regardless of permission restrictions.','','none'),(4211,'','default','You must validate your email address for this account before logging in via OpenID.','','none'),(4212,'','default','The HTML ID %id is unique.','','none'),(4213,'','default','Syslog format','','none'),(4214,'','default','Specify the format of the syslog entry. Available variables are: <dl><dt><code>!base_url</code></dt><dd>Base URL of the site.</dd><dt><code>!timestamp</code></dt><dd>Unix timestamp of the log entry.</dd><dt><code>!type</code></dt><dd>The category to which this message belongs.</dd><dt><code>!ip</code></dt><dd>IP address of the user triggering the message.</dd><dt><code>!request_uri</code></dt><dd>The requested URI.</dd><dt><code>!referer</code></dt><dd>HTTP Referer if available.</dd><dt><code>!uid</code></dt><dd>User ID.</dd><dt><code>!link</code></dt><dd>A link to associate with the message.</dd><dt><code>!message</code></dt><dd>The message to store in the log.</dd></dl>','','none'),(4215,'','default','External resources can be optimized automatically, which can reduce both the size and number of requests made to your website.','','7.59'),(4216,'','default','A date in \'time-since\' format. (%date)','','none'),(4217,'','default','The location of the file relative to Drupal root.','','none'),(4218,'','default','HTTP error @errorcode occurred when trying to fetch @remote.','','none'),(4219,'','default','Your system or network configuration does not allow Drupal to access web pages, resulting in reduced functionality. This could be due to your webserver configuration or PHP settings, and should be resolved in order to download information about available updates, fetch aggregator feeds, sign in via OpenID, or use other network-dependent services. If you are certain that Drupal can access web pages but you are still seeing this message, you may add <code>$conf[\'drupal_http_request_fails\'] = FALSE;</code> to the bottom of your settings.php file.','','none'),(4220,'','default','A translation of %title in %language already exists, a new %type will be created instead of a translation.','','none'),(4221,'','default','Your modules have been downloaded and updated.','','none'),(4222,'','default','<a href=\"@update\">Run database updates</a>','','none'),(4223,'','default','@name <em>(locked)</em>','','none'),(4224,'','default','Are you sure you want to delete the role %name ?','','none'),(4225,'','default','Permissions let you control what users can do and see on your site. You can define a specific set of permissions for each role. (See the <a href=\"@role\">Roles</a> page to create a role). Two important roles to consider are Authenticated Users and Administrators. Any permissions granted to the Authenticated Users role will be given to any user who can log into your site. You can make any role the Administrator role for the site, meaning this will be granted all new permissions automatically. You can do this on the <a href=\"@settings\">User Settings</a> page. You should be careful to ensure that only trusted users are given this access and level of control of your site.','','none'),(4226,'','default','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 on the <a href=\"@permissions\">permissions page</a>. Examples of roles include: anonymous user, authenticated user, moderator, administrator and so on. In this area you will define the names and order of the roles on your site. It is recommended to order your roles from least permissive (anonymous user) to most permissive (administrator). To delete a role choose \"edit role\".','','none'),(4227,'','default','Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.','','7.59'),(4228,'','default','Filipino','','none'),(4229,'','default','Swiss German','','none'),(4230,'','default','Scots','','none'),(4231,'; modules/file/file.js','default','The selected file %filename cannot be uploaded. Only files with the following extensions are allowed: %extensions.','','none'),(4232,'','default','Cache pages for anonymous users','','7.59'),(4233,'','default','Bartik','','7.34'),(4234,'','default','A flexible, recolorable theme with many regions.','','none'),(4235,'','default','Highlighted','','7.59'),(4236,'','default','Sidebar second','','7.59'),(4237,'','default','Triptych first','','7.59'),(4238,'','default','Triptych middle','','7.59'),(4239,'','default','Triptych last','','7.59'),(4240,'','default','Main background','','none'),(4241,'','default','Sidebar background','','none'),(4242,'','default','Sidebar borders','','none'),(4243,'','default','Footer background','','none'),(4244,'','default','Plum','','none'),(4245,'','default','!local-task-title!active','','7.59'),(4246,'','default','A space-separated list of HTML tags allowed in the content of feed items. Disallowed tags are stripped from the content.','','none'),(4247,'','default','%field may only contain characters a-z, underscores, or hyphens.','','none'),(4248,'','default','%field cannot contain any markup.','','none'),(4249,'','default','No URL aliases available. <a href=\"@link\">Add URL alias</a>.','','none'),(4250,'','default','To provide keyword searching, the search engine maintains an index of words found in the content and its fields, along with text added to your content by other modules (such as comments from the core Comment module, and taxonomy terms from the core Taxonomy module). To build and maintain this index, a correctly configured <a href=\"@cron\">cron maintenance task</a> is required. Users with <em>Administer search</em> permission can further configure the cron settings on the <a href=\"@searchsettings\">Search settings page</a>.','','none'),(4251,'','default','Content reindexing','','none'),(4252,'','default','Content-related actions on your site (creating, editing, or deleting content and comments) automatically cause affected content items to be marked for indexing or reindexing at the next cron run. When content is marked for reindexing, the previous content remains in the index until cron runs, at which time it is replaced by the new content. Unlike content-related actions, actions related to the structure of your site do not cause affected content to be marked for reindexing. Examples of structure-related actions that affect content include deleting or editing taxonomy terms, enabling or disabling modules that add text to content (such as Taxonomy, Comment, and field-providing modules), and modifying the fields or display parameters of your content types. If you take one of these actions and you want to ensure that the search index is updated to reflect your changed site structure, you can mark all content for reindexing by clicking the \"Re-index site\" button on the <a href=\"@searchsettings\">Search settings page</a>. If you have a lot of content on your site, it may take several cron runs for the content to be reindexed.','','none'),(4253,'','default','Cached pages will not be re-created until at least this much time has elapsed.','','7.59'),(4254,'','default','Expiration of cached pages','','7.59'),(4255,'','default','The maximum time an external cache can use an old version of a page.','','7.59'),(4256,'','default','These options control the display settings for the %name theme. When your site is displayed using this theme, these settings will be used.','','none'),(4257,'','default','Administer software updates','','none'),(4258,'','default','Enter a valid email address or use a token e-mail address such as %author.','','none'),(4259,'','default','@required_name (Missing)','','none'),(4260,'','default','@required_name (Version @compatibility required)','','none'),(4261,'','default','@name requires at least PHP @version.','','none'),(4262,'','default','Unresolved dependency','','none'),(4263,'','default','@name requires this module.','','none'),(4264,'','default','@name requires this module and version. Currently using @required_name version @version','','none'),(4265,'','default','Site details','','7.34'),(4266,'','default','Title and slogan','','none'),(4267,'','default','Firehouse','','none'),(4268,'','default','Ice','','none'),(4269,'','default','Can\'t handle more than one field storage engine','','none'),(4270,'','default','Field storage engine not found.','','none'),(4271,'','default','For this query an entity type must be specified.','','none'),(4272,'','default','Entity %entity has no base table.','','none'),(4273,'','default','Do not know how to order on @key for @entity_type','','none'),(4274,'','default','The database table prefix you have entered, %prefix, is invalid. The table prefix can only contain alphanumeric characters, periods, or underscores.','','none'),(4275,'','default','Default settings file','','none'),(4276,'','default','The default settings file does not exist.','','none'),(4277,'','default','The @drupal installer requires that the %default-file file not be modified in any way from the original download.','','none'),(4278,'','default','Māori','','none'),(4279,'','default','Attempt to create an instance of field @field_name without an entity type.','','none'),(4280,'','default','Attempt to create an instance of field @field_name on forbidden entity type @entity_type.','','none'),(4281,'','default','Attempt to update an instance of a nonexistent field @field.','','none'),(4282,'','default','Attempt to update an instance of field @field on bundle @bundle that doesn\'t exist.','','none'),(4283,'','default','Attempt to purge a field @field_name that still has instances.','','none'),(4284,'','default','%name: the value may be no less than %min.','','none'),(4285,'','default','%name: the value may be no greater than %max.','','none'),(4286,'','default','No fields have been defined yet.','','none'),(4287,'','default','Weight for new field','','7.34'),(4288,'','default','Weight for added field','','7.34'),(4289,'','default','Custom display settings','','7.34'),(4290,'','default','Use custom display settings for the following view modes','','7.34'),(4291,'','default','The %view_mode mode now uses custom display settings. You might want to <a href=\"@url\">configure them</a>.','','none'),(4292,'','default','User interface for the Field API.','','none'),(4293,'','default','Separate extensions with a space or comma and do not include the leading dot.','','none'),(4294,'','default','Edit an existing effect within a style.','','none'),(4295,'','default','Delete an existing effect from a style.','','none'),(4296,'','default','Node module element','','7.59'),(4297,'','default','Close overlay','','7.59'),(4298,'','default','Poll module settings','','none'),(4299,'','default','Poll vote','','none'),(4300,'','default','Poll results','','none'),(4301,'','default','The new set name is required.','','none'),(4302,'','default','The shortcut set %name already exists. Choose another name.','','none'),(4303,'','default','Expected text found in @field of email message: \"@expected\".','','none'),(4304,'','default','1 e-mail was sent during this test.','','none'),(4305,'','default','@count e-mails were sent during this test.','','none'),(4306,'','default','Blocked IP addresses','','none'),(4307,'','default','IP addresses listed here are blocked from your site. Blocked addresses are completely forbidden from accessing the site and instead see a brief message explaining the situation.','','none'),(4308,'','default','The content type %rowtype had uploads disabled but contained uploaded file data. Uploads have been re-enabled to migrate the existing data. You may delete the \"File attachments\" field in the %rowtype type if this data is not necessary.','','none'),(4309,'','default','Upload module has been migrated to File module.','','none'),(4310,'','default','Available variables are: [site:name], [site:url], [user:name], [user:mail], [site:login-url], [site:url-brief], [user:edit-url], [user:one-time-login-url], [user:cancel-url].','','7.59'),(4311,'','default','not yet assigned','','none'),(4312,'','default','not yet created','','none'),(4313,'','default','[user:name],\n\nThank you for registering at [site:name]. You may now log in by clicking this link or copying and pasting it to your browser:\n\n[user:one-time-login-url]\n\nThis link can only be used once to log in and will lead you to a page where you can set your password.\n\nAfter setting your password, you will be able to log in at [site:login-url] in the future using:\n\nusername: [user:name]\npassword: Your password\n\n--  [site:name] team','','none'),(4314,'','default','[user:name],\n\nA site administrator at [site:name] has created an account for you. You may now log in by clicking this link or copying and pasting it to your browser:\n\n[user:one-time-login-url]\n\nThis link can only be used once to log in and will lead you to a page where you can set your password.\n\nAfter setting your password, you will be able to log in at [site:login-url] in the future using:\n\nusername: [user:name]\npassword: Your password\n\n--  [site:name] team','','none'),(4315,'','default','[user:name],\n\nA request to reset the password for your account has been made at [site:name].\n\nYou may now log in by clicking this link or copying and pasting it to your browser:\n\n[user:one-time-login-url]\n\nThis link can only be used once to log in and will lead you to a page where you can set your password. It expires after one day and nothing will happen if it\'s not used.\n\n--  [site:name] team','','none'),(4316,'','default','[user:name],\n\nYour account on [site:name] has been blocked.\n\n--  [site:name] team','','none'),(4317,'','default','[user:name],\n\nA request to cancel your account has been made at [site:name].\n\nYou may now cancel your account on [site:url-brief] by clicking this link or copying and pasting it into your browser:\n\n[user:cancel-url]\n\nNOTE: The cancellation of your account is not reversible.\n\nThis link expires in one day and nothing will happen if it is not used.\n\n--  [site:name] team','','none'),(4318,'','default','[user:name],\n\nYour account on [site:name] has been canceled.\n\n--  [site:name] team','','none'),(4319,'','default','The ability to send users their passwords in plain text has been removed in Drupal 7. Your existing email templates have been modified to remove it. You should <a href=\"@template-url\">review these templates</a> to make sure they read properly.','','none'),(4320,'','default','None (original image)','','none'),(4321,'','default','The URL of the account edit page.','','none'),(4322,'','default','Nonce from @endpoint rejected because it is not correctly formatted, nonce: @nonce.','','none'),(4323,'','default','Nonce received from @endpoint is out of range (time difference: @intervals). Check possible clock skew.','','none'),(4324,'','default','Nonce replay attempt blocked from @ip, nonce: @nonce.','','none'),(4325,'','default','Comment display','','7.34'),(4326,'','default','New field name','','7.34'),(4327,'','default','Error opening socket @socket','','none'),(4328,'','default','delivery callback not found','','none'),(4329,'','default','callback %callback not found: %q.','','none'),(4330,'','default','The specified file %file could not be copied, because the destination is invalid. More information is available in the system log.','','none'),(4331,'','default','The specified file %file could not be copied, because the destination directory is not properly configured. This may be caused by a problem with file or directory permissions. More information is available in the system log.','','7.59'),(4332,'','default','The file %file could not be copied because a file by that name already exists in the destination directory.','','none'),(4333,'','default','The specified file %file could not be moved, because the destination is invalid. More information is available in the system log.','','none'),(4334,'','default','The specified file %file could not be deleted, because it is not a valid URI. More information is available in the system log.','','none'),(4335,'','default','The data could not be saved, because the destination is invalid. More information is available in the system log.','','none'),(4336,'','default','File %file (%realpath) could not be copied, because the destination %destination is invalid. This is often caused by improper use of file_copy() or a missing stream wrapper.','','none'),(4337,'','default','File %file (%realpath) could not be copied because it does not exist.','','none'),(4338,'','default','File %file could not be copied because a file by that name already exists in the destination directory (%directory)','','none'),(4339,'','default','File %file could not be copied because it would overwrite itself.','','none'),(4340,'','default','The specified file %file could not be copied to %destination.','','none'),(4341,'','default','File %file (%realpath) could not be moved, because the destination %destination is invalid. This may be caused by improper use of file_move() or a missing stream wrapper.','','none'),(4342,'','default','File %file (%realpath) could not be deleted because it is not a valid URI. This may be caused by improper use of file_delete() or a missing stream wrapper.','','none'),(4343,'','default','The data could not be saved because the destination %destination is invalid. This may be caused by improper use of file_save_data() or a missing stream wrapper.','','none'),(4344,'','default','Your PHP configuration only supports a single database type, so it has been automatically selected.','','none'),(4345,'','default','Failed to connect to your database server. The server reports the following message: %error.<ul><li>Is the database server running?</li><li>Does the database exist, and have you entered the correct database name?</li><li>Have you entered the correct username and password?</li><li>Have you entered the correct database hostname?</li></ul>','','none'),(4346,'','default','The version of PHP you are using has known issues with PostgreSQL. You need to upgrade PHP to 5.2.11, 5.3.1 or greater.','','none'),(4347,'','default','Exit block region demonstration','','7.34'),(4348,'','default','Customizing the dashboard requires the !permission-name permission.','','none'),(4349,'','default','To customize the dashboard page, move blocks to the dashboard regions on the <a href=\"@dashboard\">Dashboard administration page</a>, or enable JavaScript on this page to use the drag-and-drop interface.','','7.34'),(4350,'','default','Configure available dashboard blocks','','7.34'),(4351,'','default','Drag and drop these blocks to the columns below. Changes are automatically saved. More options are available on the <a href=\"@dashboard-url\">configuration page</a>.','','none'),(4352,'','default','Configure which blocks can be shown on the dashboard.','','7.34'),(4353,'','default','The Database logging module allows you to view an event log on the <a href=\"@dblog\">Recent log messages</a> page. The log is a chronological list of recorded events containing usage data, performance data, errors, warnings and operational information. Administrators should check the log on a regular basis to ensure their site is working properly.','','none'),(4354,'','default','In case of errors or problems with the site, the <a href=\"@dblog\">Recent log messages</a> page can be useful for debugging, since it shows the sequence of events. The log messages include usage information, warnings, and errors.','','none'),(4355,'','default','The Database logging module monitors your website, capturing system events in a log (shown here) to be reviewed by an authorized individual at a later time. This log is a list of recorded events containing usage data, performance data, errors, warnings and operational information. It is vital to check the Recent log messages report on a regular basis, as it is often the only way to tell what is going on.','','none'),(4356,'','default','Database log messages to keep','','none'),(4357,'','default','The maximum number of messages to keep in the database log. Requires a <a href=\"@cron\">cron maintenance task</a>.','','none'),(4358,'','default','Recent log messages','','7.34'),(4359,'','default','Define a string that should be suffixed to the value, like \' m\', \' kb/s\'. Leave blank for none. Separate singular and plural values with a pipe (\'pound|pounds\').','','none'),(4360,'','default','Thousand marker','','none'),(4361,'','default','Display prefix and suffix.','','none'),(4362,'','default','Display with prefix and suffix.','','none'),(4363,'','default','- Select a value -','','none'),(4364,'','default','Trim length','','none'),(4365,'','default','No field is displayed.','','7.34'),(4366,'','default','No field is hidden.','','7.34'),(4367,'','default','Format settings:','','none'),(4368,'','default','The file used in the !name field may not be referenced.','','none'),(4369,'','default','Text formats are presented on content editing pages in the order defined on this page. The first format available to a user will be selected by default.','','none'),(4370,'','default','Missing text format: %format.','','none'),(4371,'','default','Link image to','','none'),(4372,'','default','Image style: @style','','none'),(4373,'','default','Linked to content','','none'),(4374,'','default','Linked to file','','none'),(4375,'','default','Shown when hovering over the menu link.','','7.34'),(4376,'','default','The menu module allows on-the-fly creation of menu links in the content authoring forms. To configure these settings for a particular content type, visit the <a href=\"@content-types\">Content types</a> page, click the <em>edit</em> link for the content type, and go to the <em>Menu settings</em> section.','','none'),(4377,'','default','Undefined language (@langcode)','','none'),(4378,'','default','Format: %time. The date format is YYYY-MM-DD and %timezone is the time zone offset from UTC. Leave blank to use the time of form submission.','','7.34'),(4379,'','default','Administrative overlay','','none'),(4380,'','default','Use the overlay for administrative pages.','','none'),(4381,'','default','Show administrative pages on top of the page you started from.','','none'),(4382,'','default','A <a href=\"@php-code\">PHP code</a> text format has been created.','','none'),(4383,'','default','Choose which search modules are active from the available modules.','','none'),(4384,'','default','Default search module','','none'),(4385,'','default','Choose which search module is the default.','','none'),(4386,'','default','Your default search module is not selected as an active module.','','none'),(4387,'','default','Search is currently disabled.','','none'),(4388,'','default','... !excerpt ... !excerpt ...','','none'),(4389,'','default','Syslog identity','','none'),(4390,'','default','A string that will be prepended to every message logged to Syslog. If you have multiple sites logging to the same Syslog log file, a unique identity per site makes it easy to tell the log entries apart.','','none'),(4391,'','default','Optionally, specify a relative URL to display as the front page.  Leave blank to display the default content feed.','','7.34'),(4392,'','default','Error pages','','7.34'),(4393,'','default','The path \'%path\' is either invalid or you do not have access to it.','','none'),(4394,'','default','Last run: %cron-last ago.','','none'),(4395,'','default','Run cron every','','none'),(4396,'','default','When enabled, only users with the \"Use the site in maintenance mode\" <a href=\"@permissions-url\">permission</a> are able to access your site to perform maintenance; all other visitors see the maintenance mode message configured below. Authorized users can log in directly via the <a href=\"@user-login\">user login</a> page.','','7.59'),(4397,'','default','In order for the site and its modules to continue to operate well, a set of routine administrative operations must run on a regular basis. The System module manages this task by making use of a system cron job. You can verify the status of cron tasks by visiting the <a href=\"@status\">Status report page</a>. For more information, see the online handbook entry for <a href=\"@handbook\">configuring cron jobs</a>. You can set up cron job by visiting <a href=\"@cron\">Cron configuration</a> page','','none'),(4398,'','default','Change site name, e-mail address, slogan, default front page, and number of posts per page, error pages.','','7.59'),(4399,'','default','Manage automatic site maintenance tasks.','','7.59'),(4400,'','default','Did not delete temporary file \"%path\" during garbage collection, because it is in use by the following modules: %modules.','','none'),(4401,'','default','Weight for added term','','none'),(4402,'','default','Subdirectory in the file upload directory where pictures will be stored.','','7.59'),(4403,'','default','Pictures larger than this will be scaled down to this size.','','none'),(4404,'','default','Maximum allowed file size for uploaded pictures. Upload size is normally limited only by the PHP maximum post and file upload settings, and images are automatically scaled down to the dimensions specified above.','','none'),(4405,'','default','Your virtual face or picture. Pictures larger than @dimensions pixels will be scaled down.','','7.31'),(4406,'','default','[user:name],\n\nYour account at [site:name] has been activated.\n\nYou may now log in by clicking this link or copying and pasting it into your browser:\n\n[user:one-time-login-url]\n\nThis link can only be used once to log in and will lead you to a page where you can set your password.\n\nAfter setting your password, you will be able to log in at [site:login-url] in the future using:\n\nusername: [user:name]\npassword: Your password\n\n--  [site:name] team','','none'),(4407,'','default','Upload an image to go with this article.','','none'),(4408,'','default','Minimal profile for running tests. Includes absolutely required modules only.','','none'),(4409,'','default','The settings file is writable.','','none'),(4410,'','default','The settings file is owned by the web server.','','none'),(4411,'','default','The @drupal installer failed to create a settings file with proper file ownership. Log on to your web server, remove the existing %file file, and create a new one by copying the %default_file file to %file. More details about installing Drupal are available in <a href=\"@install_txt\">INSTALL.txt</a>. If you have problems with the file permissions on your server, consult the <a href=\"@handbook_url\">online handbook</a>.','','none'),(4412,'','default','Invalid merge query: no conditions','','none'),(4413,'','default','Weight for @block block','','7.34'),(4414,'','default','Region for @block block','','7.34'),(4415,'','default','Comment approval','','none'),(4416,'','default','Comments from users who have the <em>Skip comment approval</em> permission are published immediately. All other comments are placed in the <a href=\'@comment-approval\'>Unapproved comments</a> queue, until a user who has permission to <em>Administer comments</em> publishes or deletes them. Published comments can be bulk managed on the <a href=\'@admin-comment\'>Published comments</a> administration page.','','none'),(4417,'','default','Post comments','','none'),(4418,'','default','Skip comment approval','','none'),(4419,'','default','View and customize your dashboard.','','7.59'),(4420,'','default','Customize your dashboard.','','7.34'),(4421,'','default','This function can only be used to delete fields without data','','none'),(4422,'','default','Are you sure you want to disable the text format %format?','','none'),(4423,'','default','Disabled text formats are completely removed from the administrative interface, and any content stored with that format will not be displayed. This action cannot be undone.','','none'),(4424,'','default','Disabled text format %format.','','none'),(4425,'','default','Text Formats','','none'),(4426,'','default','Disable text format','','none'),(4427,'','default','Hot topic, new comments','','none'),(4428,'','default','Hot topic','','none'),(4429,'','default','Normal topic','','none'),(4430,'','default','Closed topic','','none'),(4431,'','default','Reference for usage, configuration, and modules.','','7.59'),(4432,'','default','and where %property is %value','','none'),(4433,'','default','where %property is %value','','none'),(4434,'','default','and where','','none'),(4435,'','default','The RDF module enriches your content with metadata to let other applications (e.g., search engines, aggregators, and so on) better understand its relationships and attributes. This semantically enriched, machine-readable output for Drupal sites uses the <a href=\"@rdfa\">RDFa specification</a> which allows RDF data to be embedded in HTML markup. Other modules can define mappings of their data to RDF terms, and the RDF module makes this RDF data available to the theme. The core Drupal modules define RDF mappings for their data model, and the core Drupal themes output this RDF metadata information along with the human-readable visual information. For more information, see the online handbook entry for <a href=\"@rdf\">RDF module</a>.','','none'),(4436,'','default','Current URL is @url.','','none'),(4437,'','default','Page title @actual is equal to @expected.','','none'),(4438,'','default','Page title @actual is not equal to @unexpected.','','none'),(4439,'','default','HTTP response not expected !code, actual !curl_code','','none'),(4440,'','default','Configure @module permissions','','none'),(4441,'','default','Select and configure your themes.','','7.59'),(4442,'','default','Administer settings.','','7.59'),(4443,'','default','View reports, updates, and errors.','','7.59'),(4444,'','default','Stores temporary data for system_update_7061.','','none'),(4445,'','default','Administrative toolbar','','7.59'),(4446,'','default','Install new module or theme','','7.34'),(4447,'','default','Install new module','','7.34'),(4448,'','default','Install new theme','','7.34'),(4449,'','default','%property is %value','','none'),(4450,'','default','Manage user accounts, roles, and permissions.','','7.59'),(4451,'','default','Renamed the \'post comments without approval\' permission to \'skip comment approval\'.','','none'),(4452,'','default','Nothing','','none'),(4453,'','default','Lolspeak','','none'),(4454,'','default','%type: !message in %function (line %line of %file).','','7.59'),(4455,'','default','Update @title','','7.34'),(4456,'','default','A unique machine-readable name. Can only contain lowercase letters, numbers, and underscores.','','7.34'),(4457,'','default','The machine-readable name must contain unique characters.','','none'),(4458,'','default','The machine-readable name must contain only lowercase letters, numbers, and hyphens.','','none'),(4459,'','default','The machine-readable name is already in use. It must be unique.','','none'),(4460,'','default','Asturian','','none'),(4461,'','default','English, British','','none'),(4462,'','default','Haitian Creole','','none'),(4463,'','default','Portuguese, International','','none'),(4464,'','default','Weight for @title','','7.34'),(4465,'','default','Weight for row @number','','none'),(4466,'','default','Parent for @title','','7.34'),(4467,'','default','New field label','','7.34'),(4468,'','default','Parent for new field','','7.34'),(4469,'','default','Type of new field','','7.34'),(4470,'','default','Widget for new field','','7.34'),(4471,'','default','Existing field label','','7.34'),(4472,'','default','Parent for existing field','','7.34'),(4473,'','default','Existing field to share','','7.34'),(4474,'','default','Widget for existing field','','7.34'),(4475,'','default','Label display for @title','','7.34'),(4476,'','default','Formatter for @title','','7.34'),(4477,'','default','Parents for @title','','7.34'),(4478,'','default','Visibility for @title','','7.34'),(4479,'','default','There is data for this field in the database. The field settings can no longer be changed.','','none'),(4480,'','default','Weight for new file','','none'),(4481,'','default','Choose a file','','7.34'),(4482,'','default','Weight for new effect','','none'),(4483,'','default','@title language provider','','none'),(4484,'','default','Enable @title menu link','','7.34'),(4485,'','default','A unique name to construct the URL for the menu. It must only contain lowercase letters, numbers and hyphens.','','7.34'),(4486,'','default','A unique machine-readable name for this content type. It must only contain lowercase letters, numbers, and underscores. This name will be used for constructing the URL of the %node-add page, in which underscores will be converted into hyphens.','','7.34'),(4487,'','default','Choice label','','none'),(4488,'','default','New choice label','','none'),(4489,'','default','Vote count for choice @label','','none'),(4490,'','default','Vote count for new choice','','none'),(4491,'','default','Weight for choice @label','','none'),(4492,'','default','Weight for new choice','','none'),(4493,'','default','Category for @title','','none'),(4494,'','default','Active modules','','none'),(4495,'','default','@original_title (@parent_title)','','none'),(4496,'','default','Your PHP installation is too old. Drupal requires at least PHP 5.2.5, or PHP @version with the htmlspecialchars security patch backported.','','none'),(4497,'','default','Your web server does not appear to support PDO (PHP Data Objects). Ask your hosting provider if they support the native PDO extension. See the <a href=\"@link\">system requirements</a> page for more information.','','none'),(4498,'','default','Your web server seems to have the wrong version of PDO installed. Drupal 7 requires the PDO extension from PHP core. This system has the older PECL version. See the <a href=\"@link\">system requirements</a> page for more information.','','none'),(4499,'','default','List of trigger actions when !description','','none'),(4500,'','default','The database version %version is less than the minimum required version %minimum_version.','','none'),(4501,'','default','!theme (default theme)','','7.34'),(4502,'','default','!theme (administration theme)','','7.34'),(4503,'','default','The Dashboard module provides a <a href=\"@dashboard\">Dashboard page</a> in the administrative interface for organizing administrative tasks and navigation, and tracking information within your site. The Dashboard page contains blocks, which you can add to and arrange using the drag-and-drop interface that appears when you click on the <em>Customize dashboard</em> link. Within this interface, blocks that are not primarily used for site administration do not appear by default, but can be added via the <em>Add other blocks</em> link. For more information, see the online handbook entry for <a href=\"@handbook\">Dashboard module</a>.','','none'),(4504,'','default','Rearrange blocks for display on the <a href=\"@dashboard-url\">Dashboard page</a>. Blocks placed in the <em>Dashboard (inactive)</em> region are not displayed when viewing the Dashboard page, but are available within its <em>Customize dashboard</em> interface. Removing a block from active dashboard display makes it available on the main <a href=\"@blocks-url\">blocks administration page</a>.','','none'),(4505,'','default','Add other blocks','','none'),(4506,'','default','URL fallback','','none'),(4507,'','default','Use an already detected language for URLs if none is found.','','none'),(4508,'','default','%type_name: Create new content','','none'),(4509,'','default','%type_name: Edit own content','','none'),(4510,'','default','%type_name: Edit any content','','none'),(4511,'','default','%type_name: Delete own content','','none'),(4512,'','default','%type_name: Delete any content','','none'),(4513,'','default','The message has been dismissed. You can change your overlay settings at any time by visiting your profile page.','','none'),(4514,'','default','If you have problems accessing administrative pages on this site, disable the overlay on your profile page.','','7.59'),(4515,'','default','Dismiss this message.','','7.59'),(4516,'','default','Options for the administrative overlay','','7.59'),(4517,'','default','Next steps','','none'),(4518,'','default','File %file could not be copied, because the destination directory %destination is not configured correctly.','','none'),(4519,'','default','@driver_name settings','','none'),(4520,'','default','MySQL, MariaDB, or equivalent','','none'),(4521,'','default','SQLite','','none'),(4522,'','default','Database file','','none'),(4523,'','default','The absolute path to the file where @drupal data will be stored. This must be writable by the web server and should exist outside of the web root.','','none'),(4524,'','default','The directory you specified is not writable by the web server.','','none'),(4525,'; misc/autocomplete.js','default','Autocomplete popup','','none'),(4526,'; misc/autocomplete.js','default','Searching for matches...','','none'),(4527,'','default','The Field module allows custom data fields to be defined for <em>entity</em> types (entities include content items, comments, user accounts, and taxonomy terms). The Field module takes care of storing, loading, editing, and rendering field data. Most users will not interact with the Field module directly, but will instead use the <a href=\"@field-ui-help\">Field UI module</a> user interface. Module developers can use the Field API to make new entity types \"fieldable\" and thus allow fields to be attached to them. For more information, see the online handbook entry for <a href=\"@field\">Field module</a>.','','none'),(4528,'','default','No fields are present yet.','','7.34'),(4529,'','default','Strong','Font weight','none'),(4530,'','default','After you create an image style, you can add effects: crop, scale, resize, rotate, and desaturate (other contributed modules provide additional effects). For example, by combining effects as crop, scale, and desaturate, you can create square, grayscale thumbnails.','','none'),(4531,'','default','Read more<span class=\"element-invisible\"> about @title</span>','','7.59'),(4532,'','default','Optionally specify an alternative URL by which this content can be accessed. For example, type \"about\" when writing an about page. Use a relative path and don\'t add a trailing slash or the URL alias won\'t work.','','7.34'),(4533,'','default','The PHP filter module adds a PHP filter to your site, for use with <a href=\"@filter\">text formats</a>. This filter adds the ability to execute PHP code in any text field that uses a text format (such as the body of a content item or the text of a comment). <a href=\"@php-net\">PHP</a> is a general-purpose scripting language widely-used for web development, and is the language with which Drupal has been developed. For more information, see the online handbook entry for the <a href=\"@php\">PHP filter module</a>.','','none'),(4534,'','default','The number of votes that have been cast on a poll.','','none'),(4535,'','default','The length of time the poll is set to run.','','none'),(4536,'','default','Uninstall @module module','','none'),(4537,'','default','Aggregate and compress CSS files.','','7.59'),(4538,'','default','Aggregate JavaScript files.','','7.59'),(4539,'','default','To uninstall @module, the following module must be uninstalled first: @required_modules','','none'),(4540,'','default','To uninstall @module, the following modules must be uninstalled first: @required_modules','','none'),(4541,'','default','Enable newly added modules','','none'),(4542,'','default','Enable newly added themes','','none'),(4543,'','default','The uninstall process removes all data related to a module. To uninstall a module, you must first disable it on the main <a href=\"@modules\">Modules page</a>.','','none'),(4544,'','default','View the administration theme','','none'),(4545,'','default','This is only used when the site is configured to use a separate administration theme on the <a href=\"@appearance-url\">Appearance</a> page.','','none'),(4546,'','default','Database system','','7.59'),(4547,'','default','Database system version','','7.59'),(4548,'','default','The Toolbar module displays a bar containing top-level administrative links across the top of the screen. Below that, the Toolbar module has a <em>drawer</em> section where it displays links provided by other modules, such as the core <a href=\"@shortcuts-help\">Shortcut module</a>. The drawer can be hidden/shown by using the show/hide shortcuts link at the end of the toolbar.','','none'),(4549,'','default','Indexed %count content items for tracking.','','none'),(4550,'','default','There is a tab on this page for each module that defines triggers. On this tab you can assign actions to run when triggers from the <a href=\"@module-help\">@module-name module</a> happen.','','none'),(4551,'','default','Release notes for @project_title','','none'),(4552,'','default','The role settings have been updated.','','none'),(4553,'','default','Disable the account and keep its content.','','none'),(4554,'','default','Disable the account and unpublish its content.','','none'),(4555,'','default','Delete the account and make its content belong to the %anonymous-name user.','','none'),(4556,'','default','Delete the account and its content.','','none'),(4557,'','default','Display on user registration form.','','none'),(4558,'','default','This is compulsory for \'required\' fields.','','none'),(4559,'','default','Drupal system listing compatible test','','none'),(4560,'','default','Support module for testing the drupal_system_listing function.','','none'),(4561,'','default','Drupal system listing incompatible test','','none'),(4562,'','default','@count orphaned actions (%orphans) exist in the actions table. !link','','none'),(4563,'','default','Deleted 1 comment.','','none'),(4564,'','default','Use field label instead of the \"On value\" as label','','none'),(4565,'','default','Deleted 1 post.','','none'),(4566,'','default','tracker','','none'),(4567,'','default','Automatic updating of Drupal core is not supported. See the <a href=\"@upgrade-guide\">upgrade guide</a> for information on how to update Drupal core manually.','','none'),(4568,'','default','%archive_file contains a version of %names that is not compatible with Drupal !version.','','none'),(4569,'','default','%archive_file contains versions of modules or themes that are not compatible with Drupal !version: %names','','none'),(4570,'','default','The %setting setting is currently set to \'%current_value\', but needs to be \'%needed_value\'. Change this by running the following query: !query','','none'),(4571,'','default','List (integer)','','7.59'),(4572,'','default','This field stores integer values from a list of allowed \'value => label\' pairs, i.e. \'Lifetime in days\': 1 => 1 day, 7 => 1 week, 31 => 1 month.','','7.59'),(4573,'','default','List (float)','','7.59'),(4574,'','default','This field stores float values from a list of allowed \'value => label\' pairs, i.e. \'Fraction\': 0 => 0, .25 => 1/4, .75 => 3/4, 1 => 1.','','7.59'),(4575,'','default','This field stores text values from a list of allowed \'value => label\' pairs, i.e. \'US States\': IL => Illinois, IA => Iowa, IN => Indiana.','','7.59'),(4576,'','default','The possible values this field can contain. Enter one value per line, in the format key|label.','','none'),(4577,'','default','The key is the stored value, and must be numeric. The label will be used in displayed values and edit forms.','','none'),(4578,'','default','The label is optional: if a line contains a single number, it will be used as key and label.','','none'),(4579,'','default','Lists of labels are also accepted (one label per line), only if the field does not hold any values yet. Numeric keys will be automatically generated from the positions in the list.','','none'),(4580,'','default','The key is the stored value. The label will be used in displayed values and edit forms.','','none'),(4581,'','default','The label is optional: if a line contains a single string, it will be used as key and label.','','none'),(4582,'','default','Allowed values list: invalid input.','','none'),(4583,'','default','Allowed values list: some values are being removed while currently in use.','','none'),(4584,'','default','Center left','','none'),(4585,'','default','Center right','','none'),(4586,'','default','Failed to connect to the server. The server reports the following message: !message For more help installing or updating code on your server, see the <a href=\"@handbook_url\">handbook</a>.','','none'),(4587,'','default','Unable to parse info file: %info_file.','','none'),(4588,'','default','The info file (%info_file) does not define a \'name\' attribute.','','none'),(4589,'','default','The testing framework requires the PHP memory limit to be at least %memory_minimum_limit. The current value is %memory_limit. <a href=\"@url\">Follow these steps to continue</a>.','','none'),(4590,'','default','You can find <a href=\"@module_url\">modules</a> and <a href=\"@theme_url\">themes</a> on <a href=\"@drupal_org_url\">drupal.org</a>. The following file extensions are supported: %extensions.','','none'),(4591,'','default','Your server does not support updating modules and themes from this interface. Instead, update modules and themes by uploading the new versions directly to the server, as described in the <a href=\"@handbook_url\">handbook</a>.','','none'),(4592,'','default','Your server does not support installing modules and themes from this interface. Instead, install modules and themes by uploading them directly to the server, as described in the <a href=\"@handbook_url\">handbook</a>.','','none'),(4593,'','default','Updating modules and themes requires <strong>@backends access</strong> to your server. See the <a href=\"@handbook_url\">handbook</a> for other update methods.','','none'),(4594,'','default','Updating modules and themes requires access to your server via one of the following methods: <strong>@backends</strong>. See the <a href=\"@handbook_url\">handbook</a> for other update methods.','','none'),(4595,'','default','Installing modules and themes requires <strong>@backends access</strong> to your server. See the <a href=\"@handbook_url\">handbook</a> for other installation methods.','','none'),(4596,'','default','Installing modules and themes requires access to your server via one of the following methods: <strong>@backends</strong>. See the <a href=\"@handbook_url\">handbook</a> for other installation methods.','','none'),(4597,'','default','%archive_file does not contain any .info files.','','none'),(4598,'','default','Administer content and comments.','','7.59'),(4599,'','default','Comment fields','','7.34'),(4600,'','default','RSS category','','7.59'),(4601,'','default','%name must be a valid hexadecimal CSS color value.','','none'),(4602,'','default','Each field type has one or more available <em>widgets</em> associated with it; each widget provides a mechanism for data input when you are editing (text box, select list, file upload, etc.). Each field type also has one or more display options, which determine how the field is displayed to site visitors. The widget and display options can be changed after you have created the field.','','none'),(4603,'','default','Cannot rename field %id (%old_field_name) to %new_field_name because it does not use the field_sql_storage storage type.','','none'),(4604,'','default','Changes to the style have been saved.','','none'),(4605,'','default','This block is only shown if <a href=\"@languages\">at least two languages are enabled</a> and <a href=\"@configuration\">language negotiation</a> is set to <em>URL</em> or <em>Session</em>.','','7.34'),(4606,'','default','The Menu module provides an interface for managing menus. A menu is a hierarchical collection of links, which can be within or external to the site, generally used for navigation. Each menu is rendered in a block that can be enabled and positioned through the <a href=\"@blocks\">Blocks administration page</a>. You can view and manage menus on the <a href=\"@menus\">Menus administration page</a>. For more information, see the online handbook entry for the <a href=\"@menu\">Menu module</a>.','','none'),(4607,'','default','(Machine name: @type)','','7.34'),(4608,'','default','OpenID suggests the use of either the <a href=\"@gmp\">GMP Math</a> (recommended for performance) or <a href=\"@bc\">BC Math</a> libraries to enable OpenID associations.','','none'),(4609,'','default','Not optimized','','none'),(4610,'','default','OpenID suggests the use of the GMP Math library for PHP for optimal performance. Check the <a href=\"@url\">GMP Math Library documentation</a> for installation instructions.','','none'),(4611,'','default','OpenID Math library','','none'),(4612,'','default','The @module module is missing, so the following module will be disabled: @depends.','','none'),(4613,'','default','The @module module is missing, so the following modules will be disabled: @depends.','','none'),(4614,'','default','The machine-readable name cannot be \"add\" or \"list\".','','none'),(4615,'','default','Enable multilingual support for this content type. If enabled, a language selection field will be added to the editing form, allowing you to select from one of the <a href=\"!languages\">enabled languages</a>. You can also turn on translation for this content type, which lets you have content translated to any of the installed languages. If disabled, new posts are saved with the default language. Existing content will not be affected by changing this option.','','7.34'),(4616,'','default','Query tagged for node access but there is no nid. Add foreign keys to node.nid in schema to fix.','','none'),(4617,'','default','Your node listing query is using @fallback as a base table in a query tagged for node access. This might not be secure and might not even work. Specify foreign keys in your schema to node.nid ','','none'),(4618,'','default','Unknown field: @field_name','','none'),(4619,'','default','%field: There should only be one decimal separator (@separator).','','none'),(4620,'','default','Enable !title','','7.34'),(4621,'','default','Set !title as default','','7.34'),(4622,'','default','Enabled modules: %modules','','none'),(4623,'','default','File %file could not be copied, because the destination %destination is invalid. This is often caused by improper use of file_copy() or a missing stream wrapper.','','none'),(4624,'','default','File %file could not be copied because it does not exist.','','none'),(4625,'','default','File %file could not be moved, because the destination %destination is invalid. This may be caused by improper use of file_move() or a missing stream wrapper.','','none'),(4626,'','default','File %file could not be deleted because it is not a valid URI. This may be caused by improper use of file_delete() or a missing stream wrapper.','','none'),(4627,'','default','An existing local file system path for storing private files. It should be writable by Drupal and not accessible over the web. See the online handbook for <a href=\"@handbook\">more information about securing private files</a>.','','none'),(4628,'','default','Curaçao','','7.34'),(4629,'','default','Sint Maarten','','7.34'),(4630,'','default','Missing bundle property on entity of type @entity_type.','','none'),(4631,'','default','Fields type(s) in use','','none'),(4632,'','default','Fields pending deletion','','none'),(4633,'','default','(module: !module)','','none'),(4634,'','default','Extend site functionality.','','7.59'),(4635,'','default','The requested page \"@path\" could not be found.','','7.59'),(4636,'','default','The form has become outdated. Copy any unsaved work in the form below and then <a href=\"@link\">reload this page</a>.','','none'),(4637,'','default','There are several decisions you will need to make before defining a field for content, comments, etc.:','','none'),(4638,'','default','The throbber display does not show the status of uploads but takes up less space. The progress bar is helpful for monitoring progress on large uploads.','','none'),(4639,'','default','The domain name to use for this language if URL domains are used for <em>Detection and selection</em>. Leave blank for the default language. <strong>Changing this value may break existing URLs.</strong> Example: Specifying \"de.example.com\" as language domain for German will result in an URL like \"http://de.example.com/contact\".','','7.34'),(4640,'','default','New OpenID identifier %identity was added as a replacement for invalid identifier %invalid_identity. To finish the invalid OpenID transition process, please go to your <a href=\"@openid_url\">OpenID identities page</a> and remove the old identifier %invalid_identity.','','none'),(4641,'','default','There is already an existing account associated with the OpenID identifier that you have provided. However, due to a bug in the previous version of the authentication system, we can\'t be sure that this account belongs to you. If you are new on this site, please continue registering the new user account. If you already have a registered account on this site associated with the provided OpenID identifier, please try to <a href=\"@url_password\">reset the password</a> or contact the site administrator.','','none'),(4642,'','default','The search index is not cleared but systematically updated to reflect the new settings. Searching will continue to work but new content won\'t be indexed until all existing content has been re-indexed. This action cannot be undone.','','none'),(4643,'','default','Active search modules','','none'),(4644,'','default','No shortcuts available. <a href=\"@link\">Add a shortcut</a>.','','none'),(4645,'','default','Leave this blank to delete both the existing username and password.','','none'),(4646,'','default','To change the password, enter the new password here.','','none'),(4647,'','default','HTTP authentication credentials must include a username in addition to a password.','','none'),(4648,'','default','Incompatible with this version of Drupal core.','','none'),(4649,'','default','Cron takes care of running periodic tasks like checking for updates and indexing content for search.','','none'),(4650,'','default','The clean URL test passed.','','none'),(4651,'','default','Clean URLs are enabled, but the clean URL test failed. Uncheck the box below to disable clean URLs.','','none'),(4652,'','default','The clean URL test failed.','','none'),(4653,'','default','Clean URLs cannot be enabled. If you are directed to this page or to a <em>Page not found (404)</em> error after testing for clean URLs, see the <a href=\"@handbook\">online handbook</a>.','','none'),(4654,'','default','User name and password','','7.59'),(4655,'','default','User module account form elements.','','7.59'),(4656,'','default','There was a problem creating field %label: !message','','none'),(4657,'','default','@module (<span class=\"admin-missing\">incompatible with</span> this version of Drupal core)','','none'),(4658,'','default','Update notifications are not enabled. It is <strong>highly recommended</strong> that you enable the update manager module from the <a href=\"@module\">module administration page</a> in order to stay up-to-date on new releases. For more information, <a href=\"@update\">Update status handbook page</a>.','','none'),(4659,'','default','Your search used too many AND/OR expressions. Only the first @count terms were included in this search.','','none'),(4660,'','default','The test cannot be executed because it has not been set up properly.','','none'),(4661,'','default','Found field with name @name','','none'),(4662,'','default','Found field with name @name and value @value','','none'),(4663,'','default','A list field (@field_name) with existing data cannot have its keys changed.','','none'),(4664,'','default','A unique machine-readable name containing letters, numbers, and underscores.','','7.34'),(4665,'','default','The %style style has been reverted to its defaults.','','none'),(4666,'','default','If no image is uploaded, this image will be shown on display and will override the field\'s default image.','','none'),(4667,'','default','View details for all votes','','none'),(4668,'','default','No blocked IP addresses available.','','none'),(4669,'','default','Taxonomy field @field_name not found.','','none'),(4670,'','default','Public files directory','','7.59'),(4671,'','default','Temporary files directory','','7.59'),(4672,'','default','Private files directory','','none'),(4673,'','default','Subscribe to !feed-title','','7.59'),(4674,'','default','Theme hook %hook not found.','','none'),(4675,'','default','No book content available.','','none'),(4676,'','default','Field type(s) in use - see <a href=\"@fields-page\">Field list</a>','','7.59'),(4677,'','default','logged in users only','','none'),(4678,'','default','No OpenID identities available for this account.','','none'),(4679,'','default','Uyghur','','none'),(4680,'','default','Install another module','','none'),(4681,'','default','South Sudan','','7.34'),(4682,'','default','Get an overview of <a href=\"@url\">all content</a>.','','none'),(4683,'','default','Get an overview of all content.','','none'),(4684,'','default','Invalid or missing cache bin specified: %bin','','none'),(4685,'','default','Caribbean Netherlands','','7.34'),(4686,'','default','More information about setting up scheduled tasks can be found by <a href=\"@url\">reading the cron tutorial on drupal.org</a>.','','none'),(4687,'','default','Use Ajax to increment the counter','','none'),(4688,'','default','Perform the count asynchronously after page load rather than during page generation.','','none'),(4689,'','default','Not fully protected','','none'),(4690,'','default','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.','','none'),(4691,'','default','Influence','','none'),(4692,'','default','Influence is a numeric multiplier used in ordering search results. A higher number means the corresponding factor has more influence on search results; zero means the factor is ignored. Changing these numbers does not require the search index to be rebuilt. Changes take effect immediately.','','none'),(4693,'','default','Form build-id mismatch detected while attempting to store a form in the cache.','','none'),(4694,'; sites/all/modules/ckeditor/includes/ckeditor.utils.js','default','Content can only be inserted into CKEditor in the WYSIWYG mode.','','none'),(4695,'','default','Multilingual','','none'),(4696,'','default','Update mode','','none'),(4697,'','default','Translation updates','','7.34'),(4698,'','default','Update translations','','7.34'),(4699,'','default','Translation update status','','7.59'),(4700,'','default','There are available updates','','7.59'),(4701,'','default','All your translations are up to date','','none'),(4702,'','default','Select one or more languages to download and update. If you select none, all of them will be updated.','','none'),(4703,'','default','Refresh information','','none'),(4704,'','default','Fetched information about available updates from the server','','none'),(4705,'','default','Update source','','none'),(4706,'','default','Never (manually)','','none'),(4707,'','default','Select how frequently you want to automatically check for updated translations for installed modules and themes.','','none'),(4708,'','default','Store downloaded files','','none'),(4709,'','default','Translation updates replace existing ones, new ones are added','','none'),(4710,'','default','Local files and remote server.','','none'),(4711,'','default','Local files only.','','none'),(4712,'','default','Remote server only.','','none'),(4713,'','default','Remote update available','','none'),(4714,'','default','Local update available','','none'),(4715,'','default','No information','','none'),(4716,'','default','Updating translation.','','none'),(4717,'','default','Downloading and importing files.','','none'),(4718,'','default','Error importing translations.','','none'),(4719,'','default','l10n_update','','7.34'),(4720,'','default','Successfully downloaded %download_link to %tmpfile','','none'),(4721,'','default','Error creating temporary file for download in %tmpdir. Remote file is %download_link.','','none'),(4722,'','default','List of latest imported translations and available updates for each enabled project and language.','','none'),(4723,'','default','If there are available updates you can click on Update for them to be downloaded and imported now or you can edit the configuration for them to be updated automatically on the <a href=\"@update-settings\">Update settings page</a>','','none'),(4724,'','default','These are the settings for the translation update system. To update your translations now, check out the <a href=\"@update-admin\">Translation update administration page</a>.','','none'),(4725,'','default','No information is available about potential new and updated translations for currently installed modules and themes. To check for updates, you may need to <a href=\"@run_cron\">run cron</a> or you can <a href=\"@check_manually\">check manually</a>. Please note that checking for available updates can take a long time, so please be patient.','','none'),(4726,'','default','Automatically checked @checked translations, updated @updated.','','none'),(4727,'','default','Automatic update configuration','','7.34'),(4728,'','default','There are new or updated translations available for currently installed modules and themes. To check for updates, you can visit the <a href=\"@check_manually\">translation update page</a>.','','7.59'),(4729,'','default','Failed to fetch information about available updates from the server.','','none'),(4730,'','default','A path relative to the Drupal installation directory where translation files will be stored, e.g. sites/all/translations. Saved translation files can be reused by other installations. If left empty the downloaded translation will not be saved.','','none'),(4731,'','default','Not saved locally due to invalid HTML content.','','none'),(4732,'','default','Translation saved locally.','','none'),(4733,'','default','Translation successfuly removed locally.','','none'),(4734,'','default','Unknown error while saving translation locally.','','none'),(4735,'','default','You could share your work with !l10n_server if you set your API key at !user_link.','','none'),(4736,'','default','Not saved due to source string missing.','','none'),(4737,'','default','Not saved due to missing form values.','','none'),(4738,'','default','Not saved due to insufficient permissions.','','none'),(4739,'','default','Added l10n_status field to locales_target.','','none'),(4740,'','default','Resolved possible l10n_status field conflict in locales_target.','','none'),(4741,'','default','Localization update','','none'),(4742,'','default','Provides automatic downloads and updates for translations.','','none'),(4743,'','default','Note that this comes with a performance penalty, so it is not recommended.','','none'),(4744,'','default','Edited translations are kept, only previously imported ones are overwritten and new translations are added','','none'),(4745,'','default','All existing translations are kept, only new translations are added.','','none'),(4746,'','default','(translation source: !server)','','none'),(4747,'','default','@language: @version (!date)','','none'),(4748,'','default','@language: <em>No installed translation</em>','','none'),(4749,'','default','Recommended version: @version (!date)','','none'),(4750,'','default','Uninstalled translation available','','none'),(4751,'','default','No available translations found','','none'),(4752,'','default','Importing: %name.','','none'),(4753,'','default','Imported: %name.','','none'),(4754,'','default','%language translation strings added: !add, updated: !update, deleted: !delete.','','none'),(4755,'','default','One project updated: @projects.','','none'),(4756,'','default','@count projects updated: @projects.','','none'),(4757,'','default','One translation string was skipped because it contains disallowed HTML. See !log_messages for details.','','none'),(4758,'','default','@count translation strings were skipped because they contain disallowed HTML. See !log_messages for details.','','none'),(4759,'','default','Translations of one project were not imported: @projects.','','none'),(4760,'','default','Translations of @count projects were not imported: @projects','','none'),(4761,'','default','An error occured during the download operation: %error.','','none'),(4762,'','default','An error occured during the download operation: HTTP status code %code.','','none'),(4763,'','default','Unable to save %download_link file to %tmpfile.','','none'),(4764,'','default','Disallowed HTML detected. String not imported: %string','','none'),(4765,'menu:menu:main-menu:title','menu','Main menu','menu:main-menu:title','1'),(4766,'menu:menu:main-menu:description','menu','The <em>Main</em> menu is used on many sites to show the major sections of the site, often in a top navigation bar.','menu:main-menu:description','1'),(4767,'menu:menu:management:title','menu','Management','menu:management:title','1'),(4768,'menu:menu:management:description','menu','The <em>Management</em> menu contains links for administrative tasks.','menu:management:description','1'),(4769,'menu:menu:navigation:title','menu','Navigation','menu:navigation:title','1'),(4770,'menu:menu:navigation:description','menu','The <em>Navigation</em> menu contains links intended for site visitors. Links are added to the <em>Navigation</em> menu automatically by some modules.','menu:navigation:description','1'),(4771,'menu:menu:user-menu:title','menu','User menu','menu:user-menu:title','1'),(4772,'menu:menu:user-menu:description','menu','The <em>User</em> menu contains links related to the user\'s account, as well as the \'Log out\' link.','menu:user-menu:description','1'),(4773,'node:type:article:name','node','Article','type:article:name','1'),(4774,'node:type:article:title_label','node','Title','type:article:title_label','1'),(4775,'node:type:article:description','node','Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.','type:article:description','1'),(4776,'node:type:page:name','node','Basic page','type:page:name','1'),(4777,'node:type:page:title_label','node','Title','type:page:title_label','1'),(4778,'node:type:page:description','node','Use <em>basic pages</em> for your static content, such as an \'About us\' page.','type:page:description','1'),(4779,'sites/all/modules/i18n/i18n_block/i18n_block.js','default','Translatable','','none'),(4780,'sites/all/modules/i18n/i18n_block/i18n_block.js','default','Not translatable','','none'),(4781,'sites/all/modules/i18n/i18n_block/i18n_block.js','default','Restricted to certain languages','','none'),(4782,'node:type:photos:name','node','Album','type:photos:name','1'),(4783,'node:type:photos:title_label','node','Album name','type:photos:title_label','1'),(4784,'node:type:photos:description','node','Create new photo albums.','type:photos:description','1'),(4785,'sites/all/modules/photos/js/min/photos.min.js','default','Operation failed.','','none'),(4786,'sites/all/modules/photos/js/min/photos.min.js','default','Please copy the above code.','','none'),(4787,'sites/all/modules/photos/photos_access/photos_access.js','default','Reset Password','','none'),(4788,'','default','photos','','none'),(4789,'','default','Slideshow','','none'),(4790,'','default','Images','','7.34'),(4791,'','default','Image size','','none'),(4792,'','default','Submit','','none'),(4793,'','default','Quantity','','none'),(4794,'','default','Back','','none'),(4795,'','default','Album','','7.59'),(4796,'','default','Display Settings','','7.34'),(4797,'','default','Basic settings','','none'),(4798,'','default','Do not display','','none'),(4799,'','default','Original','','none'),(4800,'','default','Limit','','none'),(4801,'','default','images','','7.34'),(4802,'','default','Loading...','','none'),(4803,'','default','Privacy','','7.34'),(4804,'','default','Thumbnails','','none'),(4805,'','default','<a href=\"@login\">Login</a> to post comments','','none'),(4806,'','default','Cancel All Uploads','','none'),(4807,'','default','Pending...','','none'),(4808,'','default','You have attempted to queue too many files.','','none'),(4809,'','default','Uploading...','','none'),(4810,'','default','The selected file %name could not be uploaded.','','none'),(4811,'','default','Image file','','7.59'),(4812,'','default','Upload images','','7.31'),(4813,'','default','Cover','','7.59'),(4814,'','default','Has Image','','7.59'),(4815,'','default','Do not cache','','none'),(4816,'','default','Libraries','','none'),(4817,'','default','Google','','none'),(4818,'','default','jQuery','','none'),(4819,'','default','jQuery Update','','none'),(4820,'','default','all','','none'),(4821,'','default','Dimensions','','none'),(4822,'','default','link','','none'),(4823,'','default','Permitted file extensions','','none'),(4824,'','default','Extensions that users in this role can upload. Separate extensions with a space and do not include the leading dot.','','none'),(4825,'','default','User role','','none'),(4826,'','default','Profile name','','none'),(4827,'','default','Close','','none'),(4828,'','default','IMCE','','7.59'),(4829,'','default','Common settings','','none'),(4830,'','default','Browse','','none'),(4831,'','default','WIDTHxHEIGHT','','none'),(4832,'','default','Maximum file size per upload','','none'),(4833,'','default','File Browser','','none'),(4834,'','default','Upload file','','none'),(4835,'','default','unlimited','','none'),(4836,'','default','Changes have been saved.','','none'),(4837,'','default','user #1','','none'),(4838,'','default','MB','','none'),(4839,'','default','Your PHP settings limit the maximum file size per upload to %size.','','none'),(4840,'','default','Control how your image/file browser works.','','7.59'),(4841,'','default','Enable inline image/file insertion into plain textareas','','none'),(4842,'','default','Insert !image or !link.','','none'),(4843,'','default','An image/file uploader and browser supporting personal directories and user quota.','','none'),(4844,'','default','Add new profile','','7.34'),(4845,'','default','Directories','','none'),(4846,'','default','The selected file %file could not be copied.','','none'),(4847,'','default','Log messages','','none'),(4848,'','default','Please select a file.','','none'),(4849,'','default','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.','','none'),(4850,'','default','File browser','','7.31'),(4851,'','default','Configuration profiles','','none'),(4852,'','default','If you don\'t use any WYSIWYG editor, this feature will allow you to add your images or files as <strong>html code into any plain textarea</strong>. Enter <strong>comma separated textarea IDs</strong> under which you want to enable a link to IMCE. Hint: ID of Body fields in most node types is edit-body.','','none'),(4853,'','default','Absolute URLs','','none'),(4854,'','default','Check if you want IMCE to return absolute file URLs.','','none'),(4855,'','default','Default behaviour for existing files during file uploads','','none'),(4856,'','default','Keep the existing file renaming the new one','','none'),(4857,'','default','Keep the existing file rejecting the new one','','none'),(4858,'','default','Replace the existing file with the new one','','none'),(4859,'','default','Default method for creating thumbnails','','none'),(4860,'','default','Scale the image with respect to the thumbnail dimensions.','','none'),(4861,'','default','First scale then crop the image to fit the thumbnail dimensions.','','none'),(4862,'','default','Assigned profile','','none'),(4863,'','default','For users who have <strong>multiple roles</strong>, <strong>weight</strong> property will determine the assigned profile. Lighter roles that are placed upper will take the precedence. So, an administrator role should be placed over other roles by having a smaller weight, ie. -10.','','none'),(4864,'','default','Role-profile assignments','','none'),(4865,'','default','Assign profiles to user roles.','','none'),(4866,'','default','Settings were imported from the profile %name','','none'),(4867,'','default','Give a name to this profile.','','none'),(4868,'','default','Set to 0 to use the maximum value avaliable.','','none'),(4869,'','default','Directory quota','','none'),(4870,'','default','Define the upload quota per directory. Total user quota is proportional to the number of directories that the user has upload access to.','','none'),(4871,'','default','Total user quota','','none'),(4872,'','default','You can force total user quota to be a value independent of directory quota. <strong>This quota is calculated using the files table in the database, so that it will not include the files uploaded via FTP or by previous versions of IMCE(4.7.x and 5.x)</strong>. You can either use both quotations together or safely ignore this by setting the value to 0.','','none'),(4873,'','default','Set to * to remove the restriction.','','none'),(4874,'','default','Maximum number of files per operation','','none'),(4875,'','default','You can allow users to select multiple files for operations such as delete, resize, etc. Entire batch file operation is executed in a single drupal load, which may be good. However there will be an increase in script execution time, cpu load and memory consumption possibly exceeding the limits of your server, which is really bad. For unlimited number of file handling, set this to 0.','','none'),(4876,'','default','Profile has been added.','','none'),(4877,'','default','Including subdirectories','','none'),(4878,'','default','Directory path','','none'),(4879,'','default','Define directories that users of this profile can access.\n<ul>\n	<li>Use alphanumeric characters as directory paths.</li>\n	<li>To specify file system root, just enter <strong>.</strong>(dot) character.</li>\n	<li>Use <strong>%uid</strong> as a placeholder for user ID. Ex: <em>users/user%uid</em> creates directories such as <em>users/user1</em>, <em>users/user42</em>, etc.</li>\n  <li>To remove a directory from the list, leave the directory path blank.</li>\n  <li>If you want more flexibility in directory paths you can execute php to return a directory path.<br />\n  For php execution your directory path must start with <strong>php:</strong> and the rest must be a valid php code that is expected to return the actual directory path. <br />Ex: <strong>php: return \'users/\'.$user->name;</strong> defines <strong>users/USER-NAME</strong> as the directory path.<br />\n  A multi-level directory example <strong>php: return date(\'Y\', $user->created).\'/\'.date(\'m\', $user->created).\'/\'.$user->uid;</strong> defines <strong>MEMBERSHIP-YEAR/MONTH/USER-ID</strong> as the directory path, resulting in self-categorized user directories based on membership date.<br />\n  Note that you should use the $user variable instead of $GLOBALS[\'user\'] since they are not always the same object.</li>\n</ul>\n<p>Note that thumbnails permission does not affect thumbnail creation on upload. See thumbnails decription below.</p>\n<p>If you need more fields, just fill all and save, and you will get two more on the next page.</p>','','none'),(4880,'','default','You may create a list of thumbnail options that users can choose from.\n<ul>\n  <li>Use alphanumeric characters as thumbnail names.</li>\n  <li>Specify dimensions as <strong>WidthxHeight</strong>.</li>\n  <li>Prefix and suffix are strings that are added to original file name to create the thumbnail name.</li>\n  <li>An example thumbnail: Name = <strong>Small</strong>, Dimensions = <strong>80x80</strong>, Prefix = <strong>small_</strong></li>\n</ul>\n<p>Note that users will always be able to create thumbnails on file upload no matter what the thumbnail permission is. To disable thumbnail creation on file upload you should not define any thumbnails here.</p>\n<p>If you need more fields, just fill all and save, and you will get two more on the next page.</p>','','none'),(4881,'','default','Are you sure you want to delete the profile %name?','','none'),(4882,'','default','Profile has been deleted.','','none'),(4883,'','default','Import settings from other profiles','','none'),(4884,'','default','Duplicate directory paths are not allowed.','','none'),(4885,'','default','%dirname is not accepted as a proper directory name.','','none'),(4886,'','default','Create thumbnails','','none'),(4887,'','default','Selected files','','none'),(4888,'','default','Width x Height','','none'),(4889,'','default','Create a new image','','none'),(4890,'','default','You are not allowed to operate on more than %num files.','','none'),(4891,'','default','directory (%dir)','','none'),(4892,'','default','Upload failed.','','none'),(4893,'','default','File deletion successful: %files.','','none'),(4894,'','default','Please specify dimensions within the allowed range that is from 1x1 to @dimensions.','','none'),(4895,'','default','File resizing successful: %files.','','none'),(4896,'','default','Thumbnail creation (%thumbnames) successful for %filename.','','none'),(4897,'','default','%filename is not an image.','','none'),(4898,'','default','Scaling up is not allowed.','','none'),(4899,'','default','%filename(%dimensions) already exists.','','none'),(4900,'','default','%filename cannot be resized to %dimensions','','none'),(4901,'','default','File browser is set to reject the upload of existing files.','','none'),(4902,'','default','Unable to get a working directory for the file browser!','','none'),(4903,'','default','There is no valid directory specified for the file browser!','','none'),(4904,'','default','imce','','none'),(4905,'','default','Do you want to refresh the current directory?','','none'),(4906,'','default','Delete selected files?','','none'),(4907,'','default','Please select a thumbnail.','','none'),(4908,'','default','You must select at least %num files.','','none'),(4909,'','default','Tips','','none'),(4910,'','default','Select a file by clicking the corresponding row in the file list.','','none'),(4911,'','default','Ctrl+click to add files to the selection or to remove files from the selection.','','none'),(4912,'','default','Shift+click to create a range selection. Click to start the range and shift+click to end it.','','none'),(4913,'','default','Sort the files by clicking a column header of the file list.','','none'),(4914,'','default','Resize the work-spaces by dragging the horizontal or vertical resize-bars.','','none'),(4915,'','default','Keyboard shortcuts for file list: up, down, left, home, end, ctrl+A.','','none'),(4916,'','default','Keyboard shortcuts for selected files: enter/insert, delete, R(esize), T(humbnails), U(pload).','','none'),(4917,'','default','Keyboard shortcuts for directory list: up, down, left, right, home, end.','','none'),(4918,'','default','Limitations','','none'),(4919,'','default','!num files using !dirsize of !quota','','none'),(4920,'','default','unlimited quota','','none'),(4921,'','default','The file has been renamed to %filename.','','none'),(4922,'','default','%filename has been uploaded.','','none'),(4923,'','default','%filename is in use by another application.','','none'),(4924,'','default','%filename is %filesize which would exceed your directory quota. You are currently using %size of %total_quota.','','none'),(4925,'','default','%filename is %filesize which would exceed your total user quota. You are currently using %size of %total_quota.','','none'),(4926,'','default','You do not have access to any configuration profile to use the file browser!','','none'),(4927,'','default','Directory %dirname is not accessible.','','none'),(4928,'','default','Access to %directory was denied.','','none'),(4929,'','default','You can not perform this operation.','','none'),(4930,'','default','In order to send a file to an external application, double click on the file row.','','none'),(4931,'','default','Insert file','','none'),(4932,'','default','Change view','','none'),(4933,'sites/all/modules/imce/js/imce.js','default','File browsing is disabled in directory %dir.','','none'),(4934,'/?q=it','default','Translation files','','7.31'),(4935,'/?q=it','default','Translation files.','','7.31'),(4936,'/?q=it','default','Album name','','7.59'),(4937,'/?q=it','default','Translation set','','7.59'),(4938,'/?q=it','default','Undefined','','7.59'),(4939,'/?q=it','default','First Sidebar','','7.59'),(4940,'/?q=it','default','Preface First','','7.59'),(4941,'/?q=it','default','Preface Middle','','7.59'),(4942,'/?q=it','default','Preface Last','','7.59'),(4943,'/?q=it','default','Content Top','','7.59'),(4944,'/?q=it','default','First Bottom','','7.59'),(4945,'/?q=it','default','Second Bottom','','7.59'),(4946,'/?q=it','default','Third Bottom','','7.59'),(4947,'/?q=it','default','Dashboard (main)','','7.59'),(4948,'/?q=it','default','Dashboard (sidebar)','','7.59'),(4949,'/?q=it','default','Dashboard (inactive)','','7.59'),(4950,'/?q=it','default','It is recommended to not edit the !ckeditor_config_file (!ckeditor_config_path) configuration file that is distributed with CKEditor, because you may overwrite it accidentally when you update the editor.','','7.31'),(4951,'/?q=it','default','User menu','','7.59'),(4952,'/?q=it','default','!datetime','','7.59'),(4953,'/?q=it','default','Copyright','','7.59'),(4954,'/?q=it','default','Theme by','','7.59'),(4955,'/?q=it/user','default','No albums yet','','7.31'),(4956,'/?q=it/user','default','Create album','','7.31'),(4957,'/?q=it/user','default','No images yet','','7.31'),(4958,'/?q=it/user','default','Album image','','7.31'),(4959,'/?q=it/user','default','Album photos','','7.59'),(4960,'/?q=it/photos/upload','default','Image upload','','7.34'),(4961,'/?q=it/photos/upload','default','Album title','','7.31'),(4962,'/?q=it/photos/upload','default','Image count','','7.31'),(4963,'/?q=it/photos/upload','default','Create time','','7.31'),(4964,'/?q=it/photos/upload','default','create','','7.31'),(4965,'/?q=it/photos/upload','default','You must first !create an album to upload images.','','7.31'),(4966,'/?q=it/photos/upload','default','Please create an album.','','7.31'),(4967,'/?q=it/photos/upload','default','Latest albums','','7.34'),(4968,'/?q=it/photos/upload','default','Latest images','','7.34'),(4969,'/?q=it/photos/upload','default','Share code','','7.34'),(4970,'/?q=it/photos/upload','default','My !str','','7.34'),(4971,'sites/all/modules/views/js/views-admin.js','default','Remove group','','none'),(4972,'sites/all/modules/views/js/views-admin.js','default','Apply (all displays)','','none'),(4973,'sites/all/modules/views/js/views-admin.js','default','Revert to default','','none'),(4974,'sites/all/modules/views/js/views-admin.js','default','Apply (this display)','','none'),(4975,'/?q=admin/structure/views/view/articles&render=overlay&render=overlay','default','Master','','7.59'),(4976,'/?q=admin/structure/views/view/articles&render=overlay&render=overlay','default','Articles','','7.59'),(4977,'/?q=admin/structure/views/view/articles&render=overlay&render=overlay','default','more','','7.59'),(4978,'/?q=admin/structure/views/view/articles&render=overlay&render=overlay','default','Apply','','7.59'),(4979,'/?q=admin/structure/views/view/articles&render=overlay&render=overlay','default','Sort by','','7.59'),(4980,'/?q=admin/structure/views/view/articles&render=overlay&render=overlay','default','Asc','','7.59'),(4981,'/?q=admin/structure/views/view/articles&render=overlay&render=overlay','default','Desc','','7.59'),(4982,'/?q=admin/structure/views/view/articles&render=overlay&render=overlay','default','Items per page','','7.34'),(4983,'/?q=admin/structure/views/view/articles&render=overlay&render=overlay','default','- All -','','7.34'),(4984,'/?q=admin/structure/views/view/articles&render=overlay&render=overlay','default','Offset','','7.34'),(4985,'','default','Normal','','7.59'),(4986,'/?q=it/node/2','default','Comments are responses to node content.','','7.59'),(4987,'/?q=it/node/2','default','ID','','7.59'),(4988,'/?q=it/node/2','default','The comment ID of the field','','7.59'),(4989,'/?q=it/node/2','default','The name of the comment\'s author. Can be rendered as a link to the author\'s homepage.','','7.59'),(4990,'/?q=it/node/2','default','Author\'s website','','7.59'),(4991,'/?q=it/node/2','default','The website address of the comment\'s author. Can be rendered as a link. Will be empty if the author is a registered user.','','7.59'),(4992,'/?q=it/node/2','default','Hostname of user that posted the comment.','','7.59'),(4993,'/?q=it/node/2','default','Mail','','7.59'),(4994,'/?q=it/node/2','default','Email of user that posted the comment. Will be empty if the author is a registered user.','','7.59'),(4995,'/?q=it/node/2','default','Post date','','7.59'),(4996,'/?q=it/node/2','default','Date and time of when the comment was created.','','7.59'),(4997,'/?q=it/node/2','default','The language the comment is in.','','7.59'),(4998,'/?q=it/node/2','default','Updated date','','7.59'),(4999,'/?q=it/node/2','default','Date and time of when the comment was last updated.','','7.59'),(5000,'/?q=it/node/2','default','Created date','','7.59'),(5001,'/?q=it/node/2','default','Date in the form of CCYYMMDD.','','7.59'),(5002,'/?q=it/node/2','default','Created year + month','','7.59'),(5003,'/?q=it/node/2','default','Date in the form of YYYYMM.','','7.59'),(5004,'/?q=it/node/2','default','Created year','','7.59'),(5005,'/?q=it/node/2','default','Date in the form of YYYY.','','7.59'),(5006,'/?q=it/node/2','default','Created month','','7.59'),(5007,'/?q=it/node/2','default','Date in the form of MM (01 - 12).','','7.59'),(5008,'/?q=it/node/2','default','Created day','','7.59'),(5009,'/?q=it/node/2','default','Date in the form of DD (01 - 31).','','7.59'),(5010,'/?q=it/node/2','default','Created week','','7.59'),(5011,'/?q=it/node/2','default','Date in the form of WW (01 - 53).','','7.59'),(5012,'/?q=it/node/2','default','Approved','','7.59'),(5013,'/?q=it/node/2','default','Whether the comment is approved (or still in the moderation queue).','','7.59'),(5014,'/?q=it/node/2','default','Not Approved','','7.59'),(5015,'/?q=it/node/2','default','Approved comment','','7.59'),(5016,'/?q=it/node/2','default','View link','','7.59'),(5017,'/?q=it/node/2','default','Provide a simple link to view the comment.','','7.59'),(5018,'/?q=it/node/2','default','Edit link','','7.59'),(5019,'/?q=it/node/2','default','Provide a simple link to edit the comment.','','7.59'),(5020,'/?q=it/node/2','default','Delete link','','7.59'),(5021,'/?q=it/node/2','default','Provide a simple link to delete the comment.','','7.59'),(5022,'/?q=it/node/2','default','Approve link','','7.59'),(5023,'/?q=it/node/2','default','Provide a simple link to approve the comment.','','7.59'),(5024,'/?q=it/node/2','default','Reply-to link','','7.59'),(5025,'/?q=it/node/2','default','Provide a simple link to reply to the comment.','','7.59'),(5026,'/?q=it/node/2','default','Depth','','7.59'),(5027,'/?q=it/node/2','default','Display the depth of the comment if it is threaded.','','7.59'),(5028,'/?q=it/node/2','default','Thread','','7.59'),(5029,'/?q=it/node/2','default','Sort by the threaded order. This will keep child comments together with their parents.','','7.59'),(5030,'/?q=it/node/2','default','Nid','','7.59'),(5031,'/?q=it/node/2','default','The node ID to which the comment is a reply to.','','7.59'),(5032,'/?q=it/node/2','default','The content to which the comment is a reply to.','','7.59'),(5033,'/?q=it/node/2','default','Author uid','','7.59'),(5034,'/?q=it/node/2','default','If you need more fields than the uid add the comment: author relationship','','7.59'),(5035,'/?q=it/node/2','default','The User ID of the comment\'s author.','','7.59'),(5036,'/?q=it/node/2','default','author','','7.59'),(5037,'/?q=it/node/2','default','Parent CID','','7.59'),(5038,'/?q=it/node/2','default','The Comment ID of the parent comment.','','7.59'),(5039,'/?q=it/node/2','default','Parent comment','','7.59'),(5040,'/?q=it/node/2','default','The parent comment.','','7.59'),(5041,'/?q=it/node/2','default','Last comment time','','7.59'),(5042,'/?q=it/node/2','default','Date and time of when the last comment was posted.','','7.59'),(5043,'/?q=it/node/2','default','Last comment author','','7.59'),(5044,'/?q=it/node/2','default','The name of the author of the last posted comment.','','7.59'),(5045,'/?q=it/node/2','default','The number of comments a node has.','','7.59'),(5046,'/?q=it/node/2','default','Updated/commented date','','7.59'),(5047,'/?q=it/node/2','default','The most recent of last comment posted or node updated time.','','7.59'),(5048,'/?q=it/node/2','default','Last comment CID','','7.59'),(5049,'/?q=it/node/2','default','Display the last comment of a node','','7.59'),(5050,'/?q=it/node/2','default','Last Comment','','7.59'),(5051,'/?q=it/node/2','default','The last comment of a node.','','7.59'),(5052,'/?q=it/node/2','default','Last comment uid','','7.59'),(5053,'/?q=it/node/2','default','The User ID of the author of the last comment of a node.','','7.59'),(5054,'/?q=it/node/2','default','@entity:@bundle','','7.59'),(5055,'/?q=it/node/2','default','Appears in: @bundles.','','7.59'),(5056,'/?q=it/node/2','default','@group: @field','','7.59'),(5057,'/?q=it/node/2','default','@label (!name)','','7.59'),(5058,'/?q=it/node/2','default','- No value -','','7.59'),(5059,'/?q=it/node/2','default','@label (!name:!column)','','7.59'),(5060,'/?q=it/node/2','default','@label:!column','','7.59'),(5061,'/?q=it/node/2','default','This is an alias of @group: @field.','','7.59'),(5062,'/?q=it/node/2','default','Also known as: !also.','','7.59'),(5063,'/?q=it/node/2','default','@group (historical data)','','7.59'),(5064,'/?q=it/node/2','default','@group (historical data): @field','','7.59'),(5065,'/?q=it/node/2','default','@label (!name:delta)','','7.59'),(5066,'/?q=it/node/2','default','@label:delta','','7.59'),(5067,'/?q=it/node/2','default','Delta - Appears in: @bundles.','','7.59'),(5068,'/?q=it/node/2','default','term from !field_name','','7.59'),(5069,'/?q=it/node/2','default','image from !field_name','','7.59'),(5070,'/?q=it/node/2','default','Locale source','','7.59'),(5071,'/?q=it/node/2','default','A source string for translation, in English or the default site language.','','7.59'),(5072,'/?q=it/node/2','default','LID','','7.59'),(5073,'/?q=it/node/2','default','The ID of the source string.','','7.59'),(5074,'/?q=it/node/2','default','A description of the location or context of the string.','','7.59'),(5075,'/?q=it/node/2','default','The group the translation is in.','','7.59'),(5076,'','default','Source','','7.59'),(5077,'/?q=it/node/2','default','The full original string.','','7.59'),(5078,'/?q=it/node/2','default','The version of Drupal core that this string is for.','','7.59'),(5079,'/?q=it/node/2','default','Provide a simple link to edit the translations.','','7.59'),(5080,'/?q=it/node/2','default','Locale target','','7.59'),(5081,'/?q=it/node/2','default','Translation','','7.59'),(5082,'/?q=it/node/2','default','The full translation string.','','7.59'),(5083,'/?q=it/node/2','default','The language this translation is in.','','7.59'),(5084,'/?q=it/node/2','default','Singular LID','','7.59'),(5085,'/?q=it/node/2','default','The ID of the parent translation.','','7.59'),(5086,'/?q=it/node/2','default','Plural','','7.59'),(5087,'/?q=it/node/2','default','Whether or not the translation is plural.','','7.59'),(5088,'/?q=it/node/2','default','The node ID.','','7.59'),(5089,'/?q=it/node/2','default','The content title.','','7.59'),(5090,'/?q=it/node/2','default','The date the content was posted.','','7.59'),(5091,'/?q=it/node/2','default','The date the content was last updated.','','7.59'),(5092,'/?q=it/node/2','default','The content type (for example, \"blog entry\", \"forum post\", \"story\", etc).','','7.59'),(5093,'/?q=it/node/2','default','Whether or not the content is published.','','7.59'),(5094,'/?q=it/node/2','default','Published or admin','','7.59'),(5095,'/?q=it/node/2','default','Filters out unpublished content if the current user cannot view it.','','7.59'),(5096,'/?q=it/node/2','default','Whether or not the content is promoted to the front page.','','7.59'),(5097,'/?q=it/node/2','default','Promoted','','7.59'),(5098,'/?q=it/node/2','default','Not promoted','','7.59'),(5099,'/?q=it/node/2','default','Sticky','','7.59'),(5100,'/?q=it/node/2','default','Whether or not the content is sticky.','','7.59'),(5101,'/?q=it/node/2','default','Not sticky','','7.59'),(5102,'/?q=it/node/2','default','Whether or not the content is sticky. To list sticky content first, set this to descending.','','7.59'),(5103,'/?q=it/node/2','default','Provide a simple link to the content.','','7.59'),(5104,'/?q=it/node/2','default','Provide a simple link to edit the content.','','7.59'),(5105,'/?q=it/node/2','default','Provide a simple link to delete the content.','','7.59'),(5106,'/?q=it/node/2','default','The aliased path to this content.','','7.59'),(5107,'/?q=it/node/2','default','Updated year + month','','7.59'),(5108,'/?q=it/node/2','default','Updated year','','7.59'),(5109,'/?q=it/node/2','default','Updated month','','7.59'),(5110,'/?q=it/node/2','default','Updated day','','7.59'),(5111,'/?q=it/node/2','default','Updated week','','7.59'),(5112,'/?q=it/node/2','default','The user authoring the content. If you need more fields than the uid add the content: author relationship','','7.59'),(5113,'/?q=it/node/2','default','Relate content to the user who created it.','','7.59'),(5114,'/?q=it/node/2','default','User has a revision','','7.59'),(5115,'/?q=it/node/2','default','All nodes where a certain user has a revision','','7.59'),(5116,'/?q=it/node/2','default','Content revision','','7.59'),(5117,'/?q=it/node/2','default','Content revision is a history of changes to content.','','7.59'),(5118,'/?q=it/node/2','default','Relate a content revision to the user who created the revision.','','7.59'),(5119,'/?q=it/node/2','default','revision user','','7.59'),(5120,'/?q=it/node/2','default','The revision NID of the content revision.','','7.59'),(5121,'/?q=it/node/2','default','Get the actual content from a content revision.','','7.59'),(5122,'/?q=it/node/2','default','Vid','','7.59'),(5123,'/?q=it/node/2','default','The revision ID of the content revision.','','7.59'),(5124,'/?q=it/node/2','default','Log message','','7.59'),(5125,'/?q=it/node/2','default','The log message entered when the revision was created.','','7.59'),(5126,'/?q=it/node/2','default','The date the node was last updated.','','7.59'),(5127,'/?q=it/node/2','default','Provide a simple link to the revision.','','7.59'),(5128,'/?q=it/node/2','default','Revert link','','7.59'),(5129,'/?q=it/node/2','default','Provide a simple link to revert to the revision.','','7.59'),(5130,'/?q=it/node/2','default','Provide a simple link to delete the content revision.','','7.59'),(5131,'/?q=it/node/2','default','Content access','','7.59'),(5132,'/?q=it/node/2','default','Access','','7.59'),(5133,'/?q=it/node/2','default','Filter by access.','','7.59'),(5134,'/?q=it/node/2','default','Filter for content by view access. <strong>Not necessary if you are using node as your base table.</strong>','','7.59'),(5135,'/?q=it/node/2','default','Has new content','','7.59'),(5136,'/?q=it/node/2','default','Show a marker if the content is new or updated.','','7.59'),(5137,'/?q=it/node/2','default','Show only content that is new or updated.','','7.59'),(5138,'/?q=it/node/2','default','Album Photos','','7.59'),(5139,'/?q=it/node/2','default','Photos Albums','','7.59'),(5140,'/?q=it/node/2','default','Albums.','','7.59'),(5141,'/?q=it/node/2','default','Album ID','','7.59'),(5142,'/?q=it/node/2','default','This albums {node}.nid.','','7.59'),(5143,'/?q=it/node/2','default','Album cover','','7.59'),(5144,'/?q=it/node/2','default','The {file_managed}.fid for the albums cover (if set).','','7.59'),(5145,'/?q=it/node/2','default','The cover associated with this album.','','7.59'),(5146,'/?q=it/node/2','default','Access to the file associated with the cover of this Album.','','7.59'),(5147,'/?q=it/node/2','default','Album Weight','','7.59'),(5148,'/?q=it/node/2','default','The weight of this album.','','7.59'),(5149,'/?q=it/node/2','default','Album Image Count','','7.59'),(5150,'/?q=it/node/2','default','The number of images in this album.','','7.59'),(5151,'/?q=it/node/2','default','Photos Images','','7.59'),(5152,'/?q=it/node/2','default','Album images.','','7.59'),(5153,'/?q=it/node/2','default','The file associated with this image.','','7.59'),(5154,'/?q=it/node/2','default','Access to the file information associated with this image.','','7.59'),(5155,'/?q=it/node/2','default','This images album {node}.nid.','','7.59'),(5156,'/?q=it/node/2','default','Album: Node','','7.59'),(5157,'/?q=it/node/2','default','The node associated with this album.','','7.59'),(5158,'/?q=it/node/2','default','Access to node title and fields for this Album.','','7.59'),(5159,'/?q=it/node/2','default','Image Title','','7.59'),(5160,'/?q=it/node/2','default','The title for this image.','','7.59'),(5161,'/?q=it/node/2','default','Image Description','','7.59'),(5162,'/?q=it/node/2','default','The description for this image.','','7.59'),(5163,'/?q=it/node/2','default','Has Description','','7.59'),(5164,'/?q=it/node/2','default','Image Weight','','7.59'),(5165,'/?q=it/node/2','default','The image weight - custom sort order.','','7.59'),(5166,'/?q=it/node/2','default','Image Views','','7.59'),(5167,'/?q=it/node/2','default','Count how many times this image has been viewed.','','7.59'),(5168,'/?q=it/node/2','default','Image Comments','','7.59'),(5169,'/?q=it/node/2','default','Count how many comments this image has.','','7.59'),(5170,'/?q=it/node/2','default','Score','','7.31'),(5171,'/?q=it/node/2','default','The score of the search item. This will not be used if the search filter is not also present.','','7.31'),(5172,'/?q=it/node/2','default','Links from','','7.31'),(5173,'/?q=it/node/2','default','Other nodes that are linked from the node.','','7.31'),(5174,'/?q=it/node/2','default','Links to','','7.31'),(5175,'/?q=it/node/2','default','Other nodes that link to the node.','','7.31'),(5176,'/?q=it/node/2','default','Search Terms','','7.31'),(5177,'/?q=it/node/2','default','The terms to search for.','','7.31'),(5178,'/?q=it/node/2','default','Files maintained by Drupal and various modules.','','7.59'),(5179,'/?q=it/node/2','default','The ID of the file.','','7.59'),(5180,'/?q=it/node/2','default','The name of the file.','','7.59'),(5181,'/?q=it/node/2','default','The path of the file.','','7.59'),(5182,'/?q=it/node/2','default','Mime type','','7.59'),(5183,'/?q=it/node/2','default','The mime type of the file.','','7.59'),(5184,'/?q=it/node/2','default','Extension','','7.59'),(5185,'/?q=it/node/2','default','The extension of the file.','','7.59'),(5186,'/?q=it/node/2','default','The status of the file.','','7.59'),(5187,'/?q=it/node/2','default','Upload date','','7.59'),(5188,'/?q=it/node/2','default','The date the file was uploaded.','','7.59'),(5189,'/?q=it/node/2','default','User who uploaded','','7.59'),(5190,'/?q=it/node/2','default','The user that uploaded the file.','','7.59'),(5191,'/?q=it/node/2','default','File Usage','','7.59'),(5192,'/?q=it/node/2','default','Content that is associated with this file, usually because this file is in a field on the content.','','7.59'),(5193,'/?q=it/node/2','default','A file that is associated with this node, usually because it is in a field on the node.','','7.59'),(5194,'/?q=it/node/2','default','A user that is associated with this file, usually because this file is in a field on the user.','','7.59'),(5195,'/?q=it/node/2','default','A file that is associated with this user, usually because it is in a field on the user.','','7.59'),(5196,'/?q=it/node/2','default','A comment that is associated with this file, usually because this file is in a field on the comment.','','7.59'),(5197,'/?q=it/node/2','default','A file that is associated with this comment, usually because it is in a field on the comment.','','7.59'),(5198,'/?q=it/node/2','default','Taxonomy Term','','7.59'),(5199,'/?q=it/node/2','default','A taxonomy term that is associated with this file, usually because this file is in a field on the taxonomy term.','','7.59'),(5200,'/?q=it/node/2','default','A file that is associated with this taxonomy term, usually because it is in a field on the taxonomy term.','','7.59'),(5201,'/?q=it/node/2','default','Taxonomy Vocabulary','','7.59'),(5202,'/?q=it/node/2','default','A taxonomy vocabulary that is associated with this file, usually because this file is in a field on the taxonomy vocabulary.','','7.59'),(5203,'/?q=it/node/2','default','A file that is associated with this taxonomy vocabulary, usually because it is in a field on the taxonomy vocabulary.','','7.59'),(5204,'/?q=it/node/2','default','Module','','7.59'),(5205,'/?q=it/node/2','default','The module managing this file relationship.','','7.59'),(5206,'','default','Entity type','','7.59'),(5207,'/?q=it/node/2','default','The type of entity that is related to the file.','','7.59'),(5208,'','default','Entity ID','','7.59'),(5209,'/?q=it/node/2','default','The ID of the entity that is related to the file.','','7.59'),(5210,'/?q=it/node/2','default','Use count','','7.59'),(5211,'/?q=it/node/2','default','The number of times the file is used by this entity.','','7.59'),(5212,'/?q=it/node/2','default','Module/Theme/Theme engine','','7.59'),(5213,'/?q=it/node/2','default','Modules/Themes/Theme engines in your codebase.','','7.59'),(5214,'/?q=it/node/2','default','Module/Theme/Theme engine filename','','7.59'),(5215,'/?q=it/node/2','default','The path of the primary file for this item, relative to the Drupal root; e.g. modules/node/node.module.','','7.59'),(5216,'/?q=it/node/2','default','Module/Theme/Theme engine name','','7.59'),(5217,'/?q=it/node/2','default','The name of the item; e.g. node.','','7.59'),(5218,'/?q=it/node/2','default','The type of the item, either module, theme, or theme_engine.','','7.59'),(5219,'/?q=it/node/2','default','Boolean indicating whether or not this item is enabled.','','7.59'),(5220,'/?q=it/node/2','default','Schema version','','7.59'),(5221,'/?q=it/node/2','default','The module\'s database schema version number. -1 if the module is not installed (its tables do not exist); 0 or the largest N of the module\'s hook_update_N() function that has either been run or existed when the module was first installed.','','7.59'),(5222,'/?q=it/node/2','default','Name of the vocabulary a term is a member of. This will be the vocabulary that whichever term the \"Taxonomy: Term\" field is; and can similarly cause duplicates.','','7.59'),(5223,'/?q=it/node/2','default','The taxonomy vocabulary name','','7.59'),(5224,'/?q=it/node/2','default','Machine-Name of the vocabulary a term is a member of. This will be the vocabulary that whichever term the \"Taxonomy: Term\" field is; and can similarly cause duplicates.','','7.59'),(5225,'/?q=it/node/2','default','Filter the results of \"Taxonomy: Term\" to a particular vocabulary.','','7.59'),(5226,'/?q=it/node/2','default','The taxonomy vocabulary ID','','7.59'),(5227,'/?q=it/node/2','default','The taxonomy vocabulary description','','7.59'),(5228,'/?q=it/node/2','default','The taxonomy vocabulary weight','','7.59'),(5229,'/?q=it/node/2','default','Term','','7.59'),(5230,'/?q=it/node/2','default','Taxonomy terms are attached to nodes.','','7.59'),(5231,'/?q=it/node/2','default','The tid of a taxonomy term.','','7.59'),(5232,'/?q=it/node/2','default','Taxonomy term chosen from autocomplete or select widget.','','7.59'),(5233,'/?q=it/node/2','default','Representative node','','7.59'),(5234,'/?q=it/node/2','default','Obtains a single representative node for each term, according to a chosen sort criterion.','','7.59'),(5235,'/?q=it/node/2','default','The taxonomy term name.','','7.59'),(5236,'/?q=it/node/2','default','Taxonomy term name.','','7.59'),(5237,'/?q=it/node/2','default','Uncategorized','','7.59'),(5238,'/?q=it/node/2','default','The term weight field','','7.59'),(5239,'/?q=it/node/2','default','The description associated with a taxonomy term.','','7.59'),(5240,'/?q=it/node/2','default','Term edit link','','7.59'),(5241,'/?q=it/node/2','default','Provide a simple link to edit the term.','','7.59'),(5242,'/?q=it/node/2','default','Content with term','','7.59'),(5243,'/?q=it/node/2','default','Relate all content tagged with a term.','','7.59'),(5244,'/?q=it/node/2','default','Has taxonomy term ID','','7.59'),(5245,'/?q=it/node/2','default','Display content if it has the selected taxonomy terms.','','7.59'),(5246,'/?q=it/node/2','default','Has taxonomy term','','7.59'),(5247,'/?q=it/node/2','default','The parent term of the term. This can produce duplicate entries if you are using a vocabulary that allows multiple parents.','','7.59'),(5248,'/?q=it/node/2','default','Filter the results of \"Taxonomy: Term\" by the parent pid.','','7.59'),(5249,'/?q=it/node/2','default','The parent term of the term.','','7.59'),(5250,'/?q=it/node/2','default','Users who have created accounts on your site.','','7.59'),(5251,'/?q=it/node/2','default','Uid','','7.59'),(5252,'/?q=it/node/2','default','The user ID','','7.59'),(5253,'/?q=it/node/2','default','Content authored','','7.59'),(5254,'/?q=it/node/2','default','Relate content to the user who created it. This relationship will create one record for each content item created by the user.','','7.59'),(5255,'/?q=it/node/2','default','nodes','','7.59'),(5256,'/?q=it/node/2','default','The raw numeric user ID.','','7.59'),(5257,'/?q=it/node/2','default','Obtains a single representative node for each user, according to a chosen sort criterion.','','7.59'),(5258,'/?q=it/node/2','default','Current','','7.59'),(5259,'/?q=it/node/2','default','Filter the view to the currently logged in user.','','7.59'),(5260,'/?q=it/node/2','default','The user or author name.','','7.59'),(5261,'/?q=it/node/2','default','Name (raw)','','7.59'),(5262,'/?q=it/node/2','default','The user or author name. This filter does not check if the user exists and allows partial matching. Does not utilize autocomplete.','','7.59'),(5263,'/?q=it/node/2','default','Email address for a given user. This field is normally not shown to users, so be cautious when using it.','','7.59'),(5264,'/?q=it/node/2','default','Language of the user','','7.59'),(5265,'/?q=it/node/2','default','The user\'s picture, if allowed.','','7.59'),(5266,'/?q=it/node/2','default','Has Avatar','','7.59'),(5267,'/?q=it/node/2','default','Provide a simple link to the user.','','7.59'),(5268,'/?q=it/node/2','default','The date the user was created.','','7.59'),(5269,'/?q=it/node/2','default','The user\'s last access date.','','7.59'),(5270,'/?q=it/node/2','default','The user\'s last login date.','','7.59'),(5271,'/?q=it/node/2','default','Whether a user is active or blocked.','','7.59'),(5272,'/?q=it/node/2','default','The user\'s signature.','','7.59'),(5273,'/?q=it/node/2','default','Provide a simple link to edit the user.','','7.59'),(5274,'/?q=it/node/2','default','Cancel link','','7.59'),(5275,'/?q=it/node/2','default','Provide a simple link to cancel the user.','','7.59'),(5276,'/?q=it/node/2','default','Data','','7.59'),(5277,'/?q=it/node/2','default','Provide serialized data of the user','','7.59'),(5278,'/?q=it/node/2','default','Roles that a user belongs to.','','7.59'),(5279,'/?q=it/node/2','default','No role','','7.59'),(5280,'/?q=it/node/2','default','The user permissions.','','7.59'),(5281,'/?q=it/node/2','default','Authmap ID','','7.59'),(5282,'/?q=it/node/2','default','The Authmap ID.','','7.59'),(5283,'/?q=it/node/2','default','Authentication name','','7.59'),(5284,'/?q=it/node/2','default','The unique authentication name.','','7.59'),(5285,'/?q=it/node/2','default','Authentication module','','7.59'),(5286,'/?q=it/node/2','default','The name of the module managing the authentication entry.','','7.59'),(5287,'/?q=it/node/2','default','Global','','7.59'),(5288,'/?q=it/node/2','default','Random','','7.59'),(5289,'/?q=it/node/2','default','Randomize the display order.','','7.59'),(5290,'/?q=it/node/2','default','Null','','7.59'),(5291,'/?q=it/node/2','default','Allow a contextual filter value to be ignored. The query will not be altered by this contextual filter value. Can be used when contextual filter values come from the URL, and a part of the URL needs to be ignored.','','7.59'),(5292,'/?q=it/node/2','default','Custom text','','7.59'),(5293,'/?q=it/node/2','default','Provide custom text or link.','','7.59'),(5294,'/?q=it/node/2','default','View result counter','','7.59'),(5295,'/?q=it/node/2','default','Displays the actual position of the view result','','7.59'),(5296,'/?q=it/node/2','default','Text area','','7.59'),(5297,'/?q=it/node/2','default','Provide markup text for the area.','','7.59'),(5298,'/?q=it/node/2','default','Unfiltered text','','7.59'),(5299,'/?q=it/node/2','default','Add unrestricted, custom text or markup. This is similar to the custom text field.','','7.59'),(5300,'/?q=it/node/2','default','View area','','7.59'),(5301,'/?q=it/node/2','default','Insert a view inside an area.','','7.59'),(5302,'/?q=it/node/2','default','Result summary','','7.59'),(5303,'/?q=it/node/2','default','Shows result summary, for example the items per page.','','7.59'),(5304,'/?q=it/node/2','default','Messages','','7.59'),(5305,'/?q=it/node/2','default','Displays messages in the area.','','7.59'),(5306,'/?q=it/node/2','default','Contextual Links','','7.59'),(5307,'/?q=it/node/2','default','Display fields in a contextual links menu.','','7.59'),(5308,'/?q=it/node/2','default','Combine fields filter','','7.59'),(5309,'/?q=it/node/2','default','Combine two fields together and search by them.','','7.34'),(5310,'/?q=it/node/2','default','Math expression','','7.59'),(5311,'/?q=it/node/2','default','Evaluates a mathematical expression and displays it.','','7.59'),(5312,'/?q=it/node/2','default','Fields comparison','','7.59'),(5313,'/?q=it/node/2','default','Compare database fields against eachother.','','7.59'),(5314,'/?q=it/node/2','default','Use fields comparison to filter the result of the view.','','7.59'),(5315,'/?q=it/node/2','default','The number of new comments on the node.','','7.59'),(5316,'/?q=it/node/2','default','Add comment link','','7.59'),(5317,'/?q=it/node/2','default','Display the standard add comment link used on regular nodes, which will only display if the viewing user has access to add a comment.','','7.59'),(5318,'/?q=it/node/2','default','Comment status','','7.59'),(5319,'/?q=it/node/2','default','Whether comments are enabled or disabled on the node.','','7.59'),(5320,'/?q=it/node/2','default','User posted or commented','','7.59'),(5321,'/?q=it/node/2','default','Display nodes only if a user posted the node or commented on the node.','','7.59'),(5322,'/?q=it/node/2','default','Comments of the node','','7.59'),(5323,'/?q=it/node/2','default','Relate all comments on the node. This will create 1 duplicate record for every comment. Usually if you need this it is better to create a comment view.','','7.59'),(5324,'/?q=it/node/2','default','@entity using @field','','7.59'),(5325,'/?q=it/node/2','default','Relate each @entity with a @field set to the term.','','7.59'),(5326,'/?q=it/node/2','default','!field_name','','7.59'),(5327,'/?q=it/node/2','default','Relate each @entity with a @field set to the image.','','7.59'),(5328,'/?q=it/node/2','default','The language the content is in.','','7.59'),(5329,'/?q=it/node/2','default','Taxonomy terms on node','','7.59'),(5330,'/?q=it/node/2','default','Relate nodes to taxonomy terms, specifiying which vocabulary or vocabularies to use. This relationship will cause duplicated records if there are multiple terms.','','7.59'),(5331,'/?q=it/node/2','default','term','','7.59'),(5332,'/?q=it/node/2','default','All taxonomy terms','','7.59'),(5333,'/?q=it/node/2','default','Display all taxonomy terms associated with a node from specified vocabularies.','','7.59'),(5334,'/?q=it/node/2','default','Display content if it has the selected taxonomy terms, or children of the selected terms. Due to additional complexity, this has fewer options than the versions without depth.','','7.59'),(5335,'/?q=it/node/2','default','Has taxonomy term ID (with depth)','','7.59'),(5336,'/?q=it/node/2','default','Has taxonomy terms (with depth)','','7.59'),(5337,'/?q=it/node/2','default','Has taxonomy term ID depth modifier','','7.59'),(5338,'/?q=it/node/2','default','Allows the \"depth\" for Taxonomy: Term ID (with depth) to be modified via an additional contextual filter value.','','7.59'),(5339,'/?q=it/node/2','default','Translation set node ID','','7.59'),(5340,'/?q=it/node/2','default','The ID of the translation set the content belongs to.','','7.59'),(5341,'/?q=it/node/2','default','Source translation','','7.59'),(5342,'/?q=it/node/2','default','The source that this content was translated from.','','7.59'),(5343,'/?q=it/node/2','default','Translations','','7.59'),(5344,'/?q=it/node/2','default','Versions of content in different languages.','','7.59'),(5345,'/?q=it/node/2','default','Content that is either untranslated or is the original version of a translation set.','','7.59'),(5346,'/?q=it/node/2','default','Node translation','','7.59'),(5347,'/?q=it/node/2','default','Child translation','','7.59'),(5348,'/?q=it/node/2','default','Content that is a translation of a source translation.','','7.59'),(5349,'/?q=it/node/2','default','Translation status','','7.59'),(5350,'/?q=it/node/2','default','The translation status of the content - whether or not the translation needs to be updated.','','7.59'),(5351,'/?q=it/node/2','default','Outdated','','7.59'),(5352,'/?q=it/node/2','default','Translate link','','7.59'),(5353,'/?q=it/node/2','default','Provide a simple link to translate the node.','','7.59'),(5354,'/?q=it/node/2','default','Display the comment with standard comment view.','','7.59'),(5355,'/?q=it/node/2','default','Display the comment as RSS.','','7.59'),(5356,'/?q=it/node/2','default','Display the content with standard node view.','','7.59'),(5357,'/?q=it/node/2','default','Content ID from URL','','7.59'),(5358,'/?q=it/node/2','default','Taxonomy term ID from URL','','7.59'),(5359,'/?q=it/node/2','default','Display the user with standard user view.','','7.59'),(5360,'/?q=it/node/2','default','User ID from URL','','7.59'),(5361,'/?q=it/node/2','default','User ID from logged in user','','7.59'),(5362,'/?q=it/node/2','default','Default settings for this view.','','7.59'),(5363,'/?q=it/node/2','default','Display the view as a page, with a URL and menu links.','','7.59'),(5364,'/?q=it/node/2','default','Display the view as a block.','','7.59'),(5365,'/?q=it/node/2','default','Attachments added to other displays to achieve multiple views in the same view.','','7.59'),(5366,'/?q=it/node/2','default','Feed','','7.59'),(5367,'/?q=it/node/2','default','Display the view as a feed, such as an RSS feed.','','7.59'),(5368,'/?q=it/node/2','default','Embed','','7.59'),(5369,'/?q=it/node/2','default','Provide a display which can be embedded using the views api.','','7.59'),(5370,'/?q=it/node/2','default','Empty display extender','','7.59'),(5371,'/?q=it/node/2','default','Unformatted list','','7.59'),(5372,'/?q=it/node/2','default','Displays rows one after another.','','7.59'),(5373,'/?q=it/node/2','default','HTML list','','7.59'),(5374,'/?q=it/node/2','default','Displays rows as an HTML list.','','7.59'),(5375,'/?q=it/node/2','default','Grid','','7.59'),(5376,'/?q=it/node/2','default','Displays rows in a grid.','','7.59'),(5377,'/?q=it/node/2','default','Displays rows in a table.','','7.59'),(5378,'/?q=it/node/2','default','Displays the default summary as a list.','','7.59'),(5379,'/?q=it/node/2','default','Displays the summary unformatted, with option for one after another or inline.','','7.59'),(5380,'/?q=it/node/2','default','RSS Feed','','7.59'),(5381,'/?q=it/node/2','default','Generates an RSS feed from a view.','','7.59'),(5382,'','default','Fields','','7.59'),(5383,'/?q=it/node/2','default','Displays the fields with an optional template.','','7.59'),(5384,'/?q=it/node/2','default','Display fields as RSS items.','','7.59'),(5385,'/?q=it/node/2','default','Fixed value','','7.59'),(5386,'/?q=it/node/2','default','PHP Code','','7.59'),(5387,'/?q=it/node/2','default','Raw value from URL','','7.59'),(5388,'/?q=it/node/2','default','Numeric','','7.59'),(5389,'/?q=it/node/2','default','Will be available to all users.','','7.59'),(5390,'/?q=it/node/2','default','Access will be granted to users with any of the specified roles.','','7.59'),(5391,'/?q=it/node/2','default','Access will be granted to users with the specified permission string.','','7.59'),(5392,'/?q=it/node/2','default','SQL Query','','7.59'),(5393,'/?q=it/node/2','default','Query will be generated and run using the Drupal database API.','','7.59'),(5394,'/?q=it/node/2','default','No caching of Views data.','','7.59'),(5395,'/?q=it/node/2','default','Time-based','','7.59'),(5396,'/?q=it/node/2','default','Simple time-based caching of data.','','7.59'),(5397,'/?q=it/node/2','default','Basic exposed form','','7.59'),(5398,'/?q=it/node/2','default','Input required','','7.59'),(5399,'/?q=it/node/2','default','An exposed form that only renders a view if the form contains user input.','','7.59'),(5400,'/?q=it/node/2','default','Display all items','','7.59'),(5401,'/?q=it/node/2','default','Display all items that this view might find','','7.59'),(5402,'/?q=it/node/2','default','Display a specified number of items','','7.59'),(5403,'/?q=it/node/2','default','Display a limited number items that this view might find.','','7.59'),(5404,'/?q=it/node/2','default','Paged output, full pager','','7.59'),(5405,'','default','Full','','7.59'),(5406,'/?q=it/node/2','default','Paged output, full Drupal style','','7.59'),(5407,'/?q=it/node/2','default','Paged output, mini pager','','7.59'),(5408,'/?q=it/node/2','default','Mini','','7.59'),(5409,'/?q=it/node/2','default','Use the mini pager output.','','7.59'),(5410,'/?q=it/node/2','default','Do not pass admin strings for translation.','','7.59'),(5411,'/?q=it/node/2','default','Use Drupal core t() function. Not recommended, as it doesn\'t support updates to existing strings.','','7.59'),(5412,'/?q=it/node/2','default','If you need to translate Views labels into other languages, consider installing the <a href=\"!path\">Internationalization</a> package\'s Views translation module.','','7.59'),(5413,'/?q=it/node/2','default','Jump menu','','7.59'),(5414,'/?q=it/node/2','default','Puts all of the results into a select box and allows the user to go to a different page based upon the results.','','7.59'),(5415,'/?q=it/node/2','default','fields','','7.59'),(5416,'/?q=it/node/2','default','field','','7.59'),(5417,'/?q=it/node/2','default','Contextual filters','','7.59'),(5418,'/?q=it/node/2','default','contextual filters','','7.59'),(5419,'/?q=it/node/2','default','Contextual filter','','7.59'),(5420,'/?q=it/node/2','default','contextual filter','','7.59'),(5421,'/?q=it/node/2','default','Sort criteria','','7.59'),(5422,'/?q=it/node/2','default','sort criteria','','7.59'),(5423,'/?q=it/node/2','default','Sort criterion','','7.59'),(5424,'/?q=it/node/2','default','sort criterion','','7.59'),(5425,'/?q=it/node/2','default','Filter criteria','','7.59'),(5426,'/?q=it/node/2','default','filter criteria','','7.59'),(5427,'/?q=it/node/2','default','Filter criterion','','7.59'),(5428,'/?q=it/node/2','default','filter criterion','','7.59'),(5429,'/?q=it/node/2','default','Relationships','','7.59'),(5430,'/?q=it/node/2','default','relationships','','7.59'),(5431,'','default','Relationship','','7.59'),(5432,'/?q=it/node/2','default','header','','7.59'),(5433,'/?q=it/node/2','default','footer','','7.59'),(5434,'/?q=it/node/2','default','No results behavior','','7.59'),(5435,'/?q=it/node/2','default','no results behavior','','7.59'),(5436,'/?q=it/node/2','default','Titolo','','7.59'),(5437,'/?q=it/node/2','default','True','','7.59'),(5438,'','default','Is one of','','7.59'),(5439,'/?q=it/node/2','default','in','','7.59'),(5440,'/?q=it/node/2','default','=','','7.59'),(5441,'','default','Is not one of','','7.59'),(5442,'/?q=it/node/2','default','not in','','7.59'),(5443,'/?q=it/node/2','default','<>','','7.59'),(5444,'/antarctic/?q=it/photos/image','default','By weight','','7.59'),(5445,'/antarctic/?q=it/photos/image','default','By time','','7.59'),(5446,'/antarctic/?q=it/photos/image','default','By comments','','7.59'),(5447,'/antarctic/?q=it/photos/image','default','By visits','','7.59'),(5448,'/antarctic/?q=it/photos/image','default','By filesize','','7.59'),(5449,'/antarctic/?q=it/photos/image','default','Sort by:','','7.59'),(5450,'/antarctic/?q=it/photos/image','default','Limit:','','7.59'),(5451,'/antarctic/?q=it/photos/image','default','No images have been uploaded yet.','','7.31'),(5452,'/antarctic/?q=it/user/40/edit','default','Africa/Abidjan','','7.31'),(5453,'/antarctic/?q=it/user/40/edit','default','Africa/Accra','','7.31'),(5454,'/antarctic/?q=it/user/40/edit','default','Africa/Addis Ababa','','7.31'),(5455,'/antarctic/?q=it/user/40/edit','default','Africa/Algiers','','7.31'),(5456,'/antarctic/?q=it/user/40/edit','default','Africa/Asmara','','7.31'),(5457,'/antarctic/?q=it/user/40/edit','default','Africa/Bamako','','7.31'),(5458,'/antarctic/?q=it/user/40/edit','default','Africa/Bangui','','7.31'),(5459,'/antarctic/?q=it/user/40/edit','default','Africa/Banjul','','7.31'),(5460,'/antarctic/?q=it/user/40/edit','default','Africa/Bissau','','7.31'),(5461,'/antarctic/?q=it/user/40/edit','default','Africa/Blantyre','','7.31'),(5462,'/antarctic/?q=it/user/40/edit','default','Africa/Brazzaville','','7.31'),(5463,'/antarctic/?q=it/user/40/edit','default','Africa/Bujumbura','','7.31'),(5464,'/antarctic/?q=it/user/40/edit','default','Africa/Cairo','','7.31'),(5465,'/antarctic/?q=it/user/40/edit','default','Africa/Casablanca','','7.31'),(5466,'/antarctic/?q=it/user/40/edit','default','Africa/Ceuta','','7.31'),(5467,'/antarctic/?q=it/user/40/edit','default','Africa/Conakry','','7.31'),(5468,'/antarctic/?q=it/user/40/edit','default','Africa/Dakar','','7.31'),(5469,'/antarctic/?q=it/user/40/edit','default','Africa/Dar es Salaam','','7.31'),(5470,'/antarctic/?q=it/user/40/edit','default','Africa/Djibouti','','7.31'),(5471,'/antarctic/?q=it/user/40/edit','default','Africa/Douala','','7.31'),(5472,'/antarctic/?q=it/user/40/edit','default','Africa/El Aaiun','','7.31'),(5473,'/antarctic/?q=it/user/40/edit','default','Africa/Freetown','','7.31'),(5474,'/antarctic/?q=it/user/40/edit','default','Africa/Gaborone','','7.31'),(5475,'/antarctic/?q=it/user/40/edit','default','Africa/Harare','','7.31'),(5476,'/antarctic/?q=it/user/40/edit','default','Africa/Johannesburg','','7.31'),(5477,'/antarctic/?q=it/user/40/edit','default','Africa/Juba','','7.31'),(5478,'/antarctic/?q=it/user/40/edit','default','Africa/Kampala','','7.31'),(5479,'/antarctic/?q=it/user/40/edit','default','Africa/Khartoum','','7.31'),(5480,'/antarctic/?q=it/user/40/edit','default','Africa/Kigali','','7.31'),(5481,'/antarctic/?q=it/user/40/edit','default','Africa/Kinshasa','','7.31'),(5482,'/antarctic/?q=it/user/40/edit','default','Africa/Lagos','','7.31'),(5483,'/antarctic/?q=it/user/40/edit','default','Africa/Libreville','','7.31'),(5484,'/antarctic/?q=it/user/40/edit','default','Africa/Lome','','7.31'),(5485,'/antarctic/?q=it/user/40/edit','default','Africa/Luanda','','7.31'),(5486,'/antarctic/?q=it/user/40/edit','default','Africa/Lubumbashi','','7.31'),(5487,'/antarctic/?q=it/user/40/edit','default','Africa/Lusaka','','7.31'),(5488,'/antarctic/?q=it/user/40/edit','default','Africa/Malabo','','7.31'),(5489,'/antarctic/?q=it/user/40/edit','default','Africa/Maputo','','7.31'),(5490,'/antarctic/?q=it/user/40/edit','default','Africa/Maseru','','7.31'),(5491,'/antarctic/?q=it/user/40/edit','default','Africa/Mbabane','','7.31'),(5492,'/antarctic/?q=it/user/40/edit','default','Africa/Mogadishu','','7.31'),(5493,'/antarctic/?q=it/user/40/edit','default','Africa/Monrovia','','7.31'),(5494,'/antarctic/?q=it/user/40/edit','default','Africa/Nairobi','','7.31'),(5495,'/antarctic/?q=it/user/40/edit','default','Africa/Ndjamena','','7.31'),(5496,'/antarctic/?q=it/user/40/edit','default','Africa/Niamey','','7.31'),(5497,'/antarctic/?q=it/user/40/edit','default','Africa/Nouakchott','','7.31'),(5498,'/antarctic/?q=it/user/40/edit','default','Africa/Ouagadougou','','7.31'),(5499,'/antarctic/?q=it/user/40/edit','default','Africa/Porto-Novo','','7.31'),(5500,'/antarctic/?q=it/user/40/edit','default','Africa/Sao Tome','','7.31'),(5501,'/antarctic/?q=it/user/40/edit','default','Africa/Tripoli','','7.31'),(5502,'/antarctic/?q=it/user/40/edit','default','Africa/Tunis','','7.31'),(5503,'/antarctic/?q=it/user/40/edit','default','Africa/Windhoek','','7.31'),(5504,'/antarctic/?q=it/user/40/edit','default','America/Adak','','7.31'),(5505,'/antarctic/?q=it/user/40/edit','default','America/Anchorage','','7.31'),(5506,'/antarctic/?q=it/user/40/edit','default','America/Anguilla','','7.31'),(5507,'/antarctic/?q=it/user/40/edit','default','America/Antigua','','7.31'),(5508,'/antarctic/?q=it/user/40/edit','default','America/Araguaina','','7.31'),(5509,'/antarctic/?q=it/user/40/edit','default','America/Argentina/Buenos Aires','','7.31'),(5510,'/antarctic/?q=it/user/40/edit','default','America/Argentina/Catamarca','','7.31'),(5511,'/antarctic/?q=it/user/40/edit','default','America/Argentina/Cordoba','','7.31'),(5512,'/antarctic/?q=it/user/40/edit','default','America/Argentina/Jujuy','','7.31'),(5513,'/antarctic/?q=it/user/40/edit','default','America/Argentina/La Rioja','','7.31'),(5514,'/antarctic/?q=it/user/40/edit','default','America/Argentina/Mendoza','','7.31'),(5515,'/antarctic/?q=it/user/40/edit','default','America/Argentina/Rio Gallegos','','7.31'),(5516,'/antarctic/?q=it/user/40/edit','default','America/Argentina/Salta','','7.31'),(5517,'/antarctic/?q=it/user/40/edit','default','America/Argentina/San Juan','','7.31'),(5518,'/antarctic/?q=it/user/40/edit','default','America/Argentina/San Luis','','7.31'),(5519,'/antarctic/?q=it/user/40/edit','default','America/Argentina/Tucuman','','7.31'),(5520,'/antarctic/?q=it/user/40/edit','default','America/Argentina/Ushuaia','','7.31'),(5521,'/antarctic/?q=it/user/40/edit','default','America/Aruba','','7.31'),(5522,'/antarctic/?q=it/user/40/edit','default','America/Asuncion','','7.31'),(5523,'/antarctic/?q=it/user/40/edit','default','America/Atikokan','','7.31'),(5524,'/antarctic/?q=it/user/40/edit','default','America/Bahia','','7.31'),(5525,'/antarctic/?q=it/user/40/edit','default','America/Bahia Banderas','','7.31'),(5526,'/antarctic/?q=it/user/40/edit','default','America/Barbados','','7.31'),(5527,'/antarctic/?q=it/user/40/edit','default','America/Belem','','7.31'),(5528,'/antarctic/?q=it/user/40/edit','default','America/Belize','','7.31'),(5529,'/antarctic/?q=it/user/40/edit','default','America/Blanc-Sablon','','7.31'),(5530,'/antarctic/?q=it/user/40/edit','default','America/Boa Vista','','7.31'),(5531,'/antarctic/?q=it/user/40/edit','default','America/Bogota','','7.31'),(5532,'/antarctic/?q=it/user/40/edit','default','America/Boise','','7.31'),(5533,'/antarctic/?q=it/user/40/edit','default','America/Cambridge Bay','','7.31'),(5534,'/antarctic/?q=it/user/40/edit','default','America/Campo Grande','','7.31'),(5535,'/antarctic/?q=it/user/40/edit','default','America/Cancun','','7.31'),(5536,'/antarctic/?q=it/user/40/edit','default','America/Caracas','','7.31'),(5537,'/antarctic/?q=it/user/40/edit','default','America/Cayenne','','7.31'),(5538,'/antarctic/?q=it/user/40/edit','default','America/Cayman','','7.31'),(5539,'/antarctic/?q=it/user/40/edit','default','America/Chicago','','7.31'),(5540,'/antarctic/?q=it/user/40/edit','default','America/Chihuahua','','7.31'),(5541,'/antarctic/?q=it/user/40/edit','default','America/Costa Rica','','7.31'),(5542,'/antarctic/?q=it/user/40/edit','default','America/Creston','','7.31'),(5543,'/antarctic/?q=it/user/40/edit','default','America/Cuiaba','','7.31'),(5544,'/antarctic/?q=it/user/40/edit','default','America/Curacao','','7.31'),(5545,'/antarctic/?q=it/user/40/edit','default','America/Danmarkshavn','','7.31'),(5546,'/antarctic/?q=it/user/40/edit','default','America/Dawson','','7.31'),(5547,'/antarctic/?q=it/user/40/edit','default','America/Dawson Creek','','7.31'),(5548,'/antarctic/?q=it/user/40/edit','default','America/Denver','','7.31'),(5549,'/antarctic/?q=it/user/40/edit','default','America/Detroit','','7.31'),(5550,'/antarctic/?q=it/user/40/edit','default','America/Dominica','','7.31'),(5551,'/antarctic/?q=it/user/40/edit','default','America/Edmonton','','7.31'),(5552,'/antarctic/?q=it/user/40/edit','default','America/Eirunepe','','7.31'),(5553,'/antarctic/?q=it/user/40/edit','default','America/El Salvador','','7.31'),(5554,'/antarctic/?q=it/user/40/edit','default','America/Fortaleza','','7.31'),(5555,'/antarctic/?q=it/user/40/edit','default','America/Glace Bay','','7.31'),(5556,'/antarctic/?q=it/user/40/edit','default','America/Godthab','','7.31'),(5557,'/antarctic/?q=it/user/40/edit','default','America/Goose Bay','','7.31'),(5558,'/antarctic/?q=it/user/40/edit','default','America/Grand Turk','','7.31'),(5559,'/antarctic/?q=it/user/40/edit','default','America/Grenada','','7.31'),(5560,'/antarctic/?q=it/user/40/edit','default','America/Guadeloupe','','7.31'),(5561,'/antarctic/?q=it/user/40/edit','default','America/Guatemala','','7.31'),(5562,'/antarctic/?q=it/user/40/edit','default','America/Guayaquil','','7.31'),(5563,'/antarctic/?q=it/user/40/edit','default','America/Guyana','','7.31'),(5564,'/antarctic/?q=it/user/40/edit','default','America/Halifax','','7.31'),(5565,'/antarctic/?q=it/user/40/edit','default','America/Havana','','7.31'),(5566,'/antarctic/?q=it/user/40/edit','default','America/Hermosillo','','7.31'),(5567,'/antarctic/?q=it/user/40/edit','default','America/Indiana/Indianapolis','','7.31'),(5568,'/antarctic/?q=it/user/40/edit','default','America/Indiana/Knox','','7.31'),(5569,'/antarctic/?q=it/user/40/edit','default','America/Indiana/Marengo','','7.31'),(5570,'/antarctic/?q=it/user/40/edit','default','America/Indiana/Petersburg','','7.31'),(5571,'/antarctic/?q=it/user/40/edit','default','America/Indiana/Tell City','','7.31'),(5572,'/antarctic/?q=it/user/40/edit','default','America/Indiana/Vevay','','7.31'),(5573,'/antarctic/?q=it/user/40/edit','default','America/Indiana/Vincennes','','7.31'),(5574,'/antarctic/?q=it/user/40/edit','default','America/Indiana/Winamac','','7.31'),(5575,'/antarctic/?q=it/user/40/edit','default','America/Inuvik','','7.31'),(5576,'/antarctic/?q=it/user/40/edit','default','America/Iqaluit','','7.31'),(5577,'/antarctic/?q=it/user/40/edit','default','America/Jamaica','','7.31'),(5578,'/antarctic/?q=it/user/40/edit','default','America/Juneau','','7.31'),(5579,'/antarctic/?q=it/user/40/edit','default','America/Kentucky/Louisville','','7.31'),(5580,'/antarctic/?q=it/user/40/edit','default','America/Kentucky/Monticello','','7.31'),(5581,'/antarctic/?q=it/user/40/edit','default','America/Kralendijk','','7.31'),(5582,'/antarctic/?q=it/user/40/edit','default','America/La Paz','','7.31'),(5583,'/antarctic/?q=it/user/40/edit','default','America/Lima','','7.31'),(5584,'/antarctic/?q=it/user/40/edit','default','America/Los Angeles','','7.31'),(5585,'/antarctic/?q=it/user/40/edit','default','America/Lower Princes','','7.31'),(5586,'/antarctic/?q=it/user/40/edit','default','America/Maceio','','7.31'),(5587,'/antarctic/?q=it/user/40/edit','default','America/Managua','','7.31'),(5588,'/antarctic/?q=it/user/40/edit','default','America/Manaus','','7.31'),(5589,'/antarctic/?q=it/user/40/edit','default','America/Marigot','','7.31'),(5590,'/antarctic/?q=it/user/40/edit','default','America/Martinique','','7.31'),(5591,'/antarctic/?q=it/user/40/edit','default','America/Matamoros','','7.31'),(5592,'/antarctic/?q=it/user/40/edit','default','America/Mazatlan','','7.31'),(5593,'/antarctic/?q=it/user/40/edit','default','America/Menominee','','7.31'),(5594,'/antarctic/?q=it/user/40/edit','default','America/Merida','','7.31'),(5595,'/antarctic/?q=it/user/40/edit','default','America/Metlakatla','','7.31'),(5596,'/antarctic/?q=it/user/40/edit','default','America/Mexico City','','7.31'),(5597,'/antarctic/?q=it/user/40/edit','default','America/Miquelon','','7.31'),(5598,'/antarctic/?q=it/user/40/edit','default','America/Moncton','','7.31'),(5599,'/antarctic/?q=it/user/40/edit','default','America/Monterrey','','7.31'),(5600,'/antarctic/?q=it/user/40/edit','default','America/Montevideo','','7.31'),(5601,'/antarctic/?q=it/user/40/edit','default','America/Montserrat','','7.31'),(5602,'/antarctic/?q=it/user/40/edit','default','America/Nassau','','7.31'),(5603,'/antarctic/?q=it/user/40/edit','default','America/New York','','7.31'),(5604,'/antarctic/?q=it/user/40/edit','default','America/Nipigon','','7.31'),(5605,'/antarctic/?q=it/user/40/edit','default','America/Nome','','7.31'),(5606,'/antarctic/?q=it/user/40/edit','default','America/Noronha','','7.31'),(5607,'/antarctic/?q=it/user/40/edit','default','America/North Dakota/Beulah','','7.31'),(5608,'/antarctic/?q=it/user/40/edit','default','America/North Dakota/Center','','7.31'),(5609,'/antarctic/?q=it/user/40/edit','default','America/North Dakota/New Salem','','7.31'),(5610,'/antarctic/?q=it/user/40/edit','default','America/Ojinaga','','7.31'),(5611,'/antarctic/?q=it/user/40/edit','default','America/Panama','','7.31'),(5612,'/antarctic/?q=it/user/40/edit','default','America/Pangnirtung','','7.31'),(5613,'/antarctic/?q=it/user/40/edit','default','America/Paramaribo','','7.31'),(5614,'/antarctic/?q=it/user/40/edit','default','America/Phoenix','','7.31'),(5615,'/antarctic/?q=it/user/40/edit','default','America/Port-au-Prince','','7.31'),(5616,'/antarctic/?q=it/user/40/edit','default','America/Port of Spain','','7.31'),(5617,'/antarctic/?q=it/user/40/edit','default','America/Porto Velho','','7.31'),(5618,'/antarctic/?q=it/user/40/edit','default','America/Puerto Rico','','7.31'),(5619,'/antarctic/?q=it/user/40/edit','default','America/Rainy River','','7.31'),(5620,'/antarctic/?q=it/user/40/edit','default','America/Rankin Inlet','','7.31'),(5621,'/antarctic/?q=it/user/40/edit','default','America/Recife','','7.31'),(5622,'/antarctic/?q=it/user/40/edit','default','America/Regina','','7.31'),(5623,'/antarctic/?q=it/user/40/edit','default','America/Resolute','','7.31'),(5624,'/antarctic/?q=it/user/40/edit','default','America/Rio Branco','','7.31'),(5625,'/antarctic/?q=it/user/40/edit','default','America/Santa Isabel','','7.31'),(5626,'/antarctic/?q=it/user/40/edit','default','America/Santarem','','7.31'),(5627,'/antarctic/?q=it/user/40/edit','default','America/Santiago','','7.31'),(5628,'/antarctic/?q=it/user/40/edit','default','America/Santo Domingo','','7.31'),(5629,'/antarctic/?q=it/user/40/edit','default','America/Sao Paulo','','7.31'),(5630,'/antarctic/?q=it/user/40/edit','default','America/Scoresbysund','','7.31'),(5631,'/antarctic/?q=it/user/40/edit','default','America/Sitka','','7.31'),(5632,'/antarctic/?q=it/user/40/edit','default','America/St Barthelemy','','7.31'),(5633,'/antarctic/?q=it/user/40/edit','default','America/St Johns','','7.31'),(5634,'/antarctic/?q=it/user/40/edit','default','America/St Kitts','','7.31'),(5635,'/antarctic/?q=it/user/40/edit','default','America/St Lucia','','7.31'),(5636,'/antarctic/?q=it/user/40/edit','default','America/St Thomas','','7.31'),(5637,'/antarctic/?q=it/user/40/edit','default','America/St Vincent','','7.31'),(5638,'/antarctic/?q=it/user/40/edit','default','America/Swift Current','','7.31'),(5639,'/antarctic/?q=it/user/40/edit','default','America/Tegucigalpa','','7.31'),(5640,'/antarctic/?q=it/user/40/edit','default','America/Thule','','7.31'),(5641,'/antarctic/?q=it/user/40/edit','default','America/Thunder Bay','','7.31'),(5642,'/antarctic/?q=it/user/40/edit','default','America/Tijuana','','7.31'),(5643,'/antarctic/?q=it/user/40/edit','default','America/Toronto','','7.31'),(5644,'/antarctic/?q=it/user/40/edit','default','America/Tortola','','7.31'),(5645,'/antarctic/?q=it/user/40/edit','default','America/Vancouver','','7.31'),(5646,'/antarctic/?q=it/user/40/edit','default','America/Whitehorse','','7.31'),(5647,'/antarctic/?q=it/user/40/edit','default','America/Winnipeg','','7.31'),(5648,'/antarctic/?q=it/user/40/edit','default','America/Yakutat','','7.31'),(5649,'/antarctic/?q=it/user/40/edit','default','America/Yellowknife','','7.31'),(5650,'/antarctic/?q=it/user/40/edit','default','Antarctica/Casey','','7.31'),(5651,'/antarctic/?q=it/user/40/edit','default','Antarctica/Davis','','7.31'),(5652,'/antarctic/?q=it/user/40/edit','default','Antarctica/DumontDUrville','','7.31'),(5653,'/antarctic/?q=it/user/40/edit','default','Antarctica/Macquarie','','7.31'),(5654,'/antarctic/?q=it/user/40/edit','default','Antarctica/Mawson','','7.31'),(5655,'/antarctic/?q=it/user/40/edit','default','Antarctica/McMurdo','','7.31'),(5656,'/antarctic/?q=it/user/40/edit','default','Antarctica/Palmer','','7.31'),(5657,'/antarctic/?q=it/user/40/edit','default','Antarctica/Rothera','','7.31'),(5658,'/antarctic/?q=it/user/40/edit','default','Antarctica/Syowa','','7.31'),(5659,'/antarctic/?q=it/user/40/edit','default','Antarctica/Troll','','7.31'),(5660,'/antarctic/?q=it/user/40/edit','default','Antarctica/Vostok','','7.31'),(5661,'/antarctic/?q=it/user/40/edit','default','Arctic/Longyearbyen','','7.31'),(5662,'/antarctic/?q=it/user/40/edit','default','Asia/Aden','','7.31'),(5663,'/antarctic/?q=it/user/40/edit','default','Asia/Almaty','','7.31'),(5664,'/antarctic/?q=it/user/40/edit','default','Asia/Amman','','7.31'),(5665,'/antarctic/?q=it/user/40/edit','default','Asia/Anadyr','','7.31'),(5666,'/antarctic/?q=it/user/40/edit','default','Asia/Aqtau','','7.31'),(5667,'/antarctic/?q=it/user/40/edit','default','Asia/Aqtobe','','7.31'),(5668,'/antarctic/?q=it/user/40/edit','default','Asia/Ashgabat','','7.31'),(5669,'/antarctic/?q=it/user/40/edit','default','Asia/Baghdad','','7.31'),(5670,'/antarctic/?q=it/user/40/edit','default','Asia/Bahrain','','7.31'),(5671,'/antarctic/?q=it/user/40/edit','default','Asia/Baku','','7.31'),(5672,'/antarctic/?q=it/user/40/edit','default','Asia/Bangkok','','7.31'),(5673,'/antarctic/?q=it/user/40/edit','default','Asia/Beirut','','7.31'),(5674,'/antarctic/?q=it/user/40/edit','default','Asia/Bishkek','','7.31'),(5675,'/antarctic/?q=it/user/40/edit','default','Asia/Brunei','','7.31'),(5676,'/antarctic/?q=it/user/40/edit','default','Asia/Choibalsan','','7.31'),(5677,'/antarctic/?q=it/user/40/edit','default','Asia/Chongqing','','7.31'),(5678,'/antarctic/?q=it/user/40/edit','default','Asia/Colombo','','7.31'),(5679,'/antarctic/?q=it/user/40/edit','default','Asia/Damascus','','7.31'),(5680,'/antarctic/?q=it/user/40/edit','default','Asia/Dhaka','','7.31'),(5681,'/antarctic/?q=it/user/40/edit','default','Asia/Dili','','7.31'),(5682,'/antarctic/?q=it/user/40/edit','default','Asia/Dubai','','7.31'),(5683,'/antarctic/?q=it/user/40/edit','default','Asia/Dushanbe','','7.31'),(5684,'/antarctic/?q=it/user/40/edit','default','Asia/Gaza','','7.31'),(5685,'/antarctic/?q=it/user/40/edit','default','Asia/Harbin','','7.31'),(5686,'/antarctic/?q=it/user/40/edit','default','Asia/Hebron','','7.31'),(5687,'/antarctic/?q=it/user/40/edit','default','Asia/Ho Chi Minh','','7.31'),(5688,'/antarctic/?q=it/user/40/edit','default','Asia/Hong Kong','','7.31'),(5689,'/antarctic/?q=it/user/40/edit','default','Asia/Hovd','','7.31'),(5690,'/antarctic/?q=it/user/40/edit','default','Asia/Irkutsk','','7.31'),(5691,'/antarctic/?q=it/user/40/edit','default','Asia/Jakarta','','7.31'),(5692,'/antarctic/?q=it/user/40/edit','default','Asia/Jayapura','','7.31'),(5693,'/antarctic/?q=it/user/40/edit','default','Asia/Jerusalem','','7.31'),(5694,'/antarctic/?q=it/user/40/edit','default','Asia/Kabul','','7.31'),(5695,'/antarctic/?q=it/user/40/edit','default','Asia/Kamchatka','','7.31'),(5696,'/antarctic/?q=it/user/40/edit','default','Asia/Karachi','','7.31'),(5697,'/antarctic/?q=it/user/40/edit','default','Asia/Kashgar','','7.31'),(5698,'/antarctic/?q=it/user/40/edit','default','Asia/Kathmandu','','7.31'),(5699,'/antarctic/?q=it/user/40/edit','default','Asia/Khandyga','','7.31'),(5700,'/antarctic/?q=it/user/40/edit','default','Asia/Kolkata','','7.31'),(5701,'/antarctic/?q=it/user/40/edit','default','Asia/Krasnoyarsk','','7.31'),(5702,'/antarctic/?q=it/user/40/edit','default','Asia/Kuala Lumpur','','7.31'),(5703,'/antarctic/?q=it/user/40/edit','default','Asia/Kuching','','7.31'),(5704,'/antarctic/?q=it/user/40/edit','default','Asia/Kuwait','','7.31'),(5705,'/antarctic/?q=it/user/40/edit','default','Asia/Macau','','7.31'),(5706,'/antarctic/?q=it/user/40/edit','default','Asia/Magadan','','7.31'),(5707,'/antarctic/?q=it/user/40/edit','default','Asia/Makassar','','7.31'),(5708,'/antarctic/?q=it/user/40/edit','default','Asia/Manila','','7.31'),(5709,'/antarctic/?q=it/user/40/edit','default','Asia/Muscat','','7.31'),(5710,'/antarctic/?q=it/user/40/edit','default','Asia/Nicosia','','7.31'),(5711,'/antarctic/?q=it/user/40/edit','default','Asia/Novokuznetsk','','7.31'),(5712,'/antarctic/?q=it/user/40/edit','default','Asia/Novosibirsk','','7.31'),(5713,'/antarctic/?q=it/user/40/edit','default','Asia/Omsk','','7.31'),(5714,'/antarctic/?q=it/user/40/edit','default','Asia/Oral','','7.31'),(5715,'/antarctic/?q=it/user/40/edit','default','Asia/Phnom Penh','','7.31'),(5716,'/antarctic/?q=it/user/40/edit','default','Asia/Pontianak','','7.31'),(5717,'/antarctic/?q=it/user/40/edit','default','Asia/Pyongyang','','7.31'),(5718,'/antarctic/?q=it/user/40/edit','default','Asia/Qatar','','7.31'),(5719,'/antarctic/?q=it/user/40/edit','default','Asia/Qyzylorda','','7.31'),(5720,'/antarctic/?q=it/user/40/edit','default','Asia/Rangoon','','7.31'),(5721,'/antarctic/?q=it/user/40/edit','default','Asia/Riyadh','','7.31'),(5722,'/antarctic/?q=it/user/40/edit','default','Asia/Sakhalin','','7.31'),(5723,'/antarctic/?q=it/user/40/edit','default','Asia/Samarkand','','7.31'),(5724,'/antarctic/?q=it/user/40/edit','default','Asia/Seoul','','7.31'),(5725,'/antarctic/?q=it/user/40/edit','default','Asia/Shanghai','','7.31'),(5726,'/antarctic/?q=it/user/40/edit','default','Asia/Singapore','','7.31'),(5727,'/antarctic/?q=it/user/40/edit','default','Asia/Taipei','','7.31'),(5728,'/antarctic/?q=it/user/40/edit','default','Asia/Tashkent','','7.31'),(5729,'/antarctic/?q=it/user/40/edit','default','Asia/Tbilisi','','7.31'),(5730,'/antarctic/?q=it/user/40/edit','default','Asia/Tehran','','7.31'),(5731,'/antarctic/?q=it/user/40/edit','default','Asia/Thimphu','','7.31'),(5732,'/antarctic/?q=it/user/40/edit','default','Asia/Tokyo','','7.31'),(5733,'/antarctic/?q=it/user/40/edit','default','Asia/Ulaanbaatar','','7.31'),(5734,'/antarctic/?q=it/user/40/edit','default','Asia/Urumqi','','7.31'),(5735,'/antarctic/?q=it/user/40/edit','default','Asia/Ust-Nera','','7.31'),(5736,'/antarctic/?q=it/user/40/edit','default','Asia/Vientiane','','7.31'),(5737,'/antarctic/?q=it/user/40/edit','default','Asia/Vladivostok','','7.31'),(5738,'/antarctic/?q=it/user/40/edit','default','Asia/Yakutsk','','7.31'),(5739,'/antarctic/?q=it/user/40/edit','default','Asia/Yekaterinburg','','7.31'),(5740,'/antarctic/?q=it/user/40/edit','default','Asia/Yerevan','','7.31'),(5741,'/antarctic/?q=it/user/40/edit','default','Atlantic/Azores','','7.31'),(5742,'/antarctic/?q=it/user/40/edit','default','Atlantic/Bermuda','','7.31'),(5743,'/antarctic/?q=it/user/40/edit','default','Atlantic/Canary','','7.31'),(5744,'/antarctic/?q=it/user/40/edit','default','Atlantic/Cape Verde','','7.31'),(5745,'/antarctic/?q=it/user/40/edit','default','Atlantic/Faroe','','7.31'),(5746,'/antarctic/?q=it/user/40/edit','default','Atlantic/Madeira','','7.31'),(5747,'/antarctic/?q=it/user/40/edit','default','Atlantic/Reykjavik','','7.31'),(5748,'/antarctic/?q=it/user/40/edit','default','Atlantic/South Georgia','','7.31'),(5749,'/antarctic/?q=it/user/40/edit','default','Atlantic/St Helena','','7.31'),(5750,'/antarctic/?q=it/user/40/edit','default','Atlantic/Stanley','','7.31'),(5751,'/antarctic/?q=it/user/40/edit','default','Australia/Adelaide','','7.31'),(5752,'/antarctic/?q=it/user/40/edit','default','Australia/Brisbane','','7.31'),(5753,'/antarctic/?q=it/user/40/edit','default','Australia/Broken Hill','','7.31'),(5754,'/antarctic/?q=it/user/40/edit','default','Australia/Currie','','7.31'),(5755,'/antarctic/?q=it/user/40/edit','default','Australia/Darwin','','7.31'),(5756,'/antarctic/?q=it/user/40/edit','default','Australia/Eucla','','7.31'),(5757,'/antarctic/?q=it/user/40/edit','default','Australia/Hobart','','7.31'),(5758,'/antarctic/?q=it/user/40/edit','default','Australia/Lindeman','','7.31'),(5759,'/antarctic/?q=it/user/40/edit','default','Australia/Lord Howe','','7.31'),(5760,'/antarctic/?q=it/user/40/edit','default','Australia/Melbourne','','7.31'),(5761,'/antarctic/?q=it/user/40/edit','default','Australia/Perth','','7.31'),(5762,'/antarctic/?q=it/user/40/edit','default','Australia/Sydney','','7.31'),(5763,'/antarctic/?q=it/user/40/edit','default','Europe/Amsterdam','','7.31'),(5764,'/antarctic/?q=it/user/40/edit','default','Europe/Andorra','','7.31'),(5765,'/antarctic/?q=it/user/40/edit','default','Europe/Athens','','7.31'),(5766,'/antarctic/?q=it/user/40/edit','default','Europe/Belgrade','','7.31'),(5767,'/antarctic/?q=it/user/40/edit','default','Europe/Berlin','','7.31'),(5768,'/antarctic/?q=it/user/40/edit','default','Europe/Bratislava','','7.31'),(5769,'/antarctic/?q=it/user/40/edit','default','Europe/Brussels','','7.31'),(5770,'/antarctic/?q=it/user/40/edit','default','Europe/Bucharest','','7.31'),(5771,'/antarctic/?q=it/user/40/edit','default','Europe/Budapest','','7.31'),(5772,'/antarctic/?q=it/user/40/edit','default','Europe/Busingen','','7.31'),(5773,'/antarctic/?q=it/user/40/edit','default','Europe/Chisinau','','7.31'),(5774,'/antarctic/?q=it/user/40/edit','default','Europe/Copenhagen','','7.31'),(5775,'/antarctic/?q=it/user/40/edit','default','Europe/Dublin','','7.31'),(5776,'/antarctic/?q=it/user/40/edit','default','Europe/Gibraltar','','7.31'),(5777,'/antarctic/?q=it/user/40/edit','default','Europe/Guernsey','','7.31'),(5778,'/antarctic/?q=it/user/40/edit','default','Europe/Helsinki','','7.31'),(5779,'/antarctic/?q=it/user/40/edit','default','Europe/Isle of Man','','7.31'),(5780,'/antarctic/?q=it/user/40/edit','default','Europe/Istanbul','','7.31'),(5781,'/antarctic/?q=it/user/40/edit','default','Europe/Jersey','','7.31'),(5782,'/antarctic/?q=it/user/40/edit','default','Europe/Kaliningrad','','7.31'),(5783,'/antarctic/?q=it/user/40/edit','default','Europe/Kiev','','7.31'),(5784,'/antarctic/?q=it/user/40/edit','default','Europe/Lisbon','','7.31'),(5785,'/antarctic/?q=it/user/40/edit','default','Europe/Ljubljana','','7.31'),(5786,'/antarctic/?q=it/user/40/edit','default','Europe/London','','7.31'),(5787,'/antarctic/?q=it/user/40/edit','default','Europe/Luxembourg','','7.31'),(5788,'/antarctic/?q=it/user/40/edit','default','Europe/Madrid','','7.31'),(5789,'/antarctic/?q=it/user/40/edit','default','Europe/Malta','','7.31'),(5790,'/antarctic/?q=it/user/40/edit','default','Europe/Mariehamn','','7.31'),(5791,'/antarctic/?q=it/user/40/edit','default','Europe/Minsk','','7.31'),(5792,'/antarctic/?q=it/user/40/edit','default','Europe/Monaco','','7.31'),(5793,'/antarctic/?q=it/user/40/edit','default','Europe/Moscow','','7.31'),(5794,'/antarctic/?q=it/user/40/edit','default','Europe/Oslo','','7.31'),(5795,'/antarctic/?q=it/user/40/edit','default','Europe/Paris','','7.31'),(5796,'/antarctic/?q=it/user/40/edit','default','Europe/Podgorica','','7.31'),(5797,'/antarctic/?q=it/user/40/edit','default','Europe/Prague','','7.31'),(5798,'/antarctic/?q=it/user/40/edit','default','Europe/Riga','','7.31'),(5799,'/antarctic/?q=it/user/40/edit','default','Europe/Rome','','7.31'),(5800,'/antarctic/?q=it/user/40/edit','default','Europe/Samara','','7.31'),(5801,'/antarctic/?q=it/user/40/edit','default','Europe/San Marino','','7.31'),(5802,'/antarctic/?q=it/user/40/edit','default','Europe/Sarajevo','','7.31'),(5803,'/antarctic/?q=it/user/40/edit','default','Europe/Simferopol','','7.31'),(5804,'/antarctic/?q=it/user/40/edit','default','Europe/Skopje','','7.31'),(5805,'/antarctic/?q=it/user/40/edit','default','Europe/Sofia','','7.31'),(5806,'/antarctic/?q=it/user/40/edit','default','Europe/Stockholm','','7.31'),(5807,'/antarctic/?q=it/user/40/edit','default','Europe/Tallinn','','7.31'),(5808,'/antarctic/?q=it/user/40/edit','default','Europe/Tirane','','7.31'),(5809,'/antarctic/?q=it/user/40/edit','default','Europe/Uzhgorod','','7.31'),(5810,'/antarctic/?q=it/user/40/edit','default','Europe/Vaduz','','7.31'),(5811,'/antarctic/?q=it/user/40/edit','default','Europe/Vatican','','7.31'),(5812,'/antarctic/?q=it/user/40/edit','default','Europe/Vienna','','7.31'),(5813,'/antarctic/?q=it/user/40/edit','default','Europe/Vilnius','','7.31'),(5814,'/antarctic/?q=it/user/40/edit','default','Europe/Volgograd','','7.31'),(5815,'/antarctic/?q=it/user/40/edit','default','Europe/Warsaw','','7.31'),(5816,'/antarctic/?q=it/user/40/edit','default','Europe/Zagreb','','7.31'),(5817,'/antarctic/?q=it/user/40/edit','default','Europe/Zaporozhye','','7.31'),(5818,'/antarctic/?q=it/user/40/edit','default','Europe/Zurich','','7.31'),(5819,'/antarctic/?q=it/user/40/edit','default','Indian/Antananarivo','','7.31'),(5820,'/antarctic/?q=it/user/40/edit','default','Indian/Chagos','','7.31'),(5821,'/antarctic/?q=it/user/40/edit','default','Indian/Christmas','','7.31'),(5822,'/antarctic/?q=it/user/40/edit','default','Indian/Cocos','','7.31'),(5823,'/antarctic/?q=it/user/40/edit','default','Indian/Comoro','','7.31'),(5824,'/antarctic/?q=it/user/40/edit','default','Indian/Kerguelen','','7.31'),(5825,'/antarctic/?q=it/user/40/edit','default','Indian/Mahe','','7.31'),(5826,'/antarctic/?q=it/user/40/edit','default','Indian/Maldives','','7.31'),(5827,'/antarctic/?q=it/user/40/edit','default','Indian/Mauritius','','7.31'),(5828,'/antarctic/?q=it/user/40/edit','default','Indian/Mayotte','','7.31'),(5829,'/antarctic/?q=it/user/40/edit','default','Indian/Reunion','','7.31'),(5830,'/antarctic/?q=it/user/40/edit','default','Pacific/Apia','','7.31'),(5831,'/antarctic/?q=it/user/40/edit','default','Pacific/Auckland','','7.31'),(5832,'/antarctic/?q=it/user/40/edit','default','Pacific/Chatham','','7.31'),(5833,'/antarctic/?q=it/user/40/edit','default','Pacific/Chuuk','','7.31'),(5834,'/antarctic/?q=it/user/40/edit','default','Pacific/Easter','','7.31'),(5835,'/antarctic/?q=it/user/40/edit','default','Pacific/Efate','','7.31'),(5836,'/antarctic/?q=it/user/40/edit','default','Pacific/Enderbury','','7.31'),(5837,'/antarctic/?q=it/user/40/edit','default','Pacific/Fakaofo','','7.31'),(5838,'/antarctic/?q=it/user/40/edit','default','Pacific/Fiji','','7.31'),(5839,'/antarctic/?q=it/user/40/edit','default','Pacific/Funafuti','','7.31'),(5840,'/antarctic/?q=it/user/40/edit','default','Pacific/Galapagos','','7.31'),(5841,'/antarctic/?q=it/user/40/edit','default','Pacific/Gambier','','7.31'),(5842,'/antarctic/?q=it/user/40/edit','default','Pacific/Guadalcanal','','7.31'),(5843,'/antarctic/?q=it/user/40/edit','default','Pacific/Guam','','7.31'),(5844,'/antarctic/?q=it/user/40/edit','default','Pacific/Honolulu','','7.31'),(5845,'/antarctic/?q=it/user/40/edit','default','Pacific/Johnston','','7.31'),(5846,'/antarctic/?q=it/user/40/edit','default','Pacific/Kiritimati','','7.31'),(5847,'/antarctic/?q=it/user/40/edit','default','Pacific/Kosrae','','7.31'),(5848,'/antarctic/?q=it/user/40/edit','default','Pacific/Kwajalein','','7.31'),(5849,'/antarctic/?q=it/user/40/edit','default','Pacific/Majuro','','7.31'),(5850,'/antarctic/?q=it/user/40/edit','default','Pacific/Marquesas','','7.31'),(5851,'/antarctic/?q=it/user/40/edit','default','Pacific/Midway','','7.31'),(5852,'/antarctic/?q=it/user/40/edit','default','Pacific/Nauru','','7.31'),(5853,'/antarctic/?q=it/user/40/edit','default','Pacific/Niue','','7.31'),(5854,'/antarctic/?q=it/user/40/edit','default','Pacific/Norfolk','','7.31'),(5855,'/antarctic/?q=it/user/40/edit','default','Pacific/Noumea','','7.31'),(5856,'/antarctic/?q=it/user/40/edit','default','Pacific/Pago Pago','','7.31'),(5857,'/antarctic/?q=it/user/40/edit','default','Pacific/Palau','','7.31'),(5858,'/antarctic/?q=it/user/40/edit','default','Pacific/Pitcairn','','7.31'),(5859,'/antarctic/?q=it/user/40/edit','default','Pacific/Pohnpei','','7.31'),(5860,'/antarctic/?q=it/user/40/edit','default','Pacific/Port Moresby','','7.31'),(5861,'/antarctic/?q=it/user/40/edit','default','Pacific/Rarotonga','','7.31'),(5862,'/antarctic/?q=it/user/40/edit','default','Pacific/Saipan','','7.31'),(5863,'/antarctic/?q=it/user/40/edit','default','Pacific/Tahiti','','7.31'),(5864,'/antarctic/?q=it/user/40/edit','default','Pacific/Tarawa','','7.31'),(5865,'/antarctic/?q=it/user/40/edit','default','Pacific/Tongatapu','','7.31'),(5866,'/antarctic/?q=it/user/40/edit','default','Pacific/Wake','','7.31'),(5867,'/antarctic/?q=it/user/40/edit','default','Pacific/Wallis','','7.31'),(5868,'/antarctic/?q=it/user/40/edit','default','UTC','','7.31'),(5870,'','default','Blank','','7.59'),(5871,'','default','Small','','none'),(5872,'','default','Large','','7.59'),(5873,'','default','Separator','','none'),(5874,'','default','User settings','','7.34'),(5875,'','default','Address','','7.59'),(5876,'','default','Week','','7.59'),(5877,'','default','Argument','','none'),(5878,'','default','Latitude','','7.59'),(5879,'','default','Longitude','','7.59'),(5880,'','default','Google Maps API Key','','none'),(5881,'','default','Default height','','none'),(5882,'','default','Default width','','none'),(5883,'','default','Features','','7.59'),(5884,'','default','Disable mousezoom','','7.59'),(5885,'','default','Disable using the scroll wheel to zoom the map.','','7.59'),(5886,'','default','User locations','','7.59'),(5887,'','default','Macro','','none'),(5888,'','default','Node settings','','none'),(5889,'','default','Controls','','none'),(5890,'','default','Alignment','','none'),(5891,'','default','White','','7.59'),(5892,'','default','Gray','','7.59'),(5893,'','default','Purple','','7.59'),(5894,'','default','Pink','','7.59'),(5895,'','default','Green','','7.59'),(5896,'','default','Blue','','7.59'),(5897,'','default','Orange','','7.59'),(5898,'','default','Route','','7.59'),(5899,'','default','Do not use a relationship','','none'),(5900,'','default','Yellow','','7.59'),(5901,'','default','Data Source','','none'),(5902,'','default','Location.module','','none'),(5903,'','default','Choose latitude and longitude fields','','none'),(5904,'','default','Latitude field','','none'),(5905,'','default','Format must be degrees decimal.','','none'),(5906,'','default','Longitude field','','none'),(5907,'','default','Marker handling','','none'),(5908,'','default','By content type (for node views)','','none'),(5909,'','default','By term (for node views)','','none'),(5910,'','default','By user role (for user views)','','none'),(5911,'','default','Use marker field','','none'),(5912,'','default','Use single marker type','','none'),(5913,'','default','Marker field','','none'),(5914,'','default','You can use a views field to set the <em>markername</em> property of the markers.','','none'),(5915,'','default','Marker / fallback marker to use','','none'),(5916,'','default','Letters','','7.59'),(5917,'','default','Numbers','','7.59'),(5918,'','default','Cluster','','7.59'),(5919,'','default','File gmap_strings.inc successfully created.','','none'),(5920,'','default','Small Red','','7.59'),(5921,'','default','Small Bright red','','7.59'),(5922,'','default','Small Orange','','7.59'),(5923,'','default','Small Pale Yellow','','7.59'),(5924,'','default','Small Yellow','','7.59'),(5925,'','default','Small Pale Green','','7.59'),(5926,'','default','Small Green','','7.59'),(5927,'','default','Small Dark Green','','7.59'),(5928,'','default','Small Flouro Green','','7.59'),(5929,'','default','Small Pale Blue','','7.59'),(5930,'','default','Small Light Blue','','7.59'),(5931,'','default','Small Blue','','7.59'),(5932,'','default','Small Dark Blue','','7.59'),(5933,'','default','Small Purple','','7.59'),(5934,'','default','Small Pink','','7.59'),(5935,'','default','Small Bright Pink','','7.59'),(5936,'','default','Small Brown','','7.59'),(5937,'','default','Small White','','7.59'),(5938,'','default','Small Light Gray','','7.59'),(5939,'','default','Small Gray','','7.59'),(5940,'','default','Small Black','','7.59'),(5941,'','default','Small Blue (Alternate)','','7.59'),(5942,'','default','Small Red (Alternate)','','7.59'),(5943,'','default','Big Blue','','7.59'),(5944,'','default','Big Red','','7.59'),(5945,'','default','X marks the spot','','7.59'),(5946,'','default','Line Vertex','','7.59'),(5947,'','default','Light Blue','','7.59'),(5948,'','default','GMap views are not compatible with live preview.','','none'),(5949,'','default','Center on node argument','','none'),(5950,'','default','Note: The view must contain an argument whose value is a node ID.','','none'),(5951,'','default','The view must contain \'Node: nid\' as one of its fields because the view type is not \'Node\'.','','none'),(5952,'','default','The value of the selected argument must be a number that matches a node ID.  Use the \'Global: Null\' argument if you don\'t want to also restrict results to that node ID.  You must have added arguments to the view to use this option.','','none'),(5953,'','default','The selected argument must be a number that matches a node ID.  Use the \'Global: Null\' argument if you don\'t want to also restrict results to that node ID.','','none'),(5954,'','default','Highlight marker for node argument','','none'),(5955,'','default','The value of the selected argument must be a number that matches a node ID.  Use the \'Global: Null\' argument if you don\'t want to also restrict results to that node ID.','','none'),(5956,'','default','Highlight color','','none'),(5957,'','default','A 6 digit hex color value to use for the highlight. Include preceding hash. Example #FF0000','','none'),(5958,'','default','Is','','none'),(5959,'','default','Country','','7.59'),(5960,'','default','Main settings','','7.34'),(5961,'','default','Is not','','none'),(5962,'','default','Phone','','none'),(5963,'','default','Fax','','none'),(5964,'','default','Allow','','7.34'),(5965,'','default','Location name','','7.34'),(5966,'','default','e.g. a place of business, venue, meeting point','','7.34'),(5967,'','default','Street','','7.59'),(5968,'','default','Additional','','7.59'),(5969,'','default','City','','7.59'),(5970,'','default','Postal code','','7.34'),(5971,'','default','NOT LISTED','','7.34'),(5972,'','default','State/Province','','7.34'),(5973,'','default','Map links','','7.34'),(5974,'','default','Geocoding options','','7.34'),(5975,'','default','Settings for Location module','','7.59'),(5976,'','default','The location module allows you to associate a geographic location with content and users. Users can do proximity searches by postal code.  This is useful for organizing communities that have a geographic presence.','','none'),(5977,'','default','To administer locative information for content, use the content type administration page.  To support most location enabled features, you will need to install the country specific include file.  To support postal code proximity searches for a particular country, you will need a database dump of postal code data for that country.  As of June 2007 only U.S. and German postal codes are supported.','','none'),(5978,'','default','km','','none'),(5979,'','default','None supported.','','none'),(5980,'','default','Street location','','7.34'),(5981,'','default','Configure parameters for %service geocoding','','none'),(5982,'','default','No configuration parameters are necessary, or a form to take such paramters has not been implemented.','','none'),(5983,'','default','No service selected for country.','','none'),(5984,'','default','Configure parameters','','none'),(5985,'','default','No configuration necessary for selected service.','','none'),(5986,'','default','Locative information','','7.34'),(5987,'','default','Number of locations','','7.34'),(5988,'','default','Collapsible','','7.34'),(5989,'','default','Make the location box collapsible.','','7.34'),(5990,'','default','Collapsed','','7.34'),(5991,'','default','Display the location box collapsed.','','7.34'),(5992,'','default','Add another location from node view page','','none'),(5993,'','default','Display the \"Add another location\" option on the node view page.','','none'),(5994,'','default','Location #%number','','7.34'),(5995,'','default','Add another location','','none'),(5996,'','default','Add location','','none'),(5997,'','default','Default country selection','','none'),(5998,'','default','This will be the country that is automatically selected when a location form is served for a new location.','','none'),(5999,'','default','Toggle location display','','none'),(6000,'','default','Disable the display of locations.','','none'),(6001,'','default','Enable the display of locations.','','none'),(6002,'','default','If you are interested in turning off locations and having a custom theme control their display, you may want to disable the display of locations so your theme can take that function.','','none'),(6003,'','default','Use a Google Map to set latitude and longitude ','','none'),(6004,'','default','Coordinates','','7.59'),(6005,'','default','Locations','','none'),(6006,'','default','Fax number','','none'),(6007,'','default','Location Fax','','none'),(6008,'','default','Phone number','','none'),(6009,'','default','Location Phone','','none'),(6010,'','default','Geocoder API Key','','none'),(6011,'','default','Yahoo! Web Services Application ID','','none'),(6012,'','default','Virgin Islands','','none'),(6013,'','default','Units','','none'),(6014,'','default','Search options','','none'),(6015,'','default','Federated States of Micronesia','','none'),(6016,'','default','Province','','7.59'),(6017,'','default','Display style','','none'),(6018,'','default','Unknown location','','none'),(6019,'','default','Select','','7.34'),(6020,'','default','Alabama','','none'),(6021,'','default','Alaska','','none'),(6022,'','default','Arizona','','none'),(6023,'','default','Arkansas','','none'),(6024,'','default','California','','none'),(6025,'','default','Colorado','','none'),(6026,'','default','Connecticut','','none'),(6027,'','default','Delaware','','none'),(6028,'','default','Florida','','none'),(6029,'','default','Hawaii','','none'),(6030,'','default','Idaho','','none'),(6031,'','default','Illinois','','none'),(6032,'','default','Indiana','','none'),(6033,'','default','Iowa','','none'),(6034,'','default','Kansas','','none'),(6035,'','default','Kentucky','','none'),(6036,'','default','Louisiana','','none'),(6037,'','default','Maine','','none'),(6038,'','default','Maryland','','none'),(6039,'','default','Massachusetts','','none'),(6040,'','default','Michigan','','none'),(6041,'','default','Minnesota','','none'),(6042,'','default','Mississippi','','none'),(6043,'','default','Missouri','','none'),(6044,'','default','Montana','','none'),(6045,'','default','Nebraska','','none'),(6046,'','default','Nevada','','none'),(6047,'','default','New Hampshire','','none'),(6048,'','default','New Jersey','','none'),(6049,'','default','New Mexico','','none'),(6050,'','default','New York','','none'),(6051,'','default','North Carolina','','none'),(6052,'','default','North Dakota','','none'),(6053,'','default','Ohio','','none'),(6054,'','default','Oklahoma','','none'),(6055,'','default','Oregon','','none'),(6056,'','default','Pennsylvania','','none'),(6057,'','default','Rhode Island','','none'),(6058,'','default','South Carolina','','none'),(6059,'','default','South Dakota','','none'),(6060,'','default','Tennessee','','none'),(6061,'','default','Texas','','none'),(6062,'','default','Utah','','none'),(6063,'','default','Vermont','','none'),(6064,'','default','Virginia','','none'),(6065,'','default','Washington','','none'),(6066,'','default','West Virginia','','none'),(6067,'','default','Wisconsin','','none'),(6068,'','default','Wyoming','','none'),(6069,'','default','Collect','','7.34'),(6070,'','default','Distance','','none'),(6071,'','default','Postal Code','','7.59'),(6072,'','default','Location Search','','none'),(6073,'','default','Miles','','none'),(6074,'','default','Country code','','none'),(6075,'','default','Selection type','','none'),(6076,'','default','Require','','7.34'),(6077,'','default','Maximum number of locations','','7.34'),(6078,'','default','District Of Columbia','','none'),(6079,'','default','Autocomplete','','none'),(6080,'','default','If the gmap.module is installed and <a href=\"@enabled\">enabled</a>, and this setting is also turned on, users that are allowed to manually enter latitude/longitude coordinates will be able to do so with an interactive Google Map.  You should also make sure you have entered a <a href=\"@google_maps_api_key\">Google Maps API key</a> into your <a href=\"@gmap_module_settings\">gmap module settings</a>.','','none'),(6081,'','default','Location chooser macro','','none'),(6082,'','default','If you would like to change the macro used to generate the location chooser map, you can do so here. Note: Behaviors <em>locpick</em> and <em>collapsehack</em> are forced to be enabled and cannot be changed.','','none'),(6083,'','default','Enable JIT geocoding','','none'),(6084,'','default','If you are going to be importing locations in bulk directly into the database, you may wish to enable JIT geocoding and load the locations with source set to 4 (LOCATION_LATLON_JIT_GEOCODING). The system will automatically geocode locations as they are loaded.','','none'),(6085,'','default','BUG: Country found in province attribute.','','none'),(6086,'','default','Location Name (If there are multiple locations per node, N is the iteration, starting with 0)','','none'),(6087,'','default','Street (If there are multiple locations per node, N is the iteration, starting with 0)','','none'),(6088,'','default','Additional (If there are multiple locations per node, N is the iteration, starting with 0)','','none'),(6089,'','default','City (If there are multiple locations per node, N is the iteration, starting with 0)','','none'),(6090,'','default','State/Province (If there are multiple locations per node, N is the iteration, starting with 0)','','none'),(6091,'','default','State/Province Name (If there are multiple locations per node, N is the iteration, starting with 0)','','none'),(6092,'','default','Postal Code (If there are multiple locations per node, N is the iteration, starting with 0)','','none'),(6093,'','default','Latitude (If there are multiple locations per node, N is the iteration, starting with 0)','','none'),(6094,'','default','Longitude (If there are multiple locations per node, N is the iteration, starting with 0)','','none'),(6095,'','default','Country (If there are multiple locations per node, N is the iteration, starting with 0)','','none'),(6096,'','default','Country Name (If there are multiple locations per node, N is the iteration, starting with 0)','','none'),(6097,'','default','Locations are addresses and map coordinates.','','7.59'),(6098,'','default','Lid','','7.59'),(6099,'','default','The location ID of the location.','','7.59'),(6100,'','default','The name of the selected location.','','7.59'),(6101,'','default','The street address of the selected location.','','7.59'),(6102,'','default','The city of the selected location.','','7.59'),(6103,'','default','The province of the selected location.','','7.59'),(6104,'','default','The postal code of the selected location.','','7.59'),(6105,'','default','The country of the selected location.','','7.59'),(6106,'','default','The latitude of the selected location.','','7.59'),(6107,'','default','The longitude of the selected location.','','7.59'),(6108,'','default','The coordinates of the selected location in \'lat, long\' format.','','7.59'),(6109,'','default','Distance / Proximity','','7.59'),(6110,'','default','The distance from the selected location and either the current user or a specific location.','','7.59'),(6111,'','default','The entire address block for the location.','','7.59'),(6112,'','default','Current coordinates','','none'),(6113,'','default','User-submitted','','none'),(6114,'','default','Geocoded (Postal code level)','','none'),(6115,'','default','Geocoded (Exact)','','none'),(6116,'','default','If you wish to supply your own latitude and longitude, you may enter them above.  If you leave these fields blank, the system will attempt to determine a latitude and longitude for you from the entered address.  To have the system recalculate your location from the address, for example if you change the address, delete the values for these fields.','','7.34'),(6117,'','default','You may set the location by clicking on the map, or dragging the location marker.  To clear the location and cause it to be recalculated, click on the marker.','','7.34'),(6118,'','default','Check this box to delete this location.','','none'),(6119,'','default','Location Fields','','7.34'),(6120,'','default','Do not collect','','7.34'),(6121,'','default','Force Default','','7.34'),(6122,'','default','Coordinate Chooser','','7.34'),(6123,'','default','Province name','','7.34'),(6124,'','default','Country name','','7.34'),(6125,'','default','Map link','','7.34'),(6126,'','default','The specified province was not found in the specified country.','','none'),(6127,'','default','You must fill out both latitude and longitude or you must leave them both blank.','','none'),(6128,'','default','Deleting unreferenced location with LID %lid.','','none'),(6129,'','default','Minimum number of locations','','7.34'),(6130,'','default','The number of locations that are required to be filled in.','','7.34'),(6131,'','default','The maximum number of locations that can be associated.','','7.34'),(6132,'','default','Number of locations that can be added at once','','7.34'),(6133,'','default','The number of empty location forms to show when editing.','','7.34'),(6134,'','default','Collection settings','','7.34'),(6135,'','default','Location form weight','','7.34'),(6136,'','default','Weight of the location box in the add / edit form. Lower values will be displayed higher in the form.','','7.34'),(6137,'','default','Display Weight','','7.34'),(6138,'','default','Hide fields from display','','7.34'),(6139,'','default','location','','7.34'),(6140,'','default','Conserving lid %lid due to uniqueness.','','none'),(6141,'','default','Display location in teaser view','','7.34'),(6142,'','default','Display location in full view','','7.34'),(6143,'','default','RSS Settings','','7.34'),(6144,'','default','Here, you can change how locative data affects RSS feeds on nodes.','','7.34'),(6145,'','default','RSS mode','','7.34'),(6146,'','default','Select how to use locations in RSS feeds for this content type.','','7.34'),(6147,'','default','None (Do not put locational data in RSS feeds)','','7.34'),(6148,'','default','W3C Geo (deprecated)','','7.34'),(6149,'','default','Location 1.x-2.x compatible (buggy W3C)','','7.34'),(6150,'','default','GeoRSS-Simple','','7.34'),(6151,'','default','GeoRSS GML','','7.34'),(6152,'','default','You must have at least one empty location form enabled if you are going to allow locations to be submitted for nodes of this content type. If you don\'t intend to allow locations to be submitted for nodes of this content type, set the maximum number of locations allowed for this content type to 0.','','none'),(6153,'','default','You can\'t show more empty location forms than the maximum number of locations allowed for this content type.','','none'),(6154,'','default','Collect during registration','','none'),(6155,'','default','administer user locations','','none'),(6156,'','default','set own user location','','none'),(6157,'','default','view own user location','','none'),(6158,'','default','view all user locations','','none'),(6159,'','default','Note: A location with lid 0 was found in your database. It has been moved to lid %lid. You may wish to verify it manually, as lid 0 is usually a corrupt entry.','','none'),(6160,'','default','Note: Refusing to enable location_user.module, as location.module is not currently enabled.','','none'),(6161,'','default','Note: Refusing to enable location_node.module, as location.module is not currently enabled.','','none'),(6162,'','default','Note: Location.module update 6301 will generate several warnings/failures regarding indexes and primary keys if you are upgrading from one of the 6.x test releases. These warnings can be safely disregarded in this case.','','none'),(6163,'','default','Node Locations','','none'),(6164,'','default','Associate locations with nodes.','','none'),(6165,'','default','User Locations','','none'),(6166,'','default','Associate locations with users.','','none'),(6167,'','default','You don\'t have permission to add a location to this node, or the node has the maximum number of locations already.','','none'),(6168,'','default','Location Add Another','','none'),(6169,'','default','Allows you to quickly add locations directly from a node without having to click \'edit\' first.','','none'),(6170,'','default','Store a location.module location.','','7.59'),(6171,'','default','Location Field','','7.59'),(6172,'','default','Location CCK','','none'),(6173,'','default','Defines a Location field type.','','none'),(6174,'','default','Location Fax number (If there are multiple locations per node, N is the iteration, starting with 0)','','none'),(6175,'','default','Allows you to add a fax number to a location.','','none'),(6176,'','default','Add locations to each node.','','none'),(6177,'','default','Added by location_generate.module','','none'),(6178,'','default','Location Generate','','none'),(6179,'','default','Bulk assign random latitude and longitudes to nodes.','','none'),(6180,'','default','Location Phone number (If there are multiple locations per node, N is the iteration, starting with 0)','','none'),(6181,'','default','Allows you to add a phone number to a location.','','none'),(6182,'','default','Use map to pick search coordinates','','none'),(6183,'','default','Add geocoding address field to search map','','none'),(6184,'','default','Macro for search map','','none'),(6185,'','default','Proximity','','none'),(6186,'','default','Locate Address','','none'),(6187,'','default','mi','','none'),(6188,'','default','Settings for Location Search module','','none'),(6189,'','default','Advanced search page for locations.','','none'),(6190,'','default','Kilometers','','none'),(6191,'','default','Origin','','none'),(6192,'','default','Use Distance / Proximity filter','','none'),(6193,'','default','Province code','','none'),(6194,'','default','Both street and additional','','none'),(6195,'','default','Street only','','none'),(6196,'','default','Additional only','','none'),(6197,'','default','Decimal degrees','','none'),(6198,'','default','Degrees, minutes, seconds','','none'),(6199,'','default','Proximity (Rectangular)','','none'),(6200,'','default','Proximity (Circular)','','none'),(6201,'','default','Postal Code / Country','','none'),(6202,'','default','Postal Code (assume default country)','','none'),(6203,'','default','Meters','','none'),(6204,'','default','Node location','','none'),(6205,'','default','Allow multiple terms per argument.','','none'),(6206,'','default','Dropdown','','none'),(6207,'','default','GMap Macro','','none'),(6208,'','default','Province display','','none'),(6209,'','default','Display full province name.','','none'),(6210,'','default','Display province/state code.','','none'),(6211,'','default','Open map link in new window','','none'),(6212,'','default','Select this if you want the map link to open in a separate window','','none'),(6213,'','default','Open in new window method','','none'),(6214,'','default','If you have selected to open map in a new window this controls the method used to open in a new window.  target=\"_blank\" will just work but is not XTHML Strict compliant.  rel=\"external\" is XHTML Strict compliant but will not open in a new window unless you add some jQuery to your site to add the target attribute. If you are unsure leave set to target=\"_blank\"','','none'),(6215,'','default','Google Maps geocoding minimum accuracy','','none'),(6216,'','default','The Google Maps geocoding API returns results with a given accuracy. Any responses below this minimum accuracy will be ignored. See a !accuracy_values_link.','','none'),(6217,'','default','Clear province cache','','none'),(6218,'','default','If you have modified location.xx.inc files, you will need to clear the province cache to get Location to recognize the modifications.','','none'),(6219,'','default','Clear supported country list','','none'),(6220,'','default','If you have added support for a new country, you will need to clear the supported country list to get Location to recognize the modifications.','','none'),(6221,'','default','Location province cache cleared.','','none'),(6222,'','default','Location supported country list cleared.','','none'),(6223,'','default','Country level accuracy','','none'),(6224,'','default','Region (state, province, prefecture, etc.) level accuracy','','none'),(6225,'','default','Sub-region (county, municipality, etc.) level accuracy','','none'),(6226,'','default','Town (city, village) level accuracy','','none'),(6227,'','default','Post code (zip code) level accuracy','','none'),(6228,'','default','Street level accuracy','','none'),(6229,'','default','Intersection level accuracy','','none'),(6230,'','default','Address level accuracy','','none'),(6231,'','default','Premise (building name, property name, shopping center, etc.) level accuracy','','none'),(6232,'','default','Location utilities','','7.34'),(6233,'','default','Node Locations module form.','','none'),(6234,'','default','User location','','none'),(6235,'','default','Note: The \'Form type\' option for the \'Location: Distance / Proximity\' filter in views has been changed and is now the \'Origin\' option.  The following views were using that setting and have been updated to use the new setting: %views.','','none'),(6236,'','default','A macro to be used as a base map for this field.  This map will be recentered on the location, so the center is not that important.','','none'),(6237,'','default','GMap marker','','none'),(6238,'','default','Default (address)','','7.59'),(6239,'','default','Address with map','','7.59'),(6240,'','default','Map only','','7.59'),(6241,'','default','Multiple field values on a single map','','7.59'),(6242,'','default','CCK location','','none'),(6243,'','default','The fax number of the selected location.','','none'),(6244,'','default','The phone number of the selected location.','','none'),(6245,'','default','Term location','','none'),(6246,'','default','Taxonomy location','','none'),(6247,'','default','Location Taxonomy','','none'),(6248,'','default','Associate locations with taxonomy terms.','','none'),(6249,'','default','Google Maps Geocoding Accuracy for %country','','none'),(6250,'','default','The minimum required accuracy for the geolocation data to be saved.','','none'),(6251,'','default','Coordinate Type','','none'),(6252,'','default','Postal Code (Zipcode)','','none'),(6253,'','default','Decimal Latitude and Longitude coordinates, comma delimited','','none'),(6254,'','default','Type of center point.','','none'),(6255,'','default','Postal code argument format: country_postcode_distance or postcode_distance','','none'),(6256,'','default','Lat/Lon argument format: lat,lon_distance','','none'),(6257,'','default','Distance unit','','none'),(6258,'','default','Select the unit of distance. Decimal degrees should be comma delimited.','','none'),(6259,'','default','Circular Proximity','','none'),(6260,'','default','Rectangular Proximity','','none'),(6261,'','default','User\'s Latitude / Longitude (blank if unset)','','none'),(6262,'','default','User\'s Latitude / Longitude (fall back to static if unset)','','none'),(6263,'','default','Static  Latitude / Longitude','','none'),(6264,'','default','Use PHP code to determine latitude/longitude','','none'),(6265,'','default','Node\'s Latitude / Longitude from views nid argument','','none'),(6266,'','default','User\'s Latitude / Longitude from views uid argument','','none'),(6267,'','default','This will be the way the latitude/longitude of origin is determined. When using the user\'s latitude / longitude, if a user has multiple locations the first will be used.','','none'),(6268,'','default','PHP code for latitude, longitude','','none'),(6269,'','default','Enter PHP code that returns a latitude/longitude.  Do not use &lt;?php ?&gt;. You must return only an array with float values set for the \'latitude\' and \'longitude\' keys.','','none'),(6270,'','default','Node ID argument to use','','none'),(6271,'','default','Select which of the view\'s arguments to use as the node ID.  The latitude / longitude of the first location of that node will be used as the origin. Use the \'Global: Null\' argument if you don\'t want to also restrict results to that node ID. You must have added arguments to the view to use this option.','','none'),(6272,'','default','Select which of the view\'s arguments to use as the node ID.  The latitude / longitude of the first location of that node will be used as the origin. Use the \'Global: Null\' argument if you don\'t want to also restrict results to that node ID.','','none'),(6273,'','default','Location to use','','none'),(6274,'','default','Select which of the node\'s locations to use as the origin.  Either the node locations or a CCK location field.  If the location supports multiple entries the first one will be used.','','none'),(6275,'','default','User ID argument to use','','none'),(6276,'','default','Select which of the view\'s arguments to use as the user ID.  The latitude / longitude of the first location of that user will be used as the origin. Use the \'Global: Null\' argument if you don\'t want to also restrict results to that user ID. You must have added arguments to the view to use this option.','','none'),(6277,'','default','Select which of the view\'s arguments to use as the user ID.  The latitude / longitude of the first location of that user will be used as the origin. Use the \'Global: Null\' argument if you don\'t want to also restrict results to that user ID.','','none'),(6278,'','default','GMap macro','','none'),(6279,'','default','The macro to use for the Latitude / Longitude map, if applicable.','','none'),(6280,'','default','Allow choice of user location','','none'),(6281,'','default','If checked and using a user location origin, the user will be able to choose which of their locations to use.  Otherwise their first location will be used.','','none'),(6282,'','default','Latitude / Longitude input (use map)','','none'),(6283,'','default','Gmap location selection is not available during live preview.','','none'),(6284,'','default','Location #@num','','none'),(6285,'','default','Select which of your locations to use.','','none'),(6286,'','default','State/Province name','','none'),(6287,'','default','Unknown location keyword','','none'),(6288,'','default','Creates a location context from a node.','','none'),(6289,'','default','Use location directly saved in the node for this relationship','','none'),(6290,'','default','Node location offset','','none'),(6291,'','default','If the nodes that will be used for this relationship have multiple locations, select which location you want to use.','','none'),(6292,'','default','Location CCK field to use for this relationship','','none'),(6293,'','default','Location CCK field offset','','none'),(6294,'','default','Use location CCK fields for this relationship','','none'),(6295,'','default','Location type','','none'),(6296,'','default','On','','none'),(6297,'','default','Views','','7.34'),(6298,'','default','style','','none'),(6299,'','default','Square','','none'),(6300,'','default','Save and edit','','none'),(6301,'','default','Threshold','','none'),(6302,'','default','Style','','none'),(6303,'','default','Storage','','none'),(6304,'','default','Base URL','','none'),(6305,'','default','Exceptions','','none'),(6306,'','default','Transparent','','none'),(6307,'','default','Raw','','none'),(6308,'','default','Fullscreen','','none'),(6309,'','default','Round','','none'),(6310,'','default','Displays','','none'),(6311,'','default','Styles','','none'),(6312,'node:type:openlayers_example_content:name','node','OpenLayers Example Content','type:openlayers_example_content:name','1'),(6313,'node:type:openlayers_example_content:title_label','node','Title','type:openlayers_example_content:title_label','1'),(6314,'node:type:openlayers_example_content:description','node','This is an example content type for the OpenLayers module.','type:openlayers_example_content:description','1'),(6315,'','default','General settings','','none'),(6316,'','default','Manage','','7.34'),(6317,'','default','Components','','none'),(6318,'','default',' in ','','none'),(6319,'','default','Check','','none'),(6320,'','default','State','','none'),(6321,'','default','Cleanup','','none'),(6322,'','default','Other','','7.34'),(6323,'','default','Select all','','none'),(6324,'','default','Filters','','none'),(6325,'','default','Clear','','none'),(6326,'','default','Feature','','none'),(6327,'','default','Missing','','none'),(6328,'','default','Manage features','','none'),(6329,'','default','Conflict','','none'),(6330,'','default','Advanced Options','','none'),(6331,'','default','Overrides','','none'),(6332,'','default','Unavailable','','none'),(6333,'','default','Package','','none'),(6334,'','default','Rebuilding','','none'),(6335,'','default','The URL %url is invalid. Please enter a fully-qualified URL, such as http://www.example.com/feed.xml.','','none'),(6336,'','default','Menu items','','7.59'),(6337,'','default','Menu links','','7.59'),(6338,'','default','Unmet dependencies: !dependencies','','none'),(6339,'','default','Checking...','','none'),(6340,'','default','No changes have been made to this feature.','','none'),(6341,'','default','Download feature','','none'),(6342,'','default','Enable and disable features.','','7.34'),(6343,'','default','Display components of a feature.','','none'),(6344,'','default','Compare default and current feature.','','none'),(6345,'','default','Menu items for any enabled features.','','none'),(6346,'','default','Provides feature management for Drupal.','','none'),(6347,'','default','Dependency','','none'),(6348,'','default','No features available.','','none'),(6349,'','default','Example: Image gallery','','none'),(6350,'','default','Example: image_gallery','','none'),(6351,'','default','May only contain lowercase letters, numbers and underscores. <strong>Try to avoid conflicts with the names of existing Drupal projects.</strong>','','none'),(6352,'','default','Provide a short description of what users should expect when they enable your feature.','','none'),(6353,'','default','URL of update XML','','none'),(6354,'','default','features','','7.34'),(6355,'','default','Create feature','','7.34'),(6356,'','default','Create a new feature.','','7.34'),(6357,'','default','Auto-detected','','none'),(6358,'','default','Provided by dependency','','none'),(6359,'','default','Recreate','','none'),(6360,'','default','Revert components','','none'),(6361,'','default','Mark as reviewed','','none'),(6362,'','default','@actioning @module_name / @component.','','none'),(6363,'','default','@action completed for @module_name / @component.','','none'),(6364,'','default','Manage features.','','7.34'),(6365,'','default','Recreate an existing feature.','','none'),(6366,'','default','Review overrides','','none'),(6367,'','default','Needs review','','none'),(6368,'','default','Required by: !dependents','','none'),(6369,'','default','Conflicts with: !conflicts','','none'),(6370,'','default','@module does not appear to include the @include file.','','none'),(6371,'','default','The file @filename has been deprecated and can be removed.','','none'),(6372,'','default','Conflicts with another feature','','none'),(6373,'','default','Administer features','','none'),(6374,'','default','Perform administration tasks on features.','','none'),(6375,'','default','View, enable and disable features.','','none'),(6376,'','default','Examples: 7.x-1.0, 7.x-1.0-beta1','','none'),(6377,'','default','Create Feature','','none'),(6378,'sites/all/modules/geofield/includes/behaviors/js/openlayers_behavior_geofield.js','default','Feature Layer','','none'),(6379,'sites/all/modules/openlayers/modules/openlayers_ui/js/openlayers_ui.admin.js','default','Error making request to server.','','none'),(6384,'sites/all/modules/openlayers/modules/openlayers_ui/js/openlayers_ui.styles.js','default','MapQuest-OSM Tiles','','none'),(6385,'','default','--','','none'),(6386,'','default','Company','','none'),(6387,'','default','First name','','none'),(6388,'','default','Last name','','none'),(6389,'','default','Full name','','none'),(6390,'','default','Address Field','','none'),(6391,'','default','County','','none'),(6392,'','default','Alberta','','none'),(6393,'','default','British Columbia','','none'),(6394,'','default','Manitoba','','none'),(6395,'','default','New Brunswick','','none'),(6396,'','default','Northwest Territories','','none'),(6397,'','default','Nova Scotia','','none'),(6398,'','default','Nunavut','','none'),(6399,'','default','Ontario','','none'),(6400,'','default','Prince Edward Island','','none'),(6401,'','default','Quebec','','none'),(6402,'','default','Saskatchewan','','none'),(6403,'','default','Yukon Territory','','none'),(6404,'','default','Postal address','','7.59'),(6405,'','default','ZIP Code','','none'),(6406,'','default','Distrito Federal','','none'),(6407,'','default','Acre','','none'),(6408,'','default','Alagoas','','none'),(6409,'','default','Amazonas','','none'),(6410,'','default','Bahia','','none'),(6411,'','default','Minas Gerais','','none'),(6412,'','default','Mato Grosso do Sul','','none'),(6413,'','default','Mato Grosso','','none'),(6414,'','default','Pernambuco','','none'),(6415,'','default','Rio de Janeiro','','none'),(6416,'','default','Rio Grande do Norte','','none'),(6417,'','default','Roraima','','none'),(6418,'','default','Rio Grande do Sul','','none'),(6419,'','default','Santa Catarina','','none'),(6420,'','default','Sergipe','','none'),(6421,'','default','Tocantins','','none'),(6422,'','default','Address 2','','none'),(6423,'','default','Address 1','','none'),(6424,'','default','Complement','','none'),(6425,'','default','Dependent locality','','none'),(6426,'','default','A field type used for storing postal addresses according the xNAL standard.','','7.59'),(6427,'','default','Dynamic address form','','7.59'),(6428,'','default','Available countries','','none'),(6429,'','default','If no countries are selected, all countries will be available.','','none'),(6430,'','default','Manage a flexible address field, implementing the xNAL standard.','','none'),(6431,'','default','Administrative area (i.e. State / Province)','','none'),(6432,'','default','Sub administrative area','','none'),(6433,'','default','Locality (i.e. City)','','none'),(6434,'','default','Thoroughfare (i.e. Street address)','','none'),(6435,'','default','Premise (i.e. Apartment / Suite number)','','none'),(6436,'','default','!label of field %name','','7.59'),(6437,'','default','Neighborhood','','none'),(6438,'','default','Format handlers','','none'),(6439,'','default','Use widget configuration','','none'),(6440,'','default','No handler','','none'),(6441,'','default','Address form (country-specific)','','none'),(6442,'','default','Name (First name, Last name)','','none'),(6443,'','default','Name (single line)','','none'),(6444,'','default','Organisation (single line)','','none'),(6445,'','default','Address Field Example','','none'),(6446,'','default','Example module for how to implement an addressfield format handler.','','none'),(6447,'','default','Address form (CH add-on)','','none'),(6448,'/?q=admin/structure/views/view/map/edit/page_1&render=overlay&render=overlay','default','OpenLayers Data Overlay','','7.31'),(6449,'node:type:mooring:name','node','Mooring','type:mooring:name','1'),(6450,'node:type:mooring:title_label','node','Title','type:mooring:title_label','1'),(6451,'node:type:mooring:description','node','A mooring','type:mooring:description','1'),(6452,'/?q=admin/structure/views/view/mooring_overlay&render=overlay&render=overlay','default','OpenLayers Example Content','','7.31'),(6453,'/?q=admin/structure/views/view/mooring_overlay&render=overlay&render=overlay','default','view_moorings_overlay','','7.31'),(6454,'/?destination=moorings&q=admin%2Fstructure%2Fviews%2Fview%2Fmooring_overlay%2Fedit%2Fpage_1&render=overlay&render=overlay','default','Moorings Map','','7.31'),(6455,'node:type:photo_moorings_2014:name','node','Photo Moorings 2014','type:photo_moorings_2014:name','1'),(6456,'node:type:photo_moorings_2014:title_label','node','Photo Moorings 2014','type:photo_moorings_2014:title_label','1'),(6457,'/?q=admin%2Fstructure%2Fviews%2Fview%2Fphoto_gallery%2Fedit%2Fpage&render=overlay&render=overlay','default','Photo Gallery','','7.31'),(6458,'/?q=admin%2Fstructure%2Fviews%2Fview%2Fphoto_gallery%2Fedit&render=overlay&render=overlay','default','The Moorings','','7.31'),(6459,'node:type:photo_moorings_2012:name','node','Photo Moorings 2012','type:photo_moorings_2012:name','1'),(6460,'node:type:photo_moorings_2012:title_label','node','Photo Moorings 2012','type:photo_moorings_2012:title_label','1'),(6461,'/?q=admin/structure/views/view/moorings_gallery_2012/edit&render=overlay&render=overlay','default','The Moorings 2014','','7.31'),(6462,'/?q=admin/structure/views/view/moorings_gallery_2012/edit&render=overlay&render=overlay','default','The Moorings 2012','','7.31'),(6463,'/?q=admin/structure/views/view/moorings_gallery_2012&render=overlay&render=overlay','default','Moorings Gallery 2012','','7.34'),(6464,'/?q=admin/structure/views/view/moorings_gallery_2014&render=overlay&render=overlay','default','Moorings Gallery 2014','','7.34'),(6465,'','default','Expanded','','none'),(6466,'','default','Input format','','none'),(6467,'','default','Advanced','','7.34'),(6468,'','default','help','','7.34'),(6469,'','default','Introduction','','none'),(6470,'','default','here','','none'),(6471,'','default','Security','','none'),(6472,'','default','CSS','','none'),(6473,'','default','Default state','','none'),(6474,'','default','Basic setup','','none'),(6475,'','default','Editor appearance','','none'),(6476,'','default','Cleanup and output','','none'),(6477,'','default','Editor CSS','','none'),(6478,'','default','You must give a profile name.','','none'),(6479,'','default','filters','','none'),(6480,'','default','File browser settings','','none'),(6481,'','default','Editor width','','none'),(6482,'','default','or','','none'),(6483,'','default','Path Filter','','none'),(6484,'','default','Line break converter','','none'),(6485,'','default','Examples','','none'),(6486,'','default','Plugins','','none'),(6487,'','default','API documentation','','none'),(6488,'','default','Examples:','','none'),(6489,'','default','Skin','','none'),(6490,'','default','WYSIWYG','','none'),(6491,'','default','clone','','none'),(6492,'','default','XSS Filter','','none'),(6493,'','default','XSS Filter.','','none'),(6494,'','default','Switch to plain text editor','','none'),(6495,'','default','Switch to rich text editor','','none'),(6496,'','default','Auto-detect language','','none'),(6497,'','default','System path to the private folder is: !system_path.','','none'),(6498,'','default','Current path: !path','','none'),(6499,'','default','Security filters','','none'),(6500,'','default','Security settings','','none'),(6501,'','default','Enter mode','','none'),(6502,'','default','Font formats','','none'),(6503,'','default','Predefined styles','','none'),(6504,'','default','Predefined styles path','','none'),(6505,'','default','Path to uploaded files','','none'),(6506,'','default','Absolute path to uploaded files','','none'),(6507,'','default','Link to paths only','','none'),(6508,'','default','Link using internal: links','','none'),(6509,'','default','Path Filter & Link To Content integration','','none'),(6510,'','default','Link To Content','','none'),(6511,'','default','This profile name is reserved. Please choose a different name.','','none'),(6512,'','default','The profile name must be unique. A profile with this name already exists.','','none'),(6513,'','default','Troubleshooting','','none'),(6514,'','default','Uploading images and files','','none'),(6515,'','default','There are three ways for uploading files:','','none'),(6516,'','default','By using the core upload module.','','none'),(6517,'','default','Rich text editor settings','','none'),(6518,'','default','Configure the rich text editor.','','none'),(6519,'','default','Use theme CSS','','none'),(6520,'','default','Define CSS','','none'),(6521,'','default','Path to uploaded files relative to the document root.','','none'),(6522,'','default','What You See Is What You Get','','none'),(6523,'','default','official project page','','none'),(6524,'','default','CKEditor','','none'),(6525,'','default','CKEditor Global Profile','','none'),(6526,'','default','Always run security filters for CKEditor.','','none'),(6527,'','default','Run security filters only when CKEditor is set to start automatically.','','none'),(6528,'','default','CKEditor default','','none'),(6529,'','default','Select manually','','none'),(6530,'','default','Color module: base','','none'),(6531,'','default','Color module: top','','none'),(6532,'','default','Color module: bottom','','none'),(6533,'','default','The language for the CKEditor interface.','','none'),(6534,'','default','Use theme ckeditor.styles.js','','none'),(6535,'','default','Define path to ckeditor.styles.js','','none'),(6536,'','default','CKFinder','','none'),(6537,'','default','Select the file browser that you would like to use to upload files.','','none'),(6538,'','default','Select the file browser that you would like to use to upload images.','','none'),(6539,'','default','Path to CKEditor','','none'),(6540,'','default','Local path to CKEditor','','none'),(6541,'','default','The path relative to the location of the private directory where CKEditor should store uploaded files.','','none'),(6542,'','default','for developers only','','none'),(6543,'','default','CKEditor homepage','','none'),(6544,'','default','Take a look at !listlink when installing CKEditor.','','none'),(6545,'','default','Choose a CKEditor skin.','','none'),(6546,'','default','Insert Teaser Break','','none'),(6547,'','default','Insert Page Break','','none'),(6548,'','default','The document already contains a teaser break. Do you want to proceed by removing it first?','','none'),(6549,'','default','the list of common problems','','none'),(6550,'','default','Embed Media Dialog','','none'),(6551,'','default','Embed media code','','none'),(6552,'','default','Paste embed code here','','none'),(6553,'','default','CSS file path','','none'),(6554,'','default','Get from current locale (default)','','none'),(6555,'','default','Left-To-Right','','none'),(6556,'','default','Right-To-Left','','none'),(6557,'','default','Use custom formatting options','','none'),(6558,'','default','Custom formatting options','','none'),(6559,'','default','CKFinder settings','','none'),(6560,'','default','Force pasting as plain text','','none'),(6561,'','default','If enabled, HTML content will be automatically changed to plain text when pasting.','','none'),(6562,'','default','If enabled, turns on SCAYT (Spell Check As You Type) automatically after loading the editor.','','none'),(6563,'','default','Administer CKEditor access','','none'),(6564,'','default','Customize CKEditor appearance','','none'),(6565,'','default','CKFinder access','','none'),(6566,'','default','README.txt','','none'),(6567,'','default','Useful links: !ckeditorlink | !devguidelink | !userguidelink.','','none'),(6568,'','default','User\'s Guide','','none'),(6569,'','default','Administration panel','','none'),(6570,'','default','CKEditor profiles','','none'),(6571,'','default','Disable WYSIWYG module.','','none'),(6572,'','default','HTML Entities','','none'),(6573,'','default','Convert all applicable characters to HTML entities.','','none'),(6574,'','default','Disable the WYSIWYG module','','none'),(6575,'','default','Add a new CKEditor profile','','none'),(6576,'','default','Edit the CKEditor profile','','none'),(6577,'','default','Add the CKEditor Global profile','','none'),(6578,'','default','Edit the CKEditor Global profile','','none'),(6579,'','default','You are using a feature that requires <code>$cookie_domain</code> to be set, but it is not set in your <code>settings.php</code> file (CKFinder is enabled in the !profile profile).','','none'),(6580,'','default','Enables CKEditor (WYSIWYG HTML editor) for use instead of plain text fields.','','none'),(6581,'','default','Create a new profile','','none'),(6582,'','default','Enter a name for this profile. This name is only visible within the CKEditor administration page.','','none'),(6583,'','default','Currently used buttons','','none'),(6584,'','default','All available buttons','','none'),(6585,'','default','Choose the plugins that you want to enable in CKEditor.','','none'),(6586,'','default','Editor interface width in pixels or percent. Examples: 400, 100%.','','none'),(6587,'','default','Automatically detect the user language.','','none'),(6588,'','default','Break line before the opening tag.','','none'),(6589,'','default','Break line after the opening tag.','','none'),(6590,'','default','Break line before the closing tag.','','none'),(6591,'','default','Break line after the closing tag.','','none'),(6592,'','default','Custom JavaScript configuration','','none'),(6593,'','default','Auto Grow plugin','','none'),(6594,'','default','CKEditor website','','none'),(6595,'','default','For the Rich Text Editing to work you also need to configure your !filterlink for the users that may access Rich Text Editing. Either grant those users <strong>Full HTML</strong> access or use the following list of tags in the HTML filter:','','none'),(6596,'','default','Text Color','','none'),(6597,'','default','Background Color','','none'),(6598,'','default','Image Count','','none'),(6599,'','default','Multilingual options','','7.34'),(6600,'','default','No title','','none'),(6601,'','default','Gallery ID','','none'),(6604,'sites/all/modules/photos/photos_swfu/handlers.js','default','You have reached the upload limit.','','none'),(6605,'sites/all/modules/photos/photos_swfu/handlers.js','default','You may select','','none'),(6606,'sites/all/modules/photos/photos_swfu/handlers.js','default','up to','','none'),(6607,'sites/all/modules/photos/photos_swfu/handlers.js','default','files.','','none'),(6608,'sites/all/modules/photos/photos_swfu/handlers.js','default','one file.','','none'),(6609,'sites/all/modules/photos/photos_swfu/handlers.js','default','uploaded success.','','none'),(6610,'sites/all/modules/photos/photos_swfu/handlers.js','default',' files queued','','none'),(6611,'sites/all/modules/photos/photos_swfu/handlers.js','default','Queue is empty','','none'),(6612,'sites/all/modules/photos/photos_swfu/handlers.js','default','!count file uploaded','','none'),(6613,'sites/all/modules/photos/photos_swfu/handlers.js','default','!count files uploaded','','none'),(6614,'/?q=it','default','Location chooser','','7.59'),(6615,'/?q=it','default','Used to activate location choosing using a gmap.','','7.59'),(6616,'/?q=it','default','Disable dragging','','7.59'),(6617,'/?q=it','default','Remove the ability for the user to drag the map. If dragging is disabled, keyboard shortcuts are implicitly disabled.','','7.59'),(6618,'/?q=it','default','Disable keyboard','','7.59'),(6619,'/?q=it','default','Disable the keyboard shortcuts.','','7.59'),(6620,'/?q=it','default','Disable Continuous Zoom','','7.59'),(6621,'/?q=it','default','Disable dynamically resizing images while waiting for tiles to load when zooming.','','7.59'),(6622,'/?q=it','default','Use AutoZoom','','7.59'),(6623,'/?q=it','default','Automatically zoom the map to fit all markers when markers are added.','','7.59'),(6624,'/?q=it','default','Unconditionally enable marker interface','','7.59'),(6625,'/?q=it','default','Load the marker loader system even if no markers to load are detected. Useful if you are injecting markers from somewhere else.','','7.59'),(6626,'/?q=it','default','Enable Overview Map','','7.59'),(6627,'/?q=it','default','Enable the \"overview map\" in the bottom right corner.','','7.59'),(6628,'/?q=it','default','Work around bugs when maps appear in collapsible fieldsets','','7.59'),(6629,'/?q=it','default','Enabling this will work around some issues that can occur when maps appear inside collapsible fieldsets.','','7.59'),(6630,'/?q=it','default','Add scale control to map.','','7.59'),(6631,'/?q=it','default','Adds a scale control to the map in the default position.','','7.59'),(6632,'/?q=it','default','Enable extra marker events.','','7.59'),(6633,'/?q=it','default','Used for advanced javascript work, this will enable the <em>mouseovermarker</em>, <em>mouseoutmarker</em>, and <em>dblclickmarker</em> events.','','7.59'),(6634,'/?q=it','default','Enable clickable shapes.','','7.59'),(6635,'/?q=it','default','Used for advanced javascript work, this will enable the <em>clickshape</em> event.','','7.59'),(6636,'/?q=it','default','Highlight marker on rollover','','7.59'),(6637,'/?q=it','default','Highlight marker by creating circle on mouse rollover event.','','7.59'),(6638,'/?q=it','default','This field stores geo information.','','7.59'),(6639,'/?q=it','default','Geocode from another field','','7.59'),(6640,'/?q=it','default','Well Known Text (WKT)','','7.59'),(6641,'/?q=it','default','GeoJSON','','7.59'),(6642,'/?q=it','default','Latitude / Longitude','','7.59'),(6643,'/?q=it','default','Bounds','','7.59'),(6644,'/?q=it','default','KML','','7.59'),(6645,'/?q=it','default','GPX','','7.59'),(6646,'/?q=it','default','Geohash','','7.59'),(6647,'/?q=it','default','Latitude/Longitude','','7.59'),(6648,'/?q=it','default','Latitude Only','','7.59'),(6649,'/?q=it','default','Longitude Only','','7.59'),(6650,'/?q=it','default','Geometry Type','','7.59'),(6651,'/?q=it','default','Definition List (Accessibility)','','7.59'),(6652,'/?q=it','default','Descriptive Text (Accessibility)','','7.59'),(6653,'/?q=it','default','Location','geolocation','7.59'),(6654,'/?q=it','default','Additional street address of the selected location.','','7.59'),(6655,'/?q=it','default','GMap','','7.59'),(6656,'/?q=it','default','Displays rows as a map.','','7.59'),(6657,'/?q=it','default','Extended GMap','','7.59'),(6658,'/?q=it','default','Displays a map of markers.','','7.59'),(6659,'/?q=it','default','Search widget','','7.59'),(6660,'/?q=it','default','User menu widget','','7.59'),(6661,'/?q=it','default','Slideshow widget','','7.59'),(6662,'/?q=it','default','Front welcome widget','','7.59'),(6663,'/?q=it','default','First top widget','','7.59'),(6664,'/?q=it','default','Second top widget','','7.59'),(6665,'/?q=it','default','Third top widget','','7.59'),(6666,'/?q=it','default','Second sidebar','','7.59'),(6667,'/?q=it','default','Highlights widget','','7.59'),(6668,'/?q=it','default','Bottom first widget','','7.59'),(6669,'/?q=it','default','Bottom second widget','','7.59'),(6670,'/?q=it','default','Bottom third widget','','7.59'),(6671,'/?q=it','default','First bottom widget','','7.59'),(6672,'/?q=it','default','Second bottom widget','','7.59'),(6673,'/?q=it','default','Third bottom widget','','7.59'),(6674,'/?q=it','default','Forth bottom widget','','7.59'),(6675,'/?q=it','default','Location map','','7.59'),(6676,'/?q=it','default','Author map','','7.59'),(6677,'/?q=it','default','User\'s images','','7.59'),(6678,'/?q=it','default','Photo information','','7.59'),(6679,'/?q=it','default','Random images','','7.59'),(6680,'/?q=it','default','Management','','7.59'),(6681,'/?q=it','default','View: !view: !display','','7.59'),(6682,'/?q=it/node/29','default','Album view','','7.59'),(6683,'/?q=it/node/29','default','A total of !count images','','7.59'),(6684,'/?q=it/photos/image/20','default','','','7.59'),(6685,'/?q=it/photos/image/20','default','All sizes','','7.59'),(6686,'/?q=it/photos/image/20','default','@name\'s images','','7.34'),(6687,'/?q=it/photos/image/20','default','!cou visits','','7.59'),(6688,'/?q=it/photos/image/20','default','previous','','7.34'),(6689,'','default','next','','7.34'),(6690,'/?q=it/photos/album/29','default','Uploaded on !time by !name','','7.59'),(6691,'/?q=it/photos/album/29','default','Album settings','','7.59'),(6692,'/?q=it/photos/album/29','default','Images Management','','7.59'),(6693,'/?q=it/photos/album/29','default','!cou images','','7.59'),(6694,'/?q=it/photos/album/29','default','Submitted by !name on !date','','7.59'),(6695,'/?q=it/photos/album/29','default','@name\'s albums','','7.59'),(6696,'/?q=it/photos/album/29','default','Albums: @title','','7.59'),(6697,'/?q=it/photos/zoom/20','default','Sharing code and download image: @title','','7.59'),(6698,'/?q=it/photos/zoom/20','default','Back to the image page','','7.59'),(6699,'/?q=it/photos/zoom/20','default','Thumb','','7.59'),(6700,'/?q=it/node/24','default','Language selection','','7.59'),(6701,'/?q=it/node/24','default','Location module form elements','','7.59'),(6702,'/?q=it/node/15','default','GMap Macro expander','','7.59'),(6703,'/?q=it/node/15','default','GMap macros will be displayed as interactive maps.','','7.59'),(6704,'/?q=it/node/15','default','Insert image and album','','7.59'),(6705,'/?q=it/node/15','default','photos.module filter format, at the node to insert images or albums. e.g: [photo=image]id=55,54,53,52|align=right[/photo] or [photo=album]id=134[/photo] or [photo=album]id=134|limit=6[/photo].','','7.59'),(6706,'/?q=it/node/15','default','Forecast as charts','','7.59'),(6707,'/?q=it/node/15','default','Image Based Scientific Forecast','','7.59'),(6710,'/?q=it/node/7','default','Node locations','','7.59'),(6711,'/?q=it/node/7','default','Create new photo albums.','','7.59'),(6712,'node:type:forum:name','node','Forum topic','type:forum:name','1'),(6713,'node:type:forum:title_label','node','Subject','type:forum:title_label','1'),(6714,'node:type:forum:description','node','A <em>forum topic</em> starts a new discussion thread within a forum.','type:forum:description','1'),(6715,'','default','Icons','','7.34'),(6716,'','default','Node links','','none'),(6717,'','default','Image size for language icons, in the form \"width x height\".','','none'),(6718,'','default','Add language icons','','none'),(6719,'','default','Link types to add language icons.','','none'),(6720,'','default','Language switcher block','','none'),(6721,'','default','Icon placement','','none'),(6722,'','default','Where to display the icon, relative to the link title.','','none'),(6723,'','default','Icons file path','','none'),(6724,'','default','This module manages language icons for multilingual sites:','','none'),(6725,'','default','Language Icons','','none'),(6726,'','default','Adds icons to language links.','','none'),(6727,'','default','To enable multilingual support for specific content types go to <a href=\"@configure_content_types\">configure content types</a>.','','none'),(6728,'','default','Before link','','none'),(6729,'','default','After link','','none'),(6730,'','default','Replace link','','none'),(6731,'','default','Path for language icons, relative to Drupal installation. \"*\" is a placeholder for language code.','','none'),(6732,'','default','Automatically adds icons to language links.','','none'),(6733,'','default','Provides related theme functions.','','none'),(6734,'','default','For more information, please see <a href=\"@handbook\">the online handbook section</a>.','','none'),(6735,'','default','Removed site variable used during development of 6.x-2.x.','','none'),(6736,'','default','These options are currently disabled due to <a href=\"!issue_url\">a bug</a> that cannot currently be resolved. They may be reintroduced at a later stage.','','none'),(6737,'','default','DIV','','none'),(6738,'','default','SPAN','','none'),(6739,'','default','H1','','none'),(6740,'','default','H2','','none'),(6741,'','default','H3','','none'),(6742,'','default','H4','','none'),(6743,'','default','H5','','none'),(6744,'','default','H6','','none'),(6745,'','default','Enable to override this field\'s links.','','none'),(6746,'field:title_field:photos:label','field','Title','title_field:photos:label','1'),(6747,'field:body:photos:label','field','Album description','body:photos:label','1'),(6748,'field:title_field:article:label','field','Title','title_field:article:label','1'),(6749,'field:body:article:label','field','Body','body:article:label','1'),(6750,'field:field_tags:article:label','field','Tags','field_tags:article:label','1'),(6751,'field:field_tags:article:description','field','Enter a comma-separated list of words to describe your content.','field_tags:article:description','1'),(6752,'field:field_image:article:label','field','Image','field_image:article:label','1'),(6753,'field:field_image:article:description','field','Upload an image to go with this article.','field_image:article:description','1'),(6754,'field:title_field:page:label','field','Title','title_field:page:label','1'),(6755,'field:body:page:label','field','Body','body:page:label','1'),(6756,'field:title_field:forum:label','field','Title','title_field:forum:label','1'),(6757,'field:taxonomy_forums:forum:label','field','Forums','taxonomy_forums:forum:label','1'),(6758,'field:body:forum:label','field','Body','body:forum:label','1'),(6759,'field:title_field:mooring:label','field','Title','title_field:mooring:label','1'),(6760,'field:field_gfdata:mooring:label','field','Data','field_gfdata:mooring:label','1'),(6761,'field:body:mooring:label','field','Body','body:mooring:label','1'),(6762,'field:title_field:openlayers_example_content:label','field','Title','title_field:openlayers_example_content:label','1'),(6763,'field:field_openlayers_example_input:openlayers_example_content:label','field','OpenLayers Example Geofield Input','field_openlayers_example_input:openlayers_example_content:label','1'),(6764,'field:body:openlayers_example_content:label','field','Body','body:openlayers_example_content:label','1'),(6765,'field:title_field:photo_moorings_2012:label','field','Title','title_field:photo_moorings_2012:label','1'),(6766,'field:body:photo_moorings_2012:label','field','Body','body:photo_moorings_2012:label','1'),(6767,'field:field_photo_moorings_2012:photo_moorings_2012:label','field','Photo Moorings 2012','field_photo_moorings_2012:photo_moorings_2012:label','1'),(6768,'field:title_field:photo_moorings_2014:label','field','Title','title_field:photo_moorings_2014:label','1'),(6769,'field:body:photo_moorings_2014:label','field','Body','body:photo_moorings_2014:label','1'),(6770,'field:field_photo:photo_moorings_2014:label','field','Photo Moorings 2014','field_photo:photo_moorings_2014:label','1'),(6771,'/?q=it%2Fnode%2Fadd%2Fpage&translation=7&target=it&render=overlay','default','Nodes represent the main site content items.','','7.59'),(6772,'/?q=it%2Fnode%2Fadd%2Fpage&translation=7&target=it&render=overlay','default','Uploaded file.','','7.59'),(6773,'/?q=it%2Fnode%2Fadd%2Fpage&translation=7&target=it&render=overlay','default','Remark or note that refers to a node.','','7.59'),(6774,'/?q=it%2Fnode%2Fadd%2Fpage&translation=7&target=it&render=overlay','default','Taxonomy terms are used for classifying content.','','7.59'),(6775,'/?q=it%2Fnode%2Fadd%2Fpage&translation=7&target=it&render=overlay','default','Taxonomy vocabularies','','7.59'),(6776,'/?q=it%2Fnode%2Fadd%2Fpage&translation=7&target=it&render=overlay','default','Vocabularies contain related taxonomy terms, which are used for classifying content.','','7.59'),(6777,'/?q=it%2Fnode%2Fadd%2Fpage&translation=7&target=it&render=overlay','default','Contact forms','','7.59'),(6778,'/?q=it%2Fnode%2Fadd%2Fpage&translation=7&target=it&render=overlay','default','Configurable contact form categories.','','7.59'),(6779,'/?q=it%2Fnode%2Fadd%2Fpage&translation=7&target=it&render=overlay','default','Configurable fields descriptions, defaults, options, etc.','','7.59'),(6780,'/?q=it%2Fnode%2Fadd%2Fpage&translation=7&target=it&render=overlay','default','Node types','','7.59'),(6781,'/?q=it%2Fnode%2Fadd%2Fpage&translation=7&target=it&render=overlay','default','Content type names, descriptions, help texts.','','7.59'),(6782,'/?q=it%2Fnode%2Fadd%2Fpage&translation=7&target=it&render=overlay','default','Translatable menu items: title and description.','','7.59'),(6783,'/?q=it%2Fnode%2Fadd%2Fpage&translation=7&target=it&render=overlay','default','Vocabulary titles and term names for localizable vocabularies.','','7.59'),(6784,'/?q=it%2Fnode%2Fadd%2Fpage&translation=7&target=it&render=overlay','default','Configurable blocks titles and content.','','7.59'),(6785,'/?q=it%2Fnode%2Fadd%2Fpage&translation=7&target=it&render=overlay','default','Linked and wrapped','','7.59'),(6786,'/?q=it%2Fnode%2Fadd%2Fpage&translation=7&target=it&render=overlay','default','Default translated','','7.59'),(6787,'/?q=it%2Fnode%2Fadd%2Fpage&translation=7&target=it&render=overlay','default','Link (localized)','','7.59'),(6788,'/?q=it%2Fnode%2Fadd%2Fpage&translation=7&target=it&render=overlay','default','Plain text (localized)','','7.59'),(6789,'/?q=it%2Fnode%2Fadd%2Fpage&translation=7&target=it&render=overlay','default','Contact category','','7.59'),(6790,'/?q=it%2Fnode%2Fadd%2Fpage&translation=7&target=it&render=overlay','default','Field instance','','7.59'),(6791,'/?q=it%2Fnode%2Fadd%2Fpage&translation=7&target=it&render=overlay','default','Node type','','7.59'),(6792,'/?q=it%2Fnode%2Fadd%2Fpage&translation=7&target=it&render=overlay','default','Title label','','7.59'),(6793,'/?q=it%2Fnode%2Fadd%2Fpage&translation=7&target=it&render=overlay','default','menu items','','7.59'),(6794,'/?q=it%2Fnode%2Fadd%2Fpage&translation=7&target=it&render=overlay','default','vocabulary','','7.59'),(6795,'/?q=it%2Fnode%2Fadd%2Fpage&translation=7&target=it&render=overlay','default','terms','','7.59'),(6796,'/?q=it%2Fnode%2Fadd%2Fpage&translation=7&target=it&render=overlay','default','This is an example content type for the OpenLayers module.','','7.34'),(6797,'/?q=it%2Fnode%2Fadd%2Fpage&translation=7&target=it&render=overlay','default','A mooring','','7.34'),(6798,'/?q=it%2Fnode%2Fadd%2Fpage&translation=7&target=it&render=overlay','default','Javascript is required to view this map.','','7.34'),(6799,'/?q=it/node/96','default','The subject of the comment.','','7.59'),(6800,'/?q=it/node/96','default','The author of the comment.','','7.59'),(6801,'/?q=it/node/96','default','Whether the comment is published or unpublished.','','7.59'),(6802,'/?q=it/node/96','default','Field \"@name\".','','7.59'),(6803,'/?q=it/node/96','default','The file.','','7.59'),(6804,'/?q=it/node/96','default','The file description','','7.59'),(6805,'/?q=it/node/96','default','Whether the file is being displayed.','','7.59'),(6806,'/?q=it/node/96','default','The image file.','','7.59'),(6807,'/?q=it/node/96','default','The \"Alt\" attribute text','','7.59'),(6808,'/?q=it/node/96','default','The \"Title\" attribute text','','7.59'),(6809,'/?q=it/node/96','default','Node ID','','7.59'),(6810,'/?q=it/node/96','default','The unique ID of the node.','','7.59'),(6811,'/?q=it/node/96','default','The unique ID of the node\'s revision.','','7.59'),(6812,'/?q=it/node/96','default','Is new','','7.59'),(6813,'/?q=it/node/96','default','Whether the node is new and not saved to the database yet.','','7.59'),(6814,'/?q=it/node/96','default','Whether the node is published or unpublished.','','7.59'),(6815,'/?q=it/node/96','default','Promoted to frontpage','','7.59'),(6816,'/?q=it/node/96','default','Whether the node is promoted to the frontpage.','','7.59'),(6817,'/?q=it/node/96','default','Sticky in lists','','7.59'),(6818,'/?q=it/node/96','default','Whether the node is displayed at the top of lists in which it appears.','','7.59'),(6819,'/?q=it/node/96','default','Translation source node','','7.59'),(6820,'/?q=it/node/96','default','The original-language version of this node, if one exists.','','7.59'),(6821,'/?q=it/node/96','default','In case a new revision is to be saved, the log entry explaining the changes for this version.','','7.59'),(6822,'/?q=it/node/96','default','Creates revision','','7.59'),(6823,'/?q=it/node/96','default','Whether saving this node creates a new revision.','','7.59'),(6824,'/?q=it/node/96','default','The weight of the term, which is used for ordering terms during display.','','7.59'),(6825,'/?q=it/node/96','default','The parent terms of the taxonomy term.','','7.59'),(6826,'/?q=it/node/96','default','All parent terms','','7.59'),(6827,'/?q=it/node/96','default','Ancestors of the term, i.e. parent of all above hierarchy levels.','','7.59'),(6828,'/?q=it/node/96','default','The machine name of the taxonomy vocabulary.','','7.59'),(6829,'/?q=it/node/96','default','The url of the account edit page.','','7.59'),(6830,'/?q=it/node/96','default','The date the user last accessed the site.','','7.59'),(6831,'/?q=it/node/96','default','User roles','','7.59'),(6832,'/?q=it/node/96','default','The roles of the user.','','7.59'),(6833,'/?q=it/node/96','default','Whether the user is active or blocked.','','7.59'),(6834,'/?q=it/node/96','default','The user\'s default theme.','','7.59'),(6835,'/?q=it/node/96','default','Logged in user','','7.59'),(6836,'/?q=it/node/96','default','The currently logged in user.','','7.59'),(6837,'/?q=it/node/96','default','Current date','','7.59'),(6838,'/?q=it/node/96','default','The current date and time.','','7.59'),(6839,'/?q=it/node/96','default','Current page','','7.59'),(6840,'/?q=it/node/96','default','Information related to the current page request.','','7.59'),(6841,'/?q=it/node/96','default','The internal Drupal path of the current page request.','','7.59'),(6842,'/?q=it/node/96','default','The full URL of the current page request.','','7.59'),(6843,'/?q=it/node/96','default','The size of the file, in kilobytes.','','7.59'),(6844,'/?q=it/node/96','default','Comments allowed','','7.59'),(6845,'/?q=it/node/96','default','Whether comments are allowed on this node: 0 = no, 1 = closed (read only), 2 = open (read/write).','','7.59'),(6846,'/?q=it/node/96','default','The node comments.','','7.59'),(6847,'/?q=it/node/96','default','The main body text','','7.59'),(6848,'/?q=it/node/96','default','Interface language','','7.59'),(6849,'/?q=it/node/96','default','The language code of the current user interface language.','','7.59'),(6850,'/?q=it/node/96','default','Content language','','7.59'),(6851,'/?q=it/node/96','default','The language code of the current content language.','','7.59'),(6852,'/?q=it/node/96','default','(No information available)','','7.59'),(6853,'/?q=it/node/96','default','Rendered @entity-type','','7.59'),(6854,'/?q=it/node/96','default','The @entity-type of the current relationship rendered using a view mode.','','7.59'),(6855,'/?q=it/node/96','default','Entity','','7.59'),(6856,'/?q=it/node/96','default','Rendered entity','','7.59'),(6857,'/?q=it/node/96','default','Displays a single chosen entity.','','7.59'),(6858,'/?q=it/node/96','default','@label (!name:language)','','7.59'),(6859,'/?q=it/node/96','default','@label:language','','7.59'),(6860,'/?q=it/node/96','default','Language - Appears in: @bundles.','','7.59'),(6861,'/?q=it/node/96','default','<No value>','','7.59'),(6862,'/?q=it/node/96','default','Entity translation','','7.59'),(6863,'/?q=it/node/96','default','Information about a translation of an entity.','','7.59'),(6864,'/?q=it/node/96','default','Entity id','','7.59'),(6865,'/?q=it/node/96','default','The entity id.','','7.59'),(6866,'/?q=it/node/96','default','The entity type.','','7.59'),(6867,'/?q=it/node/96','default','The language of this translation.','','7.59'),(6868,'/?q=it/node/96','default','The source language.','','7.59'),(6869,'/?q=it/node/96','default','The status of this translation.','','7.59'),(6870,'/?q=it/node/96','default','Needs update','','7.59'),(6871,'/?q=it/node/96','default','Indicates if the translation needs to be updated.','','7.59'),(6872,'/?q=it/node/96','default','Created date.','','7.59'),(6873,'/?q=it/node/96','default','Changed','','7.59'),(6874,'/?q=it/node/96','default','Changed date.','','7.59'),(6875,'/?q=it/node/96','default','Link to translation overview page.','','7.59'),(6876,'/?q=it/node/96','default','Translation exists','','7.59'),(6877,'/?q=it/node/96','default','The label of the entity.','','7.59'),(6878,'/?q=it/node/96','default','Link to contact page','','7.59'),(6879,'/?q=it/node/96','default','Provide a simple link to the user contact page.','','7.59'),(6880,'/?q=it/node/96','default','Entity translation: translations','','7.59'),(6881,'/?q=it/node/96','default','Translation information.','','7.59'),(6882,'/?q=it/node/96','default','!title: translated','','7.59'),(6883,'/?q=it/node/96','default','Show the field !title translated into a specified language','','7.59'),(6884,'/?q=it/node/96','default','Renders a single entity in a specific view mode (e.g. teaser).','','7.59'),(6885,'/?q=it%2Fadmin%2Fstructure&render=overlay','default','All variables','','7.59'),(6886,'/?q=it%2Fadmin%2Fstructure&render=overlay','default','multilingual','','7.59'),(6887,'/?q=it%2Fadmin%2Fstructure&render=overlay','default','views','','7.34'),(6888,'/?q=it%2Fadmin%2Fstructure&render=overlay','default','This action will permanently remove any customizations made to this view.','','7.34'),(6889,'/?q=it%2Fadmin%2Fstructure&render=overlay','default','The view has been reverted.','','7.34'),(6890,'/?q=it%2Fadmin%2Fstructure&render=overlay','default','This action will permanently remove the view from your database.','','7.34'),(6891,'/?q=it%2Fadmin%2Fstructure&render=overlay','default','The view has been deleted.','','7.34'),(6892,'/?q=it%2Fadmin%2Fstructure&render=overlay','default','Clone','','7.34'),(6893,'/?q=it%2Fadmin%2Fstructure&render=overlay','default','Add a new @plugin','','7.34'),(6894,'/?q=it%2Fadmin%2Fstructure&render=overlay','default','Edit @plugin %title','','7.34'),(6895,'/?q=it%2Fadmin%2Fstructure&render=overlay','default','Clone @plugin %title','','7.34'),(6896,'/?q=it%2Fadmin%2Fstructure&render=overlay','default','Import @plugin','','7.34'),(6897,'/?q=it%2Fadmin%2Fstructure&render=overlay','default','Export @plugin %title','','7.34'),(6898,'/?q=it%2Fadmin%2Fstructure&render=overlay','default','Are you sure you want to revert %title?','','7.34'),(6899,'/?q=it%2Fadmin%2Fstructure&render=overlay','default','This action will permanently remove any customizations made to this item.','','7.34'),(6900,'/?q=it%2Fadmin%2Fstructure&render=overlay','default','The item has been reverted.','','7.34'),(6901,'/?q=it%2Fadmin%2Fstructure&render=overlay','default','This action will permanently remove this item from your database..','','7.34'),(6902,'/?q=it%2Fadmin%2Fstructure&render=overlay','default','The item has been deleted.','','7.34'),(6903,'/?q=it%2Fadmin%2Fstructure&render=overlay','default','%title has been created.','','7.34'),(6904,'/?q=it%2Fadmin%2Fstructure&render=overlay','default','%title could not be created.','','7.34'),(6905,'/?q=it%2Fadmin%2Fstructure&render=overlay','default','%title has been updated.','','7.34'),(6906,'/?q=it%2Fadmin%2Fstructure&render=overlay','default','%title could not be updated.','','7.34'),(6907,'/?q=it%2Fadmin%2Fstructure&render=overlay','default','You can import an exported definition by pasting the exported object code into the field below.','','7.34'),(6908,'/?q=it%2Fadmin%2Fstructure&render=overlay','default','@plugin %title was enabled.','','7.34'),(6909,'/?q=it%2Fadmin%2Fstructure&render=overlay','default','@plugin %title was disabled.','','7.34'),(6910,'/?q=it%2Fadmin%2Fstructure&render=overlay','default','There are no @titles to display.','','7.34'),(6911,'/?q=it%2Fadmin%2Fstructure&render=overlay','default','Manage customized lists of content.','','7.34'),(6912,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Multilingual settings','','7.59'),(6913,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Extended multilingual options provided by Internationalization module.','','7.34'),(6914,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Realm list','','7.59'),(6915,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','List of variables that can be set for a realm.','','7.59'),(6916,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Realm weight','','7.59'),(6917,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Override default weight for realm variables.','','7.59'),(6918,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Multilingual variables, main variable names.','','7.59'),(6919,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Multilingual variables, real variable names.','','7.59'),(6920,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Hide content translation links','','7.59'),(6921,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','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.','','7.59'),(6922,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Default language for content types with Multilingual support disabled.','','7.59'),(6923,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Determines which language will be set for newly created content of types that don\'t have Multilingual support enabled.','','7.59'),(6924,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','The site\'s default language (Default behaviour).','','7.59'),(6925,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Language neutral (Recommended).','','7.59'),(6926,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Extended language options','','7.59'),(6927,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Set current language as default for new content.','','7.34'),(6928,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Require language (Do not allow Language Neutral).','','7.59'),(6929,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Lock language (Cannot be changed).','','7.59'),(6930,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Extended language support','','7.59'),(6931,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','If enabled, all defined languages will be allowed for this content type in addition to only enabled ones. This is useful to have more languages for content than for the interface.','','7.59'),(6932,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Select nodes by language','','7.59'),(6933,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Select taxonomy terms by language','','7.59'),(6934,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Enable always for block content though it may be disabled for the page','','7.59'),(6935,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Skip tags','','7.59'),(6936,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Skip queries with these tags. Enter a list of tags separated by commas.','','7.59'),(6937,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Site default language','','7.59'),(6938,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Select the source for the Secondary links.','','7.59'),(6939,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Menu parent','','7.59'),(6940,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Select the menu parent','','7.59'),(6941,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Menu options','','7.59'),(6942,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Select the available menus','','7.59'),(6943,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Length of trimmed posts','','7.59'),(6944,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','The maximum number of characters used in the trimmed version of a post. Drupal will use this setting to determine at which offset long posts should be trimmed. The trimmed version of a post is typically used as a teaser when displaying the post on the main page, in XML feeds, etc. To disable teasers, set to \'Unlimited\'. Note that this setting will only affect new or updated content and will not affect existing teasers.','','7.59'),(6945,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Must users preview posts before submitting?','','7.59'),(6946,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Users with the <em>administer nodes</em> permission will be able to override these options.','','7.59'),(6947,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','The name of this website.','','7.59'),(6948,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Site email address','','7.59'),(6949,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Your site\'s motto, tag line, or catchphrase (often displayed alongside the title of the site).','','7.59'),(6950,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Anonymous user','','7.59'),(6951,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','The home page displays content from this relative URL. If unsure, specify \"node\".','','7.59'),(6952,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Number of posts on main page','','7.59'),(6953,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Global theme settings.','','7.59'),(6954,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Theme settings','','7.59'),(6955,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Logo, icons and other specific theme settings.','','7.59'),(6956,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Block caching is inactive if you have enabled modules defining content access restrictions.','','7.59'),(6957,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Public registrations','','7.59'),(6958,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Require e-mail verification when a visitor creates an account','','7.59'),(6959,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','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.','','7.59'),(6960,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','User registration guidelines','','7.59'),(6961,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','This text is displayed at the top of the user registration form and is useful for helping or instructing your users.','','7.59'),(6962,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Welcome, new user created by administrator','','7.59'),(6963,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Customize welcome e-mail messages sent to new member accounts created by an administrator.','','7.59'),(6964,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Welcome, no approval required','','7.59'),(6965,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Customize welcome e-mail messages sent to new members upon registering, when no administrator approval is required.','','7.59'),(6966,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Welcome, awaiting administrator approval','','7.59'),(6967,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Customize welcome e-mail messages sent to new members upon registering, when administrative approval is required.','','7.59'),(6968,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Password recovery email','','7.59'),(6969,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Customize e-mail messages sent to users who request a new password.','','7.59'),(6970,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Account activation email','','7.59'),(6971,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','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).','','7.59'),(6972,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Account blocked email','','7.59'),(6973,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Enable and customize e-mail messages sent to users when their accounts are blocked.','','7.59'),(6974,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Account deleted email','','7.59'),(6975,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Enable and customize e-mail messages sent to users when their accounts are deleted.','','7.59'),(6976,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Notify user when account is deleted.','','7.59'),(6977,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Signature support','','7.59'),(6978,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Picture support','','7.59'),(6979,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Picture maximum dimensions','','7.59'),(6980,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Maximum dimensions for pictures, in pixels.','','7.59'),(6981,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Picture maximum file size','','7.59'),(6982,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Maximum file size for pictures, in kB.','','7.59'),(6983,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Forum containers','','7.59'),(6984,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Languages for content','','7.59'),(6985,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Determines which languages will be allowed for content creation.','','7.59'),(6986,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Enable translation for language','','7.59'),(6987,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Translatable text formats','','7.59'),(6988,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','The translation system only translates strings with the selected text formats. All other strings will be ignored and removed from the list of translatable strings.','','7.59'),(6989,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Source language','','7.59'),(6990,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Language that will be used as the source language for string translations. The default is the site default language.','','7.59'),(6991,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Debug string translation','','7.59'),(6992,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Synchronize fields for node type.','','7.59'),(6993,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Enable multilingual support for this content type. If enabled, a language selection field will be added to the editing form, allowing you to select from one of the <a href=\"!languages\">enabled languages</a>. You can also turn on translation for this content type, which lets you have content translated to any of the enabled languages. If disabled, new posts are saved with the default language. Existing content will not be affected by changing this option.','','7.59'),(6994,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Normal - All enabled languages will be allowed.','','7.34'),(6995,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Extended - All defined languages will be allowed.','','7.34'),(6996,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Extended, but not displayed - All defined languages will be allowed for input, but not displayed in links.','','7.34'),(6997,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Alpha Responsive Theme','','7.34'),(6998,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Multipurpose Theme','','7.34'),(6999,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Venture Theme','','7.34'),(7000,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Geocoder settings','','7.34'),(7001,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Configuration for API keys.','','7.34'),(7002,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Title settings','','7.59'),(7003,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Settings for the Title module.','','7.59'),(7004,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Configure global album photos settings.','','7.59'),(7005,'','default','Photos','','7.34'),(7006,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Strings','','7.34'),(7007,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Refresh user defined strings.','','7.34'),(7008,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Configure extended options for multilingual content and translations.','','7.59'),(7009,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Multilingual system','','7.34'),(7010,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Node options','','7.34'),(7011,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Options for user defined strings.','','7.34'),(7012,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Selection','','7.34'),(7013,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Variables','','7.34'),(7014,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Configure multilingual variables.','','7.34'),(7015,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Translation sets','','7.59'),(7016,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Translation sets overview.','','7.59'),(7017,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Overview of existing translation sets.','','7.34'),(7018,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Paths','','7.34'),(7019,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Path translation.','','7.34'),(7020,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Add path translation','','7.34'),(7021,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Configure which entities can be translated and enable or disable language fallback.','','7.59'),(7022,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Configure GMap settings','','7.59'),(7023,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','GMap Location','','7.59'),(7024,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Configure GMap Location settings.','','7.59'),(7025,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','block','','7.34'),(7026,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','color','','7.34'),(7027,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','comment','','7.34'),(7028,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','contextual','','7.34'),(7029,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','dashboard','','7.34'),(7030,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','dblog','','7.34'),(7031,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','field_sql_storage','','7.34'),(7032,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','field_ui','','7.34'),(7033,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','list','','7.34'),(7034,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','options','','7.34'),(7035,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','text','','7.34'),(7036,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','number','','7.34'),(7037,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','overlay','','7.34'),(7038,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','path','','7.34'),(7039,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','rdf','','7.34'),(7040,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','shortcut','','7.34'),(7041,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','toolbar','','7.34'),(7042,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','update','','7.34'),(7043,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','translation','','7.34'),(7044,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','i18n','','7.34'),(7045,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','i18n_block','','7.34'),(7046,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','i18n_menu','','7.34'),(7047,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','i18n_node','','7.34'),(7048,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','i18n_string','','7.34'),(7049,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','i18n_forum','','7.34'),(7050,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','i18n_taxonomy','','7.34'),(7051,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','i18n_redirect','','7.34'),(7052,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','i18n_sync','','7.34'),(7053,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','languageicons','','7.34'),(7054,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','title','','7.34'),(7055,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Used in views','','7.34'),(7056,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Overview of fields used in all views.','','7.34'),(7057,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Views plugins','','7.34'),(7058,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Overview of plugins used in all views.','','7.34'),(7059,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Add translation','','7.34'),(7060,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Add new view','','7.34'),(7061,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Add view from template','','7.34'),(7062,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Adjust settings for using features module.','','7.34'),(7063,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Sub-Album settings','','7.34'),(7064,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Sub-Album','','7.34'),(7065,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Node will become a sub-album, you can add images from other albums to this node.','','7.34'),(7066,'','default','Reference','','7.34'),(7067,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Displays a shortcut to the image share code that can be copied and pasted.','','7.34'),(7068,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Enabled, with field translation','','7.34'),(7069,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','If field translation is selected you can have per-field translation for each available language. You can find more options in the <a href=\"!url\">entity translation settings</a>.','','7.34'),(7070,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Translation post information','','7.34'),(7071,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Whether the translation authoring information should be hidden, shown, or replace the node\'s authoring information.','','7.34'),(7072,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Shown','','7.34'),(7073,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Replacing post information','','7.34'),(7074,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Filter comments per language','','7.34'),(7075,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Show only comments whose language matches content language.','','7.34'),(7076,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Synchronize translations','','7.34'),(7077,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Select which fields to synchronize for all translations of this content type.','','7.34'),(7078,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Standard node fields','','7.34'),(7079,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Configurable fields','','7.34'),(7080,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Promote','','7.34'),(7081,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Moderate','','7.34'),(7082,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Create also new revision for translations','','7.34'),(7083,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','albums','','7.34'),(7084,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Defaults','','7.34'),(7085,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Image gallery','','7.34'),(7086,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Gallery page','','7.34'),(7087,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Reply to','','7.34'),(7088,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Recent posts','','7.34'),(7089,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','.','','7.34'),(7090,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default',',','','7.34'),(7091,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Last Post','','7.34'),(7092,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default',' new','','7.34'),(7093,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Recent posts for %1','','7.34'),(7094,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Monthly archive','','7.34'),(7095,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','%1','','7.34'),(7096,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage&render=overlay','default','Front page feed','','7.34'),(7097,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage%2Ffields&render=overlay','default','Testo lungo e riassunto','','7.34'),(7098,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage%2Ffields&render=overlay','default','Area di testo con riassunto','','7.34'),(7099,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage%2Ffields&render=overlay','default','Testo','','7.34'),(7100,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage%2Ffields&render=overlay','default','Campo di testo','','7.34'),(7101,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage%2Ffields&render=overlay','default','Predefinito','','7.34'),(7102,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fpage%2Ffields&render=overlay','default','Anteprima','','7.34'),(7103,'/?q=it%2Fnode%2F56%2Ftranslate&render=overlay','default','Select translations for %title','','7.34'),(7104,'/?q=it%2Fnode%2F56%2Ftranslate&render=overlay','default','Alternatively, you can select existing nodes as translations of this one or remove nodes from this translation set. Only nodes that have the right language and don\'t belong to other translation set will be available here.','','7.34'),(7105,'/?q=it%2Fadmin%2Fstructure%2Fblock%2Fmanage%2Flocale%2Flanguage%2Fconfigure&destination=node%2F56&render=overlay','default','This block has generated content, only the title can be translated here.','','7.34'),(7106,'/?q=it%2Fadmin%2Fstructure%2Fblock%2Fmanage%2Flocale%2Flanguage%2Fconfigure&destination=node%2F56&render=overlay','default','Make this block translatable','','7.34'),(7107,'/?q=it%2Fadmin%2Fstructure%2Fblock%2Fmanage%2Flocale%2Flanguage%2Fconfigure&destination=node%2F56&render=overlay','default','Show this block for these languages','','7.34'),(7108,'/?q=it%2Fadmin%2Fstructure%2Fblock%2Fmanage%2Flocale%2Flanguage%2Fconfigure&destination=node%2F56&render=overlay','default','If no language is selected, block will show regardless of language.','','7.34'),(7109,'/?q=it%2Fadmin%2Fstructure%2Fblock%2Fmanage%2Flocale%2Flanguage%2Fconfigure&destination=node%2F56&render=overlay','default','Save and translate','','7.34'),(7110,'/?q=it%2Fadmin%2Fconfig&render=overlay','default','CTools CSS Cache','','7.59'),(7111,'/?q=it%2Fadmin%2Fconfig&render=overlay','default','Exists','','7.59'),(7112,'/?q=it%2Fadmin%2Fconfig&render=overlay','default','GeoPHP %version library installed at %path','','7.59'),(7113,'/?q=it%2Fadmin%2Fconfig&render=overlay','default','GeoPHP and GEOS','','7.59'),(7114,'/?q=it%2Fadmin%2Fconfig&render=overlay','default','GeoPHP library installed and OK. However, GEOS is was not found. While not required, you will see performance improvements if you install the GEOS PHP extension. See the following link for more information.','','7.59'),(7115,'/?q=it%2Fadmin%2Fconfig&render=overlay','default','Proj4JS Library version @version installed at %path.','','7.59'),(7116,'/?q=it%2Fadmin%2Fconfig%2Fregional%2Flanguage&render=overlay','default','<strong>Warning</strong>: Changing the default language may have unwanted effects on string translations. Check also the <a href=\"@configure-strings\">source language</a> for translations and read more about <a href=\"@i18n_string-help\">String translation</a>','','7.34'),(7117,'/?q=it%2Fadmin%2Fconfig%2Fregional%2Fi18n&render=overlay','default','Enabled languages only.','','7.34'),(7118,'/?q=it%2Fadmin%2Fconfig%2Fregional%2Fi18n&render=overlay','default','All defined languages will be allowed.','','7.34'),(7119,'/?q=it%2Fadmin%2Fconfig%2Fregional%2Fi18n&render=overlay','default','You can find some more per content type options on the <a href=\"@configure_content\">Content types administration page</a>.','','7.34'),(7120,'/?q=it%2Fadmin%2Fconfig%2Fregional%2Fi18n&render=overlay','default','Menus and menu items can be translated on the <a href=\"@configure_menus\">Menu administration page</a>.','','7.34'),(7121,'/?q=it%2Fadmin%2Fconfig%2Fregional%2Fi18n&render=overlay','default','To set up multilingual options for vocabularies go to <a href=\"@configure_taxonomy\">Taxonomy configuration page</a>.','','7.34'),(7122,'/?q=it%2Fadmin%2Fconfig%2Fregional%2Fi18n&render=overlay','default','To set up multilingual options for blocks go to the <a href=\"@configure_blocks\">Blocks administration page</a>.','','7.34'),(7123,'/?q=it%2Fadmin%2Fconfig%2Fregional%2Fi18n%2Fselect&render=overlay','default','Content to filter by language','','7.34'),(7124,'/?q=it%2Fadmin%2Fconfig%2Fregional%2Fi18n%2Fselect&render=overlay','default','Content selection mode','','7.34'),(7125,'/?q=it%2Fadmin%2Fconfig%2Fregional%2Fi18n%2Fselect&render=overlay','default','Enable for specific pages','','7.34'),(7126,'/?q=it%2Fadmin%2Fconfig%2Fregional%2Fi18n%2Fvariable&render=overlay','default','Select variables to be set for this realm.','','7.34'),(7127,'/?q=it%2Fadmin%2Fconfig%2Fregional%2Fi18n%2Fvariable&render=overlay','default','Currently selected variables are: <em>!variables</em>','','7.34'),(7128,'/?q=it%2Fadmin%2Fconfig%2Fregional%2Fi18n%2Fvariable&render=overlay','default','Multilingual node options','','7.34'),(7129,'/?q=it%2Fadmin%2Fconfig%2Fregional%2Fi18n%2Fvariable&render=overlay','default','Extended node options for multilingual sites.','','7.34'),(7130,'/?q=it%2Fadmin%2Fconfig%2Fregional%2Fi18n%2Fvariable&render=overlay','default','Node type settings','','7.34'),(7131,'/?q=it%2Fadmin%2Fconfig%2Fregional%2Fi18n%2Fvariable&render=overlay','default','Settings for each node type.','','7.34'),(7132,'/?q=it%2Fadmin%2Fconfig%2Fregional%2Fi18n%2Fvariable&render=overlay','default','Site information and maintenance mode','','7.34'),(7133,'/?q=it%2Fadmin%2Fconfig%2Fregional%2Fi18n%2Fvariable&render=overlay','default','Feed settings','','7.34'),(7134,'/?q=it%2Fadmin%2Fconfig%2Fregional%2Fi18n%2Fvariable&render=overlay','default','System performance','','7.34'),(7135,'/?q=it%2Fadmin%2Fconfig%2Fregional%2Fi18n%2Fvariable&render=overlay','default','Options related with cache, file compression and bandwidth optimization.','','7.34'),(7136,'/?q=it%2Fadmin%2Fconfig%2Fregional%2Fi18n%2Fvariable&render=overlay','default','User emails','','7.34'),(7137,'/?q=it%2Fadmin%2Fconfig%2Fregional%2Fi18n%2Fvariable&render=overlay','default','Variables that don\'t belong to any other group.','','7.34'),(7138,'/?q=it%2Fadmin%2Fconfig%2Fregional%2Fi18n%2Fvariable&render=overlay','default','Debug and development options.','','7.34'),(7139,'/?q=it%2Fadmin%2Fconfig%2Fregional%2Fi18n%2Fvariable&render=overlay','default','Variable','','7.34'),(7140,'/?q=it%2Fadmin%2Fconfig%2Fregional%2Fi18n%2Fvariable&render=overlay','default','Variables that contain metadata about the variable system.','','7.34'),(7141,'/?q=it%2Fadmin%2Fconfig%2Fregional%2Fi18n%2Fvariable&render=overlay','default','Forum settings','','7.34'),(7142,'/?q=it%2Fadmin%2Fconfig%2Fregional%2Fi18n%2Fvariable&render=overlay','default','Mixed options for multilingual sites.','','7.34'),(7143,'/?q=it%2Fadmin%2Fconfig%2Fregional%2Fi18n%2Fstrings&render=overlay','default','When translating user defined strings that have a text 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.','','7.34'),(7144,'/?q=it%2Fadmin%2Fconfig%2Fregional%2Fi18n%2Fstrings&render=overlay','default','As a general rule <strong>do not allow any filtered text to be translated unless the translators already have access to that text 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.','','7.34'),(7145,'/?q=it%2Fadmin%2Fconfig%2Fregional%2Fi18n%2Fstrings&render=overlay','default','<strong>Important:</strong> After disallowing some text format, use the <a href=\"@refresh-strings\">refresh strings</a> page so forbidden strings are deleted and not allowed anymore for translators.','','7.34'),(7146,'/?q=it%2Fadmin%2Fconfig%2Fregional%2Fi18n_translation&render=overlay','default','No translation sets available.','','7.34'),(7147,'/?q=it%2Fadmin%2Fconfig%2Fsystem%2Fsite-information&render=overlay','default','This is a @name variable.','','7.34'),(7148,'/?q=it%2Fadmin%2Fconfig%2Fsystem%2Fsite-information&render=overlay','default','There are %name variables in this form','','7.34'),(7149,'/?q=it%2Fadmin%2Fconfig%2Fsystem%2Fsite-information&render=overlay','default','Check you are editing the variables for the right %realm value or select the desired %realm.','','7.34'),(7150,'blocks:block:1:body','blocks','<p align=\"justify\">The  <strong>MORSea</strong> (<em>Marine Observatory in the Ross Sea</em>), project funded by<a href=\"http://www.pnra.it/\"> P.N.R.A.</a>(<em>National Research Program in Antarctica</em>), focuses on the management of the marine observatory established since 1994 in the Ross Sea in the framework of CLIMA (Climatic Long-term Interaction for Mass balance in Antarctica p.i. G. Spezie) and ABIOCLEAR (<em>Antartic BIOgeochemical cycles-Climatic and. palEoclimAtic Recostructions</em> p.i. M. Ravaioli) projects. After the ending of these projects in 2010, the National Scientific Commission for Antarctica (<a href=\"http://www.csna.it/\">CSNA</a>) highlighted the importance of supporting activities connected to a network of four moorings in the Ross Sea. The moorings, previously named B, D, G and L, play an important role in the study of climate change and the interannual variability of the physical and biogeochemical processes in the water column.\r\nMooring activities have recently been associated to other oceanographic measurements conducted on the basis of the \"ship of opportunity\" concept. Measurements of sea surface temperature and salinity (SST and SSS respectively), launches of XBT and  XCTD probes, deployment of drifters and floats have been carried on without any need of additional ship-time.\r\nAll these activities were conducted up to 2009 in the framework of previous PNRA project as CLIMA and Southern Ocean Chokepoints Italian Contribution (SOChIC) and during last years have been introduced in the MORSea project in order to keep the continuity of the precious time series acquired since 1994\r\nIn Italy the project activities essentially concern the validation and analysis of the acquired data and the dissemination of scientific results achieved.</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/MooringRossSea2014.png\" style=\"height:495px; width:660px\" /></div>','block:1:body','1'),(7151,'/?q=it/admin/structure/block/manage/block/1/translate&render=overlay','default','Translate !name','','7.34'),(7152,'/?q=it/admin/structure/block/manage/block/1/translate&render=overlay','default','(source)','','7.34'),(7153,'/?q=it/admin/structure/block/manage/block/1/translate&render=overlay','default','not translated','','7.34'),(7154,'/?q=it/admin/structure/block/manage/block/1/translate&render=overlay','default','translate','','7.34'),(7155,'/?q=it%2Fadmin%2Fstructure%2Fblock%2Fmanage%2Fblock%2F1%2Ftranslate%2Fit&destination=admin%2Fstructure%2Fblock%2Fmanage%2Fblock%2F1%2Ftranslate&render=overlay','default','Translate to !language','','7.34'),(7156,'/?q=it%2Fadmin%2Fstructure%2Fblock%2Fmanage%2Fblock%2F1%2Ftranslate%2Fit&destination=admin%2Fstructure%2Fblock%2Fmanage%2Fblock%2F1%2Ftranslate&render=overlay','default','Save translation','','7.34'),(7157,'/?q=it%2Fadmin%2Fstructure%2Fblock%2Fmanage%2Fblock%2F1%2Ftranslate%2Fit&destination=admin%2Fstructure%2Fblock%2Fmanage%2Fblock%2F1%2Ftranslate&render=overlay','default','Text format: @name','','7.34'),(7158,'/?q=it%2Fadmin%2Fstructure%2Fblock%2Fmanage%2Fblock%2F1%2Ftranslate%2Fit&destination=admin%2Fstructure%2Fblock%2Fmanage%2Fblock%2F1%2Ftranslate&render=overlay&render=overlay','default','A translation was saved successfully.','','7.34'),(7159,'/?q=it/admin/structure/block/manage/block/1/translate&render=overlay','default','translated','','7.34'),(7160,'blocks:block:2:body','blocks','<p align=\"justify\">The  <strong>MORSea</strong> (<em>Marine Observatory in the Ross Sea</em>), project funded by<a href=\"http://www.pnra.it/\"> P.N.R.A.</a>(<em>National Research Program in Antarctica</em>), focuses on the management of the marine observatory established since 1994 in the Ross Sea in the framework of CLIMA (Climatic Long-term Interaction for Mass balance in Antarctica p.i. G. Spezie) and ABIOCLEAR (<em>Antartic BIOgeochemical cycles-Climatic and. palEoclimAtic Recostructions</em> p.i. M. Ravaioli) projects. After the ending of these projects in 2010, the National Scientific Commission for Antarctica (<a href=\"http://www.csna.it/\">CSNA</a>) highlighted the importance of supporting activities connected to a network of four moorings in the Ross Sea. The moorings, previously named B, D, G and L, play an important role in the study of climate change and the interannual variability of the physical and biogeochemical processes in the water column.\r\nMooring activities have recently been associated to other oceanographic measurements conducted on the basis of the \"ship of opportunity\" concept. Measurements of sea surface temperature and salinity (SST and SSS respectively), launches of XBT and  XCTD probes, deployment of drifters and floats have been carried on without any need of additional ship-time.\r\nAll these activities were conducted up to 2009 in the framework of previous PNRA project as CLIMA and Southern Ocean Chokepoints Italian Contribution (SOChIC) and during last years have been introduced in the MORSea project in order to keep the continuity of the precious time series acquired since 1994\r\nIn Italy the project activities essentially concern the validation and analysis of the acquired data and the dissemination of scientific results achieved.</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/MooringRossSea2014.png\" style=\"height:495px; width:660px\" /></div>','block:2:body','1'),(7161,'','default','An error occurred while processing @operation with arguments : @args','','none'),(7162,'','default','Hong Kong','','none'),(7163,'','default','Macau','','none'),(7164,'','default','District of Columbia','','none'),(7165,'/?q=it%2Fadmin%2Fstructure%2Fmenu%2Fmanage%2Fmain-menu%2Fedit&render=overlay','default','Translation mode','','7.34'),(7166,'/?q=it%2Fadmin%2Fstructure%2Fmenu%2Fmanage%2Fmain-menu%2Fedit&render=overlay','default','No multilingual options for @item_name_multiple. Only the @container_name will be translatable.','','7.34'),(7167,'/?q=it%2Fadmin%2Fstructure%2Fmenu%2Fmanage%2Fmain-menu%2Fedit&render=overlay','default','Localize. @item_name_multiple_capitalized are common for all languages, but their name and description may be localized.','','7.34'),(7168,'/?q=it%2Fadmin%2Fstructure%2Fmenu%2Fmanage%2Fmain-menu%2Fedit&render=overlay','default','Translate. Different @item_name_multiple will be allowed for each language and they can be translated.','','7.34'),(7169,'/?q=it%2Fadmin%2Fstructure%2Fmenu%2Fmanage%2Fmain-menu%2Fedit&render=overlay','default','Translate and Localize. @item_name_multiple_capitalized with language will allow translations. @item_name_multiple_capitalized without language will be localized.','','7.34'),(7170,'/?q=it%2Fadmin%2Fstructure%2Fmenu%2Fmanage%2Fmain-menu%2Fedit&render=overlay','default','Fixed Language. @item_name_multiple_capitalized will have a global language and they will only show up for pages in that language.','','7.34'),(7171,'/?q=it%2Fadmin%2Fstructure%2Fmenu%2Fmanage%2Fmain-menu%2Fedit&render=overlay','default','For localizable elements, to have all items available for translation visit the <a href=\"@locale-refresh\">translation refresh</a> page.','','7.34'),(7172,'/?q=it%2Fadmin%2Fstructure%2Fmenu%2Fmanage%2Fmain-menu%2Fedit&render=overlay','default','Predefined language. If set, it will apply to all items.','','7.34'),(7173,'/?q=it%2Fadmin%2Fstructure%2Fmenu%2Fmanage%2Fmain-menu%2Fedit&render=overlay','default','- Select a language -','','7.34'),(7174,'/?q=it%2Fadmin%2Fstructure%2Fmenu%2Fitem%2F218%2Ftranslate&render=overlay','default','Variable realm','','7.34'),(7175,'/?q=it%2Fadmin%2Fstructure%2Fmenu%2Fitem%2F218%2Ftranslate&render=overlay','default','Text length','','7.34'),(7176,'/?q=it%2Fadmin%2Fstructure%2Fmenu%2Fitem%2F218%2Ftranslate&render=overlay','default','Drupal path','','7.34'),(7177,'/?q=it%2Fadmin%2Fstructure%2Fmenu%2Fitem%2F218%2Ftranslate&render=overlay','default','File path','','7.34'),(7178,'/?q=it%2Fadmin%2Fstructure%2Fmenu%2Fitem%2F218%2Ftranslate&render=overlay','default','Day of week','','7.34'),(7179,'/?q=it%2Fadmin%2Fstructure%2Fmenu%2Fitem%2F218%2Ftranslate&render=overlay','default','Theme','','7.34'),(7180,'/?q=it%2Fadmin%2Fstructure%2Fmenu%2Fitem%2F218%2Ftranslate&render=overlay','default','Time interval','','7.34'),(7181,'/?q=it%2Fadmin%2Fstructure%2Fmenu%2Fitem%2F218%2Ftranslate&render=overlay','default','User mail text','','7.34'),(7182,'/?q=it%2Fadmin%2Fstructure%2Fmenu%2Fitem%2F218%2Ftranslate&render=overlay','default','Array','','7.34'),(7183,'/?q=it%2Fadmin%2Fstructure%2Fmenu%2Fitem%2F218%2Ftranslate&render=overlay','default','Properties','','7.34'),(7184,'/?q=it%2Fadmin%2Fstructure%2Fmenu%2Fitem%2F218%2Ftranslate&render=overlay','default','Multiple','','7.34'),(7185,'/?q=it%2Fadmin%2Fstructure%2Fmenu%2Fitem%2F218%2Ftranslate&render=overlay','default','Mail text','','7.34'),(7186,'/?q=it%2Fadmin%2Fstructure%2Fmenu%2Fitem%2F218%2Ftranslate&render=overlay','default','Mail parts','','7.34'),(7187,'/?q=it%2Fadmin%2Fstructure%2Fmenu%2Fitem%2F218%2Ftranslate&render=overlay','default','Formatted text','','7.34'),(7188,'/?q=it%2Fadmin%2Fstructure%2Fmenu%2Fitem%2F218%2Ftranslate&render=overlay','default','Multiple language','','7.34'),(7189,'/?q=it%2Fadmin%2Fstructure%2Fmenu%2Fmanage%2Fmain-menu%2Ftranslate%2Fit&destination=admin%2Fstructure%2Fmenu%2Fmanage%2Fmain-menu%2Ftranslate&render=overlay&render=overlay','default','@count translations were saved successfully.','','7.34'),(7190,'/?q=it%2Fadmin%2Fstructure%2Fmenu%2Fitem%2F429%2Ftranslate&render=overlay','default','Translations of menu item %title','','7.34'),(7191,'/?q=it%2Fadmin%2Fstructure%2Fmenu%2Fitem%2F429%2Ftranslate&render=overlay','default','Enter items that will be considered as translations of each other.','','7.34'),(7192,'/?q=it%2Fadmin%2Fstructure%2Fmenu%2Fmanage%2Fmain-menu%2Fadd&translation=429&target=it&destination=admin%2Fstructure%2Fmenu%2Fitem%2F429%2Ftranslate&render=overlay','default','This item belongs to a multilingual menu. You can set a language for it.','','7.34'),(7193,'/?q=it%2Fadmin%2Fstructure%2Fmenu%2Fmanage%2Fmain-menu%2Fadd&translation=429&target=it&destination=admin%2Fstructure%2Fmenu%2Fitem%2F429%2Ftranslate&render=overlay','default','%language translation of menu item %title','','7.34'),(7194,'/?q=it/admin/structure/menu/item/429/translate&render=overlay&render=overlay','default','The item translation has been saved.','','7.34'),(7196,'/?q=it%2Fadmin%2Fstructure%2Fmenu%2Fitem%2F384%2Ftranslate%2Fit&destination=admin%2Fstructure%2Fmenu%2Fitem%2F384%2Ftranslate&render=overlay','default','Created string %location for text group %textgroup: %string','','7.34'),(7197,'/?q=it%2Fadmin%2Fstructure%2Fmenu%2Fitem%2F384&render=overlay','default','This menu item belongs to a node, so it will have the same language as the node and cannot be localized.','','7.34'),(7198,'/?q=it/node/29','default','Re-arrange','','7.34'),(7199,'/?q=admin%2Fstructure%2Fviews%2Fview%2Fmoorings_gallery_2012%2Fedit%2Fblock&destination=node%2F28&render=overlay&render=overlay','default','Moorings 2012-2014 (Deployed 2012)','','7.34'),(7200,'/?q=admin%2Fstructure%2Fviews%2Fview%2Fmoorings_gallery_2014%2Fedit%2Fblock&destination=node%2F28&render=overlay&render=overlay','default','Moorings 2014-2016 (Deployed 2014)','','7.34'),(7201,'/?q=it/node/28','default','Edit view','','7.34'),(7202,'field:comment_body:comment_node_photo_moorings_2010:label','field','Comment','comment_body:comment_node_photo_moorings_2010:label','1'),(7203,'node:type:photo_moorings_2010:name','node','Photo Moorings 2010','type:photo_moorings_2010:name','1'),(7204,'node:type:photo_moorings_2010:title_label','node','Photo Moorings 2010','type:photo_moorings_2010:title_label','1'),(7205,'field:body:photo_moorings_2010:label','field','Body','body:photo_moorings_2010:label','1'),(7206,'field:field_photo_moorings_2010:photo_moorings_2010:label','field','Photo Moorings 2010','field_photo_moorings_2010:photo_moorings_2010:label','1'),(7207,'/?q=it%2Fadmin%2Fstructure%2Ftypes%2Fmanage%2Fphoto-moorings-2010&render=overlay','default','These will be available only when you enable Multilingual support in Publishing options above.','','7.34'),(7208,'','default','Do nothing','','none'),(7209,'','default','Pitcairn Islands','','none'),(7210,'','default','Lock','','none'),(7211,'/?q=it','default','Album Photo Access','','7.59'),(7212,'/?q=it','default','Access Type','','7.59'),(7213,'/?q=it','default','This albums Access type.','','7.59'),(7214,'/?q=it','default','The Access Type associated with this album.','','7.59'),(7215,'/?q=it','default','Access to the Access Type associated with this album.','','7.59'),(7216,'/?q=it/rss.xml','default','Recent images','','7.59'),(7217,'','default','Image weight','','none'),(7218,'/?q=it/node/4','default','Changed date','','7.59'),(7219,'/?q=it/node/4','default','Changed year + month','','7.59'),(7220,'/?q=it/node/4','default','Changed year','','7.59'),(7221,'/?q=it/node/4','default','Changed month','','7.59'),(7222,'/?q=it/node/4','default','Changed day','','7.59'),(7223,'/?q=it/node/4','default','Changed week','','7.59'),(7224,'/?q=it/node/4','default','Version Count','','7.59'),(7225,'/?q=it/node/4','default','The total count of versions/revisions of a certain node.','','7.59'),(7226,'/?q=it/node/4','default','Dropdown links','','7.59'),(7227,'/?q=it/node/4','default','Displays fields in a dropdown list, like on the views listing page.','','7.59'),(7228,'/?q=it/node/4','default','Combine multiple fields together and search by them.','','7.59'),(7229,'/?q=it/node/4','default','Determines if a translation exists for a particular translation.','','7.59'),(7230,'/?q=it/node/4','default','Specific language','','7.59'),(7231,'/?q=it/node/4','default','Sort by a specific language that the content is in.','','7.59'),(7232,'/?q=it/node/4','default','Has taxonomy term ID with depth (using joins)','','7.59'),(7233,'/?q=it/node/4','default','Has taxonomy terms with depth (using joins)','','7.59'),(7234,'/?q=it/rss.xml','default','GMap is unable to save the marker bundle. Please check gmap_markers.js permissions!','','7.59'),(7235,'','default','Links','','none'),(7236,'','default','Provider','','none'),(7237,'','default','Dependencies','','none'),(7238,'misc/drupal.js','default','CustomMessage: !customMessage','','none'),(7239,'/?q=it%2Fadmin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','default','Set custom language as default for new content.','','7.59'),(7240,'/?q=it%2Fadmin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','default','Custom default language','','7.59'),(7241,'/?q=it%2Fadmin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','default','Current language','','7.59'),(7242,'/?q=it%2Fadmin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','default','Class to use for the text group','','7.59'),(7243,'/?q=it%2Fadmin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','default','Determines which the class will be use for string translation in the text group.','','7.59'),(7244,'/?q=it%2Fadmin%2Fconfig&render=overlay','default','Database 4 byte UTF-8 support','','7.59'),(7245,'/?q=it%2Fadmin%2Fconfig&render=overlay','default','4 byte UTF-8 for @driver is disabled. See the <a href=\"@url\">documentation on adding 4 byte UTF-8 support</a> for more information.','','7.59'),(7246,'/?q=it/rss.xml','default','Realm variables','','7.59'),(7247,'/?q=it/rss.xml','default','Contact categories','','7.59'),(7248,'/?q=it/rss.xml','default','Field Bases','','7.59'),(7249,'/?q=it/rss.xml','default','Field Instances','','7.59'),(7250,'','default','General information','','none'),(7251,'','default','Variants','','none'),(7252,'','default','lines','','none'),(7253,'misc/ajax.js','default','The response failed verification so will not be processed.','','none'),(7254,'misc/ajax.js','default','The callback URL is not local and not trusted: !url','','none');
/*!40000 ALTER TABLE `locales_source` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `locales_target`
--

DROP TABLE IF EXISTS `locales_target`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `locales_target` (
  `lid` int(11) NOT NULL DEFAULT 0 COMMENT 'Source string ID. References locales_source.lid.',
  `translation` blob NOT NULL COMMENT 'Translation string value in this language.',
  `language` varchar(12) NOT NULL DEFAULT '' COMMENT 'Language code. References languages.language.',
  `plid` int(11) NOT NULL DEFAULT 0 COMMENT 'Parent lid (lid of the previous string in the plural chain) in case of plural strings. References locales_source.lid.',
  `plural` int(11) NOT NULL DEFAULT 0 COMMENT 'Plural index number in case of plural strings.',
  `l10n_status` int(11) NOT NULL DEFAULT 0,
  `i18n_status` int(11) NOT NULL DEFAULT 0 COMMENT 'A boolean indicating whether this translation needs to be updated.',
  PRIMARY KEY (`language`,`lid`,`plural`),
  KEY `lid` (`lid`),
  KEY `plid` (`plid`),
  KEY `plural` (`plural`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores translated versions of strings.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `locales_target`
--

LOCK TABLES `locales_target` WRITE;
/*!40000 ALTER TABLE `locales_target` DISABLE KEYS */;
INSERT INTO `locales_target` VALUES (1,'Si è verificato un errore HTTP in AJAX.','it',0,0,0,0),(2,'Codice HTTP di risposta: !status','it',0,0,0,0),(3,'Una richiesta AJAX HTTP è terminata in modo anomalo.','it',0,0,0,0),(4,'Di seguito le informazioni di debug.','it',0,0,0,0),(5,'Percorso: !uri','it',0,0,0,0),(6,'StatusText: !statusText','it',0,0,0,0),(7,'ResponseText: !responseText','it',0,0,0,0),(8,'ReadyState: !readyState','it',0,0,0,0),(9,'Caricamento','it',0,0,0,0),(10,'(scheda attiva)','it',0,0,0,0),(11,'Nascondi','it',0,0,0,0),(12,'Mostra','it',0,0,0,0),(13,'Riordina le righe utilizzando il peso numerico invece del trascinamento.','it',0,0,0,0),(14,'Visualizza i pesi delle righe','it',0,0,0,0),(15,'Nascondi i pesi delle righe','it',0,0,0,0),(16,'Trascina per riordinare','it',0,0,0,0),(17,'I cambiamenti fatti a questa tabella non saranno salvati finchè il form non viene inviato.','it',0,0,0,0),(18,'Finestra di dialogo @title','it',0,0,0,0),(19,'Configura','it',0,0,0,0),(20,'Mostra scorciatoie','it',0,0,0,0),(21,'Nascondi scorciatoie','it',0,0,0,0),(22,'Home','it',0,0,0,0),(23,'Interfaccia utente','it',0,0,0,0),(24,'Titolo','it',0,0,0,0),(25,'Corpo','it',0,0,0,0),(26,'Seguente','it',0,0,0,0),(27,'utente','it',0,0,0,0),(28,'Pagine','it',0,0,0,0),(29,'Salva configurazione','it',0,0,0,0),(30,'Ripristina le impostazioni predefinite','it',0,0,0,0),(31,'elimina','it',0,0,0,0),(32,'Stato','it',0,0,0,0),(33,'Crea un nuovo profilo utente.','it',0,0,0,0),(34,'Richiedi una nuova password tramite e-mail.','it',0,0,0,0),(35,'Prefisso','it',0,0,0,0),(36,'Suffisso','it',0,0,0,0),(37,'approva','it',0,0,0,0),(38,'E-mail','it',0,0,0,0),(39,'Approva','it',0,0,0,0),(40,'Elimina','it',0,0,0,0),(41,'Operazioni','it',0,0,0,0),(42,'Contenuto','it',0,0,0,0),(43,'Nome utente','it',0,0,0,0),(44,'Indirizzo e-mail','it',0,0,0,0),(45,'contenuto','it',0,0,0,0),(46,'Sviluppo','it',0,0,0,0),(47,'Gruppo','it',0,0,0,0),(48,'Tipo','it',0,0,0,0),(49,'Autore','it',0,0,0,0),(50,'Risposte','it',0,0,0,0),(51,'Chiuso','it',0,0,0,0),(52,'sì','it',0,0,0,0),(53,'Elenco','it',0,0,0,0),(54,'Oggetto','it',0,0,0,0),(55,'chiuso','it',0,0,0,0),(56,'Azioni','it',0,0,0,0),(57,'disattivato','it',0,0,0,0),(58,'Conferma','it',0,0,0,0),(59,'Annulla','it',0,0,0,0),(60,'Elimina','it',0,0,0,0),(61,'amministratore','it',0,0,0,0),(62,'Descrizione','it',0,0,0,0),(63,'Lingua','it',0,0,0,0),(64,'Feed RSS','it',0,0,0,0),(65,'Abilita','it',0,0,0,0),(66,'Disattiva','it',0,0,0,0),(67,'Spiegazioni o linee guida per la pubblicazione','it',0,0,0,0),(68,'Articolo','it',0,0,0,0),(69,'Disattivato','it',0,0,0,0),(70,'Attivato','it',0,0,0,0),(71,'Amministrazione','it',0,0,0,0),(72,'Commenti','it',0,0,0,0),(73,'Altro','it',0,0,0,0),(74,'non verificato','it',0,0,0,0),(75,'Azione','it',0,0,0,0),(76,'Ultimo aggiornamento','it',0,0,0,0),(77,'nuovo','it',0,0,0,0),(78,'errore','it',0,0,0,0),(79,'Etichette','it',0,0,0,0),(80,'Titolo del blocco','it',0,0,0,0),(81,'Il titolo del blocco, come visto dall\'utente.','it',0,0,0,0),(82,'Tassonomia','it',0,0,0,0),(83,'Sì','it',0,0,0,0),(84,'No','it',0,0,0,0),(85,'cron','it',0,0,0,0),(86,'Laguna azzurra (Predefinito)','it',0,0,0,0),(87,'Cenere','it',0,0,0,0),(88,'Acquamarina','it',0,0,0,0),(89,'Cioccolato belga','it',0,0,0,0),(90,'Blu marino','it',0,0,0,0),(91,'Esplosione di agrumi','it',0,0,0,0),(92,'Giorno freddo','it',0,0,0,0),(93,'Raggio verde','it',0,0,0,0),(94,'Mediterraneo','it',0,0,0,0),(95,'Mercurio','it',0,0,0,0),(96,'Notturno','it',0,0,0,0),(97,'Olivia','it',0,0,0,0),(98,'Plastica rosa','it',0,0,0,0),(99,'Pomodoro lucido','it',0,0,0,0),(100,'Foglia di tè','it',0,0,0,0),(101,'Tipi di contenuto','it',0,0,0,0),(102,'Homepage','it',0,0,0,0),(103,'Home page','it',0,0,0,0),(104,'Categorie','it',0,0,0,0),(105,'Scarica','it',0,0,0,0),(106,'Versione','it',0,0,0,0),(107,'mostra','it',0,0,0,0),(108,'aggiornato','it',0,0,0,0),(109,'Panoramica','it',0,0,0,0),(110,'Informazioni sul file','it',0,0,0,0),(111,'File','it',0,0,0,0),(112,'Opzioni avanzate','it',0,0,0,0),(113,'Note di rilascio','it',0,0,0,0),(114,'Modifica','it',0,0,0,0),(115,'Data','it',0,0,0,0),(116,'Dimensione','it',0,0,0,0),(117,'Cerca','it',0,0,0,0),(118,'Ripristina','it',0,0,0,0),(119,'Giornalmente','it',0,0,0,0),(120,'Settimanalmente','it',0,0,0,0),(121,'Nessuno','it',0,0,0,0),(122,'Impostazioni di visualizzazione','it',0,0,0,0),(123,'L\'operazione non è reversibile.','it',0,0,0,0),(124,'Test','it',0,0,0,0),(125,'Numero','it',0,0,0,0),(126,'Messaggio','it',0,0,0,0),(127,'Nessun messaggio di log disponibile.','it',0,0,0,0),(128,'Password','it',0,0,0,0),(129,'- Nessuno -','it',0,0,0,0),(130,'Peso','it',0,0,0,0),(131,'Le opzioni di configurazione sono state salvate.','it',0,0,0,0),(132,'Link','it',0,0,0,0),(133,'Immagine','it',0,0,0,0),(134,'Centro','it',0,0,0,0),(135,'Testo di aiuto','it',0,0,0,0),(136,'Tipi','it',0,0,0,0),(137,'Obbligatorio','it',0,0,0,0),(138,'radice','it',0,0,0,0),(139,'Genitore','it',0,0,0,0),(140,'Le pagine di un dato livello sono ordinate prima per peso e poi per titolo.','it',0,0,0,0),(141,'nessuno','it',0,0,0,0),(142,'Categoria','it',0,0,0,0),(143,'Aggiungi un contenitore','it',0,0,0,0),(144,'Impostazioni','it',0,0,0,0),(145,'Aggiungi categoria','it',0,0,0,0),(146,'Nome','it',0,0,0,0),(147,'modifica il contenitore','it',0,0,0,0),(148,'modifica','it',0,0,0,0),(149,'Nessuna categoria disponibile.','it',0,0,0,0),(150,'‹ ','it',0,0,0,0),(151,'Vai alla pagina precedente','it',0,0,0,0),(152,'su','it',0,0,0,0),(153,'Vai alla pagina padre','it',0,0,0,0),(154,' ›','it',0,0,0,0),(155,'Vai alla pagina successiva','it',0,0,0,0),(156,'Importa','it',0,0,0,0),(157,'Book','it',0,0,0,0),(158,'Esporta','it',0,0,0,0),(159,'Termine della tassonomia','it',0,0,0,0),(160,'Campo','it',0,0,0,0),(161,'Struttura','it',0,0,0,0),(162,'Etichetta','it',0,0,0,0),(163,'Anteprima','it',0,0,0,0),(164,'Salva','it',0,0,0,0),(165,'Sessione aperta per %name.','it',0,0,0,0),(166,'Aiuto','it',0,0,0,0),(167,'Predefinito','it',0,0,0,0),(168,'Sommario','it',0,0,0,0),(169,'Aggiorna','it',0,0,0,0),(170,'Aperto','it',0,0,0,0),(171,'Domenica','it',0,0,0,0),(172,'Lunedì','it',0,0,0,0),(173,'Martedì','it',0,0,0,0),(174,'Mercoledì','it',0,0,0,0),(175,'Giovedì','it',0,0,0,0),(176,'Venerdì','it',0,0,0,0),(177,'Sabato','it',0,0,0,0),(178,'Core','it',0,0,0,0),(179,'Data e ora','it',0,0,0,0),(180,'Aggiungi','it',0,0,0,0),(181,'Visualizza','it',0,0,0,0),(182,'Formato','it',0,0,0,0),(183,'Cronologia','it',0,0,0,0),(184,'URL','it',0,0,0,0),(185,'Percorso','it',0,0,0,0),(186,'Nome file','it',0,0,0,0),(187,'Vocabolari','it',0,0,0,0),(188,'Moduli','it',0,0,0,0),(189,'Pulisci indice','it',0,0,0,0),(190,'Discussione generale','it',0,0,0,0),(191,'modifica forum','it',0,0,0,0),(192,'Nome del forum','it',0,0,0,0),(193,'forum','it',0,0,0,0),(194,'Sei sicuro di voler eliminare il forum %name?','it',0,0,0,0),(195,'Aggiorna','it',0,0,0,0),(196,'Regione','it',0,0,0,0),(197,'Visibile','it',0,0,0,0),(198,'Ancora','it',0,0,0,0),(199,'Visualizzazione','it',0,0,0,0),(200,'Menu','it',0,0,0,0),(201,'Impostazioni avanzate','it',0,0,0,0),(202,'risultati','it',0,0,0,0),(203,'ricerca','it',0,0,0,0),(204,'Anteprima','it',0,0,0,0),(205,'mai','it',0,0,0,0),(206,'Il nome utente %name non esiste.','it',0,0,0,0),(207,'e-mail','it',0,0,0,0),(208,'Aggiornato','it',0,0,0,0),(209,'azioni','it',0,0,0,0),(210,'Testo','it',0,0,0,0),(211,'aggregatore','it',0,0,0,0),(212,'leggi tutto','it',0,0,0,0),(213,'Intervallo di aggiornamento','it',0,0,0,0),(214,'L\'URL completo della fonte.','it',0,0,0,0),(215,'Aggiungi Forum','it',0,0,0,0),(216,'Aggiungi termine','it',0,0,0,0),(217,'tema','it',0,0,0,0),(218,'nessun\'anteprima','it',0,0,0,0),(219,'Timestamp','it',0,0,0,0),(220,'Parole chiave','it',0,0,0,0),(221,'Impostazioni del log degli accessi','it',0,0,0,0),(222,'Attiva il log degli accessi','it',0,0,0,0),(223,'Elimina il log degli accessi più vecchi di','it',0,0,0,0),(224,'Anteprima commento','it',0,0,0,0),(225,'-nessuno-','it',0,0,0,0),(226,'Non assegnare','it',0,0,0,0),(227,'Statistiche','it',0,0,0,0),(228,'Ricerca avanzata','it',0,0,0,0),(229,'Non sei autorizzato ad accedere a questa pagina.','it',0,0,0,0),(230,'Sconosciuto','it',0,0,0,0),(231,'Allegato','it',0,0,0,0),(232,'n/d','it',0,0,0,0),(233,'Carica','it',0,0,0,0),(234,'Ritratto','it',0,0,0,0),(235,'tipo','it',0,0,0,0),(236,'Trova contenuto','it',0,0,0,0),(237,'Tipo database','it',0,0,0,0),(238,'Utente','it',0,0,0,0),(239,'Tipo di contenuto','it',0,0,0,0),(240,'azione','it',0,0,0,0),(241,'Continua','it',0,0,0,0),(242,'E-mail','it',0,0,0,0),(243,'File','it',0,0,0,0),(244,'file','it',0,0,0,0),(245,'stato','it',0,0,0,0),(246,'ID utente','it',0,0,0,0),(247,'Errore','it',0,0,0,0),(248,'Opzioni','it',0,0,0,0),(249,'Contatto','it',0,0,0,0),(250,'no','it',0,0,0,0),(251,'Creato','it',0,0,0,0),(252,'Nodo','it',0,0,0,0),(253,'E-mail inviata a %recipient','it',0,0,0,0),(254,'Impossibile inviare e-mail a %recipient','it',0,0,0,0),(255,'L\'oggetto del messaggio.','it',0,0,0,0),(256,'Crea','it',0,0,0,0),(257,'Si vuole davvero eliminare %title?','it',0,0,0,0),(258,'Salva categorie','it',0,0,0,0),(259,'Voce padre','it',0,0,0,0),(260,'Domanda','it',0,0,0,0),(261,'Aggiungi pagina figlio','it',0,0,0,0),(262,'Versione stampabile','it',0,0,0,0),(263,'Tipo di contenuto per le pagine figlio','it',0,0,0,0),(264,'Opzioni di aggiornamento','it',0,0,0,0),(265,'Rimuovi dal sommario','it',0,0,0,0),(266,'Formato di esportazione sconosciuto.','it',0,0,0,0),(267,'Tutti','it',0,0,0,0),(268,'Attivo','it',0,0,0,0),(269,'Fatto','it',0,0,0,0),(270,'Ultimo contenuto','it',0,0,0,0),(271,'Accesso negato','it',0,0,0,0),(272,'Anno','it',0,0,0,0),(273,'Formato data','it',0,0,0,0),(274,'Aggiungi contenuto','it',0,0,0,0),(275,'Titolo della pagina','it',0,0,0,0),(276,'Blocco','it',0,0,0,0),(277,'Aggiungi blocco','it',0,0,0,0),(278,'Pagina','it',0,0,0,0),(279,'RSS','it',0,0,0,0),(280,'1 ora','it',0,0,0,0),(281,'@count ore','it',280,1,0,0),(282,'1 giorno','it',0,0,0,0),(283,'@count giorni','it',282,1,0,0),(284,'Configurazione salvata.','it',0,0,0,0),(285,'Termini di tassonomia','it',0,0,0,0),(286,'Logo','it',0,0,0,0),(287,'Nome del sito','it',0,0,0,0),(288,'Slogan del sito','it',0,0,0,0),(289,'Buono','it',0,0,0,0),(290,'php','it',0,0,0,0),(291,'Solo gli amministratori del sito possono creare nuovi profili utente.','it',0,0,0,0),(292,'Drupal','it',0,0,0,0),(293,'Non trovato','it',0,0,0,0),(294,'Url','it',0,0,0,0),(295,'PHP','it',0,0,0,0),(296,'Host','it',0,0,0,0),(297,'PostgreSQL','it',0,0,0,0),(298,'Aggiornamenti disponibili','it',0,0,0,0),(299,'Controllo manuale degli aggiornamenti','it',0,0,0,0),(300,'Mai','it',0,0,0,0),(301,'Controlla manualmente','it',0,0,0,0),(302,'Aggiornato','it',0,0,0,0),(303,'Aggiornamento disponibile','it',0,0,0,0),(304,'Stato degli aggiornamenti del core di Drupal','it',0,0,0,0),(305,'Non aggiornato','it',0,0,0,0),(306,'Intestazione','it',0,0,0,0),(307,'Barra laterale sinistra','it',0,0,0,0),(308,'Barra laterale destra','it',0,0,0,0),(309,'Piè di pagina','it',0,0,0,0),(310,'In linea','it',0,0,0,0),(311,'Destinatari','it',0,0,0,0),(312,'Selezionato','it',0,0,0,0),(313,'Imposta questo su <em>Sì</em> e vuoi che questa categoria sia quella selezionata come impostazione predefinita.','it',0,0,0,0),(314,'Devi inserire una categoria.','it',0,0,0,0),(315,'Sei sicuro di voler eliminare la categoria %category?','it',0,0,0,0),(316,'La categoria %category è stata eliminata.','it',0,0,0,0),(317,'Il tuo nome','it',0,0,0,0),(318,'Il tuo indirizzo e-mail','it',0,0,0,0),(319,'Invia e-mail','it',0,0,0,0),(320,'Devi selezionare una categoria valida.','it',0,0,0,0),(321,'Devi inserire un indirizzo e-mail valido.','it',0,0,0,0),(322,'[!category] !subject','it',0,0,0,0),(323,'Voce del menu','it',0,0,0,0),(324,'A','it',0,0,0,0),(325,'Descrizione del feed','it',0,0,0,0),(326,'Personalizzato','it',0,0,0,0),(327,'Visibilità','it',0,0,0,0),(328,'Ruoli','it',0,0,0,0),(329,'ID revisione','it',0,0,0,0),(330,'Commento','it',0,0,0,0),(331,'ID commento','it',0,0,0,0),(332,'Nome host','it',0,0,0,0),(333,'Pubblicato','it',0,0,0,0),(334,'Firma','it',0,0,0,0),(335,'Filtra','it',0,0,0,0),(336,'Posizione','it',0,0,0,0),(337,'Locale','it',0,0,0,0),(338,'Etichetta del campo titolo','it',0,0,0,0),(339,'Promosso alla prima pagina','it',0,0,0,0),(340,'Sempre in cima agli elenchi','it',0,0,0,0),(341,'Revisioni','it',0,0,0,0),(342,'Alias URL','it',0,0,0,0),(343,'Durata del sondaggio','it',0,0,0,0),(344,'Scelte del sondaggio','it',0,0,0,0),(345,'Voti del sondaggio','it',0,0,0,0),(346,'Descrizione','it',0,0,0,0),(347,'Opzioni di selezione','it',0,0,0,0),(348,'ID file','it',0,0,0,0),(349,'Nome del file','it',0,0,0,0),(350,'Dimensione file','it',0,0,0,0),(351,'Vocabolario','it',0,0,0,0),(352,'ID vocabolario','it',0,0,0,0),(353,'Nome del vocabolario','it',0,0,0,0),(354,'ID Termine','it',0,0,0,0),(355,'Nome del ruolo','it',0,0,0,0),(356,'Indirizzo e-mail','it',0,0,0,0),(357,'Ultimo accesso','it',0,0,0,0),(358,'Ultimo login','it',0,0,0,0),(359,'Fuso orario','it',0,0,0,0),(360,'Rilevanza','it',0,0,0,0),(361,'Nome del campo','it',0,0,0,0),(362,'Tipo di campo','it',0,0,0,0),(363,'Impostazioni globali','it',0,0,0,0),(364,'Tipo di widget','it',0,0,0,0),(365,'Vota','it',0,0,0,0),(366,'Numero','it',0,0,0,0),(367,'Variato manualmente','it',0,0,0,0),(368,'Nome del set','it',0,0,0,0),(369,'Immagine originale','it',0,0,0,0),(370,'Feed RSS - blog','it',0,0,0,0),(371,'Intestazione','it',0,0,0,0),(372,'Impostazioni per la ricerca','it',0,0,0,0),(373,'Modalità','it',0,0,0,0),(374,'Avviso','it',0,0,0,0),(375,'bloccato','it',0,0,0,0),(376,'attivo','it',0,0,0,0),(377,'N/D','it',0,0,0,0),(378,'OK','it',0,0,0,0),(379,'feed OPML','it',0,0,0,0),(380,'configura','it',0,0,0,0),(381,'Numero di notizie nel blocco','it',0,0,0,0),(382,'Mostra le notizie recenti da questo feed.','it',0,0,0,0),(383,'Mostra le notizie recenti di questa categoria.','it',0,0,0,0),(384,'Panoramica fonti','it',0,0,0,0),(385,'Elementi','it',0,0,0,0),(386,'Ultimo aggiornamento','it',0,0,0,0),(387,'Prossimo aggiornamento','it',0,0,0,0),(388,'%time rimasto','it',0,0,0,0),(389,'rimuovi oggetti','it',0,0,0,0),(390,'aggiorna oggetti','it',0,0,0,0),(391,'Anteprima categorie','it',0,0,0,0),(392,'Categorizza','it',0,0,0,0),(393,'Le categorie sono state salvate.','it',0,0,0,0),(394,'URL:','it',0,0,0,0),(395,'Aggiornato:','it',0,0,0,0),(396,'%age tempo fa','it',0,0,0,0),(397,'%ago fa','it',0,0,0,0),(398,'Nodi','it',0,0,0,0),(399,'Creato da','it',0,0,0,0),(400,'La fonte %feed è stata aggiornata.','it',0,0,0,0),(401,'La fonte %feed è stata eliminata.','it',0,0,0,0),(402,'La fonte %feed è stata eliminata.','it',0,0,0,0),(403,'Feed %feed aggiunto.','it',0,0,0,0),(404,'La fonte %feed è stata aggiornata.','it',0,0,0,0),(405,'L\'oggetto notizie dal sito è %site eliminato.','it',0,0,0,0),(406,'Prestazioni','it',0,0,0,0),(407,'Larghezza','it',0,0,0,0),(408,'Altezza','it',0,0,0,0),(409,'Questo campo è obbligatorio.','it',0,0,0,0),(410,'Massimo','it',0,0,0,0),(411,'Riga','it',0,0,0,0),(412,'Scala','it',0,0,0,0),(413,'Medio','it',0,0,0,0),(414,'Media','it',0,0,0,0),(415,'Testo semplice','it',0,0,0,0),(416,'Caching','it',0,0,0,0),(417,'Mese','it',0,0,0,0),(418,'Dettagli','it',0,0,0,0),(419,'Widget','it',0,0,0,0),(420,'Ultima risposta','it',0,0,0,0),(421,'Precedente','it',0,0,0,0),(422,'Sistema','it',0,0,0,0),(423,'Dominio','it',0,0,0,0),(424,'Elaboratori','it',0,0,0,0),(425,'Nessun limite','it',0,0,0,0),(426,'Invia','it',0,0,0,0),(427,'Codice','it',0,0,0,0),(428,'Inserisci un nome utente valido','it',0,0,0,0),(429,'Autore','it',0,0,0,0),(430,'Destinatario','it',0,0,0,0),(431,'Aggiungi un ruolo per gli utenti selezionati','it',0,0,0,0),(432,'Rimuovi il ruolo assegnato agli utenti selezionati','it',0,0,0,0),(433,'sicurezza','it',0,0,0,0),(434,'nodo','it',0,0,0,0),(435,'Amministra contenuti','it',0,0,0,0),(436,'Generale','it',0,0,0,0),(437,'Metodo','it',0,0,0,0),(438,'Egitto','it',0,0,0,0),(439,'Namibia','it',0,0,0,0),(440,'Israele','it',0,0,0,0),(441,'Iran','it',0,0,0,0),(442,'Nuova Zelanda','it',0,0,0,0),(443,'Tonga','it',0,0,0,0),(444,'Cuba','it',0,0,0,0),(445,'Brasile','it',0,0,0,0),(446,'Cile','it',0,0,0,0),(447,'Paraguay','it',0,0,0,0),(448,'Jamaica','it',0,0,0,0),(449,'Giappone','it',0,0,0,0),(450,'Libia','it',0,0,0,0),(451,'Navajo','it',0,0,0,0),(452,'Polonia','it',0,0,0,0),(453,'Portogallo','it',0,0,0,0),(454,'Singapore','it',0,0,0,0),(455,'Turchia','it',0,0,0,0),(456,'Giorno','it',0,0,0,0),(457,'Tabella','it',0,0,0,0),(458,'Lun','it',0,0,0,0),(459,'Mar','it',0,0,0,0),(460,'Mer','it',0,0,0,0),(461,'Gio','it',0,0,0,0),(462,'Ven','it',0,0,0,0),(463,'Sab','it',0,0,0,0),(464,'Dom','it',0,0,0,0),(465,'Gennaio','it',0,0,0,0),(466,'Febbraio','it',0,0,0,0),(467,'Marzo','it',0,0,0,0),(468,'Aprile','it',0,0,0,0),(469,'Mag','it',0,0,0,0),(470,'Giugno','it',0,0,0,0),(471,'Luglio','it',0,0,0,0),(472,'Agosto','it',0,0,0,0),(473,'Settembre','it',0,0,0,0),(474,'Ottobre','it',0,0,0,0),(475,'Novembre','it',0,0,0,0),(476,'Dicembre','it',0,0,0,0),(477,'am','it',0,0,0,0),(478,'pm','it',0,0,0,0),(479,'Forum','it',0,0,0,0),(480,'Configurazione','it',0,0,0,0),(481,'!time fa','it',0,0,0,0),(482,'Colore dello sfondo','it',0,0,0,0),(483,'Colore del testo','it',0,0,0,0),(484,'Navigazione','it',0,0,0,0),(485,'Di base','it',0,0,0,0),(486,'Colore','it',0,0,0,0),(487,'Aspetto','it',0,0,0,0),(488,'Ruolo','it',0,0,0,0),(489,'Accesso utente','it',0,0,0,0),(490,'Accedi','it',0,0,0,0),(491,'URL della fonte %title aggiornato a %url.','it',0,0,0,0),(492,'Blog','it',0,0,0,0),(493,'Vai al primo commento di questo argomento.','it',0,0,0,0),(494,'Vai al primo nuovo commento di questo messaggio.','it',0,0,0,0),(495,'Aggiungi un commento','it',0,0,0,0),(496,'Aggiungi un nuovo commento a questa pagina.','it',0,0,0,0),(497,'Condividi i tuoi pensieri ed opinioni su questo contenuto.','it',0,0,0,0),(498,'ripristina','it',0,0,0,0),(499,'Testo','it',0,0,0,0),(500,'Utenti','it',0,0,0,0),(501,'Non installato','it',0,0,0,0),(502,'Scelte','it',0,0,0,0),(503,'Durata minima cache','it',0,0,0,0),(504,'Referrer','it',0,0,0,0),(505,'1 voto','it',0,0,0,0),(506,'@count voti','it',505,1,0,0),(507,'@site è attualmente in manutenzione. Dovrebbe tornare attivo a breve. Grazie per la vostra pazienza.','it',0,0,0,0),(508,'Prima pagina predefinita','it',0,0,0,0),(509,'Pagine più viste','it',0,0,0,0),(510,'Elaborazione del testo','it',0,0,0,0),(511,'Lunghezza massima','it',0,0,0,0),(512,'Righe','it',0,0,0,0),(513,'Salva le modifiche','it',0,0,0,0),(514,'accesso negato','it',0,0,0,0),(515,'Anonimo','it',0,0,0,0),(516,'Disinstalla','it',0,0,0,0),(517,'Installa','it',0,0,0,0),(518,'Opzionale','it',0,0,0,0),(519,'Ordinamento','it',0,0,0,0),(520,'Commenti recenti','it',0,0,0,0),(521,'Visite recenti','it',0,0,0,0),(522,'Imposta come predefinito','it',0,0,0,0),(523,'Intero','it',0,0,0,0),(524,'Indirizzo IP','it',0,0,0,0),(525,'Il commento e tutte sue risposte sono stati eliminati.','it',0,0,0,0),(526,'Preformattato','it',0,0,0,0),(527,'Profilo','it',0,0,0,0),(528,'Utenti anonimi (non registrati)','it',0,0,0,0),(529,'Svuota la cache','it',0,0,0,0),(530,'Impostazioni visibilità','it',0,0,0,0),(531,'Voti','it',0,0,0,0),(532,'Descrizione del termine','it',0,0,0,0),(533,'Salva le impostazioni','it',0,0,0,0),(534,'Operazione','it',0,0,0,0),(535,'rispondi','it',0,0,0,0),(536,'Funzione','it',0,0,0,0),(537,'Sessione chiusa per %name.','it',0,0,0,0),(538,'Tracker','it',0,0,0,0),(539,'Devi specificare una data valida.','it',0,0,0,0),(540,'Impostazioni server','it',0,0,0,0),(541,'Il campo %field è obbligatorio.','it',0,0,0,0),(542,'Germania','it',0,0,0,0),(543,'Esci','it',0,0,0,0),(544,'1 nuovo','it',0,0,0,0),(545,'@count nuovi','it',544,1,0,0),(546,'Lingua predefinita','it',0,0,0,0),(547,'Afghanistan','it',0,0,0,0),(548,'Albania','it',0,0,0,0),(549,'Algeria','it',0,0,0,0),(550,'Samoa americane','it',0,0,0,0),(551,'Andorra','it',0,0,0,0),(552,'Angola','it',0,0,0,0),(553,'Anguilla','it',0,0,0,0),(554,'Antartica','it',0,0,0,0),(555,'Antigua e Barbuda','it',0,0,0,0),(556,'Argentina','it',0,0,0,0),(557,'Armenia','it',0,0,0,0),(558,'Aruba','it',0,0,0,0),(559,'Australia','it',0,0,0,0),(560,'Austria','it',0,0,0,0),(561,'Azerbaijan','it',0,0,0,0),(562,'Bahamas','it',0,0,0,0),(563,'Bahrain','it',0,0,0,0),(564,'Bangladesh','it',0,0,0,0),(565,'Barbados','it',0,0,0,0),(566,'Belarus','it',0,0,0,0),(567,'Belgio','it',0,0,0,0),(568,'Belize','it',0,0,0,0),(569,'Benin','it',0,0,0,0),(570,'Bermuda','it',0,0,0,0),(571,'Bhutan','it',0,0,0,0),(572,'Bolivia','it',0,0,0,0),(573,'Bosnia e Herzegovina','it',0,0,0,0),(574,'Botswana','it',0,0,0,0),(575,'Isole Bouvet','it',0,0,0,0),(576,'Brunei','it',0,0,0,0),(577,'Bulgaria','it',0,0,0,0),(578,'Burkina Faso','it',0,0,0,0),(579,'Burundi','it',0,0,0,0),(580,'Cambogia','it',0,0,0,0),(581,'Cameroon','it',0,0,0,0),(582,'Canada','it',0,0,0,0),(583,'Cape Verde','it',0,0,0,0),(584,'Isole Cayman','it',0,0,0,0),(585,'Repubblica Centrafricana','it',0,0,0,0),(586,'Chad','it',0,0,0,0),(587,'Cina','it',0,0,0,0),(588,'Isola di Natale','it',0,0,0,0),(589,'Isole Cocos (Keeling)','it',0,0,0,0),(590,'Colombia','it',0,0,0,0),(591,'Comoros','it',0,0,0,0),(592,'Isole Cook','it',0,0,0,0),(593,'Costa Rica','it',0,0,0,0),(594,'Cipro','it',0,0,0,0),(595,'Repubblica Ceca','it',0,0,0,0),(596,'Danimarca','it',0,0,0,0),(597,'Gibuti','it',0,0,0,0),(598,'Dominica','it',0,0,0,0),(599,'Repubblica Dominicana','it',0,0,0,0),(600,'Ecuador','it',0,0,0,0),(601,'El Salvador','it',0,0,0,0),(602,'Guinea Equatoriale','it',0,0,0,0),(603,'Eritrea','it',0,0,0,0),(604,'Estonia','it',0,0,0,0),(605,'Etiopia','it',0,0,0,0),(606,'Isole Faroe','it',0,0,0,0),(607,'Finlandia','it',0,0,0,0),(608,'Francia','it',0,0,0,0),(609,'Guiana francese','it',0,0,0,0),(610,'Polinesia francese','it',0,0,0,0),(611,'Gabon','it',0,0,0,0),(612,'Gambia','it',0,0,0,0),(613,'Georgia','it',0,0,0,0),(614,'Ghana','it',0,0,0,0),(615,'Gibilterra','it',0,0,0,0),(616,'Grecia','it',0,0,0,0),(617,'Greenland','it',0,0,0,0),(618,'Grenada','it',0,0,0,0),(619,'Guadeloupe','it',0,0,0,0),(620,'Guam','it',0,0,0,0),(621,'Guatemala','it',0,0,0,0),(622,'Guinea','it',0,0,0,0),(623,'Guinea-Bissau','it',0,0,0,0),(624,'Guyana','it',0,0,0,0),(625,'Haiti','it',0,0,0,0),(626,'Isole Heard  e McDonald','it',0,0,0,0),(627,'Honduras','it',0,0,0,0),(628,'Ungheria','it',0,0,0,0),(629,'Islanda','it',0,0,0,0),(630,'India','it',0,0,0,0),(631,'Indonesia','it',0,0,0,0),(632,'Iraq','it',0,0,0,0),(633,'Irlanda','it',0,0,0,0),(634,'Italia','it',0,0,0,0),(635,'Giordania','it',0,0,0,0),(636,'Kazakhstan','it',0,0,0,0),(637,'Kenya','it',0,0,0,0),(638,'Kiribati','it',0,0,0,0),(639,'Kuwait','it',0,0,0,0),(640,'Kyrgyzstan','it',0,0,0,0),(641,'Laos','it',0,0,0,0),(642,'Lettonia','it',0,0,0,0),(643,'Libano','it',0,0,0,0),(644,'Lesotho','it',0,0,0,0),(645,'Liberia','it',0,0,0,0),(646,'Liechtenstein','it',0,0,0,0),(647,'Lituania','it',0,0,0,0),(648,'Lussemburgo','it',0,0,0,0),(649,'Madagascar','it',0,0,0,0),(650,'Malawi','it',0,0,0,0),(651,'Malesia','it',0,0,0,0),(652,'Maldive','it',0,0,0,0),(653,'Mali','it',0,0,0,0),(654,'Malta','it',0,0,0,0),(655,'Isole Marshall','it',0,0,0,0),(656,'Martinica','it',0,0,0,0),(657,'Mauritania','it',0,0,0,0),(658,'Mauritius','it',0,0,0,0),(659,'Mayotte','it',0,0,0,0),(660,'Messico','it',0,0,0,0),(661,'Micronesia','it',0,0,0,0),(662,'Moldavia','it',0,0,0,0),(663,'Monaco','it',0,0,0,0),(664,'Mongolia','it',0,0,0,0),(665,'Montserrat','it',0,0,0,0),(666,'Marocco','it',0,0,0,0),(667,'Mozambico','it',0,0,0,0),(668,'Myanmar','it',0,0,0,0),(669,'Nauru','it',0,0,0,0),(670,'Nepal','it',0,0,0,0),(671,'Olanda','it',0,0,0,0),(672,'Antille olandesi','it',0,0,0,0),(673,'Nuova Caledonia','it',0,0,0,0),(674,'Nicaragua','it',0,0,0,0),(675,'Niger','it',0,0,0,0),(676,'Nigeria','it',0,0,0,0),(677,'Niue','it',0,0,0,0),(678,'Isola Norfolk','it',0,0,0,0),(679,'Nord Corea','it',0,0,0,0),(680,'Isole Marianne Settentrionali','it',0,0,0,0),(681,'Norvegia','it',0,0,0,0),(682,'Oman','it',0,0,0,0),(683,'Pakistan','it',0,0,0,0),(684,'Palau','it',0,0,0,0),(685,'Panama','it',0,0,0,0),(686,'Papua Nuova Guinea','it',0,0,0,0),(687,'Perù','it',0,0,0,0),(688,'Filippine','it',0,0,0,0),(689,'Porto Rico','it',0,0,0,0),(690,'Qatar','it',0,0,0,0),(691,'Riunione','it',0,0,0,0),(692,'Romania','it',0,0,0,0),(693,'Russia','it',0,0,0,0),(694,'Ruanda','it',0,0,0,0),(695,'Samoa','it',0,0,0,0),(696,'San Marino','it',0,0,0,0),(697,'Arabia saudita','it',0,0,0,0),(698,'Senegal','it',0,0,0,0),(699,'Seychelles','it',0,0,0,0),(700,'Sierra Leone','it',0,0,0,0),(701,'Slovacchia','it',0,0,0,0),(702,'Slovenia','it',0,0,0,0),(703,'Isole Salomone','it',0,0,0,0),(704,'Somalia','it',0,0,0,0),(705,'Sud Africa','it',0,0,0,0),(706,'Georgia del Sud e Isole Sandwich Meridionali','it',0,0,0,0),(707,'Spagna','it',0,0,0,0),(708,'Sri Lanka','it',0,0,0,0),(709,'Sudan','it',0,0,0,0),(710,'Suriname','it',0,0,0,0),(711,'Svalbard e Jan Mayen','it',0,0,0,0),(712,'Swaziland','it',0,0,0,0),(713,'Svezia','it',0,0,0,0),(714,'Svizzera','it',0,0,0,0),(715,'Siria','it',0,0,0,0),(716,'Taiwan','it',0,0,0,0),(717,'Tagikistan','it',0,0,0,0),(718,'Tanzania','it',0,0,0,0),(719,'Tailandia','it',0,0,0,0),(720,'Togo','it',0,0,0,0),(721,'Tokelau','it',0,0,0,0),(722,'Trinidad e Tobago','it',0,0,0,0),(723,'Tunisia','it',0,0,0,0),(724,'Turkmenistan','it',0,0,0,0),(725,'Isole Turks e Caicos','it',0,0,0,0),(726,'Tuvalu','it',0,0,0,0),(727,'Uganda','it',0,0,0,0),(728,'Ucraina','it',0,0,0,0),(729,'Emirati Arabi Uniti','it',0,0,0,0),(730,'Regno Unito','it',0,0,0,0),(731,'Stati Uniti','it',0,0,0,0),(732,'Isole Minori Esterne degli Stati Uniti','it',0,0,0,0),(733,'Uruguay','it',0,0,0,0),(734,'Uzbekistan','it',0,0,0,0),(735,'Vanuatu','it',0,0,0,0),(736,'Venezuela','it',0,0,0,0),(737,'Wallis e Futuna','it',0,0,0,0),(738,'Yemen','it',0,0,0,0),(739,'Zambia','it',0,0,0,0),(740,'Zimbabwe','it',0,0,0,0),(741,'Prefisso tabella','it',0,0,0,0),(742,'Nome utente database','it',0,0,0,0),(743,'Password database','it',0,0,0,0),(744,'Nome database','it',0,0,0,0),(745,'Aggiungi un utente','it',0,0,0,0),(746,'Porta','it',0,0,0,0),(747,'Dimensione del campo di testo','it',0,0,0,0),(748,'Informazioni sull\'autore','it',0,0,0,0),(749,'Modificato il','it',0,0,0,0),(750,'Lasciare in bianco per %anonymous.','it',0,0,0,0),(751,'Nascosto','it',0,0,0,0),(752,'Attiva o disattiva il caching delle pagine per gli utenti anonimi e imposta le opzioni di ottimizzazione della larghezza di banda per CSS e JS.','it',0,0,0,0),(753,'Syslog','it',0,0,0,0),(754,'Chiave','it',0,0,0,0),(755,'Lingue abilitate','it',0,0,0,0),(756,'Arabo','it',0,0,0,0),(757,'Inglese','it',0,0,0,0),(758,'Francese','it',0,0,0,0),(759,'Italiano','it',0,0,0,0),(760,'Spagnolo','it',0,0,0,0),(761,'Giapponese','it',0,0,0,0),(762,'Coreano','it',0,0,0,0),(763,'Un indirizzo e-mail valido. Il sistema invierà tutte le e-mail a questo indirizzo. L\'indirizzo e-mail non sarà pubblico e verrà utilizzato soltanto se desideri ricevere una nuova password o se vuoi ricevere notizie e avvisi via e-mail.','it',0,0,0,0),(764,'L\'indirizzo e-mail %email è già stato registrato. <a href=\"@password\">Hai dimenticato la password?</a>','it',0,0,0,0),(765,'Importa OPML','it',0,0,0,0),(766,'Rimuovi oggetti','it',0,0,0,0),(767,'File OPML','it',0,0,0,0),(768,'Elementi HTML consentiti','it',0,0,0,0),(769,'Sorgenti','it',0,0,0,0),(770,'ultimi oggetti della categoria !title','it',0,0,0,0),(771,'ultimi oggetti dalla fonte !title','it',0,0,0,0),(772,'La categoria %category è stata aggiornata.','it',0,0,0,0),(773,'La categoria %category è stata eliminata.','it',0,0,0,0),(774,'La categoria %category è stata eliminata.','it',0,0,0,0),(775,'Categoria %category aggiunta.','it',0,0,0,0),(776,'La categoria %category è stata aggiornata.','it',0,0,0,0),(777,'aggregatore - @title','it',0,0,0,0),(778,'1 oggetto','it',0,0,0,0),(779,'@count oggetti','it',778,1,0,0),(780,'Aggiungi menù','it',0,0,0,0),(781,'menu','it',0,0,0,0),(782,'‹ precedente','it',0,0,0,0),(783,'seguente ›','it',0,0,0,0),(784,'Nessun elemento selezionato.','it',0,0,0,0),(785,'L\'aggiornamento è stato effettuato.','it',0,0,0,0),(786,'Browser','it',0,0,0,0),(787,'Visualizza il profilo dell\'utente.','it',0,0,0,0),(788,'Solo titoli','it',0,0,0,0),(789,'Testo completo','it',0,0,0,0),(790,'L\'operazione non è reversibile.','it',0,0,0,0),(791,'Carica ritratto','it',0,0,0,0),(792,'Messaggio:','it',0,0,0,0),(793,'File di lingua','it',0,0,0,0),(794,'pubblicato','it',0,0,0,0),(795,'Tempo medio di generazione della pagina','it',0,0,0,0),(796,'Le modifiche sono state salvate.','it',0,0,0,0),(797,'Mostra solo gli utenti dove','it',0,0,0,0),(798,'Definisci meglio','it',0,0,0,0),(799,'Annulla ultima operazione','it',0,0,0,0),(800,'Iscritto da','it',0,0,0,0),(801,'@time fa','it',0,0,0,0),(802,'Nessun utente selezionato','it',0,0,0,0),(803,'Individuato tentativo ostile di alterare campi utente protetti.','it',0,0,0,0),(804,'Seleziona tutte le righe in questa tabella','it',0,0,0,0),(805,'Deseleziona tutte le righe in questa tabella','it',0,0,0,0),(806,'Risultati della ricerca','it',0,0,0,0),(807,'La ricerca non ha prodotto risultati','it',0,0,0,0),(808,'Inserisci una o più chiavi di ricerca.','it',0,0,0,0),(809,'Prima pagina','it',0,0,0,0),(810,'Richiedi nuova password','it',0,0,0,0),(811,'Eliminato','it',0,0,0,0),(812,'Lingue','it',0,0,0,0),(813,'Argomenti','it',0,0,0,0),(814,'Argomento','it',0,0,0,0),(815,'Elenco dei valori ammessi','it',0,0,0,0),(816,'Oggi','it',0,0,0,0),(817,'Modifica menù','it',0,0,0,0),(818,'Elimina menù','it',0,0,0,0),(819,'Opzioni di pubblicazione','it',0,0,0,0),(820,'Crea una nuova revisione','it',0,0,0,0),(821,'Altezza minima','it',0,0,0,0),(822,'Larghezza minima','it',0,0,0,0),(823,'Impostazioni fuso orario','it',0,0,0,0),(824,'Configura blocco','it',0,0,0,0),(825,'Quanti contenuti mostrare nell\'elenco \"per giorno\".','it',0,0,0,0),(826,'Gen','it',0,0,0,0),(827,'Feb','it',0,0,0,0),(828,'Mar','it',0,0,0,0),(829,'Apr','it',0,0,0,0),(830,'Giu','it',0,0,0,0),(831,'Lug','it',0,0,0,0),(832,'Ago','it',0,0,0,0),(833,'Set','it',0,0,0,0),(834,'Ott','it',0,0,0,0),(835,'Nov','it',0,0,0,0),(836,'Dic','it',0,0,0,0),(837,'Elenco di selezione','it',0,0,0,0),(838,'Campo di testo','it',0,0,0,0),(839,'Lungo','it',0,0,0,0),(840,'Corto','it',0,0,0,0),(841,'Messaggi','it',0,0,0,0),(842,'Configura permessi','it',0,0,0,0),(843,'Workflow','it',0,0,0,0),(844,'Casuale','it',0,0,0,0),(845,'Ripristina','it',0,0,0,0),(846,'Vuoto','it',0,0,0,0),(847,'Percorso di sistema esistente','it',0,0,0,0),(848,'Alias di percorso','it',0,0,0,0),(849,'Specifica un percorso alternativo per l\'accesso ai dati. Per esempio scrivi \"about\" per la pagina di about. Usa un percorso relativo e non aggiungere la barra iniziale altrimenti l\'alias dell\'URL non funzionerà.','it',0,0,0,0),(850,'Maggiore di','it',0,0,0,0),(851,'Minore di','it',0,0,0,0),(852,'qualsiasi','it',0,0,0,0),(853,'Scelta','it',0,0,0,0),(854,'Esci','it',0,0,0,0),(855,'Numero di più visti del giorno da mostrare','it',0,0,0,0),(856,'Numero visite totali da mostrare','it',0,0,0,0),(857,'Numero di visite più recenti da mostrare','it',0,0,0,0),(858,'Le impostazioni non sono state salvate a causa di alcuni errori rilevati.','it',0,0,0,0),(859,'caratteri','it',0,0,0,0),(860,'profilo','it',0,0,0,0),(861,'Do','it',0,0,0,0),(862,'Lu','it',0,0,0,0),(863,'Ma','it',0,0,0,0),(864,'Noi','it',0,0,0,0),(865,'Gi','it',0,0,0,0),(866,'Ve','it',0,0,0,0),(867,'Sa','it',0,0,0,0),(868,'Primo giorno della settimana','it',0,0,0,0),(869,'Tassonomia con autocompletamento','it',0,0,0,0),(870,'Invia una copia a te stesso.','it',0,0,0,0),(871,'Il messaggio è stato inviato.','it',0,0,0,0),(872,'Crea nuovo profilo','it',0,0,0,0),(873,'ruolo','it',0,0,0,0),(874,'Sei sicuro di voler eliminare il blocco %name?','it',0,0,0,0),(875,'Il blocco %name è stato rimosso.','it',0,0,0,0),(876,'Informazioni','it',0,0,0,0),(877,'Persone','it',0,0,0,0),(878,'lista termini','it',0,0,0,0),(879,'aggiungi termini','it',0,0,0,0),(880,'Nuovo termine %term creato.','it',0,0,0,0),(881,'Sei sicuro di voler eliminare il termine %title?','it',0,0,0,0),(882,'Il termine %name è stato eliminato.','it',0,0,0,0),(883,'avviso','it',0,0,0,0),(884,'Statistiche non disponibili.','it',0,0,0,0),(885,'Ultima esecuzione: !time fa','it',0,0,0,0),(886,'Informazioni sul sito','it',0,0,0,0),(887,'Bloccato','it',0,0,0,0),(888,'Filtri attivi','it',0,0,0,0),(889,'critico','it',0,0,0,0),(890,'Risultati','it',0,0,0,0),(891,'I vecchi sondaggi','it',0,0,0,0),(892,'Vedi la lista dei sondaggi di questo sito.','it',0,0,0,0),(893,'Impostazione sondaggi','it',0,0,0,0),(894,'Devi effettuare almeno due scelte.','it',0,0,0,0),(895,'aperto','it',0,0,0,0),(896,'Questa tabella elenca tutti i voti registrati per questo sondaggio. Se è permesso il voto agli utenti anonimi essi verranno identificati tramite l\'indirizzo IP del computer utilizzato per votare.','it',0,0,0,0),(897,'Visitatore','it',0,0,0,0),(898,'Annulla il tuo voto','it',0,0,0,0),(899,'Vedi i risultati dei sondaggi correnti.','it',0,0,0,0),(900,'Cancellando un termine si cancelleranno anche i suoi figli. Questa operazione non potrà venire annullata.','it',0,0,0,0),(901,'Termine padre','it',0,0,0,0),(902,'Termini padre','it',0,0,0,0),(903,'Scambia informazioni','it',0,0,0,0),(904,'Blog','it',0,0,0,0),(905,'Book','it',0,0,0,0),(906,'La sorgente RSS del sito %site sembra invalida, a causa di  un errore \"%error\" alla linea %line.','it',0,0,0,0),(907,'La sorgente RSS del sito %site sembra invalida, a causa dell\'errore \"%error\" alla linea %line.','it',0,0,0,0),(908,'Forum','it',0,0,0,0),(909,'Revisioni per %title','it',0,0,0,0),(910,'!date, di !username','it',0,0,0,0),(911,'ripristina','it',0,0,0,0),(912,'Revisione','it',0,0,0,0),(913,'revisione attuale','it',0,0,0,0),(914,'Le password specificate non coincidono.','it',0,0,0,0),(915,'Sessione','it',0,0,0,0),(916,'Traccia','it',0,0,0,0),(917,'Nessun forum definito','it',0,0,0,0),(918,'L\'argomento è stato spostato','it',0,0,0,0),(919,'Permessi','it',0,0,0,0),(920,'Le tue impostazioni sono state salvate.','it',0,0,0,0),(921,'Cron','it',0,0,0,0),(922,'Installato','it',0,0,0,0),(923,'permesso','it',0,0,0,0),(924,'Il tuo voto è stato registrato.','it',0,0,0,0),(925,'Permette al tuo sito di raccogliere i voti su vari argomenti sotto forma di domande a scelta multipla.','it',0,0,0,0),(926,'Colore collegamenti','it',0,0,0,0),(927,'Data di creazione','it',0,0,0,0),(928,'In fase di test','it',0,0,0,0),(929,'Standard','it',0,0,0,0),(930,'Isole Aland','it',0,0,0,0),(931,'Fiji','it',0,0,0,0),(932,'Isole Falkland','it',0,0,0,0),(933,'Saint Kitts e Nevis','it',0,0,0,0),(934,'Korea del Sud','it',0,0,0,0),(935,'Santa Lucia','it',0,0,0,0),(936,'Sant\'Elena','it',0,0,0,0),(937,'São Tomé e Príncipe','it',0,0,0,0),(938,'Territori francesi del sud','it',0,0,0,0),(939,'Saint  Vincent e Grenadine','it',0,0,0,0),(940,'Isole Vergini britanniche','it',0,0,0,0),(941,'Isole Vergini degli Stati Uniti d\'America','it',0,0,0,0),(942,'Vietnam','it',0,0,0,0),(943,'Guernsey','it',0,0,0,0),(944,'Jersey','it',0,0,0,0),(945,'Impostazioni %type','it',0,0,0,0),(946,'Non pubblicato','it',0,0,0,0),(947,'Impostazioni del menù','it',0,0,0,0),(948,'Schema colori','it',0,0,0,0),(949,'Non formattato','it',0,0,0,0),(950,'Formati','it',0,0,0,0),(951,'@type: %title eliminato.','it',0,0,0,0),(952,'Estensioni file consentite','it',0,0,0,0),(953,'Nuovi commenti','it',0,0,0,0),(954,'Reindirizza all\'URL','it',0,0,0,0),(955,'dettagli','it',0,0,0,0),(956,'In alto a sinistra','it',0,0,0,0),(957,'In alto a destra','it',0,0,0,0),(958,'In basso a destra','it',0,0,0,0),(959,'In basso a sinistra','it',0,0,0,0),(960,'Il nome utente %name non è stato attivato o è bloccato.','it',0,0,0,0),(961,'Tentativo di accesso fallito per %user.','it',0,0,0,0),(962,'immagine','it',0,0,0,0),(963,'Revisione di %title del %date','it',0,0,0,0),(964,'Il nome utente di questo account per il quale si desidera assegnare il possesso.','it',0,0,0,0),(965,'Gestisci le azioni definite per il tuo sito.','it',0,0,0,0),(966,'Elimina azione','it',0,0,0,0),(967,'L\'azione è stata salvata correttamente.','it',0,0,0,0),(968,'Eliminata l\'azione %aid (%action)','it',0,0,0,0),(969,'Azione \'%action\' aggiunta.','it',0,0,0,0),(970,'Rimuovi le azioni non associate a moduli','it',0,0,0,0),(971,'Temi','it',0,0,0,0),(972,'Qualità JPEG','it',0,0,0,0),(973,'%','it',0,0,0,0),(974,'Elimina commenti','it',0,0,0,0),(975,'non pubblicato','it',0,0,0,0),(976,'Commenti pubblicati','it',0,0,0,0),(977,'Il campo !name è obbligatorio','it',0,0,0,0),(978,'Protetto','it',0,0,0,0),(979,'Impostazioni dei commenti','it',0,0,0,0),(980,'Accessi','it',0,0,0,0),(981,'non sempre in cima','it',0,0,0,0),(982,'sempre in cima','it',0,0,0,0),(983,'non promosso','it',0,0,0,0),(984,'promosso','it',0,0,0,0),(985,'Tu sei qui','it',0,0,0,0),(986,'Opzioni predefinite','it',0,0,0,0),(987,'Impostazioni contatto','it',0,0,0,0),(988,'Ripristina password','it',0,0,0,0),(989,'In elaborazione','it',0,0,0,0),(990,'Completato','it',0,0,0,0),(991,'disattiva','it',0,0,0,0),(992,'Directory temporanea','it',0,0,0,0),(993,'data','it',0,0,0,0),(994,'Errore durante il caricamento. Impossibile spostare il file caricato.','it',0,0,0,0),(995,'Scorciatoie','it',0,0,0,0),(996,'Scorciatoia','it',0,0,0,0),(997,'Valore predefinito','it',0,0,0,0),(998,'Fuso orario','it',0,0,0,0),(999,'La data specificata non è valida.','it',0,0,0,0),(1000,'Livello di sicurezza della password:','it',0,0,0,0),(1001,'Le password coincidono:','it',0,0,0,0),(1002,'Slogan','it',0,0,0,0),(1003,'Il nome utilizzato per indicare gli utenti anonimi','it',0,0,0,0),(1004,'Testo alternativo','it',0,0,0,0),(1005,'Attendere prego...','it',0,0,0,0),(1006,'Assegna','it',0,0,0,0),(1007,'Non tradotto','it',0,0,0,0),(1008,'Vai alla prima pagina','it',0,0,0,0),(1009,'Vai all\'ultima pagina','it',0,0,0,0),(1010,'Vai a pagina @number','it',0,0,0,0),(1011,'Inserisci i termini da cercare.','it',0,0,0,0),(1012,'Sottolineato','it',0,0,0,0),(1013,'Operazioni','it',0,0,0,0),(1014,'Elimina ruolo','it',0,0,0,0),(1015,'Configurazione di base','it',0,0,0,0),(1016,'Elenca menù','it',0,0,0,0),(1017,'Personalizza menù','it',0,0,0,0),(1018,'Territorio bitannico dell\'oceano Indiano','it',0,0,0,0),(1019,'Croazia','it',0,0,0,0),(1020,'Macedonia','it',0,0,0,0),(1021,'Isole Pitcairn','it',0,0,0,0),(1022,'Sahara ovest','it',0,0,0,0),(1023,'Nome in inglese','it',0,0,0,0),(1024,'Nome originale','it',0,0,0,0),(1025,'Descrizione del blocco','it',0,0,0,0),(1026,'Nome scheda','it',0,0,0,0),(1027,'Il titolo del nuovo campo. Il titolo sarà mostrato all\'utente. Un esempio potrebbe essere \"Il tuo colore preferito\".','it',0,0,0,0),(1028,'Una spiegazione supplementare per il nuovo campo. Il testo sarà visualizzato dall\'utente.','it',0,0,0,0),(1029,'Salva il campo','it',0,0,0,0),(1030,'Blocchi','it',0,0,0,0),(1031,'Configura quale contenuto dei blocchi appare nelle barre laterali e in altre regioni del sito.','it',0,0,0,0),(1032,'Elimina blocco','it',0,0,0,0),(1033,'Salva blocchi','it',0,0,0,0),(1034,'Le impostazioni del blocco sono state aggiornate.','it',0,0,0,0),(1035,'blocco \'%name\'','it',0,0,0,0),(1036,'Consente ai singoli utenti di personalizzare la visibilità di questo blocco nelle proprie impostazioni del profilo.','it',0,0,0,0),(1037,'Mostra blocco a ruoli specifici','it',0,0,0,0),(1038,'Mostra questo blocco solo ai ruoli selezionati. Se non selezioni alcun ruolo, il blocco sarà visibile a tutti gli utenti.','it',0,0,0,0),(1039,'Mostra il blocco su pagine specifiche','it',0,0,0,0),(1040,'Salva blocco','it',0,0,0,0),(1041,'La configurazione del blocco è stata salvata.','it',0,0,0,0),(1042,'Il blocco è stato creato.','it',0,0,0,0),(1043,'Corpo del blocco','it',0,0,0,0),(1044,'Il contenuto di un blocco come mostrato all\'utente.','it',0,0,0,0),(1045,'Menù','it',0,0,0,0),(1046,'Qualsiasi personalizzazione andrà perduta. L\'operazione non è reversibile.','it',0,0,0,0),(1047,'Permette agli amministratori di personalizzare i menu di navigazione del sito.','it',0,0,0,0),(1048,'Aggiungi vocabolario','it',0,0,0,0),(1049,'modifica vocabolario','it',0,0,0,0),(1050,'Nuovo vocabolario %name creato.','it',0,0,0,0),(1051,'Il vocabolario %name è stato aggiornato.','it',0,0,0,0),(1052,'Sei sicuro di voler eliminare il vocabolario %title?','it',0,0,0,0),(1053,'Eliminando un vocabolario verranno eliminati tutti i suoi termini. L\'operazione non è reversibile.','it',0,0,0,0),(1054,'vocabolario %name eliminato.','it',0,0,0,0),(1055,'Sopra','it',0,0,0,0),(1056,'Numero di valori','it',0,0,0,0),(1057,'Fuso orario predefinito','it',0,0,0,0),(1058,'Aggiungi un altro elemento','it',0,0,0,0),(1059,'Gestisci campi','it',0,0,0,0),(1060,'Aggiungi campo','it',0,0,0,0),(1061,'Abbreviato','it',0,0,0,0),(1062,'Usato in','it',0,0,0,0),(1063,'Aggiungi un campo esistente','it',0,0,0,0),(1064,'Eventuali dati ancora contenuti in questo campo andranno persi. L\'operazione non è reversibile.','it',0,0,0,0),(1065,'Salva le impostazioni del campo','it',0,0,0,0),(1066,'L\'aggiornamento ha incontrato un errore.','it',0,0,0,0),(1067,'1 elemento processato con successo:','it',0,0,0,0),(1068,'@count elementi processati con successo:','it',1067,1,0,0),(1069,'Decimale','it',0,0,0,0),(1070,'Virgola mobile','it',0,0,0,0),(1071,'Minimo','it',0,0,0,0),(1072,'Precisione','it',0,0,0,0),(1073,'Il numero totale di cifre da memorizzare nel database, incluso quelle alla destra del decimale.','it',0,0,0,0),(1074,'Il numero di cifre alla destra del decimale.','it',0,0,0,0),(1075,'Simbolo decimale','it',0,0,0,0),(1076,'Il carattere inserito dagli utenti per indicare il punto decimale nei form.','it',0,0,0,0),(1077,'Definisce i tipi di campo numerici.','it',0,0,0,0),(1078,'Per un widget \'casella singola on/off\', definire per primo il valore \'off\', quindi il valore \'on\' nella sezione <strong>Valori consentiti</strong>. Notare che la casella sarà etichettata con l\'etichetta del valore \'on\'.','it',0,0,0,0),(1079,'Caselle/pulsanti di opzione','it',0,0,0,0),(1080,'Casella on/off singola','it',0,0,0,0),(1081,'Definisce la selezione, i widgets check box e radio button per il testo e per i campi numerici.','it',0,0,0,0),(1082,'Area di testo (righe multiple)','it',0,0,0,0),(1083,'Definisce dei semplici tipi di campo testo.','it',0,0,0,0),(1084,'Indice','it',0,0,0,0),(1085,'Attiva gli URL semplificati','it',0,0,0,0),(1086,'Collegamento permanente','it',0,0,0,0),(1087,'Parametri specifici del motore del tema grafico','it',0,0,0,0),(1088,'Debug','it',0,0,0,0),(1089,'Eccezione','it',0,0,0,0),(1090,'Permesso','it',0,0,0,0),(1091,'modulo @module','it',0,0,0,0),(1092,'Incompatibile con questa versione di PHP','it',0,0,0,0),(1093,'Questo modulo richiede la versione @php_required di PHP ed è incompatibile con quella attualmente installata, la (!php_version).','it',0,0,0,0),(1094,'Ulteriori informazioni','it',0,0,0,0),(1095,'!title !required','it',0,0,0,0),(1096,'Il mio blog','it',0,0,0,0),(1097,'Commentare anonimo','it',0,0,0,0),(1098,'Gli anonimi non possono inserire informazioni sul contatto','it',0,0,0,0),(1099,'Gli anonimi possono inserire informazioni sul contatto','it',0,0,0,0),(1100,'Gli anonimi devono inserire informazioni sul contatto','it',0,0,0,0),(1101,'Il contenuto di questo campo è privato e non verrà mostrato pubblicamente.','it',0,0,0,0),(1102,'La tua firma verrà mostrata pubblicamente alla fine dei tuoi commenti.','it',0,0,0,0),(1103,'Data - prima i più nuovi','it',0,0,0,0),(1104,'Data - prima i più vecchi','it',0,0,0,0),(1105,'1 commento','it',0,0,0,0),(1106,'@count commenti','it',1105,1,0,0),(1107,'1 nuovo commento','it',0,0,0,0),(1108,'@count nuovi commenti','it',1107,1,0,0),(1109,'Salva tipo di contenuto','it',0,0,0,0),(1110,'Mostra descrizioni','it',0,0,0,0),(1111,'Sottotitolo','it',0,0,0,0),(1112,'Codice della lingua','it',0,0,0,0),(1113,'Salva ruolo','it',0,0,0,0),(1114,'debug','it',0,0,0,0),(1115,'file system','it',0,0,0,0),(1116,'Titolo del link sul menu','it',0,0,0,0),(1117,'Il sistema dei menu memorizza solo percorsi di sistema, tuttavia utilizzerà l\'alias di URL per la visualizzazione. %link_path è stato salvato come %normal_path','it',0,0,0,0),(1118,'Il percorso \'@link_path\' non è valido o non si hanno i requisiti d\'accesso per visualizzarlo.','it',0,0,0,0),(1119,'Si è verificato un errore nel salvare il link del menu.','it',0,0,0,0),(1120,'Nome del menu','it',0,0,0,0),(1121,'Si desidera eliminare il menu personalizzato %title?','it',0,0,0,0),(1122,'Numero di utenti on-line da mostrare','it',0,0,0,0),(1123,'Feed RSS - !title','it',0,0,0,0),(1124,'...','it',0,0,0,0),(1125,'RDF','it',0,0,0,0),(1126,'Profili','it',0,0,0,0),(1127,'Modifica il contenitore','it',0,0,0,0),(1128,'Ultima visita','it',0,0,0,0),(1129,'Soglia degli argomenti \'caldi\'.','it',0,0,0,0),(1130,'Argomenti per pagina','it',0,0,0,0),(1131,'Contenuti - prima i più attivi','it',0,0,0,0),(1132,'Contenuti - prima i meno attivi','it',0,0,0,0),(1133,'Impostazioni percorso URL','it',0,0,0,0),(1134,'Ritratto di @user','it',0,0,0,0),(1135,'Sei sicuro di voler ripristinare la revisione da %revision-date?','it',0,0,0,0),(1136,'Sei sicuro di voler eliminare la revisione da %revision-date?','it',0,0,0,0),(1137,'Dimensione massima caricamento','it',0,0,0,0),(1138,'KB','it',0,0,0,0),(1139,'Spazio','it',0,0,0,0),(1140,'Nuovi argomenti del forum','it',0,0,0,0),(1141,'@type: eliminata la revisione %revision di %title.','it',0,0,0,0),(1142,'Pagina non trovata','it',0,0,0,0),(1143,'Indipendente dalla lingua','it',0,0,0,0),(1144,'Ulteriore aiuto','it',0,0,0,0),(1145,'Anteprima versione troncata','it',0,0,0,0),(1146,'Anteprima versione completa','it',0,0,0,0),(1147,'Profilo utente bloccato','it',0,0,0,0),(1148,'Espandi','it',0,0,0,0),(1149,'Il nome %name è già usato.','it',0,0,0,0),(1150,'informazioni','it',0,0,0,0),(1151,'Reindirizzamento OpenID','it',0,0,0,0),(1152,'Accesso con OpenID','it',0,0,0,0),(1153,'Elimina OpenID','it',0,0,0,0),(1154,'Accedi usando OpenID','it',0,0,0,0),(1155,'Annulla il login OpenID','it',0,0,0,0),(1156,'Cos\'è OpenID?','it',0,0,0,0),(1157,'Accesso con OpenID non riuscito.','it',0,0,0,0),(1158,'Accesso con OpenID annullato.','it',0,0,0,0),(1159,'%identity aggiunta con successo','it',0,0,0,0),(1160,'OpenID','it',0,0,0,0),(1161,'Aggiungi un OpenID','it',0,0,0,0),(1162,'Questo OpenID è già in uso su questo sito.','it',0,0,0,0),(1163,'Sei sicuro di voler eliminare l\'OpenID %authname per %user?','it',0,0,0,0),(1164,'OpenID eliminato.','it',0,0,0,0),(1165,'modifica menu','it',0,0,0,0),(1166,'« prima','it',0,0,0,0),(1167,'ultima »','it',0,0,0,0),(1168,'Overlay','it',0,0,0,0),(1169,'Ridimensiona','it',0,0,0,0),(1170,'La cartella %directory non esiste.','it',0,0,0,0),(1171,'Definisce un campo di tipo file','it',0,0,0,0),(1172,'Mostra solo gli elementi dove','it',0,0,0,0),(1173,'Nessun commento disponibile.','it',0,0,0,0),(1174,'ok','it',0,0,0,0),(1175,'Ricostruisci i permessi','it',0,0,0,0),(1176,'@type: %title aggiornato.','it',0,0,0,0),(1177,'@type: %title aggiunto.','it',0,0,0,0),(1178,'Errore nel salvare il profilo utente.','it',0,0,0,0),(1179,'L\'azione %action non è più assegnata.','it',0,0,0,0),(1180,'Aggiungi ruolo','it',0,0,0,0),(1181,'Devi specificare un nome valido per il ruolo utente.','it',0,0,0,0),(1182,'Il ruolo è stato aggiunto.','it',0,0,0,0),(1183,'Path del logo personalizzato','it',0,0,0,0),(1184,'tassonomia','it',0,0,0,0),(1185,'Aggiornato il termine %term.','it',0,0,0,0),(1186,'- Scegli -','it',0,0,0,0),(1187,'- Nessuno selezionato -','it',0,0,0,0),(1188,'Interprete','it',0,0,0,0),(1189,'Scarta elementi più vecchi di','it',0,0,0,0),(1190,'@site_name - feed aggregati nella categoria @title','it',0,0,0,0),(1191,'@site_name - feed aggregati','it',0,0,0,0),(1192,'@site_name aggregatore','it',0,0,0,0),(1193,'feed !title','it',0,0,0,0),(1194,'Aggregator','it',0,0,0,0),(1195,'La sorgente RSS del sito %site sembra invalida, a causa dell\'errore \"%error\".','it',0,0,0,0),(1196,'Nessun nuovo contenuto condiviso dal sito %site.','it',0,0,0,0),(1197,'Nessun nuovo contenuto condiviso dal sito %site.','it',0,0,0,0),(1198,'La sorgente RSS del sito %site sembra invalida, a causa di \"%error\".','it',0,0,0,0),(1199,'Aggregatore di feed','it',0,0,0,0),(1200,'Aggrega i contenuti condivisi (feed RSS, RDF e Atom).','it',0,0,0,0),(1201,'Alias','it',0,0,0,0),(1202,'Impostazioni profilo','it',0,0,0,0),(1203,'Il tipo di contenuto %name è stato eliminato.','it',0,0,0,0),(1204,'Tipo di contenuto %name eliminato.','it',0,0,0,0),(1205,'Inserisci le chiavi di ricerca','it',0,0,0,0),(1206,'URL semplificati','it',0,0,0,0),(1207,'Profilo utente','it',0,0,0,0),(1208,'Numero di argomenti','it',0,0,0,0),(1209,'Argomenti del forum attivi','it',0,0,0,0),(1210,'Leggi gli ultimi argomenti del forum.','it',0,0,0,0),(1211,'Autenticazione HTTP','it',0,0,0,0),(1212,'Attività utente','it',0,0,0,0),(1213,'Il nuovo campo dovrebbe far parte della categoria. Le categorie sono utilizzate per raggruppare logicamente i campi. Un esempio di categoria è \"Informazioni personali\"','it',0,0,0,0),(1214,'L\'utente deve inserire un valore.','it',0,0,0,0),(1215,'Visibile nella scheda di registrazione utente.','it',0,0,0,0),(1216,'I nuovi elementi del feed verranno automaticamente aggiunti alle categorie selezionate.','it',0,0,0,0),(1217,'Un utente è considerato on-line per questo tempo dopo la sua ultima visita di una pagina.','it',0,0,0,0),(1218,'Numero massimo di utenti on-line da mostrare.','it',0,0,0,0),(1219,'ajax','it',0,0,0,0),(1220,'Contesto','it',0,0,0,0),(1221,'Navigazione del book','it',0,0,0,0),(1222,'Vocabolario della tassonomia','it',0,0,0,0),(1223,'1 anno','it',0,0,0,0),(1224,'@count anni','it',1223,1,0,0),(1225,'1 settimana','it',0,0,0,0),(1226,'@count settimane','it',1225,1,0,0),(1227,'1 min','it',0,0,0,0),(1228,'@count min','it',1227,1,0,0),(1229,'1 sec','it',0,0,0,0),(1230,'@count sec','it',1229,1,0,0),(1231,'- n/d -','it',0,0,0,0),(1232,'Pulsante @submit trovato','it',0,0,0,0),(1233,'Impossibile impostare il valore del campo @field come @value','it',0,0,0,0),(1234,'Nessuna cartella temporanea da rimuovere.','it',0,0,0,0),(1235,'Esegue dei test sul Drupal core e sui moduli attivi. Questi test aiutano ad assicurarti che il codice del sito stia funzionando correttamente.','it',0,0,0,0),(1236,'Territori palestinesi','it',0,0,0,0),(1237,'Vaticano','it',0,0,0,0),(1238,'Bulgaro','it',0,0,0,0),(1239,'Croato','it',0,0,0,0),(1240,'Ceco','it',0,0,0,0),(1241,'Danese','it',0,0,0,0),(1242,'Olandese','it',0,0,0,0),(1243,'Finnico','it',0,0,0,0),(1244,'Tedesco','it',0,0,0,0),(1245,'Greco','it',0,0,0,0),(1246,'Ebraico','it',0,0,0,0),(1247,'Ungherese','it',0,0,0,0),(1248,'Indonesiano','it',0,0,0,0),(1249,'Polacco','it',0,0,0,0),(1250,'Rumeno','it',0,0,0,0),(1251,'Russo','it',0,0,0,0),(1252,'Slovacco','it',0,0,0,0),(1253,'Svedese','it',0,0,0,0),(1254,'Turco','it',0,0,0,0),(1255,'In evidenza','it',0,0,0,0),(1256,'Invia messaggio','it',0,0,0,0),(1257,'Nome ad uso interno','it',0,0,0,0),(1258,'Consenti ingrandimento','it',0,0,0,0),(1259,'Consenti al ridimensionamento di generare immagini più grandi dell\'originale','it',0,0,0,0),(1260,'Angolo di rotazione','it',0,0,0,0),(1261,'Rotazione da applicare all\'immagine, espressa in gradi. Inserire un numero positivo per ottenere una rotazione in senso orario, negativo per il senso antiorario.','it',0,0,0,0),(1262,'Ruota ogni immagine di un angolo casuale. Il valore inserito verrà usato come limite massimo dell\'angolo.','it',0,0,0,0),(1263,'Stampa','it',0,0,0,0),(1264,'Non è stato possibile creare il file.','it',0,0,0,0),(1265,'Bloccato','it',0,0,0,0),(1266,'Le istruzioni per il ripristino della password di %name sono state spedite all\'indirizzo %email.','it',0,0,0,0),(1267,'L\'indirizzo e-mail %mail non è valido.','it',0,0,0,0),(1268,'Profilo','it',0,0,0,0),(1269,'utente autenticato','it',0,0,0,0),(1270,'Qualunque','it',0,0,0,0),(1271,'Indirizzi e-mail ai quali notificare la disponibilità di aggiornamenti','it',0,0,0,0),(1272,'Ogni volta che il sito controlla se vi sono aggiornamenti disponibili e trova delle nuove versioni, può avvisare via e-mail una lista di utenti. Inserire ogni indirizzo e-mail su una nuova riga. Se rimane vuoto nessuna e-mail sarà spedita.','it',0,0,0,0),(1273,'Verifica la disponibilità di aggiornamenti','it',0,0,0,0),(1274,'Tutte le versioni più recenti','it',0,0,0,0),(1275,'Solo aggiornamenti di sicurezza','it',0,0,0,0),(1276,'%email non è un indirizzo di posta elettronica valido.','it',0,0,0,0),(1277,'%emails non sono indirizzi di posta elettronica validi.','it',0,0,0,0),(1278,'Non sono disponibili informazioni sugli aggiornamenti','it',0,0,0,0),(1279,'Non sicuro!','it',0,0,0,0),(1280,'Ritirata!','it',0,0,0,0),(1281,'Release non supportata','it',0,0,0,0),(1282,'Impossibile determinare lo stato','it',0,0,0,0),(1283,'(versione @version disponibile)','it',0,0,0,0),(1284,'Controlla la pagina degli aggiornamenti disponibili per ulteriori informazioni:','it',0,0,0,0),(1285,'Nuova/e release disponibile/i per !site_name','it',0,0,0,0),(1286,'È disponibile un aggiornamento di sicurezza per la tua versione di Drupal. Per garantire la sicurezza del tuo server, dovresti aggiornare immediatamente!','it',0,0,0,0),(1287,'La tua versione di Drupal è stata ritirata e non è più disponibile per il download. L\'aggiornamento è fortemente consigliato!','it',0,0,0,0),(1288,'La versione installata di almeno uno dei moduli o dei temi è stata ritirata e non è più disponibile per il download. L\'aggiornamento o la rimozione è fortemente raccomandato!','it',0,0,0,0),(1289,'La tua versione di Drupal non è più supportata. L\'aggiornamento è fortemente raccomandato!','it',0,0,0,0),(1290,'Sono disponibili degli aggiornamenti per questa versione di Drupal. Per assicurare il corretto funzionamento del sito, è consigliabile eseguire l\'aggiornamento non appena possibile.','it',0,0,0,0),(1291,'Controlla la pagina <a href=\"@available_updates\">aggiornamenti disponibili</a> per maggiori informazioni.','it',0,0,0,0),(1292,'Progetto non sicuro','it',0,0,0,0),(1293,'Questo progetto è stato etichettato come insicuro dal team di sicurezza Drupal, non è quindi più disponibile per il download. Si raccomanda di disattivare immediatamente tutto ciò che è direttamente correlato a questo progetto!','it',0,0,0,0),(1294,'Progetto ritirato','it',0,0,0,0),(1295,'Questo progetto è stato ritirato, non è quindi più disponibile per il download. Si raccomanda di disattivare immediatamente tutto ciò che è direttamente correlato a questo progetto!','it',0,0,0,0),(1296,'Progetto non supportato','it',0,0,0,0),(1297,'Questo progetto non è più supportato e non è quindi disponibile per il download. Si raccomanda di disattivare immediatamente tutto ciò che è direttamente correlato a questo progetto!','it',0,0,0,0),(1298,'Nessuna release disponibile trovata','it',0,0,0,0),(1299,'Release ritirata','it',0,0,0,0),(1300,'La release attualmente installata è stata ritirata, non è quindi più disponibile per il download. Si raccomanda di disattivare immediatamente o di aggiornare tutto ciò che è direttamente correlato a questo progetto!','it',0,0,0,0),(1301,'Release non supportata','it',0,0,0,0),(1302,'La release attualmente installata è ora priva di supporto, non è quindi più disponibile per il download. Si raccomanda di disattivare immediatamente o di aggiornare tutto ciò che è direttamente correlato a questo progetto!','it',0,0,0,0),(1303,'Informazioni non valide','it',0,0,0,0),(1304,'È richiesto un aggiornamento di sicurezza!','it',0,0,0,0),(1305,'Non supportato!','it',0,0,0,0),(1306,'Versione consigliata:','it',0,0,0,0),(1307,'Aggiornamento di sicurezza:','it',0,0,0,0),(1308,'Ultima versione:','it',0,0,0,0),(1309,'Versione di sviluppo:','it',0,0,0,0),(1310,'Disponibile anche:','it',0,0,0,0),(1311,'Conteggio dei nodi','it',0,0,0,0),(1312,'Impostazioni campo','it',0,0,0,0),(1313,'Salta al contenuto principale','it',0,0,0,0),(1314,'@title','it',0,0,0,0),(1315,'Modifica il forum','it',0,0,0,0),(1316,'Ordine predefinito','it',0,0,0,0),(1317,'Questo è il vocabolario designato per il forum. Alcune delle opzioni presenti nei vocabolari normali sono state rimosse.','it',0,0,0,0),(1318,'Lascia una copia ombra','it',0,0,0,0),(1319,'Se sposti questo argomento, puoi lasciare un collegamento dal vecchio forum al nuovo.','it',0,0,0,0),(1320,'Nome del contenitore','it',0,0,0,0),(1321,'Contenitore di forum','it',0,0,0,0),(1322,'Nuovo @type %term creato.','it',0,0,0,0),(1323,'Il @type %term è stato aggiornato.','it',0,0,0,0),(1324,'Aggiungi un nuovo campo','it',0,0,0,0),(1325,'Contenente una qualsiasi delle parole','it',0,0,0,0),(1326,'Contenente la frase','it',0,0,0,0),(1327,'Contenente nessuna delle parole','it',0,0,0,0),(1328,'Solamente del(i) tipo(i)','it',0,0,0,0),(1329,'Punteggio dei contenuti','it',0,0,0,0),(1330,'Importanza per parola chiave','it',0,0,0,0),(1331,'Inserito di recente','it',0,0,0,0),(1332,'Numero di commenti','it',0,0,0,0),(1333,'Numero di accessi','it',0,0,0,0),(1334,'Fattore','it',0,0,0,0),(1335,'Espandi il layout per includere le descrizioni.','it',0,0,0,0),(1336,'Nascondi le descrizioni','it',0,0,0,0),(1337,'Comprimi il layout nascondendo le descrizioni.','it',0,0,0,0),(1338,'O','it',0,0,0,0),(1339,'Combinazione di colori','it',0,0,0,0),(1340,'ID contenuto','it',0,0,0,0),(1341,'Informazioni','it',0,0,0,0),(1342,'Host database','it',0,0,0,0),(1343,'Lunghezza massima testo del link','it',0,0,0,0),(1344,'Gli URL più lunghi di questo numero di caratteri saranno troncati onde prevenire stringhe troppo lunghe che potrebbero danneggiare la formattazione. Il link sarà comunque salvato: verrà troncata solo la porzione di testo in eccedenza.','it',0,0,0,0),(1345,'Resoconti','it',0,0,0,0),(1346,'Ritratto predefinito','it',0,0,0,0),(1347,'URL del ritratto da mostrare per gli utenti privi di un ritratto personalizzato. Lasciare vuoto per nessun ritratto.','it',0,0,0,0),(1348,'Se la quantità di caselle sopra non è sufficiente, clicca qui per aggiungere ulteriori scelte.','it',0,0,0,0),(1349,'Commuta la visualizzazione','it',0,0,0,0),(1350,'Se non hai accesso diretto ai file del server, utilizza questo campo per caricare il tuo logo.','it',0,0,0,0),(1351,'File di configurazione','it',0,0,0,0),(1352,'Installazione profilo','it',0,0,0,0),(1353,'Il %percentage del sito è stato indicizzato.','it',0,0,0,0),(1354,'Cartella file','it',0,0,0,0),(1355,'Tema predefinito','it',0,0,0,0),(1356,'Server web','it',0,0,0,0),(1357,'Manca un solo elemento da indicizzare.','it',0,0,0,0),(1358,'Ci sono @count oggetti da indicizzare.','it',1357,1,0,0),(1359,'I permessi d\'accesso ai contenuti sono stati ricostruiti.','it',0,0,0,0),(1360,'ordina per @s','it',0,0,0,0),(1361,'Spiacente, password o nome utente non riconosciuti. <a href=\"@password\">Hai dimenticato la password?</a>','it',0,0,0,0),(1362,'Pubblica contenuto','it',0,0,0,0),(1363,'Stack overflow: troppe chiamate alla funzione actions_do(). Operazione interrotta per prevenire ripetizioni infinite.','it',0,0,0,0),(1364,'Azione %action salvata.','it',0,0,0,0),(1365,'Si può procedere alla pagina dei <a href=\"@url\">Trigger</a> per assegnare queste azioni agli eventi di sistema.','it',0,0,0,0),(1366,'Gestisci azioni','it',0,0,0,0),(1367,'Configura un\'azione avanzata','it',0,0,0,0),(1368,'Elimina un\'azione','it',0,0,0,0),(1369,'Rimuovi gli orfani','it',0,0,0,0),(1370,'Trigger','it',0,0,0,0),(1371,'Elimina associazione tra azione e trigger.','it',0,0,0,0),(1372,'Scegli un\'azione avanzata','it',0,0,0,0),(1373,'Tipo di azione','it',0,0,0,0),(1374,'Sei sicuro di voler eliminare l\'azione %action?','it',0,0,0,0),(1375,'L\'azione %action è stata eliminata','it',0,0,0,0),(1376,'Azione non associata a moduli (orfana) eliminata (%action).','it',0,0,0,0),(1377,'Sei sicuro di togliere dalla lista di assegnamento l\'azione %title?','it',0,0,0,0),(1378,'Puoi anche assegnarla dopo, se preferisci.','it',0,0,0,0),(1379,'non assegnare','it',0,0,0,0),(1380,'Scegli un azione','it',0,0,0,0),(1381,'L\'azione che hai scelto è già stata assegnata a quel trigger.','it',0,0,0,0),(1382,'Quando cron viene eseguito','it',0,0,0,0),(1383,'L\'URL a cui l\'utente deve essere reindirizzato. Può essere un indirizzo URL interno come node/1234 oppure uno esterno come http://drupal.org.','it',0,0,0,0),(1384,'Quando il contenuto è visto da un utente autenticato','it',0,0,0,0),(1385,'Mostra un messaggio all\'utente','it',0,0,0,0),(1386,'Togli dalla pubblicazione il commento','it',0,0,0,0),(1387,'Togli dalla pubblicazione i commenti contenenti la parola (o le parole) chiave','it',0,0,0,0),(1388,'Blocca questo utente','it',0,0,0,0),(1389,'Blocca l\'indirizzo IP di questo utente','it',0,0,0,0),(1390,'Imposta @type %title a pubblicato.','it',0,0,0,0),(1391,'Imposta @type %title a non pubblicato.','it',0,0,0,0),(1392,'@type \"%title\" sarà posizionato in testa agli elenchi.','it',0,0,0,0),(1393,'@type \"%title\" non sarà più in testa agli elenchi.','it',0,0,0,0),(1394,'Promosso @type %title in prima pagina.','it',0,0,0,0),(1395,'Rimosso @type %title dalla prima pagina.','it',0,0,0,0),(1396,'Salvato @type %title','it',0,0,0,0),(1397,'Cambiato il proprietario di @type %title in uid %name.','it',0,0,0,0),(1398,'Dopo il salvataggio di un nuovo commento','it',0,0,0,0),(1399,'Dopo aver salvato un commento aggiornato','it',0,0,0,0),(1400,'Dopo l\'eliminazione di un commento','it',0,0,0,0),(1401,'Quando un commento viene visto da un utente autenticato','it',0,0,0,0),(1402,'E\' stato tolto dalla pubblicazione il commento %subject.','it',0,0,0,0),(1403,'Dopo che un utente è stato eliminato','it',0,0,0,0),(1404,'Dopo che un utente ha eseguito l\'accesso','it',0,0,0,0),(1405,'Dopo che un utente si è disconnesso','it',0,0,0,0),(1406,'Quando è stato visualizzato il profilo di un utente','it',0,0,0,0),(1407,'Utente %name bloccato.','it',0,0,0,0),(1408,'Indirizzo IP %ip bloccato','it',0,0,0,0),(1409,'Dopo aver salvato nel database un nuovo termine','it',0,0,0,0),(1410,'Dopo aver salvato nel database un termine aggiornato','it',0,0,0,0),(1411,'Dopo l\'eliminazione di un termine','it',0,0,0,0),(1412,'Attiva l\'esecuzione di azioni in occasione di certi eventi del sistema, per esempio quando vengono creati nuovi contenuti.','it',0,0,0,0),(1413,'letto 1 volta','it',0,0,0,0),(1414,'letto @count volte','it',1413,1,0,0),(1415,'- Scegliere -','it',0,0,0,0),(1416,'Permette l\'organizzazione dei contenuti in categorie.','it',0,0,0,0),(1417,'Prefisso del percorso','it',0,0,0,0),(1418,'Elimina contatto','it',0,0,0,0),(1419,'Risposta automatica','it',0,0,0,0),(1420,'Risposta automatica, facoltativa. Lascia vuoto se non vuoi mandare agli utenti un messaggio automatico di risposta.','it',0,0,0,0),(1421,'%recipient è un indirizzo e-mail non valido.','it',0,0,0,0),(1422,'Lituano','it',0,0,0,0),(1423,'Traduzione aggiornata','it',0,0,0,0),(1424,'Traduzione non aggiornata','it',0,0,0,0),(1425,'Qualche modulo necessario deve essere attivato','it',0,0,0,0),(1426,'Nuovi post','it',0,0,0,0),(1427,'mm/gg/aa','it',0,0,0,0),(1428,'Traduci','it',0,0,0,0),(1429,'Non è stato trovato il file da importare.','it',0,0,0,0),(1430,'Impossibile importare la traduzione: il file %filename non può essere letto.','it',0,0,0,0),(1431,'Il file di traduzione %filename contiene un errore: \"msgstr\" era previsto alla linea %line ma non è stato trovato.','it',0,0,0,0),(1432,'Il file di traduzione %filename contiene un errore: \"msgid_plural\" era il valore previsto ma non è stato trovato alla riga %line.','it',0,0,0,0),(1433,'Il file di traduzione %filename contiene un errore di sintassi alla riga %line.','it',0,0,0,0),(1434,'Il file di traduzione %filename contiene un errore: \"msgid\" non era previsto alla riga %line.','it',0,0,0,0),(1435,'Il file di traduzione %filename contiene un errore: \"msgstr[]\" non era previsto alla riga %line.','it',0,0,0,0),(1436,'Il file di traduzione %filename contiene un errore: \"msgstr\" non era previsto alla riga %line.','it',0,0,0,0),(1437,'Il file di traduzione %filename contiene un errore: c\'è una stringa inaspettata alla riga %line.','it',0,0,0,0),(1438,'Il file di traduzione %filename è terminato inaspettatamente alla riga %line.','it',0,0,0,0),(1439,'Salva le traduzioni','it',0,0,0,0),(1440,'Esporta modello (template)','it',0,0,0,0),(1441,'Crea @name','it',0,0,0,0),(1442,'Il menu personalizzato %title è stato eliminato.','it',0,0,0,0),(1443,'@type %title è stato eliminato.','it',0,0,0,0),(1444,'Ritaglia','it',0,0,0,0),(1445,'Non abilitato','it',0,0,0,0),(1446,'Istruzioni da presentare all\'utente sotto questo campo nella maschera di modifica.<br />Tag HTML consentiti: @tags','it',0,0,0,0),(1447,'utente anonimo','it',0,0,0,0),(1448,'@module (<span class=\"admin-disabled\">disattivato</span>)','it',0,0,0,0),(1449,'@module (<span class=\"admin-enabled\">attivato</span>)','it',0,0,0,0),(1450,'Web service','it',0,0,0,0),(1451,'Salva i permessi','it',0,0,0,0),(1452,'L\'indirizzo e-mail %email è già in uso.','it',0,0,0,0),(1453,'Effetto','it',0,0,0,0),(1454,'Messaggio di errore','it',0,0,0,0),(1455,'Testo originale','it',0,0,0,0),(1456,'Elimina tipo di contenuto','it',0,0,0,0),(1457,'Cambia book (aggiorna l\'elenco di pagine genitore)','it',0,0,0,0),(1458,'crea un nuovo book','it',0,0,0,0),(1459,'modifica permessi','it',0,0,0,0),(1460,'modifica l\'ordine e i titoli','it',0,0,0,0),(1461,'Gestisce la struttura dei book sul sito.','it',0,0,0,0),(1462,'Per ragioni di  sicurezza il file che hai caricato è stato rinominato in %filename.','it',0,0,0,0),(1463,'Versione installata','it',0,0,0,0),(1464,'Versione consigliata','it',0,0,0,0),(1465,'Cron è stato eseguito con successo.','it',0,0,0,0),(1466,'avviso','it',0,0,0,0),(1467,'Profilo utente','it',0,0,0,0),(1468,'Download file','it',0,0,0,0),(1469,'Acronimo','it',0,0,0,0),(1470,'originale','it',0,0,0,0),(1471,'Impossibile caricare il ritratto per il profilo; la directory %directory non esiste o non è scrivibile.','it',0,0,0,0),(1472,'Date','it',0,0,0,0),(1473,'Il campo è stato aggiornato.','it',0,0,0,0),(1474,'pixel','it',0,0,0,0),(1475,'1 mese','it',0,0,0,0),(1476,'@count mesi','it',1475,1,0,0),(1477,'Salva l\'ordine','it',0,0,0,0),(1478,'fatto','it',0,0,0,0),(1479,'Elenca, modifica o aggiungi ruoli utente.','it',0,0,0,0),(1480,'modifica ruolo','it',0,0,0,0),(1481,'Formato personalizzato','it',0,0,0,0),(1482,'Direzione','it',0,0,0,0),(1483,'%name: valore scorretto.','it',0,0,0,0),(1484,'Modifica %title','it',0,0,0,0),(1485,'Drupal core','it',0,0,0,0),(1486,'Visualizza blocco navigazione del book','it',0,0,0,0),(1487,'Relazioni','it',0,0,0,0),(1488,'Il campo password è obbligatorio.','it',0,0,0,0),(1489,'Conferma la password','it',0,0,0,0),(1490,'Nessun contenuto disponibile.','it',0,0,0,0),(1491,'Tema amministrazione','it',0,0,0,0),(1492,'Ti ringraziamo per aver fatto la richiesta di un profilo utente. Il tuo profilo utente è attualmente in attesa di approvazione da parte dell\'amministratore del sito.<br />Nel frattempo un messaggio di benvenuto con ulteriori istruzioni è stato inviato al tuo indirizzo e-mail.','it',0,0,0,0),(1493,'Congo (Kinshasa)','it',0,0,0,0),(1494,'Congo (Brazzaville)','it',0,0,0,0),(1495,'Costa d\'avorio','it',0,0,0,0),(1496,'Hong Kong S.A.R., Cina','it',0,0,0,0),(1497,'Isola di Man','it',0,0,0,0),(1498,'Montenegro','it',0,0,0,0),(1499,'Macao S.A.R., Cina','it',0,0,0,0),(1500,'Saint-Pierre e Miquelon','it',0,0,0,0),(1501,'Serbia','it',0,0,0,0),(1502,'Afar','it',0,0,0,0),(1503,'Somali','it',0,0,0,0),(1504,'Komi','it',0,0,0,0),(1505,'Esegui cron','it',0,0,0,0),(1506,'Messaggio di avvertimento','it',0,0,0,0),(1507,'Avviso di sicurezza: impossibile scrivere nel file .htaccess. Crea il file .htaccess nella cartella %directory in modo che contenga le seguenti righe: <code>!htaccess</code>','it',0,0,0,0),(1508,'Il file specificato %file non può essere copiato perché non esiste nessun file con quel nome. Verifica di aver inserito il nome corretto del file.','it',0,0,0,0),(1509,'Il file specificato %file non è stato copiato perché sovrascriverebbe se stesso.','it',0,0,0,0),(1510,'Il file %file non può essere salvato perché supera %maxsize, la dimensione massima consentita per il caricamento di file.','it',0,0,0,0),(1511,'Impossibile salvare il file %file, perché il caricamento non è stato completato.','it',0,0,0,0),(1512,'Il file %file non può essere salvato. Si è verificato un errore  sconosciuto.','it',0,0,0,0),(1513,'Il file specificato %name non può essere caricato.','it',0,0,0,0),(1514,'Nome del file non specificato. Per favore specificare un nome per il file.','it',0,0,0,0),(1515,'Sono consentiti solo i file con le seguenti estensioni: %files-allowed.','it',0,0,0,0),(1516,'Il file è di %filesize e supera la dimensione massima di %maxsize.','it',0,0,0,0),(1517,'Il file è di %filesize, quindi supera la quota disco di %quota.','it',0,0,0,0),(1518,'Sono consentite solo le immagini JPEG, PNG e GIF.','it',0,0,0,0),(1519,'L\'immagine è stata ridimensionata alle dimensioni massime consentite di %dimensions pixel.','it',0,0,0,0),(1520,'L\'immagine è troppo grande; le dimensioni massime sono di %dimensions pixel.','it',0,0,0,0),(1521,'L\'immagine è troppo piccola; le dimensioni minime sono di %dimensions pixel.','it',0,0,0,0),(1522,'Il file %path non è stato eliminato perché non esiste.','it',0,0,0,0),(1523,'Errore di caricamento. Impossibile spostare il file %file nella destinazione %destination.','it',0,0,0,0),(1524,'Aggiungi alla struttura del book','it',0,0,0,0),(1525,'Stark','it',0,0,0,0),(1526,'Nuovo gruppo','it',0,0,0,0),(1527,'non aggiornato','it',0,0,0,0),(1528,'<strong>@language_name</strong> (origine)','it',0,0,0,0),(1529,'aggiungi traduzione','it',0,0,0,0),(1530,'Traduzioni di %title','it',0,0,0,0),(1531,'Gestisci l\'etichettatura (tag), la categorizzazione e la classificazione dei contenuti.','it',0,0,0,0),(1532,'Porta database','it',0,0,0,0),(1533,'Reindicizza il sito','it',0,0,0,0),(1534,'Sei sicuro di volere reindicizzare il sito ?','it',0,0,0,0),(1535,'cURL','it',0,0,0,0),(1536,'Superato','it',0,0,0,0),(1537,'Fallito','it',0,0,0,0),(1538,'Nessun risultato di test da mostrare.','it',0,0,0,0),(1539,'Salva e continua','it',0,0,0,0),(1540,'Queste opzioni sono necessarie solamente per alcuni siti. Se non sei sicuro di cosa inserire qui, lascia le impostazioni predefinite altrimenti consulta il tuo fornitore di hosting.','it',0,0,0,0),(1541,'Se il database è collocato su un server diverso, cambia questo parametro.','it',0,0,0,0),(1542,'Se il server del database è in ascolto su una porta non standard, inserisci il suo numero.','it',0,0,0,0),(1543,'La porta del database deve essere un numero.','it',0,0,0,0),(1544,'Gli spazi sono consentiti; la punteggiatura non è consentita ad eccezione di punti, trattini e underscore.','it',0,0,0,0),(1545,'Indirizzo IP','it',0,0,0,0),(1546,'Altezza massima','it',0,0,0,0),(1547,'Larghezza massima','it',0,0,0,0),(1548,'Timor-Est','it',0,0,0,0),(1549,'Schede primarie','it',0,0,0,0),(1550,'Schede secondarie','it',0,0,0,0),(1551,'Attiva o disattiva la visualizzazione di un dato elemento di una pagina','it',0,0,0,0),(1552,'Aggiungi nuovo contenuto','it',0,0,0,0),(1553,'Booleano','it',0,0,0,0),(1554,'Risoluzione massima dell\'immagine','it',0,0,0,0),(1555,'È stata rilevata una scelta non valida. Contattare l\'amministratore del sito.','it',0,0,0,0),(1556,'Scelta non valida %choice nell\'elemento !name.','it',0,0,0,0),(1557,'Prima barra laterale','it',0,0,0,0),(1558,'Resoconto sullo stato','it',0,0,0,0),(1559,'Non scrivibile','it',0,0,0,0),(1560,'Virgola decimale','it',0,0,0,0),(1561,'Struttura del book','it',0,0,0,0),(1562,'Questa sarà la pagina di livello più alto (root) in questo book.','it',0,0,0,0),(1563,'Informazione sulla revisione','it',0,0,0,0),(1564,'Notifica l\'utente del nuovo profilo','it',0,0,0,0),(1565,'Visualizza commento','it',0,0,0,0),(1566,'Virgola','it',0,0,0,0),(1567,'Usa','it',0,0,0,0),(1568,'Path dell\'icona personalizzata','it',0,0,0,0),(1569,'Utente corrente','it',0,0,0,0),(1570,'Riassunto','it',0,0,0,0),(1571,'Non sei autorizzato a inviare commenti.','it',0,0,0,0),(1572,'Il commento a cui hai risposto non esiste.','it',0,0,0,0),(1573,'La discussione è chiusa: non puoi inviare nuovi commenti.','it',0,0,0,0),(1574,'Non sei autorizzato a vedere i commenti.','it',0,0,0,0),(1575,'Sei sicuro di voler eliminare il commento %title?','it',0,0,0,0),(1576,'Tutte le risposte a questo commento andranno perse. L\'operazione non è reversibile.','it',0,0,0,0),(1577,'Pubblica i commenti selezionati','it',0,0,0,0),(1578,'Non pubblicare i commenti selezionati','it',0,0,0,0),(1579,'Vuoi eliminare questo commento e tutte le sue risposte?','it',0,0,0,0),(1580,'Devi specificare un autore valido.','it',0,0,0,0),(1581,'Il nome utilizzato appartiene a un utente registrato.','it',0,0,0,0),(1582,'L\'indirizzo e-mail specificato non è valido.','it',0,0,0,0),(1583,'L\'URL della tua home page non è valido. Ricorda che deve essere completamente qualificato, cioè nella forma <code>http://example.com/directory</code>.','it',0,0,0,0),(1584,'(Nessun oggetto)','it',0,0,0,0),(1585,'Immagine predefinita','it',0,0,0,0),(1586,'Questo testo verrà usato da screen reader, motori di ricerca, oppure quando l\'immagine non può essere caricata.','it',0,0,0,0),(1587,'Aggiungi fonte','it',0,0,0,0),(1588,'Elenca le voci del menu','it',0,0,0,0),(1589,'Tipo MIME','it',0,0,0,0),(1590,'File system','it',0,0,0,0),(1591,'blog di @name','it',0,0,0,0),(1592,'Barra strumenti','it',0,0,0,0),(1593,'Inserisci il tuo nome utente @s.','it',0,0,0,0),(1594,'Inserito in','it',0,0,0,0),(1595,'Commento: è stato inviato un commento non autorizzato o è stato inviato ad un contenuto che risulta chiuso %subject.','it',0,0,0,0),(1596,'Blog di !name','it',0,0,0,0),(1597,'E-mail:','it',0,0,0,0),(1598,'Tutte le lingue','it',0,0,0,0),(1599,'Dashboard','it',0,0,0,0),(1600,'Indice di ricerca','it',0,0,0,0),(1601,'La dimensione del file.','it',0,0,0,0),(1602,'Il tipo MIME del file.','it',0,0,0,0),(1603,'@type %title è stato creato.','it',0,0,0,0),(1604,'Il @type %title è stato aggiornato.','it',0,0,0,0),(1605,'Il contenuto non può essere salvato.','it',0,0,0,0),(1606,'1 carattere','it',0,0,0,0),(1607,'@count caratteri','it',1606,1,0,0),(1608,'Impostazioni del filtro','it',0,0,0,0),(1609,'Non si dispone dei privilegi amministrativi.','it',0,0,0,0),(1610,'Uno o più problemi sono stati rilevati durante l\'installazione di Drupal. Controlla il <a href=\"@status\">resoconto sullo stato</a> per maggiori informazioni.','it',0,0,0,0),(1611,'Argomenti di aiuto','it',0,0,0,0),(1612,'L\'aiuto è disponibile sui seguenti elementi:','it',0,0,0,0),(1613,'Aiuto non disponibile per il modulo %module.','it',0,0,0,0),(1614,'pagine di amministrazione @module','it',0,0,0,0),(1615,'Traduci interfaccia','it',0,0,0,0),(1616,'Aggiungi lingua','it',0,0,0,0),(1617,'Modifica testo','it',0,0,0,0),(1618,'Elimina stringa','it',0,0,0,0),(1619,'Sei sicuro di voler eliminare la lingua %name?','it',0,0,0,0),(1620,'La lingua %locale è stata eliminata.','it',0,0,0,0),(1621,'Si vuole davvero eliminare il testo \"%source\"?','it',0,0,0,0),(1622,'Eliminando il testo verranno rimosse tutte le sue traduzioni in tutte le lingue. L\'operazione non è reversibile.','it',0,0,0,0),(1623,'lingua','it',0,0,0,0),(1624,'AM','it',0,0,0,0),(1625,'PM','it',0,0,0,0),(1626,'Estensioni PHP','it',0,0,0,0),(1627,'Commenti per pagina','it',0,0,0,0),(1628,'Supporto multilingue','it',0,0,0,0),(1629,'Abilitato, traduzione inclusa','it',0,0,0,0),(1630,'Pubblica commento','it',0,0,0,0),(1631,'Il file non può essere caricato','it',0,0,0,0),(1632,'Il toolkit di gestione immagini selezionato %toolkit non può elaborare correttamente %function.','it',0,0,0,0),(1633,'FTP','it',0,0,0,0),(1634,'La directory %file non è protetta dalle modifiche e rappresenta un rischio per la sicurezza. È necessario cambiare i permessi della directory per essere non-scrivibile. ','it',0,0,0,0),(1635,'Collaborazione','it',0,0,0,0),(1636,'Pagine di amministrazione','it',0,0,0,0),(1637,'!item !version è attualmente in uso','it',0,0,0,0),(1638,'Creato il tipo di contenuto %type.','it',0,0,0,0),(1639,'Creato l\'utente con nome %name e password %pass','it',0,0,0,0),(1640,'Creati i permessi: @perms','it',0,0,0,0),(1641,'Permesso non valido %permission.','it',0,0,0,0),(1642,'Campo nome utente trovato.','it',0,0,0,0),(1643,'Campo password trovato.','it',0,0,0,0),(1644,'!method @url ha ritornato @status (!length).','it',0,0,0,0),(1645,'HTML valido trovato in \"@path\"','it',0,0,0,0),(1646,'Pagina analizzata con successo.','it',0,0,0,0),(1647,'I campi del form richiesti sono stati trovati in @path','it',0,0,0,0),(1648,'Non è stato trovato un campo di nome @name','it',0,0,0,0),(1649,'Trovato un campo con id @id','it',0,0,0,0),(1650,'Non è stato trovato nessun campo con id @id','it',0,0,0,0),(1651,'Risposta HTTP attesa !code, effettiva !curl_code','it',0,0,0,0),(1652,'Si è verificato un errore inatteso. Riprova più tardi, grazie.','it',0,0,0,0),(1653,'Test','it',0,0,0,0),(1654,'Esegui i test','it',0,0,0,0),(1655,'Pulisci ambiente di test','it',0,0,0,0),(1656,'Rimuove le tabelle con prefisso \"simpletest\" e le cartelle temporanee che sono state lasciate dai test falliti. Questo è destinato agli sviluppatori quando creano dei test.','it',0,0,0,0),(1657,'Pulisci ambiente','it',0,0,0,0),(1658,'Nessun test da mostrare.','it',0,0,0,0),(1659,'@pass, @fail e @exception','it',0,0,0,0),(1660,'Nessun test selezionato.','it',0,0,0,0),(1661,'Elaborazione del test @num di @max - %test.','it',0,0,0,0),(1662,'@name: @summary','it',0,0,0,0),(1663,'Elaborato il test @num di @max - %test.','it',0,0,0,0),(1664,'1 passato','it',0,0,0,0),(1665,'@count passati','it',1664,1,0,0),(1666,'1 fallito','it',0,0,0,0),(1667,'@count falliti','it',1666,1,0,0),(1668,'1 eccezione','it',0,0,0,0),(1669,'@count eccezioni','it',1668,1,0,0),(1670,'Classe PHP DOMDocument','it',0,0,0,0),(1671,'Fornisce un ambiente per effettuare test sull\'integrità e funzionalità del codice.','it',0,0,0,0),(1672,'Menu principale','it',0,0,0,0),(1673,'Hindi','it',0,0,0,0),(1674,'L\'utente %name ha usato il link per l\'accesso, valido una volta sola, in data %timestamp.','it',0,0,0,0),(1675,'È stato creato un nuovo profilo per l\'utente <a href=\"@url\">%name</a>. Nessuna e-mail è stata inviata.','it',0,0,0,0),(1676,'Registrazione avvenuta con successo. Risulti ora autenticato.','it',0,0,0,0),(1677,'Nuovo utente: %name (%email).','it',0,0,0,0),(1678,'Trigger','it',0,0,0,0),(1679,'Aggiungi link','it',0,0,0,0),(1680,'Visualizza commenti','it',0,0,0,0),(1681,'Nome utente o indirizzo e-mail','it',0,0,0,0),(1682,'%name: questo campo non può contenere più di @count valori.','it',0,0,0,0),(1683,'Nessun campo disponibile.','it',0,0,0,0),(1684,'Dopo il salvataggio di un nuovo contenuto','it',0,0,0,0),(1685,'Dopo l\'eliminazione di un contenuto','it',0,0,0,0),(1686,'Schede Verticali','it',0,0,0,0),(1687,'Non nel libro','it',0,0,0,0),(1688,'Nuovo libro','it',0,0,0,0),(1689,'Da @name il @date','it',0,0,0,0),(1690,'Da @name','it',0,0,0,0),(1691,'Non nel menu','it',0,0,0,0),(1692,'Alias: @alias','it',0,0,0,0),(1693,'Nessun alias','it',0,0,0,0),(1694,'Autocompletamento nome utente','it',0,0,0,0),(1695,'Inizializzazione.','it',0,0,0,0),(1696,'Si è verificato un errore.','it',0,0,0,0),(1697,'Proseguire alla <a href=\"@error_url\">pagina di errore</a>','it',0,0,0,0),(1698,'HTTP POST è richiesto.','it',0,0,0,0),(1699,'La pagina sarà parte del book selezionato.','it',0,0,0,0),(1700,'0 sec','it',0,0,0,0),(1701,'form','it',0,0,0,0),(1702,'avviso','it',0,0,0,0),(1703,'emergenza','it',0,0,0,0),(1704,'Filtra messaggi di log','it',0,0,0,0),(1705,'E\' necessario selezionare qualcosa da filtrare.','it',0,0,0,0),(1706,'Nuova revisione','it',0,0,0,0),(1707,'Per cambiare la password attuale dell\'utente, inserisci la nuova password in entrambi i campi.','it',0,0,0,0),(1708,'Hai provato ad usare un link per l\'accesso valido una volta sola che è scaduto. Richiedine uno nuovo usando il form qui sotto.','it',0,0,0,0),(1709,'Questo login può essere usato solo una volta.','it',0,0,0,0),(1710,'L\'importazione della traduzione %filename è fallita.','it',0,0,0,0),(1711,'Aggiungi altre scelte','it',0,0,0,0),(1712,'Abbreviazione','it',0,0,0,0),(1713,'Inserito','it',0,0,0,0),(1714,'Inserisci in entrambi i campi una password per il nuovo profilo.','it',0,0,0,0),(1715,'(@language)','it',0,0,0,0),(1716,'filtro','it',0,0,0,0),(1717,'Il titolo del commento.','it',0,0,0,0),(1718,'Numero commenti','it',0,0,0,0),(1719,'Il titolo del nodo.','it',0,0,0,0),(1720,'La data in cui il nodo è stato inserito.','it',0,0,0,0),(1721,'Sondaggio','it',0,0,0,0),(1722,'Visualizzazioni oggi','it',0,0,0,0),(1723,'contatti','it',0,0,0,0),(1724,'Cerca ognuno dei due termini con <strong>OR</strong> maiuscolo. Per esempio, <strong>gatti OR cani</strong>.','it',0,0,0,0),(1725,'Filtro PHP','it',0,0,0,0),(1726,'Impostazioni lingua','it',0,0,0,0),(1727,'Tentativo di riavviare cron mentre è già attivo.','it',0,0,0,0),(1728,'Esecuzione di cron completata.','it',0,0,0,0),(1729,'Stato delle richieste HTTP','it',0,0,0,0),(1730,'Fallita','it',0,0,0,0),(1731,'Visitatori','it',0,0,0,0),(1732,'Numero massimo di caratteri del campo.','it',0,0,0,0),(1733,'Nome ad uso interno','it',0,0,0,0),(1734,'Lingue già aggiunte','it',0,0,0,0),(1735,'Articoli recenti del blog','it',0,0,0,0),(1736,'Nuovi utenti','it',0,0,0,0),(1737,'Nome della lingua','it',0,0,0,0),(1738,'Modifica lingua','it',0,0,0,0),(1739,'elenca le voci del menu','it',0,0,0,0),(1740,'Modifica categoria','it',0,0,0,0),(1741,'Il tipo di contenuto %name è stato aggiornato.','it',0,0,0,0),(1742,'Il tipo di contenuto %name è stato aggiunto.','it',0,0,0,0),(1743,'Catalano','it',0,0,0,0),(1744,'Form contatti','it',0,0,0,0),(1745,'Laguna Blu (predefinito)','it',0,0,0,0),(1746,'La pagina richiesta non è stata trovata.','it',0,0,0,0),(1747,'Il profilo utente %id non esiste.','it',0,0,0,0),(1748,'Tentativo di eliminare un profilo utente non esistente: %id.','it',0,0,0,0),(1749,'Problema nei requisiti','it',0,0,0,0),(1750,'Configurazione database','it',0,0,0,0),(1751,'Il tipo di database in cui i dati del sito @drupal verranno memorizzati.','it',0,0,0,0),(1752,'Il nome del database in cui i dati del sito @drupal verranno memorizzati. Deve esistere sul server prima che @drupal possa essere installato.','it',0,0,0,0),(1753,'Se più di un\'applicazione condividerà questo database inserisci un prefisso per le tabelle per il sito @drupal, come ad esempio %prefix.','it',0,0,0,0),(1754,'Seleziona un profilo di installazione','it',0,0,0,0),(1755,'Scegli una lingua','it',0,0,0,0),(1756,'Impara come installare Drupal in altre lingue','it',0,0,0,0),(1757,'(incluso)','it',0,0,0,0),(1758,'Nessun profilo disponibile','it',0,0,0,0),(1759,'Drupal già installato','it',0,0,0,0),(1760,'<ul><li>Per ricominciare, devi svuotare il database esistente.</li><li>Per installare su un database differente, modifica il file <em>settings.php</em> nella cartella <em>sites</em>.</li><li>Per aggiornare un\'installazione esistente, procedi con lo <a href=\"@base-url/update.php\">script di aggiornamento</a>.</li><li>Vai al <a href=\"@base-url\">sito esistente</a>.</li></ul>','it',0,0,0,0),(1761,'Installazione di @drupal','it',0,0,0,0),(1762,'La procedura d\'installazione ha riscontrato un errore.','it',0,0,0,0),(1763,'Configurazione sito','it',0,0,0,0),(1764,'Installazione di @drupal completata','it',0,0,0,0),(1765,'Il modulo %module è  stato installato.','it',0,0,0,0),(1766,'Scegli un profilo','it',0,0,0,0),(1767,'Verifica i requisiti','it',0,0,0,0),(1768,'Imposta il database','it',0,0,0,0),(1769,'Imposta traduzioni','it',0,0,0,0),(1770,'Installazione sito','it',0,0,0,0),(1771,'Completa traduzioni','it',0,0,0,0),(1772,'Indirizzo e-mail del sito','it',0,0,0,0),(1773,'L\'indirizzo <em>From</em> nelle e-mail inviate automaticamente nella procedura di registrazione, per le richieste di nuova password e altre notifiche. (Usare un indirizzo che appartiene allo stesso dominio del sito, per evitare che i messaggi vengano marcati come spam.)','it',0,0,0,0),(1774,'Come impostazione predefinita le date in questo sito saranno visualizzate con il fuso orario scelto.','it',0,0,0,0),(1775,'Notifiche di aggiornamento','it',0,0,0,0),(1776,'Controlla automaticamente gli aggiornamenti disponibili','it',0,0,0,0),(1777,'Rimossa dal database l\'azione \'%action\' non associata a moduli.','it',0,0,0,0),(1778,'L\'esecuzione di cron ha ecceduto il limite di tempo ed è stata interrotta.','it',0,0,0,0),(1779,'1 byte','it',0,0,0,0),(1780,'@count byte','it',1779,1,0,0),(1781,'!name non può essere più lungo di %max caratteri ma attualmente è lungo %length caratteri.','it',0,0,0,0),(1782,'Scelta non valida %choice nell\'elemento %name.','it',0,0,0,0),(1783,'Toolkit GD2 per la manipolazione delle immagini','it',0,0,0,0),(1784,'Il toolkit GD è installato e funziona correttamente.','it',0,0,0,0),(1785,'Definisce la qualità per la manipolazione delle immagini JPEG. Varia tra 0 e 100. Valori maggiori indicano una migliore qualità ma file più ingombranti.','it',0,0,0,0),(1786,'Il toolkit GD per le immagini richiede che il modulo GD per PHP sia installato e configurato correttamente. Per ulteriori informazioni vedi la <a href=\"@url\">documentazione di PHP sulle immagini</a>.','it',0,0,0,0),(1787,'La qualità JPEG deve essere un numero compreso tra 0 e 100.','it',0,0,0,0),(1788,'Da destra a sinistra','it',0,0,0,0),(1789,'Da sinistra a destra','it',0,0,0,0),(1790,'Lingua predefinita','it',0,0,0,0),(1791,'Lingua personalizzata','it',0,0,0,0),(1792,'Aggiungi una lingua personalizzata','it',0,0,0,0),(1793,'Salva lingua','it',0,0,0,0),(1794,'Identificatore di linguaggio rispondente allo standard <a href=\"@rfc4646\">RFC 4646</a>. I codici della lingua usano solitamente un codice paese e, opzionalmente, una sigla o nome di variante regionale. <em>Ad esempio: \"it\", \"en\", \"en-US\" e \"zh-Hant\".</em>','it',0,0,0,0),(1795,'Nome della lingua in Inglese','it',0,0,0,0),(1796,'Nome della lingua in inglese. Sarà disponibile per la traduzione in tutte le lingue.','it',0,0,0,0),(1797,'Nome originale della lingua','it',0,0,0,0),(1798,'Nome della lingua, tradotto nella lingua che si sta aggiungendo.','it',0,0,0,0),(1799,'Dominio per la lingua','it',0,0,0,0),(1800,'Direzione in cui il testo sarà mostrato in questa lingua.','it',0,0,0,0),(1801,'Lingua %language (%code) già esistente.','it',0,0,0,0),(1802,'Codice della lingua non valido.','it',0,0,0,0),(1803,'La lingua %language è stata creata ed è pronta per essere utilizzata. Ulteriori informazioni sono disponibili nella <a href=\"@locale-help\">pagina di aiuto</a>.','it',0,0,0,0),(1804,'I valori per dominio e prefisso del percorso non devono essere impostatati insieme.','it',0,0,0,0),(1805,'Il dominio (%domain) è già legato ad una lingua (%language).','it',0,0,0,0),(1806,'Solo la lingua predefinita può avere sia il dominio che il prefisso vuoti.','it',0,0,0,0),(1807,'Il prefisso (%prefix) è già legato ad una lingua (%language).','it',0,0,0,0),(1808,'La lingua inglese non può essere eliminata.','it',0,0,0,0),(1809,'La lingua predefinita non può essere eliminata.','it',0,0,0,0),(1810,'L\'eliminazione di una lingua rimuoverà tutte le traduzioni ad essa associate e i contenuti in tale lingua non saranno associati ad una lingua. Non è possibile annullare questa azione.','it',0,0,0,0),(1811,'La configurazione della scelta automatica della lingua è stata salvata.','it',0,0,0,0),(1812,'Inglese (incorporata)','it',0,0,0,0),(1813,'Il testo contiene','it',0,0,0,0),(1814,'Lascia vuoto per mostrare tutte le stringhe. La ricerca distingue maiuscole e minuscole.','it',0,0,0,0),(1815,'Inglese (fornito con Drupal)','it',0,0,0,0),(1816,'Cerca in','it',0,0,0,0),(1817,'Sia stringhe tradotte che non tradotte','it',0,0,0,0),(1818,'Solo stringhe tradotte','it',0,0,0,0),(1819,'Solo stringhe non tradotte','it',0,0,0,0),(1820,'Limita la ricerca a','it',0,0,0,0),(1821,'Tutti i gruppi di testo','it',0,0,0,0),(1822,'Lingue non ancora aggiunte','it',0,0,0,0),(1823,'Importa traduzione','it',0,0,0,0),(1824,'Un file Gettext Portable Object (<em>.po</em>).','it',0,0,0,0),(1825,'Importa in','it',0,0,0,0),(1826,'Scegli la lingua nella quale si vogliono aggiungere nuove stringhe. Se si sceglie una lingua non ancora impostata, questa verrà aggiunta.','it',0,0,0,0),(1827,'Gruppo di testo','it',0,0,0,0),(1828,'Le traduzioni importate saranno aggiunte a questo gruppo di testo.','it',0,0,0,0),(1829,'Il linguaggio %language è stato creato.','it',0,0,0,0),(1830,'Esporta traduzione','it',0,0,0,0),(1831,'Seleziona la lingua da esportare nel formato Gettext Portable Object (<em>.po</em>)','it',0,0,0,0),(1832,'Genera un file \"Gettext Portable Object Template (<em>.pot</em>) con tutte le stringhe dal database locale di Drupal.','it',0,0,0,0),(1833,'Testo non trovato.','it',0,0,0,0),(1834,'Il testo inserito contiene codice HTML non consentito: %string','it',0,0,0,0),(1835,'Il testo è stato salvato.','it',0,0,0,0),(1836,'Il testo è stato rimosso.','it',0,0,0,0),(1837,'La lingua selezionata per l\'importazione non è supportata.','it',0,0,0,0),(1838,'Il file di traduzione %filename sembra avere un\'intestazione mancante o errata.','it',0,0,0,0),(1839,'La traduzione è stata importata con successo. Ci sono %number nuove stringhe tradotte, %update stringhe sono state aggiornate e %delete stringhe sono state eliminate.','it',0,0,0,0),(1840,'Importazione delle traduzioni dell\'interfaccia','it',0,0,0,0),(1841,'Inizio importazione','it',0,0,0,0),(1842,'Errore durante l\'importazione delle traduzioni dell\'interfaccia','it',0,0,0,0),(1843,'Si è tentato l\'inserimento di una traduzione contenente HTML non consentito: %string','it',0,0,0,0),(1844,'La lingua %language (%code) è stata creata.','it',0,0,0,0),(1845,'%file importato in %locale: %number nuove stringhe aggiunte, %update aggiornate e %delete eliminate.','it',0,0,0,0),(1846,'File di traduzione %locale esportato: %filename.','it',0,0,0,0),(1847,'File di traduzione esportato: %filename.','it',0,0,0,0),(1848,'Aggiornato file di traduzione JavaScript per la lingua %language.','it',0,0,0,0),(1849,'Creato file di traduzione JavaScript per la lingua %language','it',0,0,0,0),(1850,'Rimosso file di traduzione JavaScript per la lingua %language, visto che non esistono al momento traduzioni per questa lingua.','it',0,0,0,0),(1851,'Si è presentato un errore durante la creazione del  file di traduzione JavaScript per la lingua %language.','it',0,0,0,0),(1852,'One translation string was skipped because it contains disallowed HTML.','it',0,0,0,0),(1853,'#\r\nOne translation string was skipped because it contains disallowed HTML.\r\n#\r\nModifica\r\n@count translation strings were skipped because they contain disallowed HTML.','it',1852,1,0,0),(1854,'Un file di traduzione è stato importato per i moduli appena installati.','it',0,0,0,0),(1855,'@count file di traduzione sono stati importati per i moduli appena installati.','it',1854,1,0,0),(1856,'Un file di traduzione importato per i moduli attivati.','it',0,0,0,0),(1857,'@count file di traduzione importati per i moduli attivati.','it',1856,1,0,0),(1858,'Abcaso','it',0,0,0,0),(1859,'Avestico','it',0,0,0,0),(1860,'Afrikaans','it',0,0,0,0),(1861,'Akan','it',0,0,0,0),(1862,'Amarico','it',0,0,0,0),(1863,'Assamese','it',0,0,0,0),(1864,'Avar','it',0,0,0,0),(1865,'Aymara','it',0,0,0,0),(1866,'Azero','it',0,0,0,0),(1867,'Bashkir','it',0,0,0,0),(1868,'Bielorusso','it',0,0,0,0),(1869,'Bihari','it',0,0,0,0),(1870,'Bislama','it',0,0,0,0),(1871,'Bambara','it',0,0,0,0),(1872,'Bengali','it',0,0,0,0),(1873,'Tibetano','it',0,0,0,0),(1874,'Bretone','it',0,0,0,0),(1875,'Bosniaco','it',0,0,0,0),(1876,'Ceceno','it',0,0,0,0),(1877,'Chamorro','it',0,0,0,0),(1878,'Corso','it',0,0,0,0),(1879,'Cree','it',0,0,0,0),(1880,'Slavo Antico','it',0,0,0,0),(1881,'Chuvash','it',0,0,0,0),(1882,'Gallese','it',0,0,0,0),(1883,'Maldivian','it',0,0,0,0),(1884,'Bhutani','it',0,0,0,0),(1885,'Ewe','it',0,0,0,0),(1886,'Esperanto','it',0,0,0,0),(1887,'Estone','it',0,0,0,0),(1888,'Basco','it',0,0,0,0),(1889,'Persiano','it',0,0,0,0),(1890,'Fulah','it',0,0,0,0),(1891,'Faeroese','it',0,0,0,0),(1892,'Friso','it',0,0,0,0),(1893,'Irlandese','it',0,0,0,0),(1894,'Gaelico scozzese','it',0,0,0,0),(1895,'Galician','it',0,0,0,0),(1896,'Guarani','it',0,0,0,0),(1897,'Gujarati','it',0,0,0,0),(1898,'Manx','it',0,0,0,0),(1899,'Hausa','it',0,0,0,0),(1900,'Hiri Motu','it',0,0,0,0),(1901,'Armeno','it',0,0,0,0),(1902,'Herero','it',0,0,0,0),(1903,'Interlingua','it',0,0,0,0),(1904,'Interlingue','it',0,0,0,0),(1905,'Igbo','it',0,0,0,0),(1906,'Inupiak','it',0,0,0,0),(1907,'Islandese','it',0,0,0,0),(1908,'Inuktitut','it',0,0,0,0),(1909,'Javanese','it',0,0,0,0),(1910,'Georgiano','it',0,0,0,0),(1911,'Kongo','it',0,0,0,0),(1912,'Kikuyu','it',0,0,0,0),(1913,'Kwanyama','it',0,0,0,0),(1914,'Kazakh','it',0,0,0,0),(1915,'Greenlandic','it',0,0,0,0),(1916,'Cambogiano','it',0,0,0,0),(1917,'Kannada','it',0,0,0,0),(1918,'Kanuri','it',0,0,0,0),(1919,'Kashmiri','it',0,0,0,0),(1920,'Curdo','it',0,0,0,0),(1921,'Cornish','it',0,0,0,0),(1922,'Latino','it',0,0,0,0),(1923,'Lussemburghese','it',0,0,0,0),(1924,'Luganda','it',0,0,0,0),(1925,'Lingala','it',0,0,0,0),(1926,'Laotiano','it',0,0,0,0),(1927,'Lettone','it',0,0,0,0),(1928,'Malagasy','it',0,0,0,0),(1929,'Marshallese','it',0,0,0,0),(1930,'Macedone','it',0,0,0,0),(1931,'Malayalam','it',0,0,0,0),(1932,'Mongolo','it',0,0,0,0),(1933,'Moldavo','it',0,0,0,0),(1934,'Marathi','it',0,0,0,0),(1935,'Malese','it',0,0,0,0),(1936,'Maltese','it',0,0,0,0),(1937,'Burmese','it',0,0,0,0),(1938,'North Ndebele','it',0,0,0,0),(1939,'Nepali','it',0,0,0,0),(1940,'Ndonga','it',0,0,0,0),(1941,'Norwegian Bokmål','it',0,0,0,0),(1942,'Norwegian Nynorsk','it',0,0,0,0),(1943,'South Ndebele','it',0,0,0,0),(1944,'Chichewa','it',0,0,0,0),(1945,'Occitano','it',0,0,0,0),(1946,'Oromo','it',0,0,0,0),(1947,'Oriya','it',0,0,0,0),(1948,'Ossetian','it',0,0,0,0),(1949,'Punjabi','it',0,0,0,0),(1950,'Pali','it',0,0,0,0),(1951,'Pashto','it',0,0,0,0),(1952,'Portoghese, Portogallo','it',0,0,0,0),(1953,'Portoghese, Brasile','it',0,0,0,0),(1954,'Quechua','it',0,0,0,0),(1955,'Rhaeto-Romance','it',0,0,0,0),(1956,'Kirundi','it',0,0,0,0),(1957,'Kinyarwanda','it',0,0,0,0),(1958,'Sanscrito','it',0,0,0,0),(1959,'Sardo','it',0,0,0,0),(1960,'Sindhi','it',0,0,0,0),(1961,'Northern Sami','it',0,0,0,0),(1962,'Sango','it',0,0,0,0),(1963,'Serbo-Croato','it',0,0,0,0),(1964,'Sinhala','it',0,0,0,0),(1965,'Sloveno','it',0,0,0,0),(1966,'Samoan','it',0,0,0,0),(1967,'Shona','it',0,0,0,0),(1968,'Albanese','it',0,0,0,0),(1969,'Serbo','it',0,0,0,0),(1970,'Siswati','it',0,0,0,0),(1971,'Sesotho','it',0,0,0,0),(1972,'Sudanese','it',0,0,0,0),(1973,'Swahili','it',0,0,0,0),(1974,'Tamil','it',0,0,0,0),(1975,'Telugu','it',0,0,0,0),(1976,'Tajik','it',0,0,0,0),(1977,'Thai','it',0,0,0,0),(1978,'Tigrinya','it',0,0,0,0),(1979,'Turcmeno','it',0,0,0,0),(1980,'Tagalog','it',0,0,0,0),(1981,'Setswana','it',0,0,0,0),(1982,'Tsonga','it',0,0,0,0),(1983,'Tatar','it',0,0,0,0),(1984,'Twi','it',0,0,0,0),(1985,'Taitiano','it',0,0,0,0),(1986,'Ucraino','it',0,0,0,0),(1987,'Urdu','it',0,0,0,0),(1988,'Uzbeco','it',0,0,0,0),(1989,'Venda','it',0,0,0,0),(1990,'Vietnamita','it',0,0,0,0),(1991,'Wolof','it',0,0,0,0),(1992,'Xhosa','it',0,0,0,0),(1993,'Yiddish','it',0,0,0,0),(1994,'Yoruba','it',0,0,0,0),(1995,'Zhuang','it',0,0,0,0),(1996,'Cinese, Semplificato','it',0,0,0,0),(1997,'Cinese, Tradizionale','it',0,0,0,0),(1998,'Zulu','it',0,0,0,0),(1999,'Errore durante l\'invio di posta (da %from a %to).','it',0,0,0,0),(2000,'ordinamento crescente','it',0,0,0,0),(2001,'ordinamento decrescente','it',0,0,0,0),(2002,'Le operazioni su stringhe Unicode sono emulate per quanto possibile. Installare la <a href=\"@url\">estensione PHP mbstring</a> per un miglior supporto a Unicode.','it',0,0,0,0),(2003,'L\'overloading delle funzioni su stringhe multibyte è attivo in PHP e deve essere disabilitato. Controllare il parametro <em>mbstring.func_overload</em> nel file php.ini. Fare riferimento alla <a href=\"@url\">documentazione di PHP mbstring</a> per ulteriori informazioni.','it',0,0,0,0),(2004,'La conversione di stringhe multibyte in input è attiva in PHP e deve essere disabilitata. Controllare il parametro <em>mbstring.encoding_translation</em> nel file php.ini. Fare riferimento alla <a href=\"@url\">documentazione di PHP mbstring</a> per ulteriori informazioni.','it',0,0,0,0),(2005,'La conversione di stringhe multibyte in input è attiva in PHP e deve essere disabilitata. Controllare il parametro <em>mbstring.http_input</em> nel file php.ini. Fare riferimento alla <a href=\"@url\">documentazione di PHP mbstring</a> per ulteriori informazioni.','it',0,0,0,0),(2006,'La conversione di stringhe multibyte in output è attiva in PHP e deve essere disabilitata. Controllare il parametro <em>mbstring.http_output</em> nel file php.ini. Fare riferimento alla <a href=\"@url\">documentazione di PHP mbstring</a> per ulteriori informazioni.','it',0,0,0,0),(2007,'PHP standard','it',0,0,0,0),(2008,'Estensione Mbstring per PHP','it',0,0,0,0),(2009,'Libreria Unicode','it',0,0,0,0),(2010,'Impossibile convertire la codifica %s XML in UTF-8.','it',0,0,0,0),(2011,'Codifica %s non supportata. Installare iconv, GNU recode o mbstring per PHP.','it',0,0,0,0),(2012,'errore di interpretazione. sintassi non conforme','it',0,0,0,0),(2013,'Errore di interpretazione. La richiesta non è conforme.','it',0,0,0,0),(2014,'Errore del server. XML-RPC non valido. La richiesta deve essere un methodCall.','it',0,0,0,0),(2015,'Errore server. Il metodo richesto @methodname non è stato specificato.','it',0,0,0,0),(2016,'Errore del server: numero errato di parametri del metodo.','it',0,0,0,0),(2017,'Errore del server: parametri invalidi per il metodo.','it',0,0,0,0),(2018,'Errore server. La funzione richiesta @method non esiste.','it',0,0,0,0),(2019,'Sintassi non valida per system.multicall.','it',0,0,0,0),(2020,'Le chiamate ricorsive a system.multicall sono proibite','it',0,0,0,0),(2021,'Errore del server. La firma per il metodo @methodname non è stata specificata.','it',0,0,0,0),(2022,'Il nome del feed (o il nome del sito web che fornisce il feed).','it',0,0,0,0),(2023,'Categorizza i nuovi oggetti','it',0,0,0,0),(2024,'Sei sicuro di voler rimuovere tutti gli elementi dal feed %feed?','it',0,0,0,0),(2025,'caselle controllo','it',0,0,0,0),(2026,'selettore multiplo','it',0,0,0,0),(2027,'Migliaia di siti (in particolar modo siti di notizie e blog) pubblicano i loro ultimi titoli e articoli tramite feed, usando svariati formati standard XML. I formati supportati dall\'aggregatore includono <a href=\"@rss\">RSS</a>, <a href=\"@rdf\">RDF</a>, e <a href=\"@atom\">Atom</a>.','it',0,0,0,0),(2028,'In basso sono elencati i feeds attivi e <a href=\"@addfeed\">possono essere aggiunti nuovi feeds</a>.  Per ogni feed o categoria di feed può essere abilitato il blocco <em>ultimi elementi</em> dalla <a href=\"@block\">pagina di amministrazione Blocchi</a>.','it',0,0,0,0),(2029,'Aggiunge un feed in formato RSS, RDF o Atom. Un feed può avere solo una sola configurazione.','it',0,0,0,0),(2030,'Le categorie permettono agli elementi di feed differenti di essere raggruppati insieme. Per esempio, alcuni feed che parlano di sport potrebbero appartenere a una categoria chiamata <em>Sport</em>. Gli elementi del feed possono essere raggruppati automaticamente (selezionando la categoria quando si crea o modifica un feed) o manualmente (tramite la pagina <em>Categorizza</em> disponibile nell\'elenco degli elementi del feed). Ogni categoria corrisponde a una propria pagina e a un blocco del feed.','it',0,0,0,0),(2031,'Configura quali contenuti il tuo sito aggrega da altri siti, la frequenza di aggiornamento e come sono categorizzati.','it',0,0,0,0),(2032,'Aggiorna oggetti','it',0,0,0,0),(2033,'Modifica feed','it',0,0,0,0),(2034,'Nessun blocco in questa regione','it',0,0,0,0),(2035,'Il blocco %info è stato assegnato ad una regione (%region) non valida ed è stato disabilitato.','it',0,0,0,0),(2036,'I cambiamenti a questi blocchi non saranno salvati finché il bottone <em>Salva blocchi</em> è cliccato.','it',0,0,0,0),(2037,'Crea un nuovo articolo del blog','it',0,0,0,0),(2038,'Non ti è consentito inserire un nuovo articolo del blog.','it',0,0,0,0),(2039,'Non hai creato nessun post per il blog.','it',0,0,0,0),(2040,'!author non ha creato nessun post nel blog.','it',0,0,0,0),(2041,'Non è stato creato alcun contenuto per il blog.','it',0,0,0,0),(2042,'Articolo del blog','it',0,0,0,0),(2043,'Vedi messaggi recenti del blog','it',0,0,0,0),(2044,'Leggi gli ultimi post del blog di !username','it',0,0,0,0),(2045,'Blog di !username','it',0,0,0,0),(2046,'Leggi gli ultimi messaggi del blog.','it',0,0,0,0),(2047,'Il tipo di contenuto per il link %add-child deve essere uno di quelli selezionati come consentiti per la struttura del book.','it',0,0,0,0),(2048,'Salva le pagine del book.','it',0,0,0,0),(2049,'Questo book è stato modificato da un altro utente: i cambiamenti non possono essere salvati.','it',0,0,0,0),(2050,'Titolo cambiato da %original a %current.','it',0,0,0,0),(2051,'Il book %title è stato aggiornato.','it',0,0,0,0),(2052,'book: %title aggiornato.','it',0,0,0,0),(2053,'Aggiorna struttura del book','it',0,0,0,0),(2054,'Rimuovi dalla struttura del book','it',0,0,0,0),(2055,'Non è stato apportato alcun cambiamento','it',0,0,0,0),(2056,'Il contenuto è stato aggiunto al book selezionato. Puoi ora posizionarlo relativamente alle altre pagine.','it',0,0,0,0),(2057,'La struttura del book è stata aggiornata.','it',0,0,0,0),(2058,'Si è verificato un errore durante l\'aggiunta di contenuto al book.','it',0,0,0,0),(2059,'%title ha delle pagine figlio associate, che verranno ricollocate automaticamente al fine di mantenere il loro collegamento con il book. Per ricreare la gerarchia (così com\'era prima della rimozione di questa pagina), può essere aggiunta ancora la voce %title utilizzando il tab Struttura, e ciascuna delle sue pagine figlio dovrà essere ricollocata manualmente.','it',0,0,0,0),(2060,'%title può essere aggiunto di nuovo alla gerarchia usando l\'Outline tab.','it',0,0,0,0),(2061,'Sei sicuro di voler rimuovere %title dalla gerarchia del book?','it',0,0,0,0),(2062,'Il contenuto è stato rimosso dal book.','it',0,0,0,0),(2063,'Mostra una versione stampabile di questa pagina del book e delle sue sottopagine.','it',0,0,0,0),(2064,'Mostra il blocco su tutte le pagine','it',0,0,0,0),(2065,'Mostra il blocco solo nelle pagine del book','it',0,0,0,0),(2066,'Selezionando <em>mostra il blocco su tutte le pagine</em>, il blocco presenterà i menu generati automaticamente per tutti i book del sito. Selezionando <em>Mostra il blocco solo nelle pagine del book</em>, il blocco conterrà solo il menu corrispondente al book della pagina corrente. In questo caso, se la pagina corrente non fa parte di un book, nessun blocco verrà mostrato. Per specificare con maggiore dettaglio i criteri di visualizzazione di questo blocco, è possibile usare le <em>impostazioni di visibilità per pagina</em> o altre impostazioni di visibilità.','it',0,0,0,0),(2067,'Questa è la pagina di livello più alto (radice) in questo book.','it',0,0,0,0),(2068,'Nessun book è stato selezionato.','it',0,0,0,0),(2069,'Pagina principale del book. Il livello massimo di profondità per un book e per tutte le pagine figlie è !maxdepth. Alcune pagine nel book selezionato potrebbero non essere disponibili come principali se selezionandole si eccede questo limite.','it',0,0,0,0),(2070,'%title è parte della struttura di un book ed è associato a sottopagine. Se procedi con l\'eliminazione, le sottopagine verranno automaticamente trasferite.','it',0,0,0,0),(2071,'Riordina le pagine del book e cambia i titoli','it',0,0,0,0),(2072,'Pagina del book','it',0,0,0,0),(2073,'Colore di base','it',0,0,0,0),(2074,'Testata superiore','it',0,0,0,0),(2075,'Testata inferiore','it',0,0,0,0),(2076,'PHP non ha abbastanza memoria a disposizione per modificare lo schema colori del tema. Servono almeno %size in più. Consulta la <a href=\"@url\">documentazione PHP</a> per ulteriori informazioni.','it',0,0,0,0),(2077,'Elimina i commenti selezionati','it',0,0,0,0),(2078,'Permette agli utenti di commentare e discutere i contenuti pubblicati.','it',0,0,0,0),(2079,'Esempio: \'commento dal sito\' oppure \'informazione prodotto\'.','it',0,0,0,0),(2080,'Quando vengono elencate le categorie, quelle più leggere (peso minore) vengono elencate prima delle categorie più pesanti (peso maggiore). Le categorie con peso uguale vengono elencate in ordine alfabetico.','it',0,0,0,0),(2081,'Il form di contatto non è stato configurato. <a href=\"@add\">Aggiungi una o più categorie</a> al form.','it',0,0,0,0),(2082,'Modulo di contatto personale','it',0,0,0,0),(2083,'Crea un modulo di contatto ed imposta le categorie per l\'uso del modulo.','it',0,0,0,0),(2084,'Modifica categoria contatto','it',0,0,0,0),(2085,'Permette l\'uso di moduli di contatto personali e per il sito.','it',0,0,0,0),(2086,'Registro eventi (log) su database','it',0,0,0,0),(2087,'Visualizza gli eventi che sono stati recentemente registrati.','it',0,0,0,0),(2088,'Errori \'pagina non trovata\' più frequenti','it',0,0,0,0),(2089,'Visualizza gli errori di \'pagina non trovata\' (404)','it',0,0,0,0),(2090,'Errori \'accesso negato\' più frequenti','it',0,0,0,0),(2091,'Mostra gli errori \'accesso negato\' (403).','it',0,0,0,0),(2092,'Registra eventi del sistema nel database.','it',0,0,0,0),(2093,'Nessun ruolo può usare questo formato','it',0,0,0,0),(2094,'Elementi HTML permessi: @tags','it',0,0,0,0),(2095,'Le ancore servono a creare collegamenti ad altre pagine.','it',0,0,0,0),(2096,'Come impostazione predefinita, gli elementi di interruzione linea sono inseriti automaticamente, quindi utilizza questo elemento per aggiungerne di ulteriori. L\'uso di questo elemento è differente perché non prevede una coppia aperto/chiuso come tutti gli altri. Aggiungi un \" /\" extra all\'interno dell\'elemento per mantenere la compatibilità con XHTML 1.0','it',0,0,0,0),(2097,'Testo con interruzione di linea <br />','it',0,0,0,0),(2098,'Come impostazione predefinita, gli elementi che definiscono i paragrafi sono aggiunti automaticamente, quindi utilizza questo elemento per aggiungerne di ulteriori.','it',0,0,0,0),(2099,'Paragrafo uno.','it',0,0,0,0),(2100,'Paragrafo due.','it',0,0,0,0),(2101,'Evidenziato','it',0,0,0,0),(2102,'Enfatizzato','it',0,0,0,0),(2103,'Citazione','it',0,0,0,0),(2104,'Testo codice utilizzato per mostrare il codice sorgente dei programmi','it',0,0,0,0),(2105,'Codice','it',0,0,0,0),(2106,'Grassetto','it',0,0,0,0),(2107,'Corsivo','it',0,0,0,0),(2108,'Scritto in alto','it',0,0,0,0),(2109,'Scritto <sup>in alto</sup>','it',0,0,0,0),(2110,'Scritto in basso','it',0,0,0,0),(2111,'Scritto <sub>sotto</sub>','it',0,0,0,0),(2112,'<abbr title=\"Abbreviazione\">Abbrev.</abbr>','it',0,0,0,0),(2113,'<acronym title=\"Acronimo di 3 lettere\">TLA</acronym>','it',0,0,0,0),(2114,'Blocco testo citato','it',0,0,0,0),(2115,'Testo citato in linea','it',0,0,0,0),(2116,'Intestazione tabella','it',0,0,0,0),(2117,'Cella tabella','it',0,0,0,0),(2118,'Elenco ordinato - utilizza &lt;li&gt; all\'inizio di ogni voce dell\'elenco','it',0,0,0,0),(2119,'Prima voce','it',0,0,0,0),(2120,'Seconda voce','it',0,0,0,0),(2121,'Elenco non ordinato - utilizza &lt;li&gt; all\'inizio di ogni voce dell\'elenco','it',0,0,0,0),(2122,'Gli elenchi definizione sono simili agli altri elenchi HTML. &lt;dl&gt; inizia l\'elenco definizione, &lt;dt&gt; inizia il termine da definire e &lt;dd&gt; inizia la descrizione della definizione.','it',0,0,0,0),(2123,'Primo termine','it',0,0,0,0),(2124,'Prima definizione','it',0,0,0,0),(2125,'Secondo termine','it',0,0,0,0),(2126,'Seconda definizione','it',0,0,0,0),(2127,'Sottotitolo tre','it',0,0,0,0),(2128,'Sottotitolo quattro','it',0,0,0,0),(2129,'Sottotitolo cinque','it',0,0,0,0),(2130,'sottotitolo sei','it',0,0,0,0),(2131,'Descrizione elemento','it',0,0,0,0),(2132,'Cosa scrivi','it',0,0,0,0),(2133,'Cosa vedi','it',0,0,0,0),(2134,'Aiuto non disponibile per l\'elemento %tag','it',0,0,0,0),(2135,'E commerciale','it',0,0,0,0),(2136,'Virgolette','it',0,0,0,0),(2137,'Descrizione carattere','it',0,0,0,0),(2138,'Linee e paragrafi vanno a capo automaticamente.','it',0,0,0,0),(2139,'Le linee e i paragrafi vengono riconosciuti automaticamente. Gli elementi &lt;br /&gt; a capo, &lt;p&gt; paragrafo e &lt;/p&gt; chiuso paragrafo vengono inseriti automaticamente. Se i paragrafi non vengono riconosciuti è sufficiente aggiungere un paio di linee vuote.','it',0,0,0,0),(2140,'Indirizzi web o e-mail vengono trasformati in link automaticamente','it',0,0,0,0),(2141,'Configura la modalità di filtraggio del contenuto inserito dagli utenti, compresi i tag HTML permessi. Consente inoltre l\'attivazione dei filtri forniti dai moduli abilitati.','it',0,0,0,0),(2142,'Suggerimenti per la composizione','it',0,0,0,0),(2143,'Nome corto ma significativo per questa serie di discussioni.','it',0,0,0,0),(2144,'Descrizione e linee guida per le discussioni all\'interno di questo forum.','it',0,0,0,0),(2145,'I forum sono mostrati in ordine ascendente rispetto al loro peso (forum con pesi uguali sono mostrati in ordine alfabetico).','it',0,0,0,0),(2146,'Nome breve ma significativo per questa collezione di forum correlati.','it',0,0,0,0),(2147,'Descrizione e linee guida per i forum all\'interno di questo contenitore.','it',0,0,0,0),(2148,'I contenitori sono visualizzati in ordine ascendente rispetto al loro peso (i contenitori con pesi uguali sono visualizzati seguendo l\'ordine alfabetico).','it',0,0,0,0),(2149,'Eliminando un forum o un contenitore, verranno eliminati anche i relativi sotto-forum esistenti. Per eliminare le discussioni in questo forum, visita prima <a href=\"@content\">amministra contenuti</a>. L\'operazione non è reversibile.','it',0,0,0,0),(2150,'Numero di default di argomenti del forum visualizzati per pagina.','it',0,0,0,0),(2151,'Ordine di visualizzazione predefinito per gli argomenti','it',0,0,0,0),(2152,'I contenitori sono di solito posizionati al livello più alto (radice), ma possono anche essere posizionati all\'interno di un altro contenitore o forum.','it',0,0,0,0),(2153,'I forum possono essere posizionati al livello più alto (radice), oppure all\'interno di un altro contenitore o forum.','it',0,0,0,0),(2154,'Per maggiori informazioni consulta il manuale on-line per il <a href=\"@forum\">modulo Forum</a>.','it',0,0,0,0),(2155,'Argomento di discussione del forum','it',0,0,0,0),(2156,'Non hai il permesso di pubblicare nuovi contenuti nel forum.','it',0,0,0,0),(2157,'Gestisce la visualizzazione dell\'aiuto on-line.','it',0,0,0,0),(2158,'Questa pagina fornisce una panoramica delle stringhe traducibili disponibili. Drupal visualizza le stringhe traducibili in gruppi di testo; i moduli possono definire ulteriori gruppi di testo contenenti altre stringhe traducibili. Poiché i gruppi di testo forniscono un metodo per raggruppare stringhe correlate, essi sono spesso utilizzati per focalizzare le attività di traduzioni su aree specifiche dell\'interfaccia di Drupal.','it',0,0,0,0),(2159,'Notare che i file <em>.po</em> all\'interno di un pacchetto di traduzione sono importati automaticamente (se disponibili) quando vengono abilitati nuovi moduli o temi, o quando sono aggiunte nuove lingue. Dal momento che questa pagina consente di importare un file <em>.po</em> alla volta, potrebbe essere più semplice effettuare il download e l\'estrazione di un pacchetto di traduzione nella directory di installazione di Drupal e <a href=\"@language-add\">aggiungere la lingua</a> (che automaticamente importa tutti i file <em>.po</em> contenuti nel pacchetto). I pacchetti di traduzione sono disponibili per il download nella <a href=\"@translations\">Pagina di traduzione di Drupal</a>.','it',0,0,0,0),(2160,'Questa pagina esporta i testi del sito con le relative traduzioni. È possibile esportare un file nel formato Gettext Portable Object (<em>.po</em>) che include sia il testo originale che la traduzione (usato per condividere le traduzioni con altri), oppure nel formato Gettext Portable Object Template (<em>.pot</em>), che include soltanto i testi originali (usato per creare nuove traduzioni con un editor di traduzione Gettext).','it',0,0,0,0),(2161,'Interfaccia incorporata','it',0,0,0,0),(2162,'La lingua di default di questo account per le e-mail e la lingua preferita per la presentazione del sito.','it',0,0,0,0),(2163,'La lingua di default di questo account per le e-mail.','it',0,0,0,0),(2164,'Un Alias di percorso assegnato a una lingua specifica sarà sempre usato quando si mostra questa pagina in quell\'idioma e avrà la precedenza sulla configurazione degli alias di percorso per <em>tutte le lingue</em>.','it',0,0,0,0),(2165,'Attiva il supporto multilingue per questo tipo di contenuto. Se attivato, un campo per la selezione della lingua sarà aggiunto al form di modifica, consentendo di scegliere una delle <a href=\"!languages\">lingue attivate</a>. Se disattivato, i nuovi contenuti saranno salvati con la lingua predefinita. Un contenuto esistente non sarà influenzato dal cambiamento di questa opzione.','it',0,0,0,0),(2166,'Configura le lingue per i contenuti e l\'interfaccia utente.','it',0,0,0,0),(2167,'Traduci l\'interfaccia integrata ed opzionalmente altri testi.','it',0,0,0,0),(2168,'Aggiunge funzionalità di gestione della lingua e abilita la traduzione dellla interfaccia utente in lingue diverse dall\'inglese.','it',0,0,0,0),(2169,'Impostazioni del form d\'invio','it',0,0,0,0),(2170,'Questo tipo di contenuto non ha un campo titolo.','it',0,0,0,0),(2171,'Il nome ad uso interno deve contenere soltanto lettere minuscole, numeri e underscore.','it',0,0,0,0),(2172,'Il nome %name leggibile dagli utenti è già utilizzato da un altro tipo.','it',0,0,0,0),(2173,'Sei sicuro di voler eliminare il tipo di contenuto %type?','it',0,0,0,0),(2174,'Aggiunto tipo di contenuto %name','it',0,0,0,0),(2175,'Cambiato il tipo di contenuto di 1 contenuto da %old-type a %type.','it',0,0,0,0),(2176,'Cambiato il tipo di contenuto di @count contenuti da %old-type a %type.','it',2175,1,0,0),(2177,'Sei sicuro di voler ricostruire i permessi del contenuto del sito?','it',0,0,0,0),(2178,'Questa azione ricostruisce tutti i permessi del contenuto del sito e potrebbe durare molto. L\'operazione non è reversibile.','it',0,0,0,0),(2179,'lingua','it',0,0,0,0),(2180,'E\' avvenuto un errore e il processo non è stato completato.','it',0,0,0,0),(2181,'La versione troncata del contenuto mostra come verrà visualizzato quando promosso nella pagina principale o esportato nel feed RSS.<span class=\"no-js\"> Puoi inserire il delimitatore \"&lt;!--break--&gt;\" (senza le virgolette) per decidere con precisione dove il contenuto sarà troncato.</span>','it',0,0,0,0),(2182,'Copia della revisione del %date.','it',0,0,0,0),(2183,'@type %title è stato riportato alla revisione del %revision-date.','it',0,0,0,0),(2184,'La revisione del %revision-date di @type %title è stata eliminata.','it',0,0,0,0),(2185,'@type: ripristinata revisione %revision del contenuto %title.','it',0,0,0,0),(2186,'I permessi di accesso al contenuto devono essere ricostruiti.','it',0,0,0,0),(2187,'<strong>Configura il tuo sito web</strong> Una volta autenticato, vai sulla <a href=\"@admin\">sezione d\'amministrazione</a>, dove puoi <a href=\"@config\">personalizzare e configurare</a> tutti gli aspetti del tuo sito.','it',0,0,0,0),(2188,'<strong>Abilita le funzioni aggiuntive</strong> Ora, vai alla <a href=\"@modules\">lista moduli</a> e abilita le caratteristiche che corrispondono alle tue necessità. Puoi trovare moduli aggiuntivi sulla <a href=\"@download_modules\">sezione download moduli di Drupal</a>.','it',0,0,0,0),(2189,'<strong>Personalizza il design del tuo sito</strong> Per cambiare il \"look and feel\" del tuo sito, vai alla <a href=\"@themes\">sezione temi</a>. Potrai scegliere da uno dei temi installati o scaricarne uno aggiuntivo dalla <a href=\"@download_themes\">sezione download temi di Drupal</a>.','it',0,0,0,0),(2190,'Ricostruzione dei permessi d\'accesso ai contenuti','it',0,0,0,0),(2191,'I permessi d\'accesso ai contenuti sono stati ricostruiti.','it',0,0,0,0),(2192,'I permessi di accesso contenuto non sono stati correttamente ricostruiti.','it',0,0,0,0),(2193,'Aggiungi un tipo di contenuto','it',0,0,0,0),(2194,'Riporta ad una versione precedente','it',0,0,0,0),(2195,'Eliminata una revisione precedente','it',0,0,0,0),(2196,'Permette di inserire contenuti nel sito e di mostrarli nelle pagine.','it',0,0,0,0),(2197,'Per usare OpenID è necessario innanzitutto stabilire un\'identità su un server OpenID pubblico o privato. Se non si è in possesso di un OpenID e se ne desidera uno, è possibile visitare uno dei <a href=\"@openid-providers\">fornitori pubblici gratuiti</a>. Ulteriori informazioni su OpenID sono reperibili in <a href=\"@openid-net\">questo sito</a>.','it',0,0,0,0),(2198,'Identità OpenID','it',0,0,0,0),(2199,'Consente agli utenti di accedere al sito usando OpenID.','it',0,0,0,0),(2200,'L\'alias %alias è già in uso con questa lingua.','it',0,0,0,0),(2201,'L\'alias è stato salvato.','it',0,0,0,0),(2202,'Sei sicuro di voler eliminare l\'alias %title di questo percorso?','it',0,0,0,0),(2203,'Filtra alias','it',0,0,0,0),(2204,'Inserisci il percorso per cui vuoi creare l\'alias, seguito dal nome del nuovo alias.','it',0,0,0,0),(2205,'Alias URL','it',0,0,0,0),(2206,'Cambia i percorsi URL del tuo sito definendo degli alias.','it',0,0,0,0),(2207,'Modifica alias','it',0,0,0,0),(2208,'Elimina alias','it',0,0,0,0),(2209,'Aggiungi alias','it',0,0,0,0),(2210,'Permette agli utenti di rinominare gli URL.','it',0,0,0,0),(2211,'<a href=\"@drupal\">Drupal.org</a> offre <a href=\"@php-snippets\">alcuni esempi di piccoli e utili codici PHP</a>, oppure è possibile crearne di propri con un po\' di esperienza con PHP e conoscenza di Drupal.','it',0,0,0,0),(2212,'Puoi pubblicare codice PHP. Devi includere i marcatori &lt;?php ?&gt;.','it',0,0,0,0),(2213,'Codice PHP personalizzato in uso','it',0,0,0,0),(2214,'Il codice PHP personalizzato può essere inserito in alcune parti del sito, compresi contenuti e blocchi. Inserire codice PHP personalizzato all\'interno di contenuti e blocchi è una funzione molto potente e flessibile se usata da utenti esperti, bisogna comunque tenere presente che si corre il serio rischio di esporsi a danni e guai seri nella sicurezza del sito se lo si usa impropriamente. Anche un piccolo errore durante la pubblicazione del codice PHP può compromettere il sito.','it',0,0,0,0),(2215,'Se non hai confidenza con PHP, SQL e Drupal evita l\'utilizzo di codice PHP personalizzato all\'interno dei post. Sperimentare col PHP potrebbe danneggiare il database, rendere il sito inaccessibile o comprometterne seriamente la sicurezza.','it',0,0,0,0),(2216,'Note:','it',0,0,0,0),(2217,'Ricorda di controllare più volte ogni linea di codice per la sintassi e gli errori logici <strong>prima</strong> di salvare.','it',0,0,0,0),(2218,'Le dichiarazioni devono come da regola terminare con il punto e virgola.','it',0,0,0,0),(2219,'Le variabili globali usati all\'interno del vostro codice PHP mantengono i loro valori anche dopo l\'esecuzione dello script.','it',0,0,0,0),(2220,'<code>register_globals</code> è <strong>disabilitato</strong>. Se si vuole utilizzare le form, comprendere e usare le funzioni contenute in <a href=\"@formapi\">Drupal Form API</a>.','it',0,0,0,0),(2221,'Usa il comando <code>print</code> o <code>return</code> per ottenere l\'output del contenuto.','it',0,0,0,0),(2222,'Sviluppa e testa il tuo codice PHP usando uno script e un database separati, prima di usarli in un sito di produzione.','it',0,0,0,0),(2223,'Considerare l\'inclusione del codice PHP personalizzato all\'interno di un modulo specifico al sito oppure del file <code>template.php</code> piuttosto che incorporarlo direttamente all\'interno di un contenuto o di un blocco.','it',0,0,0,0),(2224,'Bisogna essere consapevoli del fatto che la capacità di incorporare direttamente codice PHP all\'interno di un contenuto è data dal modulo Filtro PHP. Se questo modulo è disattivato o eliminato, il codice PHP contenuto nei blocchi e nei contenuti sarà visualizzato, anziché eseguito.','it',0,0,0,0),(2225,'Un esempio basilare: <em>Creare un blocco di \"Benvenuto\" che accoglie i visitatori con un semplice messaggio.</em>','it',0,0,0,0),(2226,'Analizzatore PHP','it',0,0,0,0),(2227,'Esegue un pezzo di codice PHP. L\'uso di questo filtro dovrebbe essere permesso solamente agli amministratori!','it',0,0,0,0),(2228,'Consente di interpretare codice PHP','it',0,0,0,0),(2229,'Voti totali: @votes','it',0,0,0,0),(2230,'Sondaggi più recenti','it',0,0,0,0),(2231,'Un <em>sondaggio</em> è una domanda con una serie di possibili risposte. Un <em>sondaggio</em>, una volta creato, fornisce automaticamente il conteggio del numero di voti ricevuti per ogni risposta.','it',0,0,0,0),(2232,'Stato del sondaggio','it',0,0,0,0),(2233,'Quando un sondaggio è chiuso, i visitatori non possono più votare per esso.','it',0,0,0,0),(2234,'Dopo questo periodo, il sondaggio verrà chiuso automaticamente.','it',0,0,0,0),(2235,'I valori negativi non sono permessi.','it',0,0,0,0),(2236,'Il tuo voto non può essere registrato perché non hai selezionato nessuna delle risposte.','it',0,0,0,0),(2237,'Conteggio voti','it',0,0,0,0),(2238,'Sondaggi','it',0,0,0,0),(2239,'I campi del profilo sono stati aggiornati.','it',0,0,0,0),(2240,'Non ci sono campi in questa categoria. Se questa categoria rimane vuota quando salvata, sarà rimossa.','it',0,0,0,0),(2241,'Il nome del campo. Il nome del form non è visualizzato dall\'utente ma è usato internamente nel codice HTML e nell\'URL. \r\nA meno che non si sappia esattamente ciò che si fà, è caldamente consigliato utilizzare il prefisso <code>profile_</code> per evitare confusione con gli altri campi. Spazi ed altri caratteri speciali, eccetto il meno (-) e il trattino basso (_), non sono permessi. Ad es: \"profile_colore_preferito\" o forse ancora meglio \"profile_colore\".','it',0,0,0,0),(2242,'Lista di tutte le opzioni. Metti ogni opzione in una riga separata. Opzioni di esempio potrebbero essere \"rosso\", \"blu\", \"verde\", ecc.','it',0,0,0,0),(2243,'Campo nascosto del profilo, accessibile solo dagli amministratori, dai moduli e dai temi.','it',0,0,0,0),(2244,'Campo privato, contenuto visibile solo agli utenti autorizzati.','it',0,0,0,0),(2245,'Campo pubblico, contenuto mostrato nel profilo ma non utilizzato nelle pagine che elencano l\'utente.','it',0,0,0,0),(2246,'Campo pubblico, contenuto mostrato nella pagina profilo e nelle pagine che elencano l\'utente.','it',0,0,0,0),(2247,'Il peso definisce l\'ordine in cui appaiono i campi del form. I campi più leggeri \"fluttuano\" verso la cima della categoria.','it',0,0,0,0),(2248,'Form con autocompletamento durante la scrittura dell\'utente.','it',0,0,0,0),(2249,'Per la sicurezza l\'autocompletamento sarà disattivato per gli utenti che non hanno accesso ai profili.','it',0,0,0,0),(2250,'Il nome che hai specificato per il form contiene uno o più caratteri non autorizzati. Spazi od altri caratteri, eccetto il trattino alto (-) e l\'underscore (_), non sono permessi.','it',0,0,0,0),(2251,'Il nome scheda specificato è riservato ad uso di Drupal.','it',0,0,0,0),(2252,'Il nome che hai specificato per la categoria è riservato all\'utilizzo esclusivo di Drupal.','it',0,0,0,0),(2253,'Il titolo specificato è già utilizzato.','it',0,0,0,0),(2254,'Il nome specificato è già utilizzato.','it',0,0,0,0),(2255,'Un campo nascosto non può essere obbligatorio.','it',0,0,0,0),(2256,'Un campo nascosto non può essere impostato a \"visibile\" nella form di registrazione.','it',0,0,0,0),(2257,'Il campo è stato creato.','it',0,0,0,0),(2258,'Sei sicuro di voler eliminare il campo %field?','it',0,0,0,0),(2259,'Questa azione non è reversibile. Se l\'utente all\'interno del suo profilo ha inserito dei valori in questo campo, questi saranno cancellati. Se non vuoi perdere i dati inseriti dagli utenti, invece di eliminare il campo potresti volerlo <a href=\"@edit-field\">modificare</a> e farlo diventare un campo invisibile, accessibile solo dagli amministratori.','it',0,0,0,0),(2260,'Il campo %field è stato eliminato.','it',0,0,0,0),(2261,'Il campo del profilo %field è stato aggiunto sotto la categoria %category','it',0,0,0,0),(2262,'Campo %field del profilo eliminato.','it',0,0,0,0),(2263,'Lista utente','it',0,0,0,0),(2264,'testo su linea singola','it',0,0,0,0),(2265,'testo su più linee','it',0,0,0,0),(2266,'checkbox','it',0,0,0,0),(2267,'elenco a selezione','it',0,0,0,0),(2268,'elenco a schema libero','it',0,0,0,0),(2269,'Informazioni sull\'autore','it',0,0,0,0),(2270,'Link al profilo utente completo','it',0,0,0,0),(2271,'Campi del profilo da visualizzare','it',0,0,0,0),(2272,'Seleziona quali campi del profilo vuoi visualizzare nel blocco. Sono disponibili solo i campi contrassegnati come pubblici nell\'area di <a href=\"@profile-admin\">configurazione campi profilo</a>.','it',0,0,0,0),(2273,'Vedi il profilo utente completo','it',0,0,0,0),(2274,'Informazioni su \'%name\'','it',0,0,0,0),(2275,'Inserisci ogni oggetto su linee separate oppure usa le virgole come delimitatori. Non ti è permesso usare l\'HTML.','it',0,0,0,0),(2276,'Il valore fornito per %field non è un URL valido.','it',0,0,0,0),(2277,'Crea campi personalizzabili per i tuoi utenti.','it',0,0,0,0),(2278,'Autocompletamento categorie dei profili','it',0,0,0,0),(2279,'Modifica campo','it',0,0,0,0),(2280,'Elimina campo','it',0,0,0,0),(2281,'Autocompletamento profilo','it',0,0,0,0),(2282,'Supporto per profili utente configurabili.','it',0,0,0,0),(2283,'L\'indice sarà ricostruito.','it',0,0,0,0),(2284,'Stato dell\'indicizzazione','it',0,0,0,0),(2285,'Limitatore dell\'indicizzazione','it',0,0,0,0),(2286,'Numero di elementi da indicizzare per ogni esecuzione di cron','it',0,0,0,0),(2287,'Il numero massimo di voci indicizzate ad ogni passaggio del <a href=\"@cron\">processo di manutenzione del cron</a>. Se necessario, ridurre il numero massimo di voci per prevenire errori di time-out e di memoria durante l\'indicizzazione.','it',0,0,0,0),(2288,'Impostazioni di indicizzazione','it',0,0,0,0),(2289,'<p><em>Cambiando le impostazioni sottostanti l\'indice del sito sarà ricostruito. L\'indice di ricerca non viene ripulito ma sistematicamente aggiornato per riflettere le nuove impostazioni. La ricerca continuerà a funzionare ma i nuovi contenuti non verranno indicizzati finché tutti i contenuti esistenti non verranno re-indicizzati.</em></p><p><em>Le impostazioni predefinite sono appropriate per la maggior parte dei siti</em></p>','it',0,0,0,0),(2290,'Lunghezza minima della parola da indicizzare','it',0,0,0,0),(2291,'Il numero di caratteri che una parola deve avere per essere indicizzata. Un basso numero porta a una ricerca più raffinata, ma anche a un database più grande. Ogni query di ricerca deve contenere almeno una parola chiave di questa dimensione.','it',0,0,0,0),(2292,'Semplice gestione CJK','it',0,0,0,0),(2293,'Se applicare o meno un semplice tokenizzatore cinese/ giapponese/coreano tokenizzatore basato sulle sequenze di sovrapposizione (overlapping sequences). Disattivalo se si desidera utilizzare un preprocessore esterno al posto di questo. Non influisce sulle altre lingue.','it',0,0,0,0),(2294,'Il motore di ricerca conserva un indice delle parole trovate all\'interno dei contenuti del sito. Per costruire e mantenere questo indice, è necessario un <a href=\"@cron\">processo cron di manutenzione</a> correttamente configurato. Il comportamento dell\'indicizzazione può essere modificato usando le impostazioni qui sotto.','it',0,0,0,0),(2295,'Form di ricerca','it',0,0,0,0),(2296,'Espressioni di ricerca maggiormente utilizzate','it',0,0,0,0),(2297,'Guarda le espressioni di ricerca più popolari.','it',0,0,0,0),(2298,'Abilita la ricerca di parole chiave in tutto il sito.','it',0,0,0,0),(2299,'Tempo totale di generazione della pagina','it',0,0,0,0),(2300,'%time ms','it',0,0,0,0),(2301,'Pagine più viste negli ultimi %interval','it',0,0,0,0),(2302,'Visitatori più presenti negli ultimi %interval','it',0,0,0,0),(2303,'Referrer più frequenti negli ultimi %interval','it',0,0,0,0),(2304,'Scrive nel log ogni accesso alle pagine. E\' richiesto per le statistiche dei referenti.','it',0,0,0,0),(2305,'Il log degli accessi più vecchi (comprese le statistiche arbitrarie) verranno automaticamente scartate. (Richiede una configurazione corretta del <a href=\"@cron\">processo di manutenzione del cron</a>).','it',0,0,0,0),(2306,'Impostazioni contatore visite al contenuto','it',0,0,0,0),(2307,'Conta le visite ai contenuti','it',0,0,0,0),(2308,'Incrementa un contatore a ogni visita al contenuto.','it',0,0,0,0),(2309,'Impostazioni per le informazioni statistiche che Drupal terrà in merito al sito. Vedere <a href=\"@statistics\">statistiche del sito</a> per le informazioni attuali.','it',0,0,0,0),(2310,'Questa pagina mostra le visite più recenti al sito.','it',0,0,0,0),(2311,'Questa pagina visualizza tutti i referrer esterni o i riferimenti esterni al sito web.','it',0,0,0,0),(2312,'Quando un visitatore viene bannato, si impedisce al visitatore stesso di accedere al sito con il suo indirizzo IP. A differenza del blocco utente, il ban funziona anche per gli utenti anonimi. È molto utilizzato per bloccare i bot o i web crawler (spider).','it',0,0,0,0),(2313,'Contenuti più visti','it',0,0,0,0),(2314,'Quanti contenuti mostrare nell\'elenco \"in totale\".','it',0,0,0,0),(2315,'Quanti contenuti mostrare nell\'elenco \"visti di recente\".','it',0,0,0,0),(2316,'Di oggi:','it',0,0,0,0),(2317,'In totale:','it',0,0,0,0),(2318,'Ultima visita:','it',0,0,0,0),(2319,'Vedi le pagine che hanno ricevuto visite recentemente','it',0,0,0,0),(2320,'Mostra le pagine che sono state cliccate frequentemente.','it',0,0,0,0),(2321,'Visitatori più presenti','it',0,0,0,0),(2322,'Mostra i visitatori che hanno cliccato molte pagine.','it',0,0,0,0),(2323,'Maggiori referenti','it',0,0,0,0),(2324,'Mostra i maggiori referenti.','it',0,0,0,0),(2325,'Mostra il log degli accessi.','it',0,0,0,0),(2326,'Traccia le visite alle pagine','it',0,0,0,0),(2327,'Registra le statistiche di accesso al sito.','it',0,0,0,0),(2328,'Registra eventi del sistema sul syslog (log su file).','it',0,0,0,0),(2329,'Ritratto dell\'utente nei contenuti','it',0,0,0,0),(2330,'Ritratto dell\'utente nei commenti','it',0,0,0,0),(2331,'Icona predefinita','it',0,0,0,0),(2332,'Impostazioni dell\'immagine logo','it',0,0,0,0),(2333,'Se attivo, il seguente logo verrà visualizzato.','it',0,0,0,0),(2334,'Usa il logo predefinito','it',0,0,0,0),(2335,'Seleziona la casella se vuoi che il tema utilizzi il suo logo predefinito.','it',0,0,0,0),(2336,'Il percorso del file che volete utilizzare come logo al posto del logo predefinito.','it',0,0,0,0),(2337,'Carica l\'immagine logo','it',0,0,0,0),(2338,'Impostazioni specifiche dell\'icona','it',0,0,0,0),(2339,'L\'icona di collegamento, detta \'favicon\', viene visualizzata nella barra degli indirizzi e nei segnalibri di molti browser.','it',0,0,0,0),(2340,'Usa l\'icona predefinita','it',0,0,0,0),(2341,'Seleziona la casella se vuoi che il tema utilizzi il suo logo predefinito.','it',0,0,0,0),(2342,'Il percorso del file che volete utilizzare per l\'icona al posto dell\'icona predefinita.','it',0,0,0,0),(2343,'Carica l\'immagine dell\'icona','it',0,0,0,0),(2344,'Se non hai accesso diretto ai file del server, utilizza questo campo per caricare la tua icona di default.','it',0,0,0,0),(2345,'@module (<span class=\"admin-missing\">mancante</span>)','it',0,0,0,0),(2346,'I seguenti moduli saranno completamente disinstallati dal tuo sito, e <em>tutti i dati relativi non saranno più disponibili</em>!','it',0,0,0,0),(2347,'Conferma disinstallazione','it',0,0,0,0),(2348,'Desideri continuare con la disinstallazione del sopracitato?','it',0,0,0,0),(2349,'Nessun modulo selezionato.','it',0,0,0,0),(2350,'I moduli selezionati sono stati disinstallati.','it',0,0,0,0),(2351,'Pagina 403 predefinita (accesso negato)','it',0,0,0,0),(2352,'Pagina 404 predefinita (non trovato)','it',0,0,0,0),(2353,'Cache eliminate.','it',0,0,0,0),(2354,'Seleziona un toolkit per l\'elaborazione di immagini','it',0,0,0,0),(2355,'Numero di elementi in ciascun feed','it',0,0,0,0),(2356,'Numero predefinito di voci da includere in ciascun feed.','it',0,0,0,0),(2357,'Contenuto del feed','it',0,0,0,0),(2358,'Titoli e anteprime','it',0,0,0,0),(2359,'Impostazione globale per la visualizzazione predefinita degli oggetti contenuti in ciascun feed.','it',0,0,0,0),(2360,'Cron eseguito con successo','it',0,0,0,0),(2361,'Esecuzione di cron fallita.','it',0,0,0,0),(2362,'Non è possibile disinstallare alcun modulo.','it',0,0,0,0),(2363,'Questo tema richiede la versione @php_required di PHP ed è incompatibile con quella attualmente installata (!php_version).','it',0,0,0,0),(2364,'Questa pagina visualizza tutti i processi di amministrazione disponibili per ciascun modulo.','it',0,0,0,0),(2365,'Queste opzioni controllano le impostazioni di visualizzazione predefinite per l\'intero sito, per tutti i temi. A meno che non siano state modificate per uno specifico tema, verranno utilizzate queste impostazioni.','it',0,0,0,0),(2366,'Il blocco <em>Powered by Drupal (Realizzato con Drupal)</em> è un link opzionale alla home page del progetto Drupal. Non c\'è assolutamente la richiesta che nei siti compaia questo link, ma esso può comunque essere usato per supportare il progetto Drupal.','it',0,0,0,0),(2367,'Qui puoi trovare una breve panoramica della configurazione del tuo sito e i problemi rilevati nell\'installazione corrente. Può essere utile copiare e incollare queste informazioni nelle richieste di supporto inviate sui forum di supporto di drupal.org e dei vari progetti correlati.','it',0,0,0,0),(2368,'Realizzato con Drupal','it',0,0,0,0),(2369,'Impossibile eliminare il file temporaneo \"%path\" durante l\'operazione di pulizia','it',0,0,0,0),(2370,'Modalità compatta','it',0,0,0,0),(2371,'Comunica a Drupal la locazione dove salvare i file caricati e come consentirne l\'accesso.','it',0,0,0,0),(2372,'Toolkit per le immagini','it',0,0,0,0),(2373,'Scegli quale toolkit per immagini usare se hai installato toolkit opzionali.','it',0,0,0,0),(2374,'Pubblicazione RSS','it',0,0,0,0),(2375,'Data e ora','it',0,0,0,0),(2376,'Controlla data e ora','it',0,0,0,0),(2377,'Attiva o disattiva gli URL semplificati sul sito.','it',0,0,0,0),(2378,'Controllo URL semplificati','it',0,0,0,0),(2379,'Ottieni un resoconto sul funzionamento del sito e gli eventuali problemi rilevati.','it',0,0,0,0),(2380,'-1 (Illimitato)','it',0,0,0,0),(2381,'La versione di PHP è troppo vecchia. Drupal richiede almento PHP %version.','it',0,0,0,0),(2382,'PHP register globals','it',0,0,0,0),(2383,'<em>register_globals</em> è attivato. Drupal richiede che questa direttiva di configurazione sia disattivata. Il sito può non risultare sicuro se <em>register_globals</em> è attivato. Il manuale PHP contiene istruzioni per <a href=\"http://php.net/configuration.changes\">modificare le opzioni di configurazione</a>.','it',0,0,0,0),(2384,'Attivato (\'@value\')','it',0,0,0,0),(2385,'Limite della memoria PHP','it',0,0,0,0),(2386,'Considera se aumentare il limite della memoria PHP a %memory_minimum_limit per prevenire errori durante il processo d\'installazione.','it',0,0,0,0),(2387,'Considera se aumentare il limite della memoria PHP a %memory_minimum_limit per prevenire errori durante il processo di aggiornamento.','it',0,0,0,0),(2388,'A seconda della tua configurazione, Drupal può funzionare con un limite della memoria PHP di %memory_limit. Tuttavia si raccomanda un limite minimo della memoria PHP impostato a %memory_minimum_limit specie se si utilizzano moduli addizionali esterni o personalizzati.','it',0,0,0,0),(2389,'Aumenta il limite della memoria modificando il parametro memory_limit nel file di configurazione %configuration-file e riavviando il server web (oppure contatta l\'amministratore del sistema o il gestore del hosting per ricevere assistenza).','it',0,0,0,0),(2390,'Contatta l\'amministratore del sistema o il gestore del hosting per ricevere assistenza nell\'aumentare il limite di memoria PHP.','it',0,0,0,0),(2391,'Guarda i <a href=\"@url\">requisiti di Drupal</a> per ulteriori informazioni.','it',0,0,0,0),(2392,'Non protetto','it',0,0,0,0),(2393,'Il file %file non è protetto dalle modifiche e rappresenta un richio per la sicurezza. Devi modificare i permessi sul file per renderlo non scrivibile.','it',0,0,0,0),(2394,'Per maggiori informazioni consulta il manuale on-line per <a href=\"@cron-handbook\">configurare i cron jobs</a>.','it',0,0,0,0),(2395,'Cron non è stato eseguito di recente.','it',0,0,0,0),(2396,'Processo di manutenzione del cron','it',0,0,0,0),(2397,'Puoi <a href=\"@cron\">eseguire cron manualmente</a>.','it',0,0,0,0),(2398,'La directory %directory non è accessibile in scrittura.','it',0,0,0,0),(2399,'Puoi aver bisogno di impostare la cartella corretta sulla <a href=\"@admin-file-system\">pagina delle impostazioni del file system</a> oppure cambiare gli attuali permessi di scrittura sulla cartella in modo da renderla scrivibile.','it',0,0,0,0),(2400,'Scrivibile (modalità di download <em>pubblica</em>)','it',0,0,0,0),(2401,'Scrivibile (modalità di download <em>privata</em>)','it',0,0,0,0),(2402,'Aggiornamenti del database','it',0,0,0,0),(2403,'Ci sono aggiornamenti disponibili per alcuni moduli relativi allo schema del database. Dovresti eseguire lo <a href=\"@update\">script di update del database</a> immediatamente.','it',0,0,0,0),(2404,'Lo script update.php è accessibile a chiunque senza controllo di autenticazione. Ciò è un rischio per la sicurezza. E\' necessario reimpostare il valore della variabile $update_free_access a FALSE nel file settings.php.','it',0,0,0,0),(2405,'Accesso a update.php','it',0,0,0,0),(2406,'Gestisce la configurazione generale del sito per gli amministratori.','it',0,0,0,0),(2407,'Ripristina l\'ordine alfabetico','it',0,0,0,0),(2408,'I termini sono mostrati in ordine crescente in base al peso.','it',0,0,0,0),(2409,'Il valore del peso deve essere numerico.','it',0,0,0,0),(2410,'Sei sicuro di voler ripristinare il vocabolario %title in ordine alfabetico?','it',0,0,0,0),(2411,'Il ripristino di un vocabolario eliminerà tutti gli ordinamenti personalizzati e ordinerà i termini alfabeticamente.','it',0,0,0,0),(2412,'Ripristina il vocabolario %name in ordine alfabetico.','it',0,0,0,0),(2413,'Le traduzioni dei contenuti sono gestite dai gruppi di traduzione. Ogni gruppo di traduzioni ha un post origine e un certo numero di post tradotti in ciascuna delle <a href=\"!languages\">lingue attivate</a>. Tutte le traduzioni sono monitorate per verificare se sono o meno aggiornate in base a una quantità di modifiche significative sul post originale.','it',0,0,0,0),(2414,'Impostazioni di traduzione','it',0,0,0,0),(2415,'Segna traduzioni come obsolete','it',0,0,0,0),(2416,'Se apporti un cambiamento significativo, che richiede l\'aggiornamento delle traduzioni, puoi segnare tutte le traduzioni di questo contenuto come non aggiornate. Questo comunque non modificherà le altre proprietà di questo contenuto, come ad esempio il fatto che sia pubblicato o meno.','it',0,0,0,0),(2417,'Questa traduzione richiede un aggiornamento','it',0,0,0,0),(2418,'Quando questa opzione è attiva, la traduzione richiede un aggiornamento perchè il contenuto originale è cambiato. Deselezionare una volta che la traduzione è stata aggiornata.','it',0,0,0,0),(2419,'Traduzione dei contenuti','it',0,0,0,0),(2420,'Permette la traduzione del contenuto in diverse lingue.','it',0,0,0,0),(2421,'Data di rilascio sconosciuta','it',0,0,0,0),(2422,'Ultimo controllo: @time fa','it',0,0,0,0),(2423,'Ultimo controllo: mai','it',0,0,0,0),(2424,'Include: %includes','it',0,0,0,0),(2425,'Moduli disattivati','it',0,0,0,0),(2426,'Temi disattivati','it',0,0,0,0),(2427,'Selezionare la frequenza con la quale eseguire il controllo automatico di nuove versioni per i  moduli e i temi attualmente installati.','it',0,0,0,0),(2428,'Soglia per la notifica via e-mail','it',0,0,0,0),(2429,'È possibile scegliere di inviare e-mail solo se un aggiornamento di sicurezza è disponibile, o essere aggiornati su tutte le versioni più recenti. Se ci sono aggiornamenti disponibili del core di Drupal o di uno qualsiasi dei moduli e temi installati, il tuo sito mostrerà sempre un messaggio nella pagina di <a href=\"@status_report\">resoconto sullo stato</a>, e visualizzerà anche un messaggio di errore nelle pagine di amministrazione se vi è un aggiornamento di sicurezza.','it',0,0,0,0),(2430,'Qui si possono trovare informazioni sugli aggiornamenti disponibili per i moduli e i temi attualmente installati. Notare che ogni modulo o tema fa parte di un \"progetto\", che può avere o non avere il medesimo nome, e può includere vari moduli o temi.','it',0,0,0,0),(2431,'Stato aggiornamento di moduli e temi','it',0,0,0,0),(2432,'Sono disponibili degli aggiornamenti di sicurezza per uno o più moduli o temi. Per assicurare la sicurezza del server, è consigliabile eseguire l\'aggiornamento immediatamente!','it',0,0,0,0),(2433,'Sono disponibili degli aggiornamenti per uno o più moduli o temi. Per assicurare il corretto funzionamento del sito, è consigliabile eseguire l\'aggiornamento non appena possibile.','it',0,0,0,0),(2434,'Ottieni un resoconto sugli aggiornamenti disponibili per i moduli e i temi installati.','it',0,0,0,0),(2435,'Avvisa l\'utente quando il suo profilo viene attivato.','it',0,0,0,0),(2436,'Avvisa l\'utente quando il suo profilo è bloccato.','it',0,0,0,0),(2437,'Linee guida per il ritratto','it',0,0,0,0),(2438,'Questo testo viene mostrato vicino al form di caricamento del ritratto in aggiunta alle linee guida predefinite.  È utile per guidare o aiutare gli utenti.','it',0,0,0,0),(2439,'Il nome per questo ruolo utente. Esempio: \"moderatore\", \"redattore\".','it',0,0,0,0),(2440,'Il ruolo è stato rinominato.','it',0,0,0,0),(2441,'Il ruolo è stato eliminato.','it',0,0,0,0),(2442,'Invia una nuova password via e-mail','it',0,0,0,0),(2443,'Siamo spiacenti, %name non è riconosciuto come nome utente o indirizzo e-mail','it',0,0,0,0),(2444,'Ulteriori informazioni sono state inviate al tuo indirizzo e-mail.','it',0,0,0,0),(2445,'%name è stato eliminato.','it',0,0,0,0),(2446,'Devi inserire un nome utente.','it',0,0,0,0),(2447,'Il nome utente non può cominciare con uno spazio.','it',0,0,0,0),(2448,'Il nome utente non può terminare con uno spazio.','it',0,0,0,0),(2449,'Il nome utente non può contenere più spazi consecutivi.','it',0,0,0,0),(2450,'Il nome utente contiene caratteri non permessi.','it',0,0,0,0),(2451,'Il nome utente %name è troppo lungo: deve essere lungo %max caratteri o meno.','it',0,0,0,0),(2452,'Devi inserire un indirizzo e-mail.','it',0,0,0,0),(2453,'Utenti on-line','it',0,0,0,0),(2454,'Lunghezza dell\'elenco utenti','it',0,0,0,0),(2455,'Inserisci la password associata al tuo nome utente.','it',0,0,0,0),(2456,'Impostazioni per la firma','it',0,0,0,0),(2457,'Elimina ritratto','it',0,0,0,0),(2458,'Seleziona questa casella per eliminare il tuo ritratto attuale.','it',0,0,0,0),(2459,'Sblocca gli utenti selezionati','it',0,0,0,0),(2460,'Blocca gli utenti selezionati','it',0,0,0,0),(2461,'Questa pagina web consente agli amministratori di registrare nuovi utenti. Gli indirizzi e-mail e i nomi utente devono essere univoci.','it',0,0,0,0),(2462,'Inserisci un semplice pattern (l\'asterisco <strong>*</strong> può essere utilizzato come carattere jolly) per cercare un nome utente o l\'indirizzo e-mail. Per esempio, se digiti \"pa\" Drupal potrebbe restituire \"paolo\", \"pane\" e paolo@esempio.com\".','it',0,0,0,0),(2463,'Utente eliminato: %name %email.','it',0,0,0,0),(2464,'Determina l\'accesso alle funzionalità selezionando i permessi per ruolo.','it',0,0,0,0),(2465,'Modifica ruolo','it',0,0,0,0),(2466,'Gestisce la registrazione degli utenti ed il sistema di accesso.','it',0,0,0,0),(2467,'Garland','it',0,0,0,0),(2468,'Avvia il test URL semplificati','it',0,0,0,0),(2469,'Il titolo è usato come tooltip quando l\'utente posiziona il mouse sopra l\'immagine.','it',0,0,0,0),(2470,'Indicatore di avanzamento','it',0,0,0,0),(2471,'Barra di avanzamento','it',0,0,0,0),(2472,'Icona di caricamento','it',0,0,0,0),(2473,'Il caricamento del file è fallito. %upload','it',0,0,0,0),(2474,'URL del file','it',0,0,0,0),(2475,'Si è verificato un errore irreversibile. Molto probabilmente il file caricato supera la dimensione massima (@size) che questo server supporta.','it',0,0,0,0),(2476,'Inizio caricamento...','it',0,0,0,0),(2477,'Caricamento in corso... (@current di @total)','it',0,0,0,0),(2478,'Il server è in grado di visualizzare l\'avanzamento del caricamento file, ma non possiede le librerie necessarie. Si consiglia di installare la <a href=\"http://pecl.php.net/package/uploadprogress\">libreria PECL</a> (consigliato) o installare <a href=\"http://us2.php.net/apc\">APC</a>.','it',0,0,0,0),(2479,'Il server è in grado di visualizzare l\'avanzamento del caricamento file utilizzando APC RFC1867. Notare che è supportato solo un caricamento per volta. Si consiglia di utilizzare la <a href=\"http://pecl.php.net/package/uploadprogress\">libreria PECL uploadprogress</a> se possibile.','it',0,0,0,0),(2480,'Il server non è in grado di visualizzare l\'avanzamento del caricamento file. Per visualizzarlo è necessario che PHP sia eseguito da mod_php e non come FastCGI.','it',0,0,0,0),(2481,'Il server sarebbe in grado di visualizzare l\'avanzamento del caricamento file tramite APC, ma non è abilitato. Aggiungere <code>apc.rfc1867 = 1</code> al file di configurazione php.ini. Alternativamente, si consiglia di utilizzare <a href=\"http://pecl.php.net/package/uploadprogress\">PECL uploadprogress</a>, che supporta più caricamenti simultanei.','it',0,0,0,0),(2482,'Abilitato (<a href=\"http://php.net/manual/en/apc.configuration.php#ini.apc.rfc1867\">APC RFC1867</a>)','it',0,0,0,0),(2483,'Abilitato (<a href=\"http://pecl.php.net/package/uploadprogress\">PECL uploadprogress</a>)','it',0,0,0,0),(2484,'Avanzamento del caricamento','it',0,0,0,0),(2485,'Interfaccia','it',0,0,0,0),(2486,'@size KB','it',0,0,0,0),(2487,'@size MB','it',0,0,0,0),(2488,'@size GB','it',0,0,0,0),(2489,'@size TB','it',0,0,0,0),(2490,'@size PB','it',0,0,0,0),(2491,'@size EB','it',0,0,0,0),(2492,'@size ZB','it',0,0,0,0),(2493,'@size YB','it',0,0,0,0),(2494,'Tutti i messaggi','it',0,0,0,0),(2495,'(vuoto)','it',0,0,0,0),(2496,'Formato del testo','it',0,0,0,0),(2497,'Nessun nuovo post','it',0,0,0,0),(2498,'Discussione sempre in cima agli elenchi','it',0,0,0,0),(2499,'Il file di traduzione %filename contiene un errore: \"msgctxt\" è inatteso alla riga %line.','it',0,0,0,0),(2500,'Il nome del sito.','it',0,0,0,0),(2501,'Impostazioni regione','it',0,0,0,0),(2502,'Centro in alto','it',0,0,0,0),(2503,'Centro in basso','it',0,0,0,0),(2504,'Stringa del formato','it',0,0,0,0),(2505,'Vuoi veramente rimuovere il formato %format?','it',0,0,0,0),(2506,'Il formato %format è stato eliminato.','it',0,0,0,0),(2507,'Aggiungi formato','it',0,0,0,0),(2508,'Consenti agli utenti di aggiungere ulteriori formati di data.','it',0,0,0,0),(2509,'Elimina formato data','it',0,0,0,0),(2510,'Permetti agli utenti di eliminare un formato data configurato.','it',0,0,0,0),(2511,'Configura il formato data per ogni lingua','it',0,0,0,0),(2512,'Nome del tipo di contenuto','it',0,0,0,0),(2513,'Slate','it',0,0,0,0),(2514,'gestisci campi','it',0,0,0,0),(2515,'@field_name (Bloccato)','it',0,0,0,0),(2516,'- Seleziona un tipo di campo -','it',0,0,0,0),(2517,'- Seleziona un widget -','it',0,0,0,0),(2518,'Tipo di dati da memorizzare.','it',0,0,0,0),(2519,'Elemento form per modificare i dati.','it',0,0,0,0),(2520,'- Seleziona un campo esistente -','it',0,0,0,0),(2521,'Campo da condividere','it',0,0,0,0),(2522,'Aggiungi un nuovo campo: devi specificare un\'etichetta.','it',0,0,0,0),(2523,'Aggiungi un nuovo campo: devi specificare un nome per il campo.','it',0,0,0,0),(2524,'Aggiungi un nuovo campo: devi selezionare un tipo di campo.','it',0,0,0,0),(2525,'Aggiungi un nuovo campo: devi specificare un widget.','it',0,0,0,0),(2526,'Aggiungi un nuovo campo: widget non corretto.','it',0,0,0,0),(2527,'Aggiungi un campo esistente: devi specificare un\'etichetta.','it',0,0,0,0),(2528,'Aggiungi un campo esistente: devi selezionare un campo.','it',0,0,0,0),(2529,'Aggiungi un nuovo campo: devi selezionare un widget.','it',0,0,0,0),(2530,'Aggiungi un nuovo campo: widget non corretto.','it',0,0,0,0),(2531,'@type: @field (@label)','it',0,0,0,0),(2532,'Il campo %field è bloccato e non può essere modificato.','it',0,0,0,0),(2533,'Quantità massima di valori che gli utenti possono inserire in questo campo.','it',0,0,0,0),(2534,'\'Illimitato\' creerà un pulsante \'Aggiungi altro\' in modo che gli utenti possono aggiungere tanti valori quanti desiderano.','it',0,0,0,0),(2535,'%name deve essere un intero.','it',0,0,0,0),(2536,'%name deve essere un intero positivo.','it',0,0,0,0),(2537,'%name deve essere un numero.','it',0,0,0,0),(2538,'Nel campo %field sono consentiti solo numeri.','it',0,0,0,0),(2539,'Impostazioni internazionali','it',0,0,0,0),(2540,'update.php','it',0,0,0,0),(2541,'Ruota','it',0,0,0,0),(2542,'Inizio pagina','it',0,0,0,0),(2543,'Fondo pagina','it',0,0,0,0),(2544,'Ciao <strong>@username</strong>','it',0,0,0,0),(2545,'larghezza @width','it',0,0,0,0),(2546,'altezza @height','it',0,0,0,0),(2547,'ingrandimento consentito','it',0,0,0,0),(2548,'casuale tra -@degrees&deg e @degrees&deg','it',0,0,0,0),(2549,'@degrees&deg','it',0,0,0,0),(2550,'Prima barra laterale','it',0,0,0,0),(2551,'Il database è codificato in UTF-8','it',0,0,0,0),(2552,'Drupal non è in grado di determinare se la codifica del database sia stata imposta su UTF-8','it',0,0,0,0),(2553,'PostgreSQL si è inizializzato.','it',0,0,0,0),(2554,'Struttura','it',0,0,0,0),(2555,'Creato il ruolo con nome: @name, id: @rid','it',0,0,0,0),(2556,'L\'utente %name ha eseguito correttamente l\'accesso.','it',0,0,0,0),(2557,'Raw \"@raw\" trovato','it',0,0,0,0),(2558,'Raw \"@raw\" non trovato','it',0,0,0,0),(2559,'Trovato \"@text\"','it',0,0,0,0),(2560,'\"@text\" non trovato','it',0,0,0,0),(2561,'Pattern \"@pattern\" trovato','it',0,0,0,0),(2562,'Pattern \"@pattern\" non trovato','it',0,0,0,0),(2563,'Il campo casella di selezione (checkbox) @id è selezionato','it',0,0,0,0),(2564,'Il campo casella di selezione (checkbox) @id non è selezionato','it',0,0,0,0),(2565,'Messaggio prolisso','it',0,0,0,0),(2566,'Seleziona il/i test o il/i gruppi di test che vuoi eseguire, e clicca su <em>Esegui test</em>.','it',0,0,0,0),(2567,'Tutti (@count)','it',0,0,0,0),(2568,'Superati (@count)','it',0,0,0,0),(2569,'Falliti (@count)','it',0,0,0,0),(2570,'Ritorna all\'elenco','it',0,0,0,0),(2571,'Elimina i risultati dopo aver completato ciascuna suite di test.','it',0,0,0,0),(2572,'Mostra informazioni dettagliate durante l\'esecuzione di test','it',0,0,0,0),(2573,'I dati dettagliati saranno mostrati assieme ai risultati standard e sono importanti per l\'individuazione degli errori. I dati dettagliati saranno cancellati ad ogni esecuzione della suite di test. L\'output dettagliato dei dati è molto approfondito e deve essere utilizzato solo durante il processo di individuazione e risoluzione degli errori.','it',0,0,0,0),(2574,'Le impostazioni HTTP auth che devono essere utilizzate dal browser di SimpleTest durante i test. Utile quando il sito richiede l\'autenticazione HTTP di base.','it',0,0,0,0),(2575,'@pass, @fail, @exception e @debug','it',0,0,0,0),(2576,'L\'esecuzione del test non è terminata con successo.','it',0,0,0,0),(2577,'La pulizia dei risultati è disabilitata e le tabelle dei risultati dei testi non saranno pulite.','it',0,0,0,0),(2578,'Nessuna tabella residua da rimuovere.','it',0,0,0,0),(2579,'1 messaggio di debug','it',0,0,0,0),(2580,'@count messaggi di debug','it',2579,1,0,0),(2581,'Rimosso 1 risultato del test.','it',0,0,0,0),(2582,'Rimossi @count risultati del test.','it',2581,1,0,0),(2583,'1 tabella residua rimossa.','it',0,0,0,0),(2584,'@count tabelle residue rimosse.','it',2583,1,0,0),(2585,'1 cartella temporanea rimossa.','it',0,0,0,0),(2586,'@count cartelle temporanee rimosse.','it',2585,1,0,0),(2587,'Risultato del test','it',0,0,0,0),(2588,'Vedi i risultati dei test.','it',0,0,0,0),(2589,'hash','it',0,0,0,0),(2590,'Collegamento permanente del commento','it',0,0,0,0),(2591,'Blog di !site_name','it',0,0,0,0),(2592,'Blocco di ricerca','it',0,0,0,0),(2593,'Modifica lo stile','it',0,0,0,0),(2594,'Rimuovi lo stile','it',0,0,0,0),(2595,'Controlla gli aggiornamenti per moduli o temi disattivati','it',0,0,0,0),(2596,'Fetcher','it',0,0,0,0),(2597,'Questo permesso viene ereditato dal ruolo utente autenticato.','it',0,0,0,0),(2598,'Seven','it',0,0,0,0),(2599,'openid','it',0,0,0,0),(2600,'Inviato da !username il !datetime','it',0,0,0,0),(2601,'Amministra i forum','it',0,0,0,0),(2602,'Elimina profilo','it',0,0,0,0),(2603,'Menu secondario','it',0,0,0,0),(2604,'Ruolo amministratore','it',0,0,0,0),(2605,'Nessuna revisione','it',0,0,0,0),(2606,'@number commenti per pagina','it',0,0,0,0),(2607,'Richiede un titolo','it',0,0,0,0),(2608,'File privati','it',0,0,0,0),(2609,'Non limitato','it',0,0,0,0),(2610,'Altri blocchi','it',0,0,0,0),(2611,'L\'ID univoco del commento.','it',0,0,0,0),(2612,'L\'indirizzo IP del computer da cui il commento è stato inserito.','it',0,0,0,0),(2613,'Il nome lasciato dall\'autore del commento.','it',0,0,0,0),(2614,'L\'indirizzo e-mail lasciato dall\'autore del commento.','it',0,0,0,0),(2615,'L\'URL della home page lasciato dall\'autore del commento.','it',0,0,0,0),(2616,'Il contenuto formattato del commento stesso.','it',0,0,0,0),(2617,'L\'URL del commento.','it',0,0,0,0),(2618,'Modifica URL','it',0,0,0,0),(2619,'L\'URL della pagina di modifica del commento.','it',0,0,0,0),(2620,'La data nella quale il commento è stato pubblicato.','it',0,0,0,0),(2621,'Il genitore di questo commento, se il raggruppamento per argomenti dei commenti è attivo.','it',0,0,0,0),(2622,'Il nodo commentato.','it',0,0,0,0),(2623,'L\'autore del commento, se si era autenticato.','it',0,0,0,0),(2624,'Il numero di commenti inseriti in un nodo.','it',0,0,0,0),(2625,'Nuovo totale dei commenti','it',0,0,0,0),(2626,'Il numero di commenti inseriti in un nodo dall\'ultima visita di chi sta leggendo.','it',0,0,0,0),(2627,'L\'ID univoco dell\'ultima revisione del nodo.','it',0,0,0,0),(2628,'ID del gruppo di traduzioni','it',0,0,0,0),(2629,'L\'ID univoco della versione in lingua originale di questo nodo, se ne esiste una.','it',0,0,0,0),(2630,'Il tipo del contenuto.','it',0,0,0,0),(2631,'Il nome leggibile del tipo di contenuto.','it',0,0,0,0),(2632,'La lingua nella quale è scritto il contenuto.','it',0,0,0,0),(2633,'L\'URL del contenuto.','it',0,0,0,0),(2634,'L\'URL della pagina di modifica del nodo.','it',0,0,0,0),(2635,'Data cambiata','it',0,0,0,0),(2636,'La data più recente nella quale il nodo è stato aggiornato.','it',0,0,0,0),(2637,'L\'autore del nodo.','it',0,0,0,0),(2638,'Vincitore del sondaggio','it',0,0,0,0),(2639,'La risposta vincente del sondaggio.','it',0,0,0,0),(2640,'Vincitori del sondaggio','it',0,0,0,0),(2641,'Il numero di voti ricevuti dalla risposta vincente del sondaggio','it',0,0,0,0),(2642,'Percentuale di vittoria del sondaggio','it',0,0,0,0),(2643,'La percentuale di voti ricevuta dalla risposta vincente del sondaggio.','it',0,0,0,0),(2644,'Il numero di visitatori che hanno letto il nodo.','it',0,0,0,0),(2645,'Il numero di visitatori che hanno letto il nodo oggi.','it',0,0,0,0),(2646,'Ultima visualizzazione','it',0,0,0,0),(2647,'La data dell\'ultima visualizzazione del nodo da parte di un visitatore.','it',0,0,0,0),(2648,'Lo slogan del sito.','it',0,0,0,0),(2649,'L\'indirizzo e-mail amministrativo per il sito.','it',0,0,0,0),(2650,'L\'URL della prima pagina del sito.','it',0,0,0,0),(2651,'Pagina di accesso','it',0,0,0,0),(2652,'L\'URL della pagina di accesso del sito.','it',0,0,0,0),(2653,'L\'ID univoco del file caricato','it',0,0,0,0),(2654,'Il nome del file sul disco.','it',0,0,0,0),(2655,'L\'URL del file accessibile dal web.','it',0,0,0,0),(2656,'La data di ultima modifica del file.','it',0,0,0,0),(2657,'L\'utente che ha caricato il file originale.','it',0,0,0,0),(2658,'L\'identificativo univoco del termine della tassonomia.','it',0,0,0,0),(2659,'Il nome del termine della tassonomia.','it',0,0,0,0),(2660,'La descrizione opzionale dei termini della tassonomia.','it',0,0,0,0),(2661,'Il numero di nodi taggati con il termine di tassonomia.','it',0,0,0,0),(2662,'L\'URL del termine di tassonomia.','it',0,0,0,0),(2663,'Il vocabolario cui il termine di tassonomia appartiene.','it',0,0,0,0),(2664,'Il termine genitore del termine di tassonomia, se esiste.','it',0,0,0,0),(2665,'L\'identificativo univoco del vocabolario della tassonomia.','it',0,0,0,0),(2666,'Il nome del vocabolario della tassonomia.','it',0,0,0,0),(2667,'La descrizione opzionale del vocabolario della tassonomia.','it',0,0,0,0),(2668,'Il numero di nodi taggati con termini appartenenti al vocabolario di tassonomia.','it',0,0,0,0),(2669,'Conteggio termini','it',0,0,0,0),(2670,'Il numero dei termini appartenenti al vocabolario di tassonomia.','it',0,0,0,0),(2671,'L\'ID univoco del profilo utente.','it',0,0,0,0),(2672,'Il nome di accesso per il profilo utente.','it',0,0,0,0),(2673,'L\'indirizzo email abbinato al profilo utente.','it',0,0,0,0),(2674,'L\'URL della pagina del profilo utente.','it',0,0,0,0),(2675,'La data dell\'ultimo accesso al sito da parte dell\'utente.','it',0,0,0,0),(2676,'La data di creazione del profilo utente.','it',0,0,0,0),(2677,'Il tuo OpenID','it',0,0,0,0),(2678,'Questo OpenID sarà allegato al tuo profilo dopo la registrazione.','it',0,0,0,0),(2679,'Contenuto della pagina principale','it',0,0,0,0),(2680,'Non hai il permesso di accedere a questa pagina.','it',0,0,0,0),(2681,'Autorizza modifiche al file system','it',0,0,0,0),(2682,'Pare che tu abbia raggiunto questa pagina a causa di un errore.','it',0,0,0,0),(2683,'authorize.php','it',0,0,0,0),(2684,'Non è stato possibile eseguire cron perché è stata usata una chiave non valida.','it',0,0,0,0),(2685,'Non è stato possibile eseguire cron perché il sito è in manutenzione.','it',0,0,0,0),(2686,'Paese predefinito','it',0,0,0,0),(2687,'Controlla i messaggi di errore e <a href=\"!url\">continua con l\'installazione</a>.','it',0,0,0,0),(2688,'Nel file %settings_file hai configurato @drupal per l\'utilizzo di un server %driver, tuttavia la tua installazione di PHP non supporta al momento questo tipo di database.','it',0,0,0,0),(2689,'Spiacente, devi selezionare una lingua per continuare l\'installazione.','it',0,0,0,0),(2690,'Non è stato possibile trovare alcun profilo di installazione. I profili di installazione determinano quali moduli abilitare e quale schema installare nel database. è necessario almeno un profilo per continuare l\'installazione.','it',0,0,0,0),(2691,'Spiacente, il profilo selezionato non può essere caricato.','it',0,0,0,0),(2692,'Tutte le necessarie modifiche a %dir e %file sono state effettuate. Per evitare rischi di sicurezza dovresti ora rimuovere i permessi di scrittura. Se non sei certo su come fare, consulta il <a href=\"@handbook_url\">manuale online</a>.','it',0,0,0,0),(2693,'Congratulazioni, hai installato @drupal!','it',0,0,0,0),(2694,'Controlla i messaggi in alto prima di visitare  <a href=\"@url\">il tuo nuovo sito</a>.','it',0,0,0,0),(2695,'<a href=\"@url\">Visita il nuovo sito</a>.','it',0,0,0,0),(2696,'File di configurazione','it',0,0,0,0),(2697,'Il file di configurazione non esiste.','it',0,0,0,0),(2698,'L\'installer per @drupal richiede la creazione di un file di impostazione come parte del processo di installazione. Copia il file %default_file in %file. Maggiori dettagli sull\'installazione di Drupal sono disponibili nel file <a href=\"@install_txt\">INSTALL.txt</a>.','it',0,0,0,0),(2699,'Il file %file esiste.','it',0,0,0,0),(2700,'Il file di impostazione non è scrivibile.','it',0,0,0,0),(2701,'L\'installer di @drupal richiede il permesso di scrittura sul file %file durante l\'installazione. Se non sai come abilitare i permessi di scrittura dei file consulta il <a href=\"@handbook_url\">manuale online</a>.','it',0,0,0,0),(2702,'Email automatizzate come ad esempio l\'invio delle informazioni di registrazione, saranno inviate da questo indirizzo. Usa un indirizzo che utilizza lo stesso dominio del sito per evitare che queste email siano scambiate per spam.','it',0,0,0,0),(2703,'Profilo di manutenzione del sito','it',0,0,0,0),(2704,'Seleziona la nazione predefinita per il sito.','it',0,0,0,0),(2705,'Ricevi le notifiche per e-mail','it',0,0,0,0),(2706,'Il sistema ti informerà sulla disponibilità di aggiornamenti e importanti rilasci di sicurezza per i componenti installati. Informazioni sul sito saranno spedite in forma anonima a <a href=\"@drupal\">Drupal.org</a>.','it',0,0,0,0),(2707,'Nessun aggiornamento in attesa.','it',0,0,0,0),(2708,'1 aggiornamento in attesa','it',0,0,0,0),(2709,'@count aggiornamenti in attesa','it',2708,1,0,0),(2710,'Si è verificato un errore durante la gestione della richiesta: il server ha ricevuto dati non validi.','it',0,0,0,0),(2711,'Dati POST dal form non validi.','it',0,0,0,0),(2712,'Impossible continuare; nessun metodo disponibile per il trasferimento di file','it',0,0,0,0),(2713,'ATTENZIONE: Non stai usando una connessione criptata: in questo modo la password verrà trasferita in chiaro. <a href=\"@https-link\">Per saperne di più</a>.','it',0,0,0,0),(2714,'Per continuare, fornisci i dettagli per la connessione al server.','it',0,0,0,0),(2715,'Metodo di connessione','it',0,0,0,0),(2716,'Inserisci le impostazioni di connessioni','it',0,0,0,0),(2717,'Impostazioni di connessione a @backend','it',0,0,0,0),(2718,'Cambia tipo di connessione','it',0,0,0,0),(2719,'Errore, questo tipo di protocollo di connessione (%backend) non esiste.','it',0,0,0,0),(2720,'Nessun processo <em>batch</em> attivo.','it',0,0,0,0),(2721,'Sito in manutenzione','it',0,0,0,0),(2722,'Gli archiviatori possono operare unicamente su file locali: %file non supportato','it',0,0,0,0),(2723,'Il file non può essere caricato, perché la destinazione %destination non è valida.','it',0,0,0,0),(2724,'Il file %source non può essere copiato perché un file con lo stesso nome esiste già nella cartella di destinazione %directory.','it',0,0,0,0),(2725,'Il nome del file è più lungo di 240 caratteri. Per favore associare un nome più corto al file e provare nuovamente.','it',0,0,0,0),(2726,'%path è una cartella e non può essere rimossa usando file_unmanaged_delete().','it',0,0,0,0),(2727,'Il file %path è di un tipo non riconosciuto e non è stato eliminato.','it',0,0,0,0),(2728,'I permessi per il file non possono essere impostati per %uri.','it',0,0,0,0),(2729,'Completati @current di @total.','it',0,0,0,0),(2730,'Impossibile eseguire tutte le attività presso il database server. L\'attività %task non è stata trovata.','it',0,0,0,0),(2731,'Impossibile modificare %settings. Verifica i permessi per il file.','it',0,0,0,0),(2732,'Impossibile aprire %settings. Verificare i permessi sul file.','it',0,0,0,0),(2733,'Moduli richiesti','it',0,0,0,0),(2734,'I moduli richiesti non sono stati trovati.','it',0,0,0,0),(2735,'I seguenti moduli sono necessari ma non sono stati trovati. Posizionali all\'interno della sottocartella appropriata, come <em>sites/all/modules</em>. Moduli mancanti: !modules','it',0,0,0,0),(2736,'sistema','it',0,0,0,0),(2737,'Modulo %module disinstallato.','it',0,0,0,0),(2738,'Saint Barthélemy','it',0,0,0,0),(2739,'San Martino (parte francese)','it',0,0,0,0),(2740,'Usa il linguaggio predefinito (@language_name).','it',0,0,0,0),(2741,'Il file di traduzione %filepath contiene un errore: la formula plurale non può essere analizzata.','it',0,0,0,0),(2742,'Nessun testo disponibile.','it',0,0,0,0),(2743,'@count testo/i HTML non consentiti in %file','it',0,0,0,0),(2744,'Il file di traduzione JavaScript %file.js è andato perduto.','it',0,0,0,0),(2745,'Impossibile inviare e-mail. Contattare l\'amministratore del sito se il problema persiste.','it',0,0,0,0),(2746,'La classe %class non implementa l\'interfaccia %interface','it',0,0,0,0),(2747,'In manutenzione. <a href=\"@url\">Passa on-line.</a>','it',0,0,0,0),(2748,'Modalità «In manutenzione»','it',0,0,0,0),(2749,'Il modulo %module è attivato.','it',0,0,0,0),(2750,'Il modulo %module è disattivato.','it',0,0,0,0),(2751,'Messaggio di stato','it',0,0,0,0),(2752,'Impossibile determinare il tipo della cartella sorgente.','it',0,0,0,0),(2753,'Impossibile determinare il tipo di progetto.','it',0,0,0,0),(2754,'Errore critico durante il processo di aggiornamento. Drupal evita vigliaccamente di eliminare la cartella di installazione','it',0,0,0,0),(2755,'Teasferimento file fallito, causa: !reason','it',0,0,0,0),(2756,'Impossibile creare la cartella %directory per il seguente motivo: %reason','it',0,0,0,0),(2757,'Non è stato possibile installare Drupal correttamente usando il database esistente. Rivedi gli errori.','it',0,0,0,0),(2758,'Nessun feed disponibile. <a href=\"@link\">Aggiungi un feed</a>.','it',0,0,0,0),(2759,'Nessuna categoria disponibile. <a href=\"@link\">Aggiungine una</a>.','it',0,0,0,0),(2760,'Frequenza di aggiornamento dei feed. Richiede che i <a href=\"@cron\">processi di esecuzione di cron</a> siano configurati correttamente.','it',0,0,0,0),(2761,'Nuove voci nel blocco','it',0,0,0,0),(2762,'Drupal può creare un blocco con le notizie più recenti di questo feed. È possibile <a href=\"@block-admin\">configurare i blocchi</a> per essere visualizzati nella barra laterale della pagina. Questa impostazione permette di configurare il numero di notizie da visualizzare nel blocco di questo feed. Indicando \'0\' il blocco di questo feed viene disattivato.','it',0,0,0,0),(2763,'L\'URL fornita %url non è valida. Inserisci una URL completa del tipo: http://www.example.com/feed.xml.','it',0,0,0,0),(2764,'Esiste già un feed dal nome %feed. Inserisci un titolo univoco.','it',0,0,0,0),(2765,'Un feed con URL %url è già esistente. Inserire un URL univoco.','it',0,0,0,0),(2766,'Carica un file OPML contenente un elenco di feed da importare.','it',0,0,0,0),(2767,'URL remoto OPML','it',0,0,0,0),(2768,'Inserisci l\'URL di un file OPML. Questo file verrà scaricato ed elaborato una sola volta, all\'invio del form.','it',0,0,0,0),(2769,'Drupal può fornire un blocco con gli ultimi elementi aggiornati di un feed. Puoi <a href=\"@block-admin\">configurare il blocco</a> in modo da essere mostrato in una delle barre laterali. Questa impostazione permette di stabilire il numero di nuovi elementi da mostrare nel blocco. Selezionando \'0\' il blocco sarà disattivato.','it',0,0,0,0),(2770,'Devi caricare un file <em>oppure</em> inserire un URL.','it',0,0,0,0),(2771,'Questo URL non è valido.','it',0,0,0,0),(2772,'Non è stato aggiunto nessun nuovo feed.','it',0,0,0,0),(2773,'L\'URL %url non è valido.','it',0,0,0,0),(2774,'Un feed di nome %title esiste già.','it',0,0,0,0),(2775,'Un feed con URL %url esiste già.','it',0,0,0,0),(2776,'I fetchers recuperano informazioni da sorgenti esterne. Seleziona un fetcher appropriato per la sorgente di informazioni da cui intendi recuperare dati.','it',0,0,0,0),(2777,'Gli interpreti trasformano i dati scaricati in strutture standardizzate. Seleziona un interprete appropriato per la tipologia di feed che intendi aggregare.','it',0,0,0,0),(2778,'I processors (processori) elaborano i dati prelevati dai feed; ad esempio salvano i vari elementi di un feed nel database. Seleziona un processore idoneo per l\'azione che devi compiere.','it',0,0,0,0),(2779,'Le impostazioni predefinite vanno bene per la maggioranza dei casi.','it',0,0,0,0),(2780,'La categoria con nome %category esiste già. Inserisci un titolo univoco.','it',0,0,0,0),(2781,'Fetcher predefinito','it',0,0,0,0),(2782,'Recupera dati da una URL utilizzando l\'handler di richiesta HTTP di Drupal.','it',0,0,0,0),(2783,'Interprete predefinito','it',0,0,0,0),(2784,'Analizza feed RSS, Atom e RDF.','it',0,0,0,0),(2785,'Elaboratore predefinito','it',0,0,0,0),(2786,'Crea record nel database per ciascun elemento di un feed.','it',0,0,0,0),(2787,'Impostazioni predefinite del processore.','it',0,0,0,0),(2788,'Numero di voci visualizzate nelle pagine di elenchi','it',0,0,0,0),(2789,'Richiede un <a href=\"@cron\">processo di manutenzione cron</a> correttamente configurato.','it',0,0,0,0),(2790,'Selezionare le categorie utilizzando','it',0,0,0,0),(2791,'Se ci sono poche categorie, i checkbox sono facili da usare, mentre la selezione multipla è ideale per molte categorie','it',0,0,0,0),(2792,'Lunghezza della descrizione abbreviata','it',0,0,0,0),(2793,'Il massimo numero di caratteri utilizzati nella versione troncata del contenuto.','it',0,0,0,0),(2794,'Il modulo Aggregator funziona da agente RSS per il tuo sito, raccogliendo e pubblicando contenuti sempre aggiornati da feed in formato RSS, RDF e Atom, liberamente disponibili nel web. Migliaia di siti (in particolare blog e portali di notizie) pubblicano feed contenenti gli ultimi articoli, usando un certo numero di formati standard basati sull\'XML. Per ulteriori informazioni consulta la pagina <a href=\"@aggregator-module\">modulo Aggregator</a> del manuale online.','it',0,0,0,0),(2795,'Visualizzazione feed','it',0,0,0,0),(2796,'I feed raccolgono contenuti pubblicati e possono essere raggruppati in categorie, generalmente per tema. Gli utenti possono scorrere i feed pubblicati nella <a href=\"@aggregator\">pagina principale dell\'aggregatore</a>, o per <a href=\"@aggregator-sources\">origine</a> (generalmente attraverso un aggregatore di feed RSS). Gli ultimi contenuti aggiornati di un feed o di una categoria possono essere mostrati in un blocco alla <a href=\"@admin-block\">pagina di amministrazione Blocchi</a>.','it',0,0,0,0),(2797,'Aggiungi, modifica ed elimina i feed','it',0,0,0,0),(2798,'Gli amministratori possono aggiungere, modificare ed eliminare feed, e decidere ogni quanto controllare la presenza di nuove voci per ogni feed nella <a href=\"@feededit\"> pagina di amministrazione dell\'aggregatore di feed</a>.','it',0,0,0,0),(2799,'Integrazione con OPML','it',0,0,0,0),(2800,'E\' disponibile un <a href=\"@aggregator-opml\">file OPML</a> di tutti i feed. OPML è un formato basato su XML utilizzato per condividere informazioni strutturate come liste di feed RSS. I feed possono anche essere <a href=\"@import-opml\">importati da un file OPML</a>.','it',0,0,0,0),(2801,'Configurazione di cron','it',0,0,0,0),(2802,'Per aggiornare automaticamente i feed, è richiesto un <a href=\"@cron\">processo di manutenzione cron</a> correttamente configurato.','it',0,0,0,0),(2803,'<acronym title=\"Outline Processor Markup Language\">OPML</acronym> è un formato XML usato per scambiare feed multipli tra gli aggregatori. Un singolo documento OPML può contenere una collezione di più feed. Drupal può analizzare questo file e importare tutti i feed in una volta, risparmiandoti la fatica di aggiungerli manualmente. Puoi scegliere se caricare un file locale dal tuo computer o inserire un URL da cui Drupal può scaricarlo.','it',0,0,0,0),(2804,'Amministra nuovi feed','it',0,0,0,0),(2805,'Visualizza nuovi feed','it',0,0,0,0),(2806,'Configura il comportamento dell\'aggregatore di feed, compreso quando scartare voci del feed e come presentare voci del feed e categorie.','it',0,0,0,0),(2807,'Sovrascrivi il titolo predefinito del blocco. Usa <em>!placeholder</em> per non mostrare il titolo o lascia il campo vuoto per mostrare il titolo predefinito.','it',0,0,0,0),(2808,'Specifica in quali temi e regioni questo blocco è visualizzato.','it',0,0,0,0),(2809,'Tutte le pagine eccetto quelle elencate','it',0,0,0,0),(2810,'Solo le pagine elencate','it',0,0,0,0),(2811,'Specificare le pagine usando i rispettivi percorsi. Inserire un percorso per riga. Usare \'*\' come carattere jolly. Alcuni percorsi di esempio possono essere %blog per la pagina del blog e %blog-wildcard per i blog personali. %front è la prima pagina.','it',0,0,0,0),(2812,'Pagine nelle quali il seguente codice PHP restituisce <code>TRUE</code> (per utenti esperti)','it',0,0,0,0),(2813,'Pagine o codice PHP','it',0,0,0,0),(2814,'Se l\'opzione PHP è selezionata, inserire codice PHP racchiuso da %php. Notare che l\'esecuzione di codice PHP non corretto può bloccare il sito Drupal.','it',0,0,0,0),(2815,'Personalizzabile per utente','it',0,0,0,0),(2816,'Non personalizzabile','it',0,0,0,0),(2817,'Personalizzabile, visibile come impostazione predefinita','it',0,0,0,0),(2818,'Personalizzabile, nascosto come impostazione predefinita','it',0,0,0,0),(2819,'Assicurati che la descrizione di ogni blocco sia unica.','it',0,0,0,0),(2820,'Il modulo Block ti consente di creare riquadri con contenuti che sono presentati in un\'area, o regione, su una o più pagine di un sito web. Il tema di base per l\'amministazione Seven, ad esempio, mette a disposizione le regioni \"Contenuto\", \"Aiuto\", \"Dashboard principale\" e \"Dashboard laterale\"; un blocco può comparire in una qualsiasi di queste regioni. La <a href=\" @blocks\">pagina di amministrazione Blocchi</a> fornisce un\'interfaccia drag-and-drop per assegnare un blocco ad una regione e per controllare l\'ordinamento dei blocchi all\'interno di una regione. Per ulteriori informazioni consulta l\'argomento <a href=\" @block\">modulo Block</a> del manuale online.','it',0,0,0,0),(2821,'Posizionamento del contenuto','it',0,0,0,0),(2822,'Lavorando con i blocchi è necessario ricordare che <em>non</em>tutti i temi implementano le stesse regioni o visualizzano le regioni nello stesso modo. I blocchi sono posizionati sulla base del tema. Gli utenti con il permesso <em>Amministra blocchi</em> possono disattivare i blocchi. I blocchi disattivati sono elencati nella <a href=\"@blocks\">pagina di amministrazione Blocchi</a>, ma non vengono visualizzati in nessuna regione.','it',0,0,0,0),(2823,'Controllo visibilità','it',0,0,0,0),(2824,'I blocchi possono essere configurati per essere visibili solo su alcune pagine, solo ad utenti con un certo ruolo, o solo in pagine contenenti specifici <a href=\"@content-type\">tipi di contenuto</a>. Gli amministratori possono inoltre definire quali blocchi gli utenti possono attivare o disattivare alla pagina del <a href=\"@user\">profilo utente</a>. I blocchi dinamici, come ad esempio quelli generati dai moduli, saranno visualizzati solo su alcune pagine.','it',0,0,0,0),(2825,'Creazione di blocchi personalizzati','it',0,0,0,0),(2826,'Gli utenti con il permesso <em>Amministra blocchi</em> possono <a href=\"@block-add\">aggiungere blocchi personalizzati</a> che vengono elencati in seguito nella <a href=\"@blocks\">pagina di amministrazione dei blocchi</a>. Una volta creati, i blocchi personalizzati agiscono esattamente allo stesso modo dei blocchi predefiniti e di quelli generati dai moduli.','it',0,0,0,0),(2827,'Questa pagina fornisce un\'interfaccia drag-and-drop per assegnare un blocco ad una regione, e per controllare l\'ordinamento dei blocchi all\'interno delle regioni.  Poiché non tutti i temi implementano le stesse regioni, o mostrano le regioni nello stesso modo, la posizione dei blocchi deve essere definita tema per tema. Si rammenta che le modifiche non saranno salvate finché non si clicca il bottone <em>Salva blocchi</em> in fondo alla pagina. Cliccare il link <em>configura</em> al lato di ciascun blocco per configurarne il titolo specifico e le impostazioni di visualizzazione.','it',0,0,0,0),(2828,'Dimostrazione regioni dei blocchi (@theme)','it',0,0,0,0),(2829,'Amministra blocchi','it',0,0,0,0),(2830,'Una breve descrizione del tuo blocco. Usata nella <a href=\"@overview\">pagina di amministrazione Blocchi</a>.','it',0,0,0,0),(2831,'Personalizza blocchi','it',0,0,0,0),(2832,'I blocchi contengono informazioni che integrano il contenuto principale della pagina. Attiva o disattiva i blocchi opzionali usando le caselle qui sotto.','it',0,0,0,0),(2833,'Cache dei blocchi','it',0,0,0,0),(2834,'La cache dei blocchi è disattivata perché hai attivato moduli che implementano restrizioni di accesso al contenuto.','it',0,0,0,0),(2835,'Definisce la visualizzazione dei blocchi di contenuto presenti nelle pagine. I blocchi sono \"scatole\" di contenuto che possono essere mostrate all\'interno di specifiche aree o regioni di una pagina web.','it',0,0,0,0),(2836,'Limitato a certe pagine','it',0,0,0,0),(2837,'Il blocco non può essere posizionato in questa regione.','it',0,0,0,0),(2838,'Utilizzare per blog multi-utente. Ogni utente avrà un blog personale.','it',0,0,0,0),(2839,'Blog mono-utente','it',0,0,0,0),(2840,'Tutti gli articoli del blog di ciascun utente vengono automaticamente visualizzati con un collegamento alla pagina principale del blog dell\'utente. Ogni utente con permessi di creazione di articoli del blog può creare il suo blog personale.','it',0,0,0,0),(2841,'Blog multi-utente','it',0,0,0,0),(2842,'Gli articoli del blog di ciascun utente sono aggregati in un unico blog centrale multi-utente, che visualizza il contenuto del blog di tutti gli utenti in un unico elenco.','it',0,0,0,0),(2843,'Esiste una voce di menu <em>Blog</em> opzionale  nel menu di navigazione, che visualizza tutti i blog disponibili sul sito, e una voce <em>il mio blog</em> che visualizza gli articoli del blog dell\'utente corrente.','it',0,0,0,0),(2844,'Il modulo Blog crea anche un blocco predefinito <em>Articoli recenti del blog</em> che può essere attivato alla <a href=\"@blocks\">pagina di amministrazione Blocchi</a>.','it',0,0,0,0),(2845,'Crea nuovo contenuto nel blog','it',0,0,0,0),(2846,'Abilita blog multi-utente.','it',0,0,0,0),(2847,'Nessun libro disponibile.','it',0,0,0,0),(2848,'Tipi di contenuto consentiti nelle strutture del libro','it',0,0,0,0),(2849,'Gli utenti con il permesso %outline-perm possono aggiungere tutti i tipi di contenuto.','it',0,0,0,0),(2850,'Amministra la struttura dei libri','it',0,0,0,0),(2851,'Il modulo Book è usato per creare contenuti multi-pagina gerarchizzati, come: guide alle risorse del sito, manuali e wiki. Permette di creare contenuto organizzato in capitoli, sezioni, sotto-sezioni o qualsiasi struttura stratificata in modo simile. Per ulteriori informazioni consultare la voce <a href=\"@book\">modulo Book</a> del manuale online.','it',0,0,0,0),(2852,'Aggiunta e gestione del contenuto dei libri','it',0,0,0,0),(2853,'Puoi assegnare permessi separati per la <em>creazione</em>, <em>modifica</em> e <em>eliminazione</em> di contenuto nei libri, così come per l\'<em>aggiunta di contenuto ai libri</em> e la <em>creazione di nuovi libri</em>. Gli utenti con il permesso <em>Amministra la struttura dei libri</em> possono aggiungere <em>qualunque</em> tipo di contenuto a un libro selezionando la struttura del libro appropriata, mentre modificano il contenuto stesso. Essi possono anche vedere una lista di tutti i libri, e modificare e riordinare i titoli delle sezioni nella <a href=\"@admin-book\">pagina di amministrazione Book</a>.','it',0,0,0,0),(2854,'Le pagine di un libro includono un blocco predefinito di navigazione, specifico del libro. Questo blocco di navigazione contiene dei link che conducono alla pagina precedente e successiva, e al livello superiore nella struttura del libro. Questo blocco può essere attivato nella <a href=\'@admin-block\'>pagina di gestione dei blocchi</a>. È necessario aggiungere le pagine alla struttura di un libro affinché compaiano nella navigazione del libro stesso.','it',0,0,0,0),(2855,'I libri possono essere creati in modo collaborativo, poiché è consentito agli utenti con i permessi appropriati di aggiungere pagine ai libri esistenti, e di aggiungere tali pagine ad un menu contenente una tabella dei contenuti personalizzata.','it',0,0,0,0),(2856,'Stampa dei libri','it',0,0,0,0),(2857,'Gli utenti con il permesso <em>Visualizza versione stampabile dei libri</em> possono selezionare il link <em>versione stampable</em> visibile in fondo al contenuto di una pagina del libro, per generare una versione stampabile della pagina e di tutte le sue sotto-sezioni.','it',0,0,0,0),(2858,'Il modulo Book offre un mezzo per organizzare una raccolta di pagine collegate gerarchicamente, definite nell\'insieme come un libro. Quando visualizzato, questo contenuto mostra automaticamente i collegamenti alle pagine adiacenti del libro, fornendo un semplice sistema di navigazione per la creazione e revisione di contenuto strutturato.','it',0,0,0,0),(2859,'La funzione struttura consente di includere pagine nella <a href=\"@book\">gerarchia del libro</a>, così come di spostarle nell\'ambito della gerarchia o di <a href=\"@book-admin\">riordinare un intero libro</a>.','it',0,0,0,0),(2860,'Crea nuovi libri','it',0,0,0,0),(2861,'Aggiungi contenuto e pagine figlio ai libri','it',0,0,0,0),(2862,'Visualizza versione stampabile dei libri','it',0,0,0,0),(2863,'Visualizza una pagina del libro e tutte le sue sotto-pagine come un unico documento per facilitare la stampa. Può essere pesante a livello di prestazioni.','it',0,0,0,0),(2864,'I <em>libri</em> hanno una navigazione gerarchica integrata. Usare per manuali o lezioni <em>(tutorials)</em>.','it',0,0,0,0),(2865,'Permette agli utenti di creare e organizzare contenuto gerarchicamente collegato in una struttura.','it',0,0,0,0),(2866,'Il modulo Color consente agli utenti con permesso <em>Amministra configurazione del sito</em> di cambiare rapidamente e facilmente la combinazione di colori dei temi che sono stati sviluppati per essere compatibili con esso. Per ulteriori informazioni, consultare il manuale in linea per il <a href=\"@color\"> modulo Color</a>.','it',0,0,0,0),(2867,'Cambia i colori','it',0,0,0,0),(2868,'Il modulo Color permette di cambiare facilmente il colore di link, sfondi, testo e altri elementi del tema. Per modificare le impostazioni dei colori di un tema compatibile, selezionare il link <em>Impostazioni</em> per il tema  attivo nella <a href=\'@configure\'>pagina di amministrazione Temi</a>. Se non vedi un selettore di colori, il tema non è compatibile con il modulo Color. Se si è certi che il tema supporta il modulo Color, ma il selettore dei colori non appare, <a href=\'@troubleshoot\'>seguire queste procedure di risoluzione dei problemi</a>.','it',0,0,0,0),(2869,'Il modulo Color salva una copia modificata dei fogli di stile del tema nella cartella <em>files</em>. Questo significa che se si apportano modifiche manuali ai fogli di stile del tema, <em>è necessario salvare nuovamente le impostazioni del colore anche se non sono state modificate</em>. Questo passaggio è necessario perché i fogli di stile del modulo (posti nella cartella <em>files</em>) dovranno essere ricreati per includere le modifiche.','it',0,0,0,0),(2870,'La libreria GD è attiva, ma è stata compilata senza il supporto PNG. Leggi la <a href=\"@url\">documentazione PHP sulle immagini</a> per informazioni su come correggere questa situazione.','it',0,0,0,0),(2871,'La libreria GD per PHP è mancante o non aggiornata. Verificare <a href=\"@url\">la documentazione delle immagini PHP</a> per ulteriori informazioni su come correggere.','it',0,0,0,0),(2872,'Permette agli amministratori di modificare lo schema dei colori per i temi che supportano questa funzione.','it',0,0,0,0),(2873,'Seleziona uno o più commenti per eseguire l\'aggiornamento.','it',0,0,0,0),(2874,'Sembra che non ci siano commenti da eliminare, o il commento selezionato è stato eliminato da un altro amministratore.','it',0,0,0,0),(2875,'Eliminati @count commenti.','it',0,0,0,0),(2876,'Commento @cid eliminato con le relative risposte.','it',0,0,0,0),(2877,'Commento approvato.','it',0,0,0,0),(2878,'Simboli per i commenti inseriti nel sito.','it',0,0,0,0),(2879,'Il modulo Comment permette agli utenti di commentare i contenuti del sito, imposta i permessi e i parametri predefiniti per i commenti, e consente di moderare i commenti. Per ulteriori informazioni, consultate la voce <a href=\"@comment\">modulo Comment</a> del manuale online.','it',0,0,0,0),(2880,'Impostazioni predefinite e personalizzate','it',0,0,0,0),(2881,'Ogni <a href=\"@content-type\">tipo di contenuto</a> può specificare una impostazione predefinita relativa ai commenti, scegliendo tra le seguenti:\r\n<em>Aperto</em> per permettere l\'inserimento di nuovi commenti, <em>Nascosto</em> per nascondere i commenti esistenti e impedire l\'inserimento di nuovi, o <em>Chiuso</em> per visualizzare i commenti esistenti, ma impedire l\'inserimento di nuovi. Queste impostazioni predefinite si applicheranno a tutti i nuovi contenuti creati (cambiamenti di queste impostazioni su dei contenuti già esistenti andranno effettuati manualmente). Altre impostazioni sui commenti possono essere personalizzate per ogni tipo di contenuto, e possono essere modificate per ogni elemento del contenuto. Quando un commento non ha risposte, continua a essere modificabile da parte dell\'autore, finché questo possiede un profilo ed è autenticato.','it',0,0,0,0),(2882,'Commento completo','it',0,0,0,0),(2883,'Commenti non approvati (@count)','it',0,0,0,0),(2884,'Amministra commenti e impostazioni commenti','it',0,0,0,0),(2885,'Modifica i propri commenti','it',0,0,0,0),(2886,'Numero di commenti recenti','it',0,0,0,0),(2887,'Raggruppamento per argomenti','it',0,0,0,0),(2888,'Mostra le risposte ai commenti nell\'elenco degli argomenti.','it',0,0,0,0),(2889,'Impostazioni predefinite dei commenti per nuovo contenuto','it',0,0,0,0),(2890,'Consenti di dare un titolo al commento','it',0,0,0,0),(2891,'Mostra il form per le risposte sulla stessa pagina dei commenti','it',0,0,0,0),(2892,'Gli utenti con il permesso \"Inserire commenti\" possono inserire commenti.','it',0,0,0,0),(2893,'Gli utenti non possono inserire commenti, ma verranno mostrati i commenti già esistenti.','it',0,0,0,0),(2894,'I commenti non verranno mostrati.','it',0,0,0,0),(2895,'Gli utenti non possono aggiungere commenti.','it',0,0,0,0),(2896,'I commenti verranno accodati per una revisione dell\'amministratore e saranno pubblicati dopo l\'approvazione.','it',0,0,0,0),(2897,'Il commento è stato inserito.','it',0,0,0,0),(2898,'<a href=\"@login\">Accedi</a> o <a href=\"@register\">registrati</a> per inserire commenti.','it',0,0,0,0),(2899,'<a href=\"@login\">Accedi</a> per lasciare commenti','it',0,0,0,0),(2900,'Elenco semplice','it',0,0,0,0),(2901,'Lista per argomento','it',0,0,0,0),(2902,'Salva commento','it',0,0,0,0),(2903,'Il commento verrà rimosso dalla pubblicazione se contiene una delle frasi sopra. Utilizza una lista di frasi case-sensitive, separate da virgola. Ad esempio: divertente, bungee jumping, \"Azienda, Spa.\"','it',0,0,0,0),(2904,'Pubblica il commento %subject.','it',0,0,0,0),(2905,'Il commento a %title è stato salvato','it',0,0,0,0),(2906,'Elenca e modifica i commenti del sito e la coda di moderazione dei commenti.','it',0,0,0,0),(2907,'Commenti non approvati','it',0,0,0,0),(2908,'Esempi: \'webmaster@example.com\' or \'sales@example.com,support@example.com\' . Per indicare destinatari multipli, separa ogni indirizzo e-mail con una virgola.','it',0,0,0,0),(2909,'La categoria %category è stata salvata.','it',0,0,0,0),(2910,'Non puoi inviare più di %limit messaggi in @interval. Riprova più tardi.','it',0,0,0,0),(2911,'Contatta @username','it',0,0,0,0),(2912,'%sender-name (@sender-from) ha inviato un messaggio e-mail riguardante %category.','it',0,0,0,0),(2913,'%sender-name (@sender-from) ha inviato un messaggio e-mail a %recipient-name.','it',0,0,0,0),(2914,'Il modulo Contact permette ai visitatori di contattare l\'amministratore del sito o altri utenti. Gli utenti specificano un oggetto, scrivono il loro messaggio, e possono decidere se ricevere una copia del messaggio al loro indirizzo e-mail. Per maggiori informazioni, consultare la voce <a href=\"@contact\">modulo Contact</a> sul manuale online.','it',0,0,0,0),(2915,'Moduli di contatto utente','it',0,0,0,0),(2916,'Gli utenti del sito possono essere contattati tramite un form di contatto che mantiene nascosto il loro indirizzo e-mail. Gli utenti possono attivare o disattivare il loro form di contatto personale modificando il proprio profilo raggiungibile dalla pagina <em>Profilo utente</em>. Se attivato, una scheda <em>Contatto</em> condurrà a un form di contatto personale visualizzato nel profilo utente. Gli amministratori del sito possono comunque utilizzare il form di contatto, anche se questo è stato disattivato. La scheda <em>Contatto</em> non verrà mostrata quando si visualizzerà il profilo.','it',0,0,0,0),(2917,'Form di contatto del sito','it',0,0,0,0),(2918,'La <a href=\"@contact\">pagina di contatto</a> fornisce un semplice modulo agli utenti con il permesso <em> Usa il modulo di contatto del sito</em> attraverso cui inviare commenti, feedback, o altre richieste. È possibile creare categorie per dirigere i messaggi inviati tramite il  modulo di contatto ad una serie di destinatari predefiniti. Categorie comuni per un sito di un azienda, per esempio, potrebbero includere \"feedback sito web\" (i messaggi vengono inoltrati agli amministratori del sito) e \"Informazioni sui prodotti\" (i messaggi vengono inoltrati al reparto vendite). Gli indirizzi e-mail definiti all\'interno di una categoria non vengono visualizzati pubblicamente.','it',0,0,0,0),(2919,'Quando il form di contatto per l\'intero sito è attivato, viene creato automaticamente un link al form nel menu principale di <em>Navigazione</em>;  per impostazione predefinita il link è disattivato. La voce di menu può essere attivata alla pagina di <a href=\'@menu\'>Amministrazione dei menu</a>.','it',0,0,0,0),(2920,'Personalizzazioni','it',0,0,0,0),(2921,'Se si desidera inserire testo aggiuntivo sulla pagina di contatto del sito o di quella personale, usare un blocco. È possibile creare e modificare blocchi alla pagina di <a href=\"@blocks\">Amministrazione dei blocchi</a>.','it',0,0,0,0),(2922,'In questa pagina puoi aggiungere una o più categorie per il <a href=\"@form\">form di contatto</a> del sito.','it',0,0,0,0),(2923,'Una voce di menu <em>Contatto</em> (disattivata come impostazione predefinita) viene aggiunta al menu di Navigazione e può essere modificata dalla <a href=\"@menu-settings\">pagina di amministrazione menu</a>.','it',0,0,0,0),(2924,'Se si desidera inserire testo aggiuntivo sulla pagina di contatto del sito, usare un blocco. È possibile creare e modificare blocchi alla pagina di <a href=\"@blocks\">Amministrazione dei blocchi</a>.','it',0,0,0,0),(2925,'Amministra i moduli di contatto e le impostazioni del modulo di contatto','it',0,0,0,0),(2926,'Usa il modulo di contatto del sito','it',0,0,0,0),(2927,'Usa i moduli di contatto personali degli utenti','it',0,0,0,0),(2928,'!sender-name (!sender-url) ha inviato un messaggio usando il form contatti su !form-url.','it',0,0,0,0),(2929,'[!site-name] !subject','it',0,0,0,0),(2930,'!sender-name (!sender-url) ti ha inviato un messaggio attraverso il form contatti del tuo profilo (!form-url) su !site-name.','it',0,0,0,0),(2931,'Se non vuoi ricevere di queste e-mail, puoi cambiare le impostazioni in !recipient-edit-url.','it',0,0,0,0),(2932,'Consente ad altri utenti di contattarti attraverso il <a href=\"@url\">modulo di contatto personale</a>, che mantiene nascosto il tuo indirizzo e-mail. Considera che gli utenti con i giusti permessi (come gli amministratori del sito) sono comunque in grado di contattarti anche se decidi di non attivare questa funzione.','it',0,0,0,0),(2933,'Abilita come impostazione predefinita il modulo di contatto personale per i nuovi utenti.','it',0,0,0,0),(2934,'Modificare questa impostazione non avrà effetto sugli utenti esistenti.','it',0,0,0,0),(2935,'Il modulo Contextual links visualizza, ad utenti che possiedono il permesso <em> Utilizza link contestuali</em> , dei link che fanno riferimento a determinate sezioni all\'interno delle pagine del sito. Per ulteriori informazioni, consultare la voce <a href=\"@contextual\">modulo Contextual links</a> sul manuale online.','it',0,0,0,0),(2936,'Mostra link contestuali','it',0,0,0,0),(2937,'I link contestuali sono forniti dai moduli per garantire un rapido accesso alle attività associate alle regioni delle pagine del sito. Per esempio, se si dispone di un blocco di menu personalizzato visualizzato in una barra laterale, i blocchi e i moduli possono fornire link per configurare il blocco e modificare il menu. Il modulo Contextual links raccoglie questi link in un elenco per la visualizzazione all\'interno del tema aggiungendo inoltre il codice JavaScript nella pagina per mantenere i link nascosti, visualizzandoli quando il mouse passa sopra il blocco.','it',0,0,0,0),(2938,'Utilizza link contestuali','it',0,0,0,0),(2939,'Usa i link contestuali per eseguire azioni relative agli elementi di una pagina.','it',0,0,0,0),(2940,'Link contestuali','it',0,0,0,0),(2941,'Fornisce link contestuali per eseguire azioni relative agli elementi di una pagina.','it',0,0,0,0),(2942,'Traccia l\'attività dell\'utente','it',0,0,0,0),(2943,'Attivando blocchi come <em>Chi è online</em> e <em>Chi c\'è di nuovo</em>, gli utenti del sito potranno verificare chi è autenticato in quel momento e i nuovi utenti registrati in un unica vista centralizzata.','it',0,0,0,0),(2944,'Traccia attività sui contenuti','it',0,0,0,0),(2945,'Attivando blocchi come <em>Articoli recenti del blog</em>, <em>Nuovi argomenti del forum</em>, e <em>Commenti recenti</em>, gli utenti del sito potranno individuare rapidamente i nuovi contenuti aggiunti.','it',0,0,0,0),(2946,'Visualizza la dashboard di amministrazione','it',0,0,0,0),(2947,'La regione dashboard è vuota. Fai click su <em>Personalizza dashboard</em> per aggiungervi blocchi.','it',0,0,0,0),(2948,'TRASCINA QUI','it',0,0,0,0),(2949,'Fornisce una Dashboard nell\'area di amministrazione dove raccogliere e organizzare le attività di amministrazione e tenere traccia del contenuto del sito.','it',0,0,0,0),(2950,'Personalizza la dashboard','it',0,0,0,0),(2951,'Cancella i messaggi di log','it',0,0,0,0),(2952,'I messaggi di log verranno rimossi dal database permanentemente.','it',0,0,0,0),(2953,'I log sono stati cancellati dal database.','it',0,0,0,0),(2954,'Il modulo Database logging riporta nel database di Drupal gli eventi di sistema. Per maggiori informazioni, consultare la voce <a href=\"@dblog\">modulo Database logging</a> sul manuale online.','it',0,0,0,0),(2955,'Monitorare il sito','it',0,0,0,0),(2956,'Trova e risolvi problemi del sito','it',0,0,0,0),(2957,'Errori di validazione del campo','it',0,0,0,0),(2958,'Tentativo di creare un campo con un nome più lungo di 32 caratteri: %name','it',0,0,0,0),(2959,'Tentativo di creare il nome di campo %name che esiste già ed è attivo.','it',0,0,0,0),(2960,'Tentativo di creare il nome di campo %name che esiste già, benché sia inattivo.','it',0,0,0,0),(2961,'Tentativo di creare il nome di campo %name che è riservato dalla entità tipo  %type.','it',0,0,0,0),(2962,'Tentativo di creare un campo di tipo sconosciuto %type.','it',0,0,0,0),(2963,'Tentativo di creazione di un campo con tipo di archiviazione %type sconosciuto.','it',0,0,0,0),(2964,'Tentativo di creazione di un istanza del campo @field_name senza un bundle.','it',0,0,0,0),(2965,'Attivazione tipi di campi','it',0,0,0,0),(2966,'Il modulo Field fornisce l\'infrastruttura per la creazione di campi allegati; i tipi di campo e widget di inserimento sono forniti da moduli aggiuntivi. Alcuni moduli sono obbligatori; i moduli opzionali possono essere attivate dalla <a href=\"@modules\">pagina di amministrazione Moduli</a>. Drupal core comprende i seguenti moduli per diversi tipi di campo: Number (richiesto), Text (richiesto), List (richiesto), Taxonomy (opzionale), Image (opzionale) e File (opzionale); il modulo richiesto Options fornisce i widget di inserimento per altri moduli di campi. Ulteriori campi e widget possono essere forniti da moduli aggiuntivi, che si trovano nella sezione <a href=\"@contrib\">moduli aggiuntivi su Drupal.org</a>. Al momento sono attivati i seguenti moduli per tipi di campo e widget di inserimento:','it',0,0,0,0),(2967,'Gestione dell\'archiviazione dei dati dei campi','it',0,0,0,0),(2968,'Gli sviluppatori di moduli che forniscono nuovi tipi di campo possono utilizzare il modulo predefinito <a href=\"@sql-store\">Field SQL storage</a> per memorizzare i dati dei propri campi, oppure usare un modulo aggiuntivo o personalizzato sviluppato utilizzando <a href=\"@ storage-api\">field storage API</a>.','it',0,0,0,0),(2969,'Il modulo Field SQL storage immagazzina i dati dei campi nel database. È il modulo predefinito per l\'archiviazione dei dati dei campi; altri meccanismi potrebbero essere disponibili come moduli aggiuntivi. Consulta la pagina di <a href=\"@field-help\">aiuto</a> per maggiori informazioni sui campi.','it',0,0,0,0),(2970,'Archiviazione SQL predefinita','it',0,0,0,0),(2971,'Memorizza i campi nel database SQL locale usando tabelle specifiche per campo.','it',0,0,0,0),(2972,'Memorizzazione SQL dei campi','it',0,0,0,0),(2973,'Memorizza i dati del campo in un database SQL.','it',0,0,0,0),(2974,'Il modulo List definisce vari campi per l\'archiviazione di elenchi di voci, per essere poi utilizzati con il modulo Field. Solitamente questi elementi sono inseriti tramite un elenco di selezione, caselle o pulsanti di opzione. Per ulteriori informazioni riguardo ai campi consultare la <a href=\"@field-help\">pagina di aiuto del modulo</a>.','it',0,0,0,0),(2975,'Questo campo gestisce semplici opzioni on/off o sì/no.','it',0,0,0,0),(2976,'Elenco (testo)','it',0,0,0,0),(2977,'Il widget \'caselle/pulsanti di opzione\' visualizzerà le caselle se l\'opzione <em>Numero di valori</em> per questo campo è maggiore di 1, altrimenti verranno visualizzati dei pulsanti di opzione (radio buttons).','it',0,0,0,0),(2978,'Tag HTML permesso nelle etichette: @tags','it',0,0,0,0),(2979,'Il valore di questo campo è stato determinato dalla funzione %function e non può essere modificato.','it',0,0,0,0),(2980,'Elenco di valori consentiti: ogni chiave deve essere un numero intero o decimale valido.','it',0,0,0,0),(2981,'Elenco di valori consentiti: ogni chiave deve essere una stringa lunga al massimo 255 caratteri.','it',0,0,0,0),(2982,'Elenco di valori consentiti: le chiavi devono essere dei numeri interi.','it',0,0,0,0),(2983,'Definisce l\'elenco dei tipi di campo. Utilizzare con Opzioni per creare degli elenchi di selezione.','it',0,0,0,0),(2984,'Il modulo Number definisce vari campi di tipo numerico per il modulo Field. I numeri possono essere forma di intero, decimale o in virgola mobile, e possono essere formattati quando vengono visualizzati. È possibile anche definire uno specifico gruppo o intervallo di valori consentiti che i campi numerici possono contenere. Per maggiori informazioni riguardo ai campi consultare la <a href=\"@field-help\">pagina di aiuto del modulo Field</a>.','it',0,0,0,0),(2985,'Questo campo salva un numero nel database come intero.','it',0,0,0,0),(2986,'Questo campo salva un numero nel database come un decimale a virgola fissa.','it',0,0,0,0),(2987,'Questo campo salva un numero nel database come un decimale a virgola mobile.','it',0,0,0,0),(2988,'Valore minimo permesso in questo campo. Lasciare vuoto per nessun valore minimo.','it',0,0,0,0),(2989,'Valore massimo permesso in questo campo. Lasciare vuoto per nessun valore massimo.','it',0,0,0,0),(2990,'Definire una stringa da anteporre al valore, come \'$\' o \'&euro;\'. Lasciare vuoto se non si desidera nessun prefisso. Separare valori singolari e plurali tramite una pipe (\'pound|pounds\').','it',0,0,0,0),(2991,'Nel campo %field sono permessi solo numeri e separatore decimale (@separator)','it',0,0,0,0),(2992,'Il modulo Options definisce caselle, elenchi di selezione e altri widget di inserimento per il modulo Field. Per ulteriori informazioni riguardo ai campi, consultare la <a href=\"@field-help\">pagina di aiuto del modulo Field</a>.','it',0,0,0,0),(2993,'Il modulo Text definisce vari tipi campo testuale per il modulo Field. Un campo testuale può contenere semplice testo, o opzionalmente, può utilizzare i <a href=\'@filter-help\'>filtri per il testo</a> di Drupal per la gestione sicura di output HTML. I campi testuali possono essere sia a riga singola (campo di testo), a righe multiple (area di testo), o per un migliore controllo di inserimento, un elenco di selezione, caselle o pulsanti di opzione. Volendo, è possibile che il campo venga convalidato, in modo da limitarlo a un determinato set di valori consentiti. Per ulteriori informazioni relative ai campi consultare la <a href=\'@field-help\'>pagina di aiuto del modulo Field</a>.','it',0,0,0,0),(2994,'Questo campo immagazzina nel database testo di tipo varchar.','it',0,0,0,0),(2995,'Testo long','it',0,0,0,0),(2996,'Questo campo immagazzina nel database testo di tipo long.','it',0,0,0,0),(2997,'Testo lungo e riassunto','it',0,0,0,0),(2998,'Questo campo immagazzina nel database testo di tipo long e opzionalmente anche un testo riassuntivo.','it',0,0,0,0),(2999,'Testo filtrato (l\'utente seleziona il formato del testo)','it',0,0,0,0),(3000,'Inserimento riassunto','it',0,0,0,0),(3001,'Questo permette agli autori di inserire un testo riassuntivo, da visualizzare al posto del testo troncato automatico quando si utilizza il tipo di visualizzazione \"Riassunto o troncato\".','it',0,0,0,0),(3002,'%name: il testo non deve superare i %max caratteri.','it',0,0,0,0),(3003,'%name: il testo riassuntivo non deve essere più lungo di %max caratteri.','it',0,0,0,0),(3004,'Riassunto o troncato','it',0,0,0,0),(3005,'Area di testo con riassunto','it',0,0,0,0),(3006,'Lasciare vuoto per usare come riassunto una versione del testo abbreviata automaticamente.','it',0,0,0,0),(3007,'Nascondi sommario','it',0,0,0,0),(3008,'Modifica sommario','it',0,0,0,0),(3009,'il campo %field (@field_name) richiede il widget %widget_type fornito dal modulo %widget_module','it',0,0,0,0),(3010,'I campi inattivi non vengono visualizzati a meno che i loro moduli di origine non siano attivati. I campi seguenti non sono attivi: !list','it',0,0,0,0),(3011,'Modifica le impostazioni del campo.','it',0,0,0,0),(3012,'Cambia il tipo di widget.','it',0,0,0,0),(3013,'Modifica le impostazioni dell\'istanza.','it',0,0,0,0),(3014,'Rimuovi istanza.','it',0,0,0,0),(3015,'Il campo %label non può essere aggiunto poiché è bloccato.','it',0,0,0,0),(3016,'Si è verificato un problema durante la creazione di un\'istanza del campo %label: @message.','it',0,0,0,0),(3017,'Non è stato ancora aggiunto nessun campo. Puoi aggiungere nuovi campi dalla pagina <a href=\"@link\">Gestisci campi</a>.','it',0,0,0,0),(3018,'Queste impostazioni si applicano al campo %field ovunque sia utilizzato. Siccome variano il modo in cui i dati sono memorizzati nel database, non possono più essere modificate una volta che dati sono stati inseriti.','it',0,0,0,0),(3019,'%field non ha impostazioni per il campo.','it',0,0,0,0),(3020,'Impostazioni del campo %label aggiornate.','it',0,0,0,0),(3021,'Tentativo di aggiornamento del campo %label fallito: %message.','it',0,0,0,0),(3022,'Cambia widget','it',0,0,0,0),(3023,'Il tipo di elemento del form da presentare all\'utente quando si crea questo campo nel tipo %type.','it',0,0,0,0),(3024,'Il widget per il campo %label è stato modificato.','it',0,0,0,0),(3025,'Si è presentato un problema durante la modifica del widget per il campo %label.','it',0,0,0,0),(3026,'Questo campo è <strong>bloccato</strong> e non può essere eliminato.','it',0,0,0,0),(3027,'Il campo %field è stato eliminato da %type.','it',0,0,0,0),(3028,'Si è verificato un problema durante l\'eliminazione del %field dal tipo di contenuto %type.','it',0,0,0,0),(3029,'Queste impostazioni saranno applicate solo al campo %field quando viene utilizzato in %type.','it',0,0,0,0),(3030,'Campo obbligatorio','it',0,0,0,0),(3031,'Queste impostazioni si applicano al campo %field ovunque questo venga utilizzato. Poiché il campo contiene già dei dati, alcune impostazioni non possono più essere modificate.','it',0,0,0,0),(3032,'Queste impostazioni si applicano al campo %field ovunque è utilizzato.','it',0,0,0,0),(3033,'Impostazioni per il campo %field','it',0,0,0,0),(3034,'Valore predefinito per questo campo, utilizzato durante la creazione di nuovi contenuti.','it',0,0,0,0),(3035,'Configurazione %label salvata.','it',0,0,0,0),(3036,'Questo elenco mostra tutti i campi attualmente utilizzati per un accesso facilitato.','it',0,0,0,0),(3037,'Salva e aggiungi campi','it',0,0,0,0),(3038,'Elenco campi','it',0,0,0,0),(3039,'Gestione visualizzazione','it',0,0,0,0),(3040,'Field UI','it',0,0,0,0),(3041,'Questo campo contiene l\'ID di un file sotto forma di valore intero.','it',0,0,0,0),(3042,'Abilita il campo <em>Mostra</em>','it',0,0,0,0),(3043,'L\'opzione visualizza permette agli utenti di scegliere se un file deve essere mostrato quando si guarda un contenuto.','it',0,0,0,0),(3044,'I file vengono mostrati come impostazione predefinita.','it',0,0,0,0),(3045,'Questa impostazione ha effetto se l\'opzione visualizza è abilitata.','it',0,0,0,0),(3046,'Destinazione file caricati','it',0,0,0,0),(3047,'Seleziona dove i file dovranno essere memorizzati. I file privati hanno un costo di gestione maggiore ma permettono l\'accesso limitato ai file memorizzati in questo campo.','it',0,0,0,0),(3048,'Sottocartella opzionale all\'interno della destinazione del file da caricare. Non includere slash iniziali o finali.','it',0,0,0,0),(3049,'Inserire un valore del tipo \"512\" (byte), \"80 KB\" (kilobyte) opure \"50 MB\" (megabyte) in modo da limitare la dimensione permessa. Se il campo viene lasciato vuoto la dimensione verrà limitata solo dalle impostazioni PHP (limite attuale <strong>%limit</strong>).','it',0,0,0,0),(3050,'Attiva il campo <em>Descrizione</em>','it',0,0,0,0),(3051,'Il campo descrizione permette agli utenti di inserire una descrizione del file caricato.','it',0,0,0,0),(3052,'L\'opzione \"!name\" deve contenere un valore valido. Puoi lasciare il campo testo vuoto o inserire una stringa come \"512\" (byte), \"80 KB\" (kilobyte) o \"50 MB\" (megabyte)','it',0,0,0,0),(3053,'La lista di estensioni permesse non è valida, assicurati di omettere i punti iniziali e di separare le estensioni con una virgola o uno spazio.','it',0,0,0,0),(3054,'File generico','it',0,0,0,0),(3055,'Tabella dei file','it',0,0,0,0),(3056,'Aggiungi un nuovo file','it',0,0,0,0),(3057,'Includi il file nella visualizzazione','it',0,0,0,0),(3058,'La descrizione può essere usata come etichetta del link al file.','it',0,0,0,0),(3059,'I file devono pesare meno di !size.','it',0,0,0,0),(3060,'Tipi di file permessi: !extensions.','it',0,0,0,0),(3061,'La dimensione delle immagini deve essere pari esattamente a !size pixel.','it',0,0,0,0),(3062,'La dimensione delle immagini deve essere compresa fra !min e !max pixel.','it',0,0,0,0),(3063,'La dimensione delle immagini deve essere superiore a !min pixel.','it',0,0,0,0),(3064,'La dimensione delle immagini deve essere inferiore a !max pixel.','it',0,0,0,0),(3065,'Il modulo File definisce un campo di tipo <em>File</em>, che consente di gestire e convalidare file allegati ai contenuti del sito (consultare la <a href=\"@field-help\">pagina di aiuto del modulo Field</a> per maggiori informazioni riguardo ai campi). Per maggiori informazioni, consultare la voce <a href=\"@file\">File module</a> sul manuale online.','it',0,0,0,0),(3066,'Allegare file al contenuto','it',0,0,0,0),(3067,'Il modulo File permette agli utenti di allegare file ai contenuti (es. PDF, fogli di calcolo, ecc.), aggiungendo un campo <em>File</em> a un tipo di contenuto, tramite il modulo <a href=\"@fieldui-help\">Field UI</a>. È possibile aggiungere opzioni di validazione ad ogni campo File, per esempio specificare una dimensione massima del file da caricare e le estensioni consentite.','it',0,0,0,0),(3068,'Gestire la visualizzazione degli allegati','it',0,0,0,0),(3069,'Quando alleghi un file a un contenuto, puoi specificare se questo dev\'essere <em>elencato</em> oppure no. I file elencati vengono visualizzati automaticamente in una sezione in fondo al tuo contenuto; i file non elencati sono disponibile per essere integrati nel tuo contenuto, ma non sono inclusi in tale lista.','it',0,0,0,0),(3070,'Gestione della posizione dei file','it',0,0,0,0),(3071,'Quando si crea un campo File, è possibile specificare una cartella nella quale salvare il file, che può trovarsi all\'interno della cartella <em>pubblica</em> o <em>privata</em>. I file nella cartella pubblica possono essere raggiunti direttamente tramite il server web; quando i file pubblici sono elencati, vengono utilizzati dei link diretti a questi ultimi, e chiunque conosca l\'URL di un file sarà in grado di scaricarlo. I file nella cartella privata non sono accessibili direttamente tramite il server web; quando i file privati vengono elencati, i link puntano a percorsi gestiti da Drupal. Questo carica di più il server e aumenta il tempo di download, dato che Drupal deve essere inizializzato per risolvere il percorso di ogni file di cui viene richiesto il download, ma permette restrizioni dell\'accesso ai file.','it',0,0,0,0),(3072,'Si è verificato un errore irreversibile. Questo form è scaduto. Provare a ricaricare la pagina e a reinviare il form.','it',0,0,0,0),(3073,'Il file a cui fa riferimento il campo !name non esiste.','it',0,0,0,0),(3074,'Non è stato possibile caricare il file nel campo !name.','it',0,0,0,0),(3075,'La cartella %directory per il campo file !name non può essere creata o non è accessibile. Un file appena caricato doveva essere salvato in quella cartella, di conseguenza il caricamento è stato annullato.','it',0,0,0,0),(3076,'Il server non è in grado di visualizzare l\'avanzamento del caricamento file. Per poterlo visualizzare è necessario un server Apache, che esegue PHP tramite mod_php.','it',0,0,0,0),(3077,'Tutti i ruoli possono usare questo formato','it',0,0,0,0),(3078,'L\'ordinamento dei formati del testo è stato salvato','it',0,0,0,0),(3079,'Aggiungi un formato del testo','it',0,0,0,0),(3080,'Tutti i ruoli per questo formato del testo devono essere attivati e non possono essere cambiati.','it',0,0,0,0),(3081,'Ordine di applicazione dei filtri','it',0,0,0,0),(3082,'I nomi dei formati del testo devono essere univoci. Esiste già un formato chiamato %name.','it',0,0,0,0),(3083,'Il formato del testo %format è stato aggiunto.','it',0,0,0,0),(3084,'Il formato del testo %format è stato aggiornato.','it',0,0,0,0),(3085,'Formati del testo','it',0,0,0,0),(3086,'Il modulo Filter permette agli amministratori di configurare i formati del testo. Un formato del testo definisce i tag HTML, codici, e altri elementi consentiti nei contenuti e nei commenti, ed è una funzionalità importante per prevenire inserimenti potenzialmente dannosi da parte di utenti malintenzionati. Per ulteriori informazioni, consultare la voce <a href=\"@filter\">modulo Filter</a> sul manuale online.','it',0,0,0,0),(3087,'Applicare filtri al testo','it',0,0,0,0),(3088,'Ogni formato del testo usa dei filtri per manipolare il testo, e molti formati applicano diversi filtri al testo in uno specifico ordine. Ogni filtro è progettato per uno specifico scopo, e generalmente aggiunge, rimuove, o trasforma gli elementi presenti nel testo inserito dall\'utente prima che venga visualizzato. Un filtro non modifica in alcun modo il contenuto, piuttosto lo manipola \"al volo\" mentre viene elaborato per la visualizzazione. Un filtro potrebbe rimuovere tag HTML non consentiti, mentre un altro potrebbe aggiungere automaticamente codice HTML per rendere cliccabili gli URL.','it',0,0,0,0),(3089,'Definizione dei formati del testo','it',0,0,0,0),(3090,'Esiste un formato del testo predefinito: <em>Testo semplice</em>, che rimuove tutti i tag HTML. Formati aggiuntivi possono essere creati dal profilo di installazione usato durante l\'installazione iniziale di Drupal, e altri ancora possono essere creati dalla pagina di amministrazione <a href=\"@text-formats\">Formati del testo</a>.','it',0,0,0,0),(3091,'Scegliere un formato del testo','it',0,0,0,0),(3092,'Un formatto di testo contiene filtri che modificano l\'input degli utenti, ad esempio eliminano HTML malevolo o rendono gli URL cliccabili. I filtri vengono eseguiti in sequenza dal primo all\'ultimo e l\'ordine è importante, dato che un filtro potrebbe impedire ad un altro filtro di eseguire il suo compito. Ad esempio, quando gli URL vengono trasformati in link prima della rimozione dei tag HTML non consentiti, tutti i link potrebbero venire rimossi. Quando ciò accade, può essere necessario cambiare l\'ordine in cui vengono applicati i filtri.','it',0,0,0,0),(3093,'Attenzione: Questo permesso, a seconda della configurazione del formato del testo, potrebbe avere ripercussioni sulla sicurezza.','it',0,0,0,0),(3094,'Usa il formato del testo !text_format','it',0,0,0,0),(3095,'Altre informazioni sui formati del testo','it',0,0,0,0),(3096,'Limita i tag HTML consentiti','it',0,0,0,0),(3097,'Converti le interruzioni di linea in HTML (es. <code>&lt;br&gt;</code> e <code>&lt;p&gt;</code>)','it',0,0,0,0),(3098,'Converti gli URL in collegamenti','it',0,0,0,0),(3099,'Correggi codice HTML scorretto o incompleto','it',0,0,0,0),(3100,'Visualizza tutto l\'HTML come testo semplice','it',0,0,0,0),(3101,'L\'elenco dei tag HTML che possono essere utilizzati. Stili CSS, attributi riguardanti gli eventi e URL JavaScript sono sempre rimossi.','it',0,0,0,0),(3102,'Mostra l\'aiuto di base per l\'HTML nei suggerimenti estesi per i filtri','it',0,0,0,0),(3103,'Aggiungi rel=\"nofollow\" a tutti i link','it',0,0,0,0),(3104,'Questo sito permette di utilizzare contenuti HTML. Una conoscenza totale del codice HTML potrebbe intimorire ma imparare a usare pochi \"tag\" basilari di HTML è molto semplice. Questa tabella fornisce esempi per ogni tag attivato in questo sito.','it',0,0,0,0),(3105,'Per maggiori informazioni leggi le <a href=\"@html-specifications\">Specifiche HTML</a> del W3C o usa il tuo motore di ricerca preferito per trovare altri siti che spiegano l\'HTML.','it',0,0,0,0),(3106,'La maggioranza dei caratteri inusuali può essere immessa direttamente senza problemi.','it',0,0,0,0),(3107,'Se si riscontrano problemi, provare ad utilizzare i caratteri speciali HTML. Ad esempio &amp;amp; per il carattere &amp;. Per una lista completa delle entità disponibili in HTML, puoi visitare la <a href=\"@html-entities\">pagina delle entità</a>. Alcuni di questi caratteri sono:','it',0,0,0,0),(3108,'Nessun tag HTML consentito.','it',0,0,0,0),(3109,'Filtra il contenuto durante la visualizzazione.','it',0,0,0,0),(3110,'Di !author @time fa','it',0,0,0,0),(3111,'Il forum %term è tutti i sotto-forum sono stati eliminati.','it',0,0,0,0),(3112,'Il numero di risposte che deve avere un argomento per essere considerato \"caldo\".','it',0,0,0,0),(3113,'Nessun contenitore o forum disponibile. <a href=\"@container\">Aggiungi un contenitore</a> o <a href=\"@forum\">Aggiungi un forum</a>.','it',0,0,0,0),(3114,'forum: eliminato %term e tutti i suoi sotto forum.','it',0,0,0,0),(3115,'Il modulo Forum consente di creare forum di discussione con funzionalità simili a una bacheca di messaggi. I forum sono utili perché consentono ai membri della comunità di discutere tra loro, garantendo che le conversazioni siano archiviate per riferimento futuro. In un forum, gli utenti postano argomenti e discussioni in modo gerarchico, consentendo di classificare e raggruppare le discussioni. La gerarchia di un forum è composta da:','it',0,0,0,0),(3116,'Contenitori opzionali (ad esempio, <em>Supporto</em>), che possono raggruppare:','it',0,0,0,0),(3117,'Forum (per esempio, <em>Installare Drupal</em>), che possono contenere:','it',0,0,0,0),(3118,'Gli argomenti pubblicati dagli utenti nel forum (ad esempio, <em>Da dove iniziare per creare un multisito in Drupal 7</em>), che danno inizio alle relative discussioni e rappresentano il punto di inizio per:','it',0,0,0,0),(3119,'Commenti pubblicati dagli utenti, divisi per argomento (ad esempio, <em>Hai queste opzioni...</em>).','it',0,0,0,0),(3120,'Configurare la struttura del forum','it',0,0,0,0),(3121,'Visita la <a href=\"@forums\">pagina dei Forum</a> per impostare i  contenitori ed i forum in cui avviare le discussioni sugli argomenti di interesse.','it',0,0,0,0),(3122,'Iniziare una discussione','it',0,0,0,0),(3123,'Il link <a href=\"@create-topic\">Argomento del forum</a> alla pagina <a href=\"@content-add\">Aggiungi contenuto</a> crea il primo post di una discussione o thread.','it',0,0,0,0),(3124,'Attivando il modulo Forum si aggiunge un elemento predefinito <em>Forum</em> nel menu navigazione che rimanda alla <a href=\"@forums\">pagina dei Forum</a>','it',0,0,0,0),(3125,'Spostamento di argomenti del forum','it',0,0,0,0),(3126,'Un argomento del forum (e tutti i suoi commenti) può essere spostato da un forum all\'altro selezionando il forum di destinazione nella pagina di modifica. Quando si sposta un argomento tra forum, l\'opzione <em>Lascia una copia ombra</em> crea un link nel forum originale verso la nuova destinazione.','it',0,0,0,0),(3127,'Bloccare e disattivare i commenti','it',0,0,0,0),(3128,'Selezionando <em>Chiuso</em> nelle <em>Impostazioni dei commenti</em> durante la modifica di un argomento di un forum, si bloccherà la discussione (non sarà possibile aggiungere nuovi commenti). Selezionando <em>Nascosto</em>  nelle <em>Impostazioni dei commenti</em> durante la modifica di un argomento di un forum, si nasconderanno tutti i commenti già esistenti discussione e se ne impedirà l\'aggiunta di nuovi.','it',0,0,0,0),(3129,'I forum contengono gli argomenti. Utilizza i contenitori per raggruppare forum affini.','it',0,0,0,0),(3130,'Usa i contenitori per raggruppare forum affini.','it',0,0,0,0),(3131,'Un forum contiene argomenti affini.','it',0,0,0,0),(3132,'Gestisci la visualizzazione degli argomenti dei forum. Organizza i forum nella pagina della <a href=\"@forum-structure\">struttura del forum</a>.','it',0,0,0,0),(3133,'Aggiungere un nuovo contenuto di tipo @node_type','it',0,0,0,0),(3134,'<a href=\"@login\">Accedi</a> per inserire nuovi contenuti nel forum.','it',0,0,0,0),(3135,'L\'oggetto %forum è un contenitore di forum, non un forum. Seleziona, piuttosto, uno dei forum indicati sotto.','it',0,0,0,0),(3136,'Un <em>nuovo argomento</em> avvia una nuova discussione all\'interno del forum.','it',0,0,0,0),(3137,'Controlla le impostazioni relative alla gerarchia dei forum.','it',0,0,0,0),(3138,'Vocabolario per la navigazione del forum','it',0,0,0,0),(3139,'Fornisce forum di discussione','it',0,0,0,0),(3140,'Segui queste istruzioni per configurare e iniziare ad usare il sito web:','it',0,0,0,0),(3141,'<strong>Inizia ad inserire contenuti</strong> Finalmente, puoi <a href=\"@content\">aggiungere nuovi contenuti</a> al tuo sito.','it',0,0,0,0),(3142,'Per ulteriori informazioni, fai riferimento ai capitoli specifici elencati nella prossima sezione oppure ai <a href=\"@handbook\">Manuali online di Drupal</a>. Puoi anche scrivere nel <a href=\"@forum\">Forum di Drupal</a> oppure ancora  consultare le molteplici <a href=\"@support\">altre opzioni di supporto</a> disponibili.','it',0,0,0,0),(3143,'Il modulo Help fornisce <a href=\"@help-page\">pagine di aiuto</a> e suggerimenti riferiti al contesto, per guidarti nell\'uso e nella configurazione dei moduli. È un punto di partenza per i <a href=\"@handbook\">manuali di Drupal</a> online. I manuali contengono informazioni più dettagliate ed aggiornate, includono commenti inseriti dagli utenti, e costituiscono un punto di riferimento definitivo per tutta la documentazione di Drupal. Per maggiori informazioni, consulta il capitolo <a href=\"@help\">modulo Help</a> sul manuale online.','it',0,0,0,0),(3144,'Fornisce un aiuto da consultare','it',0,0,0,0),(3145,'Il modulo Help visualizza istruzioni per l\'utilizzo di ciascuno dei moduli elencati nella pagina principale di <a href=\"@help\">Aiuto</a>.','it',0,0,0,0),(3146,'Fornire aiuto relativo al contesto','it',0,0,0,0),(3147,'Il modulo Help visualizza suggerimenti relativi al contesto e spiegazioni su varie pagine.','it',0,0,0,0),(3148,'Modifica lo stile %name','it',0,0,0,0),(3149,'Questo stile per le immagini è attualmente fornito da un modulo. Seleziona \"sovrascrivi impostazioni predefinite\" per modificarne le configurazione.','it',0,0,0,0),(3150,'Nome dello stile per le immagini','it',0,0,0,0),(3151,'Il nome viene usato nelle URL delle immagini generate. Usare solo caratteri alfanumerici minuscoli, underscore (_), e trattini (-).','it',0,0,0,0),(3152,'Selezionare un nuovo effetto','it',0,0,0,0),(3153,'Sovrascrivi le impostazioni predefinite','it',0,0,0,0),(3154,'Aggiorna lo stile','it',0,0,0,0),(3155,'Selezionare un effetto da aggiungere.','it',0,0,0,0),(3156,'L\'effetto immagine è stato applicato con successo.','it',0,0,0,0),(3157,'Lo stile per le immagini %style è stato sovrascritto; puoi ora modificarne le impostazioni.','it',0,0,0,0),(3158,'Nome dello stile','it',0,0,0,0),(3159,'Crea un nuovo stile','it',0,0,0,0),(3160,'Lo stile %name è stato creato.','it',0,0,0,0),(3161,'Il nome dello stile per le immagini %name è gia utilizzato.','it',0,0,0,0),(3162,'Utilizzare solo caratteri alfanumerici minuscoli, underscore (_), e trattini (-) per i nomi degli stili.','it',0,0,0,0),(3163,'Nessuna sostituzione, semplice eliminazione','it',0,0,0,0),(3164,'Stile sostitutivo','it',0,0,0,0),(3165,'Seleziona uno stile prima di eliminare %style (opzionale)','it',0,0,0,0),(3166,'Se questo stile è in uso sul sito, è possibile selezionare un altro stile che lo sostituisca. Tutte le immagini generate per lo stile saranno eliminate in modo permanente.','it',0,0,0,0),(3167,'Lo stile %name è stato eliminato.','it',0,0,0,0),(3168,'Ripristinare lo stile %style?','it',0,0,0,0),(3169,'Il ripristino di questo stile eliminerà tutte le impostazioni personalizzate ripristinando la configurazione di default fornita dal modulo @module.','it',0,0,0,0),(3170,'Modifica l\'effetto %label','it',0,0,0,0),(3171,'Aggiungi l\'effetto %label','it',0,0,0,0),(3172,'Aggiorna l\'effetto','it',0,0,0,0),(3173,'Aggiungi effetto','it',0,0,0,0),(3174,'Sei sicuro di voler eliminare l\'effetto @effect dallo stile %style?','it',0,0,0,0),(3175,'L\'effetto per immagini %name è stato eliminato.','it',0,0,0,0),(3176,'!name deve essere un intero.','it',0,0,0,0),(3177,'!name deve essere un intero positivo.','it',0,0,0,0),(3178,'!name deve essere un valore esadecimale di un colore.','it',0,0,0,0),(3179,'Larghezza e altezza non possono essere entrambe vuote.','it',0,0,0,0),(3180,'La porzione di immagine che sarà conservata durante il  ritaglio.','it',0,0,0,0),(3181,'Il colore di sfondo da utilizzare per le aree mancanti dell\'immagine. Utilizzare codici esadecimali per il web (#FFFFFF per il bianco, #000000 per il nero). Lasciare vuoto per applicare uno sfondo trasparente alle immagini che lo supportano.','it',0,0,0,0),(3182,'Al momento non ci sono stili. <a href=\"!url\">Aggiungi uno stile</a>.','it',0,0,0,0),(3183,'Questo stile non contiene effetti. Aggiungi un effetto selezionando una delle opzioni seguenti.','it',0,0,0,0),(3184,'visualizza dimensioni reali','it',0,0,0,0),(3185,'Immagine campione originale','it',0,0,0,0),(3186,'Immagine campione modificata','it',0,0,0,0),(3187,'Il ridimensionamento forza le dimensioni dell\'immagine secondo i valori impostati. Questo può causare restringimento o allungamento sproporzionato delle immagini.','it',0,0,0,0),(3188,'La trasformazione in scala mantiene il rapporto delle dimensioni dell\'immagine originale. Se viene impostata una sola dimensione, l\'altra sarà calcolata di conseguenza.','it',0,0,0,0),(3189,'Scala e ritaglia','it',0,0,0,0),(3190,'Scala e ritaglia preserva il rapporto di dimensioni dell\'immagine originale per poi ritagliare la dimensione in eccesso. Questo metodo è utile nei casi in cui si desidera ottenere delle miniature perfettamente quadrate senza deformare l\'immagine.','it',0,0,0,0),(3191,'Il ritaglio rimuove porzioni dell\'immagine in modo da portarla alle dimensioni desiderate.','it',0,0,0,0),(3192,'Desatura','it',0,0,0,0),(3193,'Desatura converte un\'immagine in scala di grigi','it',0,0,0,0),(3194,'La rotazione di un\'immagine può aumentarne le dimensioni per raggiungere l\'ampiezza della diagonale.','it',0,0,0,0),(3195,'Ridimensionamento dell\'immagine non riuscito con il toolkit %toolkit su %path (%mimetype, %dimensions)','it',0,0,0,0),(3196,'Trasformazione in scala dell\'immagine non riuscita usando il toolkit %toolkit su %path (%mimetype, %dimensions)','it',0,0,0,0),(3197,'Ritaglio dell\'immagine non riuscito usando il toolkit %toolkit su %path (%mimetype, %dimensions)','it',0,0,0,0),(3198,'Trasformazione in scala e ritaglio dell\'immagine falliti usando il toolkit %toolkit su %path (%mimetype, %dimensions)','it',0,0,0,0),(3199,'Desaturazione dell\'immagine non riuscita usando il toolkit %toolkit su %path (%mimetype, %dimensions)','it',0,0,0,0),(3200,'Rotazione dell\'immagine non riuscita usando il toolkit %toolkit su %path (%mimetype, %dimensions)','it',0,0,0,0),(3201,'Questo campo memorizza l\'ID di un file immagine come valore intero.','it',0,0,0,0),(3202,'Se nessuna immagine viene caricata, verrà mostrata questa immagine.','it',0,0,0,0),(3203,'Le dimensioni massime per l\'immagine, espresse in LARGHEZZAxALTEZZA (es. 640x480). Lascia vuoto per non impostare limiti. Se viene caricata un\'immagine più grande, verrà ridimensionata per adattarsi alle dimensioni inserite. Il ridimensionamento dell\'immagine al caricamento causerà la perdita dei <a href=\"http://it.wikipedia.org/wiki/Exchangeable_image_file_format\"> dati EXIF</a> dell\'immagine.','it',0,0,0,0),(3204,'Risoluzione minima dell\'immagine','it',0,0,0,0),(3205,'Dimensioni minime per le immagini espresse come LARGHEZZAxALTEZZA (ad es: 640x480). Lasciare vuoto per non impostare limiti. Le immagini con dimensioni inferiori a quelle impostate saranno rifiutate.','it',0,0,0,0),(3206,'Abilita il campo <em>Alt</em>','it',0,0,0,0),(3207,'L\'attributo alt può essere usato da motori di ricerca, screen reader (lettori dello schermo) e quando l\'immagine non può essere caricata.','it',0,0,0,0),(3208,'Abilita il campo <em>Title</em>','it',0,0,0,0),(3209,'L\'attributo title è utilizzato come suggerimento quando il mouse si sofferma sull\'immagine.','it',0,0,0,0),(3210,'I valori di altezza e larghezza devono essere numerici.','it',0,0,0,0),(3211,'Devono essere specificati valori sia per l\'altezza che per la larghezza nel campo !name.','it',0,0,0,0),(3212,'Anteprima stile immagine','it',0,0,0,0),(3213,'nessuna anteprima','it',0,0,0,0),(3214,'L\'immagine di anteprima verrà visualizzata durante la modifica del contenuto.','it',0,0,0,0),(3215,'Il modulo Image consente di manipolare le immagini del sito. Fornisce una impostazione per la selezione del <em>toolkit per le immagini</em>, permette di configurare gli <em>stili per le immagini</em> che possono essere utilizzati per ridimensionare o rifinire le immagini visualizzate, e fornisce un campo <em>Immagine</em> per allegare immagini al contenuto. Per ulteriori informazioni si veda la pagina relativa al <a href=\"@image\">modulo Image</a> sul manuale online.','it',0,0,0,0),(3216,'Manipolazione delle immagini','it',0,0,0,0),(3217,'Con il modulo Image si può scalare, ritagliare, ridimensionare, ruotare e desaturare le immagini visualizzate senza modificare l\'immagine originale attraverso gli <a href=\"@image\">stili per le immagini</a>. Quando si modifica uno stile per le immagini, il modulo aggiorna automaticamente le immagini generate. Ogni stile per le immagini deve avere un nome che sarà utilizzato negli URL delle immagini generate. I nomi degli stili per le immagini sono normalmente scelti secondo due approcci generali (quello da usare dipenderà da come vengono applicati gli stili nel sito):','it',0,0,0,0),(3218,'In base a dove sarà utilizzato: ad es: <em>immagine-profilo</em>','it',0,0,0,0),(3219,'Descrivere il suo aspetto: es. <em>quadrato-85x85</em>','it',0,0,0,0),(3220,'Allegare immagini ai contenuti come campi','it',0,0,0,0),(3221,'Il modulo Image permette inoltre di allegare immagini ai contenuti sotto forma di campi. Per aggiungere un campo immagine ad un <a href=\'@content-type\'>tipo di contenuto</a>, andare alla pagina <em>Gestisci campi</em> e aggiungere un nuovo campo di tipo <em>Imagine</em>. Allegare le immagini ai contenuti in questo modo consente di applicare e gestire gli stili delle immagini, oltre che una maggiore flessibilità nella realizzazione dei temi.','it',0,0,0,0),(3222,'Gli stili per le immagini sono generalmente utilizzati per ottenere miniature di anteprima o immagini scalate e ritagliate, ma permettono anche di aggiungere diversi effetti all\'immagine visualizzata. Quando un\'immagine viene visualizzata con uno stile, viene creato un nuovo file e l\'immagine originale rimane invariata.','it',0,0,0,0),(3223,'Amministra stili immagini','it',0,0,0,0),(3224,'Crea e modifica gli stili per generare automaticamente immagini modificate (ad esempio miniature).','it',0,0,0,0),(3225,'Nessuno stile definito','it',0,0,0,0),(3226,'Generazione dell\'immagine in corso. Riprova tra poco.','it',0,0,0,0),(3227,'Errore nella generazione dell\'immagine.','it',0,0,0,0),(3228,'Impossibile generare l\'immagine derivata nel percorso %path.','it',0,0,0,0),(3229,'Impossibile creare la directory per lo stile: %directory','it',0,0,0,0),(3230,'Il file dell\'immagine in cache %destination esiste già. Potrebbe dipendere da problemi con la configurazione di riscrittura URL.','it',0,0,0,0),(3231,'Genera lo stile per le immagini','it',0,0,0,0),(3232,'Stili per le immagini','it',0,0,0,0),(3233,'Configura gli stili che possono essere usati per ridimensionare o ritoccare le immagini durante la visualizzazione.','it',0,0,0,0),(3234,'Elenca gli stili immagine attualmente presenti sul sito','it',0,0,0,0),(3235,'Aggiungi stile','it',0,0,0,0),(3236,'Aggiungi un nuovo stile immagine.','it',0,0,0,0),(3237,'Configura uno stile per le immagini.','it',0,0,0,0),(3238,'Elimina uno stile immagine','it',0,0,0,0),(3239,'Ripristina stile','it',0,0,0,0),(3240,'Ripristina uno stile per le immagini.','it',0,0,0,0),(3241,'Modifica effetto immagine','it',0,0,0,0),(3242,'Elimina effetto immagine','it',0,0,0,0),(3243,'Aggiungi effetto immagine','it',0,0,0,0),(3244,'Aggiungi un nuovo effetto ad uno stile.','it',0,0,0,0),(3245,'Fornisce strumenti per manipolare le immagini','it',0,0,0,0),(3246,'Utilizzare la sezione <em>Lingue personalizzate</em> qui sotto se la lingua richiesta non appare in questa lista.','it',0,0,0,0),(3247,'Codice della lingua per il prefisso del percorso','it',0,0,0,0),(3248,'Il codice della lingua o altro testo personalizzato da utilizzare come prefisso del percorso per il rilevamento della lingua, se le impostazioni per il <em>rilevamento e selezione</em> utilizzano prefissi di percorso negli URL. Questo valore può essere lasciato vuoto per la lingua predefinita. <strong>La modifica di queste impostazioni può invalidare le URL esistenti. Utilizzare con cautela nei siti in produzione.</strong> Ad esempio: se si specifica \"deutsch\" come prefisso di percorso per la lingua tedesca, gli URL risultanti saranno del tipo \"example.com/deutsch/contact\".','it',0,0,0,0),(3249,'Metodo di rilevamento','it',0,0,0,0),(3250,'Parte dell\'URL che determina la lingua','it',0,0,0,0),(3251,'<em>Prefisso del percorso</em>: URL come http://example.com/de/contact impostano la lingua tedesca (de). <em>Dominio</em>: URL come http://de.example.com/contact impostano la lingua tedesca. <strong>Attenzione: la modifica di queste impostazioni può invalidare gli URL in ingresso. Usare con cautela nei siti in produzione.</strong>','it',0,0,0,0),(3252,'Parametro di richiesta/sessione','it',0,0,0,0),(3253,'Nome del parametro di richiesta/sessione utilizzato per la selezione della lingua.','it',0,0,0,0),(3254,'Filtra le stringhe traducibili','it',0,0,0,0),(3255,'Tipo di data','it',0,0,0,0),(3256,'Vuoi veramente ripristinare i formati della data per la lingua %language ai valori predefiniti?','it',0,0,0,0),(3257,'Il ripristino rimuoverà tutti i formati della data personalizzati per questa lingua. L\'operazione non è reversibile.','it',0,0,0,0),(3258,'Il modulo Locale permette di presentare il tuo sito Drupal in altre lingue oltre l\'inglese predefinito. Il modulo Locale mantiene un database di traduzioni ed esamina il testo prima che sia visualizzato. Quando una traduzione del testo è disponibile nella lingua da visualizzare, la traduzione viene visualizzata sostituendo il testo originale. Quando una traduzione non è disponibile, il testo originale viene visualizzato e successivamente salvato per revisione da parte un traduttore. Per ulteriori informazioni consultare il manuale online per il <a href=\"@locale\">modulo Locale</a>.','it',0,0,0,0),(3259,'Traduzione del testo dell\'interfaccia','it',0,0,0,0),(3260,'Traduzioni del testo dell\'interfaccia di Drupal possono essere fornite da:','it',0,0,0,0),(3261,'Tradurre direttamente dal sito, utilizzando <a href=\'@translate\'>l\'interfaccia di traduzione</a> integrata nel modulo Locale.','it',0,0,0,0),(3262,'Importazione di file da una raccolta di traduzioni esistenti, anche noto come un pacchetto di traduzione. Un pacchetto di traduzione permette la visualizzazione di una versione specifica di Drupal in una lingua specifica, e contiene file in formato Gettext Portable Object (<em>.po</em>). Sebbene non tutte le lingue siano disponibili per tutte le  versioni di Drupal, pacchetti di traduzione per molte lingue sono disponibili per il download alla <a href=\"@translations\">pagina delle traduzioni di Drupal</a>.','it',0,0,0,0),(3263,'Se un pacchetto di traduzione esistente non soddisfa le esigenze del sito, i file Gettext Portable Object (<em>.po</em>) all\'interno del pacchetto possono essere modificati o si possono creare nuovi file <em>.po</em> utilizzando un editor Gettext. La <a href=\"@import\">funzione di importazione</a> del modulo Locale permette di aggiungere al vostro sito le stringhe tradotte a partire da file <em>.po</em> nuovi o modificati. La <a href=\"@export\">funzione di esportazione</a> del modulo Locale genera file da stringhe tradotte del tuo sito che possono essere condivise con altri o modificate offline con un editor di traduzione Gettext.','it',0,0,0,0),(3264,'Configurazione di un sito multilingue','it',0,0,0,0),(3265,'La negoziazione della lingua permette al tuo sito di cambiare automaticamente la lingua in base al dominio o al percorso utilizzato per ogni richiesta. Gli utenti possono (facoltativamente) selezionare la lingua preferita alla pagina del proprio <em>profilo</em>  e il sito può essere configurato per rispettare le impostazioni della lingua preferita del browser web del visitatore. Il contenuto del sito può essere tradotto con il <a href=\'@content-help\'>modulo Content translation< a>.','it',0,0,0,0),(3266,'Quando sono abilitate più lingue, l\'interfaccia del sito può essere tradotta, gli utenti registrati possono selezionare la lingua di preferenza e gli autori possono assegnare un linguaggio specifico ai contenuti. <a href=\"@translations\">Scarica traduzioni aggiuntive</a> da Drupal.org.','it',0,0,0,0),(3267,'Aggiungi una lingua al sito. Se la lingua desiderata non è disponibile nell\'elenco a discesa <em>nome lungua</em>, fare clic su <em>Lingua personalizzata</em> e fornire un codice di lingua e altri dettagli manualmente. Assicurati di inserire un codice lingua standard, in quanto questo codice può essere utilizzato dai browser per stabilire il linguaggio appropriato per la visualizzazione.','it',0,0,0,0),(3268,'Determina la lingua a partire da un parametro della richiesta o della sessione. Ad esempio: \"http://example.com?language=de\" imposta la lingua a tedesco sulla base del codice \"de\" all\'interno del parametro \"language\".','it',0,0,0,0),(3269,'Vedere la pagina delle <a href=\"@languages\">Lingue</a> per maggiori informazioni su come aggiungere il supporto per altre lingue.','it',0,0,0,0),(3270,'Da questa pagina è possibile importare le stringhe tradotte contenute in un file Gettext Portable Object (<em>.po</em>). I file <em>.po</em> sono generalmente distribuiti come parte di un pacchetto di traduzione (ogni pacchetto di traduzione può contenere diversi file <em>.po</em>). Alcuni file <em>.po</em> potrebbero dover essere importati dopo l\'editing offline in un editor Gettext. L\'importazione di un file <em>.po</em>può essere un processo lungo.','it',0,0,0,0),(3271,'Questa pagina consente ad un traduttore di cercare specifiche stringhe tradotte o non tradotte ed è utilizzata durante la creazione o la modifica di traduzioni. (Nota: per le attività di traduzione che coinvolgono molte stringhe, può essere più conveniente <a href=\"@export\">esportare</a> le stringhe e poi modificarle usando un editor di traduzione Gettext). Si può limitare la ricerca a stringhe contenute in un gruppo di testo specifico, o a stringhe in una lingua specifica.','it',0,0,0,0),(3272,'Amministra lingue','it',0,0,0,0),(3273,'Traduci testo interfaccia','it',0,0,0,0),(3274,'Preferenza del metodo di rilevamento della lingua per il contenuto. Se esiste una versione del contenuto per la lingua rilevata, verrà mostrata invece di quella predefinita.','it',0,0,0,0),(3275,'Ordinamento dei metodi di rilevamento della lingua per l\'interfaccia utente. Solo i testi per cui è disponibile una traduzione saranno mostrati nella lingua rilevata, per gli altri verrà mostrato il testo originale.','it',0,0,0,0),(3276,'Definisci la lingua corrente sulla base dell\'URL (prefisso di percorso o nome dominio).','it',0,0,0,0),(3277,'Definisci la lingua corrente sulla base dei parametri di richiesta/sessione.','it',0,0,0,0),(3278,'Segui le preferenze degli utenti sulla lingua.','it',0,0,0,0),(3279,'Definisci la lingua corrente sulla base delle impostazioni del browser.','it',0,0,0,0),(3280,'Selettore della lingua (@type)','it',0,0,0,0),(3281,'Rilevamento e selezione','it',0,0,0,0),(3282,'Configurazione del rilevamento automatico della lingua attraverso l\'URL','it',0,0,0,0),(3283,'Configurazione del rilevamento automatico della lingua attraverso i dati di sessione','it',0,0,0,0),(3284,'Localizza','it',0,0,0,0),(3285,'Localizza i formati delle date','it',0,0,0,0),(3286,'Ripristina i formati della data','it',0,0,0,0),(3287,'Azzera i formati della data localizzati ripristinando i formati globali predefiniti','it',0,0,0,0),(3288,'Gennaio','it',0,0,0,0),(3289,'Febbraio','it',0,0,0,0),(3290,'Marzo','it',0,0,0,0),(3291,'Aprile','it',0,0,0,0),(3292,'Maggio','it',0,0,0,0),(3293,'Giugno','it',0,0,0,0),(3294,'Luglio','it',0,0,0,0),(3295,'Agosto','it',0,0,0,0),(3296,'Settembre','it',0,0,0,0),(3297,'Ottobre','it',0,0,0,0),(3298,'Novembre','it',0,0,0,0),(3299,'Dicembre','it',0,0,0,0),(3300,'aggiungi link','it',0,0,0,0),(3301,'Non ci sono ancora voci nel menu. <a href=\"@link\">Aggiungi voce</a>.','it',0,0,0,0),(3302,'Il testo da utilizzare nel menu per questo link.','it',0,0,0,0),(3303,'Il percorso per questa voce del menu. Può essere un percorso interno di Drupal come %add-node o un URL esterno come %drupal. Usare %front per inserire un link alla prima pagina.','it',0,0,0,0),(3304,'Le voci di menu non attivate non saranno visibili in alcun menu.','it',0,0,0,0),(3305,'Mostra figli','it',0,0,0,0),(3306,'Quando selezionato e se la voce del menu ha dei figli, questi saranno sempre mostrati.','it',0,0,0,0),(3307,'Link padre','it',0,0,0,0),(3308,'La massima profondità per un link e i suoi link figli è prefissata a !maxdepth. Alcune voci del menu potranno non essere disponibili come genitore poiché eccederebbero questo limite.','it',0,0,0,0),(3309,'Facoltativo. Nel menu, le voci più pesanti affonderanno e le più leggere verranno posizionate più vicino alla cima.','it',0,0,0,0),(3310,'Sei sicuro di voler eliminare la voce del menu personalizzata %item?','it',0,0,0,0),(3311,'Il link di menu %title è stato rimosso.','it',0,0,0,0),(3312,'Sei sicuro di voler ripristinare la voce %item ai valori predefiniti?','it',0,0,0,0),(3313,'La voce del menu è stata ripristinata alle sue impostazioni predefinite.','it',0,0,0,0),(3314,'Nessun link Principale','it',0,0,0,0),(3315,'Origine dei link Principali','it',0,0,0,0),(3316,'Seleziona il menu da visualizzare per i link principali (generalmente nella parte alta della pagina).','it',0,0,0,0),(3317,'Nessun collegamento Secondario','it',0,0,0,0),(3318,'Origine dei link Secondari','it',0,0,0,0),(3319,'Selezionare l\'origine per i link secondari. Un\'opzione avanzata permette di utilizzare la stessa origine sia per i link principali (attualmente %principale) che per i link secondari: se il tuo menu di origine ha due livelli di gerarchia, il primo livello di collegamenti apparirà nei link principali, ed i collegamenti figli del collegamento attivo appariranno nei link secondari.','it',0,0,0,0),(3320,'Il menu personalizzato %title e tutti i suoi collegamenti sono stati eliminati.','it',0,0,0,0),(3321,'La voce di menu %title è stata eliminata.','it',0,0,0,0),(3322,'<strong>Attenzione:</strong> Vi è al momento 1 voce del menu in  %title. Sarà eliminata (le voci di sistema saranno ripristinate).','it',0,0,0,0),(3323,'<strong>Attenzione:</strong> Vi sono al momento @count voci del menu in  %title. Saranno eliminate (le voci di sistema saranno ripristinate).','it',3322,1,0,0),(3324,'Gestire i menu','it',0,0,0,0),(3325,'Gli utenti con permesso <em>Amministra i menu e le voci dei menu</em> possono aggiungere, modificare ed eliminare i menu personalizzati nella <a href=\"@menu\">pagina di amministrazione Menu</a>. I menu personalizzati possono essere menu speciali del sito, menu di link esterni, o qualsiasi combinazione di collegamenti interni ed esterni. Si può creare un numero illimitato di menu aggiuntivi, ognuno dei quali avrà automaticamente un blocco associato. Selezionando <em>elenco voci</em>, è possibile aggiungere, modificare o eliminare le voci di uno specifico menu. La pagina con l\'elenco delle voci fornisce una interfaccia drag-and-drop per controllare l\'ordine delle voci e creare una gerarchia all\'interno del menu.','it',0,0,0,0),(3326,'Visualizzare i menu','it',0,0,0,0),(3327,'Dopo aver creato un menu, devi attivarlo e posizionare il blocco relativo usando la <a href=\"@blocks\">pagina di amministrazione Blocchi</a>.','it',0,0,0,0),(3328,'Puoi attivare il blocco appena creato per questo menu alla <a href=\"@blocks\">pagina di amministrazione Blocchi</a>.','it',0,0,0,0),(3329,'Ogni menu ha un blocco corrispondente che può essere gestito sulla <a href=\"@blocks\">pagina di amministrazione blocchi</a>.','it',0,0,0,0),(3330,'Amministra i menu e le voci dei menu','it',0,0,0,0),(3331,'Fornisce una voce del menu','it',0,0,0,0),(3332,'Le voci del menu con un peso minore vengono visualizzate prima delle voci con un peso maggiore.','it',0,0,0,0),(3333,'Menu disponibili','it',0,0,0,0),(3334,'I menu a cui si possono aggiungere voci da questo tipo di contenuto.','it',0,0,0,0),(3335,'Voce del menu genitore predefinita','it',0,0,0,0),(3336,'Seleziona la voce del menu da usare come genitore predefinito delle nuove voci create durante la modifica dei contenuti.','it',0,0,0,0),(3337,'Aggiungi nuovi menu al tuo sito, modifica i menu esistenti, rinomina e riorganizza le voci del menu.','it',0,0,0,0),(3338,'Voci del menu genitore','it',0,0,0,0),(3339,'Modifica voce del menu','it',0,0,0,0),(3340,'Ripristina voce del menu','it',0,0,0,0),(3341,'Elimina voce del menu','it',0,0,0,0),(3342,'Il menu <em>Navigazione</em> contiene collegamenti dedicati ai visitatori del sito. I collegamenti vengono aggiunti al menu <em>Navigazione</em> automaticamente da alcuni moduli.','it',0,0,0,0),(3343,'Il menu <em>Utente</em> contiene collegamenti relativi al profilo utente, così come il collegamento per la disconnessione.','it',0,0,0,0),(3344,'Il menu <em>Gestione</em> contiene link alle operazioni di amministrazione.','it',0,0,0,0),(3345,'Il <em>Menu principale</em> è usato in molti siti per elencare le sezioni principali del sito, spesso disposto in una barra orizzontale in alto.','it',0,0,0,0),(3346,'gestisci la visualizzazione','it',0,0,0,0),(3347,'Non ci sono tipi di contenuto disponibili. <a href=\"@link\">Aggiungi un tipo di contenuto</a>.','it',0,0,0,0),(3348,'Il nome leggibile di questo tipo di contenuto. Questo testo verrà visualizzato nell\'elenco visibile alla pagina <em>Aggiungi contenuto</em>. Si consiglia di usare nomi che inizino con una lettera maiuscola e contengano solo lettere, numeri e spazi. Questo nome deve essere univoco.','it',0,0,0,0),(3349,'Descrivere il tipo di contenuto. Questo testo verrà mostrato nella pagina <em>Aggiungi nuovo contenuto</em>.','it',0,0,0,0),(3350,'Visualizza un\'anteprima prima di salvare il contenuto','it',0,0,0,0),(3351,'Questo testo verrà visualizzato in cima alla pagina durante la creazione o la modifica di contenuti di questo tipo.','it',0,0,0,0),(3352,'Gli utenti con il permesso <em>Amministra i contenuti</em> potranno aggirare queste impostazioni.','it',0,0,0,0),(3353,'Mostra informazioni su autore e data.','it',0,0,0,0),(3354,'Verranno visualizzati il nome utente dell\'autore e la data di pubblicazione.','it',0,0,0,0),(3355,'Nome ad uso interno non valido. Inserisci un nome diverso da %invalid.','it',0,0,0,0),(3356,'Il tipo di contenuto %type è utilizzato da 1 contenuto sul tuo sito. Se rimuovi questo tipo di contenuto, non potrai più modificare i contenuti di tipo %type che potranno essere visualizzati in maniera scorretta.','it',0,0,0,0),(3357,'Il tipo di contenuto %type è utilizzato da @count contenuti sul tuo sito. Se rimuovi questo tipo di contenuto, non potrai più modificare i contenuti di tipo %type che potranno essere visualizzati in maniera scorretta.','it',3356,1,0,0),(3358,'Pubblica i contenuti selezionati','it',0,0,0,0),(3359,'Rimuovi dalla pubblicazione i contenuti selezionati','it',0,0,0,0),(3360,'Promozione in prima pagina dei contenuti selezionati','it',0,0,0,0),(3361,'Rimuovi i contenuti selezionati dalla prima pagina','it',0,0,0,0),(3362,'Posizionamento dei contenuti selezionati in testa agli elenchi','it',0,0,0,0),(3363,'Rimozione dei contenuti selezionati dalla testa degli elenchi','it',0,0,0,0),(3364,'Eliminazione dei contenuti selezionati','it',0,0,0,0),(3365,'Rimossi @count messaggi.','it',0,0,0,0),(3366,'Si vuole davvero eliminare questo elemento?','it',0,0,0,0),(3367,'Si vogliono davvero eliminare questi elementi?','it',3366,1,0,0),(3368,'<em>Modifica @type</em> @title','it',0,0,0,0),(3369,'Non hai ancora creato nessun tipo di contenuto. Vai all pagina di <a href=\"@create-content\">creazione dei tipi di contenuto</a> per creare un nuovo tipo di contenuto.','it',0,0,0,0),(3370,'Messaggio di revisione per il log','it',0,0,0,0),(3371,'Fornisci una spiegazione delle modifiche effettuate. Aiuterà altri autori a comprendere le tue motivazioni.','it',0,0,0,0),(3372,'Simboli per i singoli elementi di contenuto o \"nodi\".','it',0,0,0,0),(3373,'L\'ID univoco del contenuto, o \"nodo\".','it',0,0,0,0),(3374,'Il corpo principale del testo in un nodo.','it',0,0,0,0),(3375,'Il riassunto del corpo principale del testo di un nodo.','it',0,0,0,0),(3376,'I permessi di accesso al contenuto devono essere ricostruiti. <a href=\"@node_access_rebuild\">Ricostruisci permessi</a>.','it',0,0,0,0),(3377,'Il modulo Node gestisce la creazione, modifica, eliminazione, impostazioni e visualizzazione dei contenuti principali del sito. I contenuti gestiti dal modulo Node sono solitamente visualizzati come pagine nel tuo sito e comprendono un titolo, meta-dati (autore, data di creazione, tipo di contenuto ecc.) e campi opzionali che possono contenere testo o altri dati (i campi sono gestiti dal <a href=\"@field\">modulo Field</a>). Per maggiori informazioni consulta la guida in linea del <a href=\"@node\">modulo Node</a>.','it',0,0,0,0),(3378,'Creazione contenuto','it',0,0,0,0),(3379,'Quando viene creato un nuovo contenuto, il modulo Node registra le informazioni base del contenuto, incluso l\'autore, la data di creazione e il <a href=\"@content-type\">tipo di contenuto</a>. Inoltre gestisce le <em>opzioni di pubblicazione</em> che definiscono se il contenuto è pubblicato, promosso sulla prima pagina o sempre in cima agli elenchi. Le impostazioni predefinite possono essere configurate per ogni <a href=\"@content-type\">tipo di contenuto</a> del sito.','it',0,0,0,0),(3380,'Creazione di tipi di contenuto personalizzati','it',0,0,0,0),(3381,'Il modulo Node concede agli utenti con il permesso <em>Amministra i tipi di contenuto</em> la facoltà di <a href=\"@content-new\">creare nuovi tipi di contenuto</a> in aggiunta a quelli già configurati. Creare tipi di contenuto personalizzati offre la flessibilità di aggiungere <a href=\"@field\">campi</a> e configurare le impostazioni predefinite che meglio si addicono ai diversi tipi di contenuto.','it',0,0,0,0),(3382,'Amministrazione contenuto','it',0,0,0,0),(3383,'La <a href=\"@content\">pagina di amministrazione Contenuti</a> ti permette di rivedere e gestire in massa i contenuti del tuo sito.','it',0,0,0,0),(3384,'Creazione revisioni','it',0,0,0,0),(3385,'Il modulo Node permette anche di creare più versioni di ogni contenuto e ripristiare le precedenti versioni usando la configurazione delle <em>informazioni sulla revisione</em>.','it',0,0,0,0),(3386,'Permessi utente','it',0,0,0,0),(3387,'Il modulo Node rende disponibili numerosi permessi per ogni tipo di contenuto che possono essere configurati in base al ruolo nella <a href=\"@permissions\">pagina dei permessi</a>.','it',0,0,0,0),(3388,'A ciascun tipo di contenuto possono essere assegnati differenti campi, comportamenti e permessi.','it',0,0,0,0),(3389,'I contenuti possono essere visualizzati in diverse modalità: Anteprima, visualizzazione completa, formato per la stampa, feed RSS, ecc. L\'<em>Anteprima</em> o riassunto è un formato breve generalmente utilizzato quando si elencano più contenuti in una sola pagina. La <em>visualizzazione completa</em> viene utilizzata per mostrare il singolo contenuto nella propria pagina.','it',0,0,0,0),(3390,'Da qui è possibile definire quali campi saranno visibili all\'utente e quali saranno nascosti per ciascuna modalità di visualizzazione dei contenuti di tipo %type; è inoltre possibile impostare ome vengono mostrati i singoli campi per ciascuna modalità di visualizzazione.','it',0,0,0,0),(3391,'Le revisioni permettono di tenere traccia delle differenze tra le diverse versioni dei tuoi contenuti, e di ripristinare le vecchie versioni.','it',0,0,0,0),(3392,'Contenuto completo','it',0,0,0,0),(3393,'Risultato della ricerca','it',0,0,0,0),(3394,'Il contenuto di questa pagina è stato modificato da un altro utente oppure hai già salvato le modifiche inviando questo form. I cambiamenti apportati non possono essere salvati.','it',0,0,0,0),(3395,'Amministra i tipi di contenuto','it',0,0,0,0),(3396,'Attenzione: garantire esclusivamente agli utenti fidati; questo permesso ha implicazioni per la sicurezza del sito.','it',0,0,0,0),(3397,'Visualizza contenuti pubblicati','it',0,0,0,0),(3398,'Accede al riepilogo dei contenuti del sito','it',0,0,0,0),(3399,'Aggira il controllo di accesso ai contenuti','it',0,0,0,0),(3400,'Visualizza revisioni','it',0,0,0,0),(3401,'Ripristina revisioni','it',0,0,0,0),(3402,'Elimina revisioni','it',0,0,0,0),(3403,'Visualizza i propri contenuti non pubblicati','it',0,0,0,0),(3404,'Il contenuto è sempre in cima agli elenchi','it',0,0,0,0),(3405,'Il contenuto è promosso sulla prima pagina','it',0,0,0,0),(3406,'Contenuti recenti','it',0,0,0,0),(3407,'Numero di contenuti recenti da mostrare','it',0,0,0,0),(3408,'Mostra il blocco per specifici tipi di contenuto','it',0,0,0,0),(3409,'Mostra questo blocco solo sulle pagine che visualizzano contenuti appartenenti ai tipi specificati. Se non viene selezionato alcun tipo di contenuto, non vi saranno restrizioni di visibilità del blocco per tipo di contenuto.','it',0,0,0,0),(3410,'Benvenuto su @site-name','it',0,0,0,0),(3411,'Non è stato creato alcun contenuto per la prima pagina.','it',0,0,0,0),(3412,'Rimuovere contenuto dalla pubblicazione','it',0,0,0,0),(3413,'Posizionamento del contenuto in testa agli elenchi','it',0,0,0,0),(3414,'Rimuovere il contenuto dalla cima delle liste','it',0,0,0,0),(3415,'Promozione in prima pagina del contenuto','it',0,0,0,0),(3416,'Rimozione contenuto dalla prima pagina','it',0,0,0,0),(3417,'Cambiare l\'autore del contenuto','it',0,0,0,0),(3418,'Salva contenuto','it',0,0,0,0),(3419,'Rimuovere dalla pubblicazione contenuti contenenti parole chiave','it',0,0,0,0),(3420,'Il contenuto sarà rimosso dalla pubblicazione se contiene almeno una delle frasi elencate qui sopra. Utilizzare un elenco di stringhe con distinzione tra maiuscole e minuscole separate da virgola. Esempi: funny, bungee jumping, \"Company, Inc.\"','it',0,0,0,0),(3421,'Se si rilevano problemi con i permessi di accesso al contenuto, potrebbe essere necessario ricostruire la cache dei permessi. La ricostruzione rimuove tutti i privilegi di accesso e li sostituisce con permessi basati sui moduli e le impostazioni correnti. Se sono presenti molte impostazioni di autorizzazione o contenuti complessi la ricostruzione potrebbe richiedere alcuni minuti. Dopo il completamento della ricostruzione, l\'accesso ai contenuti sarà automaticamente regolato secondo i nuovi permessi.','it',0,0,0,0),(3422,'Permessi di accesso ai nodi','it',0,0,0,0),(3423,'Un permesso in uso','it',0,0,0,0),(3424,'@count permessi in uso','it',3423,1,0,0),(3425,'Trova e gestisci contenuti.','it',0,0,0,0),(3426,'Gestisci i tipi di contenuto, inclusi lo stato predefinito, la promozione in prima pagina, le impostazioni dei commenti, ecc.','it',0,0,0,0),(3427,'Modifica il tipo di contenuto','it',0,0,0,0),(3428,'Non mostrare le informazioni di pubblicazione','it',0,0,0,0),(3429,'Questo sito supporta <a href=\"@openid-net\">OpenID</a>, un modo sicuro per accedere a molti siti utilizzando un unico nome utente e password. OpenID può ridurre la necessità di gestire molti nomi utente e password per siti diversi.','it',0,0,0,0),(3430,'Se hai già un OpenID, inserisci l\'URL del server OpenID qui sotto (ad esempio myusername.openidprovider.com). La prossima volta che accedi, sarai in grado di utilizzare questo URL invece di una normale combinazione di username e password. È possibile inserire più server OpenID, basta continuare ad aggiungerli qui.','it',0,0,0,0),(3431,'Il modulo OpenID permette agli utenti di accedere al sito tramite il servizio di single sign on OpenID. <a href=\"@openid-net\">OpenID</a> è un metodo sicuro per l\'accesso a molti siti web con un singolo nome utente e password. Non richiede software speciale, e non condivide le password con nessun altro sito al quale è associato, incluso il sito a cui si sta accedendo. Il vantaggio principale per gli utenti è che possono avere un\'unica password che possono utilizzare su molti siti web. Questo significa che possono facilmente aggiornare la propria password da una postazione centralizzata, piuttosto che dover cambiare decine di password individuali. Per ulteriori informazioni, consultare il manuale online per il <a href=\"@handbook\">modulo OpenID</a>.','it',0,0,0,0),(3432,'Accesso con OpenID','it',0,0,0,0),(3433,'Per accedere usando OpenID, un utente deve avere già un profilo OpenID. Gli utenti possono creare profili utente sul sito utilizzando il proprio OpenID, assegnare uno o più OpenID ad un profilo esistente, e accedere usando OpenID. Questo abbassa le barriere per la registrazione, cosa che aiuta ad accrescere la base di utenti, e offre vantaggi e sicurezza agli utenti stessi. Dal momento che OpenID non può garantire la legittimità di un utente, la verifica dell\'e-mail rimane necessaria. All\'accesso, viene proposto agli utenti l\'inserimento del proprio URL OpenID, che assomiglia a <em>nomeutente.openidprovider.com</em>. Il sito comunicherà poi con il server OpenID, richiedendo la verifica dell\'identità dell\'utente. Se l\'utente ha già effettuato l\'accesso al proprio server OpenID, il server risponderà al tuo sito, dando conferma per quell\'utente. Se non ha invece effettuato l\'accesso, il server OpenID chiederà all\'utente l\'inserimento della password. In nessun momento il sito registrerà nel log la password OpenID dell\'utente.','it',0,0,0,0),(3434,'Una volta verificato il tuo indirizzo e-mail, potrai effettuare l\'accesso mediante OpenID.','it',0,0,0,0),(3435,'Spiacenti, questo non è un OpenID valido. Assicurati di aver inserito il tuo ID correttamente.','it',0,0,0,0),(3436,'Completa la registrazione compilando il form qui sotto. Se hai già un profilo utente, puoi <a href=\"@login\">accedere</a> ora e aggiungere il tuo OpenID nella sezione \"Il mio profilo\"','it',0,0,0,0),(3437,'La registrazione del profilo utilizzando le informazioni fornite dal tuo provider OpenID è fallita per le ragioni elencate qui sotto. Completa la registrazione compilando il form qui sotto. Se hai già un profilo, puoi <a href=\"@login\">accedere</a> ora e aggiungere il tuo OpenID nella sezione \"Il mio profilo\"','it',0,0,0,0),(3438,'Il modulo Overlay mostra le pagine di amministrazione in una finestra modale sovrapposta alla pagina del sito da cui è stato selezionato un link amministrativo invece di sostituire quest\'ultima. Usa il link \"chiudi\" presente sull\'overlay per tornare alla pagina del sito da cui è stato selezionato il link. Per maggiori informazioni, vedere il manuale online alla sezione relativa al <a href=\"@overlay\">modulo Overlay</a>.','it',0,0,0,0),(3439,'Accede all\'overlay di amministrazione','it',0,0,0,0),(3440,'Visualizza le pagine di amministrazione nell\'overlay.','it',0,0,0,0),(3441,'Visualizza l\'interfaccia di amministrazione di Drupal in una finestra modale (overlay).','it',0,0,0,0),(3442,'Specifica il percorso esistente per il quale vuoi creare un alias. Per esempio: node/28, forum/1, taxonomy/term/1.','it',0,0,0,0),(3443,'Il modulo Path consente di specificare un alias o URL personalizzato, per qualsiasi percorso interno del sito. Gli alias non devono essere confusi con URL redirect, che consentono invece di redirigere un URL modificato o inattivo verso una nuova destinazione. Oltre a rendere gli URL più leggibili, gli alias aiutano i motori di ricerca ad indicizzare i contenuti in modo più efficace. Si possono usare alias multipli per un singolo percorso interno. Per automatizzare la creazione di alias per i percorsi, è possibile installare il modulo aggiuntivo<a href=\"@pathauto\">Pathauto</a>. Per ulteriori informazioni, consultare il manuale online per il modulo <a href=\"@path\">Path</a>.','it',0,0,0,0),(3444,'Creazione degli alias','it',0,0,0,0),(3445,'Gli utenti con <a href=\"@permissions\">permessi</a> adeguati possono creare gli alias nella sezione <em>Impostazioni percorso URL</em> mentre creano o modificano il contenuto. Alcuni esempi di alias sono: ','it',0,0,0,0),(3446,'alias <em>membro/maria-rossi</em> associato al percorso interno  <em>utente/123</em>','it',0,0,0,0),(3447,'alias <em>chi-siamo/team</em> associato al percorso interno <em>node/456</em>','it',0,0,0,0),(3448,'Gestione degli alias','it',0,0,0,0),(3449,'Il modulo Path fornisce un modo per cercare e visualizzare un <a href=\"@aliases\">elenco di tutti gli alias</a> che sono in uso nel tuo sito web. Gli alias possono essere aggiunti, modificati e cancellati attraverso questo elenco.','it',0,0,0,0),(3450,'Un alias definisce un nome differente per un percorso URL esistente – per esempio, l\'alias \'informazioni\' per il percorso URL \'node/1\'. Ogni percorso URL può avere più alias.','it',0,0,0,0),(3451,'Amministra gli alias URL','it',0,0,0,0),(3452,'Crea e modifica alias URL','it',0,0,0,0),(3453,'L\'alias è già in uso.','it',0,0,0,0),(3454,'Specificare opzionalmente un URL alternativo da cui è possibile accedere a questo contenuto. Utilizzare un percorso relativo e non aggiungere lo \"slash\" finale o l\'alias non funzionerà.','it',0,0,0,0),(3455,'Abilitazione dell\'esecuzione di codice PHP nei campi di testo','it',0,0,0,0),(3456,'Il modulo PHP filter permette agli utenti con i permessi appropriati di includere codice PHP personalizzato che sarà eseguito all\'atto della visualizzazione delle pagine del sito. Se da un lato questa funzione è uno strumento potente e flessibile quando usato da un utente affidabile con esperienza di PHP, dall\'altro rappresenta un notevole rischio per la sicurezza del sito quando utilizzato da un utente malintenzionato o inesperto. Anche un utente affidabile potrebbe accidentalmente compromettere il sito inserendo codice PHP errato o non corretto. Il permesso di utilizzo del filtro PHP dovrebbe essere concesso solo agli utenti più fidati; inoltre, tutto il codice PHP aggiunto attraverso il filtro dovrebbe essere esaminato attentamente prima dell\'utilizzo. <a href=\"@php-snippets\">Alcuni esempi di codice PHP</a> possono essere visualizzati su Drupal.org.','it',0,0,0,0),(3457,'Usa PHP per le impostazioni','it',0,0,0,0),(3458,'<p>Aggiungi un blocco personalizzato e chiamalo \"Benvenuto\". Imposta il formato del testo come \"codice PHP\" (o un altro formato che supporta l\'inserimento di codice PHP) e aggiungi la stringa seguente nel corpo del blocco:</p>\r\n<pre>\r\nprint t(\'Benvenuto visitatore! Grazie per la visita.\');\r\n</pre>','it',0,0,0,0),(3459,'<p>Per mostrare il nome di un utente registrato usa questo codice:</p>\r\n<pre>\r\nglobal $user;\r\nif ($user->uid) {\r\n  print t(\'Benvenuto @name! Grazie per la visita.\', array(\'@name\' => format_username($user)));\r\n}\r\nelse {\r\n  print t(\'Benvenuto visitatore! Grazie per la visita.\');\r\n}\r\n</pre>','it',0,0,0,0),(3460,'Il modulo PHP è stato disattivato. Tutti i contenuti esistenti che fanno uso del filtro PHP saranno da ora visibili come testo semplice. Questo può rappresentare un rischio per la sicurezza del sito in quanto può rivelare informazioni sensibili eventualmente utilizzate nel codice PHP.','it',0,0,0,0),(3461,'Il modulo Poll può essere usato per creare semplici sondaggi o questionari e visualizzarne i risultati cumulativi. Un sondaggio è un buon modo per ricevere commenti dagli utenti del sito e dai membri della comunità. Per ulteriori informazioni, consultare il manuale online per il <a href=\"@poll\">modulo Poll</a>.','it',0,0,0,0),(3462,'Creare un sondaggio','it',0,0,0,0),(3463,'Gli utenti possono creare un sondaggio facendo clic su \"Sondaggio\" alla pagina <a href=\"@add-content\">Aggiungi contenuto</a> e inserendo la domanda da porre, le opzioni di risposta, attivando quindi il conteggio dei voti per ciascuna opzione. Possono inoltre essere specificati lo stato (chiuso o attivo) e la durata (periodo di tempo in cui il sondaggio rimane attivo) di ciascun sondaggio.','it',0,0,0,0),(3464,'Visualizzare i sondaggi','it',0,0,0,0),(3465,'Puoi visitare la pagina <a href=\"@poll\">Sondaggi</a> per vedere tutti i sondaggi in corso, o in alternativa puoi attivare il blocco <em>Sondaggio più recente</em> sulla <a href=\"@blocks\">pagina di amministrazione Blocchi</a>. Per votare o vedere i risultati di un sondaggio specifico, puoi cliccare sul sondaggio stesso.','it',0,0,0,0),(3466,'Vota i sondaggi','it',0,0,0,0),(3467,'Rimuovi e cambia i propri voti','it',0,0,0,0),(3468,'Il tuo voto è stato annullato.','it',0,0,0,0),(3469,'Per abilitare la navigazione per valore di questo campo, immettere un titolo per la pagina risultante. La parola <code>%value</code> verrà sostituita con il valore corrispondente. Un titolo d\'esempio potrebbe essere \"Persone il cui colore preferito è %value\". Valido solo per un campo pubblico.','it',0,0,0,0),(3470,'Per abilitare la navigazione per valore di questo campo, immettere un titolo per la pagina risultante. Un titolo d\'esempio potrebbe essere \"Persone che hanno un lavoro\". Valido solo per un campo pubblico.','it',0,0,0,0),(3471,'Il modulo Profile permette agli amministratori del sito di definire campi personalizzati (es. nazionalità, nome completo o età) per completare i profili degli utenti, visualizzabili nella pagina <a href=\"@user\">Profilo Utente</a>. Questo permetterà agli utenti del sito di condividere maggiori informazioni circa sé stessi, aiutando le comunità on-line ad organizzare gli utenti sulla base di specifiche informazioni. Per maggiori informazioni consulta il manuale on-line per il <a href=\"@profile\">modulo Profilo</a>','it',0,0,0,0),(3472,'Aggiunta di campi al profilo predefinito','it',0,0,0,0),(3473,'Per dare la possibilità agli utenti di inserire maggiori informazioni su se stessi, il modulo Profile consente di inserire campi aggiuntivi al profilo utente predefinito. Esempi di aggiunte comuni potrebbero essere <em>Luogo</em>, <em>Società</em>, <em>Età</em>, oppure <em>Su di me</em>.','it',0,0,0,0),(3474,'Pagine di informazioni sull\'utente','it',0,0,0,0),(3475,'Il modulo Profile fornisce links ad informazioni aggiuntive sugli utenti del sito. È possibile visualizzare sia una <a href=\"@profile\">pagina di elenco degli utenti</a> sia pagine più specifiche raggiungibili cliccando i campi collegati al profilo. Ad esempio, l\'elenco <a href=\"@profile-country\">persone che vivono in Canada</a> su Drupal.org visualizza tutti gli utenti che hanno inserito <em>Canada</em> nel campo <em>Paese</em> del loro profilo utente.','it',0,0,0,0),(3476,'Blocco informazioni autore','it',0,0,0,0),(3477,'Il <em>blocco informazioni Autore</em> è un blocco predefinito creato dal modulo Profile che può essere abilitato nella <a href=\"@blocks\">Pagina amministrazione blocchi</a>. Mostra ai visitatori del tuo sito informazioni sull\'autore della pagina che stanno leggendo.','it',0,0,0,0),(3478,'Questa pagina mostra un elenco di campi del profilo personalizzati esistenti da mostrare sulla pagina <em>Profilo utente</em>. Per inserire una struttura, campi simili o correlati possono essere piazzati in una categoria. Per aggiungere una nuova categoria (o modificarne una esistente), modifica un campo del profilo e fornisci un nuovo nome della categoria.','it',0,0,0,0),(3479,'Arricchisce il contenuto con metadati per consentire ad altre applicazioni (ad esempio motori di ricerca, aggregatori) di comprendere meglio le sue relazioni e gli attributi.','it',0,0,0,0),(3480,'I moduli di ricerca attivi sono stati modificati.','it',0,0,0,0),(3481,'Devi includere almeno una parola chiave con 1 o più caratteri.','it',0,0,0,0),(3482,'Devi includere almeno una parola chiave con @count o più caratteri..','it',3481,1,0,0),(3483,'Cercato %keys in %type.','it',0,0,0,0),(3484,'Il modulo Search permette di indicizzare e cercare i contenuti del sito tramite delle parole chiave esatte, oppure gli utenti attraverso il nome utente o l\'indirizzo di posta elettronica. Per maggiori informazioni consulta la guida in linea del <a href=\"@search-module\">modulo Search</a>.','it',0,0,0,0),(3485,'Cercare contenuti ed utenti','it',0,0,0,0),(3486,'Gli utenti con il permesso <em>Usa la ricerca</em> possono utilizzare il blocco di ricerca e la <a href=\"@search\">pagina di Ricerca</a>. Gli utenti con il permesso <em>Visualizza i contenuti pubblicati</em> possono effettuare ricerche nei contenuti contenenti determinate parole chiave. Gli utenti con il permesso <em>Visualizza i profili utente</em> possono effettuare ricerche sugli utenti tramite parola chiave che possono trovarsi ovunque all\'interno del nome utente, e gli utenti con il permesso <em>Amministra utenti</em> possono effettuare ricerche sugli utenti in base all\'indirizzo e-mail. Oltre a ciò, gli utenti con il permesso <em>Usa la ricerca avanzata</em> possono effettuare ricerche sui contenuti utilizzando metodi di ricerca e filtri più complessi, scegliendo l\'opzione <em>Ricerca avanzata</em> nella <a href=\"@search\">Pagina di ricerca</a>.','it',0,0,0,0),(3487,'Indicizzazione contenuto con cron','it',0,0,0,0),(3488,'Configurare le impostazioni per la ricerca','it',0,0,0,0),(3489,'Il comportamento della ricerca può essere personalizzato attraverso  le <a href=\"@searchsettings\">Impostazioni per la ricerca</a>. Utenti con il permesso <em>Amministra la ricerca</em> possono controllare voci come <em>Numero di elementi da indicizzare per ogni esecuzione di cron</em>, <em>Impostazioni di indicizzazione</em> (lunghezza delle parole), <em>Moduli di ricerca attivi</em>, e <em>Punteggio dei contenuti</em>, che rende possibile modificare la priorità con cui il contenuto ricercato è visualizzato nei risultati.','it',0,0,0,0),(3490,'Il modulo di ricerca include un  blocco <em>Form di ricerca</em> di base, che può essere attivato e configurato attraverso la <a href=\"@blocks\">pagina di amministrazione Blocchi</a>. Il blocco è visualizzato agli utenti con il permesso <em>Cerca contenuti</em>.','it',0,0,0,0),(3491,'Estensione del modulo di Ricerca','it',0,0,0,0),(3492,'Come impostazione predefinita, il modulo Search visualizza solo i risultati in cui compaiono le parole chiave esatte. Puoi modificare questa caratteristica installando un modulo di ricerca con derivati per la lingua desiderata (come <a href=\"http://drupal.org/project/porterstemmer\">Porter Stemmer</a> per l\'inglese americano), che accetta risultati con leggere modifiche del termine come cammino, camminare e camminavo. Un\'altra possibilità è utilizzare una tecnologia di terze parti per cercare anche parole derivate, come <a href=\"http://drupal.org/project/apachesolr\">Apache Solr</a> o <a href=\"http://drupal.org/project/sphinx\">Sphinx</a>. Questi ed altri <a href=\"@contrib-search\">moduli correlati alla ricerca</a> possono essere scaricati visitando il sito Drupal.org.','it',0,0,0,0),(3493,'<ul>\r\n<li>Controlla di non aver fatto errori di battitura</li>\r\n<li>Rimuovi le virgolette attorno alla frase per cercare ogni parola individualmente. <em>rimessa per bici</em> probabilmente visualizzerà più risultati rispetto a <em>&quot;rimessa per bici&quot;</em>.</li>\r\n<li>Prova ad allargare la ricerca inserendo <em>OR</em>. <em>rimessa OR bici</em> probabilmente visualizzerà più risultati rispetto a <em>rimessa per bici</em>.</li> </ul>','it',0,0,0,0),(3494,'Amministra la ricerca','it',0,0,0,0),(3495,'Usa la ricerca','it',0,0,0,0),(3496,'Usa la ricerca avanzata','it',0,0,0,0),(3497,'Configura le impostazioni di rilevanza per la ricerca ed altre opzioni di indicizzazione.','it',0,0,0,0),(3498,'Seleziona un gruppo di scorciatoie da utilizzare','it',0,0,0,0),(3499,'Seleziona un gruppo di scorciatoie per questo utente','it',0,0,0,0),(3500,'Stai ora utilizzando il nuovo gruppo di scorciatoie %set_name. Puoi modificarlo da questa pagina o <a href=\"@switch-url\">passare ad uno diverso.</a>','it',0,0,0,0),(3501,'L\'utente %user usa ora il gruppo di scorciatoie %set_name. Puoi modificarlo in questa pagina.','it',0,0,0,0),(3502,'Stai ora usando il gruppo di scorciatoie %set_name.','it',0,0,0,0),(3503,'L\'utente %user sta ora usando il gruppo di scorciatoie %set_name.','it',0,0,0,0),(3504,'Cambia gruppo','it',0,0,0,0),(3505,'Il gruppo di scorciatoie è stato aggiornato.','it',0,0,0,0),(3506,'Aggiungi nuova scorciatoia','it',0,0,0,0),(3507,'Modificare @shortcut','it',0,0,0,0),(3508,'Il nome della scorciatoia.','it',0,0,0,0),(3509,'Il percorso alla scorciatoia.','it',0,0,0,0),(3510,'Il collegamento deve corrispondere a un percorso valido sul sito.','it',0,0,0,0),(3511,'La scorciatoia @link è stata aggiornata.','it',0,0,0,0),(3512,'Scorciatoia per %title aggiunta.','it',0,0,0,0),(3513,'Sei sicuro di voler eliminare la scorciatoia %title?','it',0,0,0,0),(3514,'La scorciatoia %title è stata eliminata.','it',0,0,0,0),(3515,'Impossibile aggiungere una scorciatoia per %title.','it',0,0,0,0),(3516,'Aggiungere e rimuovere scorciatoie','it',0,0,0,0),(3517,'Visualizzare le scorciatoie','it',0,0,0,0),(3518,'E\' possibile visualizzare le scorciatoie attivando il blocco Scorciatoie nella <a href=\"@blocks\">pagina di amministrazione Blocchi</a>. Anche alcuni moduli di amministrazione visualizzano le scorciatoie; ad esempio, il modulo <a href=\"@toolbar-help\">Toolbar</a> li visualizza vicino alla parte alta della pagina, insieme al link <em>Modifica scorciatoie</em>.','it',0,0,0,0),(3519,'Amministrare le scorciatoie','it',0,0,0,0),(3520,'Set di scorciatoie %shortcut_set','it',0,0,0,0),(3521,'Aggiungi al set di scorciatoie %shortcut_set','it',0,0,0,0),(3522,'Aggiungi alle scorciatoie','it',0,0,0,0),(3523,'Rimuovi dal set di scorciatoie %shortcut_set','it',0,0,0,0),(3524,'Rimuovi dalle scorciatoie','it',0,0,0,0),(3525,'Modifica scorciatoie','it',0,0,0,0),(3526,'Aggiungi scorciatoia','it',0,0,0,0),(3527,'Modifica scorciatoia','it',0,0,0,0),(3528,'Elimina scorciatoia','it',0,0,0,0),(3529,'Permette agli utenti di gestire elenchi personalizzati di scorciatoie','it',0,0,0,0),(3530,'Il valore @value è TRUE.','it',0,0,0,0),(3531,'Il valore @value è FALSE.','it',0,0,0,0),(3532,'Il valore @value è NULL.','it',0,0,0,0),(3533,'Il valore @value non è NULL.','it',0,0,0,0),(3534,'Il valore @first è uguale al valore @second.','it',0,0,0,0),(3535,'Il valore @first non è uguale al valore @second.','it',0,0,0,0),(3536,'Il valore @first è identico al valore @second.','it',0,0,0,0),(3537,'Il valore @first non è identico al valore @second.','it',0,0,0,0),(3538,'Il test non si è concluso a causa di un errore critico.','it',0,0,0,0),(3539,'Collegamento con etichetta %label trovato.','it',0,0,0,0),(3540,'Collegamento con etichetta %label non trovato.','it',0,0,0,0),(3541,'Trovato collegamento contenente l\'attributo href %href.','it',0,0,0,0),(3542,'Non sono stato trovati collegamenti contenenti l\'attributo href %href.','it',0,0,0,0),(3543,'Collegamento %label (@url_target) cliccato da @url_before','it',0,0,0,0),(3544,'L\'opzione @option del campo @id è selezionata.','it',0,0,0,0),(3545,'L\'opzione @option del campo @id non è selezionata.','it',0,0,0,0),(3546,'Nelle impostazioni predefinite SimpleTest cancellerà i risultati dopo che sono stati visualizzati sulla pagina dei risultati; tuttavia, in alcuni casi può essere utile lasciare i risultati nel database. I risultati possono poi essere visualizzati alla pagina <em>admin/config/development/testing/[test_id]</em>. L\'ID di test può essere trovato nel database nella tabella simpletest, o monitorato quando si visualizzano i risultati per la prima volta. Da notare che alcuni moduli possono fornire ulteriori analisi o caratteristiche che richiedono di disattivare questa impostazione.','it',0,0,0,0),(3547,'Negoziazione GSS','it',0,0,0,0),(3548,'NTLM','it',0,0,0,0),(3549,'Qualsiasi sicuro','it',0,0,0,0),(3550,'Il modulo Testing fornisce un ambiente per l\'esecuzione di test automatici. Può essere utilizzato per verificare il funzionamento di Drupal prima e dopo qualsiasi modifica al codice, oppure può essere usato dagli sviluppatori per scrivere, ed eseguire test per i propri moduli. Per maggiori informazioni, consultare la voce <a href=\"@simpletest\">modulo Testing</a> sul manuale online.','it',0,0,0,0),(3551,'Esecuzione dei test','it',0,0,0,0),(3552,'Visitare la pagina di <a href=\"@admin-simpletest\">Testing</a> per visualizzare un elenco di test disponibili. Per testare in modo completo, selezionare <em>tutti</em> i test, o selezionarne singolarmente per effettuare test in modo più specifico. Da notare che completare tutti i test potrebbe richiedere parecchi minuti. Per maggiori informazioni sulla creazione e modifica di test, consultare la <a href=\"@simpletest-api\">Documentazione sulla Testing API</a> sul manuale di Drupal.','it',0,0,0,0),(3553,'Dopo l\'esecuzione dei test, verrà visualizzato un messaggio accanto a ogni gruppo di test che indica se i test all\'interno di esso sono stati superati, sono falliti, o hanno riscontrato delle eccezioni. Il risultato \"superato\" indica che il test ha restituito i risultati previsti, mentre \"fallito\" significa che non lo ha fatto. Un\'eccezione normalmente indica un errore al di fuori del test, come un avviso o una notifica di PHP. Quando si verificano errori o eccezioni, i risultati includeranno i dettagli dei test falliti o con eccezioni che saranno evidenziati in rosso o in rosa. È quindi possibile utilizzare questi risultati per ottimizzare il proprio codice e i propri test, fino a quando tutti i test saranno superati.','it',0,0,0,0),(3554,'Amministra i test','it',0,0,0,0),(3555,'L\'esecuzione del test è terminata in @elapsed.','it',0,0,0,0),(3556,'Usa il pulsante <em>Pulisci ambiente</em> per pulire file e tabelle temporanee.','it',0,0,0,0),(3557,'La funzionalità di test richiede che le restrizioni PHP <a href=\"@open_basedir-url\">open_basedir</a> siano disattivate. Controlla la configurazione del tuo server web o contatta il tuo servizio di hosting.','it',0,0,0,0),(3558,'Il framework di test non può essere installato perché la libreria PHP <a href=\"@curl_url\">cURL</a> non è disponibile.','it',0,0,0,0),(3559,'Il framework di test non può essere installato perché la l\'estensione PHP <a href=\"@hash_url\">hash</a> è disattivata.','it',0,0,0,0),(3560,'Restrizioni open_basedir di PHP','it',0,0,0,0),(3561,'sblocca indirizzo IP','it',0,0,0,0),(3562,'blocca indirizzo IP','it',0,0,0,0),(3563,'Il modulo Statistics mostra la frequenza di visualizzazione delle pagine del sito, chi le ha visitate, le pagine da cui provengono i visitatori (referrer URL), e quando sono state visualizzate. Queste statistiche sono utili per definire come i visitatori usano e navigano nel sito. Per maggiori informazioni, vedi la sezione del manuale online relativa al <a href=\"@statistics\">modulo Statistics</a>.','it',0,0,0,0),(3564,'Gestire i log','it',0,0,0,0),(3565,'Per attivare la rilevazione di statistiche, bisogna spuntare la casella <em>Abilita il log degli accessi</em> nella pagina <a href=\"@statistics-settings\">Impostazioni delle statistiche</a>. L\'impostazione <em>Scarta i log degli accessi più vecchi di</em> nella pagina delle impostazioni specifica per quanto tempo le voci devono essere tenute nel log prima della loro eliminazione. Questa impostazione richiede una corretta configurazione dei <a href=\"@cron\">processi di manutenzione cron</a>.','it',0,0,0,0),(3566,'Visualizzazione dati sull\'utilizzo del sito','it',0,0,0,0),(3567,'Il modulo Statistics può aiutare a raggruppare i dettagli degli utenti e come essi utilizzano il sito. Il modulo fornisce quattro resoconti:','it',0,0,0,0),(3568,'<a href=\"@recent-hits\">Accessi recenti</a> mostra le informazioni sulle ultime attività sul sito, tra cui l\'URL e il titolo della pagina che è stata vista, il nome dell\'utente (se disponibile) e l\'indirizzo IP del visitatore.','it',0,0,0,0),(3569,'<a href=\"@top-referrers\">Principali referrer</a>mostra da quale pagina i visitatori sono giunti al sito (URL di provenienza).','it',0,0,0,0),(3570,'<a href=\"@top-pages\">Pagine più visitate</a> mostra una lista di pagine ordinate secondo il maggior numero di visite.','it',0,0,0,0),(3571,'<a href=\"@top-visitors\">Visitatori frequenti</a> mostra i visitatori maggiormente attivi sul sito e permette di bloccare i visitatori indesiderati.','it',0,0,0,0),(3572,'Mostra i contenuti più visti','it',0,0,0,0),(3573,'Il modulo comprende un blocco <em>Contenuti più visti</em> che visualizza le pagine più viste nell\'ultimo giorno e in assoluto, assieme all\'ultimo contenuto visualizzato. Per utilizzare il blocco, attiva <em>Conta le visite ai contenuti</em> alla <a href=\"@statistics-settings\">pagina delle impostazioni delle statistiche</a> e quindi procedi ad attivare e configurare il blocco alla <a href=\"@blocks\">pagina di amministrazione Blocchi</a>.','it',0,0,0,0),(3574,'Contatore di pagine viste','it',0,0,0,0),(3575,'Il modulo Statistics include un contatore per le pagine che viene incrementato ogni volta che una pagina viene visitata. Per usare il contatore, abilitare <em>Conta le visite ai contenuti</em> alla <a href=\"@statistics-settings\">pagina di impostazione delle statistiche</a> e definisci i <a href=\"@permissions\">permessi necessari</a> (<em>Mostra il numero di visualizzazioni per questo contenuto</em>) per fare in modo che il contatore sia visibile agli utenti.','it',0,0,0,0),(3576,'Amministra statistiche','it',0,0,0,0),(3577,'Visualizza le statistiche di accesso ai contenuti','it',0,0,0,0),(3578,'Mostra il numero di visualizzazioni per questo contenuto','it',0,0,0,0),(3579,'Controlla la modalità ed il tipo di statistiche sugli accessi che il tuo sito registra.','it',0,0,0,0),(3580,'Il modulo Syslog registra gli eventi inviando messaggi alle risorse di logging del sistema operativo del tuo server web. Syslog è uno strumento di logging amministrativo dei sistemi operativi che fornisce importanti informazioni per la gestione e la valutazione dello stato di sicurezza. Syslog è indicato per siti di medie e grandi dimensioni e fornisce strumenti di selezione che permettono di redirigere i messaggi sulla base del tipo o della severità. Per maggiori informazioni, vedere il manuale online alla voce <a href=\'@syslog\'>modulo Syslog</a> e le funzioni PHP <a href=\'@php_openlog\'>openlog</a> e <a href=\'@php_syslog\'>syslog</a>.','it',0,0,0,0),(3581,'Log per UNIX, Linux e Mac OS X','it',0,0,0,0),(3582,'Su UNIX, Linux, e Mac OS X, la configurazione di routing è definita dal file <em>/etc/syslog.conf</em>. I messaggi possono essere marcati con codici da <code>LOG_LOCAL0</code> a <code>LOG_LOCAL7</code>. Per maggiori informazioni sulle risorse syslog, sui livelli di severità dei messaggi e su come configurare <em>syslog.conf</em>, vedere pagina del manuale <em>syslog.conf</em> dalla riga di comando.','it',0,0,0,0),(3583,'Log per Microsoft Windows','it',0,0,0,0),(3584,'Su Microsoft Windows, i messaggi vengono sempre inviati al Log Eventi usando il codice <code>LOG_USER</code>.','it',0,0,0,0),(3585,'Risorsa syslog','it',0,0,0,0),(3586,'A seconda della configurazione del sistema, Syslog e altri strumenti di logging usano questo codice per identificare o filtrare messaggi nell\'intero log di sistema.','it',0,0,0,0),(3587,'Non è stato possibile ruotare l\'immagine %file poichè la funzione imagerotate() non è disponibile in questa installazione di PHP.','it',0,0,0,0),(3588,'Non è stato possibile desaturare l\'immagine %file poichè la funzione imagefilter() non è disponibile in questa installazione di PHP.','it',0,0,0,0),(3589,'Screenshot del tema !theme','it',0,0,0,0),(3590,'Impostazioni del tema !theme','it',0,0,0,0),(3591,'Disabilita il tema !theme','it',0,0,0,0),(3592,'Imposta !theme come tema predefinito','it',0,0,0,0),(3593,'Abilita il tema !theme','it',0,0,0,0),(3594,'Abilita e imposta come predefinito','it',0,0,0,0),(3595,'Abilita e imposta come predefinito il tema !theme','it',0,0,0,0),(3596,'tema predefinito','it',0,0,0,0),(3597,'Scegli \"Tema predefinito\" per utilizzare lo stesso tema del resto del sito.','it',0,0,0,0),(3598,'Utilizza il tema di amministrazione in fase di creazione o modifica dei contenuti.','it',0,0,0,0),(3599,'Il tema %theme è stato attivato.','it',0,0,0,0),(3600,'Non è stato possibile trovare il tema %theme.','it',0,0,0,0),(3601,'%theme è il tema predefinito e non può essere disattivato.','it',0,0,0,0),(3602,'Il tema %theme è stato disattivato.','it',0,0,0,0),(3603,'Notare che per la amministrazione del sito è ancora impostato il tema %admin_theme, di conseguenza il tema di questa pagina rimane invariato. Tutte le sezioni non amministrative però, mostreranno il tema selezionato %selected_theme.','it',0,0,0,0),(3604,'%theme è ora il tema predefinito.','it',0,0,0,0),(3605,'Stato della verifica utente nei commenti','it',0,0,0,0),(3606,'Queste impostazioni sono disponibili solo per i temi basati sul theme engine %engine.','it',0,0,0,0),(3607,'Il logo non può essere caricato.','it',0,0,0,0),(3608,'La favicon non può essere caricata.','it',0,0,0,0),(3609,'Il percorso del logo personalizzato non è valido.','it',0,0,0,0),(3610,'Il percorso della favicon personalizzata non è valido.','it',0,0,0,0),(3611,'@module (<span class=\"admin-missing\">incompatibile con</span> la versione @version)','it',0,0,0,0),(3612,'Questa versione non è compatibile con Drupal !core_version e dovrebbe essere sostituita.','it',0,0,0,0),(3613,'Desideri continuare con quanto sopra?','it',0,0,0,0),(3614,'Inserire un indirizzo IP valido.','it',0,0,0,0),(3615,'Questo indirizzo IP è già bloccato.','it',0,0,0,0),(3616,'Non puoi bloccare il tuo indirizzo IP.','it',0,0,0,0),(3617,'L\'indirizzo IP %ip è stato bloccato.','it',0,0,0,0),(3618,'Sei sicuro di voler eliminare %ip?','it',0,0,0,0),(3619,'L\'indirizzo IP %ip è stato eliminato.','it',0,0,0,0),(3620,'Come questo sia utilizzato dipende dal tema del sito.','it',0,0,0,0),(3621,'Numero di contenuti in prima pagina','it',0,0,0,0),(3622,'Il numero massimo di post visualizzati sulle pagine di sommario come la prima pagina del sito.','it',0,0,0,0),(3623,'Questa pagina viene mostrata quando l\'accesso al documento richiesto è negato all\'utente corrente. Lascia vuoto per mostrare una pagina \"accesso negato\" generica.','it',0,0,0,0),(3624,'Questa pagina viene visualizzata quando nessun altro contenuto corrisponde al documento richiesto. Lascia vuoto per mostrare una pagina generica \"pagina non trovata\"','it',0,0,0,0),(3625,'Errori e avvisi.','it',0,0,0,0),(3626,'Svuota tutte le cache','it',0,0,0,0),(3627,'<strong class=\"error\">Imposta la <a href=\"!file-system\">cartella per i file pubblici</a> per attivare queste ottimizzazioni disponibili.</strong>','it',0,0,0,0),(3628,'Ottimizzazione del traffico','it',0,0,0,0),(3629,'Comprimi le pagine incluse nella cache.','it',0,0,0,0),(3630,'Percorso per i file pubblici','it',0,0,0,0),(3631,'Un percorso d sistema dove i file pubblici saranno memorizzati. Questa directory deve esistere ed essere scrivibile da Drupal. Il percorso deve essere relativo alla root di Drupal e deve essere accessibile dal web.','it',0,0,0,0),(3632,'Percorso per i file privati','it',0,0,0,0),(3633,'Un percorso del file system locale in cui vengono memorizzati i file temporanei. Questa cartella non dovrebbe essere accessibile attraverso il web.','it',0,0,0,0),(3634,'Metodo predefinito per il download','it',0,0,0,0),(3635,'Questa impostazione è utilizzata come metodo di download preferito. L\'uso dei file pubblici è più efficiente, ma non fornisce alcun controllo sugli acccessi.','it',0,0,0,0),(3636,'Non sono stati rilevati toolkit per le immagini. Drupal supporta <a href=\'!gd-link\'>le funzioni di manipolazione delle immagini incluse in PHP</a> ma non sono state rilevate su questo sistema. Si dovrebbe richiedere la loro attivazione al proprio amministratore di sistema o provare ad utilizzare un toolkit di terze parti.','it',0,0,0,0),(3637,'Descrizione del tuo sito, inclusa in ogni feed.','it',0,0,0,0),(3638,'Fusi orari','it',0,0,0,0),(3639,'Gli utenti possono impostare il proprio fuso orario.','it',0,0,0,0),(3640,'Ricorda agli utenti al momento del login se il loro fuso orario non è impostato.','it',0,0,0,0),(3641,'Applicabile solo se gli utenti possono impostare il proprio fuso orario.','it',0,0,0,0),(3642,'Fuso orario per i nuovi utenti','it',0,0,0,0),(3643,'Fuso orario predefinito.','it',0,0,0,0),(3644,'Fuso orario vuoto.','it',0,0,0,0),(3645,'Gli utenti possono impostare il proprio fuso orario al momento della registrazione.','it',0,0,0,0),(3646,'Non esistono tipi di data disponibili. <a href=\"@link\">Aggiungi un tipo di data</a>.','it',0,0,0,0),(3647,'Aggiungi un tipo di data','it',0,0,0,0),(3648,'Il tipo di data deve contenere solo caratteri alfanumerici e underscore.','it',0,0,0,0),(3649,'Tipo di data esistente. Inserisci un tipo univoco.','it',0,0,0,0),(3650,'Nuovo tipo di data aggiunto con successo.','it',0,0,0,0),(3651,'Metti il sito in manutenzione','it',0,0,0,0),(3652,'Messaggio della modalità «In manutenzione»','it',0,0,0,0),(3653,'Messaggio da mostrare ai visitatori quando il sito è in manutenzione.','it',0,0,0,0),(3654,'Vengono usati URL come <code>example.com/user</code> al posto di <code>example.com/?q=user</code>.','it',0,0,0,0),(3655,'Richiede: !module-list','it',0,0,0,0),(3656,'Richiesto da: !module-list','it',0,0,0,0),(3657,'Sei sicuro di voler rimuovere il tipo di data %type?','it',0,0,0,0),(3658,'Il tipo di data %type è stato eliminato.','it',0,0,0,0),(3659,'Non esistono formati per la data personalizzati. <a href=\"@link\">Aggiungi un formato per la data</a>.','it',0,0,0,0),(3660,'Mostrato come','it',0,0,0,0),(3661,'Mostrato come %date','it',0,0,0,0),(3662,'Un formato per la data definito dall\'utente. Vedi il <a href=\"@url\">manuale PHP</a> per le opzioni disponibili.','it',0,0,0,0),(3663,'Salva il formato','it',0,0,0,0),(3664,'Questo formato è già esistente. La stringa di formattazione deve essere univoca.','it',0,0,0,0),(3665,'Il formato personalizzato della data è stato aggiornato.','it',0,0,0,0),(3666,'Il formato personalizzato della data è stato aggiunto.','it',0,0,0,0),(3667,'Azioni disponibili:','it',0,0,0,0),(3668,'Crea un\'azione avanzata','it',0,0,0,0),(3669,'Etichetta univoca per questa azione avanzata. L\'etichetta sarà visualizzata nell\'interfaccia dei moduli che offrono integrazione con le azioni, come il modulo Trigger.','it',0,0,0,0),(3670,'%ip rimosso','it',0,0,0,0),(3671,'Abilita il tema','it',0,0,0,0),(3672,'Abilita i temi','it',3671,1,0,0),(3673,'Tema disattivato','it',0,0,0,0),(3674,'Devi abilitare il modulo @required per installare @module.','it',0,0,0,0),(3675,'Devi abilitare i moduli @required per installare @module.','it',3674,1,0,0),(3676,'Token per le impostazioni del sito e per altre informazioni globali.','it',0,0,0,0),(3677,'Token relativi a date e ore.','it',0,0,0,0),(3678,'Token per i file caricati.','it',0,0,0,0),(3679,'URL (breve)','it',0,0,0,0),(3680,'L\'URL della prima pagina del sito priva del protocollo.','it',0,0,0,0),(3681,'Formato breve','it',0,0,0,0),(3682,'Una data in formato \'breve\'. (%date)','it',0,0,0,0),(3683,'Formato medio','it',0,0,0,0),(3684,'Una data in formato \'medio\'. (%date)','it',0,0,0,0),(3685,'Formato lungo','it',0,0,0,0),(3686,'Una data in formato \'lungo\' . (%date)','it',0,0,0,0),(3687,'Una data in formato peronalizzato. Vedere !php-date per i dettagli.','it',0,0,0,0),(3688,'la documentazione su PHP','it',0,0,0,0),(3689,'Tempo-da','it',0,0,0,0),(3690,'Timestamp non elaborato (UNIX, Raw)','it',0,0,0,0),(3691,'Data in formato UNIX timestamp (%date)','it',0,0,0,0),(3692,'Il modulo System è parte integrante del sito e fornisce funzionalità di base estensibili da parte di altri moduli e temi. Alcuni elementi integranti di Drupal sono contenuti e gestiti dal modulo System, tra questi la gestione della cache, l\'attivazione e disattivazione di moduli e temi, la preparazione e visualizzazione della pagina di amministrazione e la configurazione delle impostazioni fondamentali del sito. Il modulo System gestisce anche un certo numero di operazioni chiave di manutenzione del sistema. Per ulteriori informazioni, consultare il manuale in linea per <a href=\"@system\">il modulo System</a>.','it',0,0,0,0),(3693,'Gestione dei moduli','it',0,0,0,0),(3694,'Il modulo System consente agli utenti con i permessi appropriati di attivare e disattivare i moduli alla <a href=\"@modules\">pagina di amministrazione Moduli</a>. Drupal include una serie di moduli di base (core), ciascuno dei quali fornisce un insieme specifico di funzioni e può essere attivato o disattivato a seconda delle esigenze del sito. Molti moduli aggiuntivi sviluppati da parte dei membri della comunità di Drupal sono disponibili per il download alla <a href=\"@drupal-modules\">pagina dei moduli su Drupal.org</a>.','it',0,0,0,0),(3695,'Gestione dei temi','it',0,0,0,0),(3696,'Il modulo System permette agli utenti con i permessi appropriati di attivare e disattivare temi nella <a href=\"@themes\">pagina di amministrazione Aspetto</a>. I temi definiscono il design e l\'aspetto del sito. Drupal è distribuito con alcuni temi del core, mentre altri temi forniti dalla comunità sono disponibili nella <a href=\"@drupal-themes\">pagina dei temi di Drupal.org</a>.','it',0,0,0,0),(3697,'Gestione della cache','it',0,0,0,0),(3698,'Il modulo System consente agli utenti con i permessi appropriati di gestire le opzioni della cache alla pagina<a href=\'@cache-settings\'>Prestazioni</a>. Drupal offre un solido sistema di caching che permette il riutilizzo efficiente delle pagine web precedentemente costruite e dei loro componenti. Le pagine richieste da utenti anonimi sono memorizzate in formato compresso; a seconda della configurazione del sito e della quantità del traffico di visitatori anonimi, il sistema di cache può aumentare notevolmente la velocità del sito.','it',0,0,0,0),(3699,'Esecuzione della manutenzione del sistema','it',0,0,0,0),(3700,'Configurazione delle impostazioni di base del sito','it',0,0,0,0),(3701,'Il modulo System gestisce anche opzioni base di configurazione per il sito, comprese le <a href=\"@date-time-settings\">impostazioni per data e ora</a>, <a href=\"@file-system\">Impostazioni per il file system</a>, <a href=\"@clean-url\">supporto per gli URL semplificati</a>, <a href=\"@site-info\">nome e altre informazioni sul sito</a>, e uno stato <a href=\"@maintenance-mode\">in manutenzione</a> per portare temporaneamente il sito off-line.','it',0,0,0,0),(3702,'Configurazione delle azioni','it',0,0,0,0),(3703,'Le azioni sono operazioni eseguibili dal sistema, come rimuovere dalla pubblicazione un contenuto o bloccare un utente. I moduli, come ad esempio <a href=\"@trigger-help\">Trigger</a>, possono eseguire queste azioni in risposta agli eventi di sistema; ad esempio, quando un nuovo post viene aggiunto o quando un utente accede al sito. I moduli possono anche fornire azioni aggiuntive. Visita la pagina <a href=\"@actions\">Azioni</a> per configurare le azioni.','it',0,0,0,0),(3704,'Imposta e configura il tema predefinito per il tuo sito web. Sono disponibili <a href=\"@themes\">temi</a> alternativi.','it',0,0,0,0),(3705,'Scarica <a href=\"@modules\">moduli aggiuntivi </a> per estendere le funzionalità di Drupal.','it',0,0,0,0),(3706,'Verifica e installa regolarmente gli <a href=\"@updates\">aggiornamenti disponibili</a> per mantenere un sito sicuro ed aggiornato. Esegui sempre lo <a href=\"@update-php\">script di aggiornamento</a> ogni volta che un modulo viene aggiornato.','it',0,0,0,0),(3707,'Verifica regolarmente gli <a href=\"@updates\">aggiornamenti disponibili</a> per mantenere un sito sicuro ed aggiornato. Esegui sempre lo <a href=\"@update-php\">script di aggiornamento</a> ogni volta che un modulo viene aggiornato.','it',0,0,0,0),(3708,'Verifica regolarmente gli aggiornamenti disponibili per mantenere un sito sicuro ed aggiornato. Esegui sempre lo <a href=\"@update-php\">script di aggiornamento</a> ogni volta che un modulo viene aggiornato. Attiva il Gestore aggiornamenti per aggiornare ed installare moduli e temi.','it',0,0,0,0),(3709,'Se stai facendo aggiornando a una nuova versione di Drupal o dei moduli e temi forniti dalla comunità, devi eseguire lo<a href=\"@update-php\">script di aggiornamento</a>','it',0,0,0,0),(3710,'Esistono due tipi di azioni: semplici ed avanzate. Le azioni semplici non richiedono alcuna configurazione aggiuntiva, e sono elencate qui in automatico. Le azioni avanzate devono essere create e configurate prima di poter essere usate, perché hanno opzioni che devono essere definite; per esempio, inviare un messaggio e-mail ad un determinato indirizzo, o rimuovere dalla pubblicazione i contenuti che includono determinate parole. Per creare un\'azione avanzata, seleziona l\'azione dal menu a comparsa nella sezione azione avanzata qui sotto e fai clic sul pulsante <em>Crea</em>.','it',0,0,0,0),(3711,'Un\'azione avanzata offre ulteriori opzioni di configurazione che possono essere impostate qui di seguito. Si consiglia di cambiare il campo <em>Descrizione</em> al fine di identificare univocamente l\'azione in corso. Questa descrizione verrà visualizzata in moduli come il modulo Trigger per l\'assegnazione delle azioni agli eventi di sistema, quindi dovrebbe essere più descrittiva possibile (per esempio, \"Invia e-mail al team di moderazione\", piuttosto che semplicemente \"Invia e-mail\").','it',0,0,0,0),(3712,'Amministra moduli','it',0,0,0,0),(3713,'Amministra la configurazione del sito','it',0,0,0,0),(3714,'Amministra temi','it',0,0,0,0),(3715,'Amministra azioni','it',0,0,0,0),(3716,'Utilizza le pagine e gli aiuti per l\'amministrazione','it',0,0,0,0),(3717,'Usa il sito quando è in manutenzione','it',0,0,0,0),(3718,'Visualizza i resoconti del sito','it',0,0,0,0),(3719,'Blocca indirizzi IP','it',0,0,0,0),(3720,'File pubblici','it',0,0,0,0),(3721,'File pubblici locali gestiti dal webserver.','it',0,0,0,0),(3722,'File locali privati gestiti da Drupal','it',0,0,0,0),(3723,'File temporanei','it',0,0,0,0),(3724,'File locali temporanei per il caricamento e le anteprime.','it',0,0,0,0),(3725,'Aggiornamento moduli','it',0,0,0,0),(3726,'Aggiorna temi','it',0,0,0,0),(3727,'SSH','it',0,0,0,0),(3728,'La tua password non è stata salvata nel database ed è usata unicamente per stabilire una connessione.','it',0,0,0,0),(3729,'Sarà creata una connessione tra il tuo server web e la macchina che ospita i file del server web. Nella maggioranza dei casi, sarà la stessa macchina e \"localhost\" è l\'impostazione corretta.','it',0,0,0,0),(3730,'Configura le <a href=\"@user-edit\">impostazioni del fuso orario per il tuo profilo</a>.','it',0,0,0,0),(3731,'Seleziona l\'ora ed il fuso orario desiderato. Data e ora del sito saranno mostrate secondo queste impostazioni.','it',0,0,0,0),(3732,'Le impostazioni per il tuo fuso orario saranno rilevate automaticamente quando possibile. Verifica le impostazioni e fai clic su «Salva»','it',0,0,0,0),(3733,'Aiuto di sistema','it',0,0,0,0),(3734,'La cartella %directory non esiste e non può essere creata.','it',0,0,0,0),(3735,'La cartella %directory esiste ma non è scrivibile e non è stato possibile renderla scrivibile.','it',0,0,0,0),(3736,'L\'indirizzo e-mail a cui inviare il messaggio. Puoi alternativamente usare [node:author:mail], [comment:author:mail], ecc. nel caso che desideri inviare il messaggio e-mail all\'autore del post originale.','it',0,0,0,0),(3737,'Il messaggio da inviare. Puoi usare segnaposti come [node:title], [user:name], e [comment:body] per inserire valori dinamici diversi per ciascun messaggio. Nota che non tutti i segnaposto possono essere disponibili in un dato contesto.','it',0,0,0,0),(3738,'Il messaggio che verrà visualizzato all\'utente corrente. Puoi includere segnaposto come [node:title], [user:name], e [comment:body] per rappresentare dati che cambieranno ad ogni invio del messaggio. Non tutti i segnaposto saranno disponibili in tutti i contesti.','it',0,0,0,0),(3739,'@zone: @date','it',0,0,0,0),(3740,'Realizzato con <a href=\"@poweredby\">Drupal</a>','it',0,0,0,0),(3741,'callback AHAH','it',0,0,0,0),(3742,'Amministra i blocchi, i tipi di contenuto, i menu, ecc.','it',0,0,0,0),(3743,'Seleziona e configura il tema','it',0,0,0,0),(3744,'Attiva il tema','it',0,0,0,0),(3745,'Disattiva il tema','it',0,0,0,0),(3746,'Imposta il tema predefinito','it',0,0,0,0),(3747,'Configura le impostazioni predefinite generali e specifiche del tema.','it',0,0,0,0),(3748,'Blocco degli indirizzi IP','it',0,0,0,0),(3749,'Gestisci gli indirizzi IP bloccati.','it',0,0,0,0),(3750,'Elimina indirizzo IP','it',0,0,0,0),(3751,'Strumenti multimediali.','it',0,0,0,0),(3752,'Strumenti legati ai web service.','it',0,0,0,0),(3753,'Configura la descrizione del sito, il numero di elementi per ogni feed, e se i feed debbano essere titoli/anteprime/testo completo.','it',0,0,0,0),(3754,'Strumenti di sviluppo.','it',0,0,0,0),(3755,'Modalità di manutenzione','it',0,0,0,0),(3756,'Mette il sito off-line per manutenzione o lo riporta on-line.','it',0,0,0,0),(3757,'Registro degli eventi ed errori','it',0,0,0,0),(3758,'Impostazioni dei moduli di logging e segnalazione. Vari moduli possono inviare rapporti sulle azioni di Drupal a varie destinazioni come syslog, database, messaggi e-mail, ecc.','it',0,0,0,0),(3759,'Impostazioni internazionali e lingue','it',0,0,0,0),(3760,'Impostazioni internazionali, localizzazione e traduzione.','it',0,0,0,0),(3761,'Impostazioni sul fuso orario e sul paese predefiniti del sito.','it',0,0,0,0),(3762,'Configura i formati di visualizzazione di date e orari.','it',0,0,0,0),(3763,'Aggiungi un nuovo tipo di data.','it',0,0,0,0),(3764,'Elimina tipo di data','it',0,0,0,0),(3765,'Permetti agli utenti di eliminare un tipo di data.','it',0,0,0,0),(3766,'Configura il formato di visualizzazione di data e ora.','it',0,0,0,0),(3767,'Modifica il formato della data','it',0,0,0,0),(3768,'Permetti agli utenti di modificare un formato della data configurato.','it',0,0,0,0),(3769,'Ricerca e metadati','it',0,0,0,0),(3770,'Ricerca locale nel sito, metadati e SEO.','it',0,0,0,0),(3771,'Impostazioni generali di sistema.','it',0,0,0,0),(3772,'Strumenti che migliorano l\'interfaccia utente.','it',0,0,0,0),(3773,'Flusso di lavoro per i contenuti, strumenti per  la gestione dei flussi editoriali di pubblicazione dei contenuti.','it',0,0,0,0),(3774,'Inserimento dei contenuti','it',0,0,0,0),(3775,'Impostazioni per la formattazione e l\'inserimento dei contenuti.','it',0,0,0,0),(3776,'L\'host !host non è più bloccato perché non è un indirizzo IP valido.','it',0,0,0,0),(3777,'Inseriti in {role_permission} i permessi per il ruolo con ID !id','it',0,0,0,0),(3778,'Il metodo di caching aggressivo è stato disabilitato e verrà rimpiazzato con il metodo di caching normale. Leggi la sezione sul caching della pagina in default.settings.php per ulteriori informazioni su come attivare funzionalità simili.','it',0,0,0,0),(3779,'%profile_name (%profile-%version)','it',0,0,0,0),(3780,'ulteriori informazioni','it',0,0,0,0),(3781,'La funzione phpinfo() è stata disattivata per ragioni di sicurezza. Per vedere le informazioni phpinfo() del tuo server, cambia le impostazioni del tuo PHP o contatta l\'amministratore del server. Per ulteriori informazioni, vai alla pagina del manuale <a href=\"@phpinfo\">Attivare e disattivare phpinfo()</a>','it',0,0,0,0),(3782,'Per eseguire cron al di fuori del sito, visita <a href=\"!cron\">!cron</a>','it',0,0,0,0),(3783,'Il tentativo di creare automaticamente questa cartella non è andato a buon fine, probabilmente per problemi di permessi. Per procedere con l\'installazione crea la cartella e modificane i permessi manualmente, o assicurati che l\'installer abbia i permessi necessari per crearla automaticamente. Per maggiori informazioni, leggi INSTALL.txt o il <a href=\"@handbook_url\">manuale online</a>.','it',0,0,0,0),(3784,'La tua configurazione è stata salvata.','it',0,0,0,0),(3785,'Nessun vocabolario disponibile. <a href=\"@link\">Aggiungi vocabolario</a>.','it',0,0,0,0),(3786,'Nessun termine disponibile. <a href=\"@link\">Aggiungi termine</a>.','it',0,0,0,0),(3787,'Attualmente nessun contenuto è stato classificato con questo termine.','it',0,0,0,0),(3788,'Simboli per i termini della tassonomia.','it',0,0,0,0),(3789,'Simboli per i vocabolari della tassonomia.','it',0,0,0,0),(3790,'Il modulo Taxonomy ti permette di classificare i contenuti del tuo sito. Per classificare i contenuti, definisci <em>vocabolari</em> che contengono <em>termini</em> correlati fra loro, e assegni i vocabolari ai tipi di contenuto. Per ulteriori informazioni, leggi l\'articolo sul manuale online per il <a href=\"@taxonomy\">modulo Taxonomy</a>.','it',0,0,0,0),(3791,'Creare vocabolari','it',0,0,0,0),(3792,'Gli utenti con <a href=\"@perm\">permessi</a> appropriati possono creare <em>vocabolari</em> e <em>termini</em> alla pagina della <a href=\"@taxo\">Tassonomia</a>. La pagina elenca i termini e fornisce un\'interfaccia drag-and-drop per controllare l\'ordine dei termini e dei sotto-termini all\'interno di un vocabolario, in modo gerarchico. Un <em>vocabolario controllato</em> per la classificazione di generi musicali con termini e sotto-termini apparirebbe come segue:','it',0,0,0,0),(3793,'vocabolario: Musica','it',0,0,0,0),(3794,'<em>termine</em>: Jazz','it',0,0,0,0),(3795,'<em>sotto-termine</em>: Swing','it',0,0,0,0),(3796,'<em>sotto-termine</em>: Fusion','it',0,0,0,0),(3797,'<em>termine</em>: Rock','it',0,0,0,0),(3798,'<em>sotto-termine</em>: Country rock','it',0,0,0,0),(3799,'<em>sotto-termine</em>: Hard rock','it',0,0,0,0),(3800,'Puoi assegnare un sotto-termine a più termini genitori. Ad esempio <em>fusion</em> può essere assegnato sia a <em>rock</em> che a <em>jazz</em>.','it',0,0,0,0),(3801,'I termini in un <em> vocabolario libero</em> possono essere aggiunti gradualmente mentre si crea o modificare il contenuto. Ciò è spesso usato per i blog o le applicazioni di gestione delle foto.','it',0,0,0,0),(3802,'Assegnare vocabolari ai tipi di contenuto','it',0,0,0,0),(3803,'Prima di poter utilizzare un nuovo vocabolario per classificare i contenuti, è necessario aggiungere un nuovo campo Termine della tassonomia ad uno o più <a href=\"@ctedit\">tipi di contenuto</a> nella sua scheda <em>gestisci campi</em>. Quando si aggiunge un campo Termine della tassonomia, è possibile selezionare un <em>widget</em> da usare per inserire le informazioni alla pagina di modifica dei contenuti; i widget di base comprendono: elenco di selezione, caselle di selezione, pulsanti di opzione o un campo a completamento automatico (ad esempio per un vocabolario di tagging libero). Dopo aver scelto il tipo di campo e il widget, nelle <em>impostazioni del campo</em> si può selezionare il vocabolario desiderato, se possono essere inseriti uno o più termini e altre impostazioni. Lo stesso vocabolario può essere associato a più tipi di contenuto, utilizzando la sezione \"Aggiungi campo esistente \" nella pagina di gestione dei campi.','it',0,0,0,0),(3804,'Classificare i contenuti','it',0,0,0,0),(3805,'Dopo aver assegnato un vocabolario a un tipo di contenuto, puoi iniziare a classificare i contenuti. Il campo con i termini apparirà nella schermata di modifica contenuti quando modifichi o <a href=\"@addnode\">aggiungi nuovi contenuti</a>.','it',0,0,0,0),(3806,'Visualizza il contenuto e i feed RSS raggruppati per termine della tassonomia','it',0,0,0,0),(3807,'Ogni termine della tassonomia fornisce automaticamente una pagina con la lista dei contenuti assegnati ad esso e una relativa feed RSS. Ad esempio, se il termine tassonomia <em>country rock</em> ha ID = 123 (l\'ID del termine è visibile nella URL visualizzata quando si passa col mouse sopra il link del termine), la lista dei contenuti classificati come <em>country rock</em>  sarà visibile al percorso <em> taxonomy/term/123</em>. Il feed RSS utilizzerà il percorso <em>taxonomy/term/123/feed</em> (l\'icona RSS  sarà automaticamente visualizzata nella barra degli indirizzi del browser quando si visualizza la pagina).','it',0,0,0,0),(3808,'Estendere il modulo Taxonomy','it',0,0,0,0),(3809,'Esistono <a href=\"@taxcontrib\">molti moduli aggiuntivi</a> che estendono le funzioni del modulo Taxonomy sia per la visualizzazione che per l\'organizzazione dei termini.','it',0,0,0,0),(3810,'La Tassonomia è utilizzata per dividere i contenuti in categorie. I termini vengono raggruppati in vocabolari. Ad esempio, un vocabolario chiamato \"Frutta\" conterrebbe i termini \"Mela\" e \"Banana\".','it',0,0,0,0),(3811,'Puoi riorganizzare i termini in %capital_name utilizzando le maniglie drag-and-drop, e raggruppare termini sotto un termine genitore spostandoli sotto e a destra del termine genitore desiderato.','it',0,0,0,0),(3812,'%capital_name contiene termini raggruppati sotto i rispettivi termini genitori. Puoi riorganizzare i termini in %capital_name utilizzando le loro maniglie drag-and-drop.','it',0,0,0,0),(3813,'%capital_name contiene termini con genitori multipli. Il trascinamento di termini con gentori multipli non è supportato, ma è possibile abilitare la funzionalità drag-and-drop modificando ogni termine in modo che abbia un solo genitore.','it',0,0,0,0),(3814,'Amministra vocabolari e termini','it',0,0,0,0),(3815,'Modifica termini in %vocabulary','it',0,0,0,0),(3816,'Elimina termini da %vocabulary','it',0,0,0,0),(3817,'Pagina di un termine della tassonomia','it',0,0,0,0),(3818,'Riferimento termine','it',0,0,0,0),(3819,'Questo campo salva un riferimento ad un termine della tassonomia.','it',0,0,0,0),(3820,'Widget di autocompletamento per i termini (tagging)','it',0,0,0,0),(3821,'Il vocabolario che fornisce le opzioni per questo campo.','it',0,0,0,0),(3822,'Il modulo Toolbar mostra collegamenti agli elementi di amministrazione di primo livello del menu e link da altri moduli nella parte superiore dello schermo. Per ulteriori informazioni, consulta il manuale in linea per <a href=\"@toolbar\">modulo Toolbar</a>.','it',0,0,0,0),(3823,'Visualizzare i link di amministrazione','it',0,0,0,0),(3824,'Usa la barra di amministrazione','it',0,0,0,0),(3825,'Mostra/nascondi la barra a scomparsa','it',0,0,0,0),(3826,'Fornisce una barra degli strumenti che mostra le voci del menù amministrazione di primo livello e link da altri moduli.','it',0,0,0,0),(3827,'Il modulo Tracker visualizza i contenuti aggiornati o creati più di recente e permette di monitorare i contenuti creati da ciascun utente. Questo modulo non ha impostazioni. Per maggiori informazioni vedere la sezione del manuale online relativa al <a href=\"@tracker\">modulo Tracker</a>.','it',0,0,0,0),(3828,'Il modulo Tracker aggiunge la voce <em>Contenuti recenti</em> al menu di Navigazione. Puoi configurare le voci di menu alla <a href=\"@menus\">pagina di amministrazione Menu</a>.','it',0,0,0,0),(3829,'Traccia i contenuti nuovi e aggiornati del sito.','it',0,0,0,0),(3830,'La pagina <a href=\'@recent\'>Contenuti recenti</a> visualizza i contenuti nuovi ed aggiornati in ordine cronologico inverso, fornendo informazioni su: tipo di contenuto, titolo, nome dell\'autore, numero di commenti e data di ultimo aggiornamento. Un contenuto viene considerato aggiornato quando il testo viene modificato o vengono aggiunti nuovi commenti. La scheda <em>I miei contenuti recenti</em> filtra i risultati rispetto all\'utente corrente.','it',0,0,0,0),(3831,'Traccia i contenuti dell\'utente','it',0,0,0,0),(3832,'Per mantenersi aggiornati sugli ultimi contenuti prodotti o modificati da uno specifico utente, selezionare la scheda <em>Traccia</em> dalla pagina del profilo utente.','it',0,0,0,0),(3833,'Tutti i contenuti recenti','it',0,0,0,0),(3834,'I miei contenuti recenti','it',0,0,0,0),(3835,'Traccia contenuto','it',0,0,0,0),(3836,'Abilita il tracciamento dei contenuti recenti per gli utenti.','it',0,0,0,0),(3837,'Il modulo Content translation (Traduzione dei contenuti) permette di tradurre il contenuto del sito in lingue diverse. Lavorando con il <a href=\"@locale\">modulo Locale</a> (che gestisce le lingue abilitate e fornisce la traduzione per l\'interfaccia del sito), il modulo Content translation risulta essere la chiave per creare e mantenere la corretta traduzione dei contenuti del sito. Per maggiori informazioni, si può fare riferimento alla voce sul <a href=\"@translation\">modulo Content translation</a> del manuale online.','it',0,0,0,0),(3838,'Configurare i tipi di contenuto per la traduzione','it',0,0,0,0),(3839,'Per configurare un particolare tipo di contenuto per la traduzione, visita la pagina <a href=\"@content-types\">Tipi di contenuto</a>, e clicca su <em>modifica</em> per il tipo di contenuto che vuoi modificare. Nella sezione <em>Opzioni di pubblicazione</em>, seleziona <em>Abilitato, con traduzioni</em> sotto <em>Supporto multilingue</em>.','it',0,0,0,0),(3840,'Assegnare una lingua a un contenuto','it',0,0,0,0),(3841,'Usa il menu <em>Lingua</em> per scegliere la lingua appropriata quando si crea o modifica un contenuto.','it',0,0,0,0),(3842,'Tradurre contenuti','it',0,0,0,0),(3843,'Gli utenti con permesso <em>traduce i contenuti</em> possono tradurre i contenuti i cui tipi di contenuto sono stati impostati per essere tradotti. Per tradurre un contenuto seleziona la scheda <em>Traduzione</em>, seleziona il linguaggio per cui si vuole inserire del contenuto e procedi quindi all\'inserimento.','it',0,0,0,0),(3844,'Gestione delle traduzioni','it',0,0,0,0),(3845,'Se quando si modifica un contenuto in una lingua si desidera mantenere aggiornate le rispettive traduzioni, selezionare la casella di controllo <em>Segnala traduzione come obsoleta</em> per contrassegnare le traduzioni che necessitano di una revisione. Singole traduzioni possono essere contrassegnate per la revisione selezionando la casella <em>Questa traduzione deve essere aggiornata</em> nel form di traduzione.','it',0,0,0,0),(3846,'Traduci contenuto','it',0,0,0,0),(3847,'Esiste già una traduzione in questa lingua.','it',0,0,0,0),(3848,'Trigger: !description','it',0,0,0,0),(3849,'Non esistono azioni disponibili per questo trigger. <a href=\"@link\">Aggiungi un\'azione</a>.','it',0,0,0,0),(3850,'Azione di salvataggio mancante o non definita (%save_aid) per l\'azione %aid.','it',0,0,0,0),(3851,'L\'azione %label è stata accodata, poiché necessario per cambiarne correttamente il proprietario.','it',0,0,0,0),(3852,'L\'azione %label è stata spostata per salvare il cambio di proprietario.','it',0,0,0,0),(3853,'I trigger sono eventi che si verificano sul sito, come ad esempio l\'aggiunta di nuovi contenuti o l\'accesso di un utente. Il modulo Trigger permette di associare questi eventi ad azioni (operazioni sul sito), come rimuovere dalla pubblicazione un contenuto contenente determinate parole chiave o inviare un\'e-mail a un amministratore. La pagina di impostazione delle <a href=\"@url\">Azioni</a> contiene un elenco di azioni esistenti e fornisce la possibilità di creare e configurare azioni avanzate (le azioni che richiedono opzioni di configurazione, come ad esempio un indirizzo e-mail o un elenco dei parole vietate).','it',0,0,0,0),(3854,'Il modulo Trigger permette di eseguire <em>azioni</em> in risposta all\'esecuzione di determinati <em>trigger</em> che avvengono sul tuo sito. I trigger sono eventi, come l\'aggiunta di nuovi contenuti o l\'accesso di un utente, mentre le azioni sono operazioni, come ad esempio rimuovere dalla pubblicazione del contenuto o inviare un\'e-mail a un amministratore. Per ulteriori informazioni, consultare il manuale in linea per il <a href=\"@trigger\">modulo Trigger</a>.','it',0,0,0,0),(3855,'Configurazione di trigger e azioni','it',0,0,0,0),(3856,'La combinazione di azioni e trigger permette di eseguire molte operazioni utili, come inviare un\'e-mail a un amministratore se un account utente viene eliminato, o rimuovere dalla pubblicazione automaticamente i commenti che contengono determinate parole. Per impostare una combinazione trigger/azione, visitare la pagina di configurazione <a href=\"@actions-page\">Azioni</a> e selezionare l\'azione desiderata tra quelle preimpostate, o creare una nuova <em>Azione avanzata</em>. Sarà necessario impostare un\'azione avanzata se la combinazione trigger/azione richiede opzioni di configurazione come ad esempio un indirizzo e-mail o una lista di parole proibite. Dopo aver configurato e verificato l\'azione, visitare la pagina di configurazione <a href=\"@triggers-page\">Trigger</a> e selezionare la scheda appropriata (Commento, Tassonomia, ecc.), da cui è possibile assegnare l\'azione da eseguire in risposta ad un evento trigger.','it',0,0,0,0),(3857,'Quando si salva un nuovo contenuto o si aggiorna un contenuto esistente','it',0,0,0,0),(3858,'Dopo aver aggiornato un contenuto','it',0,0,0,0),(3859,'Quando si salva un nuovo commento o si aggiorna un commento esistente','it',0,0,0,0),(3860,'Dopo aver creato un nuovo profilo utente','it',0,0,0,0),(3861,'Dopo aver aggiornato un profilo utente','it',0,0,0,0),(3862,'Configura quando eseguire le azioni.','it',0,0,0,0),(3863,'Installazione degli aggiornamenti in corso','it',0,0,0,0),(3864,'Preparazione all\'aggiornamento del tuo sito in corso','it',0,0,0,0),(3865,'Installazione di %project in corso','it',0,0,0,0),(3866,'Preparazione dell\'installazione in corso','it',0,0,0,0),(3867,'Errore durante l\'installazione / aggiornamento','it',0,0,0,0),(3868,'%project_name installato con successo','it',0,0,0,0),(3869,'L\'aggiornamento è stato completato con successo. Il sito ora non è più in manutenzione.','it',0,0,0,0),(3870,'Aggiornamento completato con successo.','it',0,0,0,0),(3871,'Aggiornamento non riuscito! Leggi il log qui sotto per ulteriori informazioni.','it',0,0,0,0),(3872,'L\'aggiornamento non è riuscito! Visualizza il log per ulteriori informazioni. Il sito è ancora in manutenzione.','it',0,0,0,0),(3873,'L\'installazione è stata completata con successo. Il sito ora non è più in manutenzione.','it',0,0,0,0),(3874,'Installazione completata con uccesso.','it',0,0,0,0),(3875,'Installazione non riuscita! Leggi il log qui sotto per ulteriori informazioni.','it',0,0,0,0),(3876,'L\'installazione non è riuscita. Visualizza il log qui sotto per ulteriori informazioni. Il sito è ancora in manutenzione.','it',0,0,0,0),(3877,'Recupero delle informazioni sugli aggiornamenti disponibili non riuscito.','it',0,0,0,0),(3878,'Nessuna informazione sugli aggiornamenti disponibile','it',0,0,0,0),(3879,'Controllo aggiornamenti disponibili','it',0,0,0,0),(3880,'Tentativo di controllo delle informazioni sugli aggiornamenti in corso ...','it',0,0,0,0),(3881,'Errore durante il controllo delle informazioni sugli aggiornamenti.','it',0,0,0,0),(3882,'Controllo aggiornamenti disponibili ...','it',0,0,0,0),(3883,'Controllati aggiornamenti disponibili per %title.','it',0,0,0,0),(3884,'Controllo delle informazioni sugli aggiornamenti disponibili non riuscito per %title.','it',0,0,0,0),(3885,'Si è verificato un errore nel tentativo di ottenere dati sull\'aggiornamento.','it',0,0,0,0),(3886,'Controllo delle informazioni sugli aggiornamenti disponibili effettuato per un progetto.','it',0,0,0,0),(3887,'Controllo delle informazioni sugli aggiornamenti disponibili effettuato per @count progetti.','it',3886,1,0,0),(3888,'Controllo delle informazioni sugli aggiornamenti disponibili non riuscito per un progetto.','it',0,0,0,0),(3889,'Controllo delle informazioni sugli aggiornamenti disponibili non riuscito per @count progetti.','it',3888,1,0,0),(3890,'Si è verificato un errore nel recupero delle informazioni sugli aggiornamenti. Riprova più tardi.','it',0,0,0,0),(3891,'(Tema)','it',0,0,0,0),(3892,'(Note di rilascio)','it',0,0,0,0),(3893,'Questo aggiornamento è un aggiornamento di versione importante, il che significa che potrebbe non essere retrocompatibile con la versione attualmente installata. È consigliabile leggere le note di rilascio e essere consapevoli di procedere a tuo rischio e pericolo.','it',0,0,0,0),(3894,'(Aggiornamento di sicurezza)','it',0,0,0,0),(3895,'(Non supportato)','it',0,0,0,0),(3896,'Tutti i progetti sono aggiornati.','it',0,0,0,0),(3897,'Scarica questi aggiornamenti','it',0,0,0,0),(3898,'Richiesti aggiornamenti manuali','it',0,0,0,0),(3899,'Gli aggiornamenti del core di Drupal non sono supportati in questo momento.','it',0,0,0,0),(3900,'Devi selezionare almeno un progetto da aggiornare.','it',0,0,0,0),(3901,'Download degli aggiornamenti','it',0,0,0,0),(3902,'Preparazione al download degli aggiornamenti selezionati','it',0,0,0,0),(3903,'Download degli aggiornamenti fallito:','it',0,0,0,0),(3904,'Download degli aggiornamenti completato con successo.','it',0,0,0,0),(3905,'Errore critico in fase di download.','it',0,0,0,0),(3906,'Effettua il backup del database e del sito prima di continuare. <a href=\"@backup_url\">Scopri come</a>.','it',0,0,0,0),(3907,'Effettua gli aggiornamenti con il sito in manutenzione (fortemente consigliato)','it',0,0,0,0),(3908,'Installazione da un URL','it',0,0,0,0),(3909,'Per esempio: %url','it',0,0,0,0),(3910,'Carica un archivio contenente un modulo o tema per installarlo','it',0,0,0,0),(3911,'Per esempio: %filename dal tuo computer locale','it',0,0,0,0),(3912,'Devi fornire un URL o caricare un file di archivio per procedere all\'installazione','it',0,0,0,0),(3913,'L\'URL inserito non è valido.','it',0,0,0,0),(3914,'Impossibile recuperare un progetto Drupal da %url.','it',0,0,0,0),(3915,'L\'archivio fornito non contiene file.','it',0,0,0,0),(3916,'Impossibile stabilire il nome di %project.','it',0,0,0,0),(3917,'%project è già installato.','it',0,0,0,0),(3918,'Impossibile estrarre %file, archivio non valido.','it',0,0,0,0),(3919,'Download di %project in corso','it',0,0,0,0),(3920,'Download di %project da %url fallito','it',0,0,0,0),(3921,'Include:','it',0,0,0,0),(3922,'Attivati: %includes','it',0,0,0,0),(3923,'Disattivati: %disabled','it',0,0,0,0),(3924,'%base_theme (!base_label)','it',0,0,0,0),(3925,'Dipende da: !basethemes','it',0,0,0,0),(3926,'Richiesto da: %subthemes','it',0,0,0,0),(3927,'Il modulo Update manager controlla periodicamente l\'esistenza di nuove versioni per il software installato sul tuo sito (compresi moduli e temi), e avverte gli amministratori degli aggiornamenti disponibili. Per fornire informazioni sugli aggiornamenti, vengono inviate statistiche anonime sull\'utilizzo a Drupal.org. Se lo desideri, puoi disattivare il modulo Update manager dalla <a href=\'@modules\'>pagina di amministrazione Moduli</a>. Per ulteriori informazioni, leggi l\'articolo sul manuale online per il <a href=\'@update\'>modulo Update manager</a>.','it',0,0,0,0),(3928,'Il Gestore aggiornamenti permette inoltre agli amministratori di aggiornare e installare moduli e temi attraverso l\'interfaccia di amministrazione.','it',0,0,0,0),(3929,'Controllo aggiornamenti disponibili','it',0,0,0,0),(3930,'Un resoconto sugli <a href=\"@update-report\">aggiornamenti disponibili</a> ti avviserà quando saranno disponibili nuove versioni per il download. Puoi configurare le opzioni sulla frequenza di controllo degli aggiornamenti (che viene effettuato durante l\'esecuzione di <a href=\"@cron\">cron</a>) e sulle notifiche via e-mail alla pagina di <a href=\"@update-settings\">impostazioni del Gestore aggiornamenti</a>','it',0,0,0,0),(3931,'Effettuazione degli aggiornamenti attraverso l\'interfaccia utente','it',0,0,0,0),(3932,'Il modulo Update manager consente agli amministratori di eseguire gli aggiornamenti direttamente tramite l\'interfaccia di amministrazione. Nella parte superiore delle pagine <a href=\"@modules_page\">moduli</a> e <a href=\"@themes_page\"> temi</a> trovi un link per l\'aggiornamento alle nuove release. Il link porta alla pagina degli <a href=\"@update-page\">aggiornamenti</a> con lista di tutti gli aggiornamenti disponibili e la possibilità di selezionare quelli che si desidera aggiornare. Viene quindi richiesta la password per il servizio FTP/SSH, che trasferisce i file nella vostra installazione di Drupal, sovrascrivendo i file vecchi. Per ulteriori informazioni consultare il <a href=\"@update\">manuale online </a>.','it',0,0,0,0),(3933,'Installare nuovi moduli e temi attraverso l\'interfaccia utente','it',0,0,0,0),(3934,'È inoltre possibile installare nuovi moduli e temi allo stesso modo alla <a href=\"@install\">pagina di installazione</a>, o cliccando il link <em>Installa nuovo modulo/tema</em> nella parte superiore delle pagine <a href=\"@modules_page\">moduli</a> e <a href=\"@themes_page\">temi</a> . In questo caso, viene chiesto di fornire l\'URL per il download o di caricare un file dal computer locale.','it',0,0,0,0),(3935,'Nessuna informazione disponibile sugli aggiornamenti. <a href=\"@run_cron\">Eseguire cron</a> oppure <a href=\"@check_manually\">controllare manualmente</a>.','it',0,0,0,0),(3936,'Puoi installare automaticamente gli aggiornamenti mancanti utilizzando il Gestore aggiornamenti:','it',0,0,0,0),(3937,'Il tuo sito è attualmente configurato per inviare queste e-mail quando qualsiasi aggiornamento è disponibile. Per avere la notifica solo per aggiornamenti di sicurezza, vedi !url.','it',0,0,0,0),(3938,'Il tuo sito è attualmente configurato per l\'invio di questi messaggi e-mail solo quando sono disponibili aggiornamenti di sicurezza. Per ricevere notifiche per qualunque aggiornamento disponibile, !url.','it',0,0,0,0),(3939,'La versione installata di almeno uno dei tuoi moduli o temi non è più supportata. È vivamente raccomandato aggiornarli o disabilitarli. Visita la pagina del progetto per maggiori dettagli.','it',0,0,0,0),(3940,'Si è verificato un errore durante il controllo degli <a href=\"@update-report\">aggiornamenti disponibili</a> per Drupal.','it',0,0,0,0),(3941,'Si è verificato un errore durante il controllo degli <a href=\"@update-report\">aggiornamenti disponibili</a> per i tuoi moduli o temi.','it',0,0,0,0),(3942,'Visita la pagina degli <a href=\"@available_updates\">aggiornamenti disponibili</a> per ulteriori informazioni e per installare gli aggiornamenti mancanti.','it',0,0,0,0),(3943,'Pronto per l\'aggiornamento','it',0,0,0,0),(3944,'Gestore aggiornamenti','it',0,0,0,0),(3945,'Controlla la presenza di aggiornamenti disponibili, e può installare o aggiornare in sicurezza moduli e temi attraverso un\'interfaccia web.','it',0,0,0,0),(3946,'Nessuna persona disponibile.','it',0,0,0,0),(3947,'A questo ruolo verranno assegnati automaticamente nuovi permessi ogni volta che un modulo verrà attivato. Cambiare questa impostazione non influenzerà i permessi esistenti.','it',0,0,0,0),(3948,'Registrazione e cancellazione','it',0,0,0,0),(3949,'Chi può creare nuovi profili utente?','it',0,0,0,0),(3950,'Solo amministratori','it',0,0,0,0),(3951,'Tutti i visitatori del sito, ma è richiesta l\'approvazione dell\'amministratore','it',0,0,0,0),(3952,'Richiedi un messaggio e-mail di verifica quando un visitatore crea un profilo utente.','it',0,0,0,0),(3953,'Ai nuovi utenti verrà richiesto di validare il loro indirizzo e-mail prima di poter effettuare al\'accesso al sito, e verrà assegnata loro una password generata automaticamente. Con questa impostazione disattivata, gli utenti effettueranno automaticamente l\'accesso dopo la registrazione, e potranno scegliere la propria password.','it',0,0,0,0),(3954,'Quando viene cancellato il profilo di un utente','it',0,0,0,0),(3955,'Gli utenti con <a href=\"@permissions-url\">permessi</a> per %select-cancel-method o %administer-users possono modificare il metodo predefinito.','it',0,0,0,0),(3956,'Seleziona la modalità di cancellazione del profilo','it',0,0,0,0),(3957,'Amministra utenti','it',0,0,0,0),(3958,'Personalizzazione','it',0,0,0,0),(3959,'Attiva le firme.','it',0,0,0,0),(3960,'La cartella %directory non esiste o non ha i permessi di scrittura','it',0,0,0,0),(3961,'Attiva immagini utente','it',0,0,0,0),(3962,'Cartella per le immagini','it',0,0,0,0),(3963,'Stile di visualizzazione delle immagini','it',0,0,0,0),(3964,'Lo stile selezionato sarà utilizzato per la visualizzazione all\'utente, l\'immagine originale sarà conservata. Gli stili possono essere configurati nell\'area di amministrazione <a href=\"!url\">Stili immagine</a>.','it',0,0,0,0),(3965,'Dimensioni (in pixel) delle immagini caricate','it',0,0,0,0),(3966,'Dimensioni (in kb) delle immagini caricate','it',0,0,0,0),(3967,'E-mail','it',0,0,0,0),(3968,'Benvenuto (nuovo utente creato dall\'amministratore)','it',0,0,0,0),(3969,'Modifica il messaggio e-mail di benvenuto inviato ai nuovi utenti creati dall\'amministratore.','it',0,0,0,0),(3970,'Benvenuto (in attesa di approvazione)','it',0,0,0,0),(3971,'Modifica il messaggio e-mail di benvenuto inviato ai nuovi utenti dopo la registrazione, quando l\'approvazione di un amministratore è richiesta.','it',0,0,0,0),(3972,'Benvenuto (nessuna approvazione richiesta)','it',0,0,0,0),(3973,'Modifica il messaggio e-mail di benvenuto inviatio ai nuovi utenti dopo la registrazione, quando nessuna approvazione da parte di un amministratore è richiesta.','it',0,0,0,0),(3974,'Recupero password','it',0,0,0,0),(3975,'Modifica il messaggio e-mail inviato agli utenti che richiedono una nuova password.','it',0,0,0,0),(3976,'Attivazione profilo utente','it',0,0,0,0),(3977,'Attiva e modifica il messaggio e-mail inviato agli utenti dopo l\'attivazione del profilo (quando un amministratore attiva il profilo di un utente che si è già registrato, quando l\'approvazione di un amministratore è richiesta).','it',0,0,0,0),(3978,'Attiva e modifica i messaggi e-mail inviati agli utenti quando i loro profili utente vengono bloccati.','it',0,0,0,0),(3979,'Conferma di eliminazione del profilo utente','it',0,0,0,0),(3980,'Modifica i messaggi e-mail inviati agli utenti quando tentano di cancellare i propri profili utente.','it',0,0,0,0),(3981,'Profilo utente annullato','it',0,0,0,0),(3982,'Attiva e modifica i messaggi e-mail inviati agli utenti quando i loro profili utente vengono cancellati.','it',0,0,0,0),(3983,'Avverti l\'utente quando il suo profilo viene cancellato.','it',0,0,0,0),(3984,'Il ruolo %name esiste già. Scegli un altro nome.','it',0,0,0,0),(3985,'Sei autenticato come %user. <a href=\"!user_edit\">Cambia la tua password</a>','it',0,0,0,0),(3986,'Un altro utente (%other_user) è già connesso al sito da questo computer, ma stai cercando di usare un link per il ripristino della password per l\'utente %resetting_user. Per favore <a href=\"!logout\">disconettiti</a> e prova nuovamente.','it',0,0,0,0),(3987,'Il link di accesso su cui hai fatto clic non è valido.','it',0,0,0,0),(3988,'Hai appena usato il link di accesso valido una sola volta. Non è più necessario usare questo collegamento per accedere al sito. Ricorda di cambiare la tua password.','it',0,0,0,0),(3989,'<p>Questo è un login per %user_name valido solo una volta che scadrà il %expiration_date.</p> Fare clic su questo pulsante per accedere al sito e cambiare la propria password. </p>','it',0,0,0,0),(3990,'Hai tentato di utilizzare un collegamento valido solo una volta che è già stato utilizzato o non è più valido. Richiedine uno nuovo usando il form qui sotto.','it',0,0,0,0),(3991,'Quando cancelli il tuo profilo','it',0,0,0,0),(3992,'Quando cancelli il profilo','it',0,0,0,0),(3993,'Richiedi conferma via e-mail per cancellare il profilo.','it',0,0,0,0),(3994,'Se attivato, l\'utente deve confermare via e-mail la cancellazione del profilo.','it',0,0,0,0),(3995,'Se attivato, l\'utente riceverà un messaggio e-mail di notifica dopo la cancellazione del profilo.','it',0,0,0,0),(3996,'Sei sicuro di voler eliminare il tuo profilo utente?','it',0,0,0,0),(3997,'Sei sicuro di voler eliminare il profilo utente %name?','it',0,0,0,0),(3998,'Scegli il metodo per cancellare il profilo.','it',0,0,0,0),(3999,'Una richiesta di conferma per la cancellazione del tuo profilo è stata inviata al tuo indirizzo e-mail.','it',0,0,0,0),(4000,'Il tuo profilo utente sarà bloccato e non sarai in grado di autenticarti. Tutti i tuoi contenuti rimarranno attribuiti al tuo nome utente.','it',0,0,0,0),(4001,'Il tuo profilo utente sarà bloccato e non sarai in grado di autenticarti. Tutti i tuoi contenuti saranno nascosti a chiunque, tranne gli amministratori.','it',0,0,0,0),(4002,'Il tuo profilo utente verrà rimosso e le informazioni del tuo profilo utente eliminate. Tutti i tuoi contenuti saranno assegnati a %anonymous-name.','it',0,0,0,0),(4003,'Il tuo profilo utente verrà rimosso e le informazioni del tuo profilo utente eliminate. Anche tutti i tuoi contenuti saranno eliminati.','it',0,0,0,0),(4004,'Il link di cancellazione del profilo che è stato usato è scaduto. Si prega di richiederne uno nuovo utilizzando il form seguente.','it',0,0,0,0),(4005,'La richiesta di cancellazione è stata inviata a %name %email.','it',0,0,0,0),(4006,'Token relativi a singoli profili utente.','it',0,0,0,0),(4007,'Simboli relativi all\'utente attualmente autenticato.','it',0,0,0,0),(4008,'Il modulo User consente agli utenti di registrarsi, accedere e uscire dal sito. Permette inoltre agli utenti abilitati di gestire i ruoli utente (utilizzati per classificare gli utenti) e i permessi associati a tali ruoli. Per ulteriori informazioni, consultare il manuale in linea per il <a href=\"@user\">modulo User</a>.','it',0,0,0,0),(4009,'Creazione e gestione utenti.','it',0,0,0,0),(4010,'Il modulo User consente agli utenti con i <a href=\"@permissions\">permessi</a> appropriati la creazione di account utente alla<a href=\"@people\">pagina di amministrazione Utenti</a>, dove è anche possibile assegnare agli utenti uno o più ruoli e bloccare o eliminare gli account utente. Se consentito, gli utenti senza account (utenti anonimi) possono creare il proprio account alla pagina <a href=\"@register\">Crea nuovo profilo</a>.','it',0,0,0,0),(4011,'Permessi e ruoli utente.','it',0,0,0,0),(4012,'I <em>ruoli</em> vengono utilizzati per raggruppare e classificare gli utenti; si possono assegnare uno o più ruoli a ciascun utente. Drupal fornisce due ruoli predefiniti: <em>utente anonimo</em> (gli utenti che non sono connessi) e <em>utente autenticato</em> (gli utenti che sono registrati ed hanno effettuato l\'accesso). A seconda delle scelte compiute durante l\'installazione Drupal può definire ruoli aggiuntivi; è possibile creare ulteriori ruoli personalizzati alla pagina <a href=\"@roles\">ruoli</a>. Dopo la creazione dei ruoli è possibile impostare le autorizzazioni per ogni ruolo nella <a href=\"@permissions_user\">pagina dei Permessi</a>. La concessione di un permesso consente agli utenti a cui è stato assegnato un ruolo particolare di eseguire un\'azione sul sito, come la visualizzazione di un particolare tipo di contenuto, la modifica o la creazione di contenuti, la gestione delle impostazioni di un modulo specifico, o utilizzare una particolare funzione del sito (come la ricerca).','it',0,0,0,0),(4013,'La <a href=\"@accounts\">pagina Impostazioni profilo</a> permette di gestire le impostazioni del nome visualizzato per gli utenti anonimi, dei moduli di contatto personale, della registrazione utente e della cancellazione degli account. In questa pagina è anche possibile gestire le impostazioni per la personalizzazione dell\'account (comprese le firme e i ritratti degli utenti), e adattare il testo per i messaggi di posta elettronica che vengono inviati automaticamente durante il processo di registrazione degli utenti.','it',0,0,0,0),(4014,'Per impostazione predefinita, Drupal presenta due ruoli utente:','it',0,0,0,0),(4015,'Utente anonimo: questo ruolo è utilizzato per quanti non hanno un profilo utente o che non sono autenticati.','it',0,0,0,0),(4016,'Utente autenticato: questo ruolo è assegnato automaticamente a tutti gli utenti che hanno effettuato l\'accesso al sito.','it',0,0,0,0),(4017,'Questo modulo permette agli amministratori di aggiungere, modificare e riorganizzare i campi contenenti i dati degli utenti','it',0,0,0,0),(4018,'Questo modulo permette agli amministratori di configurare le modalità di visualizzazione dei campi contenenti i dati degli utenti nella pagina del profilo uente.','it',0,0,0,0),(4019,'Elemento il form fuso orario del modulo User.','it',0,0,0,0),(4020,'Elemento del modulo User per la visualizzazione della cronologia.','it',0,0,0,0),(4021,'Amministra permessi','it',0,0,0,0),(4022,'Visualizza profili utente','it',0,0,0,0),(4023,'Cambia il proprio nome utente','it',0,0,0,0),(4024,'Cancella il proprio profilo','it',0,0,0,0),(4025,'Nota: a seconda della configurazione delle <a href=\"@user-settings-url\">impostazioni utente</a> i contenuti possono essere salvati, rimossi dalla pubblicazione, eliminati o trasferiti all\'utente %anonymous.','it',0,0,0,0),(4026,'Scegliere un metodo per la cancellazione del proprio profilo','it',0,0,0,0),(4027,'Gli spazi sono permessi; la punteggiatura non è ammessa ad eccezione di punti, trattini, apostrofi e underscore.','it',0,0,0,0),(4028,'La firma è troppo lunga: deve essere di un massimo di %max caratteri.','it',0,0,0,0),(4029,'Spiacente, troppi tentativi di accesso falliti dal tuo indirizzo IP. Il tuo indirizzo IP è momentaneamente bloccato. Riprova in seguito o <a href=\"@url\">richiedi una nuova password</a>.','it',0,0,0,0),(4030,'Cancellazione profilo','it',0,0,0,0),(4031,'Cancellazione del profilo dell\'utente','it',0,0,0,0),(4032,'%name è stato disattivato.','it',0,0,0,0),(4033,'Dettagli del profilo [user:name] su [site:name]','it',0,0,0,0),(4034,'Un amministratore ha creato un account per te su [site:name]','it',0,0,0,0),(4035,'Dettagli del profilo utente per [user:name] su [site:name] (in attesa di approvazione)','it',0,0,0,0),(4036,'[user:name],\r\n\r\nTi ringraziamo per la registrazione su [site:name]. La tua richiesta di account è in attesa di approvazione. Una volta approvata, riceverai un\'altra e-mail con le informazioni necessarie per effettuare il primo accesso, impostare la password ed altri dettagli.\r\n\r\n\r\n--  Lo Staff di [site:name]','it',0,0,0,0),(4037,'[user:name] ha richiesto un profilo utente.\r\n\r\n[user:edit-url]','it',0,0,0,0),(4038,'Dati di accesso sostitutivi per [user:name] su [site:name]','it',0,0,0,0),(4039,'Dettagli del profilo utente per [user:name] su [site:name] (approvato)','it',0,0,0,0),(4040,'Dettagli dell\'account di [user:name] su [site:name] (bloccato)','it',0,0,0,0),(4041,'Richiesta di cancellazione del profilo [user:name] su [site:name]','it',0,0,0,0),(4042,'Dettagli dell\'account di [user:name] su [site:name] (eliminato)','it',0,0,0,0),(4043,'Elimina i profili utente selezionati','it',0,0,0,0),(4044,'Il profilo utente %name non può essere eliminato.','it',0,0,0,0),(4045,'Quando si eliminano questi profili utente','it',0,0,0,0),(4046,'Sei sicuro di voler eliminare questi profili utente?','it',0,0,0,0),(4047,'Elimina profili','it',0,0,0,0),(4048,'Per rendere la password più sicura:','it',0,0,0,0),(4049,'Dovrebbe essere di almeno 6 caratteri','it',0,0,0,0),(4050,'Aggiungi lettere minuscole','it',0,0,0,0),(4051,'Aggiungi lettere maiuscole','it',0,0,0,0),(4052,'Aggiungi numeri','it',0,0,0,0),(4053,'Aggiungi punteggiatura','it',0,0,0,0),(4054,'Dovrebbe essere differente dal tuo nome utente','it',0,0,0,0),(4055,'Debole','it',0,0,0,0),(4056,'Sufficiente','it',0,0,0,0),(4057,'Utente bloccato: %name %email.','it',0,0,0,0),(4058,'Attualmente c\'è 1 utente collegato.','it',0,0,0,0),(4059,'Attualmente ci sono @count utenti collegati.','it',4058,1,0,0),(4060,'Siamo spiacenti, c\'è stato più di un tentativo fallito di accesso per questo profilo utente, ed è stato temporaneamente bloccato. Prova ancora più tardi o <a href=\"@url\">richiedi una nuova password</a>.','it',0,0,0,0),(4061,'Siamo spiacenti, ci sono stati più di @count tentativi di accesso falliti per questo profilo utente, ed è stato temporaneamente bloccato. Prova ancora più tardi o <a href=\"@url\">richiedi una nuova password</a>.','it',4060,1,0,0),(4062,'Trova e gestisci le persone che interagiscono con il tuo sito.','it',0,0,0,0),(4063,'Conferma cancellazione profilo utente','it',0,0,0,0),(4064,'É stato ricreato l\'hash delle password degli utenti per migliorare la sicurezza','it',0,0,0,0),(4065,'Fuso orario degli utenti migrati.','it',0,0,0,0),(4066,'Minimale','it',0,0,0,0),(4067,'Inizia con solo pochi moduli attivati.','it',0,0,0,0),(4068,'Pagina base','it',0,0,0,0),(4069,'Utilizza <em>pagine di base</em> per i tuoi contenuti statici come ad esempio per una pagina \'Chi siamo\'.','it',0,0,0,0),(4070,'Utilizza i tag per organizzare in categorie i contenuti riguardanti lo stesso argomento.','it',0,0,0,0),(4071,'Scrivi una lista di parole (separate da virgola) per descrivere il tuo contenuto.','it',0,0,0,0),(4072,'Installa con le caratteristiche comunemente usate pre-configurate.','it',0,0,0,0),(4073,'Larghezza del contenuto','it',0,0,0,0),(4074,'Larghezza fluida','it',0,0,0,0),(4075,'Larghezza fissa','it',0,0,0,0),(4076,'Specifica se il contenuto andrà a capo ad una larghezza fissa o si espanderà in maniera fluida fino alla larghezza della finestra del browser.','it',0,0,0,0),(4077,'Un tema multi-colonna che può essere configurato in modo da personalizzare i colori e cambiare tra layout fluidi o a larghezza fissa','it',0,0,0,0),(4078,'Un semplice tema con una colonna, senza tabelle e a larghezza fluida.','it',0,0,0,0),(4079,'Questo tema mostra il markup HTML e gli stili CSS predefiniti di Drupal. Per capire come realizzare un tema proprio e sovrascrivere (ovverride) il codice predefinito di Drupal, leggi la <a href=\"http://drupal.org/theme-guide\">Guida alla realizzazione dei temi</a>.','it',0,0,0,0),(4080,'Stile immagine','it',0,0,0,0),(4081,'1 aggiornamento in attesa (@number_applied da applicare, @number_incompatible saltati)','it',0,0,0,0),(4082,'@count aggiornamenti in attesa (@number_applied da applicare, @number_incompatible saltati)','it',4081,1,0,0),(4083,'Il modulo Blog permette a ciascun utente di gestire un diario online o <em>blog</em>. I Blog sono costituiti da un elenco di singoli <em>articoli del blog</em>. Nella modalità predefinita, gli articoli del blog sono mostrati per data di creazione in ordine decrescente, con commenti attivati e sono promossi nella prima pagina del sito. Per ulteriori informazioni consultare la voce <a href=\'@blog\'>modulo Blog</a> del manuale online.','it',0,0,0,0),(4084,'Campo autore','it',0,0,0,0),(4085,'Campo oggetto','it',0,0,0,0),(4086,'Esiste già un modulo di contatto con la  categoria %category.','it',0,0,0,0),(4087,'Ciao !recipient-name,','it',0,0,0,0),(4088,'Tentativo di creazione di un\'istanza di un campo @field_name che non esiste o che è attualmente inattivo.','it',0,0,0,0),(4089,'Tentativo di creare un\'istanza del campo @field_name nel bundle @bundle che ha già un istanza dello stesso campo.','it',0,0,0,0),(4090,'Field API per aggiungere campi ad entità come nodi e utenti.','it',0,0,0,0),(4091,'Panoramica dei campi di tutti i tipi di entità.','it',0,0,0,0),(4092,'Configurazione dei formati del testo','it',0,0,0,0),(4093,'Configurare i formati del testo nella <a href=\"@formats\">pagina apposita</a>. <strong>Una configurazione impropria dei formati del testo è un rischio per la sicurezza</strong>. Per garantire questa sicurezza, gli utenti non attendibili dovrebbero avere accesso solo a formati del testo che permettano loro di inserire solo testo semplice o un set predefinito di tag HTML, ricordando che certi tag HTML possono permettere di incorporare link o script malevoli all\'interno del testo. Agli utenti più attendibili, invece, si può concedere l\'uso di formati del testo meno restrittivi, così da poter creare contenuti più ricchi.','it',0,0,0,0),(4094,'Gli utenti che hanno accesso a più formati del testo possono utilizzare la sezione <em>Formato del testo</em> per scegliere uno dei formati disponibili durante la creazione o la modifica di un contenuto. Gli amministratori, usando la pagina <a href=\"@text-formats\">Formati del testo</a>, possono stabilire i formati disponibili per ciascun ruolo, e controllare l\'ordine in cui sono elencati nella sezione <em>Formato del testo</em>.','it',0,0,0,0),(4095,'I formati del testo definiscono i tag HTML, i codici, e altre formattazioni che possono essere utilizzate quando si inserisce del testo. <strong>Una configurazione impropria dei formati del testo è un rischio per la sicurezza</strong>. Per maggiori informazioni consultare la <a href=\"@filterhelp\">pagina di aiuto del modulo Filter</a>.','it',0,0,0,0),(4096,'Mostra altri contenuti','it',0,0,0,0),(4097,'Raggruppa','it',0,0,0,0),(4098,'Il framework di test richiede la classe PHP DOMDocument. Controlla le impostazioni di configurazione alla pagina<a href=\"@link-phpinfo\">PHP info</a>.','it',0,0,0,0),(4099,'Messaggi di errore da visualizzare','it',0,0,0,0),(4100,'Si consiglia di non mostrare alcun errore nei siti in produzione.','it',0,0,0,0),(4101,'Impossibile aprire %file_path','it',0,0,0,0),(4102,'Campo di testo per il nome del termine','it',0,0,0,0),(4103,'Area di testo per la descrizione del termine','it',0,0,0,0),(4104,'Le istruzioni per reimpostare la password verranno inviate all\'indirizzo %email. Devi uscire per poter utilizzare il collegamento per reimpostare la password contenuto nel messaggio e-mail.','it',0,0,0,0),(4105,'Inserisci la tua password corrente per cambiare %mail o %pass. !request_new.','it',0,0,0,0),(4106,'Password corrente','it',0,0,0,0),(4107,'La password è mancante o non è corretta; è obbligatorio cambiare il %name.','it',0,0,0,0),(4108,'Un messaggio di benvenuto con ulteriori informazioni è stato inviato tramite e-mail al nuovo utente <a href=\"@url\">%name</a>.','it',0,0,0,0),(4109,'Un messaggio di benvenuto con ulteriori informazioni è stato inviato al tuo indirizzo di posta elettronica.','it',0,0,0,0),(4110,'Configura i profili utente.','it',0,0,0,0),(4111,'Configura le impostazioni predefinite per gli utenti, compresi i requisiti di registrazione, notifiche e-mail, campi, e ritratti utente.','it',0,0,0,0),(4112,'Modulo %module installato.','it',0,0,0,0),(4113,'La tabella %name esiste già.','it',0,0,0,0),(4114,'Impossibile rinominare %table in %table_new: la tabella %table non esiste.','it',0,0,0,0),(4115,'Impossibile rinominare %table in %table_new: la tabella %table_new esiste già.','it',0,0,0,0),(4116,'Impossibile aggiungere il campo %table.%field: la tabella non esiste.','it',0,0,0,0),(4117,'Impossibile aggiungere il campo %table.%field: il campo esiste già.','it',0,0,0,0),(4118,'Impossibile impostare il valore predefinito per il campo %table.%field: il campo non esiste.','it',0,0,0,0),(4119,'Impossibile rimuovere il valore predefinito per il campo %table.%field: il campo non esiste.','it',0,0,0,0),(4120,'Impossibile aggiungere una chiave primaria alla tabella %table: la tabella non esiste.','it',0,0,0,0),(4121,'Impossibile aggiungere la chiave primaria alla tabella %table: la chiave primaria esiste già.','it',0,0,0,0),(4122,'Impossibile aggiungere la chiave unica %name alla tabella %table: la tabella non esiste.','it',0,0,0,0),(4123,'Impossibile aggiungere la chiave unica %name alla tabella %table: la chiave unica esiste già.','it',0,0,0,0),(4124,'Impossibile aggiungere l\'indice %name alla tabella %table: la tabella non esiste.','it',0,0,0,0),(4125,'Impossibile aggiungere l\'indice %name alla tabella %table: l\'indice esiste già.','it',0,0,0,0),(4126,'Impossibile cambiare la definizione del campo %table.%name: il campo non esiste.','it',0,0,0,0),(4127,'Impossibile rinominare il campo %table.%name in %name_new: il campo destinazione esiste già.','it',0,0,0,0),(4128,'Usa questa pagina per creare un nuovo blocco personalizzato.','it',0,0,0,0),(4129,'Numero di articoli recenti del blog da visualizzare','it',0,0,0,0),(4130,'commenti per @node_type','it',0,0,0,0),(4131,'Modifica il commento %comment','it',0,0,0,0),(4132,'Il modulo Field UI fornisce un interfaccia utente (UI) amministrativa per aggiungere e gestire i campi. I campi possono essere definiti a livello di tipo di contenuto per i contenuti e per i commenti, a livello di vocabolario per i termini di tassonomia, e a livello di sito per i profili utente. Altri moduli possono definire nuovi campi per i dati da essi gestiti. I tipi di campo (testo, immagine, numero, ecc.) vengono definiti dai moduli e raggruppati e gestiti dal <a href=\"@field\">modulo Field</a>. Per maggiori informazioni, consultare la voce <a href=\"@field_ui\" target=\"_blank\">modulo Field UI</a> sul manuale online.','it',0,0,0,0),(4133,'Pianificare i campi','it',0,0,0,0),(4134,'Quale sarà il nome del campo','it',0,0,0,0),(4135,'Un campo ha un\'<em>etichetta</em> (il nome visualizzato nell\'interfaccia utente) e un <em>nome macchina</em> (il nome usato internamente). L\'etichetta potrà essere modificata dopo la creazione del campo, se necessario, ma il nome macchina sarà immodificabile.','it',0,0,0,0),(4136,'Quale tipo di dato sarà memorizzato nel campo','it',0,0,0,0),(4137,'Ogni campo potrà contenere un solo tipo di dati (testo, numeri, file, ecc.). Una volta definito un campo, si sceglierà un particolare <em>tipo di campo</em>, che corrisponderà al tipo di dati che si desiderà inserire. Il tipo di campo non potrà più essere modificato dopo la creazione dello stesso.','it',0,0,0,0),(4138,'In che modo i dati saranno inseriti e visualizzati','it',0,0,0,0),(4139,'Quanti valori il campo memorizzerà','it',0,0,0,0),(4140,'Ogni campo può contenere un valore singolo, valori multipli fino ad un massimo predeterminato, o un numero di valori illimitato. Ad esempio, un campo per l\'inserimento del numero di matricola di un impiegato conterrà un singolo numero, mentre un campo per l\'inserimento di un numero telefonico potrà dover contenere più numeri. Queste impostazioni potranno essere modificate anche dopo la creazione del campo, tenendo presente che la riduzione del numero massimo di valori consentiti comporta il rischio di perdere eventuali informazioni già inserite nel campo.','it',0,0,0,0),(4141,'Riutilizzare i campi','it',0,0,0,0),(4142,'Una volta definito un campo è possibile riutilizzarlo. Ad esempio, se si definisce un campo immagine personalizzato per un certo tipo di contenuto, e si necessita di avere un campo con le stesse caratteristiche in un altro tipo di contenuto, si può aggiungere il medesimo campo anche sul secondo tipo di contenuto, dall\'area dell\'interfaccia utente contrassegnata come <em>Aggiungi un campo esistente</em>. È possibile aggiungere questo campo anche a un vocabolario della tassonomia, ai commenti, ai profili utente, ecc.','it',0,0,0,0),(4143,'Alcune impostazioni dei campi riutilizzati sono univoche per ogni ambito in cui viene utilizzato il campo, altre sono invece condivise tra tutti gli ambiti. Ad esempio, l\'etichetta di un campo di testo è univoca per ogni ambito di utilizzo di quel campo, mentre il numero di valori consentiti è condiviso tra tutti.','it',0,0,0,0),(4144,'Esistono due ragioni a favore della riutilizzazione di un campo. In primo luogo, può far risparmiare il tempo che si impiegherebbe per definire nuovi campi. Inoltre, riutilizzare i campi permette di visualizzare, filtrare, raggruppare, e ordinare contenuti che hanno lo stesso campo, anche se si tratta di contenuti di tipo diverso. Ad esempio, il modulo aggiuntivo Views permette di creare liste e tabelle di contenuti. Se si utilizza lo stesso campo su vari tipi di contenuto, è possibile creare una vista che contenga tutti quei tipi di contenuto, utilizzando il campo comune nella visualizzazione, per filtrare i risultati della ricerca e/o per deciderne l\'ordinamento.','it',0,0,0,0),(4145,'Campi nei contenuti','it',0,0,0,0),(4146,'I campi nei contenuti sono definiti a livello di tipo di contenuto, nella scheda <em>Gestisci campi</em> della pagina di modifica del tipo di contenuto (raggiungibile dalla <a href=\"@types\">pagina Tipi di contenuto</a>). Quando si definisce un campo per uno specifico tipo di contenuto, ogni contenuto di quel tipo conterrà quel campo. Alcuni campi, come il Titolo e il Corpo, sono forniti automaticamente al momento della creazione di un nuovo tipo di contenuto, oppure sono forniti nei tipi di contenuto creati da un profilo di installazione.','it',0,0,0,0),(4147,'Campi nei termini di tassonomia','it',0,0,0,0),(4148,'I campi nei termini di tassonomia vengono definiti a livello di vocabolario, nela scheda <em>Gestisci i campi</em> della pagina di modifica del vocabolario (raggiungibile dalla pagina <a href=\"@taxonomy\">Tassonomia</a>). Quando si definisce un campo per un vocabolario, ogni termine di quel vocabolario conterrà quel campo. Ad esempio, si potrebbe definire un campo immagine per un vocabolario per aggiungere un\'icona ad ogni termine.','it',0,0,0,0),(4149,'Campi nel profilo utente','it',0,0,0,0),(4150,'I campi nei profili utente vengono definiti a livello di sito nella scheda <a href=\"@fields\">Gestisci campi</a> della pagina <a href=\"@accounts\">Impostazioni profilo</a>. Quando si definisce un campo per i profili utente, ogni profilo conterrà quel campo. Ad esempio, si potrebbe aggiungere un campo di testo di tipo long per permettere agli utenti di includere una biografia.','it',0,0,0,0),(4151,'Campi nei commenti','it',0,0,0,0),(4152,'I campi nei commenti vengono definiti a livello di tipi di contenuto, nella scheda <em>Campi dei commenti</em> della pagina di modifica del tipo di contenuto (raggiungibile dalla pagina <a href=\"@types\">Tipi di contenuto</a>). Quando si aggiunge un campo per i commenti, tutti i commenti in un contenuto di quel tipo specifico conterranno quel campo. Ad esempio, si potrebbe aggiungere un campo \"sito web\" nei post del forum per consentire agli utenti che inseriscono commenti di aggiungere il link al proprio sito web.','it',0,0,0,0),(4153,'Amministra i formati del testo e i filtri','it',0,0,0,0),(4154,'Rilevamento della lingua @type','it',0,0,0,0),(4155,'Le stringhe nel file caricato sostituiscono quelle esistenti, le nuove stringhe vengono aggiunte. Le forme plurali vengono aggiornate.','it',0,0,0,0),(4156,'Le stringhe esistenti e le forme plurali vengono conservate, sono aggiunte solo le nuove stringhe.','it',0,0,0,0),(4157,'Scegli come definire quale lingua sarà utilizzata per visualizzare gli elementi della pagina (il testo fornito da Drupal e dai moduli aggiuntivi, come ad esempio le etichette dei campi e i testi di aiuto). Questa decisione è presa valutando una serie di metodi di rilevamento per le lingue: il primo metodo di rilevamento che ottiene un risultato positivo determina la lingua utilizzata. Definire l\'ordine di valutazione dei metodi di rilevamento della lingua in questa pagina.','it',0,0,0,0),(4158,'Testo dell\'interfaccia utente','it',0,0,0,0),(4159,'Per l\'interfaccia usa la lingua rilevata.','it',0,0,0,0),(4160,'Aggiungi un nuovo %type','it',0,0,0,0),(4161,'Il nuovo gruppo viene creato copiando gli elementi del proprio gruppo di scorciatoie predefinito.','it',0,0,0,0),(4162,'Il nuovo gruppo viene creato copiando gli elementi del gruppo %default.','it',0,0,0,0),(4163,'Al momento stai utilizzando il gruppo di scorciatoie %set-name.','it',0,0,0,0),(4164,'Modifica il nome del gruppo.','it',0,0,0,0),(4165,'elimina gruppo','it',0,0,0,0),(4166,'Crea un nuovo set','it',0,0,0,0),(4167,'Il gruppo  di scorciatoie %set_name è stato creato. Puoi modificarlo da questa pagina.','it',0,0,0,0),(4168,'Il nome dell\'insieme è stato aggiornato a %set-name.','it',0,0,0,0),(4169,'Se hai scelto questo gruppo di scorciatoie come predefinito per alcuni o tutti gli utenti, questi potrebbero avere problemi nel caso venisse eliminato.','it',0,0,0,0),(4170,'Sei sicuro di voler eliminare il gruppo di scorciatoie %title?','it',0,0,0,0),(4171,'Il gruppo di scorciatoie %title è stato eliminato.','it',0,0,0,0),(4172,'Ad 1 utente è stato assegnato o ha scelto questo gruppo di scorciatoie.','it',0,0,0,0),(4173,'A @count utenti è stato assegnato o hanno scelto questo gruppo di scorciatoie.','it',4172,1,0,0),(4174,'Il modulo Shortcut consente agli utenti di creare gruppi di <em>scorciatoie</em>, ovvero collegamenti a pagine del sito di uso frequente. Le scorciatoie sono raggruppate in <em>gruppi</em>. Ogni utente, cui sia stato assegnato il permesso di <em>Seleziona un gruppo di scorciatoie</em>, può selezionare un gruppo creato da chiunque altro all\'interno del sito. Per maggiori informazioni consulta il manuale online per il <a href=\"@shortcut\">modulo Shortcut</a>.','it',0,0,0,0),(4175,'Amministrare le scorciatoie','it',0,0,0,0),(4176,'Gli utenti con permessi di <em>Amministrazione delle scorciatoie</em> possono gestire i gruppi di scorciatoie e modificare le scorciatoie all\'interno dei gruppi stessi, dalla <a href=\"@shortcuts\">pagina di amministrazione Scorciatoie</a>','it',0,0,0,0),(4177,'Selezionare gruppi di scorciatoie','it',0,0,0,0),(4178,'Gli utenti con il permesso di cambiare il gruppo di scorciatoie possono sceglierne uno da utilizzare dalla scheda Scorciatoie nella pagina del proprio Profilo utente.','it',0,0,0,0),(4179,'Il modulo Shortcut crea un link aggiungi/rimuovi per ogni pagina del sito; il link permette di aggiungere o rimuovere la pagina corrente dal gruppo di collegamenti attivo in quel momento (se il tema lo visualizza e se si hanno i permessi di modificare il proprio gruppo di collegamenti). Il tema di amministrazione, come impostazione predefinita, visualizza questo link vicino al titolo della pagina, come un piccolo simbolo + o -. Se si clicca sul simbolo +, si aggiungerà quella pagina al proprio gruppo di collegamenti preferito. Se la pagina fa già parte di quel gruppo, sul link verrà visualizzato il simbolo -, che permetterà di rimuovere la pagina corrente dal gruppo di collegamenti.','it',0,0,0,0),(4180,'Definisci quale gruppo di scorciatoie vuoi utilizzare nella <a href=\"@shortcut-link\">scheda Scorciatoie</a> della pagina del tuo profilo.','it',0,0,0,0),(4181,'Modifica il gruppo di scorciatoie attivo','it',0,0,0,0),(4182,'Le modifiche al gruppo di scorciatoie corrente saranno applicate anche per altri utenti se il gruppo è stato assegnato loro da altri. Attivando il permesso \"Seleziona qualsiasi set di scorciatoie\" assieme a questo permesso, gli utenti potranno modificare qualsiasi gruppo di scorciatoie.','it',0,0,0,0),(4183,'Seleziona qualsiasi gruppo di scorciatoie','it',0,0,0,0),(4184,'Seleziona uno dei gruppi di scorciatoie disponibili come attivo. Senza questo permesso, sono gli amministratori a scegliere il gruppo che useranno gli altri utenti.','it',0,0,0,0),(4185,'Crea o modifica insiemi di scorciatoie.','it',0,0,0,0),(4186,'Aggiungi un gruppo di scorciatoie','it',0,0,0,0),(4187,'Modifica il nome del gruppo','it',0,0,0,0),(4188,'Elimina gruppo di scorciatoie','it',0,0,0,0),(4189,'@remote non può essere salvato in @path.','it',0,0,0,0),(4190,'Drupal richiede l\'attivazione delle seguenti estensioni di PHP (vedere la pagina dei <a href=\"@system_requirements\">requisiti di sistema</a> per maggiori informazioni):','it',0,0,0,0),(4191,'Supporto database','it',0,0,0,0),(4192,'Il tuo web server sembra non supportare nessuna comune estensione database PDO. Verifica con il fornitore di hosting per vedere se supporta PDO (PHP Data Objects) e offre un database <a href=\"@drupal-databases\">supportato da Drupal</a>.','it',0,0,0,0),(4193,'Piè pagina - Prima colonna','it',0,0,0,0),(4194,'Piè pagina - Seconda colonna','it',0,0,0,0),(4195,'Piè pagina - Terza colonna','it',0,0,0,0),(4196,'Piè pagina - Quarta colonna','it',0,0,0,0),(4197,'Chirghisi','it',0,0,0,0),(4198,'theme() non dovrebbe essere chiamata prima del caricamento di tutti i moduli.','it',0,0,0,0),(4199,'Supporto per PNG della libreria GD','it',0,0,0,0),(4200,'La data del più recente aggiornamento del commento.','it',0,0,0,0),(4201,'Commento pubblicato: %subject.','it',0,0,0,0),(4202,'Valore on (acceso)','it',0,0,0,0),(4203,'Se lasciato vuoto, verrà utilizzato il valore \"1\".','it',0,0,0,0),(4204,'Valore off (spento)','it',0,0,0,0),(4205,'Se lasciato vuoto, verrà utilizzato il valore \"0\".','it',0,0,0,0),(4206,'Questo campo è stato disattivato poiché non disponi dei permessi necessari per modificarlo.','it',0,0,0,0),(4207,'Seleziona un forum.','it',0,0,0,0),(4208,'La libreria GD per PHP è abilitata ma è stata compilata senza il supporto per le funzioni usate dagli effetti di rotazione e desaturazione. La compilazione è stata probabilmente effettuata usando le librerie GD ufficiali reperibili all\'indirizzo  http://www.libgd.org invece della libreria GD incorporata con PHP. Si dovrebbe ricompilare PHP usando la libreria GD incorporata. Vedere <a href=\"http://www.php.net/manual/book.image.php\">il manuale PHP</a>.','it',0,0,0,0),(4209,'Effetti di rotazione e desaturazione della libreria GD','it',0,0,0,0),(4210,'Visualizza, modifica ed elimina tutti i contenuti a prescindere da permessi esistenti.','it',0,0,0,0),(4211,'Devi convalidare il tuo indirizzo e-mail per questo profilo prima di poterti autenticare attraverso OpenID.','it',0,0,0,0),(4212,'L\'ID HTML %id è unico.','it',0,0,0,0),(4213,'Formato syslog','it',0,0,0,0),(4214,'Specifica un formato per i record di syslog. Le variabili disponibili sono: <dl><dt><code>!base_url</code></dt><dd>URL di base del sito.</dd><dt><code>!timestamp</code></dt><dd>Timestamp Unix del record.</dd><dt><code>!type</code></dt><dd>La categoria a cui appartiene il messaggio.</dd><dt><code>!ip</code></dt><dd>L\'indirizzo IP dell\'utente che attiva il messaggio.</dd><dt><code>!request_uri</code></dt><dd>L\'URI richiesto.</dd><dt><code>!referer</code></dt><dd>Referer HTTP quando disponibile.</dd><dt><code>!uid</code></dt><dd>L\'ID utente.</dd><dt><code>!link</code></dt><dd>Un link da associare al messaggio.</dd><dt><code>!message</code></dt><dd>Il messaggio da registrare nel log.</dd></dl>','it',0,0,0,0),(4215,'Le risorse esterne possono essere ottimizzate automaticamente, possono ridurre sia la dimensione che il numero di richieste effettuate al sito.','it',0,0,0,0),(4216,'Una data in formato \'tempo-da\'. (%date)','it',0,0,0,0),(4217,'La posizione del file relativa alla root di Drupal.','it',0,0,0,0),(4218,'Si è verificato l\'errore HTTP @errorcode mentre si tentava di recuparare @remote.','it',0,0,0,0),(4219,'La tua rete o la tua configurazione del network non permettono a Drupal di accedere alle pagine web, producendo come risultato una diminuzione delle funzionalità. Questo può essere causato dalla configurazione del tuo server web o dalle impostazioni del PHP, e deve essere risolto per scaricare le informazioni sugli aggiornamenti disponibili, prendere i feed dell\'aggregatore, fare il login con OpenID, o utilizzare altri servizi che richiedono la connessione in rete. Se sei certo che Drupal possa accedere alle pagine web ma continui a vedere questo messaggio, aggiungi il codice <code>$conf[\'drupal_http_request_fails\'] = FALSE;</code> alla fine del tuo file settings.php','it',0,0,0,0),(4220,'Una traduzione di %title in %language esiste già, verrà creato un nuovo %type invece che una traduzione.','it',0,0,0,0),(4221,'I tuoi moduli sono stati scaricati e aggiornati.','it',0,0,0,0),(4222,'<a href=\"@update\">Avvia gli aggiornamenti del database</a>','it',0,0,0,0),(4223,'@name <em>(bloccato)</em>','it',0,0,0,0),(4224,'Sei sicuro di voler eliminare il ruolo %name ?','it',0,0,0,0),(4225,'I permessi permettono di controllare ciò che gli utenti possono fare e vedere sul tuo sito. È possibile definire un insieme specifico di autorizzazioni per ogni ruolo. (Vedi la pagina <a href=\"@role\">Ruoli</a> per creare un ruolo). Due ruoli importanti da considerare sono gli Utenti Autenticati e gli Amministratori. Qualsiasi autorizzazione concessa al ruolo Utenti Autenticati sarà data a tutti gli utenti che possono accedere al tuo sito. Qualsiasi ruolo può essere impostato per essere il ruolo di Amministratore del sito, a questo ruolo saranno concessi automaticamente tutti i nuovi permessi. È possibile impostare il ruolo di amministratore alla pagina <a href=\"@settings\">Impostazioni utente</a>.  È necessario fare attenzione a garantire questo livello di accesso e controllo del sito solo agli utenti fidati.','it',0,0,0,0),(4226,'I ruoli consentono di gestire nel dettaglio la sicurezza e l\'amministrazione di Drupal. Un ruolo definisce un gruppo di utenti che possiedono determinati privilegi come definito nella <a href=\"@permissions\">pagina dei Permessi</a>. Alcuni esempi di ruolo sono: utente anonimo, utente autenticato, moderatore, amministratore e così via. In questa sezione puoi definire i nomi e l\'ordine dei ruoli per il tuo sito. Si consiglia di ordinare i ruoli dal meno permissivo (utente anonimo) al più permissivo (amministratore). Per eliminare un ruolo selezionare \"modifica ruolo\".','it',0,0,0,0),(4227,'Usa gli <em>articoli</em> per contenuti come notizie, comunicati stampa o post di un blog.','it',0,0,0,0),(4228,'Filippino','it',0,0,0,0),(4229,'Tedesco svizzero','it',0,0,0,0),(4230,'Scozzese','it',0,0,0,0),(4231,'Il file selezionato %filename non può essere caricato. Sono consentiti solo file con le seguenti estensioni: %extensions.','it',0,0,0,0),(4232,'Pagine in cache per gli utenti anonimi','it',0,0,0,0),(4233,'Bartik','it',0,0,0,0),(4234,'Un tema flessibile e ricolorabile, con molte regioni.','it',0,0,0,0),(4235,'Evidenziato','it',0,0,0,0),(4236,'Seconda barra laterale','it',0,0,0,0),(4237,'Primo elemento del trittico','it',0,0,0,0),(4238,'Elemento centrale del trittico','it',0,0,0,0),(4239,'Ultimo elemento del trittico','it',0,0,0,0),(4240,'Sfondo principale','it',0,0,0,0),(4241,'Sfondo della barra laterale','it',0,0,0,0),(4242,'Bordi della barra laterale','it',0,0,0,0),(4243,'Sfondo piè di pagina','it',0,0,0,0),(4244,'Prugna','it',0,0,0,0),(4245,'!local-task-title!active','it',0,0,0,0),(4246,'Una lista (con spazi come separatori) di tag HTML permessi nel contenuto degli elementi feed. I tag non permessi verranno rimossi dal contenuto.','it',0,0,0,0),(4247,'%field può contenere solo caratteri a-z, underscore o trattini.','it',0,0,0,0),(4248,'%field non può contenere alcun markup.','it',0,0,0,0),(4249,'Nessun alias URL disponibile. <a href=\"@link\">Aggiungi un alias URL</a>.','it',0,0,0,0),(4250,'Per rendere disponibile la ricerca tramite parole chiave, il motore di ricerca mantiene un indice di parole trovate nel contenuto e nei suoi campi, insieme al testo aggiunto da altri moduli (come i commenti dal modulo Comment, e termini di tassonomia dal modulo Taxonomy). Per costruire e mantenere questo indice, è necessario configurare correttamente <a href=\"@cron\">cron</a>. Gli utenti con il permesso <em>Amministra la ricerca</em> possono inoltre configurare le impostazioni di cron nella pagina <a href=\"@searchsettings\">Impostazioni per la ricerca</a>.','it',0,0,0,0),(4251,'Reindicizzazione contenuto','it',0,0,0,0),(4252,'Tutti gli interventi sui contenuti del sito (creazione, modifica o eliminazione di contenuti e commenti) marcano automaticamente i contenuti modificati per l\'indicizzazione o reindicizzazione alla successiva esecuzione di cron. Quando il contenuto è contrassegnato per la reindicizzazione, il contenuto precedente rimane nell\'indice fino all\'esecuzione di cron, quando viene sostituito dal nuovo contenuto. Diversamente dagli interventi sul contenuto, le azioni relative alla struttura del sito non attivano la reindicizzazione dei contenuti. Esempi di azioni connesse alla struttura che influenzano il contenuto del sito sono l\'eliminazione o la modifica dei termini della tassonomia, l\'attivazione o la disattivazione di moduli che aggiungono testo ai contenuti (come Tassonomia, commenti, e moduli che attivano tipi di campo), e la modifica di campi o parametri di visualizzazione dei tipi di contenuto. Se si effettua una di queste azioni e si desidera garantire che l\'indice di ricerca rifletta la struttura aggiornata del sito, è possibile contrassegnare tutti i contenuti per la reindicizzazione cliccando su \"Reindicizza sito\" alla pagina delle <a href=\"@SearchSettings\">Impostazioni per la ricerca</a>. Se il sito ha molti contenuti, potrebbe essere necessario eseguire cron diverse volte per completare la reindicizzazione.','it',0,0,0,0),(4253,'Le pagine in cache non verranno ricreate prima del passaggio di questo lasso di tempo.','it',0,0,0,0),(4254,'Scadenza delle pagine in cache','it',0,0,0,0),(4255,'Tempo massimo per cui una cache esterna può utilizzare una vecchia versione della pagina.','it',0,0,0,0),(4256,'Queste opzioni controllano le impostazioni di visualizzazione per il tema %name. Quando il tuo sito viene visualizzato utilizzando questo tema, saranno utilizzate queste impostazioni.','it',0,0,0,0),(4257,'Amministra aggiornamenti software','it',0,0,0,0),(4258,'Inserisci un indirizzo e-mail valido o usa un simbolo e-mail come %author.','it',0,0,0,0),(4259,'@required_name (Mancante)','it',0,0,0,0),(4260,'@required_name (richiesta versione @compatibility)','it',0,0,0,0),(4261,'@name richiede almeno PHP @version.','it',0,0,0,0),(4262,'Dipendenza irrisolta','it',0,0,0,0),(4263,'@name richiede questo modulo.','it',0,0,0,0),(4264,'@name richiede questo modulo e versione. Attualmente si sta utilizzando @required_name versione @version','it',0,0,0,0),(4265,'Dettagli del sito','it',0,0,0,0),(4266,'Titolo e slogan','it',0,0,0,0),(4267,'Firehouse','it',0,0,0,0),(4268,'Ghiaccio','it',0,0,0,0),(4269,'Non si supporta più di un sistema di archiviazione campi','it',0,0,0,0),(4270,'Motore di archiviazione files non trovato','it',0,0,0,0),(4271,'Per questa query è necessario specificare un tipo di entity.','it',0,0,0,0),(4272,'L\'entità %entity non ha una tabella di base.','it',0,0,0,0),(4273,'Impossibile stabilire come ordinare su @key per @entity_type','it',0,0,0,0),(4274,'Il prefisso per le tabelle del database specificato, %prefix, non è valido. Un prefisso per le tabelle può contenere unicamente caratteri alfanumerici, punti o underscore.','it',0,0,0,0),(4275,'File con le impostazioni predefinite','it',0,0,0,0),(4276,'Il file delle impostazioni predefinite non esiste.','it',0,0,0,0),(4277,'L\'installer di @drupal richiede che il file %default-file non sia modificato in alcun modo dal download originale.','it',0,0,0,0),(4278,'Māori','it',0,0,0,0),(4279,'Tentativo di creare un\'istanza del campo @field_name senza definire il tipo di entità.','it',0,0,0,0),(4280,'Tentativo di creare un\'istanza del campo @field_name nel tipo di entità @entity_type non permesso.','it',0,0,0,0),(4281,'Tentativo di aggiornamento di un\'istanza di un campo @field non esistente.','it',0,0,0,0),(4282,'Tentativo di aggiornare un\'istanza del campo @field nel bundle @bundle che non esiste.','it',0,0,0,0),(4283,'Tentativo di eliminare un campo @field_name che ha ancora delle istanze.','it',0,0,0,0),(4284,'%name: il valore non può essere inferiore a %min.','it',0,0,0,0),(4285,'%name: il valore non può essere maggiore di %max.','it',0,0,0,0),(4286,'Nessun campo è stato ancora definito.','it',0,0,0,0),(4287,'Peso del nuovo campo','it',0,0,0,0),(4288,'Peso del campo aggiunto','it',0,0,0,0),(4289,'Impostazioni di visualizzazione personalizzate','it',0,0,0,0),(4290,'Usa impostazioni personalizzate per le seguenti modalità di visualizzazione','it',0,0,0,0),(4291,'La modalità %view_mode utilizza ora impostazioni di visualizzazione personalizzate. Potresti aver bisogno di <a href=\"@url\">configurarle</a>.','it',0,0,0,0),(4292,'Interfaccia utente per la Field API.','it',0,0,0,0),(4293,'Separa le estensioni con uno spazio o una virgola e non includere il punto iniziale.','it',0,0,0,0),(4294,'Modifica un effetto esistente all\'interno di uno stile.','it',0,0,0,0),(4295,'Elimina un effetto esistente da uno stile.','it',0,0,0,0),(4296,'Elemento del modulo Node','it',0,0,0,0),(4297,'Chiudi l\'overlay di amministrazione','it',0,0,0,0),(4298,'Impostazioni del modulo Sondaggio','it',0,0,0,0),(4299,'Voto del sondaggio','it',0,0,0,0),(4300,'Risultati del sondaggio','it',0,0,0,0),(4301,'Il nome del nuovo gruppo è richiesto.','it',0,0,0,0),(4302,'Il nome del gruppo di scorciatoie %name è già esistente. Scegli un altro nome.','it',0,0,0,0),(4303,'Testo atteso trovato in @field del messaggio e-mail: \"@expected\".','it',0,0,0,0),(4304,'1 e-mail è stata inviata durante questo test.','it',0,0,0,0),(4305,'@count e-mail sono state inviate durante questo test.','it',4304,1,0,0),(4306,'Indirizzi IP bloccati','it',0,0,0,0),(4307,'Gli indirizzi IP elencati qui sono bloccati dal tuo sito. Agli indirizzi bloccati viene completamente impedito l\'accesso al sito e viene mostrato loro un breve messaggio che spiega la situazione.','it',0,0,0,0),(4308,'Il tipo di contenuto %rowtype aveva gli allegati disattivati ma conteneva file allegati. Il caricamento dei file è stato ripristinato al fine di migrare i dati esistenti. Puoi eliminare il campo \"file allegati\" nel tipo di contenuto %rowtype se questi dati non sono più necessari.','it',0,0,0,0),(4309,'Il modulo Upload è stato migrato nel modulo File.','it',0,0,0,0),(4310,'Le variabili disponibili sono: [site:name], [site:url], [user:name], [user:mail], [site:login-url], [site:url-brief], [user:edit-url], [user:one-time-login-url], [user:cancel-url].','it',0,0,0,0),(4311,'non ancora assegnato','it',0,0,0,0),(4312,'non ancora creato','it',0,0,0,0),(4313,'[user:name],\r\n\r\nTi ringraziamo per la registrazione su [site:name]. Puoi accedere al sito cliccando il link seguente o copiandolo ed incollandolo nella barra degli indirizzi del tuo browser:\r\n\r\n[user:one-time-login-url]\r\n\r\nQuesto link può essere utilizzato una sola volta e ti dirigerà ad una pagina dove potrai impostare la tua password.\r\n\r\nDopo aver impostato la tua password potrai accedere al sito all\'indirizzo [site:login-url] usando:\r\n\r\nnome utente: [user:name]\r\npassword: la tua password\r\n\r\n--  Lo Staff di [site:name]','it',0,0,0,0),(4314,'[user:name],\r\n\r\nUn amministratore di [site:name] ha creato un profilo utente per te. Puoi ora accedere cliccando su questo collegamento o copiandolo e incollandolo nel tuo browser:\r\n\r\n[user:one-time-login-url]\r\n\r\nQuesto collegamento può essere usato per accedere solo una volta, verrai indirizzato a una pagina dove potrai impostare la tua password.\r\n\r\nDopo aver impostato la tua password, potrai effettuare l\'accesso a [site:login-url] usando i seguenti dati:\r\n\r\nnome utente: [user:name]\r\npassword: Your password\r\n\r\n--  lo staff di [site:name]','it',0,0,0,0),(4315,'[user:name],\r\n\r\nè stata inviata una richiesta di ripristino della password per il tuo account su [site:name].\r\n\r\nPuoi ora accedere cliccando sul seguente collegamento o copiandolo e incollandolo nel browser:\r\n\r\n[user:one-time-login-url]\r\n\r\nQuesto collegamento può essere utilizzato per accedere una sola volta, verrai indirizzato a una pagina dove potrai impostare la tua password. Scade dopo un giorno e non succederà nulla se non verrà utilizzato.\r\n\r\n--  lo staff di [site:name]','it',0,0,0,0),(4316,'[user:name],\r\n\r\nIl tuo profilo su [site:name] è stato bloccato.\r\n\r\n--  Lo staff di [site:name]','it',0,0,0,0),(4317,'[user:name],\r\n\r\nAbbiamo ricevuto una richiesta di cancellazione del tuo account su [site:name].\r\n\r\nPuoi cancellare il tuo account su [site:url-brief] cliccando sul link seguente o copiandolo e incollandolo nella barra degli indirizzi del tuo browser:\r\n\r\n[user:cancel-url]\r\n\r\nNOTA: Una volta cancellato l\'account non potrà essere ripristinato.\r\n\r\nQuesto link scadrà tra 24 ore; se non lo usi non succederà nulla.\r\n\r\n--  Lo Staff di [site:name]','it',0,0,0,0),(4318,'[user:name],\r\n\r\nIl tuo profilo su [site:name] è stato cancellato.\r\n\r\n-- Lo staff di [site:name]','it',0,0,0,0),(4319,'La possibilità di inviare agli utenti le loro password in chiaro è stata rimossa in Drupal 7. I modelli per l\'invio di messaggi e-mail sono stati modificati di conseguenza. Si dovrebbe <a href=\"@template-url\">rivedere questi modelli</a> per essere sicuri che siano appropriati per il proprio sito.','it',0,0,0,0),(4320,'Nessuno (immagine originale)','it',0,0,0,0),(4321,'L\'URL della pagina di modifica del profilo.','it',0,0,0,0),(4322,'Il nonce proveniente da @endpoint è stato rifiutato, perché non formattato correttamente, nonce: @nonce.','it',0,0,0,0),(4323,'Il nonce proveniente da @endpoint è fuori dall\'intervallo previsto (differenza di tempo: @intervals). Controllare un eventuale disallineamento dell\'orologio.','it',0,0,0,0),(4324,'Il tentativo di ripetizione del nonce da parte di @ip è stato bloccato, nonce: @nonce.','it',0,0,0,0),(4325,'Visualizzazione dei commenti','it',0,0,0,0),(4326,'Nome del nuovo campo','it',0,0,0,0),(4327,'Errore nell\'aperura del socket @socket','it',0,0,0,0),(4328,'callback di consegna non trovata','it',0,0,0,0),(4329,'il callback %callback non è stato trovato: %q.','it',0,0,0,0),(4330,'Il file %file non può essere copiato poiché la destinazione non è valida. Maggiori informazioni sono disponibili nei log di sistema.','it',0,0,0,0),(4331,'Non è stato possibile copiare il file %file, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.','it',0,0,0,0),(4332,'Non è stato possibile copiare il file %file, poiché ne esiste già uno con lo stesso nome nella cartella di destinazione.','it',0,0,0,0),(4333,'Il file %file non può essere spostato poiché la destinazione non è valida. Maggiori informazioni sono disponibili nei log di sistema.','it',0,0,0,0),(4334,'Il file %file non può essere eliminato poiché non è un valido URI. Maggiori informazioni sono disponibili nei log di sistema.','it',0,0,0,0),(4335,'La destinazione non è valida e i dati non sono stati memorizzati. Per maggiori dettagli consultare il log di sistema.','it',0,0,0,0),(4336,'Il file %file (%realpath) non è stato copiato, perché la destinazione %destination non è valida. Ciò dipende spesso da un uso improprio di file_copy() o dalla mancanza di uno stream wrapper.','it',0,0,0,0),(4337,'Il file %file (%realpath) non può essere copiato poiché non esiste.','it',0,0,0,0),(4338,'Non è stato possibile copiare file %file, poichè esiste già un file con lo stesso nome nella cartella di destinazione (%directory)','it',0,0,0,0),(4339,'Non è stato possibile copiare %file, poichè nella copia avrebbe sovrascritto se stesso.','it',0,0,0,0),(4340,'Non è stato possibile copiare %file alla destinazione %destination','it',0,0,0,0),(4341,'Non è stato possibile spostare %file (%realpath) poiché la destinazione %destination non è valida. Questo può avvenire a causa di un uso scorretto della funzione file_move() o di uno stream wrapper mancante.','it',0,0,0,0),(4342,'Non è stato possibile eliminare %file (%realpath) poiché non costituisce un URI valido. Questo può avvenire a causa di un uso scorretto della funzione file_delete() o di uno stream wrapper mancante.','it',0,0,0,0),(4343,'Non è stato possibile salvare i dati poiché la destinazione %destination non è valida.  Questo può avvenire a causa di un uso scorretto della funzione file_save_data() o di uno stream wrapper mancante.','it',0,0,0,0),(4344,'La tua configurazione di PHP supporta un solo tipo di database, quindi il tipo di database è stato selezionato automaticamente.','it',0,0,0,0),(4345,'Connessione al server del database fallita. Il server riporta il seguente messaggio: %error.<ul><li>Verificare che il server del database sia funzionante</li><li>Verificare che il database esista e di aver digitato correttamente il nome del database</li><li>Verificare che username e password siano corretti</li><li>Assicurarsi di aver digitato correttamente il nome dell\'host del database.</li></ul>','it',0,0,0,0),(4346,'La versione di PHP in uso ha dei problemi noti con PostgreSQL. É necessario aggiornare PHP alla versione 5.2.11, 5.3.1 o superiore.','it',0,0,0,0),(4347,'Nascondi le regioni del tema','it',0,0,0,0),(4348,'La personalizzazione della dashboard richiede il permesso !permission-name .','it',0,0,0,0),(4349,'Per personalizzare la pagina dashboard, sposta i blocchi delle regioni dashboard sulla <a href=\"@dashboard\">pagina di amministrazione dashboard</a>, o attiva JavaScript su questa pagina per usare l\'interfaccia drag-and-drop.','it',0,0,0,0),(4350,'Configura i blocchi disponibili per la dashboard','it',0,0,0,0),(4351,'Cattura e trascina questi blocchi sulle colonne sottostanti. I cambiamenti vengono salvati automaticamente. Ulteriori opzioni sono disponibili sulla <a href=\"@dashboard-url\">pagina di configurazione</a>.','it',0,0,0,0),(4352,'Configura i blocchi che possono essere mostrati nella dashboard.','it',0,0,0,0),(4353,'Il modulo Database logging permette di visualizzare un evento nella pagina <a href=\"@dblog\">Log recenti</a>. Il log è una lista cronologica di eventi contenenti dati sull\'uso, sulle prestazioni, errori, avvisi e informazioni sulle operazioni. Gli amministratori dovrebbero consultare il log regolarmente per assicurarsi che il sito stia lavorando correttamente.','it',0,0,0,0),(4354,'In caso di errori o problemi sul sito, i <a href=\"@dblog\">Log recenti</a> possono essere utili per l\'attività di debug, dato che mostrano la sequenza degli eventi. I messaggi di log includono informazioni sull\'utilizzo, avvisi ed errori.','it',0,0,0,0),(4355,'Il modulo Database logging tiene sotto controllo il sito, raccogliendo eventi di sistema in un log (mostrato qui) per essere esaminati successivamente da una persona autorizzata. Questo log è una lista di eventi con dati sull\'utilizzo, sulle prestazioni, errori, avvisi, e informazioni sulle operazioni. È fondamentale esaminare regolarmente i log recenti, dato che spesso è l\'unico mezzo per sapere cosa sta succedendo.','it',0,0,0,0),(4356,'Messaggi di log del database da mantenere','it',0,0,0,0),(4357,'Il numero massimo di messaggi da tenere nel log. Richiede l\'<a href=\"@cron\">esecuzione di cron</a>.','it',0,0,0,0),(4358,'Messaggi di log recenti','it',0,0,0,0),(4359,'Definire una stringa da porre come suffisso al valore, come \' m\', \' kb/s\'. Lasciare vuoto se non si desidera nessun suffisso. Separare i valori singolari e plurali tramite una pipe (\'pound|pounds\').','it',0,0,0,0),(4360,'Separatore delle migliaia','it',0,0,0,0),(4361,'Mostra prefisso e suffisso.','it',0,0,0,0),(4362,'Mostra con prefisso e suffisso.','it',0,0,0,0),(4363,'- Selezionare un valore -','it',0,0,0,0),(4364,'Lunghezza del testo troncato','it',0,0,0,0),(4365,'Nessun campo visualizzato.','it',0,0,0,0),(4366,'Nessun campo nascosto.','it',0,0,0,0),(4367,'Impostazioni formato:','it',0,0,0,0),(4368,'Il file utilizzato nel campo !name non ha riferimenti.','it',0,0,0,0),(4369,'I formati del testo vengono presentati nella pagina di modifica del contenuto nell\'ordine definito in questa pagina. Il primo formato disponibile per un utente verrà selezionato come impostazione predefinita.','it',0,0,0,0),(4370,'Formato del testo mancante: %format','it',0,0,0,0),(4371,'Collega immagine a','it',0,0,0,0),(4372,'Stile immagine: @style','it',0,0,0,0),(4373,'Collegata al contenuto','it',0,0,0,0),(4374,'Collegata al file','it',0,0,0,0),(4375,'Visualizzato quando il cursore del mouse passa sopra questa voce del menu.','it',0,0,0,0),(4376,'Il modulo Menu permette la creazione \"al volo\" di voci del menu direttamente dalla pagina di modifica dei contenuti. Per configurare queste opzioni per uno specifico tipo di contenuto, Visitare la pagina <a href=\"@content-types\">Tipi di contenuto</a> , selezionare il link <em>modifica</em> per il tipo di contenuto desiderato, e andare alla sezione <em>Impostazioni del menu</em>.','it',0,0,0,0),(4377,'Lingua non definita (@langcode)','it',0,0,0,0),(4378,'Formato: %time. Il formato data è AAAA-MM-GG e %timezone è la differenza di fuso orario da quello UTC. Lascia vuoto per usare l\'ora di invio del form.','it',0,0,0,0),(4379,'Overlay di amministrazione','it',0,0,0,0),(4380,'Usa l\'overlay per le pagine di amministrazione','it',0,0,0,0),(4381,'Sovrapponi le pagine di amministrazione alla pagina di partenza','it',0,0,0,0),(4382,'Un formato del testo <a href=\"@php-code\">codice PHP</a> è stato creato.','it',0,0,0,0),(4383,'Scegli quali moduli per la ricerca attivare tra quelli disponibili.','it',0,0,0,0),(4384,'Modulo di ricerca predefinito','it',0,0,0,0),(4385,'Scegli qual è il modulo di ricerca predefinito.','it',0,0,0,0),(4386,'Il modulo di ricerca predefinito non è tra quelli attivi.','it',0,0,0,0),(4387,'La ricerca è attualmente disattivata.','it',0,0,0,0),(4388,'... !excerpt ... !excerpt ...','it',0,0,0,0),(4389,'Identità Syslog','it',0,0,0,0),(4390,'Stringa che verrà aggiunta in testa ad ogni messaggio inviato a Syslog. Se si gestiscono più siti che inviano i log allo stesso file Syslog, aggiungere un identificativo univoco per ogni sito aiuta a distinguerli durante la consultazione.','it',0,0,0,0),(4391,'Opzionalmente è possibile specificare una URL relativa da visualizzare come feed per la prima pagina. Lascia vuoto per visualizzare il feed predefinito.','it',0,0,0,0),(4392,'Pagine di errore','it',0,0,0,0),(4393,'Il percorso \'%path\' non è valido oppure non sei abilitato all\'accesso.','it',0,0,0,0),(4394,'Ultima esecuzione: %cron-last fa.','it',0,0,0,0),(4395,'Esegui cron ogni','it',0,0,0,0),(4396,'Quando attivato, solo gli utenti con il permesso <a href=\"@permissions-url\">Usa il sito quando è in manutenzione</a> potranno accedere al sito per operazioni di manutenzione;  tutti gli altri utenti o visitatori vedranno il messaggio di sito in manutenzione configurabile qui di seguito. Gli utenti autorizzati potranno accedere direttamente dalla pagina di <a href=\"@user-login\">accesso utente</a>.','it',0,0,0,0),(4397,'Per garantire il corretto funzionamendo del sito e dei moduli è necessario eseguire regolarmente una serie di operazioni amministrative di routine. Il modulo System gestisce questo compito facendo uso di un processo di sistema detto \"cron\". È possibile verificare lo stato delle operazioni eseguite da cron visitando la pagina <a href=\"@status\">Resoconto sullo stato</a>. Per ulteriori informazioni, consultare il manuale online per <a href=\"@handbook\">la configurazione dei cron job</a>. È possibile configurare cron alla <a href=\"@cron\">pagina di configurazione Cron</a>.','it',0,0,0,0),(4398,'Modifica nome del sito, indirizzo e-mail, slogan, prima pagina predefinita, numero di contenuti per pagina, pagine di errore.','it',0,0,0,0),(4399,'Gestisci le operazioni automatiche di manutenzione del sito.','it',0,0,0,0),(4400,'Il file temporaneo \"%path\" non è stato eliminato durante le operazioni di pulizia in quanto è utilizzato dai seguenti moduli: %modules.','it',0,0,0,0),(4401,'Peso per il termine aggiunto','it',0,0,0,0),(4402,'Sottocartella nella cartella di caricamento dei file dove le immagini verranno archiviate','it',0,0,0,0),(4403,'Le immagini più grandi verranno rimpicciolite a queste dimensioni.','it',0,0,0,0),(4404,'La dimensione massima del file per le immagini caricate. Le dimensioni massime sono generalmente limitate solo dalle impostazioni di PHP; le immagini vengono automaticamente ridimensionate secondo i parametri specificati sopra.','it',0,0,0,0),(4405,'Il tuo volto virtuale o ritratto. Le immagini con dimensioni superiori a @dimensions pixel saranno ridimensionate.','it',0,0,0,0),(4406,'[user:name],\r\n\r\nIl tuo account su [site:name] è stato attivato.\r\n\r\nPuoi ora accedere cliccando sul seguente collegamento o copiandolo e incollandolo nel browser:\r\n\r\n[user:one-time-login-url]\r\n\r\nQuesto collegamento può essere utilizzato per accedere una sola volta, verrai indirizzato a una pagina dove potrai impostare la tua password.\r\n\r\nDopo aver impostato la password, potrai accedere a [site:login-url] le prossime volte utilizzando:\r\n\r\nnome utente: [user:name]\r\npassword: Your password\r\n\r\n--  lo staff di [site:name]','it',0,0,0,0),(4407,'Carica un\'immagine da associare a questo articolo.','it',0,0,0,0),(4408,'Profilo minimale per eseguire test. Include solo i moduli assolutamente necessari.','it',0,0,0,0),(4409,'Il file delle impostazioni è scrivibile.','it',0,0,0,0),(4410,'Il file di impostazioni è di proprietà del server web.','it',0,0,0,0),(4411,'Il processo d\'installazione @drupal non è riuscito a creare un file di definizioni con i giusti permessi. Accedi al tuo server web, elimina il file esistente %file e creane uno nuovo copiando il file %default_file su %file. Maggiori dettagli sull\'installazione di Drupal sono disponibili su <a href=\"@install_txt\">INSTALL.txt</a>. Se hai problemi con i permessi dei file sul tuo server, consulta il <a href=\"@handbook_url\">manuale online</a>.','it',0,0,0,0),(4412,'Query di fusione non valida: nessuna condizione','it',0,0,0,0),(4413,'Peso per il blocco @block','it',0,0,0,0),(4414,'Regione per il blocco @block','it',0,0,0,0),(4415,'Approvazione commento','it',0,0,0,0),(4416,'I commenti inseriti da utenti che hanno il permesso <em>Salta l\'approvazione dei commenti</em> vengono pubblicati immediatamente. Tutti gli altri commenti vengono posti nella coda dei <a href=\'@comment-approval\'>Commenti non approvati</a>, finché un utente che ha il permesso di <em>Amministrare i commenti</em> li pubblica o elimina. I commenti pubblicati possono essere gestiti dalla pagina di amministrazione relativa ai <a href=\'@admin-comment\'>Commenti pubblicati</a>.','it',0,0,0,0),(4417,'Pubblica commenti','it',0,0,0,0),(4418,'Salta l\'approvazione dei commenti','it',0,0,0,0),(4419,'Visualizza e personalizza la tua dashboard.','it',0,0,0,0),(4420,'Personalizza la tua dashboard.','it',0,0,0,0),(4421,'Questa funzione può essere usata solamente per la cancellazione di campi che non contengono dati','it',0,0,0,0),(4422,'Sei sicuro di voler disattivare il formato del testo %format?','it',0,0,0,0),(4423,'I formati del testo disattivati sono completamente rimossi dall\'interfaccia di amministrazione ed i contenuti salvati con questi formati non verranno visualizzati. L\'operazione non può essere annullata.','it',0,0,0,0),(4424,'Formato del testo %format disattivato.','it',0,0,0,0),(4425,'Formati del testo','it',0,0,0,0),(4426,'Disattiva il formato del testo','it',0,0,0,0),(4427,'Discussione calda, nuovi commenti','it',0,0,0,0),(4428,'Discussione calda','it',0,0,0,0),(4429,'Discussione normale','it',0,0,0,0),(4430,'Discussione chiusa','it',0,0,0,0),(4431,'Riferimenti per l\'uso, la configurazione e i moduli.','it',0,0,0,0),(4432,'e dove %property è %value','it',0,0,0,0),(4433,'dove %property è %value','it',0,0,0,0),(4434,'e dove','it',0,0,0,0),(4435,'Il modulo di RDF arricchisce i contenuti con metadati per consentire ad altre applicazioni (ad esempio, motori di ricerca, aggregatori, e così via) di capire meglio le relazioni e gli attributi del contenuto. Questi dati semanticamente arricchiti ed elaborabili in automatico per i siti Drupal utilizzano le <a href=\"@rdfa\">specifiche RDFa</a> che permettono ai dati RDF di essere incorporati nel codice HTML. Altri moduli possono definire mappature RDF per i loro dati; e il modulo RDF rende disponibili questi dati al tema del sito. I moduli del core di Drupal definiscono le mappature RDF per il loro modello di dati, e i temi del core rendono disponibili questi metadati assieme alle informazioni leggibili dagli utenti. Per ulteriori informazioni, consultare il manuale online per il <a href=\"@rdf\">modulo RDF</a>.','it',0,0,0,0),(4436,'L\'URL corrente è @url.','it',0,0,0,0),(4437,'Il titolo della pagina @actual è uguale a @expected.','it',0,0,0,0),(4438,'Il titolo della pagina @actual non è uguale a @unexpected.','it',0,0,0,0),(4439,'Risposta HTTP inattesa !code, effettiva !curl_code','it',0,0,0,0),(4440,'Configura i permessi del modulo @module','it',0,0,0,0),(4441,'Seleziona e configura i temi.','it',0,0,0,0),(4442,'Gestisci impostazioni.','it',0,0,0,0),(4443,'Visualizza resoconti, aggiornamenti ed errori.','it',0,0,0,0),(4444,'Memorizza i dati temporeanei per system_update_7061','it',0,0,0,0),(4445,'Barra di amministrazione','it',0,0,0,0),(4446,'Installa nuovo modulo o tema','it',0,0,0,0),(4447,'Installa nuovo modulo','it',0,0,0,0),(4448,'Installa nuovo tema','it',0,0,0,0),(4449,'%property è %value','it',0,0,0,0),(4450,'Gestisci profili utente, ruoli e permessi.','it',0,0,0,0),(4451,'Il permesso \'crea commenti senza approvazione\' è stato rinominato in \'salta l\'approvazione dei commenti\'.','it',0,0,0,0),(4452,'Niente','it',0,0,0,0),(4453,'Lolspeak','it',0,0,0,0),(4454,'%type: !message in %function (linea %line di %file).','it',0,0,0,0),(4455,'Aggiorna @title','it',0,0,0,0),(4456,'Un nome univoco ad uso interno. Può contenere solo lettere minuscole, numeri e underscore.','it',0,0,0,0),(4457,'Il nome ad uso interno deve essere univoco.','it',0,0,0,0),(4458,'Il nome ad uso interno può contenere solo lettere minuscole, numeri e trattini.','it',0,0,0,0),(4459,'Il nome ad uso interno è già utilizzato. Deve invece essere univoco.','it',0,0,0,0),(4460,'Asturiano','it',0,0,0,0),(4461,'Inglese, Britannico','it',0,0,0,0),(4462,'Creolo Haitiano','it',0,0,0,0),(4463,'Portoghese, internazionale','it',0,0,0,0),(4464,'Peso per @title','it',0,0,0,0),(4465,'Peso per la riga @number','it',0,0,0,0),(4466,'Genitore per @title','it',0,0,0,0),(4467,'Etichetta del nuovo campo','it',0,0,0,0),(4468,'Genitore per il nuovo campo','it',0,0,0,0),(4469,'Tipo del nuovo campo','it',0,0,0,0),(4470,'Widget per il nuovo campo','it',0,0,0,0),(4471,'Etichetta esistente del campo','it',0,0,0,0),(4472,'Genitore di un campo esistente','it',0,0,0,0),(4473,'Campo esistente da condividere','it',0,0,0,0),(4474,'Widget per un campo esistente','it',0,0,0,0),(4475,'Etichetta visibile all\'utente per @title','it',0,0,0,0),(4476,'Formatter per @title','it',0,0,0,0),(4477,'Genitori di @title','it',0,0,0,0),(4478,'Visibilità per @title','it',0,0,0,0),(4479,'Ci sono dati per questo campo nel database. Le impostazioni del campo non possono più essere modificate.','it',0,0,0,0),(4480,'Peso per il nuovo file','it',0,0,0,0),(4481,'Scegli un file','it',0,0,0,0),(4482,'Peso per il nuovo effetto','it',0,0,0,0),(4483,'origine della lingua @title','it',0,0,0,0),(4484,'Attiva la voce del menu @title','it',0,0,0,0),(4485,'Un nome univoco da usare nella costruzione dell\'URL per il menu. Deve contenere solo lettere minuscole, numeri e trattini.','it',0,0,0,0),(4486,'Un nome univoco ad uso interno per questo tipo di contenuto. Deve contenere solo lettere minuscole, numeri e underscore. Questo nome verrà utilizzato per costruire gli URL della pagina node%-add, in cui gli underscore saranno convertiti in trattini.','it',0,0,0,0),(4487,'Etichetta per l\'opzione','it',0,0,0,0),(4488,'Nuova etichetta per l\'opzione','it',0,0,0,0),(4489,'Conteggio dei voti per l\'opzione @label','it',0,0,0,0),(4490,'Conteggio dei voti per la nuova opzione','it',0,0,0,0),(4491,'Peso per l\'opzione @label','it',0,0,0,0),(4492,'Peso per la nuova opzione','it',0,0,0,0),(4493,'Categoria per @title','it',0,0,0,0),(4494,'Moduli attivi','it',0,0,0,0),(4495,'@original_title (@parent_title)','it',0,0,0,0),(4496,'La tua versione di PHP è troppo vecchia. Drupal richiede almeno la versione 5.2.5., oppure PHP @version con la patch htmlspecialchars security applicata.','it',0,0,0,0),(4497,'Il tuo web server non sembra supportare PDO (PHP Data Objects). Chiedi al tuo servizio di hosting se è in grado di fornire supporto per l\'estensione PDO nativa. Vedi la pagina dei <a href=\"@system_requirements\">requisiti di sistema</a> per maggiori informazioni.','it',0,0,0,0),(4498,'Il server web sembra aver installato una versione errata di PDO. Drupal 7 richiede l\'estensione PDO dal core di PHP. Questo sistema ha una versione precedente di PECL. Vedi la pagina <a href=\"@link\"> requisiti di sistema </a> per ulteriori informazioni.','it',0,0,0,0),(4499,'Elenco delle azioni attivabili in risposta a trigger relativi a !description','it',0,0,0,0),(4500,'La versione %version del database è inferiore alla versione richiesta: %minimum_version.','it',0,0,0,0),(4501,'!theme (tema predefinito)','it',0,0,0,0),(4502,'!theme (tema amministrazione)','it',0,0,0,0),(4503,'Il modulo Dashboard fornisce una sorta di<a href=\"@dashboard\">Cruscotto</a> nell\'interfaccia amministrativa per organizzare le funzioni di amministrazione e di navigazione e per rintracciare informazioni all\'interno del sito. Questa dashboard contiene blocchi, che possono essere aggiunti e disposti a piacimento usando l\'interfaccia drag-and-drop che appare quando si fa clic su <em>Personalizza dashboard</em>. All\'interno dell\'interfaccia, i blocchi che non vengono utilizzati per l\'amministrazione del sito non sono visualizzati come impostazione predefinita, ma possono essere aggiunti tramite il link <em> Aggiungi altri blocchi</em>. Per ulteriori informazioni, consultare la voce <a href=\"@handbook\">modulo Dashboard</a> sul manuale online.','it',0,0,0,0),(4504,'Riorganizza i blocchi da visualizzare all\'interno della <a href=\"@dashboard-url\">Dashboard</a>. I blocchi inseriti nella regione <em>Dashboard (disattivata)</em> non vengono visualizzati nella pagina della dashboard, ma sono a disposizione nell\'interfaccia <em>Personalizza dashboard</em>. La rimozione di un blocco dal display della dashboard attiva lo rende disponibile nella <a blocchi href=\"@blocks-url\">pagina di amministrazione Blocchi</a>.','it',0,0,0,0),(4505,'Aggiungi altri blocchi','it',0,0,0,0),(4506,'URL di ripiego','it',0,0,0,0),(4507,'Usa la lingua già rilevata per gli URL se non ne vengono rilevate altri.','it',0,0,0,0),(4508,'%type_name: Crea nuovo contenuto','it',0,0,0,0),(4509,'%type_name: Modifica i propri contenuti','it',0,0,0,0),(4510,'%type_name: Modifica tutti i contenuti','it',0,0,0,0),(4511,'%type_name: Elimina i propri contenuti','it',0,0,0,0),(4512,'%type_name: Elimina qualsiasi contenuto','it',0,0,0,0),(4513,'Il messaggio è stato nascosto. Puoi modificare le impostazioni dell\'overlay in ogni momento visitando la pagina del tuo profilo.','it',0,0,0,0),(4514,'Se riscontri problemi di accesso alle pagine di amministrazione per questo sito, disattiva l\'overlay di amministrazione alla pagina del tuo profilo.','it',0,0,0,0),(4515,'Nascondi questo messaggio','it',0,0,0,0),(4516,'Opzioni per l\'overlay di amministrazione','it',0,0,0,0),(4517,'Passaggi successivi','it',0,0,0,0),(4518,'Il file %file non è stato copiato perché la directory di destinazione %destination non è configurata correttamente.','it',0,0,0,0),(4519,'impostazioni @driver_name','it',0,0,0,0),(4520,'MySQL, MariaDB o equivalente','it',0,0,0,0),(4521,'SQLite','it',0,0,0,0),(4522,'File del database','it',0,0,0,0),(4523,'Percorso assoluto del file dove i dati di @drupal verranno memorizzati. Deve essere scrivibile dal server web e non si deve trovare fuori dalla web root.','it',0,0,0,0),(4524,'La cartella indicata non è scrivibile dal server web.','it',0,0,0,0),(4525,'Popup di autocompletamento','it',0,0,0,0),(4526,'Ricerca in corso...','it',0,0,0,0),(4527,'Il modulo Field permette di definire campi personalizzati per dei tipi di <em>Entità</em> (le entità includono contenuti, commenti, profili utenti e termini di tassonomia). Il modulo Field si prende cura di archiviare, caricare, modificare, e visualizzare i dati dei campi. Molti utenti non interagiranno con il modulo direttamente, ma useranno invece l\'interfaccia utente del modulo <a href=\"@field-ui-help\">Field UI</a>. Chi sviluppa moduli può utilizzare le Field API per fare in modo che nuovi tipi di entità possano divenire adatte ad associare dei campi. Per ulteriori informazioni, consultare la voce <a href=\"@field\">modulo Field</a> sul manuale online.','it',0,0,0,0),(4528,'Non sono ancora presenti dei campi.','it',0,0,0,0),(4529,'Grassetto','it',0,0,0,0),(4530,'Dopo aver creato uno stile per le immagini, è possibile aggiungervi effetti come: ritaglio, trasformazione in scala, ridimensionamento, rotazione e desaturazione (altri moduli aggiuntivi forniscono ulteriori effetti). Ad esempio, combinando gli effetti ritaglio, trasformazione in scala e desaturazione, è possibile creare miniature quadrate in scala di grigi.','it',0,0,0,0),(4531,'Leggi tutto<span class=\"element-invisible\"> su @title</span>','it',0,0,0,0),(4532,'Specificare opzionalmente un URL alternativo da cui è possibile accedere a questo contenuto. Ad esempio, digitare \"chi siamo\" per una pagina di Informazioni. Utilizzare un percorso relativo e non aggiungere lo \"slash\" finale o l\'alias non funzionerà.','it',0,0,0,0),(4533,'Il modulo PHP filter aggiunge un filtro PHP per l\'utilizzo con i <a href=\"@filter\">formati del testo</a>. Questo filtro fornisce la possibilità di eseguire codice PHP in qualsiasi campo di testo che utilizza un formato del testo (come il corpo di un contenuto o il testo di un commento). <a href=\"@php-net\">PHP</a> è un linguaggio di scripting molto utilizzato per lo sviluppo web, ed è il linguaggio con cui Drupal è stato sviluppato. Per ulteriori informazioni, consultare il manuale in linea per il <a href=\"@php\">modulo PHP filter</a>.','it',0,0,0,0),(4534,'Il numero di voti ricevuti da un sondaggio.','it',0,0,0,0),(4535,'La durata del periodo in cui il sondaggio sarà attivo.','it',0,0,0,0),(4536,'Disinstalla il modulo @module','it',0,0,0,0),(4537,'Aggrega e comprimi i file CSS.','it',0,0,0,0),(4538,'Aggrega i file JavaScript.','it',0,0,0,0),(4539,'è necessario disinstallare @required_modules prima di disinstallare @module','it',0,0,0,0),(4540,'è necessario disinstallare @required_modules prima di disinstallare @module','it',4539,1,0,0),(4541,'Attiva i moduli aggiunti di recente','it',0,0,0,0),(4542,'Attiva i temi aggiunti di recente','it',0,0,0,0),(4543,'Il processo di disinstallazione rimuove tutti i dati relativi a un modulo. Per disinstallare un modulo, devi prima disattivarlo nella <a href=\"@modules\">pagina Moduli</a> principale.','it',0,0,0,0),(4544,'Visualizza il tema di amministrazione','it',0,0,0,0),(4545,'Utilizzato solo quando il sito è configurato per l\'utilizzo di un tema di amministrazione separato, alla pagina <a href=\"@appearance-url\">Aspetto</a>','it',0,0,0,0),(4546,'Sistema database','it',0,0,0,0),(4547,'Versione del database','it',0,0,0,0),(4548,'Il modulo Toolbar fornisce una barra contenente le voci di primo livello del menu di amministrazione nella parte alta dello schermo. Al di sotto di essa vi è una ulteriore barra a scomparsa, o <em>drawer</em> dove sono posizionati i link forniti da altri moduli come ad esempio il <a href=\"@shortcuts-help\">modulo Shortcut</a>. La barra a scomparsa può essere mostrata/nascosta cliccando sul link \"mostra/nascondi scorciatoie\" posto al limite destro della barra principale.','it',0,0,0,0),(4549,'Indicizzati %count contenuti per il tracciamento.','it',0,0,0,0),(4550,'Questa pagina presenta una scheda per ciascun modulo che fornisce dei trigger. Da queste schede è possibile impostare azioni da eseguire quando si verificano eventi relativi al <a href=\"@module-help\">modulo @module-name</a> .','it',0,0,0,0),(4551,'Note di rilascio per @project_title','it',0,0,0,0),(4552,'Le impostazioni del ruolo sono state aggiornate.','it',0,0,0,0),(4553,'Disattiva il profilo e conserva i contenuti creati dall\'utente.','it',0,0,0,0),(4554,'Disattiva il profilo e rimuovi dalla pubblicazione i contenuti creati dall\'utente.','it',0,0,0,0),(4555,'Elimina il profilo e attribuisci i suoi contenuti all\'utente %anonymous-name.','it',0,0,0,0),(4556,'Elimina il profilo ed i contenuti creati dall\'utente.','it',0,0,0,0),(4557,'Mostra nel form di registrazione utente.','it',0,0,0,0),(4558,'Obbligatorio per i campi \'richiesto\'.','it',0,0,0,0),(4559,'Test compatibile con l\'elenco di sistema di Drupal','it',0,0,0,0),(4560,'Modulo di supporto per il test della funzione drupal_system_listing.','it',0,0,0,0),(4561,'Test non compatibile con l\'elenco di sistema di Drupal','it',0,0,0,0),(4562,'@count azioni orfane (%orphans) esistono nella tabella delle azioni. !link','it',0,0,0,0),(4563,'1 commento rimosso.','it',0,0,0,0),(4564,'Usa l\'etichetta del campo invece del valore «on» come etichetta','it',0,0,0,0),(4565,'1 messaggio eliminato.','it',0,0,0,0),(4566,'tracciamento','it',0,0,0,0),(4567,'L\'aggiornamento automatico di Drupal core non è supportato. Leggi la <a href=\"@upgrade-guide\">guida all\'aggiornamento</a> per istruzioni sull\'aggiornamento manuale di Drupal core.','it',0,0,0,0),(4568,'%archive_file contiene una versione di %names che non è compatibile con Drupal !version.','it',0,0,0,0),(4569,'%archive_file contiene versioni di moduli o temi non compatibili con Drupal !version: %names','it',4568,1,0,0),(4570,'Il parametro %setting è al momento impostato come \'%current_value\', deve invece essere impostato come \'%needed_value\'. Puoi modificare il parametro eseguendo questa query: !query','it',0,0,0,0),(4571,'Elenco (intero)','it',0,0,0,0),(4572,'Questo campo memorizza numeri interi a partire da una lista di coppie \'valore=> etichetta\'; ad esempio \'Durata in giorni\': 1 => 1 giorno, 7 => 1 settimana, 31 => 1 mese.','it',0,0,0,0),(4573,'Elenco (virgola mobile)','it',0,0,0,0),(4574,'Questo campo memorizza valori di a virgola mobile a partire da una lista di coppie \'valore=> etichetta\'; ad esempio \'Frazione\': 0 => 0, .25 => 1/4, .75 => 3/4, 1 => 1.','it',0,0,0,0),(4575,'Questo campo memorizza stringhe di testo a partire da una lista di coppie \'valore=> etichetta\'; ad esempio \'Province italiane\': TO => Torino, NA => Napoli, RM => Roma.','it',0,0,0,0),(4576,'I valori possibili che questo campo può contenere. Inserirne uno per riga, nel formato chiave|etichetta.','it',0,0,0,0),(4577,'La chiave è il valore memorizzato, e deve essere numerico. L\'etichetta sarà utilizzata nella visualizzazione dei valori e nei form di modifica.','it',0,0,0,0),(4578,'L\'etichetta è opzionale: se una riga contiene un singolo numero, verrà utilizzato sia come chiave che come etichetta.','it',0,0,0,0),(4579,'Sono accettati anche elenchi di etichette (una per riga), solo se il campo non contiene ancora nessun valore. Le chiavi numeriche verranno generate automaticamente in base alle posizioni nella lista.','it',0,0,0,0),(4580,'La chiave è il valore memorizzato. L\'etichetta verrà utilizzata nella visualizzazione dei valori e nel form di modifica.','it',0,0,0,0),(4581,'L\'etichetta è opzionale: se una riga contiene una singola stringa, questa verrà utilizzata sia come chiave che come etichetta.','it',0,0,0,0),(4582,'Elenco di valori consentiti: inserimento non valido.','it',0,0,0,0),(4583,'Elenco di valori consentiti: alcuni valori sono stati rimossi mentre erano ancora in uso.','it',0,0,0,0),(4584,'Centro sinistra','it',0,0,0,0),(4585,'Centro destra','it',0,0,0,0),(4586,'Impossibile connettersi. Il server riporta il seguente messaggio: !message Per ulteriore aiuto sull\'installazione o l\'aggiornamento di codice sul server, consultare il <a href=\"@handbook_url\">manuale</a>.','it',0,0,0,0),(4587,'Non è possibile analizzare il file info: %info_file.','it',0,0,0,0),(4588,'L\'attributo \'name\' non è definito nel file info (%info_file)','it',0,0,0,0),(4589,'L\'ambiente (framework) di test richiede che il limite di memoria disponibile per PHP sia impostato almeno a %memory_minimum_limit. Il valore attuale è %memory_limit. <a href=\"@url\">Segui queste istruzioni per continuare</a>.','it',0,0,0,0),(4590,'Puoi trovare <a href=\"@module_url\">moduli</a> e <a href=\"@theme_url\">temi </a> su <a href=\"@drupal_org_url\">drupal.org</a>. Le seguenti estensioni di file sono supportate: %extensions.','it',0,0,0,0),(4591,'Il tuo server non supporta l\'aggiornamento di moduli e temi da questa interfaccia. In alternativa, aggiorna moduli e temi caricando le nuove versioni direttamente sul server, come descritto nel <a href=\"@handbook_url\">manuale</a>.','it',0,0,0,0),(4592,'Il tuo server non supporta l\'installazione di moduli e temi da questa interfaccia. In alternativa, installa moduli e temi caricandoli direttamente sul server, come descritto nel <a href=\"@handbook_url\">manuale</a>.','it',0,0,0,0),(4593,'L\'aggiornamento di moduli e temi richiede <strong>accesso @backends</strong> al server. Consulta il <a href=\"@handbook_url\">manuale online</a> per altri metodi di aggiornamento.','it',0,0,0,0),(4594,'L\'aggiornamento di moduli e temi richiede accesso al server in una delle seguenti modalità: <strong>@backends</strong>. Consulta il <a href=\"@handbook_url\">manuale online</a> per altri metodi di aggiornamento.','it',4593,1,0,0),(4595,'L\'installazione di moduli e temi richiede l\'<strong>accesso @backends</strong> al tuo server. Leggi il <a href=\"@handbook_url\">manuale</a> per altri metodi di installazione.','it',0,0,0,0),(4596,'L\'installazione di moduli e temi richiede uno dei seguenti metodi di accesso al tuo server: <strong>@backends</strong> al tuo server. Leggi il <a href=\"@handbook_url\">manuale</a> per altri metodi di installazione.','it',4595,1,0,0),(4597,'%archive_file non contiene alcun file .info.','it',0,0,0,0),(4598,'Amministra contenuto e commenti.','it',0,0,0,0),(4599,'Campi dei commenti','it',0,0,0,0),(4600,'Categoria RSS','it',0,0,0,0),(4601,'%name deve essere un valore esadecimale rappresentante un colore CSS valido.','it',0,0,0,0),(4602,'Ogni tipo di campo è associato ad uno o più <em>widget</em>: un widget fornisce un meccanismo per inserire il dato durante le modifiche (campo di testo, lista, caricamento file, ecc...). Ogni tipo di campo prevede anche una o più opzioni di visualizzazione, che determinano la modalità con cui il campo verrà mostrato ai visitatori del sito. Sia il widget che le opzioni di visualizzazione possono essere cambiati dopo la creazione del campo.','it',0,0,0,0),(4603,'Non è possibile cambiare il nome del campo %id da %old_field_name a %new_field_name, perché non usa la memorizzazione field_sql_storage.','it',0,0,0,0),(4604,'Le modifiche allo stile sono state salvate.','it',0,0,0,0),(4605,'Questo blocco viene mostrato solo se <a href=\"@languages\">vengono abilitate almeno due lingue</a> e se la <a href=\"@configuration\">negoziazione della lingua</a> è impostata a <em>URL</em> o <em>Sessione</em>.','it',0,0,0,0),(4606,'Il modulo Menu fornisce un\'interfaccia per gestire i menu. Un menu è una raccolta gerarchica di link, che possono essere interni o esterni al sito, generalmente usato per la navigazione. Ogni menu genera un blocco che può essere abilitato e posizionato attraverso la <a href=\"@blocks\">pagina di gestione dei blocchi</a>. Per maggiori informazioni, vedere la sezione dedicata al <a href=\"@menu\">modulo Menu</a> nel manuale online.','it',0,0,0,0),(4607,'(nome ad uso interno: @type)','it',0,0,0,0),(4608,'OpenID suggerisce l\'uso della libreria <a href=\"@gmp\">GMP Math</a> (raccomandata per le prestazioni) oppure della libreria <a href=\"@bc\">BC Math</a> per poter abilitare le associazioni OpenID.','it',0,0,0,0),(4609,'Non ottimizzato','it',0,0,0,0),(4610,'OpenID suggerisce, per ottimizzare le prestazioni, l\'uso della libreria GMP Math per PHP. Verificare la <a href=\"@url\">Documentazione della libreria GMP Math</a> per le istruzioni di installazione.','it',0,0,0,0),(4611,'Libreria per i calcoli OpenID','it',0,0,0,0),(4612,'Il modulo @module risulta mancante, quindi verrà disabilitato il modulo: @depends.','it',0,0,0,0),(4613,'Il modulo @module risulta mancante, quindi verranno disabilitati i seguenti moduli: @depends.','it',4612,1,0,0),(4614,'Il nome ad uso interno non può essere \"add\" oppure \"list\".','it',0,0,0,0),(4615,'Abilita il supporto multilingue per questo tipo di contenuto. Se abilitato, un campo di selezione della lingua verrà aggiunto alla pagina di modifica per consentire la selezione di una delle <a href=\"!languages\">lingue abilitate</a>. È anche possibile attivare la traducibilità del tipo di contenuto, che permette di gestire versioni in lingue diverse di un contenuto. Se non si abilita il supporto multilingue, i nuovi contenuti sono salvati nella lingua predefinita. I contenuti esistenti non subiranno variazioni al cambio di questa opzione.','it',0,0,0,0),(4616,'La query è impostata per controllo accesso ai contenuti ma manca il campo nid. Aggiungere allo schema una foreign key verso node.nid per correggere.','it',0,0,0,0),(4617,'La query di elenco contenuti usa @fallback come tabella di base in una query impostata per controllo accesso ai contenuti. Ciò potrebbe essere insicuro, e potrebbe addirittura non funzionare. Specificare nello schema le necessarie foreign key verso node.nid ','it',0,0,0,0),(4618,'Campo sconosciuto: @field_name','it',0,0,0,0),(4619,'%field: Dovrebbe contenere soltanto un separatore di decimali (@separator).','it',0,0,0,0),(4620,'Abilita !title','it',0,0,0,0),(4621,'Abilita !title come predefinito','it',0,0,0,0),(4622,'Moduli abilitati: %modules','it',0,0,0,0),(4623,'Non è stato possibile copiare il file %file, perché la destinazione designata %destination non è valida. Spesso ciò è causato da un uso improprio della funzione file_copy() o da uno stream wrapper mancante.','it',0,0,0,0),(4624,'Il file %file non può essere copiato perché non esiste.','it',0,0,0,0),(4625,'Non è stato possibile spostare il file %file, perché la destinazione designata %destination non è valida. Ciò potrebbe essere causato da un uso improprio della funzione file_move() o da uno stream wrapper mancante.','it',0,0,0,0),(4626,'Non è stato possibile eliminare il file %file perché non è un URI valido. Ciò potrebbe essere causato da un uso improprio della funzione file_delete() o da uno stream wrapper mancante.','it',0,0,0,0),(4627,'Un percorso di file system esistente per la memorizzazione dei file privati. Deve essere scrivibile da parte di Drupal, ma inaccessibile dal web. Consulta il manuale online per <a href=\"@handbook\">maggiori informazioni sulla sicurezza dei file privati</a>.','it',0,0,0,0),(4628,'Curaçao','it',0,0,0,0),(4629,'Sint Maarteen','it',0,0,0,0),(4630,'Proprietà bundle mancante in entità di tipo @entity_type','it',0,0,0,0),(4631,'Tipi di campo in uso','it',0,0,0,0),(4632,'Campi in attesa di essere eliminati','it',0,0,0,0),(4633,'(modulo: !module)','it',0,0,0,0),(4634,'Estendi le funzionalità del sito.','it',0,0,0,0),(4635,'La pagina richiesta \"@path\" non è stata trovata.','it',0,0,0,0),(4636,'Il form è scaduto. Per continuare, dopo aver copiato altrove tutti i dati non salvati del form sottostante, occorre <a href=\"@link\">ricaricare la pagina</a>.','it',0,0,0,0),(4637,'Alcune impostazioni devono essere decise prima di definire nuovi campi per contenuti, commenti, ecc.:','it',0,0,0,0),(4638,'L\'icona di caricamento non visualizza lo stato del caricamento ma occupa meno spazio. La barra di avanzamento è utile per monitorare il caricamento di file di grandi dimensioni.','it',0,0,0,0),(4639,'Il nome di dominio da usare per questa lingua se la selezione della lingua viene effettuata in base al dominio dell\'URL. Lasciare vuoto per la lingua predefinita. <strong>Cambiare questa opzione può invalidare URL esistenti</strong>. Esempio: specificare \"de.example.com\" come dominio per la lingua tedesca, produrrà URL come \"http://de.example.com/contact\".','it',0,0,0,0),(4640,'Il nuovo identificativo OpenID %identity è stato aggiunto in sostituzione dell\'identificativo non valido %invalid_identity. Per completare l\'operazione, si prega di rimuovere il vecchio identificativo %invalid_identity dalla propria <a href=\"@openid_url\">pagina Identità OpenID</a>.','it',0,0,0,0),(4641,'Esiste già un profilo in questo server che usa l\'identificativo OpenID fornito. A causa di un malfunzionamento presente in alcune versioni precedenti del sistema di autenticazione, non è possibile stabilire se quel profilo appartenga all\'utente attuale. Se è la prima volta che si tenta l\'accesso a questo sito, si prega di continuare la registrazione del nuovo profilo utente. Se invece in precedenza si è già acceduto a questo sito usando l\'identificativo fornito, si prega di <a href=\"@url_password\">richiedere una nuova password</a>, o contattare l\'amministratore del sistema.','it',0,0,0,0),(4642,'L\'indice di ricerca non viene eliminato ma aggiornato sistematicamente per riflettere le nuove impostazioni. La ricerca continuerà a funzionare ma i nuovi contenuti non verranno indicizzati fintanto che tutti i contenuti esistenti siano stati re-indicizzati. Questa azione non può essere annullata.','it',0,0,0,0),(4643,'Moduli di ricerca attivi','it',0,0,0,0),(4644,'Nessuna scorciatoia presente. <a href=\"@link\">Aggiungere scorciatoia</a>.','it',0,0,0,0),(4645,'Lasciare vuoti per eliminare sia il nome utente esistente che la password.','it',0,0,0,0),(4646,'Per cambiare password, inserire qui quella nuova.','it',0,0,0,0),(4647,'Le credenziali di autenticazione HTTP devono prevedere uno username in aggiunta alla password.','it',0,0,0,0),(4648,'Incompatibile con questa versione del core di Drupal.','it',0,0,0,0),(4649,'Cron si occupa di eseguire attività periodiche come il controllo degli aggiornamenti disponibili e l\'indicizzazione dei contenuti per la ricerca.','it',0,0,0,0),(4650,'Passato il controllo sugli URL semplificati.','it',0,0,0,0),(4651,'Gli URL semplificati sono abilitati, ma il test per verificarne la funzionalità è fallito. Disabilitare gli URL semplificati agendo sul riquadro sottostante.','it',0,0,0,0),(4652,'Fallito il controllo sugli URL semplificati.','it',0,0,0,0),(4653,'Gli URL semplificati non possono essere abilitati. Se, dopo il test di funzionamento degli URL semplificati compare questa pagina oppure un errore <em>Pagina non trovata (404)</em>, vedere il <a href=\"@handbook\">manuale online</a>.','it',0,0,0,0),(4654,'Nome utente e password','it',0,0,0,0),(4655,'Elementi del form account del modulo user.','it',0,0,0,0),(4656,'Si è verificato un problema durante la creazione del campo %label: !message','it',0,0,0,0),(4657,'@module (<span class=\"admin-missing\">incompatibile con</span> questa versione di Drupal)','it',0,0,0,0),(4658,'Le notifiche sugli aggiornamenti non sono attive. <strong>Si raccomanda caldamente</strong> di abilitare il modulo Gestore aggiornamenti, dalla <a href=\"@module\">pagina di amministrazione dei moduli</a>, per aggiornarsi alle nuove versioni. Leggere la <a href=\"@update\">pagina del manuale sullo stato di aggiornamento</a> per ulteriori informazioni.','it',0,0,0,0),(4659,'La ricerca contiene troppe espressioni AND/OR. La ricerca procederà usando soltanto i primi @count termini specificati.','it',0,0,0,0),(4660,'Il test non può essere eseguito perché non è stato impostato correttamente.','it',0,0,0,0),(4661,'Trovato campo denominato @name','it',0,0,0,0),(4662,'Trovato campo denominato @name contenente il valore @value','it',0,0,0,0),(4663,'Non è possibile cambiare i valori dei codici (key) per un campo di tipo lista in cui sono già stati inseriti dati.','it',0,0,0,0),(4664,'Un nome ad uso interno composto esclusivamente da lettere, numeri e underscore (_).','it',0,0,0,0),(4665,'Lo stile %style è stato riportato allo stato predefinito.','it',0,0,0,0),(4666,'Se non viene caricata un\'immagine, durante la visualizzazione verrà mostrata questa immagine invece dell\'immagine predefinita del campo.','it',0,0,0,0),(4667,'Vedi dettagli di tutti i voti','it',0,0,0,0),(4668,'Nessun indirizzo IP bloccato.','it',0,0,0,0),(4669,'Il campo tassonomia @field non esiste.','it',0,0,0,0),(4670,'Cartella file pubblici','it',0,0,0,0),(4671,'Cartella file temporanei','it',0,0,0,0),(4672,'Cartella file privati','it',0,0,0,0),(4673,'Abbonamento a !feed-title','it',0,0,0,0),(4674,'Hook dei temi %hook non trovato.','it',0,0,0,0),(4675,'Nessun contenuto del libro disponibile.','it',0,0,0,0),(4676,'Tipi di campo attualmente in uso - vedere <a href=\"@fields-page\">Elenco campi</a>','it',0,0,0,0),(4677,'solo utenti autenticati','it',0,0,0,0),(4678,'Questo profilo utente non è abbinato ad alcuna identità OpenID.','it',0,0,0,0),(4679,'Uiguro','it',0,0,0,0),(4680,'Installare un altro modulo','it',0,0,0,0),(4681,'Sud Sudan','it',0,0,0,0),(4682,'Ottieni una vista generale di <a href=\"@url\">tutto il contenuto</a>.','it',0,0,0,0),(4683,'Ottieni una vista generale di tutto il contenuto.','it',0,0,0,0),(4684,'Cache bin specificato invalido o mancante: %bin','it',0,0,0,0),(4685,'Caraibi Olandesi','it',0,0,0,0),(4686,'Maggiori informazioni sull\'impostazione di attività schedulate possono essere trovate <a href=\"@url\">leggendo le istruzioni su cron su drupal.org</a>','it',0,0,0,0),(4687,'Usa Ajax per incrementare il contatore','it',0,0,0,0),(4688,'Esegui il conteggio in modo asincrono dopo il caricamento della pagina anzichè durante la sua generazione.','it',0,0,0,0),(4689,'Non completamente protetto','it',0,0,0,0),(4690,'Vedi<a href=\"@url\">@url</a> per informazioni sul file .htaccess raccomandato che dovrebbe essere aggiunto alla directory %directory per aiutare a proteggere contro l\'esecuzione arbitraria di codice.','it',0,0,0,0),(4691,'Influenza','it',0,0,0,0),(4692,'Influenza è un moltiplicatore numerico usato per ordinare i risultati di ricerca. Un numero più alto indica che il corrispettivo fattore ha maggior influenza sui risultati di ricerca; zero indica che il fattore viene ignorato. Cambiare questi numeri non richiede di ricostruire l\'indice di ricerca. I cambiamenti hanno effetto immediato.','it',0,0,0,0),(4693,'Rilevato conflitto nel build-id del form nel tentativo di memorizzare un form nella cache.','it',0,0,0,0),(4694,'Il contenuto può essere inserito in CKEditor solo in modalità WYSIWYG.','it',0,0,0,0),(4695,'Multilingue','it',0,0,0,0),(4696,'Modalità aggiornamento','it',0,0,0,0),(4697,'Aggiornamenti delle traduzioni','it',0,0,0,0),(4698,'Aggiorna le traduzioni','it',0,0,0,0),(4699,'Stato di aggiornamento delle traduzioni','it',0,0,0,0),(4700,'Ci sono aggiornamenti disponibili','it',0,0,0,0),(4701,'Tutte le traduzioni sono aggiornate','it',0,0,0,0),(4702,'Selezionare una o più lingue da scaricare e aggiornare. Se non se ne seleziona nessuna, saranno aggiornate tutte.','it',0,0,0,0),(4703,'Aggiorna le informazioni','it',0,0,0,0),(4704,'Recuperate dal server le informazioni sugli aggiornamenti disponibili','it',0,0,0,0),(4705,'Sorgente aggiornamenti','it',0,0,0,0),(4706,'Mai (manualmente)','it',0,0,0,0),(4707,'Selezionare la frequenza con cui si desidera verificare automaticamente la presenza di traduzioni aggiornate dei moduli e temi installati.','it',0,0,0,0),(4708,'Salva i file scaricati','it',0,0,0,0),(4709,'Le traduzioni aggiornate sostituiscono quelle esistenti, le nuove traduzioni vengono aggiunte','it',0,0,0,0),(4710,'File locali e server remoto.','it',0,0,0,0),(4711,'Solo file locali.','it',0,0,0,0),(4712,'Solo server remoto.','it',0,0,0,0),(4713,'Aggiornamento remoto disponibile','it',0,0,0,0),(4714,'Aggiornamento locale disponibile','it',0,0,0,0),(4715,'Nessuna informazione','it',0,0,0,0),(4716,'Aggiornamento traduzioni.','it',0,0,0,0),(4717,'Scaricamento e importazione dei file.','it',0,0,0,0),(4718,'Errore durante l\'importazione delle traduzioni.','it',0,0,0,0),(4719,'l10n_update','it',0,0,0,0),(4720,'Il file %download_link è stato scaricato come %tmpfile','it',0,0,0,0),(4721,'Impossibile creare il file temporaneo da scaricare in %tmpdir. Il file remoto è %download_link.','it',0,0,0,0),(4722,'Elenco delle ultime traduzioni importate e degli aggiornamenti disponibili per ciascuna lingua e progetto attivato.','it',0,0,0,0),(4723,'Quando sono disponibili degli aggiornamenti è possibile selezionare il pulsante \"Aggiorna le traduzioni\" per importare le traduzioni immediatamente oppure è possibile configurare le opzioni di aggiornamento automatico alla <a href=\"@update-settings\">Pagina di impostazione degli aggiornamenti</a>','it',0,0,0,0),(4724,'Queste sono le impostazioni per il sistema di aggiornamento traduzioni. Per aggiornare le traduzioni ora, visitare la <a href=\"@update-admin\">Pagina di amministrazione aggiornamento traduzioni</a>.','it',0,0,0,0),(4725,'Nessuna informazione disponibile su traduzioni nuove o aggiornate per i moduli o temi installati. Per controllare gli aggiornamenti, può essere necessario <a href=\"@run_cron\">eseguire cron</a> oppure <a href=\"@check_manually\">controllare manualmente</a>. Da notare che controllare la disponibilità di nuovi aggiornamenti può richiedere un tempo considerevole.','it',0,0,0,0),(4726,'Controllate automaticamente le traduzioni @checked, aggiornate @updated.','it',0,0,0,0),(4727,'Configurazione aggiornamento automatico','it',0,0,0,0),(4728,'Sono disponibili traduzioni nuove o aggornate per i moduli e temi attualmente installati. Per controllare gli aggiornamenti visitare la <a href=\"@check_manually\">pagina aggiornamento traduzioni</a>.','it',0,0,0,0),(4729,'Non è stato possibile recuperare dal server informazioni sugli aggiornamenti disponibili.','it',0,0,0,0),(4730,'Un percorso relativo alla cartella di installazione di Drupal dove salvare i file di traduzione, ad es: sites/all/translations. I file di traduzione salvati possono essere riutilizzati da altre installazioni. Se il campo viene lasciato vuoto, le traduzioni non saranno salvate.','it',0,0,0,0),(4731,'Traduzione non salvata a causa di errori di validazione nel codice HTML.','it',0,0,0,0),(4732,'Traduzione salvata localmente.','it',0,0,0,0),(4733,'Traduzione locale rimossa con successo.','it',0,0,0,0),(4734,'Errore sconosciuto durante il salvataggio locale del file di traduzione.','it',0,0,0,0),(4735,'Puoi condividere il tuo lavoro di traduzione con !l10n_server impostando la tua API key alla pagina !user_link.','it',0,0,0,0),(4736,'Non salvato per mancanza del testo di origine.','it',0,0,0,0),(4737,'Non salvato per mancanza di dati necessari.','it',0,0,0,0),(4738,'Non salvato a causa dei permessi insufficienti.','it',0,0,0,0),(4739,'Il campo l10n_status è stato aggiunto a locales_target.','it',0,0,0,0),(4740,'Risolto possible conflitto del campo l10n_status in locales_target','it',0,0,0,0),(4741,'Aggiornamento localizzazione','it',0,0,0,0),(4742,'Fornisce una gestione dello scaricamento (anche automatico) e dell\'aggiornamento delle traduzioni.','it',0,0,0,0),(4743,'Notare che questo porta a un peggioramento delle prestazioni, quindi non è consigliato.','it',0,0,0,0),(4744,'Le traduzioni modificate sono mantenute, soltanto quelle precedentemente importate vengono sovrascritte e le nuove traduzioni aggiunte.','it',0,0,0,0),(4745,'Le traduzioni esistenti sono mantenute, solo le nuove traduzioni vengono aggiunte','it',0,0,0,0),(4746,'(origine traduzione: !server)','it',0,0,0,0),(4747,'@language: @version (!date)','it',0,0,0,0),(4748,'@language: <em>Nessuna traduzione installata</em>','it',0,0,0,0),(4749,'Versione consigliata: @version (!date)','it',0,0,0,0),(4750,'Traduzione non installata disponibile','it',0,0,0,0),(4751,'Non è stata trovata nessuna traduzione disponibile','it',0,0,0,0),(4752,'Importazione: %name.','it',0,0,0,0),(4753,'Importato: %name.','it',0,0,0,0),(4754,'Stringhe di traduzione per %language aggiunte: !add, aggiornate: !update, eliminate: !delete.','it',0,0,0,0),(4755,'Un progetto aggiornato: @projects.','it',0,0,0,0),(4756,'@count progetti aggiornati: @projects.','it',4755,1,0,0),(4757,'Una stringa di traduzione è stata saltata perché contiene  HTML non permesso. Controlla i !log_messages per ulteriori dettagli.','it',0,0,0,0),(4758,'@count stringhe di traduzione sono state  saltate perché contengono HTML non permesso. Controlla i !log_messages per ulteriori dettagli.','it',4757,1,0,0),(4759,'Le traduzioni per un progetto non sono state importate: @projects.','it',0,0,0,0),(4760,'Le traduzioni per @count progetti non sono state importate; @projects.','it',4759,1,0,0),(4761,'Si è verificato un errore durante il download: %error.','it',0,0,0,0),(4762,'Si è verificato un errore durante il download: codice di stato HTTP %code.','it',0,0,0,0),(4763,'Impossibile salvare il file %download_link in %tmpfile.','it',0,0,0,0),(4764,'Rilevato HTML non permesso. Stringa non importata: %string','it',0,0,0,0),(4765,'Menu principale','it',0,0,0,0),(4766,'The <em>Main</em> menu is used on many sites to show the major sections of the site, often in a top navigation bar.','it',0,0,0,0),(4788,'fotografie','it',0,0,0,0),(4789,'Slideshow','it',0,0,0,0),(4790,'Immagini','it',0,0,0,0),(4791,'Dimensioni dell\'immagine','it',0,0,0,0),(4792,'Invia','it',0,0,0,0),(4793,'Quantità','it',0,0,0,0),(4794,'Indietro','it',0,0,0,0),(4795,'Album','it',0,0,0,0),(4796,'Impostazioni di visualizzazione','it',0,0,0,0),(4797,'Impostazioni di base','it',0,0,0,0),(4798,'Non mostrare','it',0,0,0,0),(4799,'Originale','it',0,0,0,0),(4800,'Limite','it',0,0,0,0),(4801,'immagini','it',0,0,0,0),(4802,'In caricamento...','it',0,0,0,0),(4803,'Privacy','it',0,0,0,0),(4804,'Miniature','it',0,0,0,0),(4805,'<a href=\"@login\">Login</a> per inviare commenti','it',0,0,0,0),(4806,'Annulla tutti i caricamenti','it',0,0,0,0),(4807,'In attesa...','it',0,0,0,0),(4808,'Hai cercato di accodare troppi file.','it',0,0,0,0),(4809,'Caricamento in corso...','it',0,0,0,0),(4810,'Il file selezionato %name non può essere caricato.','it',0,0,0,0),(4811,'File immagine','it',0,0,0,0),(4812,'Carica immagini','it',0,0,0,0),(4813,'Copertina','it',0,0,0,0),(4814,'Contiene Immagini','it',0,0,0,0),(4815,'Non mettere in cache','it',0,0,0,0),(4816,'Librerie','it',0,0,0,0),(4817,'Google','it',0,0,0,0),(4818,'jQuery','it',0,0,0,0),(4819,'jQuery Update','it',0,0,0,0),(4820,'tutto','it',0,0,0,0),(4821,'Dimensioni','it',0,0,0,0),(4822,'link','it',0,0,0,0),(4823,'Estensioni del file permesse','it',0,0,0,0),(4824,'Le estensioni che gli utenti di questo ruolo possono caricare. Inserire le estensioni separate da spazi, omettendo il punto iniziale.','it',0,0,0,0),(4825,'Ruolo utente','it',0,0,0,0),(4826,'Nome profilo','it',0,0,0,0),(4827,'Chiudi','it',0,0,0,0),(4828,'IMCE','it',0,0,0,0),(4829,'Impostazioni comuni','it',0,0,0,0),(4830,'Naviga','it',0,0,0,0),(4831,'LARGHEZZAxALTEZZA','it',0,0,0,0),(4832,'Dimensione massima del file per caricamento','it',0,0,0,0),(4833,'Navigatore file','it',0,0,0,0),(4834,'Caricamento del file','it',0,0,0,0),(4835,'illimitati','it',0,0,0,0),(4836,'Le modifiche sono state salvate.','it',0,0,0,0),(4837,'utente #1','it',0,0,0,0),(4838,'MB','it',0,0,0,0),(4839,'Le tue impostazioni PHP limitano la dimensione massima del file per caricamento a %size.','it',0,0,0,0),(4840,'Controlla il funzionamento del browser di immagini e file.','it',0,0,0,0),(4841,'Attiva l\'inserimento di immagini o file incorporati all\'interno delle aree di solo testo.','it',0,0,0,0),(4842,'Inserire !image o !link.','it',0,0,0,0),(4843,'Un caricatore e un browser di immagini e file che supporta cartelle personali e quote per gli utenti.','it',0,0,0,0),(4844,'Aggiungi un nuovo profilo','it',0,0,0,0),(4845,'Cartelle','it',0,0,0,0),(4846,'Impossibile copiare il file selezionato (%file).','it',0,0,0,0),(4847,'Messaggi di log','it',0,0,0,0),(4848,'Selezionare un file.','it',0,0,0,0),(4849,'La dimensione massima in pixel consentita per le immagini (es. 640x480). Impostare 0 per disattivare le restrizioni. Se un <a href=\"!image-toolkit-link\">toolkit per le immagini</a> è installato, le immagini che superano tale valore verranno automaticamente ridimensionate per rientrare nei limiti.','it',0,0,0,0),(4850,'Browser di file','it',0,0,0,0),(4851,'Profili di configurazione','it',0,0,0,0),(4852,'Se non si utilizza alcun editor WYSIWYG, questa funzionalità permetterà di aggiungere immagini o file come <strong>codice HTML nelle textarea semplici</strong>. Inserire gli <strong>ID delle textarea separati da virgole</strong> nei quali si vuole abilitare un link per IMCE. Suggerimento: l\'ID dei campi Body nella maggior parte dei nodi è edit-body.','it',0,0,0,0),(4853,'URL assoluti','it',0,0,0,0),(4854,'Selezionare per forzare IMCE a restituire URL assoluti per i file.','it',0,0,0,0),(4855,'Comportamento predefinito per i file esistenti durante il caricamento','it',0,0,0,0),(4856,'Mantenere il file esistente e rinominare quello nuovo','it',0,0,0,0),(4857,'Mantenere il file esistente e rifiutare quello nuovo','it',0,0,0,0),(4858,'Sostituire il file esistente con quello nuovo','it',0,0,0,0),(4859,'Metodo predefinito per creare le miniature','it',0,0,0,0),(4860,'Scalare l\'immagine rispettando le dimensioni della miniatura.','it',0,0,0,0),(4861,'Prima scalare l\'immagine poi ritagliarla alle dimensioni della miniatura.','it',0,0,0,0),(4862,'Profilo assegnato','it',0,0,0,0),(4863,'Per gli utenti che hanno <strong>più ruoli</strong>, la proprietà <strong>peso</strong>determinerà il profilo assegnato. Ruoli con peso minore che sono posti in alto avranno la precedenza. Quindi, un ruolo di amministratore deve essere posto sopra agli altri specificando un peso minore, ad esempio -10.','it',0,0,0,0),(4864,'Assegnazioni ruolo-profilo','it',0,0,0,0),(4865,'Assegna i profili ai ruoli utente.','it',0,0,0,0),(4866,'Le impostazioni sono state importate dal profilo %name','it',0,0,0,0),(4867,'Dare un nome a questo profilo.','it',0,0,0,0),(4868,'Impostare a 0 per usare il valore massimo consentito.','it',0,0,0,0),(4869,'Quota della cartella','it',0,0,0,0),(4870,'Definisce la quota di caricamento per cartella. La quota totale dell\'utente è proporzionale al numero di cartelle nelle quali l\'utente ha può caricare file.','it',0,0,0,0),(4871,'Quota totale utente','it',0,0,0,0),(4872,'È possibile forzare la quota complessiva per utente ad un valore indipendente dalla quota per cartella. <strong>Questa quota è calcolata utilizzando la tabella files nel database, quindi non include i file caricati via FTP o da versioni precedenti di IMCE(4.7.x and 5.x)</strong>. Le due quote vengono applicate entrambe, a meno di impostare questo valore a 0 per disabilitare quella per utente.','it',0,0,0,0),(4873,'Imposta a * per rimuovere la restrizione.','it',0,0,0,0),(4874,'Numero massimo di file per operazione','it',0,0,0,0),(4875,'È possibile consentire agli utenti di selezionare più file su cui appplicare operazioni come elimina, ridimensiona, ecc. Tutta l\'operazione in batch viene eseguita in un singolo caricamento di drupal, il che è positivo. Tuttavia ciò comporterà un incremento del tempo di esecuzione dello script, del carico per la cpu e dell\'utilizzo della memoria che potrebbero eccedere i limiti del tuo server, il che non è per niente un bene. Per rimuovere i limiti sul numero massimo di file per singola operazione, impostare a 0.','it',0,0,0,0),(4876,'Il profilo è stato aggiunto.','it',0,0,0,0),(4877,'Incluse le sottocartelle','it',0,0,0,0),(4878,'Percorso cartella','it',0,0,0,0),(4879,'Specifica le cartelle accessibili dagli utenti di questo profilo.\n<ul>\n	<li>Usa caratteri alfanumerici per i percorsi delle cartelle.</li>\n	<li>Per specificare il file system root inserisci solo il carattere <strong>.</strong>(punto).</li>\n	<li>Usa <strong>%uid</strong> come segnaposto per l\'ID utente. Es: <em>users/user%uid</em> crea delle cartelle tipo <em>users/user1</em>, <em>users/user42</em>, ecc.</li>\n  <li>Per rimuovere una cartella dall\'elenco lascia vuoto il percorso della cartella.</li>\n  <li>Se vuoi una maggiore flessibilità nei percorsi delle cartelle puoi eseguire del php per restituire il percorso della cartella.<br />\n  Per eseguire il php il percorso della tua cartella deve iniziare con <strong>php:</strong> e il resto deve essere un codice php valido che restituisce il percorso effettivo della cartella. <br />Es: <strong>php: return \'users/\'.$user->name;</strong> specifica <strong>users/USER-NAME</strong> come il percorso della cartella.<br />\n  Un esempio di una cartella multi-livello <strong>php: return date(\'Y\', $user->created).\'/\'.date(\'m\', $user->created).\'/\'.$user->uid;</strong> specifica <strong>MEMBERSHIP-YEAR/MONTH/USER-ID</strong> come il percorso della cartella, risultando in cartelle utente auto-categorizzate basate sulla data di associazione.<br />\n  Nota che devi usare la variabile $user anziché $GLOBALS[\'user\'] poiché non sempre sono lo stesso oggetto.</li>\n</ul>\n<p>Nota che il permesso miniature non influisce sulla creazione di miniature durante il caricamento. Vedi la descrizione delle miniature sotto.</p>\n<p>Se hai bisogno di altri campi, compila tutto e salva e ne avrai altri due nella prossima pagina.</p>','it',0,0,0,0),(4880,'Puoi creare un elenco di opzioni per le miniature selezionabili dagli utenti.\n<ul>\n  <li>Usa caratteri alfanumerici per i nomi delle miniature.</li>\n  <li>Specifica le dimensioni tipo <strong>LarghezzaxAltezza</strong>.</li>\n  <li>Prefisso e suffisso sono stringhe che vengono aggiunte al nome originale del file per creare il nome della miniatura.</li>\n  <li>Un esempio di miniatura: Nome = <strong>Piccolo</strong>, Dimensioni = <strong>80x80</strong>, Prefisso = <strong>small_</strong></li>\n</ul>\n<p>Nota che gli utenti saranno sempre in grado di creare miniature durante il caricamento dei file indipendentemente dal permesso per le miniature. Per disattivare la creazione delle miniature durante il caricamento dei file non devi specificare alcuna miniatura qui.</p>\n<p>Se hai bisogno di altri campi, compila tutto e salva e avrai altri due campi nella prossima pagina.</p>','it',0,0,0,0),(4881,'Si vuole davvero eliminare il profilo %name?','it',0,0,0,0),(4882,'Il profilo è stato eliminato.','it',0,0,0,0),(4883,'Importa le impostazioni da altri profili','it',0,0,0,0),(4884,'Non sono consentiti percorsi di cartelle duplicati.','it',0,0,0,0),(4885,'%dirname non è accettato come da dare ad una cartella.','it',0,0,0,0),(4886,'Crea miniature','it',0,0,0,0),(4887,'File selezionati','it',0,0,0,0),(4888,'Larghezza x Altezza','it',0,0,0,0),(4889,'Crea una nuova immagine','it',0,0,0,0),(4890,'L\'utente non è autorizzato ad operare su più di %num file.','it',0,0,0,0),(4891,'cartella (%dir)','it',0,0,0,0),(4892,'Il caricamento è fallito.','it',0,0,0,0),(4893,'Eliminati senza errori i file: %files.','it',0,0,0,0),(4894,'Le dimensioni specificate devono rientrare nell\'intervallo consentito, che va da 1x1 a @dimensions.','it',0,0,0,0),(4895,'Ridimensionamento file eseguito: %files.','it',0,0,0,0),(4896,'Creazione miniature (%thumbnames) eseguita per %filename.','it',0,0,0,0),(4897,'%filename non è un\'immagine.','it',0,0,0,0),(4898,'L\'ingrandimento non è consentito.','it',0,0,0,0),(4899,'%filename(%dimensions) esiste già.','it',0,0,0,0),(4900,'%filename non può essere ridimensionato a %dimensions','it',0,0,0,0),(4901,'Il file browser è impostato per rifiutare il caricamento di file esistenti.','it',0,0,0,0),(4902,'Impossibile ottenere una directory di lavoro per il browser!','it',0,0,0,0),(4903,'Non è stata specificata alcuna cartella per il browser dei file!','it',0,0,0,0),(4904,'imce','it',0,0,0,0),(4905,'Si desidera aggiornare la cartella corrente?','it',0,0,0,0),(4906,'Eliminare i file selezionati?','it',0,0,0,0),(4907,'Selezionare una miniatura.','it',0,0,0,0),(4908,'Devi selezionare almeno %num file.','it',0,0,0,0),(4909,'Consigli','it',0,0,0,0),(4910,'Selezionare un file cliccando la riga corrispondente nell\'elenco dei file.','it',0,0,0,0),(4911,'Ctrl+click per aggiungere un file alla selezione o per rimuovere un file dalla selezione.','it',0,0,0,0),(4912,'Shift+click per selezionare un intervallo di file. Un primo click identifica il primo file, shift+click estende la selezione fino a comprendere il file puntato.','it',0,0,0,0),(4913,'Per cambiare l\'ordinamento dei file cliccare l\'intestazione delle colonne nell\'elenco dei file.','it',0,0,0,0),(4914,'Per ridimensionare le aree di lavoro, trascinare le barre di ridimensionamento orizzontali o verticali.','it',0,0,0,0),(4915,'Scorciatoie da tastiera per l\'elenco dei file: su, giù, sinistra, home, end, ctrl+A.','it',0,0,0,0),(4916,'Scorciatoie da tastiera per la selezione dei file: enter/insert, delete, R(esize), T(humbnails), U(pload).','it',0,0,0,0),(4917,'Scorciatoie da tastiera per l\'elenco delle cartelle: su, giù, sinistra, destra, home, end.','it',0,0,0,0),(4918,'Limitazioni','it',0,0,0,0),(4919,'!num file che utilizzano !dirsize di !quota','it',0,0,0,0),(4920,'quota illimitata','it',0,0,0,0),(4921,'Il file è stato rinominato %filename.','it',0,0,0,0),(4922,'%filename è stato caricato.','it',0,0,0,0),(4923,'%filename è usato da un altra applicazione.','it',0,0,0,0),(4924,'%filename misura %filesize, superiore alla tua quota residua per la cartella. In questo momento sono in uso %size su %total_quota.','it',0,0,0,0),(4925,'%filename misura %filesize, superiore alla tua quota residua complessiva. In questo momento sono in uso %size su %total_quota.','it',0,0,0,0),(4926,'L\'utente corrente non ha accesso ad alcun profilo di configurazione per l\'uso del file browser!','it',0,0,0,0),(4927,'La cartella %dirname non è accessibile.','it',0,0,0,0),(4928,'L\'accesso alla cartella %directory è stato negato.','it',0,0,0,0),(4929,'Impossibile eseguire l\'operazione richiesta.','it',0,0,0,0),(4930,'Per aprire un file con un\'applicazione esterna, fare un doppio click sulla riga del file.','it',0,0,0,0),(4931,'Inserisci file','it',0,0,0,0),(4932,'Cambia vista','it',0,0,0,0),(4985,'Normale','it',0,0,0,0),(5076,'Sorgente','it',0,0,0,0),(5206,'Tipo di entità','it',0,0,0,0),(5208,'ID Entità','it',0,0,0,0),(5382,'Campi','it',0,0,0,0),(5405,'Completo','it',0,0,0,0),(5431,'Relazione','it',0,0,0,0),(5438,'È uno di','it',0,0,0,0),(5441,'Non è uno di','it',0,0,0,0),(5870,'Vuota','it',0,0,0,0),(5871,'Piccolo','it',0,0,0,0),(5872,'Grande','it',0,0,0,0),(5873,'Separatore','it',0,0,0,0),(5874,'Impostazioni utente','it',0,0,0,0),(5875,'Indirizzo','it',0,0,0,0),(5876,'Settimana','it',0,0,0,0),(5877,'Parametro','it',0,0,0,0),(5878,'Latitudine','it',0,0,0,0),(5879,'Longitudine','it',0,0,0,0),(5880,'Google Maps API Key','it',0,0,0,0),(5881,'Altezza predefinita','it',0,0,0,0),(5882,'Larghezza predefinita','it',0,0,0,0),(5883,'Funzionalità','it',0,0,0,0),(5884,'Disabilita il mousezoom','it',0,0,0,0),(5885,'Disabilita l\'uso della rotella di scorrimento per zoomare la mappa.','it',0,0,0,0),(5886,'Posizioni dell\'utente','it',0,0,0,0),(5887,'Macro','it',0,0,0,0),(5888,'Impostazioni nodo','it',0,0,0,0),(5889,'Controlli','it',0,0,0,0),(5890,'Allineamento','it',0,0,0,0),(5891,'Bianco','it',0,0,0,0),(5892,'Grigio','it',0,0,0,0),(5893,'Viola','it',0,0,0,0),(5894,'Rosa','it',0,0,0,0),(5895,'Verde','it',0,0,0,0),(5896,'Blu','it',0,0,0,0),(5897,'Arancione','it',0,0,0,0),(5898,'Itinerario','it',0,0,0,0),(5899,'Non usare una relazione','it',0,0,0,0),(5900,'Giallo','it',0,0,0,0),(5901,'Sorgente dati','it',0,0,0,0),(5902,'Location.module','it',0,0,0,0),(5903,'Scegli i campi latitudine e longitudine','it',0,0,0,0),(5904,'Campo latitudine','it',0,0,0,0),(5905,'Il formato deve essere in gradi decimali.','it',0,0,0,0),(5906,'Campo longitudine','it',0,0,0,0),(5907,'Movimento dei marcatori','it',0,0,0,0),(5908,'Per tipo di contenuto (per le viste di tipo nodo)','it',0,0,0,0),(5909,'Per termine (per le viste di tipo nodo)','it',0,0,0,0),(5910,'Per ruolo dell\'utente (per le viste di tipo utente)','it',0,0,0,0),(5911,'Usa il campo marcatore','it',0,0,0,0),(5912,'Usa il tipo di marcatore singolo','it',0,0,0,0),(5913,'Campo marcatore','it',0,0,0,0),(5914,'Si può utilizzare un campo delle viste per impostare la proprietà <em>nome del marcatore</em> dei marcatori.','it',0,0,0,0),(5915,'Marcatore / marcatore di ripiego da usare','it',0,0,0,0),(5916,'Lettere','it',0,0,0,0),(5917,'Numeri','it',0,0,0,0),(5918,'Gruppo','it',0,0,0,0),(5919,'Il file gmap_strings.inc è stato creato con successo.','it',0,0,0,0),(5920,'Rosso Piccolo','it',0,0,0,0),(5921,'Rosso brillante Piccolo','it',0,0,0,0),(5922,'Arancione Piccolo','it',0,0,0,0),(5923,'Giallo paglierino Piccolo','it',0,0,0,0),(5924,'Giallo Piccolo','it',0,0,0,0),(5925,'Verde pallido Piccolo','it',0,0,0,0),(5926,'Verde Piccolo','it',0,0,0,0),(5927,'Verde scuro Piccolo','it',0,0,0,0),(5928,'Verde Fluo Piccolo','it',0,0,0,0),(5929,'Azzurro Piccolo','it',0,0,0,0),(5930,'Blu chiaro Piccolo','it',0,0,0,0),(5931,'Blu Piccolo','it',0,0,0,0),(5932,'Blu scuro Piccolo','it',0,0,0,0),(5933,'Viola Piccolo','it',0,0,0,0),(5934,'Rosa Piccolo','it',0,0,0,0),(5935,'Rosa shocking Piccolo','it',0,0,0,0),(5936,'Marrone Piccolo','it',0,0,0,0),(5937,'Bianco Piccolo','it',0,0,0,0),(5938,'Grigio chiaro Piccolo','it',0,0,0,0),(5939,'Grigio Piccolo','it',0,0,0,0),(5940,'Nero Piccolo','it',0,0,0,0),(5941,'Blu Piccolo (Sostitutivo)','it',0,0,0,0),(5942,'Rosso Piccolo (Sostitutivo)','it',0,0,0,0),(5943,'Blu Grande','it',0,0,0,0),(5944,'Rosso Grande','it',0,0,0,0),(5945,'X indica il luogo','it',0,0,0,0),(5946,'Linea di Vertex','it',0,0,0,0),(5947,'Blu chiaro','it',0,0,0,0),(5948,'Le viste di GMap non sono compatibili con l\'anteprima immediata.','it',0,0,0,0),(5949,'Centra sull\'argomento del nodo','it',0,0,0,0),(5950,'Nota: La vista deve contenere un argomento il cui valore sia l\'ID di un nodo.','it',0,0,0,0),(5951,'La vista deve contenere \'Nodo: nid\' come one dei suoi campi perché il tipo della vista non è \'Nodo\'.','it',0,0,0,0),(5952,'Il valore dell\'argomento selezionato deve essere un numero che coincide con l\'ID di un nodo. Utilizzare l\'argomento \'Globale: Nullo\' se non si vuole anche restringere i risultati all\'ID di quel nodo. Bisogna aver aggiunto degli argomenti alla vista per utilizzare questa opzione.','it',0,0,0,0),(5953,'L\'argomento selezionato deve essere un numero che coincide con l\'ID di un nodo. Utilizzare l\'argomento \'Globale: Nullo\' se non si vuole anche restringere i risultati all\'ID di quel nodo.','it',0,0,0,0),(5954,'Evidenzia il marcatore per l\'argomento del nodo','it',0,0,0,0),(5955,'Il valore dell\'argomento selezionato deve essere un numero che coincide con l\'ID di un nodo. Utilizzare l\'argomento \'Globale: Nullo\' se non si vuole anche restringere i risultati all\'ID di quel nodo.','it',0,0,0,0),(5956,'Evidenzia il colore','it',0,0,0,0),(5957,'Un valore esadecimale a 6 cifre del colore da utilizzare per l\'evidenziazione. Include il prefisso cancelletto. Per esempio #FF0000','it',0,0,0,0),(5958,'È','it',0,0,0,0),(5959,'Paese','it',0,0,0,0),(5960,'Impostazioni principali','it',0,0,0,0),(5961,'Non è','it',0,0,0,0),(5962,'Telefono','it',0,0,0,0),(5963,'Fax','it',0,0,0,0),(5964,'Permetti','it',0,0,0,0),(5965,'Nome della posizione','it',0,0,0,0),(5966,'per es. un luogo di lavoro, una sede, un punto di ritrovo','it',0,0,0,0),(5967,'Via','it',0,0,0,0),(5968,'Aggiuntivo','it',0,0,0,0),(5969,'Città','it',0,0,0,0),(5970,'Codice postale','it',0,0,0,0),(5971,'NON ELENCATO','it',0,0,0,0),(5972,'Stato/Provincia','it',0,0,0,0),(5973,'Link alla mappa','it',0,0,0,0),(5974,'Opzioni di georeferenziazione','it',0,0,0,0),(5975,'Impostazioni per il modulo Location','it',0,0,0,0),(5976,'Il modulo «Location» permette di associare una posizione geografica con contenuto e utenti. Gli utenti possono fare ricerche di prossimità attraverso il CAP. Questo è utile per organizzare comunità su base geografica.','it',0,0,0,0),(5977,'Per amministrare informazioni di posizione per i contenuti, utilizzare la pagina di amministrazione del tipo di contenuto. Per supportare più funzionalità attive per la posizione, è necessario installare lo specifico file di inclusione della nazione. Per supportare le ricerche di prossimità col codice postale per una determinata nazione, sarà necessario un dump del database dei dati dei codici postali per tale nazione. A giugno del 2007 solo i codici postali di Stati Uniti e Germania risultano supportati.','it',0,0,0,0),(5978,'km','it',0,0,0,0),(5979,'Nessuno supportato.','it',0,0,0,0),(5980,'Posizione della via','it',0,0,0,0),(5981,'Configura i parametri per il %service di georeferenziazione','it',0,0,0,0),(5982,'Non sono necessari parametri di configurazione, oppure non è stata implementata una form per raccogliere tali parametri.','it',0,0,0,0),(5983,'Nessun servizio selezionato per la nazione.','it',0,0,0,0),(5984,'Configura parametri','it',0,0,0,0),(5985,'Nessuna configurazione è necessaria per il servizio selezionato.','it',0,0,0,0),(5986,'Informazioni di locazione','it',0,0,0,0),(5987,'Numero di posizioni','it',0,0,0,0),(5988,'Richiudibile','it',0,0,0,0),(5989,'Rendi la casella della posizione raggruppabile.','it',0,0,0,0),(5990,'Raggruppato','it',0,0,0,0),(5991,'Visaluzza la casella della posizione raggruppata.','it',0,0,0,0),(5992,'Aggiungi un\'altra posizione dalla pagina di visualizzazione del nodo.','it',0,0,0,0),(5993,'Visualizza l\'opzione \"Aggiungi un\'altra posizione\" nella pagina di visualizzazione del nodo.','it',0,0,0,0),(5994,'Posizione #%number','it',0,0,0,0),(5995,'Aggiungi un\'altra posizione','it',0,0,0,0),(5996,'Aggiungi posizione','it',0,0,0,0),(5997,'Selezione predefinita della nazione','it',0,0,0,0),(5998,'Questa sarà la nazione selezionata automaticamente quando il form viene visualizzato per indicare una nuova posizione.','it',0,0,0,0),(5999,'Attiva/disattiva visualizzazione della posizione','it',0,0,0,0),(6000,'Disattiva la visualizzazione delle posizioni','it',0,0,0,0),(6001,'Attiva la visualizzazione delle posizioni','it',0,0,0,0),(6002,'Se vuoi nascondere le posizioni e usare un tema personalizzato per gestirne la visualizzazione, puoi disattivare la visualizzazione delle posizioni e affidare al tema questa funzione.','it',0,0,0,0),(6003,'Usa una Google Map per impostare latitudine e longitudine ','it',0,0,0,0),(6004,'Coordinate','it',0,0,0,0),(6005,'Posizioni','it',336,1,0,0),(6006,'Numero di fax','it',0,0,0,0),(6007,'Location Fax','it',0,0,0,0),(6008,'Telefono','it',0,0,0,0),(6009,'Location Phone','it',0,0,0,0),(6010,'Geocoder API Key','it',0,0,0,0),(6011,'Yahoo! Web Services Application ID','it',0,0,0,0),(6012,'Isole Vergini','it',0,0,0,0),(6013,'Unità','it',0,0,0,0),(6014,'Opzioni ricerca','it',0,0,0,0),(6015,'Stati Federati della Micronesia','it',0,0,0,0),(6016,'Provincia','it',0,0,0,0),(6017,'Stile di visualizzazione','it',0,0,0,0),(6018,'Posizione sconosciuta','it',0,0,0,0),(6019,'Scegliere','it',0,0,0,0),(6020,'Alabama','it',0,0,0,0),(6021,'Alaska','it',0,0,0,0),(6022,'Arizona','it',0,0,0,0),(6023,'Arkansas','it',0,0,0,0),(6024,'California','it',0,0,0,0),(6025,'Colorado','it',0,0,0,0),(6026,'Connecticut','it',0,0,0,0),(6027,'Delaware','it',0,0,0,0),(6028,'Florida','it',0,0,0,0),(6029,'Hawaii','it',0,0,0,0),(6030,'Idaho','it',0,0,0,0),(6031,'Illinois','it',0,0,0,0),(6032,'Indiana','it',0,0,0,0),(6033,'Iowa','it',0,0,0,0),(6034,'Kansas','it',0,0,0,0),(6035,'Kentucky','it',0,0,0,0),(6036,'Louisiana','it',0,0,0,0),(6037,'Maine','it',0,0,0,0),(6038,'Maryland','it',0,0,0,0),(6039,'Massachusetts','it',0,0,0,0),(6040,'Michigan','it',0,0,0,0),(6041,'Minnesota','it',0,0,0,0),(6042,'Mississippi','it',0,0,0,0),(6043,'Missouri','it',0,0,0,0),(6044,'Montana','it',0,0,0,0),(6045,'Nebraska','it',0,0,0,0),(6046,'Nevada','it',0,0,0,0),(6047,'New Hampshire','it',0,0,0,0),(6048,'New Jersey','it',0,0,0,0),(6049,'Nuovo Messico','it',0,0,0,0),(6050,'New York','it',0,0,0,0),(6051,'Carolina del Nord','it',0,0,0,0),(6052,'Nord Dakota','it',0,0,0,0),(6053,'Ohio','it',0,0,0,0),(6054,'Oklahoma','it',0,0,0,0),(6055,'Oregon','it',0,0,0,0),(6056,'Pennsylvania','it',0,0,0,0),(6057,'Rhode Island','it',0,0,0,0),(6058,'Carolina del Sud','it',0,0,0,0),(6059,'Sud Dakota','it',0,0,0,0),(6060,'Tennessee','it',0,0,0,0),(6061,'Texas','it',0,0,0,0),(6062,'Utah','it',0,0,0,0),(6063,'Vermont','it',0,0,0,0),(6064,'Virginia','it',0,0,0,0),(6065,'Washington','it',0,0,0,0),(6066,'West Virginia','it',0,0,0,0),(6067,'Wisconsin','it',0,0,0,0),(6068,'Wyoming','it',0,0,0,0),(6069,'Raccogli','it',0,0,0,0),(6070,'Distanza','it',0,0,0,0),(6071,'Codice postale','it',0,0,0,0),(6072,'Location Search','it',0,0,0,0),(6073,'Miglia','it',0,0,0,0),(6074,'Prefisso internazionale','it',0,0,0,0),(6075,'Tipo di selezione','it',0,0,0,0),(6076,'Richiedi','it',0,0,0,0),(6077,'Massimo numero di posizioni','it',0,0,0,0),(6078,'District Of Columbia','it',0,0,0,0),(6079,'Autocompletamento','it',0,0,0,0),(6080,'Se gmap.module è installato e <a href=\"@enabled\">attivo</a> e anche questa impostazione è attiva, gli utenti autorizzati a inserire manualmente le coordinate potranno farlo tramite una Google Map interattiva. Devi assicurarti di aver inserito una <a href=\"@google_maps_api_key\">Google Maps API key</a> nelle <a href=\"@gmap_module_settings\">impostazioni del modulo gmap</a>.','it',0,0,0,0),(6081,'Macro per il selezionatore posizione','it',0,0,0,0),(6082,'Se vuoi cambiare la macro usata per generare la mappa che seleziona la posizione, puoi farlo qui. Nota: i behavior <em>locpick</em> e <em>collapsehack</em> sono attivi obbligatoriamente e non possono essere modificati.','it',0,0,0,0),(6083,'Attiva la georeferenziazione JIT','it',0,0,0,0),(6084,'se stai per importare molte posizioni direttamente nel database, puoi aver bisogno di attivare la georeferenziazione JIT («Just In Time», in tempo reale) e caricare le posizioni con il sorgente impostato come 4 (LOCATION_LATLON_JIT_GEOCODING). Il sistema effettuerà automaticamente la georeferenziazione delle posizioni mentre sono caricate.','it',0,0,0,0),(6085,'BUG: Nazione trovata nell\'attributo delle province.','it',0,0,0,0),(6086,'Nome della posizione (Se ci sono posizioni multiple per nodo, N è l\'iterazione, a partire da 0)','it',0,0,0,0),(6087,'Via (Se ci sono posizioni multiple per nodo, N è l\'iterazione, a partire da 0)','it',0,0,0,0),(6088,'Aggiuntivo (Se ci sono posizioni multiple per nodo, N è l\'iterazione, a partire da 0)','it',0,0,0,0),(6089,'Città (Se ci sono posizioni multiple per nodo, N è l\'iterazione, a partire da 0)','it',0,0,0,0),(6090,'Stato/Provincia (Se ci sono posizioni multiple per nodo, N è l\'iterazione, a partire da 0)','it',0,0,0,0),(6091,'Nome di Stato/Provincia (Se ci sono posizioni multiple per nodo, N è l\'iterazione, a partire da 0)','it',0,0,0,0),(6092,'Codice Postale (Se ci sono posizioni multiple per nodo, N è l\'iterazione, a partire da 0)','it',0,0,0,0),(6093,'Latitudine (Se ci sono posizioni multiple per nodo, N è l\'iterazione, a partire da 0)','it',0,0,0,0),(6094,'Longitudine (Se ci sono posizioni multiple per nodo, N è l\'iterazione, a partire da 0)','it',0,0,0,0),(6095,'Nazione (Se ci sono posizioni multiple per nodo, N è l\'iterazione, a partire da 0)','it',0,0,0,0),(6096,'Nome della Nazione (Se ci sono posizioni multiple per nodo, N è l\'iterazione, a partire da 0)','it',0,0,0,0),(6097,'Le posizioni sono gli indirizzi e le coordinate della mappa.','it',0,0,0,0),(6098,'Lid','it',0,0,0,0),(6099,'L\'ID posizione della posizione.','it',0,0,0,0),(6100,'Il nome della posizione selezionata.','it',0,0,0,0),(6101,'La via della posizione selezionata.','it',0,0,0,0),(6102,'La città della posizione selezionata.','it',0,0,0,0),(6103,'La provincia della posizione selezionata.','it',0,0,0,0),(6104,'Il codice postale della posizione selezionata.','it',0,0,0,0),(6105,'La nazione della posizione selezionata.','it',0,0,0,0),(6106,'La latitudine della posizione selezionata.','it',0,0,0,0),(6107,'La longitudine della posizione selezionata.','it',0,0,0,0),(6108,'Le coordinate della posizione selezionata nel formato \'lat, long\'.','it',0,0,0,0),(6109,'Distanza / Prossimità','it',0,0,0,0),(6110,'La distanza dalla posizione selezionata e l\'utente corrente o una posizione specifica.','it',0,0,0,0),(6111,'Il blocco dell\'indirizzo completo della posizione.','it',0,0,0,0),(6112,'Coordinate attuali','it',0,0,0,0),(6113,'Inserito dall\'utente','it',0,0,0,0),(6114,'Geocodificato (a livello di Codice postale)','it',0,0,0,0),(6115,'Geocodificato (Esatto)','it',0,0,0,0),(6116,'Se vuoi inserire manualmente latitudine e longitudine, puoi inserirle qui sopra. Se lasci i campi vuoti, il sistema cercherà di definire lo coordinate in base all\'indirizzo inserito. Per fare in modo che il sistema ricalcoli le coordinate dall\'indirizzo, per esempio se l\'indirizzo cambia, elimina i valori da questi campi.','it',0,0,0,0),(6117,'E\' necessario impostare la posizione cliccando sulla mappa, o trascinando il  marcatore di posizione. Per pulire la posizione e farla ricalcolare, cliccare sul marcatore.','it',0,0,0,0),(6118,'Seleziona questa casella per eliminare questa posizione.','it',0,0,0,0),(6119,'Campi Posizione','it',0,0,0,0),(6120,'Non raccogliere','it',0,0,0,0),(6121,'Forza impostazioni predefinite','it',0,0,0,0),(6122,'Scelta delle coordinate','it',0,0,0,0),(6123,'Nome della provincia','it',0,0,0,0),(6124,'Nome della nazione','it',0,0,0,0),(6125,'Link alla mappa','it',0,0,0,0),(6126,'Non è stato possibile trovare la provincia specificata nella nazione specificata.','it',0,0,0,0),(6127,'E\' necessario inserire sia la latitudine che la longitudine oppure lasciare entrambe vuote.','it',0,0,0,0),(6128,'Cancellazione della posizione senza riferimento con LID %lid.','it',0,0,0,0),(6129,'Numero minimo di posizioni','it',0,0,0,0),(6130,'Il numero di posizioni che è necessario inserire.','it',0,0,0,0),(6131,'Il numero massimo di posizioni che possono essere associate.','it',0,0,0,0),(6132,'Numero di posizioni che possono essere aggiunte in una volta sola','it',0,0,0,0),(6133,'Il numero di form vuote per la posizione da mostrare durante la modifica.','it',0,0,0,0),(6134,'Impostazioni di raccolta','it',0,0,0,0),(6135,'Peso della form della posizione','it',0,0,0,0),(6136,'Peso della casella della posizione nel form aggiungi/modifica. Valori inferiori verranno visualizzati più in alto nella form.','it',0,0,0,0),(6137,'Peso della visualizzazione','it',0,0,0,0),(6138,'Nascondi i campi dalla visualizzazione','it',0,0,0,0),(6139,'posizione','it',0,0,0,0),(6140,'Conservazione del lid %lid a causa di unicità.','it',0,0,0,0),(6141,'Mostra la posizione nella visualizzazione di anteprima','it',0,0,0,0),(6142,'Mostra la posizione nella visualizzazione completa','it',0,0,0,0),(6143,'Impostazioni RSS','it',0,0,0,0),(6144,'Qui è possibile cambiare il modo in cui i dati della posizione influiscono sui feed RSS sui nodi.','it',0,0,0,0),(6145,'Modalità RSS','it',0,0,0,0),(6146,'Seleziona come usare le posizioni nei feed RSS per questo tipo di contenuto.','it',0,0,0,0),(6147,'Nessuno (Non mettere i dati della posizione nei feed RSS)','it',0,0,0,0),(6148,'W3C Geo (deprecato)','it',0,0,0,0),(6149,'Compatibile con Location 1.x-2.x (W3C buggato)','it',0,0,0,0),(6150,'GeoRSS-Simple','it',0,0,0,0),(6151,'GeoRSS GML','it',0,0,0,0),(6152,'E\' necessario avere almeno una form vuota attiva per la posizione se si sta per consentire l\'inserimento di posizioni per i nodi di questo tipo di contenuto. Se non si intende consentire l\'inserimento di posizioni per i nodi di questo tipo di contenuto, impostare il numero massimo di posizioni consentite per questo tipo di contenuto a 0.','it',0,0,0,0),(6153,'Non è possibile mostrare più form vuote di posizione del numero massimo di posizioni consentite per questo tipo di contenuto.','it',0,0,0,0),(6154,'Raccogli durante la registrazione','it',0,0,0,0),(6155,'amministra le posizioni degli utenti','it',0,0,0,0),(6156,'imposta la propria posizione dell\'utente','it',0,0,0,0),(6157,'vedi la propria posizione dell\'utente','it',0,0,0,0),(6158,'vedi tutte le posizioni degli utenti','it',0,0,0,0),(6159,'Nota: Una posizione con lid 0 è stata trovata nel database. E\' stata spostata al lid %lid. Si potrebbe volerlo verificare manualmente, in quanto un lid 0 è di solito una voce corrotta.','it',0,0,0,0),(6160,'Nota: Rifiuto ad attivare location_user.module, in quanto location.module non è attualmente attivo.','it',0,0,0,0),(6161,'Nota: Rifiuto ad attivare location_node.module, in quanto location.module non è attualmente attivo.','it',0,0,0,0),(6162,'Nota: l\'aggiornamento 6301 di location.module genererà numerosi avvertimenti/fallimenti riguardanti gli indici e le chiavi primarie se si sta aggiornando da uno dei rilasci di test 6.x. Questi avvertimenti possono non venire considerati in sicurezza in questo caso.','it',0,0,0,0),(6163,'Node Locations','it',0,0,0,0),(6164,'Associa le posizioni ai nodi.','it',0,0,0,0),(6165,'User Locations','it',0,0,0,0),(6166,'Associa le posizioni agli utenti.','it',0,0,0,0),(6167,'Non si hanno i permessi per aggiungere una posizione a questo nodo, oppure il nodo possiede già il numero massimo di posizioni.','it',0,0,0,0),(6168,'Location Add Another','it',0,0,0,0),(6169,'Permette di aggiungere velocemente posizioni direttamente da un nodo senza dover cliccare prima su \'modifica\'.','it',0,0,0,0),(6170,'Archivia una posizione di location.module.','it',0,0,0,0),(6171,'Campo Posizione','it',0,0,0,0),(6172,'Location CCK','it',0,0,0,0),(6173,'Definisce un tipo di campo Posizione.','it',0,0,0,0),(6174,'Numero di Fax della posizione (Se ci sono più posizioni per nodo, N è l\'iterazione, a partire da 0)','it',0,0,0,0),(6175,'Permette di aggiungere un numero di fax alla posizione.','it',0,0,0,0),(6176,'Aggiungi posizioni a ogni nodo.','it',0,0,0,0),(6177,'Aggiunto da location_generate.module','it',0,0,0,0),(6178,'Location Generate','it',0,0,0,0),(6179,'Assegnamento random di massa di latitudine e longitudine ai nodi.','it',0,0,0,0),(6180,'Numero di Telefono della posizione (Se ci sono posizioni multiple per nodo, N è l\'iterazione, a partire da 0)','it',0,0,0,0),(6181,'Permette di aggiungere un numero di telefono alla posizione.','it',0,0,0,0),(6182,'Utilizzare la mappa per scegliere le coordinate di ricerca','it',0,0,0,0),(6183,'Aggiungi il campo indirizzo di georeferenziazione alla mappa di ricerca','it',0,0,0,0),(6184,'Macro per la mappa di ricerca','it',0,0,0,0),(6185,'Prossimità','it',0,0,0,0),(6186,'Locate Address','it',0,0,0,0),(6187,'mi','it',0,0,0,0),(6188,'Impostazioni per il modulo Location Search','it',0,0,0,0),(6189,'Pagina di ricerca avanzata per le posizioni.','it',0,0,0,0),(6190,'Chilometri','it',0,0,0,0),(6191,'Origine','it',0,0,0,0),(6192,'Usa il filtro Distanza / Prossimità','it',0,0,0,0),(6193,'Sigla della provincia','it',0,0,0,0),(6194,'Sia la via che il campo aggiuntivo','it',0,0,0,0),(6195,'Solo la via','it',0,0,0,0),(6196,'Solo il campo aggiuntivo','it',0,0,0,0),(6197,'Valori decimali','it',0,0,0,0),(6198,'Gradi, minuti, secondi','it',0,0,0,0),(6199,'Prossimità (Rettangolare)','it',0,0,0,0),(6200,'Prossimità (Circolare)','it',0,0,0,0),(6201,'Codice Postale / Nazione','it',0,0,0,0),(6202,'Codice Postale (assumi la nazione predefinita)','it',0,0,0,0),(6203,'Metri','it',0,0,0,0),(6204,'Posizione del nodo','it',0,0,0,0),(6205,'Consente termini multipli per parametro.','it',0,0,0,0),(6206,'Menu a discesa','it',0,0,0,0),(6207,'GMap Macro','it',0,0,0,0),(6208,'Visualizza provincia','it',0,0,0,0),(6209,'Visualizza il nome completo della provincia.','it',0,0,0,0),(6210,'Visualizza provincia/codice dello stato.','it',0,0,0,0),(6211,'Apri il link alla mappa in una nuova finestra','it',0,0,0,0),(6212,'Seleziona questa opzione se vuoi che il link alla mappa si apra in una finestra separata','it',0,0,0,0),(6213,'Apertura in una nuova finestra','it',0,0,0,0),(6214,'Se hai scelto di far aprire la mappa in una nuova finestra, questo controlla il metodo utilizzato per farlo. target=\"_blank\" funzionerà senza problemi ma non aderisce allo standard XHTML Strict. rel=\"external\" aderisce allo standard XHTML Strict ma non aprirà una nuova finestra a meno che non sia stato aggiunto del codice jQuery al sito per aggiungere l\'attributo del target. Se non sei sicuro, lascia impostato su target=\"_blank\"','it',0,0,0,0),(6215,'Accuratezza minima di georeferenziazione Google Maps','it',0,0,0,0),(6216,'La API di georeferenziazione di Google Maps restituisce risultati con una determinata accuratezza. Tutti i responsi al di sotto di questa accuratezza minima verranno ignorati. Vai alla pagina !accuracy_values_link.','it',0,0,0,0),(6217,'Pulisci la cache delle province','it',0,0,0,0),(6218,'Se i file location.xx.inc sono stati modificati, è necessario pulire la cache delle province perché Location riconosca le modifiche.','it',0,0,0,0),(6219,'Pulisci la lista delle nazioni supportate','it',0,0,0,0),(6220,'Se è stato aggiunto il supporto per una nuova nazione, è necessario pulire la lista delle nazioni supportate perché Location riconosca le modifiche.','it',0,0,0,0),(6221,'Cache delle province di Location pulita.','it',0,0,0,0),(6222,'Lista delle nazioni supportate di Location pulita.','it',0,0,0,0),(6223,'Accuratezza a livello di nazione','it',0,0,0,0),(6224,'Accuratezza a livello di regione (stato, provincia, prefettura, ecc.)','it',0,0,0,0),(6225,'Accuratezza a livello di sotto-regione (paese, comune, ecc)','it',0,0,0,0),(6226,'Accuratezza a livello di centro urbano (città, paese)','it',0,0,0,0),(6227,'Accuratezza a livello di codice postale (zip code)','it',0,0,0,0),(6228,'Accuratezza a livello di strada','it',0,0,0,0),(6229,'Accuratezza a livello di intersezione','it',0,0,0,0),(6230,'Accuratezza a livello di indirizzo','it',0,0,0,0),(6231,'Accuratezza a livello di edificio (nome della costruzione, nome della proprietà, centro commerciale, ecc.)','it',0,0,0,0),(6232,'Utilità di Location','it',0,0,0,0),(6233,'Form del modulo Node Locations.','it',0,0,0,0),(6234,'Posizione dell\'utente','it',0,0,0,0),(6235,'Nota: L\'opzione \'Tipo di form\' per il filtro \'Posizione: Distanza / Prossimità\' nelle viste è stato modificato ed ora si chiama \'Origine\'. Le viste seguenti stanno usando queste impostazioni e sono state aggiornate per utilizzare le nuove impostazioni: %views.','it',0,0,0,0),(6236,'Una macro da usare come mappa base per questo campo. Questa mappa sarà ricentrata sulla posizione, quindi il centro non importante.','it',0,0,0,0),(6237,'Marcatore GMap','it',0,0,0,0),(6238,'Predefinito (indirizzo)','it',0,0,0,0),(6239,'Indirizzo con mappa','it',0,0,0,0),(6240,'Solo mappa','it',0,0,0,0),(6241,'Valori multipli del campo su una singola mappa','it',0,0,0,0),(6242,'posizione per CCK','it',0,0,0,0),(6243,'Il numero di fax della posizione selezionata.','it',0,0,0,0),(6244,'Il numero di telefono della posizione selezionata.','it',0,0,0,0),(6245,'Posizione del termine','it',0,0,0,0),(6246,'Posizione tassonomia','it',0,0,0,0),(6247,'Location Taxonomy','it',0,0,0,0),(6248,'Associa le posizioni a termini di tassonomia.','it',0,0,0,0),(6249,'Accuratezza di Georeferenziazione di Google Maps per %country','it',0,0,0,0),(6250,'L\'accuratezza minima richiesta con cui salvare i dati della georeferenziazione.','it',0,0,0,0),(6251,'Tipo di coordinate','it',0,0,0,0),(6252,'Codice Postale (Zipcode)','it',0,0,0,0),(6253,'Coordinate decimali per Latitudine e Longitudine, separate da una virgola','it',0,0,0,0),(6254,'Tipo di punto centrale.','it',0,0,0,0),(6255,'Formato dell\'argomento codice postale: country_postcode_distance o postcode_distance','it',0,0,0,0),(6256,'Formato dell\'argomento Lat/Lon: lat,lon_distance','it',0,0,0,0),(6257,'Unità di lunghezza','it',0,0,0,0),(6258,'Seleziona l\'unità di lunghezza. I valori decimali dovrebbero essere separati da una virgola.','it',0,0,0,0),(6259,'Prossimità Circolare','it',0,0,0,0),(6260,'Prossimità Rettangolare','it',0,0,0,0),(6261,'Latitudine / Longitudine dell\'utente (vuoto se non impostato)','it',0,0,0,0),(6262,'Latitudine / Longitudine dell\'utente (ripiega su quelle statiche se non impostato)','it',0,0,0,0),(6263,'Latitudine / Longitudine statiche','it',0,0,0,0),(6264,'Usa codice PHP per determinare latitudine/longitudine','it',0,0,0,0),(6265,'Latitudine / Longitudine del nodo dall\'argomento nid delle viste','it',0,0,0,0),(6266,'Latitudine / Longitudine dell\'utente dall\'argomento uid delle viste','it',0,0,0,0),(6267,'Questo è il metodo con cui latitudine/longitudine del punto d\'origine verrà determinato. Quando si utilizzano latitudine / longitudine dell\'utente, se un utente possiede posizioni multiple, verrà utilizzata la prima.','it',0,0,0,0),(6268,'Codice PHP per latitudine, longitudine','it',0,0,0,0),(6269,'Inserisci codice PHP che ritorna latitudine/longitudine. Non utilizzare &lt;?php ?&gt;. Deve essere restituito soltanto un array con valori float (virgola mobile) impostati per le chiavi \'latitudine\' e \'longitudine\'.','it',0,0,0,0),(6270,'Argomento ID del nodo da usare','it',0,0,0,0),(6271,'Seleziona quali argomenti della vista usare come ID del nodo. Verrà utilizzata come origine la coppia latitudine / longitudine della prima posizione del nodo. Utilizza l\'argomento \'Global: Null\' se non vuoi anche restringere i risultati a quell\'ID del nodo. Devi aver aggiunto argomenti alla vista per usare questa opzione.','it',0,0,0,0),(6272,'Seleziona quali argomenti della vista usare come ID del nodo. Verrà utilizzata come origine la coppia latitudine / longitudine della prima posizione del nodo. Utilizza l\'argomento \'Global: Null\' se non vuoi anche restringere i risultati a quell\'ID del nodo.','it',0,0,0,0),(6273,'Posizione da usare','it',0,0,0,0),(6274,'Seleziona quale posizione del nodo usare come origine. O la posizione del nodo oppure il campo CCK di tipo posizione. Se la posizione supporta voci multiple, verrà utilizzata la prima.','it',0,0,0,0),(6275,'Argomento ID dell\'utente da usare','it',0,0,0,0),(6276,'Select which of the view\'s arguments to use as the user ID.  The latitude / longitude of the first location of that user will be used as the origin. Use the \'Global: Null\' argument if you don\'t want to also restrict results to that user ID. You must have added arguments to the view to use this option.','it',0,0,0,0),(6277,'Select which of the view\'s arguments to use as the user ID.  The latitude / longitude of the first location of that user will be used as the origin. Use the \'Global: Null\' argument if you don\'t want to also restrict results to that user ID.','it',0,0,0,0),(6278,'Macro GMap','it',0,0,0,0),(6279,'La macro da utilizzare per la mappa Latitudine / Longitudine, se applicabile.','it',0,0,0,0),(6280,'Permetti la scelta della posizione dell\'utente','it',0,0,0,0),(6281,'Se selezionato e se si sta usando l\'origine della posizione dell\'utente, l\'utente potrà scegliere quale utilizzare delle proprie posizioni. Altrimenti sarà utilizzata la sua prima posizione.','it',0,0,0,0),(6282,'Inserimento Latitudine / Longitudine (usa la mappa)','it',0,0,0,0),(6283,'La selezione della posizione Gmap non è disponibile durante l\'anteprima istantanea.','it',0,0,0,0),(6284,'Posizione #@num','it',0,0,0,0),(6285,'Seleziona quale delle tue posizioni usare.','it',0,0,0,0),(6286,'Nome dello Stato/Provincia','it',0,0,0,0),(6287,'Parola chiave della posizione sconosciuta','it',0,0,0,0),(6288,'Crea un contesto di posizione da un nodo.','it',0,0,0,0),(6289,'Utilizza la posizione salvata direttamente nel nodo per questa relazione','it',0,0,0,0),(6290,'Distanza della posizione del nodo','it',0,0,0,0),(6291,'Se i nodi che verranno utilizzati in questa relazioni possiedono posizioni multiple, seleziona qual posizione vuoi utilizzare.','it',0,0,0,0),(6292,'Campo CCK posizione da utilizzare in questa relazione','it',0,0,0,0),(6293,'Distanza del campo CCK posizione','it',0,0,0,0),(6294,'Utilizza i campi CCK posizione per questa relazione','it',0,0,0,0),(6295,'Tipo Posizione','it',0,0,0,0),(6296,'Acceso','it',0,0,0,0),(6297,'Viste','it',0,0,0,0),(6298,'stile','it',0,0,0,0),(6299,'Quadrato','it',0,0,0,0),(6300,'Salva e modifica','it',0,0,0,0),(6301,'Soglia','it',0,0,0,0),(6302,'Stile','it',0,0,0,0),(6303,'Archiviazione','it',0,0,0,0),(6304,'URL base','it',0,0,0,0),(6305,'Eccezioni','it',0,0,0,0),(6306,'Trasparente','it',0,0,0,0),(6307,'Raw (non processato)','it',0,0,0,0),(6308,'Schermo intero','it',0,0,0,0),(6309,'Arrotonda','it',0,0,0,0),(6310,'Visualizzazioni','it',0,0,0,0),(6311,'Stili','it',0,0,0,0),(6315,'Impostazioni generali','it',0,0,0,0),(6316,'Gestisci','it',0,0,0,0),(6317,'Componenti','it',0,0,0,0),(6318,' in ','it',0,0,0,0),(6319,'Assegno','it',0,0,0,0),(6320,'Stato','it',0,0,0,0),(6321,'Ripulitura','it',0,0,0,0),(6322,'Altro','it',0,0,0,0),(6323,'Seleziona tutto','it',0,0,0,0),(6324,'Filtri','it',0,0,0,0),(6325,'Cancella','it',0,0,0,0),(6326,'Funzionalità','it',0,0,0,0),(6327,'Mancante','it',0,0,0,0),(6328,'Gestione funzionalità','it',0,0,0,0),(6329,'Conflitto','it',0,0,0,0),(6330,'Opzioni avanzate','it',0,0,0,0),(6331,'Forzature','it',0,0,0,0),(6332,'Non disponibile','it',0,0,0,0),(6333,'Imballo','it',0,0,0,0),(6334,'Ricostruzione','it',0,0,0,0),(6335,'L\'indirizzo URL %url non è valido. Inserire gentilmente un indirizzo URL completo, simile a http://www.esempio.com/feed.xml.','it',0,0,0,0),(6336,'Elementi di menu','it',0,0,0,0),(6337,'Voci di menu','it',0,0,0,0),(6338,'Prerequisiti non soddisfatti: !dependencies','it',0,0,0,0),(6339,'Verifiche in corso...','it',0,0,0,0),(6340,'Non sono state effettuate modifiche a questa funzionalità.','it',0,0,0,0),(6341,'Scarica funzionalità','it',0,0,0,0),(6342,'Abilita e disabilita funzionalità.','it',0,0,0,0),(6343,'Visualizza i componenti di una funzionalità.','it',0,0,0,0),(6344,'Confronta lo stato predefinito e quello attuale di una funzionalità.','it',0,0,0,0),(6345,'Voci di menu per tutte le funzionalità abilitate.','it',0,0,0,0),(6346,'Fornisce a Drupal la gestione di funzionalità, ovvero strutture composte da moduli e relative configurazioni.','it',0,0,0,0),(6347,'Prerequisiti','it',0,0,0,0),(6348,'Nessuna funzionalità disponibile.','it',0,0,0,0),(6349,'Esempio: Galleria immagini','it',0,0,0,0),(6350,'Esempio: galleria_immagini','it',0,0,0,0),(6351,'Può contenenre solo lettere minuscole, numeri e sottolineatura (\"_\"). <strong>Evitare di scegliere un nome uguale ad un progetto Drupal esistente.</strong>','it',0,0,0,0),(6352,'Fornire una breve descrizione di che cosa si debba aspettare un utente dopo aver abilitato questa funzionalità.','it',0,0,0,0),(6353,'URL dell\'XML di aggiornamento','it',0,0,0,0),(6354,'funzionalita','it',0,0,0,0),(6355,'Creazione funzionalità','it',0,0,0,0),(6356,'Crea un nuovo modulo funzionalità.','it',0,0,0,0),(6357,'Rilevato automaticamente','it',0,0,0,0),(6358,'Fornito dal prerequisito','it',0,0,0,0),(6359,'Ricreare','it',0,0,0,0),(6360,'Ripristinare i componenti','it',0,0,0,0),(6361,'Accettare la variazione','it',0,0,0,0),(6362,'Eseguo @action su @module_name / @component.','it',0,0,0,0),(6363,'Complatato @action per @module_name / @component.','it',0,0,0,0),(6364,'Gestione funzionalità.','it',0,0,0,0),(6365,'Ricrea un modulo funzionalità esistente.','it',0,0,0,0),(6366,'Revisione variazioni manuali','it',0,0,0,0),(6367,'Richiede revisione','it',0,0,0,0),(6368,'È richiesto da: !dependents','it',0,0,0,0),(6369,'Entra in conflitto con: !conflicts','it',0,0,0,0),(6370,'Sembra che @module non includa il file @include.','it',0,0,0,0),(6371,'L\'uso del file @filename è deprecato e può essere rimosso.','it',0,0,0,0),(6372,'Conflitti con altre funzionalità','it',0,0,0,0),(6373,'Amministra le funzionalità','it',0,0,0,0),(6374,'Esegue compiti amministrativi sulle funzionalità.','it',0,0,0,0),(6375,'Visiona, abilita e disabilita le funzionalità.','it',0,0,0,0),(6376,'Esempio: 7.x-1.0 oppure 7.x-1.0-beta1','it',0,0,0,0),(6377,'Crea funzionalità','it',0,0,0,0),(6385,'--','it',0,0,0,0),(6386,'Azienda','it',0,0,0,0),(6387,'Nome','it',0,0,0,0),(6388,'Cognome','it',0,0,0,0),(6389,'Nominativo','it',0,0,0,0),(6390,'Campo indirizzo','it',0,0,0,0),(6391,'Contea','it',0,0,0,0),(6392,'Alberta','it',0,0,0,0),(6393,'Columbia britannica','it',0,0,0,0),(6394,'Manitoba','it',0,0,0,0),(6395,'Nuovo Brunswick','it',0,0,0,0),(6396,'Territori del nord-ovest','it',0,0,0,0),(6397,'Nuova Scozia','it',0,0,0,0),(6398,'Nunavut','it',0,0,0,0),(6399,'Ontario','it',0,0,0,0),(6400,'Isola Principe Edoardo','it',0,0,0,0),(6401,'Quebec','it',0,0,0,0),(6402,'Saskatchewan','it',0,0,0,0),(6403,'Territori dello Yukon','it',0,0,0,0),(6404,'Indirizzo postale','it',0,0,0,0),(6405,'ZIP Code','it',0,0,0,0),(6406,'Distrito Federal','it',0,0,0,0),(6407,'Acre','it',0,0,0,0),(6408,'Alagoas','it',0,0,0,0),(6409,'Amazonas','it',0,0,0,0),(6410,'Bahia','it',0,0,0,0),(6411,'Minas Gerais','it',0,0,0,0),(6412,'Mato Grosso do Sul','it',0,0,0,0),(6413,'Mato Grosso','it',0,0,0,0),(6414,'Pernambuco','it',0,0,0,0),(6415,'Rio de Janeiro','it',0,0,0,0),(6416,'Rio Grande do Norte','it',0,0,0,0),(6417,'Roraima','it',0,0,0,0),(6418,'Rio Grande do Sul','it',0,0,0,0),(6419,'Santa Catarina','it',0,0,0,0),(6420,'Sergipe','it',0,0,0,0),(6421,'Tocantins','it',0,0,0,0),(6422,'Indirizzo 2','it',0,0,0,0),(6423,'Indirizzo 1','it',0,0,0,0),(6424,'Complemento','it',0,0,0,0),(6425,'Frazione','it',0,0,0,0),(6426,'Un tipo di campo che contiene un indirizzo postale conforme allo standard xNAL.','it',0,0,0,0),(6427,'Form dinamico indirizzo','it',0,0,0,0),(6428,'Paesi disponibili','it',0,0,0,0),(6429,'Se nessun paese viene esplicitamente selezionato, saranno tutti disponibili.','it',0,0,0,0),(6430,'Gestisce un campo indirizzo flessibile e conforme allo standard xNAL.','it',0,0,0,0),(6431,'Area amministrativa (Provincia/stato)','it',0,0,0,0),(6432,'Suddivisione amministrativa','it',0,0,0,0),(6433,'Località (Città)','it',0,0,0,0),(6434,'Indirizzo stradale','it',0,0,0,0),(6435,'Interno / Appartamento / Suite','it',0,0,0,0),(6436,'!label del campo %name','it',0,0,0,0),(6437,'Quartiere / Distretto','it',0,0,0,0),(6438,'Gestori di formattazione','it',0,0,0,0),(6439,'Usa configurazione del widget','it',0,0,0,0),(6440,'Nessun gestore','it',0,0,0,0),(6441,'Form indirizzo (specifico per nazione)','it',0,0,0,0),(6442,'Nominativo (nome e cognome)','it',0,0,0,0),(6443,'Nominativo (linea singola)','it',0,0,0,0),(6444,'Ragione sociale (linea singola)','it',0,0,0,0),(6445,'Esempio di Campo Indirizzo','it',0,0,0,0),(6446,'Modulo di esempio che mostra come implementare un gestore di formattazione per il Campo Indirizzo','it',0,0,0,0),(6447,'Form indirizzo (aggiunte CH)','it',0,0,0,0),(6465,'Espanso','it',0,0,0,0),(6466,'Formato input','it',0,0,0,0),(6467,'Avanzate','it',0,0,0,0),(6468,'aiuto','it',0,0,0,0),(6469,'Introduzione','it',0,0,0,0),(6470,'qui','it',0,0,0,0),(6471,'Sicurezza','it',0,0,0,0),(6472,'CSS','it',0,0,0,0),(6473,'Stato predefinito','it',0,0,0,0),(6474,'Impostazioni di base','it',0,0,0,0),(6475,'Aspetto dell\'editor','it',0,0,0,0),(6476,'Pulizia e output','it',0,0,0,0),(6477,'CSS dell\'editor','it',0,0,0,0),(6478,'Devi dare un nome al profilo.','it',0,0,0,0),(6479,'filtri','it',0,0,0,0),(6480,'Impostazioni del browser di file','it',0,0,0,0),(6481,'Larghezza editor','it',0,0,0,0),(6482,'o','it',0,0,0,0),(6483,'Filtro percorso','it',0,0,0,0),(6484,'Conversione linea a capo','it',0,0,0,0),(6485,'Esempi','it',0,0,0,0),(6486,'Plugin','it',0,0,0,0),(6487,'Documentazione API','it',0,0,0,0),(6488,'Esempi:','it',0,0,0,0),(6489,'Tema grafico','it',0,0,0,0),(6490,'WYSIWYG','it',0,0,0,0),(6491,'duplica','it',0,0,0,0),(6492,'Filtro XSS','it',0,0,0,0),(6493,'Filtro XSS.','it',0,0,0,0),(6494,'Passa all\'editor testuale','it',0,0,0,0),(6495,'Passa all\'editor rich text','it',0,0,0,0),(6496,'Rilevamento automatico della lingua','it',0,0,0,0),(6497,'Il percorso di sistema alla cartella privata è: !system_path.','it',0,0,0,0),(6498,'Percorso attuale: !path','it',0,0,0,0),(6499,'Filtri di sicurezza','it',0,0,0,0),(6500,'Impostazioni sicurezza','it',0,0,0,0),(6501,'Modalità inserimento','it',0,0,0,0),(6502,'Formati del carattere','it',0,0,0,0),(6503,'Stili predefiniti','it',0,0,0,0),(6504,'Percorso degli stili predefiniti','it',0,0,0,0),(6505,'Percorso per caricare i file','it',0,0,0,0),(6506,'Percorso assoluto dei file caricati','it',0,0,0,0),(6507,'Solo link ai percorsi','it',0,0,0,0),(6508,'Utilizzo link interni: link','it',0,0,0,0),(6509,'Intergrazione per Filtro Path e Link al contenuto','it',0,0,0,0),(6510,'Link al contenuto','it',0,0,0,0),(6511,'Questo nome del profilo è riservato. Scegli un nome diverso.','it',0,0,0,0),(6512,'Il nome del profilo deve essere univoco. Un profilo con questo nome esiste già.','it',0,0,0,0),(6513,'Risoluzione problemi','it',0,0,0,0),(6514,'Sto caricando immagini e file','it',0,0,0,0),(6515,'Ci sono tre modi per caricare i file:','it',0,0,0,0),(6516,'Usando il modulo upload di Drupal.','it',0,0,0,0),(6517,'Impostazioni dell\'editor rich text','it',0,0,0,0),(6518,'Configura l\'editor avanzato','it',0,0,0,0),(6519,'CSS del tema','it',0,0,0,0),(6520,'CSS personalizzato','it',0,0,0,0),(6521,'Percorso ai file caricati, relativo alla document root.','it',0,0,0,0),(6522,'What You See Is What You Get (quello che vedi è ciò che otterrai)','it',0,0,0,0),(6523,'pagina ufficiale del progetto','it',0,0,0,0),(6524,'CKEditor','it',0,0,0,0),(6525,'Profilo globale di CKEditor','it',0,0,0,0),(6526,'Esegui sempre i filtri di sicurezza per CKEditor.','it',0,0,0,0),(6527,'Esegui i filtri di sicurezza solo quanto CKEditor è impostato per avviarsi automaticamente.','it',0,0,0,0),(6528,'Impostazioni predefinite di CKEditor','it',0,0,0,0),(6529,'Seleziona manualmente','it',0,0,0,0),(6530,'Modulo colore: base','it',0,0,0,0),(6531,'Modulo colore: sopra','it',0,0,0,0),(6532,'Modulo colore: sotto','it',0,0,0,0),(6533,'La lingua dell\'interfaccia di CKEditor.','it',0,0,0,0),(6534,'Usa ckeditor.styles.js nel tema','it',0,0,0,0),(6535,'Definisce il percorso per ckeditor.styles.js','it',0,0,0,0),(6536,'CKFinder','it',0,0,0,0),(6537,'Seleziona il browser per i file che desideri utilizzare per caricare i file.','it',0,0,0,0),(6538,'Seleziona il browser per i file che desideri utilizzare per caricare le immagini.','it',0,0,0,0),(6539,'Percorso di CKEditor','it',0,0,0,0),(6540,'Percorso locale di CKEditor','it',0,0,0,0),(6541,'Il percorso relativo all\'ubicazione della cartella privata nella quale CKEditor deve archiviare i file caricati.','it',0,0,0,0),(6542,'solo per sviluppatori','it',0,0,0,0),(6543,'Homepage di CKEditor','it',0,0,0,0),(6544,'Dai un\'occhiata a !listlink quando installi CKEditor.','it',0,0,0,0),(6545,'Scegliere un tema grafico per CKEditor.','it',0,0,0,0),(6546,'Inserisci il Teaser Break','it',0,0,0,0),(6547,'Inserisci il Page Break','it',0,0,0,0),(6548,'Il documento contiene già un teaser break. Desideri rimuoverlo prima di continuare?','it',0,0,0,0),(6549,'elenco di problemi comuni','it',0,0,0,0),(6550,'Finestra integrata dei media','it',0,0,0,0),(6551,'Codice integrato dei media','it',0,0,0,0),(6552,'Incolla il codice integrato qui','it',0,0,0,0),(6553,'Percorso del file CSS','it',0,0,0,0),(6554,'Prendi dalla localizzazione in uso (predefinito)','it',0,0,0,0),(6555,'Sinistra->Destra','it',0,0,0,0),(6556,'Destra->Sinistra','it',0,0,0,0),(6557,'Usa opzioni di formattazione personalizzate','it',0,0,0,0),(6558,'Opzioni di formattazione personalizzate','it',0,0,0,0),(6559,'Impostazioni di CKFinder','it',0,0,0,0),(6560,'Forza \"Incolla come testo semplice\"','it',0,0,0,0),(6561,'Se abilitato, il contenuto HTML verrà automaticamente convertito in testo semplice quando viene incollato.','it',0,0,0,0),(6562,'Se abilitato, attiva automaticamente SCAYT (Spell Check As You Type, controllo ortografico durante la scrittura) dopo il caricamento dell\'editor.','it',0,0,0,0),(6563,'Amministra l\'accesso a CKEditor','it',0,0,0,0),(6564,'Personalizza l\'aspetto di CKEditor','it',0,0,0,0),(6565,'Accesso a CKFinder','it',0,0,0,0),(6566,'README.txt','it',0,0,0,0),(6567,'Collegamenti utili: !ckeditorlink | !devguidelink | !userguidelink.','it',0,0,0,0),(6568,'Guida utente','it',0,0,0,0),(6569,'Pannello di Amministrazione','it',0,0,0,0),(6570,'Profili di CKEditor','it',0,0,0,0),(6571,'Disabilita il modulo WYSIWYG.','it',0,0,0,0),(6572,'Entità HTML','it',0,0,0,0),(6573,'Converte tutti i caratteri applicabili in entità HTML.','it',0,0,0,0),(6574,'Disabilita il modulo WYSIWYG','it',0,0,0,0),(6575,'Aggiungi un nuovo profilo CKEditor','it',0,0,0,0),(6576,'Modifica il profilo di CKEditor','it',0,0,0,0),(6577,'Aggiungi il profilo globale di CKEditor','it',0,0,0,0),(6578,'Modifica il profilo globale di CKEditor','it',0,0,0,0),(6579,'Si sta usando una caratteristica che richiede l\'impostazione del <code>$cookie_domain</code>, attualmente non impostato nel file <code>settings.php</code> (CKFinder è abilitato per il profilo !profile).','it',0,0,0,0),(6580,'Abilita CKEditor (Editor HTML WYSIWYG), utilizzabile opzionalmente nei campi di testo.','it',0,0,0,0),(6581,'Crea un nuovo profilo','it',0,0,0,0),(6582,'Inserire un nome per questo profilo. Questo nome è visibile solamente all\'interno della pagina di amministrazione di CKEditor.','it',0,0,0,0),(6583,'Pulsanti attualmente utilizzati','it',0,0,0,0),(6584,'Tutti i pulsanti disponibili','it',0,0,0,0),(6585,'Scegliere i plugin da abilitare in CKEditor.','it',0,0,0,0),(6586,'Larghezza dell\'interfaccia dell\'editor in pixel o in percentuale. Esempio: 400, 100%.','it',0,0,0,0),(6587,'Rileva automaticamente il linguaggio dell\'utente.','it',0,0,0,0),(6588,'Inserire un \'a capo\' prima del tag di apertura.','it',0,0,0,0),(6589,'Inserire un \'a capo\' dopo il tag di apertura.','it',0,0,0,0),(6590,'Inserire un \'a capo\' prima del tag di chiusura.','it',0,0,0,0),(6591,'Inserire un \'a capo\' dopo il tag di chiusura.','it',0,0,0,0),(6592,'Configurazione personalizzata di JavaScript','it',0,0,0,0),(6593,'Plugin Auto Grow','it',0,0,0,0),(6594,'Sito web di CKEditor','it',0,0,0,0),(6595,'Per il funzionamento dell\'editor avanzato, è necessario anche configurare il !filterlink per gli utenti autorizzati ad accedere all\'editor. Si può permettere a questi utenti di utilizzare l\'<strong>HTML pieno</strong> oppure utilizzare la seguente lista di tag nel filtro HTML:','it',0,0,0,0),(6596,'Colore del testo','it',0,0,0,0),(6597,'Colore sfondo','it',0,0,0,0),(6598,'Conteggio delle immagini','it',0,0,0,0),(6599,'Opzioni multilingue','it',0,0,0,0),(6600,'Nessun titolo','it',0,0,0,0),(6601,'ID Gallery','it',0,0,0,0),(6689,'successivo','it',0,0,0,0),(6715,'Icone','it',0,0,0,0),(6716,'Link all\'interno dei contenuti','it',0,0,0,0),(6717,'Dimensioni delle icone delle lingue, nel formato \"larghezza x altezza\".','it',0,0,0,0),(6718,'Aggiunta icone delle lingue','it',0,0,0,0),(6719,'Tipi di link a cui aggiungere le icone della lingua:','it',0,0,0,0),(6720,'Link contenuti nel blocco selezione lingua','it',0,0,0,0),(6721,'Posizione icone','it',0,0,0,0),(6722,'Dove mostrare l\'icona, relativamente al titolo del link.','it',0,0,0,0),(6723,'Percorso file delle icone','it',0,0,0,0),(6724,'Questo modulo gestisce le icone delle lingue nei siti multilingue.','it',0,0,0,0),(6725,'Icone delle lingue','it',0,0,0,0),(6726,'Aggiunge le icone ai link di selezione della lingua.','it',0,0,0,0),(6727,'Per abilitare il supporto multilingue per determinati tipi di contenuto, usare la pagina <a href=\"@configure_content_types\">configurazione tipi di contenuto</a>.','it',0,0,0,0),(6728,'Prima del link','it',0,0,0,0),(6729,'Dopo il link','it',0,0,0,0),(6730,'In sostituzione del link','it',0,0,0,0),(6731,'Percorso per le icone delle lingue, relativo all\'installazione di Drupal. Il carattere \"*\" verrà sostituito con il codice della lingua.','it',0,0,0,0),(6732,'Aggiunge le icone ai link di selezione della lingua.','it',0,0,0,0),(6733,'Fornisce le relative funzioni per i temi grafici.','it',0,0,0,0),(6734,'Per maggiori informazioni leggere la <a href=\"@handbook\">sezione del manuale online</a>.','it',0,0,0,0),(6735,'Rimossa la variabile a livello di sito usata durante lo sviluppo 6.x-2.x.','it',0,0,0,0),(6736,'Queste opzioni sono attualmente disabilitate a causa di <a href=\"!issue_url\">un bug</a> che per ora non può essere risolto. Potrebbero essere re-introdotte in un momento successivo.','it',0,0,0,0),(6737,'DIV','it',0,0,0,0),(6738,'SPAN','it',0,0,0,0),(6739,'H1','it',0,0,0,0),(6740,'H2','it',0,0,0,0),(6741,'H3','it',0,0,0,0),(6742,'H4','it',0,0,0,0),(6743,'H5','it',0,0,0,0),(6744,'H6','it',0,0,0,0),(6745,'Attiva per modificare i link di questo campo.','it',0,0,0,0),(7005,'Foto','it',0,0,0,0),(7066,'Riferimento','it',0,0,0,0),(7150,'<p align=\"justify\">Il progetto <strong>MORSea</strong> (<em>Mooring Observatory in the Ross Sea</em>) del Programma Nazionale di Ricerche in Antartide (<a href=\"http://www.pnra.it/\">PNRA</a>) nasce con la finalità di gestire la rete degli osservatori marini posizionati fin dal 1994 nel Mare di Ross nell\'ambito dei progetti CLIMA (p.i. G. Spezie) e ABIOCLEAR (p.i. M. Ravaioli). Con la chiusura di detti progetti, avvenuta nel 2010, la Commissione Scientifica Nazionale per l\'Antartide (<a href=\"http://www.csna.it/\">CSNA</a>) ha ritenuto necessario mantenere in vita la rete con quattro punti di ancoraggio (<em>mooring</em>),nel Mare di Ross, specificamente contrassegnati con le lettere B, D, G e L, al fine di garantire l\'importante ruolo svolto da queste catene di sensori per lo studio dei cambiamenti climatici e della variabilità interannuale dei processi fisici e biogeochimici nella colonna d\'acqua.\r\nA queste attività si sono aggiunte anche le misure di “<em>ship of opportunity</em>” - effettuate senza interferire con i tempi di navigazione delle unità navali. In particolare sono state eseguite misure di temperatura e salinità superficiale del mare (SST e SSS rispettivamente), lanci di XBT/XCTD per la misura della struttura termoalina subsuperficiale dell’Oceano Meridionale e lanci di drifters e floats (quest’ultimi nell’ambito della collaborazione con il progetto ARGOItaly). Queste attività, svolte in passato da progetti non più attivi del PNRA (CLIMA e SOChIC), sono state condotte al fine di non interrompere le preziose serie temporali acquisite dal 1994, considerata la valenza ormai “climatica” di queste informazioni.\r\nIn Italia le attività progettuali riguardano sostanzialmente la validazione e analisi dei dati acquisiti, nonché la diffusione scientifica e divulgativa dei risultati ottenuti.</p>\r\n<div><img alt=\"\" src=\"/sites/default/files/MooringRossSea2014.png\" style=\"height:495px; width:660px\" /></div>','it',0,0,0,1),(7160,'<p align=\"justify\">Il progetto <strong>MORSea</strong> (<em>Mooring Observatory in the Ross Sea</em>) del Programma Nazionale di Ricerche in Antartide (<a href=\"http://www.pnra.it/\">PNRA</a>) nasce con la finalità di gestire la rete degli osservatori marini posizionati fin dal 1994 nel Mare di Ross nell\'ambito dei progetti CLIMA (p.i. G. Spezie) e ABIOCLEAR (p.i. M. Ravaioli). Con la chiusura di detti progetti, avvenuta nel 2010, la Commissione Scientifica Nazionale per l\'Antartide (<a href=\"http://www.csna.it/\">CSNA</a>) ha ritenuto necessario mantenere in vita la rete con quattro punti di ancoraggio (<em>mooring</em>),nel Mare di Ross, specificamente contrassegnati con le lettere B, D, G e L, al fine di garantire l\'importante ruolo svolto da queste catene di sensori per lo studio dei cambiamenti climatici e della variabilità interannuale dei processi fisici e biogeochimici nella colonna d\'acqua.\r\nA queste attività si sono aggiunte anche le misure di “<em>ship of opportunity</em>” - effettuate senza interferire con i tempi di navigazione delle unità navali. In particolare sono state eseguite misure di temperatura e salinità superficiale del mare (SST e SSS rispettivamente), lanci di XBT/XCTD per la misura della struttura termoalina subsuperficiale dell’Oceano Meridionale e lanci di drifters e floats (quest’ultimi nell’ambito della collaborazione con il progetto ARGOItaly). Queste attività, svolte in passato da progetti non più attivi del PNRA (CLIMA e SOChIC), sono state condotte al fine di non interrompere le preziose serie temporali acquisite dal 1994, considerata la valenza ormai “climatica” di queste informazioni.\r\nIn Italia le attività progettuali riguardano sostanzialmente la validazione e analisi dei dati acquisiti, nonché la diffusione scientifica e divulgativa dei risultati ottenuti.</p>\r\n\r\n<div><img alt=\"\" src=\"/sites/default/files/MooringRossSea2014.png\" style=\"height:495px; width:660px\" /></div>','it',0,0,0,0),(7161,'Si è verificato un errore durante l\'esecuzione di @operation con argomenti: @args','it',0,0,0,0),(7162,'Hong Kong','it',0,0,0,0),(7163,'Macau','it',0,0,0,0),(7164,'Distretto di Columbia','it',0,0,0,0),(7203,'Photo Moorings 2010','it',0,0,0,0),(7204,'Photo Moorings 2010','it',0,0,0,0),(7208,'Non fare niente','it',0,0,0,0),(7209,'Isole Pitcairn','it',0,0,0,0),(7210,'Bloccare','it',0,0,0,0),(7217,'Peso dell\'immagine','it',0,0,0,0),(7235,'Collegamenti','it',0,0,0,0),(7236,'Fonte esterna','it',0,0,0,0),(7237,'Dipendenze','it',0,0,0,0),(7250,'Informazioni generali','it',0,0,0,0),(7251,'Varianti','it',0,0,0,0),(7252,'linee','it',0,0,0,0);
/*!40000 ALTER TABLE `locales_target` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `location`
--

DROP TABLE IF EXISTS `location`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `location` (
  `lid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: Unique location ID.',
  `name` varchar(255) NOT NULL DEFAULT '' COMMENT 'Place Name.',
  `street` varchar(255) NOT NULL DEFAULT '' COMMENT 'Street address, line 1.',
  `additional` varchar(255) NOT NULL DEFAULT '' COMMENT 'Street address, line 2.',
  `city` varchar(255) NOT NULL DEFAULT '' COMMENT 'City.',
  `province` varchar(16) NOT NULL DEFAULT '' COMMENT 'State / Province code.',
  `postal_code` varchar(16) NOT NULL DEFAULT '' COMMENT 'Postal / ZIP code.',
  `country` char(2) NOT NULL DEFAULT '' COMMENT 'Two letter ISO country code.',
  `latitude` decimal(10,6) NOT NULL DEFAULT 0.000000 COMMENT 'Location latitude (decimal degrees).',
  `longitude` decimal(10,6) NOT NULL DEFAULT 0.000000 COMMENT 'Location longitude (decimal degrees).',
  `source` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'Source of the latitude and longitude data (Geocoder, user entered, invalid, etc.)',
  `is_primary` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'Is this the primary location of an object? (unused, civicrm legacy field?).',
  PRIMARY KEY (`lid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Locational data managed by location.module.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `location`
--

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

--
-- Table structure for table `location_country`
--

DROP TABLE IF EXISTS `location_country`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `location_country` (
  `code` char(2) NOT NULL COMMENT 'Primary Key: Two letter ISO Country Code',
  `name` varchar(255) NOT NULL DEFAULT '' COMMENT 'Full Country Name ',
  PRIMARY KEY (`code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Country data managed by location.module.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `location_country`
--

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

--
-- Table structure for table `location_email`
--

DROP TABLE IF EXISTS `location_email`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `location_email` (
  `lid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'location.lid',
  `email` varchar(254) NOT NULL DEFAULT '' COMMENT 'Email address',
  PRIMARY KEY (`lid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='location_email.module location supplementary table.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `location_email`
--

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

--
-- Table structure for table `location_fax`
--

DROP TABLE IF EXISTS `location_fax`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `location_fax` (
  `lid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'location.lid',
  `fax` varchar(31) NOT NULL DEFAULT '' COMMENT 'Fax number',
  PRIMARY KEY (`lid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='location_fax.module location supplementary table.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `location_fax`
--

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

--
-- Table structure for table `location_instance`
--

DROP TABLE IF EXISTS `location_instance`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `location_instance` (
  `nid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Reference to node.nid.',
  `vid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Reference to node_revision.vid.',
  `uid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Reference to users.uid.',
  `genid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Generic reference key.',
  `lid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Reference to location.lid.',
  KEY `nid` (`nid`),
  KEY `vid` (`vid`),
  KEY `uid` (`uid`),
  KEY `genid` (`genid`),
  KEY `lid` (`lid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='N:M join table to join locations to other tables.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `location_instance`
--

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

--
-- Table structure for table `location_phone`
--

DROP TABLE IF EXISTS `location_phone`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `location_phone` (
  `lid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'location.lid',
  `phone` varchar(31) NOT NULL DEFAULT '' COMMENT 'Phone number',
  PRIMARY KEY (`lid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='location_phone.module location supplementary table.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `location_phone`
--

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

--
-- Table structure for table `location_search_work`
--

DROP TABLE IF EXISTS `location_search_work`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `location_search_work` (
  `lid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Primary Key: location ID.',
  PRIMARY KEY (`lid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='List of lids to index.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `location_search_work`
--

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

--
-- Table structure for table `menu_custom`
--

DROP TABLE IF EXISTS `menu_custom`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `menu_custom` (
  `menu_name` varchar(32) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique key for menu. This is used as a block delta so length is 32.',
  `title` varchar(255) NOT NULL DEFAULT '' COMMENT 'Menu title; displayed at top of block.',
  `description` text DEFAULT NULL COMMENT 'Menu description.',
  `language` varchar(12) NOT NULL DEFAULT 'und',
  `i18n_mode` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`menu_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Holds definitions for top-level custom menus (for example...';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `menu_custom`
--

LOCK TABLES `menu_custom` WRITE;
/*!40000 ALTER TABLE `menu_custom` DISABLE KEYS */;
INSERT INTO `menu_custom` VALUES ('features','Features','Menu items for any enabled features.','und',0),('main-menu','Main menu','The <em>Main</em> menu is used on many sites to show the major sections of the site, often in a top navigation bar.','und',5),('management','Management','The <em>Management</em> menu contains links for administrative tasks.','und',0),('navigation','Navigation','The <em>Navigation</em> menu contains links intended for site visitors. Links are added to the <em>Navigation</em> menu automatically by some modules.','und',0),('user-menu','User menu','The <em>User</em> menu contains links related to the user\'s account, as well as the \'Log out\' link.','und',0);
/*!40000 ALTER TABLE `menu_custom` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `menu_links`
--

DROP TABLE IF EXISTS `menu_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `menu_links` (
  `menu_name` varchar(32) NOT NULL DEFAULT '' COMMENT 'The menu name. All links with the same menu name (such as ’navigation’) are part of the same menu.',
  `mlid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'The menu link ID (mlid) is the integer primary key.',
  `plid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'The parent link ID (plid) is the mlid of the link above in the hierarchy, or zero if the link is at the top level in its menu.',
  `link_path` varchar(255) NOT NULL DEFAULT '' COMMENT 'The Drupal path or external path this link points to.',
  `router_path` varchar(255) NOT NULL DEFAULT '' COMMENT 'For links corresponding to a Drupal path (external = 0), this connects the link to a menu_router.path for joins.',
  `link_title` varchar(255) NOT NULL DEFAULT '' COMMENT 'The text displayed for the link, which may be modified by a title callback stored in menu_router.',
  `options` blob DEFAULT NULL COMMENT 'A serialized array of options to be passed to the url() or l() function, such as a query string or HTML attributes.',
  `module` varchar(255) NOT NULL DEFAULT 'system' COMMENT 'The name of the module that generated this link.',
  `hidden` smallint(6) NOT NULL DEFAULT 0 COMMENT 'A flag for whether the link should be rendered in menus. (1 = a disabled menu item that may be shown on admin screens, -1 = a menu callback, 0 = a normal, visible link)',
  `external` smallint(6) NOT NULL DEFAULT 0 COMMENT 'A flag to indicate if the link points to a full URL starting with a protocol, like http:// (1 = external, 0 = internal).',
  `has_children` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Flag indicating whether any links have this link as a parent (1 = children exist, 0 = no children).',
  `expanded` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Flag for whether this link should be rendered as expanded in menus - expanded links always have their child links displayed, instead of only when the link is in the active trail (1 = expanded, 0 = not expanded)',
  `weight` int(11) NOT NULL DEFAULT 0 COMMENT 'Link weight among links in the same menu at the same depth.',
  `depth` smallint(6) NOT NULL DEFAULT 0 COMMENT 'The depth relative to the top level. A link with plid == 0 will have depth == 1.',
  `customized` smallint(6) NOT NULL DEFAULT 0 COMMENT 'A flag to indicate that the user has manually created or edited the link (1 = customized, 0 = not customized).',
  `p1` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'The first mlid in the materialized path. If N = depth, then pN must equal the mlid. If depth > 1 then p(N-1) must equal the plid. All pX where X > depth must equal zero. The columns p1 .. p9 are also called the parents.',
  `p2` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'The second mlid in the materialized path. See p1.',
  `p3` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'The third mlid in the materialized path. See p1.',
  `p4` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'The fourth mlid in the materialized path. See p1.',
  `p5` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'The fifth mlid in the materialized path. See p1.',
  `p6` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'The sixth mlid in the materialized path. See p1.',
  `p7` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'The seventh mlid in the materialized path. See p1.',
  `p8` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'The eighth mlid in the materialized path. See p1.',
  `p9` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'The ninth mlid in the materialized path. See p1.',
  `updated` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Flag that indicates that this link was generated during the update from Drupal 5.',
  `language` varchar(12) NOT NULL DEFAULT 'und',
  `i18n_tsid` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`mlid`),
  KEY `path_menu` (`link_path`(128),`menu_name`),
  KEY `menu_plid_expand_child` (`menu_name`,`plid`,`expanded`,`has_children`),
  KEY `menu_parents` (`menu_name`,`p1`,`p2`,`p3`,`p4`,`p5`,`p6`,`p7`,`p8`,`p9`),
  KEY `router_path` (`router_path`(128))
) ENGINE=InnoDB AUTO_INCREMENT=1040 DEFAULT CHARSET=utf8 COMMENT='Contains the individual links within a menu.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `menu_links`
--

LOCK TABLES `menu_links` WRITE;
/*!40000 ALTER TABLE `menu_links` DISABLE KEYS */;
INSERT INTO `menu_links` VALUES ('management',1,0,'admin','admin','Administration','a:0:{}','system',0,0,1,0,9,1,0,1,0,0,0,0,0,0,0,0,0,'und',0),('user-menu',2,0,'user','user','User account','a:1:{s:5:\"alter\";b:1;}','system',0,0,0,0,-10,1,0,2,0,0,0,0,0,0,0,0,0,'und',0),('navigation',3,0,'comment/%','comment/%','Comment permalink','a:0:{}','system',0,0,1,0,0,1,0,3,0,0,0,0,0,0,0,0,0,'und',0),('navigation',4,0,'filter/tips','filter/tips','Compose tips','a:0:{}','system',1,0,1,0,-43,1,1,4,0,0,0,0,0,0,0,0,0,'und',0),('navigation',5,0,'node/%','node/%','','a:0:{}','system',0,0,0,0,0,1,0,5,0,0,0,0,0,0,0,0,0,'und',0),('navigation',6,0,'node/add','node/add','Add content','a:0:{}','system',1,0,1,0,-44,1,1,6,0,0,0,0,0,0,0,0,0,'und',0),('management',7,1,'admin/appearance','admin/appearance','Appearance','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Select and configure your themes.\";}}','system',0,0,0,0,-6,2,0,1,7,0,0,0,0,0,0,0,0,'und',0),('management',8,1,'admin/config','admin/config','Configuration','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:20:\"Administer settings.\";}}','system',0,0,1,0,0,2,0,1,8,0,0,0,0,0,0,0,0,'und',0),('management',9,1,'admin/content','admin/content','Content','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Administer content and comments.\";}}','system',0,0,1,0,-10,2,0,1,9,0,0,0,0,0,0,0,0,'und',0),('user-menu',10,2,'user/register','user/register','Create new account','a:0:{}','system',-1,0,0,0,0,2,0,2,10,0,0,0,0,0,0,0,0,'und',0),('management',11,1,'admin/dashboard','admin/dashboard','Dashboard','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View and customize your dashboard.\";}}','system',0,0,0,0,-15,2,0,1,11,0,0,0,0,0,0,0,0,'und',0),('management',12,1,'admin/help','admin/help','Help','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Reference for usage, configuration, and modules.\";}}','system',0,0,0,0,9,2,0,1,12,0,0,0,0,0,0,0,0,'und',0),('management',13,1,'admin/index','admin/index','Index','a:0:{}','system',-1,0,0,0,-18,2,0,1,13,0,0,0,0,0,0,0,0,'und',0),('user-menu',14,2,'user/login','user/login','Log in','a:0:{}','system',-1,0,0,0,0,2,0,2,14,0,0,0,0,0,0,0,0,'und',0),('user-menu',15,0,'user/logout','user/logout','Log out','a:0:{}','system',0,0,0,0,10,1,0,15,0,0,0,0,0,0,0,0,0,'und',0),('management',16,1,'admin/modules','admin/modules','Modules','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Extend site functionality.\";}}','system',0,0,0,0,-2,2,0,1,16,0,0,0,0,0,0,0,0,'und',0),('navigation',17,0,'user/%','user/%','My account','a:0:{}','system',0,0,1,0,0,1,0,17,0,0,0,0,0,0,0,0,0,'und',0),('management',18,1,'admin/people','admin/people','People','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Manage user accounts, roles, and permissions.\";}}','system',0,0,0,0,-4,2,0,1,18,0,0,0,0,0,0,0,0,'und',0),('management',19,1,'admin/reports','admin/reports','Reports','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View reports, updates, and errors.\";}}','system',0,0,1,0,5,2,0,1,19,0,0,0,0,0,0,0,0,'und',0),('user-menu',20,2,'user/password','user/password','Request new password','a:0:{}','system',-1,0,0,0,0,2,0,2,20,0,0,0,0,0,0,0,0,'und',0),('management',21,1,'admin/structure','admin/structure','Structure','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Administer blocks, content types, menus, etc.\";}}','system',0,0,1,0,-8,2,0,1,21,0,0,0,0,0,0,0,0,'und',0),('management',22,1,'admin/tasks','admin/tasks','Tasks','a:0:{}','system',-1,0,0,0,-20,2,0,1,22,0,0,0,0,0,0,0,0,'und',0),('navigation',23,0,'comment/reply/%','comment/reply/%','Add new comment','a:0:{}','system',0,0,0,0,0,1,0,23,0,0,0,0,0,0,0,0,0,'und',0),('navigation',24,3,'comment/%/approve','comment/%/approve','Approve','a:0:{}','system',0,0,0,0,1,2,0,3,24,0,0,0,0,0,0,0,0,'und',0),('navigation',25,3,'comment/%/delete','comment/%/delete','Delete','a:0:{}','system',-1,0,0,0,2,2,0,3,25,0,0,0,0,0,0,0,0,'und',0),('navigation',26,3,'comment/%/edit','comment/%/edit','Edit','a:0:{}','system',-1,0,0,0,0,2,0,3,26,0,0,0,0,0,0,0,0,'und',0),('navigation',27,0,'taxonomy/term/%','taxonomy/term/%','Taxonomy term','a:0:{}','system',0,0,0,0,0,1,0,27,0,0,0,0,0,0,0,0,0,'und',0),('navigation',28,3,'comment/%/view','comment/%/view','View comment','a:0:{}','system',-1,0,0,0,-10,2,0,3,28,0,0,0,0,0,0,0,0,'und',0),('management',29,18,'admin/people/create','admin/people/create','Add user','a:0:{}','system',-1,0,0,0,0,3,0,1,18,29,0,0,0,0,0,0,0,'und',0),('management',30,21,'admin/structure/block','admin/structure/block','Blocks','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.\";}}','system',0,0,1,0,0,3,0,1,21,30,0,0,0,0,0,0,0,'und',0),('navigation',31,17,'user/%/cancel','user/%/cancel','Cancel account','a:0:{}','system',0,0,1,0,0,2,0,17,31,0,0,0,0,0,0,0,0,'und',0),('management',32,9,'admin/content/comment','admin/content/comment','Comments','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:59:\"List and edit site comments and the comment approval queue.\";}}','system',0,0,0,0,0,3,0,1,9,32,0,0,0,0,0,0,0,'und',0),('management',33,11,'admin/dashboard/configure','admin/dashboard/configure','Configure available dashboard blocks','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:53:\"Configure which blocks can be shown on the dashboard.\";}}','system',-1,0,0,0,0,3,0,1,11,33,0,0,0,0,0,0,0,'und',0),('management',34,9,'admin/content/node','admin/content/node','Content','a:0:{}','system',-1,0,0,0,-10,3,0,1,9,34,0,0,0,0,0,0,0,'und',0),('management',35,8,'admin/config/content','admin/config/content','Content authoring','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:53:\"Settings related to formatting and authoring content.\";}}','system',0,0,1,0,-15,3,0,1,8,35,0,0,0,0,0,0,0,'und',0),('management',36,21,'admin/structure/types','admin/structure/types','Content types','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:92:\"Manage content types, including default status, front page promotion, comment settings, etc.\";}}','system',0,0,1,0,0,3,0,1,21,36,0,0,0,0,0,0,0,'und',0),('management',37,11,'admin/dashboard/customize','admin/dashboard/customize','Customize dashboard','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:25:\"Customize your dashboard.\";}}','system',-1,0,0,0,0,3,0,1,11,37,0,0,0,0,0,0,0,'und',0),('navigation',38,5,'node/%/delete','node/%/delete','Delete','a:0:{}','system',-1,0,0,0,1,2,0,5,38,0,0,0,0,0,0,0,0,'und',0),('management',39,8,'admin/config/development','admin/config/development','Development','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:18:\"Development tools.\";}}','system',0,0,1,0,-10,3,0,1,8,39,0,0,0,0,0,0,0,'und',0),('navigation',40,17,'user/%/edit','user/%/edit','Edit','a:0:{}','system',-1,0,0,0,0,2,0,17,40,0,0,0,0,0,0,0,0,'und',0),('navigation',41,5,'node/%/edit','node/%/edit','Edit','a:0:{}','system',-1,0,0,0,0,2,0,5,41,0,0,0,0,0,0,0,0,'und',0),('management',42,19,'admin/reports/fields','admin/reports/fields','Field list','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:39:\"Overview of fields on all entity types.\";}}','system',0,0,0,0,0,3,0,1,19,42,0,0,0,0,0,0,0,'und',0),('management',43,7,'admin/appearance/list','admin/appearance/list','List','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:31:\"Select and configure your theme\";}}','system',-1,0,0,0,-1,3,0,1,7,43,0,0,0,0,0,0,0,'und',0),('management',44,16,'admin/modules/list','admin/modules/list','List','a:0:{}','system',-1,0,0,0,0,3,0,1,16,44,0,0,0,0,0,0,0,'und',0),('management',45,18,'admin/people/people','admin/people/people','List','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:50:\"Find and manage people interacting with your site.\";}}','system',-1,0,0,0,-10,3,0,1,18,45,0,0,0,0,0,0,0,'und',0),('management',46,8,'admin/config/media','admin/config/media','Media','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:12:\"Media tools.\";}}','system',0,0,1,0,-10,3,0,1,8,46,0,0,0,0,0,0,0,'und',0),('management',47,21,'admin/structure/menu','admin/structure/menu','Menus','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.\";}}','system',0,0,1,0,0,3,0,1,21,47,0,0,0,0,0,0,0,'und',0),('management',48,8,'admin/config/people','admin/config/people','People','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:24:\"Configure user accounts.\";}}','system',0,0,1,0,-20,3,0,1,8,48,0,0,0,0,0,0,0,'und',0),('management',49,18,'admin/people/permissions','admin/people/permissions','Permissions','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:64:\"Determine access to features by selecting permissions for roles.\";}}','system',-1,0,0,0,0,3,0,1,18,49,0,0,0,0,0,0,0,'und',0),('management',50,19,'admin/reports/dblog','admin/reports/dblog','Recent log messages','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"View events that have recently been logged.\";}}','system',0,0,0,0,-1,3,0,1,19,50,0,0,0,0,0,0,0,'und',0),('management',51,8,'admin/config/regional','admin/config/regional','Regional and language','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Regional settings, localization and translation.\";}}','system',0,0,1,0,-5,3,0,1,8,51,0,0,0,0,0,0,0,'und',0),('navigation',52,5,'node/%/revisions','node/%/revisions','Revisions','a:0:{}','system',-1,0,1,0,2,2,0,5,52,0,0,0,0,0,0,0,0,'und',0),('management',53,8,'admin/config/search','admin/config/search','Search and metadata','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:36:\"Local site search, metadata and SEO.\";}}','system',0,0,1,0,-10,3,0,1,8,53,0,0,0,0,0,0,0,'und',0),('management',54,7,'admin/appearance/settings','admin/appearance/settings','Settings','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:46:\"Configure default and theme specific settings.\";}}','system',-1,0,0,0,20,3,0,1,7,54,0,0,0,0,0,0,0,'und',0),('management',55,19,'admin/reports/status','admin/reports/status','Status report','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.\";}}','system',0,0,0,0,-60,3,0,1,19,55,0,0,0,0,0,0,0,'und',0),('management',56,8,'admin/config/system','admin/config/system','System','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:37:\"General system related configuration.\";}}','system',0,0,1,0,-20,3,0,1,8,56,0,0,0,0,0,0,0,'und',0),('management',57,21,'admin/structure/taxonomy','admin/structure/taxonomy','Taxonomy','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:67:\"Manage tagging, categorization, and classification of your content.\";}}','system',0,0,1,0,0,3,0,1,21,57,0,0,0,0,0,0,0,'und',0),('management',58,19,'admin/reports/access-denied','admin/reports/access-denied','Top \'access denied\' errors','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:35:\"View \'access denied\' errors (403s).\";}}','system',0,0,0,0,0,3,0,1,19,58,0,0,0,0,0,0,0,'und',0),('management',59,19,'admin/reports/page-not-found','admin/reports/page-not-found','Top \'page not found\' errors','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:36:\"View \'page not found\' errors (404s).\";}}','system',0,0,0,0,0,3,0,1,19,59,0,0,0,0,0,0,0,'und',0),('management',60,16,'admin/modules/uninstall','admin/modules/uninstall','Uninstall','a:0:{}','system',-1,0,0,0,20,3,0,1,16,60,0,0,0,0,0,0,0,'und',0),('management',61,8,'admin/config/user-interface','admin/config/user-interface','User interface','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:38:\"Tools that enhance the user interface.\";}}','system',0,0,1,0,-15,3,0,1,8,61,0,0,0,0,0,0,0,'und',0),('navigation',62,5,'node/%/view','node/%/view','View','a:0:{}','system',-1,0,0,0,-10,2,0,5,62,0,0,0,0,0,0,0,0,'und',0),('navigation',63,17,'user/%/view','user/%/view','View','a:0:{}','system',-1,0,0,0,-10,2,0,17,63,0,0,0,0,0,0,0,0,'und',0),('management',64,8,'admin/config/services','admin/config/services','Web services','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:30:\"Tools related to web services.\";}}','system',0,0,1,0,0,3,0,1,8,64,0,0,0,0,0,0,0,'und',0),('management',65,8,'admin/config/workflow','admin/config/workflow','Workflow','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"Content workflow, editorial workflow tools.\";}}','system',0,0,0,0,5,3,0,1,8,65,0,0,0,0,0,0,0,'und',0),('management',66,12,'admin/help/block','admin/help/block','block','a:0:{}','system',-1,0,0,0,0,3,0,1,12,66,0,0,0,0,0,0,0,'und',0),('management',67,12,'admin/help/color','admin/help/color','color','a:0:{}','system',-1,0,0,0,0,3,0,1,12,67,0,0,0,0,0,0,0,'und',0),('management',68,12,'admin/help/comment','admin/help/comment','comment','a:0:{}','system',-1,0,0,0,0,3,0,1,12,68,0,0,0,0,0,0,0,'und',0),('management',69,12,'admin/help/contextual','admin/help/contextual','contextual','a:0:{}','system',-1,0,0,0,0,3,0,1,12,69,0,0,0,0,0,0,0,'und',0),('management',70,12,'admin/help/dashboard','admin/help/dashboard','dashboard','a:0:{}','system',-1,0,0,0,0,3,0,1,12,70,0,0,0,0,0,0,0,'und',0),('management',71,12,'admin/help/dblog','admin/help/dblog','dblog','a:0:{}','system',-1,0,0,0,0,3,0,1,12,71,0,0,0,0,0,0,0,'und',0),('management',72,12,'admin/help/field','admin/help/field','field','a:0:{}','system',-1,0,0,0,0,3,0,1,12,72,0,0,0,0,0,0,0,'und',0),('management',73,12,'admin/help/field_sql_storage','admin/help/field_sql_storage','field_sql_storage','a:0:{}','system',-1,0,0,0,0,3,0,1,12,73,0,0,0,0,0,0,0,'und',0),('management',74,12,'admin/help/field_ui','admin/help/field_ui','field_ui','a:0:{}','system',-1,0,0,0,0,3,0,1,12,74,0,0,0,0,0,0,0,'und',0),('management',75,12,'admin/help/file','admin/help/file','file','a:0:{}','system',-1,0,0,0,0,3,0,1,12,75,0,0,0,0,0,0,0,'und',0),('management',76,12,'admin/help/filter','admin/help/filter','filter','a:0:{}','system',-1,0,0,0,0,3,0,1,12,76,0,0,0,0,0,0,0,'und',0),('management',77,12,'admin/help/help','admin/help/help','help','a:0:{}','system',-1,0,0,0,0,3,0,1,12,77,0,0,0,0,0,0,0,'und',0),('management',78,12,'admin/help/image','admin/help/image','image','a:0:{}','system',-1,0,0,0,0,3,0,1,12,78,0,0,0,0,0,0,0,'und',0),('management',79,12,'admin/help/list','admin/help/list','list','a:0:{}','system',-1,0,0,0,0,3,0,1,12,79,0,0,0,0,0,0,0,'und',0),('management',80,12,'admin/help/menu','admin/help/menu','menu','a:0:{}','system',-1,0,0,0,0,3,0,1,12,80,0,0,0,0,0,0,0,'und',0),('management',81,12,'admin/help/node','admin/help/node','node','a:0:{}','system',-1,0,0,0,0,3,0,1,12,81,0,0,0,0,0,0,0,'und',0),('management',82,12,'admin/help/options','admin/help/options','options','a:0:{}','system',-1,0,0,0,0,3,0,1,12,82,0,0,0,0,0,0,0,'und',0),('management',83,12,'admin/help/system','admin/help/system','system','a:0:{}','system',-1,0,0,0,0,3,0,1,12,83,0,0,0,0,0,0,0,'und',0),('management',84,12,'admin/help/taxonomy','admin/help/taxonomy','taxonomy','a:0:{}','system',-1,0,0,0,0,3,0,1,12,84,0,0,0,0,0,0,0,'und',0),('management',85,12,'admin/help/text','admin/help/text','text','a:0:{}','system',-1,0,0,0,0,3,0,1,12,85,0,0,0,0,0,0,0,'und',0),('management',86,12,'admin/help/user','admin/help/user','user','a:0:{}','system',-1,0,0,0,0,3,0,1,12,86,0,0,0,0,0,0,0,'und',0),('navigation',87,27,'taxonomy/term/%/edit','taxonomy/term/%/edit','Edit','a:0:{}','system',-1,0,0,0,10,2,0,27,87,0,0,0,0,0,0,0,0,'und',0),('navigation',88,27,'taxonomy/term/%/view','taxonomy/term/%/view','View','a:0:{}','system',-1,0,0,0,0,2,0,27,88,0,0,0,0,0,0,0,0,'und',0),('management',89,57,'admin/structure/taxonomy/%','admin/structure/taxonomy/%','','a:0:{}','system',0,0,1,0,0,4,0,1,21,57,89,0,0,0,0,0,0,'und',0),('management',90,48,'admin/config/people/accounts','admin/config/people/accounts','Account settings','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.\";}}','system',0,0,0,0,-10,4,0,1,8,48,90,0,0,0,0,0,0,'und',0),('management',91,56,'admin/config/system/actions','admin/config/system/actions','Actions','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:41:\"Manage the actions defined for your site.\";}}','system',0,0,1,0,0,4,0,1,8,56,91,0,0,0,0,0,0,'und',0),('management',92,30,'admin/structure/block/add','admin/structure/block/add','Add block','a:0:{}','system',-1,0,0,0,0,4,0,1,21,30,92,0,0,0,0,0,0,'und',0),('management',93,36,'admin/structure/types/add','admin/structure/types/add','Add content type','a:0:{}','system',-1,0,0,0,0,4,0,1,21,36,93,0,0,0,0,0,0,'und',0),('management',94,47,'admin/structure/menu/add','admin/structure/menu/add','Add menu','a:0:{}','system',-1,0,0,0,0,4,0,1,21,47,94,0,0,0,0,0,0,'und',0),('management',95,57,'admin/structure/taxonomy/add','admin/structure/taxonomy/add','Add vocabulary','a:0:{}','system',-1,0,0,0,0,4,0,1,21,57,95,0,0,0,0,0,0,'und',0),('management',96,54,'admin/appearance/settings/bartik','admin/appearance/settings/bartik','Bartik','a:0:{}','system',-1,0,0,0,0,4,0,1,7,54,96,0,0,0,0,0,0,'und',0),('management',97,53,'admin/config/search/clean-urls','admin/config/search/clean-urls','Clean URLs','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"Enable or disable clean URLs for your site.\";}}','system',0,0,0,0,5,4,0,1,8,53,97,0,0,0,0,0,0,'und',0),('management',98,56,'admin/config/system/cron','admin/config/system/cron','Cron','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:40:\"Manage automatic site maintenance tasks.\";}}','system',0,0,0,0,20,4,0,1,8,56,98,0,0,0,0,0,0,'und',0),('management',99,51,'admin/config/regional/date-time','admin/config/regional/date-time','Date and time','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:44:\"Configure display formats for date and time.\";}}','system',0,0,0,0,-15,4,0,1,8,51,99,0,0,0,0,0,0,'und',0),('management',100,19,'admin/reports/event/%','admin/reports/event/%','Details','a:0:{}','system',0,0,0,0,0,3,0,1,19,100,0,0,0,0,0,0,0,'und',0),('management',101,46,'admin/config/media/file-system','admin/config/media/file-system','File system','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:68:\"Tell Drupal where to store uploaded files and how they are accessed.\";}}','system',0,0,0,0,-10,4,0,1,8,46,101,0,0,0,0,0,0,'und',0),('management',102,54,'admin/appearance/settings/garland','admin/appearance/settings/garland','Garland','a:0:{}','system',-1,0,0,0,0,4,0,1,7,54,102,0,0,0,0,0,0,'und',0),('management',103,54,'admin/appearance/settings/global','admin/appearance/settings/global','Global settings','a:0:{}','system',-1,0,0,0,-1,4,0,1,7,54,103,0,0,0,0,0,0,'und',0),('management',104,48,'admin/config/people/ip-blocking','admin/config/people/ip-blocking','IP address blocking','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:28:\"Manage blocked IP addresses.\";}}','system',0,0,1,0,10,4,0,1,8,48,104,0,0,0,0,0,0,'und',0),('management',105,46,'admin/config/media/image-styles','admin/config/media/image-styles','Image styles','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.\";}}','system',0,0,1,0,0,4,0,1,8,46,105,0,0,0,0,0,0,'und',0),('management',106,46,'admin/config/media/image-toolkit','admin/config/media/image-toolkit','Image toolkit','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:74:\"Choose which image toolkit to use if you have installed optional toolkits.\";}}','system',0,0,0,0,20,4,0,1,8,46,106,0,0,0,0,0,0,'und',0),('management',107,44,'admin/modules/list/confirm','admin/modules/list/confirm','List','a:0:{}','system',-1,0,0,0,0,4,0,1,16,44,107,0,0,0,0,0,0,'und',0),('management',108,36,'admin/structure/types/list','admin/structure/types/list','List','a:0:{}','system',-1,0,0,0,-10,4,0,1,21,36,108,0,0,0,0,0,0,'und',0),('management',109,57,'admin/structure/taxonomy/list','admin/structure/taxonomy/list','List','a:0:{}','system',-1,0,0,0,-10,4,0,1,21,57,109,0,0,0,0,0,0,'und',0),('management',110,47,'admin/structure/menu/list','admin/structure/menu/list','List menus','a:0:{}','system',-1,0,0,0,-10,4,0,1,21,47,110,0,0,0,0,0,0,'und',0),('management',111,39,'admin/config/development/logging','admin/config/development/logging','Logging and errors','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.\";}}','system',0,0,0,0,-15,4,0,1,8,39,111,0,0,0,0,0,0,'und',0),('management',112,39,'admin/config/development/maintenance','admin/config/development/maintenance','Maintenance mode','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:62:\"Take the site offline for maintenance or bring it back online.\";}}','system',0,0,0,0,-10,4,0,1,8,39,112,0,0,0,0,0,0,'und',0),('management',113,39,'admin/config/development/performance','admin/config/development/performance','Performance','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.\";}}','system',0,0,0,0,-20,4,0,1,8,39,113,0,0,0,0,0,0,'und',0),('management',114,49,'admin/people/permissions/list','admin/people/permissions/list','Permissions','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:64:\"Determine access to features by selecting permissions for roles.\";}}','system',-1,0,0,0,-8,4,0,1,18,49,114,0,0,0,0,0,0,'und',0),('management',115,32,'admin/content/comment/new','admin/content/comment/new','Published comments','a:0:{}','system',-1,0,0,0,-10,4,0,1,9,32,115,0,0,0,0,0,0,'und',0),('management',116,64,'admin/config/services/rss-publishing','admin/config/services/rss-publishing','RSS publishing','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.\";}}','system',0,0,0,0,0,4,0,1,8,64,116,0,0,0,0,0,0,'und',0),('management',117,51,'admin/config/regional/settings','admin/config/regional/settings','Regional settings','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:54:\"Settings for the site\'s default time zone and country.\";}}','system',0,0,0,0,-20,4,0,1,8,51,117,0,0,0,0,0,0,'und',0),('management',118,49,'admin/people/permissions/roles','admin/people/permissions/roles','Roles','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:30:\"List, edit, or add user roles.\";}}','system',-1,0,1,0,-5,4,0,1,18,49,118,0,0,0,0,0,0,'und',0),('management',119,47,'admin/structure/menu/settings','admin/structure/menu/settings','Settings','a:0:{}','system',-1,0,0,0,5,4,0,1,21,47,119,0,0,0,0,0,0,'und',0),('management',120,54,'admin/appearance/settings/seven','admin/appearance/settings/seven','Seven','a:0:{}','system',-1,0,0,0,0,4,0,1,7,54,120,0,0,0,0,0,0,'und',0),('management',121,56,'admin/config/system/site-information','admin/config/system/site-information','Site information','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.\";}}','system',0,0,0,0,-20,4,0,1,8,56,121,0,0,0,0,0,0,'und',0),('management',122,54,'admin/appearance/settings/stark','admin/appearance/settings/stark','Stark','a:0:{}','system',-1,0,0,0,0,4,0,1,7,54,122,0,0,0,0,0,0,'und',0),('management',123,35,'admin/config/content/formats','admin/config/content/formats','Text formats','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.\";}}','system',0,0,1,0,0,4,0,1,8,35,123,0,0,0,0,0,0,'und',0),('management',124,32,'admin/content/comment/approval','admin/content/comment/approval','Unapproved comments','a:0:{}','system',-1,0,0,0,0,4,0,1,9,32,124,0,0,0,0,0,0,'und',0),('management',125,60,'admin/modules/uninstall/confirm','admin/modules/uninstall/confirm','Uninstall','a:0:{}','system',-1,0,0,0,0,4,0,1,16,60,125,0,0,0,0,0,0,'und',0),('navigation',126,40,'user/%/edit/account','user/%/edit/account','Account','a:0:{}','system',-1,0,0,0,0,3,0,17,40,126,0,0,0,0,0,0,0,'und',0),('management',127,123,'admin/config/content/formats/%','admin/config/content/formats/%','','a:0:{}','system',0,0,1,0,0,5,0,1,8,35,123,127,0,0,0,0,0,'und',0),('management',128,105,'admin/config/media/image-styles/add','admin/config/media/image-styles/add','Add style','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:22:\"Add a new image style.\";}}','system',-1,0,0,0,2,5,0,1,8,46,105,128,0,0,0,0,0,'und',0),('management',129,89,'admin/structure/taxonomy/%/add','admin/structure/taxonomy/%/add','Add term','a:0:{}','system',-1,0,0,0,0,5,0,1,21,57,89,129,0,0,0,0,0,'und',0),('management',130,123,'admin/config/content/formats/add','admin/config/content/formats/add','Add text format','a:0:{}','system',-1,0,0,0,1,5,0,1,8,35,123,130,0,0,0,0,0,'und',0),('management',131,30,'admin/structure/block/list/bartik','admin/structure/block/list/bartik','Bartik','a:0:{}','system',-1,0,0,0,0,4,0,1,21,30,131,0,0,0,0,0,0,'und',0),('management',132,91,'admin/config/system/actions/configure','admin/config/system/actions/configure','Configure an advanced action','a:0:{}','system',-1,0,0,0,0,5,0,1,8,56,91,132,0,0,0,0,0,'und',0),('management',133,47,'admin/structure/menu/manage/%','admin/structure/menu/manage/%','Customize menu','a:0:{}','system',0,0,1,0,0,4,0,1,21,47,133,0,0,0,0,0,0,'und',0),('management',134,89,'admin/structure/taxonomy/%/edit','admin/structure/taxonomy/%/edit','Edit','a:0:{}','system',-1,0,0,0,-10,5,0,1,21,57,89,134,0,0,0,0,0,'und',0),('management',135,36,'admin/structure/types/manage/%','admin/structure/types/manage/%','Edit content type','a:0:{}','system',0,0,1,0,0,4,0,1,21,36,135,0,0,0,0,0,0,'und',0),('management',136,99,'admin/config/regional/date-time/formats','admin/config/regional/date-time/formats','Formats','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:51:\"Configure display format strings for date and time.\";}}','system',-1,0,1,0,-9,5,0,1,8,51,99,136,0,0,0,0,0,'und',0),('management',137,30,'admin/structure/block/list/garland','admin/structure/block/list/garland','Garland','a:0:{}','system',-1,0,0,0,0,4,0,1,21,30,137,0,0,0,0,0,0,'und',0),('management',138,123,'admin/config/content/formats/list','admin/config/content/formats/list','List','a:0:{}','system',-1,0,0,0,0,5,0,1,8,35,123,138,0,0,0,0,0,'und',0),('management',139,89,'admin/structure/taxonomy/%/list','admin/structure/taxonomy/%/list','List','a:0:{}','system',-1,0,0,0,-20,5,0,1,21,57,89,139,0,0,0,0,0,'und',0),('management',140,105,'admin/config/media/image-styles/list','admin/config/media/image-styles/list','List','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:42:\"List the current image styles on the site.\";}}','system',-1,0,0,0,1,5,0,1,8,46,105,140,0,0,0,0,0,'und',0),('management',141,91,'admin/config/system/actions/manage','admin/config/system/actions/manage','Manage actions','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:41:\"Manage the actions defined for your site.\";}}','system',-1,0,0,0,-2,5,0,1,8,56,91,141,0,0,0,0,0,'und',0),('management',142,90,'admin/config/people/accounts/settings','admin/config/people/accounts/settings','Settings','a:0:{}','system',-1,0,0,0,-10,5,0,1,8,48,90,142,0,0,0,0,0,'und',0),('management',143,30,'admin/structure/block/list/seven','admin/structure/block/list/seven','Seven','a:0:{}','system',-1,0,0,0,0,4,0,1,21,30,143,0,0,0,0,0,0,'und',0),('management',144,30,'admin/structure/block/list/stark','admin/structure/block/list/stark','Stark','a:0:{}','system',-1,0,0,0,0,4,0,1,21,30,144,0,0,0,0,0,0,'und',0),('management',145,99,'admin/config/regional/date-time/types','admin/config/regional/date-time/types','Types','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:44:\"Configure display formats for date and time.\";}}','system',-1,0,1,0,-10,5,0,1,8,51,99,145,0,0,0,0,0,'und',0),('navigation',146,52,'node/%/revisions/%/delete','node/%/revisions/%/delete','Delete earlier revision','a:0:{}','system',0,0,0,0,0,3,0,5,52,146,0,0,0,0,0,0,0,'und',0),('navigation',147,52,'node/%/revisions/%/revert','node/%/revisions/%/revert','Revert to earlier revision','a:0:{}','system',0,0,0,0,0,3,0,5,52,147,0,0,0,0,0,0,0,'und',0),('navigation',148,52,'node/%/revisions/%/view','node/%/revisions/%/view','Revisions','a:0:{}','system',0,0,0,0,0,3,0,5,52,148,0,0,0,0,0,0,0,'und',0),('management',149,137,'admin/structure/block/list/garland/add','admin/structure/block/list/garland/add','Add block','a:0:{}','system',-1,0,0,0,0,5,0,1,21,30,137,149,0,0,0,0,0,'und',0),('management',150,143,'admin/structure/block/list/seven/add','admin/structure/block/list/seven/add','Add block','a:0:{}','system',-1,0,0,0,0,5,0,1,21,30,143,150,0,0,0,0,0,'und',0),('management',151,144,'admin/structure/block/list/stark/add','admin/structure/block/list/stark/add','Add block','a:0:{}','system',-1,0,0,0,0,5,0,1,21,30,144,151,0,0,0,0,0,'und',0),('management',152,145,'admin/config/regional/date-time/types/add','admin/config/regional/date-time/types/add','Add date type','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:18:\"Add new date type.\";}}','system',-1,0,0,0,-10,6,0,1,8,51,99,145,152,0,0,0,0,'und',0),('management',153,136,'admin/config/regional/date-time/formats/add','admin/config/regional/date-time/formats/add','Add format','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"Allow users to add additional date formats.\";}}','system',-1,0,0,0,-10,6,0,1,8,51,99,136,153,0,0,0,0,'und',0),('management',154,133,'admin/structure/menu/manage/%/add','admin/structure/menu/manage/%/add','Add link','a:0:{}','system',-1,0,0,0,0,5,0,1,21,47,133,154,0,0,0,0,0,'und',0),('management',155,30,'admin/structure/block/manage/%/%','admin/structure/block/manage/%/%','Configure block','a:0:{}','system',0,0,0,0,0,4,0,1,21,30,155,0,0,0,0,0,0,'und',0),('navigation',156,31,'user/%/cancel/confirm/%/%','user/%/cancel/confirm/%/%','Confirm account cancellation','a:0:{}','system',0,0,0,0,0,3,0,17,31,156,0,0,0,0,0,0,0,'und',0),('management',157,135,'admin/structure/types/manage/%/delete','admin/structure/types/manage/%/delete','Delete','a:0:{}','system',0,0,0,0,0,5,0,1,21,36,135,157,0,0,0,0,0,'und',0),('management',158,104,'admin/config/people/ip-blocking/delete/%','admin/config/people/ip-blocking/delete/%','Delete IP address','a:0:{}','system',0,0,0,0,0,5,0,1,8,48,104,158,0,0,0,0,0,'und',0),('management',159,91,'admin/config/system/actions/delete/%','admin/config/system/actions/delete/%','Delete action','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:17:\"Delete an action.\";}}','system',0,0,0,0,0,5,0,1,8,56,91,159,0,0,0,0,0,'und',0),('management',160,133,'admin/structure/menu/manage/%/delete','admin/structure/menu/manage/%/delete','Delete menu','a:0:{}','system',0,0,0,0,0,5,0,1,21,47,133,160,0,0,0,0,0,'und',0),('management',161,47,'admin/structure/menu/item/%/delete','admin/structure/menu/item/%/delete','Delete menu link','a:0:{}','system',0,0,0,0,0,4,0,1,21,47,161,0,0,0,0,0,0,'und',0),('management',162,118,'admin/people/permissions/roles/delete/%','admin/people/permissions/roles/delete/%','Delete role','a:0:{}','system',0,0,0,0,0,5,0,1,18,49,118,162,0,0,0,0,0,'und',0),('management',163,127,'admin/config/content/formats/%/disable','admin/config/content/formats/%/disable','Disable text format','a:0:{}','system',0,0,0,0,0,6,0,1,8,35,123,127,163,0,0,0,0,'und',0),('management',164,135,'admin/structure/types/manage/%/edit','admin/structure/types/manage/%/edit','Edit','a:0:{}','system',-1,0,0,0,0,5,0,1,21,36,135,164,0,0,0,0,0,'und',0),('management',165,133,'admin/structure/menu/manage/%/edit','admin/structure/menu/manage/%/edit','Edit menu','a:0:{}','system',-1,0,0,0,0,5,0,1,21,47,133,165,0,0,0,0,0,'und',0),('management',166,47,'admin/structure/menu/item/%/edit','admin/structure/menu/item/%/edit','Edit menu link','a:0:{}','system',-1,0,0,0,0,4,0,1,21,47,166,0,0,0,0,0,0,'und',0),('management',167,118,'admin/people/permissions/roles/edit/%','admin/people/permissions/roles/edit/%','Edit role','a:0:{}','system',0,0,0,0,0,5,0,1,18,49,118,167,0,0,0,0,0,'und',0),('management',168,105,'admin/config/media/image-styles/edit/%','admin/config/media/image-styles/edit/%','Edit style','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:25:\"Configure an image style.\";}}','system',0,0,1,0,0,5,0,1,8,46,105,168,0,0,0,0,0,'und',0),('management',169,133,'admin/structure/menu/manage/%/list','admin/structure/menu/manage/%/list','List links','a:0:{}','system',-1,0,0,0,-10,5,0,1,21,47,133,169,0,0,0,0,0,'und',0),('management',170,47,'admin/structure/menu/item/%/reset','admin/structure/menu/item/%/reset','Reset menu link','a:0:{}','system',0,0,0,0,0,4,0,1,21,47,170,0,0,0,0,0,0,'und',0),('management',171,105,'admin/config/media/image-styles/delete/%','admin/config/media/image-styles/delete/%','Delete style','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:22:\"Delete an image style.\";}}','system',0,0,0,0,0,5,0,1,8,46,105,171,0,0,0,0,0,'und',0),('management',172,105,'admin/config/media/image-styles/revert/%','admin/config/media/image-styles/revert/%','Revert style','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:22:\"Revert an image style.\";}}','system',0,0,0,0,0,5,0,1,8,46,105,172,0,0,0,0,0,'und',0),('management',173,135,'admin/structure/types/manage/%/comment/display','admin/structure/types/manage/%/comment/display','Comment display','a:0:{}','system',-1,0,0,0,4,5,0,1,21,36,135,173,0,0,0,0,0,'und',0),('management',174,135,'admin/structure/types/manage/%/comment/fields','admin/structure/types/manage/%/comment/fields','Comment fields','a:0:{}','system',-1,0,1,0,3,5,0,1,21,36,135,174,0,0,0,0,0,'und',0),('management',175,155,'admin/structure/block/manage/%/%/configure','admin/structure/block/manage/%/%/configure','Configure','a:0:{}','system',-1,0,0,0,-100,5,0,1,21,30,155,175,0,0,0,0,0,'und',0),('management',176,155,'admin/structure/block/manage/%/%/delete','admin/structure/block/manage/%/%/delete','Delete block','a:0:{}','system',-1,0,0,0,0,5,0,1,21,30,155,176,0,0,0,0,0,'und',0),('management',177,136,'admin/config/regional/date-time/formats/%/delete','admin/config/regional/date-time/formats/%/delete','Delete date format','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:47:\"Allow users to delete a configured date format.\";}}','system',0,0,0,0,0,6,0,1,8,51,99,136,177,0,0,0,0,'und',0),('management',178,145,'admin/config/regional/date-time/types/%/delete','admin/config/regional/date-time/types/%/delete','Delete date type','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Allow users to delete a configured date type.\";}}','system',0,0,0,0,0,6,0,1,8,51,99,145,178,0,0,0,0,'und',0),('management',179,136,'admin/config/regional/date-time/formats/%/edit','admin/config/regional/date-time/formats/%/edit','Edit date format','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Allow users to edit a configured date format.\";}}','system',0,0,0,0,0,6,0,1,8,51,99,136,179,0,0,0,0,'und',0),('management',180,168,'admin/config/media/image-styles/edit/%/add/%','admin/config/media/image-styles/edit/%/add/%','Add image effect','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:28:\"Add a new effect to a style.\";}}','system',0,0,0,0,0,6,0,1,8,46,105,168,180,0,0,0,0,'und',0),('management',181,168,'admin/config/media/image-styles/edit/%/effects/%','admin/config/media/image-styles/edit/%/effects/%','Edit image effect','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:39:\"Edit an existing effect within a style.\";}}','system',0,0,1,0,0,6,0,1,8,46,105,168,181,0,0,0,0,'und',0),('management',182,181,'admin/config/media/image-styles/edit/%/effects/%/delete','admin/config/media/image-styles/edit/%/effects/%/delete','Delete image effect','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:39:\"Delete an existing effect from a style.\";}}','system',0,0,0,0,0,7,0,1,8,46,105,168,181,182,0,0,0,'und',0),('management',183,47,'admin/structure/menu/manage/main-menu','admin/structure/menu/manage/%','Main menu','a:0:{}','menu',0,0,0,0,0,4,0,1,21,47,183,0,0,0,0,0,0,'und',0),('management',184,47,'admin/structure/menu/manage/management','admin/structure/menu/manage/%','Management','a:0:{}','menu',0,0,0,0,0,4,0,1,21,47,184,0,0,0,0,0,0,'und',0),('management',185,47,'admin/structure/menu/manage/navigation','admin/structure/menu/manage/%','Navigation','a:0:{}','menu',0,0,0,0,0,4,0,1,21,47,185,0,0,0,0,0,0,'und',0),('management',186,47,'admin/structure/menu/manage/user-menu','admin/structure/menu/manage/%','User menu','a:0:{}','menu',0,0,0,0,0,4,0,1,21,47,186,0,0,0,0,0,0,'und',0),('navigation',187,0,'search','search','Search','a:0:{}','system',1,0,0,0,-45,1,1,187,0,0,0,0,0,0,0,0,0,'und',0),('navigation',191,17,'user/%/shortcuts','user/%/shortcuts','Shortcuts','a:0:{}','system',-1,0,0,0,0,2,0,17,191,0,0,0,0,0,0,0,0,'und',0),('management',194,12,'admin/help/number','admin/help/number','number','a:0:{}','system',-1,0,0,0,0,3,0,1,12,194,0,0,0,0,0,0,0,'und',0),('management',195,12,'admin/help/overlay','admin/help/overlay','overlay','a:0:{}','system',-1,0,0,0,0,3,0,1,12,195,0,0,0,0,0,0,0,'und',0),('management',196,12,'admin/help/path','admin/help/path','path','a:0:{}','system',-1,0,0,0,0,3,0,1,12,196,0,0,0,0,0,0,0,'und',0),('management',197,12,'admin/help/rdf','admin/help/rdf','rdf','a:0:{}','system',-1,0,0,0,0,3,0,1,12,197,0,0,0,0,0,0,0,'und',0),('management',199,12,'admin/help/shortcut','admin/help/shortcut','shortcut','a:0:{}','system',-1,0,0,0,0,3,0,1,12,199,0,0,0,0,0,0,0,'und',0),('management',201,61,'admin/config/user-interface/shortcut','admin/config/user-interface/shortcut','Shortcuts','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:29:\"Add and modify shortcut sets.\";}}','system',0,0,1,0,0,4,0,1,8,61,201,0,0,0,0,0,0,'und',0),('management',202,53,'admin/config/search/path','admin/config/search/path','URL aliases','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:46:\"Change your site\'s URL paths by aliasing them.\";}}','system',0,0,1,0,-5,4,0,1,8,53,202,0,0,0,0,0,0,'und',0),('management',203,202,'admin/config/search/path/add','admin/config/search/path/add','Add alias','a:0:{}','system',-1,0,0,0,0,5,0,1,8,53,202,203,0,0,0,0,0,'und',0),('management',204,201,'admin/config/user-interface/shortcut/add-set','admin/config/user-interface/shortcut/add-set','Add shortcut set','a:0:{}','system',-1,0,0,0,0,5,0,1,8,61,201,204,0,0,0,0,0,'und',0),('management',206,201,'admin/config/user-interface/shortcut/%','admin/config/user-interface/shortcut/%','Edit shortcuts','a:0:{}','system',0,0,1,0,0,5,0,1,8,61,201,206,0,0,0,0,0,'und',0),('management',207,202,'admin/config/search/path/list','admin/config/search/path/list','List','a:0:{}','system',-1,0,0,0,-10,5,0,1,8,53,202,207,0,0,0,0,0,'und',0),('management',208,206,'admin/config/user-interface/shortcut/%/add-link','admin/config/user-interface/shortcut/%/add-link','Add shortcut','a:0:{}','system',-1,0,0,0,0,6,0,1,8,61,201,206,208,0,0,0,0,'und',0),('management',209,202,'admin/config/search/path/delete/%','admin/config/search/path/delete/%','Delete alias','a:0:{}','system',0,0,0,0,0,5,0,1,8,53,202,209,0,0,0,0,0,'und',0),('management',210,206,'admin/config/user-interface/shortcut/%/delete','admin/config/user-interface/shortcut/%/delete','Delete shortcut set','a:0:{}','system',0,0,0,0,0,6,0,1,8,61,201,206,210,0,0,0,0,'und',0),('management',211,202,'admin/config/search/path/edit/%','admin/config/search/path/edit/%','Edit alias','a:0:{}','system',0,0,0,0,0,5,0,1,8,53,202,211,0,0,0,0,0,'und',0),('management',212,206,'admin/config/user-interface/shortcut/%/edit','admin/config/user-interface/shortcut/%/edit','Edit set name','a:0:{}','system',-1,0,0,0,10,6,0,1,8,61,201,206,212,0,0,0,0,'und',0),('management',213,201,'admin/config/user-interface/shortcut/link/%','admin/config/user-interface/shortcut/link/%','Edit shortcut','a:0:{}','system',0,0,1,0,0,5,0,1,8,61,201,213,0,0,0,0,0,'und',0),('management',214,206,'admin/config/user-interface/shortcut/%/links','admin/config/user-interface/shortcut/%/links','List links','a:0:{}','system',-1,0,0,0,0,6,0,1,8,61,201,206,214,0,0,0,0,'und',0),('management',215,213,'admin/config/user-interface/shortcut/link/%/delete','admin/config/user-interface/shortcut/link/%/delete','Delete shortcut','a:0:{}','system',0,0,0,0,0,6,0,1,8,61,201,213,215,0,0,0,0,'und',0),('shortcut-set-1',216,0,'node/add','node/add','Add content','a:0:{}','menu',0,0,0,0,-50,1,0,216,0,0,0,0,0,0,0,0,0,'und',0),('shortcut-set-1',217,0,'admin/content','admin/content','Find content','a:0:{}','menu',0,0,0,0,-49,1,0,217,0,0,0,0,0,0,0,0,0,'und',0),('main-menu',218,0,'<front>','','Home','a:0:{}','menu',0,1,0,0,-50,1,1,218,0,0,0,0,0,0,0,0,0,'und',0),('navigation',219,6,'node/add/article','node/add/article','Article','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.\";}}','system',0,0,0,0,-49,2,1,6,219,0,0,0,0,0,0,0,0,'und',0),('navigation',220,6,'node/add/page','node/add/page','Basic page','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.\";}}','system',0,0,0,0,-48,2,1,6,220,0,0,0,0,0,0,0,0,'und',0),('management',221,12,'admin/help/toolbar','admin/help/toolbar','toolbar','a:0:{}','system',-1,0,0,0,0,3,0,1,12,221,0,0,0,0,0,0,0,'und',0),('management',260,19,'admin/reports/updates','admin/reports/updates','Available updates','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.\";}}','system',0,0,0,0,-50,3,0,1,19,260,0,0,0,0,0,0,0,'und',0),('management',261,7,'admin/appearance/install','admin/appearance/install','Install new theme','a:0:{}','system',-1,0,0,0,25,3,0,1,7,261,0,0,0,0,0,0,0,'und',0),('management',262,16,'admin/modules/update','admin/modules/update','Update','a:0:{}','system',-1,0,0,0,10,3,0,1,16,262,0,0,0,0,0,0,0,'und',0),('management',263,16,'admin/modules/install','admin/modules/install','Install new module','a:0:{}','system',-1,0,0,0,25,3,0,1,16,263,0,0,0,0,0,0,0,'und',0),('management',264,7,'admin/appearance/update','admin/appearance/update','Update','a:0:{}','system',-1,0,0,0,10,3,0,1,7,264,0,0,0,0,0,0,0,'und',0),('management',265,12,'admin/help/update','admin/help/update','update','a:0:{}','system',-1,0,0,0,0,3,0,1,12,265,0,0,0,0,0,0,0,'und',0),('management',266,260,'admin/reports/updates/install','admin/reports/updates/install','Install new module or theme','a:0:{}','system',-1,0,0,0,25,4,0,1,19,260,266,0,0,0,0,0,0,'und',0),('management',267,260,'admin/reports/updates/update','admin/reports/updates/update','Update','a:0:{}','system',-1,0,0,0,10,4,0,1,19,260,267,0,0,0,0,0,0,'und',0),('management',268,260,'admin/reports/updates/list','admin/reports/updates/list','List','a:0:{}','system',-1,0,0,0,0,4,0,1,19,260,268,0,0,0,0,0,0,'und',0),('management',269,260,'admin/reports/updates/settings','admin/reports/updates/settings','Settings','a:0:{}','system',-1,0,0,0,50,4,0,1,19,260,269,0,0,0,0,0,0,'und',0),('navigation',308,5,'node/%/translate','node/%/translate','Translate','a:0:{}','system',-1,0,1,0,1,2,0,5,308,0,0,0,0,0,0,0,0,'und',0),('management',309,12,'admin/help/locale','admin/help/locale','locale','a:0:{}','system',-1,0,0,0,0,3,0,1,12,309,0,0,0,0,0,0,0,'und',0),('management',310,12,'admin/help/translation','admin/help/translation','translation','a:0:{}','system',-1,0,0,0,0,3,0,1,12,310,0,0,0,0,0,0,0,'und',0),('management',311,51,'admin/config/regional/language','admin/config/regional/language','Languages','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:55:\"Configure languages for content and the user interface.\";}}','system',0,0,1,0,-10,4,0,1,8,51,311,0,0,0,0,0,0,'und',0),('management',312,51,'admin/config/regional/translate','admin/config/regional/translate','Translate interface','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:59:\"Translate the built in interface and optionally other text.\";}}','system',0,0,1,0,-5,4,0,1,8,51,312,0,0,0,0,0,0,'und',0),('management',313,311,'admin/config/regional/language/add','admin/config/regional/language/add','Add language','a:0:{}','system',-1,0,0,0,5,5,0,1,8,51,311,313,0,0,0,0,0,'und',0),('management',314,311,'admin/config/regional/language/configure','admin/config/regional/language/configure','Detection and selection','a:0:{}','system',-1,0,0,0,10,5,0,1,8,51,311,314,0,0,0,0,0,'und',0),('management',315,312,'admin/config/regional/translate/export','admin/config/regional/translate/export','Export','a:0:{}','system',-1,0,0,0,30,5,0,1,8,51,312,315,0,0,0,0,0,'und',0),('management',316,312,'admin/config/regional/translate/import','admin/config/regional/translate/import','Import','a:0:{}','system',-1,0,0,0,20,5,0,1,8,51,312,316,0,0,0,0,0,'und',0),('management',317,311,'admin/config/regional/language/overview','admin/config/regional/language/overview','List','a:0:{}','system',-1,0,0,0,0,5,0,1,8,51,311,317,0,0,0,0,0,'und',0),('management',318,99,'admin/config/regional/date-time/locale','admin/config/regional/date-time/locale','Localize','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:38:\"Configure date formats for each locale\";}}','system',-1,0,1,0,-8,5,0,1,8,51,99,318,0,0,0,0,0,'und',0),('management',319,312,'admin/config/regional/translate/overview','admin/config/regional/translate/overview','Overview','a:0:{}','system',-1,0,0,0,0,5,0,1,8,51,312,319,0,0,0,0,0,'und',0),('management',320,312,'admin/config/regional/translate/translate','admin/config/regional/translate/translate','Translate','a:0:{}','system',-1,0,0,0,10,5,0,1,8,51,312,320,0,0,0,0,0,'und',0),('management',321,311,'admin/config/regional/language/delete/%','admin/config/regional/language/delete/%','Confirm','a:0:{}','system',0,0,0,0,0,5,0,1,8,51,311,321,0,0,0,0,0,'und',0),('management',322,312,'admin/config/regional/translate/delete/%','admin/config/regional/translate/delete/%','Delete string','a:0:{}','system',0,0,0,0,0,5,0,1,8,51,312,322,0,0,0,0,0,'und',0),('management',323,311,'admin/config/regional/language/edit/%','admin/config/regional/language/edit/%','Edit language','a:0:{}','system',0,0,0,0,0,5,0,1,8,51,311,323,0,0,0,0,0,'und',0),('management',324,312,'admin/config/regional/translate/edit/%','admin/config/regional/translate/edit/%','Edit string','a:0:{}','system',0,0,0,0,0,5,0,1,8,51,312,324,0,0,0,0,0,'und',0),('management',325,314,'admin/config/regional/language/configure/session','admin/config/regional/language/configure/session','Session language detection configuration','a:0:{}','system',-1,0,0,0,0,6,0,1,8,51,311,314,325,0,0,0,0,'und',0),('management',326,314,'admin/config/regional/language/configure/url','admin/config/regional/language/configure/url','URL language detection configuration','a:0:{}','system',-1,0,0,0,0,6,0,1,8,51,311,314,326,0,0,0,0,'und',0),('management',327,318,'admin/config/regional/date-time/locale/%/edit','admin/config/regional/date-time/locale/%/edit','Localize date formats','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:38:\"Configure date formats for each locale\";}}','system',0,0,0,0,0,6,0,1,8,51,99,318,327,0,0,0,0,'und',0),('management',328,318,'admin/config/regional/date-time/locale/%/reset','admin/config/regional/date-time/locale/%/reset','Reset date formats','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:47:\"Reset localized date formats to global defaults\";}}','system',0,0,0,0,0,6,0,1,8,51,99,318,328,0,0,0,0,'und',0),('management',331,21,'admin/structure/views','admin/structure/views','Views','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:35:\"Manage customized lists of content.\";}}','system',0,0,1,0,0,3,0,1,21,331,0,0,0,0,0,0,0,'und',0),('management',332,19,'admin/reports/views-plugins','admin/reports/views-plugins','Views plugins','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:38:\"Overview of plugins used in all views.\";}}','system',0,0,0,0,0,3,0,1,19,332,0,0,0,0,0,0,0,'und',0),('management',333,331,'admin/structure/views/add','admin/structure/views/add','Add new view','a:0:{}','system',-1,0,0,0,0,4,0,1,21,331,333,0,0,0,0,0,0,'und',0),('management',334,331,'admin/structure/views/add-template','admin/structure/views/add-template','Add view from template','a:0:{}','system',-1,0,0,0,0,4,0,1,21,331,334,0,0,0,0,0,0,'und',0),('management',335,331,'admin/structure/views/import','admin/structure/views/import','Import','a:0:{}','system',-1,0,0,0,0,4,0,1,21,331,335,0,0,0,0,0,0,'und',0),('management',336,331,'admin/structure/views/list','admin/structure/views/list','List','a:0:{}','system',-1,0,0,0,-10,4,0,1,21,331,336,0,0,0,0,0,0,'und',0),('management',337,42,'admin/reports/fields/list','admin/reports/fields/list','List','a:0:{}','system',-1,0,0,0,-10,4,0,1,19,42,337,0,0,0,0,0,0,'und',0),('management',338,331,'admin/structure/views/settings','admin/structure/views/settings','Settings','a:0:{}','system',-1,0,0,0,0,4,0,1,21,331,338,0,0,0,0,0,0,'und',0),('management',339,42,'admin/reports/fields/views-fields','admin/reports/fields/views-fields','Used in views','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:37:\"Overview of fields used in all views.\";}}','system',-1,0,0,0,0,4,0,1,19,42,339,0,0,0,0,0,0,'und',0),('management',340,338,'admin/structure/views/settings/advanced','admin/structure/views/settings/advanced','Advanced','a:0:{}','system',-1,0,0,0,1,5,0,1,21,331,338,340,0,0,0,0,0,'und',0),('management',341,338,'admin/structure/views/settings/basic','admin/structure/views/settings/basic','Basic','a:0:{}','system',-1,0,0,0,0,5,0,1,21,331,338,341,0,0,0,0,0,'und',0),('management',342,331,'admin/structure/views/view/%','admin/structure/views/view/%','','a:0:{}','system',0,0,0,0,0,4,0,1,21,331,342,0,0,0,0,0,0,'und',0),('management',343,342,'admin/structure/views/view/%/break-lock','admin/structure/views/view/%/break-lock','Break lock','a:0:{}','system',-1,0,0,0,0,5,0,1,21,331,342,343,0,0,0,0,0,'und',0),('management',344,342,'admin/structure/views/view/%/edit','admin/structure/views/view/%/edit','Edit view','a:0:{}','system',-1,0,0,0,-10,5,0,1,21,331,342,344,0,0,0,0,0,'und',0),('management',345,342,'admin/structure/views/view/%/clone','admin/structure/views/view/%/clone','Clone','a:0:{}','system',-1,0,0,0,0,5,0,1,21,331,342,345,0,0,0,0,0,'und',0),('management',346,342,'admin/structure/views/view/%/delete','admin/structure/views/view/%/delete','Delete','a:0:{}','system',-1,0,0,0,0,5,0,1,21,331,342,346,0,0,0,0,0,'und',0),('management',347,342,'admin/structure/views/view/%/export','admin/structure/views/view/%/export','Export','a:0:{}','system',-1,0,0,0,0,5,0,1,21,331,342,347,0,0,0,0,0,'und',0),('management',348,342,'admin/structure/views/view/%/revert','admin/structure/views/view/%/revert','Revert','a:0:{}','system',-1,0,0,0,0,5,0,1,21,331,342,348,0,0,0,0,0,'und',0),('management',349,342,'admin/structure/views/view/%/preview/%','admin/structure/views/view/%/preview/%','','a:0:{}','system',-1,0,0,0,0,5,0,1,21,331,342,349,0,0,0,0,0,'und',0),('management',350,331,'admin/structure/views/nojs/preview/%/%','admin/structure/views/nojs/preview/%/%','','a:0:{}','system',0,0,0,0,0,4,0,1,21,331,350,0,0,0,0,0,0,'und',0),('management',351,331,'admin/structure/views/ajax/preview/%/%','admin/structure/views/ajax/preview/%/%','','a:0:{}','system',0,0,0,0,0,4,0,1,21,331,351,0,0,0,0,0,0,'und',0),('management',352,54,'admin/appearance/settings/alpha_responsive_theme','admin/appearance/settings/alpha_responsive_theme','Alpha Responsive Theme','a:0:{}','system',-1,0,0,0,0,4,0,1,7,54,352,0,0,0,0,0,0,'und',0),('management',353,30,'admin/structure/block/list/alpha_responsive_theme','admin/structure/block/list/alpha_responsive_theme','Alpha Responsive Theme','a:0:{}','system',-1,0,0,0,0,4,0,1,21,30,353,0,0,0,0,0,0,'und',0),('management',356,54,'admin/appearance/settings/multipurpose','admin/appearance/settings/multipurpose','Multipurpose Theme','a:0:{}','system',-1,0,0,0,0,4,0,1,7,54,356,0,0,0,0,0,0,'und',0),('management',357,30,'admin/structure/block/list/multipurpose','admin/structure/block/list/multipurpose','Multipurpose Theme','a:0:{}','system',-1,0,0,0,-10,4,0,1,21,30,357,0,0,0,0,0,0,'und',0),('management',360,12,'admin/help/l10n_update','admin/help/l10n_update','l10n_update','a:0:{}','system',-1,0,0,0,0,3,0,1,12,360,0,0,0,0,0,0,0,'und',0),('management',361,311,'admin/config/regional/language/update','admin/config/regional/language/update','Translation updates','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:30:\"Automatic update configuration\";}}','system',-1,0,0,0,20,5,0,1,8,51,311,361,0,0,0,0,0,'und',0),('management',362,312,'admin/config/regional/translate/update','admin/config/regional/translate/update','Update','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:17:\"Available updates\";}}','system',-1,0,0,0,20,5,0,1,8,51,312,362,0,0,0,0,0,'und',0),('management',363,12,'admin/help/i18n','admin/help/i18n','i18n','a:0:{}','system',-1,0,0,0,0,3,0,1,12,363,0,0,0,0,0,0,0,'und',0),('management',364,12,'admin/help/i18n_block','admin/help/i18n_block','i18n_block','a:0:{}','system',-1,0,0,0,0,3,0,1,12,364,0,0,0,0,0,0,0,'und',0),('management',365,12,'admin/help/i18n_menu','admin/help/i18n_menu','i18n_menu','a:0:{}','system',-1,0,0,0,0,3,0,1,12,365,0,0,0,0,0,0,0,'und',0),('management',366,12,'admin/help/i18n_node','admin/help/i18n_node','i18n_node','a:0:{}','system',-1,0,0,0,0,3,0,1,12,366,0,0,0,0,0,0,0,'und',0),('management',367,12,'admin/help/i18n_string','admin/help/i18n_string','i18n_string','a:0:{}','system',-1,0,0,0,0,3,0,1,12,367,0,0,0,0,0,0,0,'und',0),('management',368,51,'admin/config/regional/i18n','admin/config/regional/i18n','Multilingual settings','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:69:\"Configure extended options for multilingual content and translations.\";}}','system',0,0,0,0,10,4,0,1,8,51,368,0,0,0,0,0,0,'und',0),('management',369,51,'admin/config/regional/i18n_translation','admin/config/regional/i18n_translation','Translation sets','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Translation sets overview.\";}}','system',0,0,0,0,10,4,0,1,8,51,369,0,0,0,0,0,0,'und',0),('management',370,368,'admin/config/regional/i18n/configure','admin/config/regional/i18n/configure','Multilingual system','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:69:\"Configure extended options for multilingual content and translations.\";}}','system',-1,0,0,0,0,5,0,1,8,51,368,370,0,0,0,0,0,'und',0),('management',371,368,'admin/config/regional/i18n/node','admin/config/regional/i18n/node','Node options','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:69:\"Configure extended options for multilingual content and translations.\";}}','system',-1,0,0,0,10,5,0,1,8,51,368,371,0,0,0,0,0,'und',0),('management',372,368,'admin/config/regional/i18n/strings','admin/config/regional/i18n/strings','Strings','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Options for user defined strings.\";}}','system',-1,0,0,0,20,5,0,1,8,51,368,372,0,0,0,0,0,'und',0),('management',373,312,'admin/config/regional/translate/i18n_string','admin/config/regional/translate/i18n_string','Strings','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:29:\"Refresh user defined strings.\";}}','system',-1,0,0,0,20,5,0,1,8,51,312,373,0,0,0,0,0,'und',0),('management',374,47,'admin/structure/menu/manage/translation','admin/structure/menu/manage/translation','Translation sets','a:0:{}','system',-1,0,0,0,10,4,0,1,21,47,374,0,0,0,0,0,0,'und',0),('management',375,369,'admin/config/regional/i18n_translation/configure','admin/config/regional/i18n_translation/configure','Translation sets','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:38:\"Overview of existing translation sets.\";}}','system',-1,0,0,0,0,5,0,1,8,51,369,375,0,0,0,0,0,'und',0),('management',376,374,'admin/structure/menu/manage/translation/add','admin/structure/menu/manage/translation/add','Add translation','a:0:{}','system',-1,0,0,0,0,5,0,1,21,47,374,376,0,0,0,0,0,'und',0),('management',377,133,'admin/structure/menu/manage/%/translate','admin/structure/menu/manage/%/translate','Translate','a:0:{}','system',-1,0,0,0,10,5,0,1,21,47,133,377,0,0,0,0,0,'und',0),('management',378,135,'admin/structure/types/manage/%/translate','admin/structure/types/manage/%/translate','Translate','a:0:{}','system',-1,0,0,0,10,5,0,1,21,36,135,378,0,0,0,0,0,'und',0),('management',379,47,'admin/structure/menu/item/%/translate','admin/structure/menu/item/%/translate','Translate','a:0:{}','system',-1,0,0,0,10,4,0,1,21,47,379,0,0,0,0,0,0,'und',0),('management',380,155,'admin/structure/block/manage/%/%/translate','admin/structure/block/manage/%/%/translate','Translate','a:0:{}','system',-1,0,0,0,10,5,0,1,21,30,155,380,0,0,0,0,0,'und',0),('main-menu',382,0,'node/2','node/%','Contacts','a:2:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}','menu',0,0,0,0,-44,1,1,382,0,0,0,0,0,0,0,0,0,'und',0),('navigation',383,0,'node/3','node/%','Cooperations','a:2:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}','menu',0,0,0,0,-39,1,1,383,0,0,0,0,0,0,0,0,0,'und',0),('main-menu',384,0,'node/4','node/%','Data access','a:3:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:0:{}s:5:\"alter\";b:1;}','menu',0,0,0,0,-48,1,1,384,0,0,0,0,0,0,0,0,0,'en',0),('main-menu',390,0,'photos','photos','Gallery','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}','system',1,0,0,0,-49,1,1,390,0,0,0,0,0,0,0,0,0,'und',0),('main-menu',391,390,'photos/upload','photos/upload','Image upload','a:0:{}','system',1,0,0,0,-44,2,1,390,391,0,0,0,0,0,0,0,0,'und',0),('main-menu',392,390,'photos/album','photos/album','Latest albums','a:0:{}','system',1,0,0,0,-49,2,1,390,392,0,0,0,0,0,0,0,0,'und',0),('main-menu',393,390,'photos/image','photos/image','Latest images','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}','system',1,0,0,0,-48,2,1,390,393,0,0,0,0,0,0,0,0,'und',0),('main-menu',394,390,'photos/share','photos/share','Share code','a:0:{}','system',1,0,0,0,-45,2,1,390,394,0,0,0,0,0,0,0,0,'und',0),('navigation',395,6,'node/add/photos','node/add/photos','Album','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:24:\"Create new photo albums.\";}}','system',0,0,0,0,-50,2,1,6,395,0,0,0,0,0,0,0,0,'und',0),('navigation',396,5,'node/%/photos','node/%/photos','Images Management','a:0:{}','system',-1,0,0,0,0,2,0,5,396,0,0,0,0,0,0,0,0,'und',0),('navigation',397,5,'node/%/photos-sort','node/%/photos-sort','Re-arrange','a:0:{}','system',-1,0,0,0,0,2,0,5,397,0,0,0,0,0,0,0,0,'und',0),('main-menu',398,390,'photos/user/%/album','photos/user/%/album','My albums','a:0:{}','system',1,0,0,0,-47,2,1,390,398,0,0,0,0,0,0,0,0,'und',0),('main-menu',399,390,'photos/user/%/image','photos/user/%/image','My images','a:0:{}','system',1,0,0,0,-46,2,1,390,399,0,0,0,0,0,0,0,0,'und',0),('management',400,46,'admin/config/media/photos','admin/config/media/photos','Album photos','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:39:\"Configure global album photos settings.\";}}','system',0,0,0,0,0,4,0,1,8,46,400,0,0,0,0,0,0,'und',0),('management',401,400,'admin/config/media/photos/settings','admin/config/media/photos/settings','Photos','a:0:{}','system',-1,0,0,0,0,5,0,1,8,46,400,401,0,0,0,0,0,'und',0),('management',402,400,'admin/config/media/photos/privacy','admin/config/media/photos/privacy','Privacy','a:0:{}','system',-1,0,0,0,0,5,0,1,8,46,400,402,0,0,0,0,0,'und',0),('management',404,353,'admin/structure/block/list/alpha_responsive_theme/add','admin/structure/block/list/alpha_responsive_theme/add','Add block','a:0:{}','system',-1,0,0,0,0,5,0,1,21,30,353,404,0,0,0,0,0,'und',0),('management',406,131,'admin/structure/block/list/bartik/add','admin/structure/block/list/bartik/add','Add block','a:0:{}','system',-1,0,0,0,0,5,0,1,21,30,131,406,0,0,0,0,0,'und',0),('management',411,54,'admin/appearance/settings/venture_theme','admin/appearance/settings/venture_theme','Venture Theme','a:0:{}','system',-1,0,0,0,0,4,0,1,7,54,411,0,0,0,0,0,0,'und',0),('management',412,30,'admin/structure/block/list/venture_theme','admin/structure/block/list/venture_theme','Venture Theme','a:0:{}','system',-1,0,0,0,0,4,0,1,21,30,412,0,0,0,0,0,0,'und',0),('management',415,412,'admin/structure/block/list/venture_theme/add','admin/structure/block/list/venture_theme/add','Add block','a:0:{}','system',-1,0,0,0,0,5,0,1,21,30,412,415,0,0,0,0,0,'und',0),('navigation',418,17,'user/%/imce','user/%/imce','File browser','a:0:{}','system',-1,0,0,0,10,2,0,17,418,0,0,0,0,0,0,0,0,'und',0),('management',419,46,'admin/config/media/imce','admin/config/media/imce','IMCE','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:42:\"Control how your image/file browser works.\";}}','system',0,0,0,0,0,4,0,1,8,46,419,0,0,0,0,0,0,'und',0),('management',420,419,'admin/config/media/imce/profile','admin/config/media/imce/profile','Add new profile','a:0:{}','system',-1,0,0,0,0,5,0,1,8,46,419,420,0,0,0,0,0,'und',0),('user-menu',421,0,'node/add/page','node/add/page','Add new page','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}','menu',0,0,0,0,0,1,1,421,0,0,0,0,0,0,0,0,0,'und',0),('user-menu',422,0,'node/add/photos','node/add/photos','Add new photo album','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}','menu',0,0,0,0,0,1,1,422,0,0,0,0,0,0,0,0,0,'und',0),('user-menu',423,0,'node/add/article','node/add/article','Add new article','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}','menu',0,0,0,0,0,1,1,423,0,0,0,0,0,0,0,0,0,'und',0),('main-menu',425,0,'node/06','node/%','The Observatory','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}','menu',0,0,0,0,0,1,1,425,0,0,0,0,0,0,0,0,0,'und',0),('main-menu',429,0,'node/12','node/%','Moorings','a:3:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}s:5:\"alter\";b:1;}','menu',0,0,0,0,-47,1,1,429,0,0,0,0,0,0,0,0,0,'en',1),('navigation',430,0,'node/13','node/%','2011/12 - PNRA XXVII','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}','menu',0,0,0,0,-45,1,1,430,0,0,0,0,0,0,0,0,0,'und',0),('navigation',431,0,'node/14','node/%','2013/14 - PNRA XXIX','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}','menu',0,0,0,0,-46,1,1,431,0,0,0,0,0,0,0,0,0,'und',0),('navigation',432,0,'node/15','node/%','Pubblications','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}','menu',0,0,0,0,-41,1,1,432,0,0,0,0,0,0,0,0,0,'und',0),('management',435,64,'admin/config/services/gmap','admin/config/services/gmap','GMap','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:23:\"Configure GMap settings\";}}','system',0,0,0,0,0,4,0,1,8,64,435,0,0,0,0,0,0,'und',0),('navigation',441,0,'map/node','map/node','Node locations','a:0:{}','system',1,0,0,0,-42,1,1,441,0,0,0,0,0,0,0,0,0,'und',0),('navigation',442,0,'map/user','map/user','User locations','a:0:{}','system',1,0,0,0,-38,1,1,442,0,0,0,0,0,0,0,0,0,'und',0),('management',443,12,'admin/help/location','admin/help/location','location','a:0:{}','system',-1,0,0,0,0,3,0,1,12,443,0,0,0,0,0,0,0,'und',0),('management',444,64,'admin/config/services/gmap_location','admin/config/services/gmap_location','GMap Location','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Configure GMap Location settings.\";}}','system',0,0,0,0,0,4,0,1,8,64,444,0,0,0,0,0,0,'und',0),('management',445,35,'admin/config/content/location','admin/config/content/location','Location','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:28:\"Settings for Location module\";}}','system',0,0,0,0,0,4,0,1,8,35,445,0,0,0,0,0,0,'und',0),('management',447,445,'admin/config/content/location/geocoding','admin/config/content/location/geocoding','Geocoding options','a:0:{}','system',-1,0,0,0,2,5,0,1,8,35,445,447,0,0,0,0,0,'und',0),('management',448,445,'admin/config/content/location/util','admin/config/content/location/util','Location utilities','a:0:{}','system',-1,0,0,0,3,5,0,1,8,35,445,448,0,0,0,0,0,'und',0),('management',449,445,'admin/config/content/location/main','admin/config/content/location/main','Main settings','a:0:{}','system',-1,0,0,0,0,5,0,1,8,35,445,449,0,0,0,0,0,'und',0),('management',450,445,'admin/config/content/location/maplinking','admin/config/content/location/maplinking','Map links','a:0:{}','system',-1,0,0,0,1,5,0,1,8,35,445,450,0,0,0,0,0,'und',0),('management',483,21,'admin/structure/features','admin/structure/features','Features','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:16:\"Manage features.\";}}','system',0,0,0,0,0,3,0,1,21,483,0,0,0,0,0,0,0,'und',0),('navigation',484,6,'node/add/openlayers-example-content','node/add/openlayers-example-content','OpenLayers Example Content','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:58:\"This is an example content type for the OpenLayers module.\";}}','system',1,0,0,0,-44,2,1,6,484,0,0,0,0,0,0,0,0,'und',0),('management',485,12,'admin/help/features','admin/help/features','features','a:0:{}','system',-1,0,0,0,0,3,0,1,12,485,0,0,0,0,0,0,0,'und',0),('management',486,483,'admin/structure/features/create','admin/structure/features/create','Create feature','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:21:\"Create a new feature.\";}}','system',-1,0,0,0,10,4,0,1,21,483,486,0,0,0,0,0,0,'und',0),('management',487,483,'admin/structure/features/manage','admin/structure/features/manage','Manage','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:28:\"Enable and disable features.\";}}','system',-1,0,0,0,0,4,0,1,21,483,487,0,0,0,0,0,0,'und',0),('management',488,483,'admin/structure/features/settings','admin/structure/features/settings','Settings','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:42:\"Adjust settings for using features module.\";}}','system',-1,0,0,0,11,4,0,1,21,483,488,0,0,0,0,0,0,'und',0),('management',489,483,'admin/structure/features/%/view','admin/structure/features/%/view','View','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Display components of a feature.\";}}','system',-1,0,0,0,-10,4,0,1,21,483,489,0,0,0,0,0,0,'und',0),('management',490,483,'admin/structure/features/%/recreate','admin/structure/features/%/recreate','Recreate','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:29:\"Recreate an existing feature.\";}}','system',-1,0,0,0,11,4,0,1,21,483,490,0,0,0,0,0,0,'und',0),('management',492,35,'admin/config/content/geocoder','admin/config/content/geocoder','Geocoder settings','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:53:\"Configuration for API keys and other global settings.\";}}','system',-1,0,0,0,0,4,0,1,8,35,492,0,0,0,0,0,0,'und',0),('navigation',498,6,'node/add/mooring','node/add/mooring','Mooring','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:9:\"A mooring\";}}','system',1,0,0,0,-45,2,1,6,498,0,0,0,0,0,0,0,0,'und',0),('navigation',499,6,'node/add/photo','node/add','Photo Moorings 2014','a:0:{}','system',1,0,0,0,-41,2,1,6,499,0,0,0,0,0,0,0,0,'und',0),('navigation',500,6,'node/add/photo-moorings-2012','node/add/photo-moorings-2012','Photo Moorings 2012','a:0:{}','system',0,0,0,0,-42,2,1,6,500,0,0,0,0,0,0,0,0,'und',0),('navigation',506,0,'node/33','node/%','People','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}','menu',0,0,0,0,-40,1,1,506,0,0,0,0,0,0,0,0,0,'und',0),('main-menu',514,0,'node/29','node/%','Pictures','a:3:{s:10:\"attributes\";a:0:{}s:9:\"node_type\";s:6:\"photos\";s:5:\"alter\";b:1;}','menu',0,0,0,0,-43,1,1,514,0,0,0,0,0,0,0,0,0,'en',0),('navigation',522,6,'node/add/photo-moorings-2014','node/add/photo-moorings-2014','Photo Moorings 2014','a:0:{}','system',0,0,0,0,-40,2,1,6,522,0,0,0,0,0,0,0,0,'und',0),('navigation',531,0,'node/45','node/%','2014/15 - PNRA XXX','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}','menu',0,0,0,0,-47,1,1,531,0,0,0,0,0,0,0,0,0,'und',0),('main-menu',532,0,'node/46','node/%','News','a:3:{s:10:\"attributes\";a:0:{}s:9:\"node_type\";s:4:\"page\";s:5:\"alter\";b:1;}','menu',0,0,0,0,-45,1,1,532,0,0,0,0,0,0,0,0,0,'en',0),('management',533,12,'admin/help/php','admin/help/php','php','a:0:{}','system',-1,0,0,0,0,3,0,1,12,533,0,0,0,0,0,0,0,'und',0),('navigation',606,0,'chart/page','chart/page','Forecast as charts','a:0:{}','system',1,0,0,0,-36,1,1,606,0,0,0,0,0,0,0,0,0,'und',0),('navigation',608,0,'node/82','node/%','Tide','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}','menu',0,0,0,0,-34,1,1,608,0,0,0,0,0,0,0,0,0,'und',0),('main-menu',610,0,'node/7','node/%','Ancillary activities','a:2:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:0:{}}','menu',0,0,0,1,-46,1,1,610,0,0,0,0,0,0,0,0,0,'en',0),('navigation',614,0,'contact','contact','Contact','a:0:{}','system',1,0,0,0,-37,1,1,614,0,0,0,0,0,0,0,0,0,'und',0),('navigation',615,0,'forum','forum','Forums','a:0:{}','system',1,0,1,0,-35,1,1,615,0,0,0,0,0,0,0,0,0,'und',0),('navigation',616,615,'forum/%','forum/%','Forums','a:0:{}','system',0,0,0,0,0,2,0,615,616,0,0,0,0,0,0,0,0,'und',0),('navigation',617,17,'user/%/contact','user/%/contact','Contact','a:0:{}','system',-1,0,0,0,2,2,0,17,617,0,0,0,0,0,0,0,0,'und',0),('management',618,21,'admin/structure/contact','admin/structure/contact','Contact form','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.\";}}','system',0,0,1,0,0,3,0,1,21,618,0,0,0,0,0,0,0,'und',0),('navigation',619,6,'node/add/forum','node/add/forum','Forum topic','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.\";}}','system',1,0,0,0,-46,2,1,6,619,0,0,0,0,0,0,0,0,'und',0),('management',620,21,'admin/structure/forum','admin/structure/forum','Forums','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Control forum hierarchy settings.\";}}','system',0,0,1,0,0,3,0,1,21,620,0,0,0,0,0,0,0,'und',0),('management',621,12,'admin/help/contact','admin/help/contact','contact','a:0:{}','system',-1,0,0,0,0,3,0,1,12,621,0,0,0,0,0,0,0,'und',0),('management',622,12,'admin/help/forum','admin/help/forum','forum','a:0:{}','system',-1,0,0,0,0,3,0,1,12,622,0,0,0,0,0,0,0,'und',0),('management',623,12,'admin/help/i18n_forum','admin/help/i18n_forum','i18n_forum','a:0:{}','system',-1,0,0,0,0,3,0,1,12,623,0,0,0,0,0,0,0,'und',0),('management',624,12,'admin/help/i18n_taxonomy','admin/help/i18n_taxonomy','i18n_taxonomy','a:0:{}','system',-1,0,0,0,0,3,0,1,12,624,0,0,0,0,0,0,0,'und',0),('management',625,618,'admin/structure/contact/add','admin/structure/contact/add','Add category','a:0:{}','system',-1,0,0,0,1,4,0,1,21,618,625,0,0,0,0,0,0,'und',0),('management',626,51,'admin/config/regional/entity_translation','admin/config/regional/entity_translation','Entity translation','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:83:\"Configure which entities can be translated and enable or disable language fallback.\";}}','system',0,0,1,0,0,4,0,1,8,51,626,0,0,0,0,0,0,'und',0),('management',627,620,'admin/structure/forum/list','admin/structure/forum/list','List','a:0:{}','system',-1,0,0,0,-10,4,0,1,21,620,627,0,0,0,0,0,0,'und',0),('navigation',628,41,'node/%/edit/%','node/%/edit/%','Edit','a:0:{}','system',-1,0,0,0,0,3,0,5,41,628,0,0,0,0,0,0,0,'und',0),('navigation',629,27,'taxonomy/term/%/translate','taxonomy/term/%/translate','Translate','a:0:{}','system',-1,0,0,0,10,2,0,27,629,0,0,0,0,0,0,0,0,'und',0),('management',630,620,'admin/structure/forum/settings','admin/structure/forum/settings','Settings','a:0:{}','system',-1,0,0,0,5,4,0,1,21,620,630,0,0,0,0,0,0,'und',0),('navigation',631,308,'node/%/translate/delete/%','node/%/translate/delete/%','Delete','a:0:{}','system',0,0,0,0,0,3,0,5,308,631,0,0,0,0,0,0,0,'und',0),('management',632,618,'admin/structure/contact/delete/%','admin/structure/contact/delete/%','Delete contact','a:0:{}','system',0,0,0,0,0,4,0,1,21,618,632,0,0,0,0,0,0,'und',0),('management',633,618,'admin/structure/contact/edit/%','admin/structure/contact/edit/%','Edit contact category','a:0:{}','system',0,0,0,0,0,4,0,1,21,618,633,0,0,0,0,0,0,'und',0),('management',634,89,'admin/structure/taxonomy/%/translate','admin/structure/taxonomy/%/translate','Translate','a:0:{}','system',-1,0,0,0,10,5,0,1,21,57,89,634,0,0,0,0,0,'und',0),('management',635,620,'admin/structure/forum/add/container','admin/structure/forum/add/container','Add container','a:0:{}','system',-1,0,0,0,0,4,0,1,21,620,635,0,0,0,0,0,0,'und',0),('management',636,620,'admin/structure/forum/add/forum','admin/structure/forum/add/forum','Add forum','a:0:{}','system',-1,0,0,0,0,4,0,1,21,620,636,0,0,0,0,0,0,'und',0),('management',637,626,'admin/config/regional/entity_translation/translatable/%','admin/config/regional/entity_translation/translatable/%','Confirm change in translatability.','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:53:\"Confirmation page for changing field translatability.\";}}','system',0,0,0,0,0,5,0,1,8,51,626,637,0,0,0,0,0,'und',0),('navigation',638,41,'node/%/edit/add/%/%','node/%/edit/add/%/%','Edit','a:0:{}','system',-1,0,0,0,0,3,0,5,41,638,0,0,0,0,0,0,0,'und',0),('management',639,633,'admin/structure/contact/edit/%/edit','admin/structure/contact/edit/%/edit','Edit','a:0:{}','system',-1,0,0,0,-100,5,0,1,21,618,633,639,0,0,0,0,0,'und',0),('management',640,620,'admin/structure/forum/edit/container/%','admin/structure/forum/edit/container/%','Edit container','a:0:{}','system',0,0,0,0,0,4,0,1,21,620,640,0,0,0,0,0,0,'und',0),('management',641,620,'admin/structure/forum/edit/forum/%','admin/structure/forum/edit/forum/%','Edit forum','a:0:{}','system',0,0,0,0,0,4,0,1,21,620,641,0,0,0,0,0,0,'und',0),('management',642,139,'admin/structure/taxonomy/%/list/list','admin/structure/taxonomy/%/list/list','Terms','a:0:{}','system',-1,0,0,0,-20,6,0,1,21,57,89,139,642,0,0,0,0,'und',0),('management',643,633,'admin/structure/contact/edit/%/translate','admin/structure/contact/edit/%/translate','Translate','a:0:{}','system',-1,0,0,0,10,5,0,1,21,618,633,643,0,0,0,0,0,'und',0),('management',644,139,'admin/structure/taxonomy/%/list/sets','admin/structure/taxonomy/%/list/sets','Translation sets','a:0:{}','system',-1,0,0,0,0,6,0,1,21,57,89,139,644,0,0,0,0,'und',0),('management',645,644,'admin/structure/taxonomy/%/list/sets/add','admin/structure/taxonomy/%/list/sets/add','Create new translation','a:0:{}','system',-1,0,0,0,0,7,0,1,21,57,89,139,644,645,0,0,0,'und',0),('management',650,12,'admin/help/i18n_redirect','admin/help/i18n_redirect','i18n_redirect','a:0:{}','system',-1,0,0,0,0,3,0,1,12,650,0,0,0,0,0,0,0,'und',0),('management',651,12,'admin/help/i18n_sync','admin/help/i18n_sync','i18n_sync','a:0:{}','system',-1,0,0,0,0,3,0,1,12,651,0,0,0,0,0,0,0,'und',0),('management',652,12,'admin/help/languageicons','admin/help/languageicons','languageicons','a:0:{}','system',-1,0,0,0,0,3,0,1,12,652,0,0,0,0,0,0,0,'und',0),('management',653,12,'admin/help/title','admin/help/title','title','a:0:{}','system',-1,0,0,0,0,3,0,1,12,653,0,0,0,0,0,0,0,'und',0),('management',654,35,'admin/config/content/title','admin/config/content/title','Title settings','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:30:\"Settings for the Title module.\";}}','system',0,0,0,0,0,4,0,1,8,35,654,0,0,0,0,0,0,'und',0),('management',655,311,'admin/config/regional/language/icons','admin/config/regional/language/icons','Icons','a:0:{}','system',-1,0,0,0,10,5,0,1,8,51,311,655,0,0,0,0,0,'und',0),('management',656,369,'admin/config/regional/i18n_translation/path','admin/config/regional/i18n_translation/path','Paths','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:17:\"Path translation.\";}}','system',-1,0,0,0,10,5,0,1,8,51,369,656,0,0,0,0,0,'und',0),('management',657,368,'admin/config/regional/i18n/select','admin/config/regional/i18n/select','Selection','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:69:\"Configure extended options for multilingual content and translations.\";}}','system',-1,0,0,0,0,5,0,1,8,51,368,657,0,0,0,0,0,'und',0),('management',658,368,'admin/config/regional/i18n/variable','admin/config/regional/i18n/variable','Variables','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Configure multilingual variables.\";}}','system',-1,0,0,0,0,5,0,1,8,51,368,658,0,0,0,0,0,'und',0),('management',659,656,'admin/config/regional/i18n_translation/path/list','admin/config/regional/i18n_translation/path/list','Paths','a:0:{}','system',-1,0,0,0,-10,6,0,1,8,51,369,656,659,0,0,0,0,'und',0),('management',660,656,'admin/config/regional/i18n_translation/path/add','admin/config/regional/i18n_translation/path/add','Add path translation','a:0:{}','system',-1,0,0,0,0,6,0,1,8,51,369,656,660,0,0,0,0,'und',0),('management',661,656,'admin/config/regional/i18n_translation/path/delete/%','admin/config/regional/i18n_translation/path/delete/%','Delete path translation','a:0:{}','system',-1,0,0,0,0,6,0,1,8,51,369,656,661,0,0,0,0,'und',0),('management',662,656,'admin/config/regional/i18n_translation/path/edit/%','admin/config/regional/i18n_translation/path/edit/%','Edit path translation','a:0:{}','system',-1,0,0,0,0,6,0,1,8,51,369,656,662,0,0,0,0,'und',0),('management',663,89,'admin/structure/taxonomy/%/fields/replace/%','admin/structure/taxonomy/%/fields/replace/%','Replace fields','a:0:{}','system',0,0,0,0,0,5,0,1,21,57,89,663,0,0,0,0,0,'und',0),('management',664,135,'admin/structure/types/manage/%/fields/replace/%','admin/structure/types/manage/%/fields/replace/%','Replace fields','a:0:{}','system',0,0,0,0,0,5,0,1,21,36,135,664,0,0,0,0,0,'und',0),('management',665,174,'admin/structure/types/manage/%/comment/fields/replace/%','admin/structure/types/manage/%/comment/fields/replace/%','Replace fields','a:0:{}','system',0,0,0,0,0,6,0,1,21,36,135,174,665,0,0,0,0,'und',0),('navigation',708,6,'node/add/photo-moorings-2010','node/add/photo-moorings-2010','Photo Moorings 2010','a:0:{}','system',0,0,0,0,-43,2,1,6,708,0,0,0,0,0,0,0,0,'und',0),('navigation',790,0,'node/124','node/%','2015/16 - PNRA XXXI','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}','menu',0,0,0,0,-48,1,1,790,0,0,0,0,0,0,0,0,0,'und',0),('navigation',791,0,'node/129','node/%','2016/17 - PNRA XXXII','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}','menu',0,0,0,0,-49,1,1,791,0,0,0,0,0,0,0,0,0,'und',0),('management',872,12,'admin/help/views','admin/help/views','views','a:0:{}','system',-1,0,0,0,0,3,0,1,12,872,0,0,0,0,0,0,0,'und',0),('management',873,12,'admin/help/views_ui','admin/help/views_ui','views_ui','a:0:{}','system',-1,0,0,0,0,3,0,1,12,873,0,0,0,0,0,0,0,'und',0),('management',954,19,'admin/reports/libraries','admin/reports/libraries','Libraries','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"An overview of libraries installed on this site.\";}}','system',0,0,1,0,0,3,0,1,19,954,0,0,0,0,0,0,0,'und',0),('management',955,12,'admin/help/libraries','admin/help/libraries','libraries','a:0:{}','system',-1,0,0,0,0,3,0,1,12,955,0,0,0,0,0,0,0,'und',0),('management',956,954,'admin/reports/libraries/%','admin/reports/libraries/%','Library status report','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:36:\"Status overview for a single library\";}}','system',0,0,0,0,0,4,0,1,19,954,956,0,0,0,0,0,0,'und',0),('navigation',997,0,'node/130','node/%','2017/18 - PNRA XXXIII','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:0:\"\";}}','menu',0,0,0,0,-50,1,1,997,0,0,0,0,0,0,0,0,0,'und',0),('navigation',998,4,'filter/tips/%','filter/tips/%','Compose tips','a:0:{}','system',0,0,0,0,0,2,0,4,998,0,0,0,0,0,0,0,0,'und',0),('management',999,89,'admin/structure/taxonomy/%/display','admin/structure/taxonomy/%/display','Manage display','a:0:{}','system',-1,0,0,0,2,5,0,1,21,57,89,999,0,0,0,0,0,'und',0),('management',1000,90,'admin/config/people/accounts/display','admin/config/people/accounts/display','Manage display','a:0:{}','system',-1,0,0,0,2,5,0,1,8,48,90,1000,0,0,0,0,0,'und',0),('management',1001,89,'admin/structure/taxonomy/%/fields','admin/structure/taxonomy/%/fields','Manage fields','a:0:{}','system',-1,0,1,0,1,5,0,1,21,57,89,1001,0,0,0,0,0,'und',0),('management',1002,90,'admin/config/people/accounts/fields','admin/config/people/accounts/fields','Manage fields','a:0:{}','system',-1,0,1,0,1,5,0,1,8,48,90,1002,0,0,0,0,0,'und',0),('management',1003,999,'admin/structure/taxonomy/%/display/default','admin/structure/taxonomy/%/display/default','Default','a:0:{}','system',-1,0,0,0,-10,6,0,1,21,57,89,999,1003,0,0,0,0,'und',0),('management',1004,1000,'admin/config/people/accounts/display/default','admin/config/people/accounts/display/default','Default','a:0:{}','system',-1,0,0,0,-10,6,0,1,8,48,90,1000,1004,0,0,0,0,'und',0),('management',1005,135,'admin/structure/types/manage/%/display','admin/structure/types/manage/%/display','Manage display','a:0:{}','system',-1,0,0,0,2,5,0,1,21,36,135,1005,0,0,0,0,0,'und',0),('management',1006,135,'admin/structure/types/manage/%/fields','admin/structure/types/manage/%/fields','Manage fields','a:0:{}','system',-1,0,1,0,1,5,0,1,21,36,135,1006,0,0,0,0,0,'und',0),('management',1007,999,'admin/structure/taxonomy/%/display/full','admin/structure/taxonomy/%/display/full','Taxonomy term page','a:0:{}','system',-1,0,0,0,0,6,0,1,21,57,89,999,1007,0,0,0,0,'und',0),('management',1008,1000,'admin/config/people/accounts/display/full','admin/config/people/accounts/display/full','User account','a:0:{}','system',-1,0,0,0,0,6,0,1,8,48,90,1000,1008,0,0,0,0,'und',0),('management',1009,1001,'admin/structure/taxonomy/%/fields/%','admin/structure/taxonomy/%/fields/%','','a:0:{}','system',0,0,0,0,0,6,0,1,21,57,89,1001,1009,0,0,0,0,'und',0),('management',1010,1002,'admin/config/people/accounts/fields/%','admin/config/people/accounts/fields/%','','a:0:{}','system',0,0,0,0,0,6,0,1,8,48,90,1002,1010,0,0,0,0,'und',0),('management',1011,1005,'admin/structure/types/manage/%/display/default','admin/structure/types/manage/%/display/default','Default','a:0:{}','system',-1,0,0,0,-10,6,0,1,21,36,135,1005,1011,0,0,0,0,'und',0),('management',1012,1005,'admin/structure/types/manage/%/display/full','admin/structure/types/manage/%/display/full','Full content','a:0:{}','system',-1,0,0,0,0,6,0,1,21,36,135,1005,1012,0,0,0,0,'und',0),('management',1013,1005,'admin/structure/types/manage/%/display/rss','admin/structure/types/manage/%/display/rss','RSS','a:0:{}','system',-1,0,0,0,2,6,0,1,21,36,135,1005,1013,0,0,0,0,'und',0),('management',1014,1005,'admin/structure/types/manage/%/display/teaser','admin/structure/types/manage/%/display/teaser','Teaser','a:0:{}','system',-1,0,0,0,1,6,0,1,21,36,135,1005,1014,0,0,0,0,'und',0),('management',1015,1006,'admin/structure/types/manage/%/fields/%','admin/structure/types/manage/%/fields/%','','a:0:{}','system',0,0,0,0,0,6,0,1,21,36,135,1006,1015,0,0,0,0,'und',0),('management',1016,1009,'admin/structure/taxonomy/%/fields/%/delete','admin/structure/taxonomy/%/fields/%/delete','Delete','a:0:{}','system',-1,0,0,0,10,7,0,1,21,57,89,1001,1009,1016,0,0,0,'und',0),('management',1017,1009,'admin/structure/taxonomy/%/fields/%/edit','admin/structure/taxonomy/%/fields/%/edit','Edit','a:0:{}','system',-1,0,0,0,0,7,0,1,21,57,89,1001,1009,1017,0,0,0,'und',0),('management',1018,1009,'admin/structure/taxonomy/%/fields/%/field-settings','admin/structure/taxonomy/%/fields/%/field-settings','Field settings','a:0:{}','system',-1,0,0,0,0,7,0,1,21,57,89,1001,1009,1018,0,0,0,'und',0),('management',1019,1009,'admin/structure/taxonomy/%/fields/%/translate','admin/structure/taxonomy/%/fields/%/translate','Translate','a:0:{}','system',-1,0,0,0,0,7,0,1,21,57,89,1001,1009,1019,0,0,0,'und',0),('management',1020,1009,'admin/structure/taxonomy/%/fields/%/widget-type','admin/structure/taxonomy/%/fields/%/widget-type','Widget type','a:0:{}','system',-1,0,0,0,0,7,0,1,21,57,89,1001,1009,1020,0,0,0,'und',0),('management',1021,1010,'admin/config/people/accounts/fields/%/delete','admin/config/people/accounts/fields/%/delete','Delete','a:0:{}','system',-1,0,0,0,10,7,0,1,8,48,90,1002,1010,1021,0,0,0,'und',0),('management',1022,1010,'admin/config/people/accounts/fields/%/edit','admin/config/people/accounts/fields/%/edit','Edit','a:0:{}','system',-1,0,0,0,0,7,0,1,8,48,90,1002,1010,1022,0,0,0,'und',0),('management',1023,1010,'admin/config/people/accounts/fields/%/field-settings','admin/config/people/accounts/fields/%/field-settings','Field settings','a:0:{}','system',-1,0,0,0,0,7,0,1,8,48,90,1002,1010,1023,0,0,0,'und',0),('management',1024,1010,'admin/config/people/accounts/fields/%/translate','admin/config/people/accounts/fields/%/translate','Translate','a:0:{}','system',-1,0,0,0,0,7,0,1,8,48,90,1002,1010,1024,0,0,0,'und',0),('management',1025,1010,'admin/config/people/accounts/fields/%/widget-type','admin/config/people/accounts/fields/%/widget-type','Widget type','a:0:{}','system',-1,0,0,0,0,7,0,1,8,48,90,1002,1010,1025,0,0,0,'und',0),('management',1026,173,'admin/structure/types/manage/%/comment/display/default','admin/structure/types/manage/%/comment/display/default','Default','a:0:{}','system',-1,0,0,0,-10,6,0,1,21,36,135,173,1026,0,0,0,0,'und',0),('management',1027,173,'admin/structure/types/manage/%/comment/display/full','admin/structure/types/manage/%/comment/display/full','Full comment','a:0:{}','system',-1,0,0,0,0,6,0,1,21,36,135,173,1027,0,0,0,0,'und',0),('management',1028,174,'admin/structure/types/manage/%/comment/fields/%','admin/structure/types/manage/%/comment/fields/%','','a:0:{}','system',0,0,0,0,0,6,0,1,21,36,135,174,1028,0,0,0,0,'und',0),('management',1029,1015,'admin/structure/types/manage/%/fields/%/delete','admin/structure/types/manage/%/fields/%/delete','Delete','a:0:{}','system',-1,0,0,0,10,7,0,1,21,36,135,1006,1015,1029,0,0,0,'und',0),('management',1030,1015,'admin/structure/types/manage/%/fields/%/edit','admin/structure/types/manage/%/fields/%/edit','Edit','a:0:{}','system',-1,0,0,0,0,7,0,1,21,36,135,1006,1015,1030,0,0,0,'und',0),('management',1031,1015,'admin/structure/types/manage/%/fields/%/field-settings','admin/structure/types/manage/%/fields/%/field-settings','Field settings','a:0:{}','system',-1,0,0,0,0,7,0,1,21,36,135,1006,1015,1031,0,0,0,'und',0),('management',1032,1015,'admin/structure/types/manage/%/fields/%/translate','admin/structure/types/manage/%/fields/%/translate','Translate','a:0:{}','system',-1,0,0,0,0,7,0,1,21,36,135,1006,1015,1032,0,0,0,'und',0),('management',1033,1015,'admin/structure/types/manage/%/fields/%/widget-type','admin/structure/types/manage/%/fields/%/widget-type','Widget type','a:0:{}','system',-1,0,0,0,0,7,0,1,21,36,135,1006,1015,1033,0,0,0,'und',0),('management',1034,1028,'admin/structure/types/manage/%/comment/fields/%/delete','admin/structure/types/manage/%/comment/fields/%/delete','Delete','a:0:{}','system',-1,0,0,0,10,7,0,1,21,36,135,174,1028,1034,0,0,0,'und',0),('management',1035,1028,'admin/structure/types/manage/%/comment/fields/%/edit','admin/structure/types/manage/%/comment/fields/%/edit','Edit','a:0:{}','system',-1,0,0,0,0,7,0,1,21,36,135,174,1028,1035,0,0,0,'und',0),('management',1036,1028,'admin/structure/types/manage/%/comment/fields/%/field-settings','admin/structure/types/manage/%/comment/fields/%/field-settings','Field settings','a:0:{}','system',-1,0,0,0,0,7,0,1,21,36,135,174,1028,1036,0,0,0,'und',0),('management',1037,1028,'admin/structure/types/manage/%/comment/fields/%/translate','admin/structure/types/manage/%/comment/fields/%/translate','Translate','a:0:{}','system',-1,0,0,0,0,7,0,1,21,36,135,174,1028,1037,0,0,0,'und',0),('management',1038,1028,'admin/structure/types/manage/%/comment/fields/%/widget-type','admin/structure/types/manage/%/comment/fields/%/widget-type','Widget type','a:0:{}','system',-1,0,0,0,0,7,0,1,21,36,135,174,1028,1038,0,0,0,'und',0),('main-menu',1039,0,'node/131','node/%','Prova','a:3:{s:9:\"node_type\";s:4:\"page\";s:10:\"attributes\";a:1:{s:5:\"title\";s:15:\"Pagina di prova\";}s:5:\"alter\";b:1;}','menu',0,0,0,0,0,1,1,1039,0,0,0,0,0,0,0,0,0,'en',0);
/*!40000 ALTER TABLE `menu_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `menu_router`
--

DROP TABLE IF EXISTS `menu_router`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `menu_router` (
  `path` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: the Drupal path this entry describes',
  `load_functions` blob NOT NULL COMMENT 'A serialized array of function names (like node_load) to be called to load an object corresponding to a part of the current path.',
  `to_arg_functions` blob NOT NULL COMMENT 'A serialized array of function names (like user_uid_optional_to_arg) to be called to replace a part of the router path with another string.',
  `access_callback` varchar(255) NOT NULL DEFAULT '' COMMENT 'The callback which determines the access to this router path. Defaults to user_access.',
  `access_arguments` blob DEFAULT NULL COMMENT 'A serialized array of arguments for the access callback.',
  `page_callback` varchar(255) NOT NULL DEFAULT '' COMMENT 'The name of the function that renders the page.',
  `page_arguments` blob DEFAULT NULL COMMENT 'A serialized array of arguments for the page callback.',
  `delivery_callback` varchar(255) NOT NULL DEFAULT '' COMMENT 'The name of the function that sends the result of the page_callback function to the browser.',
  `fit` int(11) NOT NULL DEFAULT 0 COMMENT 'A numeric representation of how specific the path is.',
  `number_parts` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Number of parts in this router path.',
  `context` int(11) NOT NULL DEFAULT 0 COMMENT 'Only for local tasks (tabs) - the context of a local task to control its placement.',
  `tab_parent` varchar(255) NOT NULL DEFAULT '' COMMENT 'Only for local tasks (tabs) - the router path of the parent page (which may also be a local task).',
  `tab_root` varchar(255) NOT NULL DEFAULT '' COMMENT 'Router path of the closest non-tab parent page. For pages that are not local tasks, this will be the same as the path.',
  `title` varchar(255) NOT NULL DEFAULT '' COMMENT 'The title for the current page, or the title for the tab if this is a local task.',
  `title_callback` varchar(255) NOT NULL DEFAULT '' COMMENT 'A function which will alter the title. Defaults to t()',
  `title_arguments` varchar(255) NOT NULL DEFAULT '' COMMENT 'A serialized array of arguments for the title callback. If empty, the title will be used as the sole argument for the title callback.',
  `theme_callback` varchar(255) NOT NULL DEFAULT '' COMMENT 'A function which returns the name of the theme that will be used to render this page. If left empty, the default theme will be used.',
  `theme_arguments` varchar(255) NOT NULL DEFAULT '' COMMENT 'A serialized array of arguments for the theme callback.',
  `type` int(11) NOT NULL DEFAULT 0 COMMENT 'Numeric representation of the type of the menu item, like MENU_LOCAL_TASK.',
  `description` text NOT NULL COMMENT 'A description of this item.',
  `position` varchar(255) NOT NULL DEFAULT '' COMMENT 'The position of the block (left or right) on the system administration page for this item.',
  `weight` int(11) NOT NULL DEFAULT 0 COMMENT 'Weight of the element. Lighter weights are higher up, heavier weights go down.',
  `include_file` mediumtext DEFAULT NULL COMMENT 'The file to include for this element, usually the page callback function lives in this file.',
  PRIMARY KEY (`path`),
  KEY `fit` (`fit`),
  KEY `tab_parent` (`tab_parent`(64),`weight`,`title`),
  KEY `tab_root_weight_title` (`tab_root`(64),`weight`,`title`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Maps paths to various callbacks (access, page and title)';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `menu_router`
--

LOCK TABLES `menu_router` WRITE;
/*!40000 ALTER TABLE `menu_router` DISABLE KEYS */;
INSERT INTO `menu_router` VALUES ('admin','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','system_admin_menu_block_page','a:0:{}','',1,1,0,'','admin','Administration','t','','','a:0:{}',6,'','',9,'modules/system/system.admin.inc'),('admin/appearance','','','user_access','a:1:{i:0;s:17:\"administer themes\";}','system_themes_page','a:0:{}','',3,2,0,'','admin/appearance','Appearance','t','','','a:0:{}',6,'Select and configure your themes.','left',-6,'modules/system/system.admin.inc'),('admin/appearance/default','','','user_access','a:1:{i:0;s:17:\"administer themes\";}','system_theme_default','a:0:{}','',7,3,0,'','admin/appearance/default','Set default theme','t','','','a:0:{}',0,'','',0,'modules/system/system.admin.inc'),('admin/appearance/disable','','','user_access','a:1:{i:0;s:17:\"administer themes\";}','system_theme_disable','a:0:{}','',7,3,0,'','admin/appearance/disable','Disable theme','t','','','a:0:{}',0,'','',0,'modules/system/system.admin.inc'),('admin/appearance/enable','','','user_access','a:1:{i:0;s:17:\"administer themes\";}','system_theme_enable','a:0:{}','',7,3,0,'','admin/appearance/enable','Enable theme','t','','','a:0:{}',0,'','',0,'modules/system/system.admin.inc'),('admin/appearance/install','','','update_manager_access','a:0:{}','drupal_get_form','a:2:{i:0;s:27:\"update_manager_install_form\";i:1;s:5:\"theme\";}','',7,3,1,'admin/appearance','admin/appearance','Install new theme','t','','','a:0:{}',388,'','',25,'modules/update/update.manager.inc'),('admin/appearance/list','','','user_access','a:1:{i:0;s:17:\"administer themes\";}','system_themes_page','a:0:{}','',7,3,1,'admin/appearance','admin/appearance','List','t','','','a:0:{}',140,'Select and configure your theme','',-1,'modules/system/system.admin.inc'),('admin/appearance/settings','','','user_access','a:1:{i:0;s:17:\"administer themes\";}','drupal_get_form','a:1:{i:0;s:21:\"system_theme_settings\";}','',7,3,1,'admin/appearance','admin/appearance','Settings','t','','','a:0:{}',132,'Configure default and theme specific settings.','',20,'modules/system/system.admin.inc'),('admin/appearance/settings/alpha_responsive_theme','','','_system_themes_access','a:1:{i:0;O:8:\"stdClass\":13:{s:8:\"filename\";s:67:\"sites/all/themes/alpha_responsive_theme/alpha_responsive_theme.info\";s:4:\"name\";s:22:\"alpha_responsive_theme\";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:22:\"Alpha Responsive Theme\";s:11:\"description\";s:178:\"Designed & Developed by <a href=http://www.zymphonies.com>Zymphonies</a><br/>Contact us for any kind of Drupal services <a href=mailto:info@zymphonies.com>info@zymphonies.com</a>\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:3:{s:20:\"css/font-awesome.css\";s:60:\"sites/all/themes/alpha_responsive_theme/css/font-awesome.css\";s:13:\"css/style.css\";s:53:\"sites/all/themes/alpha_responsive_theme/css/style.css\";s:13:\"css/media.css\";s:53:\"sites/all/themes/alpha_responsive_theme/css/media.css\";}}s:7:\"scripts\";a:1:{s:12:\"js/custom.js\";s:52:\"sites/all/themes/alpha_responsive_theme/js/custom.js\";}s:7:\"regions\";a:23:{s:6:\"search\";s:13:\"Search widget\";s:9:\"user_menu\";s:16:\"User menu widget\";s:9:\"slideshow\";s:16:\"Slideshow widget\";s:13:\"front_welcome\";s:20:\"Front welcome widget\";s:9:\"top_first\";s:16:\"First top widget\";s:10:\"top_second\";s:17:\"Second top widget\";s:9:\"top_third\";s:16:\"Third top widget\";s:13:\"sidebar_first\";s:13:\"First sidebar\";s:14:\"sidebar_second\";s:14:\"Second sidebar\";s:7:\"content\";s:7:\"Content\";s:10:\"highlights\";s:17:\"Highlights widget\";s:15:\"bottom_widget_1\";s:19:\"Bottom first widget\";s:15:\"bottom_widget_2\";s:20:\"Bottom second widget\";s:15:\"bottom_widget_3\";s:19:\"Bottom third widget\";s:12:\"footer_first\";s:19:\"First bottom widget\";s:13:\"footer_second\";s:20:\"Second bottom widget\";s:12:\"footer_third\";s:19:\"Third bottom widget\";s:12:\"footer_forth\";s:19:\"Forth bottom widget\";s:8:\"page_top\";s:8:\"Page top\";s:11:\"page_bottom\";s:11:\"Page bottom\";s:14:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:4:\"name\";i:2;s:6:\"slogan\";i:3;s:17:\"node_user_picture\";i:4;s:20:\"comment_user_picture\";i:5;s:25:\"comment_user_verification\";i:6;s:7:\"favicon\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:8:\"settings\";a:8:{s:11:\"breadcrumbs\";s:1:\"1\";s:12:\"social_links\";s:1:\"1\";s:11:\"twitter_url\";s:30:\"https://twitter.com/zymphonies\";s:12:\"facebook_url\";s:35:\"https://www.facebook.com/zymphonies\";s:17:\"gplus_profile_url\";s:52:\"https://plus.google.com/u/1/+ZymphoniesTechnologies/\";s:20:\"linkedin_profile_url\";s:43:\"https://www.linkedin.com/company/zymphonies\";s:21:\"pinterest_profile_url\";s:36:\"http://www.pinterest.com/zymphonies/\";s:19:\"youtube_profile_url\";s:22:\"http://www.youtube.com\";}s:7:\"version\";s:7:\"7.x-1.4\";s:7:\"project\";s:22:\"alpha_responsive_theme\";s:9:\"datestamp\";s:10:\"1511889487\";s:10:\"screenshot\";s:54:\"sites/all/themes/alpha_responsive_theme/screenshot.png\";s:3:\"php\";s:5:\"5.2.4\";s:5:\"mtime\";i:1537955055;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}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:3:{s:20:\"css/font-awesome.css\";s:60:\"sites/all/themes/alpha_responsive_theme/css/font-awesome.css\";s:13:\"css/style.css\";s:53:\"sites/all/themes/alpha_responsive_theme/css/style.css\";s:13:\"css/media.css\";s:53:\"sites/all/themes/alpha_responsive_theme/css/media.css\";}}s:7:\"scripts\";a:1:{s:12:\"js/custom.js\";s:52:\"sites/all/themes/alpha_responsive_theme/js/custom.js\";}s:6:\"engine\";s:11:\"phptemplate\";}}','drupal_get_form','a:2:{i:0;s:21:\"system_theme_settings\";i:1;s:22:\"alpha_responsive_theme\";}','',15,4,1,'admin/appearance/settings','admin/appearance','Alpha Responsive Theme','t','','','a:0:{}',132,'','',0,'modules/system/system.admin.inc'),('admin/appearance/settings/bartik','','','_system_themes_access','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:19:{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.59\";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:20:{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:14:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"settings\";a:1:{s:20:\"shortcut_module_link\";s:1:\"0\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";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:1538750217;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}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\";}}','drupal_get_form','a:2:{i:0;s:21:\"system_theme_settings\";i:1;s:6:\"bartik\";}','',15,4,1,'admin/appearance/settings','admin/appearance','Bartik','t','','','a:0:{}',132,'','',0,'modules/system/system.admin.inc'),('admin/appearance/settings/garland','','','_system_themes_access','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:19:{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.59\";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:\"1524673284\";s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:12:{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:14:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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:1538750217;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}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\";}}','drupal_get_form','a:2:{i:0;s:21:\"system_theme_settings\";i:1;s:7:\"garland\";}','',15,4,1,'admin/appearance/settings','admin/appearance','Garland','t','','','a:0:{}',132,'','',0,'modules/system/system.admin.inc'),('admin/appearance/settings/global','','','user_access','a:1:{i:0;s:17:\"administer themes\";}','drupal_get_form','a:1:{i:0;s:21:\"system_theme_settings\";}','',15,4,1,'admin/appearance/settings','admin/appearance','Global settings','t','','','a:0:{}',140,'','',-1,'modules/system/system.admin.inc'),('admin/appearance/settings/multipurpose','','','_system_themes_access','a:1:{i:0;O:8:\"stdClass\":13:{s:8:\"filename\";s:47:\"sites/all/themes/multipurpose/multipurpose.info\";s:4:\"name\";s:12:\"multipurpose\";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:18:\"Multipurpose Theme\";s:11:\"description\";s:112:\"Multipurpose Theme is a premium Drupal 7 theme. Developed by <a href=\"http://www.devsaran.com\">Devsaran.com</a>.\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:2:{s:9:\"style.css\";s:39:\"sites/all/themes/multipurpose/style.css\";s:18:\"css/responsive.css\";s:48:\"sites/all/themes/multipurpose/css/responsive.css\";}}s:7:\"scripts\";a:3:{s:12:\"js/retina.js\";s:42:\"sites/all/themes/multipurpose/js/retina.js\";s:13:\"js/plugins.js\";s:43:\"sites/all/themes/multipurpose/js/plugins.js\";s:12:\"js/global.js\";s:42:\"sites/all/themes/multipurpose/js/global.js\";}s:7:\"regions\";a:15:{s:13:\"sidebar_first\";s:13:\"First Sidebar\";s:6:\"header\";s:6:\"Header\";s:13:\"preface_first\";s:13:\"Preface First\";s:14:\"preface_middle\";s:14:\"Preface Middle\";s:12:\"preface_last\";s:12:\"Preface Last\";s:11:\"content_top\";s:11:\"Content Top\";s:7:\"content\";s:7:\"Content\";s:4:\"help\";s:4:\"Help\";s:6:\"footer\";s:6:\"Footer\";s:12:\"footer_first\";s:12:\"First Bottom\";s:13:\"footer_second\";s:13:\"Second Bottom\";s:12:\"footer_third\";s:12:\"Third Bottom\";s:14:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:4:\"name\";i:2;s:6:\"slogan\";i:3;s:17:\"node_user_picture\";i:4;s:20:\"comment_user_picture\";i:5;s:25:\"comment_user_verification\";i:6;s:7:\"favicon\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:8:\"settings\";a:8:{s:17:\"slideshow_display\";s:1:\"1\";s:11:\"breadcrumbs\";s:1:\"1\";s:10:\"image_logo\";s:1:\"0\";s:18:\"socialicon_display\";s:1:\"1\";s:12:\"facebook_url\";s:39:\"http://www.facebook.com/devsaran.drupal\";s:11:\"twitter_url\";s:34:\"http://www.twitter.com/saranquardz\";s:15:\"google_plus_url\";s:49:\"https://plus.google.com/u/0/109064032428497406718\";s:13:\"pinterest_url\";s:20:\"http://pinterest.com\";}s:7:\"version\";s:7:\"7.x-1.0\";s:7:\"project\";s:12:\"multipurpose\";s:9:\"datestamp\";s:10:\"1409600329\";s:10:\"screenshot\";s:44:\"sites/all/themes/multipurpose/screenshot.png\";s:3:\"php\";s:5:\"5.2.4\";s:5:\"mtime\";i:1413461100;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}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:2:{s:9:\"style.css\";s:39:\"sites/all/themes/multipurpose/style.css\";s:18:\"css/responsive.css\";s:48:\"sites/all/themes/multipurpose/css/responsive.css\";}}s:7:\"scripts\";a:3:{s:12:\"js/retina.js\";s:42:\"sites/all/themes/multipurpose/js/retina.js\";s:13:\"js/plugins.js\";s:43:\"sites/all/themes/multipurpose/js/plugins.js\";s:12:\"js/global.js\";s:42:\"sites/all/themes/multipurpose/js/global.js\";}s:6:\"engine\";s:11:\"phptemplate\";}}','drupal_get_form','a:2:{i:0;s:21:\"system_theme_settings\";i:1;s:12:\"multipurpose\";}','',15,4,1,'admin/appearance/settings','admin/appearance','Multipurpose Theme','t','','','a:0:{}',132,'','',0,'modules/system/system.admin.inc'),('admin/appearance/settings/seven','','','_system_themes_access','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:19:{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.59\";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:8:{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:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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:\"1524673284\";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:1538750217;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}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\";}}','drupal_get_form','a:2:{i:0;s:21:\"system_theme_settings\";i:1;s:5:\"seven\";}','',15,4,1,'admin/appearance/settings','admin/appearance','Seven','t','','','a:0:{}',132,'','',0,'modules/system/system.admin.inc'),('admin/appearance/settings/stark','','','_system_themes_access','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:18:{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.59\";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:\"1524673284\";s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:12:{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:14:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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:1538750217;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}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\";}}','drupal_get_form','a:2:{i:0;s:21:\"system_theme_settings\";i:1;s:5:\"stark\";}','',15,4,1,'admin/appearance/settings','admin/appearance','Stark','t','','','a:0:{}',132,'','',0,'modules/system/system.admin.inc'),('admin/appearance/settings/venture_theme','','','_system_themes_access','a:1:{i:0;O:8:\"stdClass\":13:{s:8:\"filename\";s:49:\"sites/all/themes/venture_theme/venture_theme.info\";s:4:\"name\";s:13:\"venture_theme\";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:13:\"Venture Theme\";s:11:\"description\";s:107:\"Venture Theme is a premium Drupal 7 theme. Developed by <a href=\"http://www.devsaran.com\">Devsaran.com</a>.\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:2:{s:9:\"style.css\";s:40:\"sites/all/themes/venture_theme/style.css\";s:18:\"css/responsive.css\";s:49:\"sites/all/themes/venture_theme/css/responsive.css\";}}s:7:\"scripts\";a:3:{s:12:\"js/retina.js\";s:43:\"sites/all/themes/venture_theme/js/retina.js\";s:13:\"js/plugins.js\";s:44:\"sites/all/themes/venture_theme/js/plugins.js\";s:12:\"js/global.js\";s:43:\"sites/all/themes/venture_theme/js/global.js\";}s:7:\"regions\";a:15:{s:13:\"sidebar_first\";s:13:\"First Sidebar\";s:6:\"header\";s:6:\"Header\";s:13:\"preface_first\";s:13:\"Preface First\";s:14:\"preface_middle\";s:14:\"Preface Middle\";s:12:\"preface_last\";s:12:\"Preface Last\";s:11:\"content_top\";s:11:\"Content Top\";s:7:\"content\";s:7:\"Content\";s:4:\"help\";s:4:\"Help\";s:6:\"footer\";s:6:\"Footer\";s:12:\"footer_first\";s:12:\"First Bottom\";s:13:\"footer_second\";s:13:\"Second Bottom\";s:12:\"footer_third\";s:12:\"Third Bottom\";s:14:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:4:\"name\";i:2;s:6:\"slogan\";i:3;s:17:\"node_user_picture\";i:4;s:20:\"comment_user_picture\";i:5;s:25:\"comment_user_verification\";i:6;s:7:\"favicon\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:8:\"settings\";a:12:{s:17:\"slideshow_display\";s:1:\"1\";s:11:\"breadcrumbs\";s:1:\"1\";s:10:\"image_logo\";s:1:\"0\";s:11:\"slide1_head\";s:14:\"Sample product\";s:11:\"slide2_head\";s:14:\"Sample service\";s:11:\"slide3_head\";s:10:\"Contact us\";s:11:\"slide1_desc\";s:40:\"Sed do eiusmod tempor incididunt elit...\";s:11:\"slide2_desc\";s:42:\"Lorem ipsum dolor sit amet, consectetur...\";s:11:\"slide3_desc\";s:41:\"Duis aute irure dolor in reprehenderit...\";s:10:\"slide1_url\";s:6:\"node/1\";s:10:\"slide2_url\";s:6:\"node/2\";s:10:\"slide3_url\";s:6:\"node/3\";}s:7:\"version\";s:7:\"7.x-1.1\";s:7:\"project\";s:13:\"venture_theme\";s:9:\"datestamp\";s:10:\"1402425233\";s:10:\"screenshot\";s:45:\"sites/all/themes/venture_theme/screenshot.png\";s:3:\"php\";s:5:\"5.2.4\";s:5:\"mtime\";i:1411558912;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}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:2:{s:9:\"style.css\";s:40:\"sites/all/themes/venture_theme/style.css\";s:18:\"css/responsive.css\";s:49:\"sites/all/themes/venture_theme/css/responsive.css\";}}s:7:\"scripts\";a:3:{s:12:\"js/retina.js\";s:43:\"sites/all/themes/venture_theme/js/retina.js\";s:13:\"js/plugins.js\";s:44:\"sites/all/themes/venture_theme/js/plugins.js\";s:12:\"js/global.js\";s:43:\"sites/all/themes/venture_theme/js/global.js\";}s:6:\"engine\";s:11:\"phptemplate\";}}','drupal_get_form','a:2:{i:0;s:21:\"system_theme_settings\";i:1;s:13:\"venture_theme\";}','',15,4,1,'admin/appearance/settings','admin/appearance','Venture Theme','t','','','a:0:{}',132,'','',0,'modules/system/system.admin.inc'),('admin/appearance/update','','','update_manager_access','a:0:{}','drupal_get_form','a:2:{i:0;s:26:\"update_manager_update_form\";i:1;s:5:\"theme\";}','',7,3,1,'admin/appearance','admin/appearance','Update','t','','','a:0:{}',132,'','',10,'modules/update/update.manager.inc'),('admin/compact','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','system_admin_compact_page','a:0:{}','',3,2,0,'','admin/compact','Compact mode','t','','','a:0:{}',0,'','',0,'modules/system/system.admin.inc'),('admin/config','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','system_admin_config_page','a:0:{}','',3,2,0,'','admin/config','Configuration','t','','','a:0:{}',6,'Administer settings.','',0,'modules/system/system.admin.inc'),('admin/config/content','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','system_admin_menu_block_page','a:0:{}','',7,3,0,'','admin/config/content','Content authoring','t','','','a:0:{}',6,'Settings related to formatting and authoring content.','left',-15,'modules/system/system.admin.inc'),('admin/config/content/formats','','','user_access','a:1:{i:0;s:18:\"administer filters\";}','drupal_get_form','a:1:{i:0;s:21:\"filter_admin_overview\";}','',15,4,0,'','admin/config/content/formats','Text formats','t','','','a:0:{}',6,'Configure how content input by users is filtered, including allowed HTML tags. Also allows enabling of module-provided filters.','',0,'modules/filter/filter.admin.inc'),('admin/config/content/formats/%','a:1:{i:4;s:18:\"filter_format_load\";}','','user_access','a:1:{i:0;s:18:\"administer filters\";}','filter_admin_format_page','a:1:{i:0;i:4;}','',30,5,0,'','admin/config/content/formats/%','','filter_admin_format_title','a:1:{i:0;i:4;}','','a:0:{}',6,'','',0,'modules/filter/filter.admin.inc'),('admin/config/content/formats/%/disable','a:1:{i:4;s:18:\"filter_format_load\";}','','_filter_disable_format_access','a:1:{i:0;i:4;}','drupal_get_form','a:2:{i:0;s:20:\"filter_admin_disable\";i:1;i:4;}','',61,6,0,'','admin/config/content/formats/%/disable','Disable text format','t','','','a:0:{}',6,'','',0,'modules/filter/filter.admin.inc'),('admin/config/content/formats/add','','','user_access','a:1:{i:0;s:18:\"administer filters\";}','filter_admin_format_page','a:0:{}','',31,5,1,'admin/config/content/formats','admin/config/content/formats','Add text format','t','','','a:0:{}',388,'','',1,'modules/filter/filter.admin.inc'),('admin/config/content/formats/list','','','user_access','a:1:{i:0;s:18:\"administer filters\";}','drupal_get_form','a:1:{i:0;s:21:\"filter_admin_overview\";}','',31,5,1,'admin/config/content/formats','admin/config/content/formats','List','t','','','a:0:{}',140,'','',0,'modules/filter/filter.admin.inc'),('admin/config/content/geocoder','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:1:{i:0;s:23:\"geocoder_admin_settings\";}','',15,4,1,'admin/config/content','admin/config/content','Geocoder settings','t','','','a:0:{}',140,'Configuration for API keys and other global settings.','',0,'sites/all/modules/geocoder/geocoder.admin.inc'),('admin/config/content/location','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:1:{i:0;s:23:\"location_admin_settings\";}','',15,4,0,'','admin/config/content/location','Location','t','','','a:0:{}',6,'Settings for Location module','',0,'sites/all/modules/location/location.admin.inc'),('admin/config/content/location/geocoding','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:1:{i:0;s:31:\"location_geocoding_options_form\";}','',31,5,1,'admin/config/content/location','admin/config/content/location','Geocoding options','t','','','a:0:{}',132,'','',2,'sites/all/modules/location/location.admin.inc'),('admin/config/content/location/geocoding/%/%','a:2:{i:5;N;i:6;N;}','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','location_geocoding_parameters_page','a:2:{i:0;i:5;i:1;i:6;}','',124,7,0,'','admin/config/content/location/geocoding/%/%','','t','','','a:0:{}',0,'','',0,''),('admin/config/content/location/main','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:1:{i:0;s:23:\"location_admin_settings\";}','',31,5,1,'admin/config/content/location','admin/config/content/location','Main settings','t','','','a:0:{}',140,'','',0,'sites/all/modules/location/location.admin.inc'),('admin/config/content/location/maplinking','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:1:{i:0;s:30:\"location_map_link_options_form\";}','',31,5,1,'admin/config/content/location','admin/config/content/location','Map links','t','','','a:0:{}',132,'','',1,'sites/all/modules/location/location.admin.inc'),('admin/config/content/location/util','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:1:{i:0;s:18:\"location_util_form\";}','',31,5,1,'admin/config/content/location','admin/config/content/location','Location utilities','t','','','a:0:{}',132,'','',3,'sites/all/modules/location/location.admin.inc'),('admin/config/content/title','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:1:{i:0;s:25:\"title_admin_settings_form\";}','',15,4,0,'','admin/config/content/title','Title settings','t','','','a:0:{}',6,'Settings for the Title module.','',0,'sites/all/modules/title/title.admin.inc'),('admin/config/development','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','system_admin_menu_block_page','a:0:{}','',7,3,0,'','admin/config/development','Development','t','','','a:0:{}',6,'Development tools.','right',-10,'modules/system/system.admin.inc'),('admin/config/development/logging','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:1:{i:0;s:23:\"system_logging_settings\";}','',15,4,0,'','admin/config/development/logging','Logging and errors','t','','','a:0:{}',6,'Settings for logging and alerts modules. Various modules can route Drupal\'s system events to different destinations, such as syslog, database, email, etc.','',-15,'modules/system/system.admin.inc'),('admin/config/development/maintenance','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:1:{i:0;s:28:\"system_site_maintenance_mode\";}','',15,4,0,'','admin/config/development/maintenance','Maintenance mode','t','','','a:0:{}',6,'Take the site offline for maintenance or bring it back online.','',-10,'modules/system/system.admin.inc'),('admin/config/development/performance','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:1:{i:0;s:27:\"system_performance_settings\";}','',15,4,0,'','admin/config/development/performance','Performance','t','','','a:0:{}',6,'Enable or disable page caching for anonymous users and set CSS and JS bandwidth optimization options.','',-20,'modules/system/system.admin.inc'),('admin/config/media','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','system_admin_menu_block_page','a:0:{}','',7,3,0,'','admin/config/media','Media','t','','','a:0:{}',6,'Media tools.','left',-10,'modules/system/system.admin.inc'),('admin/config/media/file-system','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:1:{i:0;s:27:\"system_file_system_settings\";}','',15,4,0,'','admin/config/media/file-system','File system','t','','','a:0:{}',6,'Tell Drupal where to store uploaded files and how they are accessed.','',-10,'modules/system/system.admin.inc'),('admin/config/media/image-styles','','','user_access','a:1:{i:0;s:23:\"administer image styles\";}','image_style_list','a:0:{}','',15,4,0,'','admin/config/media/image-styles','Image styles','t','','','a:0:{}',6,'Configure styles that can be used for resizing or adjusting images on display.','',0,'modules/image/image.admin.inc'),('admin/config/media/image-styles/add','','','user_access','a:1:{i:0;s:23:\"administer image styles\";}','drupal_get_form','a:1:{i:0;s:20:\"image_style_add_form\";}','',31,5,1,'admin/config/media/image-styles','admin/config/media/image-styles','Add style','t','','','a:0:{}',388,'Add a new image style.','',2,'modules/image/image.admin.inc'),('admin/config/media/image-styles/delete/%','a:1:{i:5;a:1:{s:16:\"image_style_load\";a:2:{i:0;N;i:1;s:1:\"1\";}}}','','user_access','a:1:{i:0;s:23:\"administer image styles\";}','drupal_get_form','a:2:{i:0;s:23:\"image_style_delete_form\";i:1;i:5;}','',62,6,0,'','admin/config/media/image-styles/delete/%','Delete style','t','','','a:0:{}',6,'Delete an image style.','',0,'modules/image/image.admin.inc'),('admin/config/media/image-styles/edit/%','a:1:{i:5;s:16:\"image_style_load\";}','','user_access','a:1:{i:0;s:23:\"administer image styles\";}','drupal_get_form','a:2:{i:0;s:16:\"image_style_form\";i:1;i:5;}','',62,6,0,'','admin/config/media/image-styles/edit/%','Edit style','t','','','a:0:{}',6,'Configure an image style.','',0,'modules/image/image.admin.inc'),('admin/config/media/image-styles/edit/%/add/%','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;}}}','','user_access','a:1:{i:0;s:23:\"administer image styles\";}','drupal_get_form','a:3:{i:0;s:17:\"image_effect_form\";i:1;i:5;i:2;i:7;}','',250,8,0,'','admin/config/media/image-styles/edit/%/add/%','Add image effect','t','','','a:0:{}',6,'Add a new effect to a style.','',0,'modules/image/image.admin.inc'),('admin/config/media/image-styles/edit/%/effects/%','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\";}}}','','user_access','a:1:{i:0;s:23:\"administer image styles\";}','drupal_get_form','a:3:{i:0;s:17:\"image_effect_form\";i:1;i:5;i:2;i:7;}','',250,8,0,'','admin/config/media/image-styles/edit/%/effects/%','Edit image effect','t','','','a:0:{}',6,'Edit an existing effect within a style.','',0,'modules/image/image.admin.inc'),('admin/config/media/image-styles/edit/%/effects/%/delete','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\";}}}','','user_access','a:1:{i:0;s:23:\"administer image styles\";}','drupal_get_form','a:3:{i:0;s:24:\"image_effect_delete_form\";i:1;i:5;i:2;i:7;}','',501,9,0,'','admin/config/media/image-styles/edit/%/effects/%/delete','Delete image effect','t','','','a:0:{}',6,'Delete an existing effect from a style.','',0,'modules/image/image.admin.inc'),('admin/config/media/image-styles/list','','','user_access','a:1:{i:0;s:23:\"administer image styles\";}','image_style_list','a:0:{}','',31,5,1,'admin/config/media/image-styles','admin/config/media/image-styles','List','t','','','a:0:{}',140,'List the current image styles on the site.','',1,'modules/image/image.admin.inc'),('admin/config/media/image-styles/revert/%','a:1:{i:5;a:1:{s:16:\"image_style_load\";a:2:{i:0;N;i:1;s:1:\"2\";}}}','','user_access','a:1:{i:0;s:23:\"administer image styles\";}','drupal_get_form','a:2:{i:0;s:23:\"image_style_revert_form\";i:1;i:5;}','',62,6,0,'','admin/config/media/image-styles/revert/%','Revert style','t','','','a:0:{}',6,'Revert an image style.','',0,'modules/image/image.admin.inc'),('admin/config/media/image-toolkit','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:1:{i:0;s:29:\"system_image_toolkit_settings\";}','',15,4,0,'','admin/config/media/image-toolkit','Image toolkit','t','','','a:0:{}',6,'Choose which image toolkit to use if you have installed optional toolkits.','',20,'modules/system/system.admin.inc'),('admin/config/media/imce','','','user_access','a:1:{i:0;s:15:\"administer imce\";}','imce_admin','a:0:{}','',15,4,0,'','admin/config/media/imce','IMCE','t','','','a:0:{}',6,'Control how your image/file browser works.','',0,'sites/all/modules/imce/inc/imce.admin.inc'),('admin/config/media/imce/profile','','','user_access','a:1:{i:0;s:15:\"administer imce\";}','imce_profile_operations','a:0:{}','',31,5,0,'','admin/config/media/imce/profile','Add new profile','t','','','a:0:{}',4,'','',0,'sites/all/modules/imce/inc/imce.admin.inc'),('admin/config/media/photos','','','user_access','a:1:{i:0;s:16:\"administer nodes\";}','drupal_get_form','a:1:{i:0;s:21:\"photos_admin_settings\";}','',15,4,0,'','admin/config/media/photos','Album photos','t','','','a:0:{}',6,'Configure global album photos settings.','',0,'sites/all/modules/photos/inc/photos.admin.inc'),('admin/config/media/photos/privacy','','','user_access','a:1:{i:0;s:16:\"administer nodes\";}','drupal_get_form','a:1:{i:0;s:28:\"photos_access_admin_settings\";}','',31,5,1,'admin/config/media/photos','admin/config/media/photos','Privacy','t','','','a:0:{}',132,'','',0,''),('admin/config/media/photos/settings','','','user_access','a:1:{i:0;s:16:\"administer nodes\";}','drupal_get_form','a:1:{i:0;s:21:\"photos_admin_settings\";}','',31,5,1,'admin/config/media/photos','admin/config/media/photos','Photos','t','','','a:0:{}',140,'','',0,'sites/all/modules/photos/inc/photos.admin.inc'),('admin/config/people','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','system_admin_menu_block_page','a:0:{}','',7,3,0,'','admin/config/people','People','t','','','a:0:{}',6,'Configure user accounts.','left',-20,'modules/system/system.admin.inc'),('admin/config/people/accounts','','','user_access','a:1:{i:0;s:16:\"administer users\";}','drupal_get_form','a:1:{i:0;s:19:\"user_admin_settings\";}','',15,4,0,'','admin/config/people/accounts','Account settings','t','','','a:0:{}',6,'Configure default behavior of users, including registration requirements, e-mails, fields, and user pictures.','',-10,'modules/user/user.admin.inc'),('admin/config/people/accounts/display','','','field_ui_admin_access','a:2:{i:0;s:11:\"user_access\";i:1;a:1:{i:0;s:16:\"administer users\";}}','drupal_get_form','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\";}','',31,5,1,'admin/config/people/accounts','admin/config/people/accounts','Manage display','t','','','a:0:{}',132,'','',2,'modules/field_ui/field_ui.admin.inc'),('admin/config/people/accounts/display/default','','','_field_ui_view_mode_menu_access','a:6:{i:0;s:4:\"user\";i:1;s:4:\"user\";i:2;s:7:\"default\";i:3;s:21:\"field_ui_admin_access\";i:4;s:11:\"user_access\";i:5;a:1:{i:0;s:16:\"administer users\";}}','drupal_get_form','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\";}','',63,6,1,'admin/config/people/accounts/display','admin/config/people/accounts','Default','t','','','a:0:{}',140,'','',-10,'modules/field_ui/field_ui.admin.inc'),('admin/config/people/accounts/display/full','','','_field_ui_view_mode_menu_access','a:6:{i:0;s:4:\"user\";i:1;s:4:\"user\";i:2;s:4:\"full\";i:3;s:21:\"field_ui_admin_access\";i:4;s:11:\"user_access\";i:5;a:1:{i:0;s:16:\"administer users\";}}','drupal_get_form','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\";}','',63,6,1,'admin/config/people/accounts/display','admin/config/people/accounts','User account','t','','','a:0:{}',132,'','',0,'modules/field_ui/field_ui.admin.inc'),('admin/config/people/accounts/fields','','','field_ui_admin_access','a:2:{i:0;s:11:\"user_access\";i:1;a:1:{i:0;s:16:\"administer users\";}}','drupal_get_form','a:3:{i:0;s:28:\"field_ui_field_overview_form\";i:1;s:4:\"user\";i:2;s:4:\"user\";}','',31,5,1,'admin/config/people/accounts','admin/config/people/accounts','Manage fields','t','','','a:0:{}',132,'','',1,'modules/field_ui/field_ui.admin.inc'),('admin/config/people/accounts/fields/%','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\";}}}','','field_ui_admin_access','a:2:{i:0;s:11:\"user_access\";i:1;a:1:{i:0;s:16:\"administer users\";}}','drupal_get_form','a:2:{i:0;s:24:\"field_ui_field_edit_form\";i:1;i:5;}','',62,6,0,'','admin/config/people/accounts/fields/%','','field_ui_menu_title','a:1:{i:0;i:5;}','','a:0:{}',6,'','',0,'modules/field_ui/field_ui.admin.inc'),('admin/config/people/accounts/fields/%/delete','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\";}}}','','field_ui_admin_access','a:2:{i:0;s:11:\"user_access\";i:1;a:1:{i:0;s:16:\"administer users\";}}','drupal_get_form','a:2:{i:0;s:26:\"field_ui_field_delete_form\";i:1;i:5;}','',125,7,1,'admin/config/people/accounts/fields/%','admin/config/people/accounts/fields/%','Delete','t','','','a:0:{}',132,'','',10,'modules/field_ui/field_ui.admin.inc'),('admin/config/people/accounts/fields/%/edit','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\";}}}','','field_ui_admin_access','a:2:{i:0;s:11:\"user_access\";i:1;a:1:{i:0;s:16:\"administer users\";}}','drupal_get_form','a:2:{i:0;s:24:\"field_ui_field_edit_form\";i:1;i:5;}','',125,7,1,'admin/config/people/accounts/fields/%','admin/config/people/accounts/fields/%','Edit','t','','','a:0:{}',140,'','',0,'modules/field_ui/field_ui.admin.inc'),('admin/config/people/accounts/fields/%/field-settings','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\";}}}','','field_ui_admin_access','a:2:{i:0;s:11:\"user_access\";i:1;a:1:{i:0;s:16:\"administer users\";}}','drupal_get_form','a:2:{i:0;s:28:\"field_ui_field_settings_form\";i:1;i:5;}','',125,7,1,'admin/config/people/accounts/fields/%','admin/config/people/accounts/fields/%','Field settings','t','','','a:0:{}',132,'','',0,'modules/field_ui/field_ui.admin.inc'),('admin/config/people/accounts/fields/%/translate','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\";}}}','','user_access','a:1:{i:0;s:16:\"administer users\";}','i18n_field_page_translate','a:1:{i:0;i:5;}','',125,7,1,'admin/config/people/accounts/fields/%','admin/config/people/accounts/fields/%','Translate','t','','','a:0:{}',132,'','',0,'sites/all/modules/i18n/i18n_field/i18n_field.pages.inc'),('admin/config/people/accounts/fields/%/translate/%','a:2:{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\";}}i:7;a:1:{s:18:\"i18n_language_load\";a:4:{i:0;s:4:\"user\";i:1;s:4:\"user\";i:2;s:1:\"0\";i:3;s:4:\"%map\";}}}','','user_access','a:1:{i:0;s:16:\"administer users\";}','i18n_field_page_translate','a:2:{i:0;i:5;i:1;i:7;}','',250,8,0,'','admin/config/people/accounts/fields/%/translate/%','Instance','t','','','a:0:{}',0,'','',0,'sites/all/modules/i18n/i18n_field/i18n_field.pages.inc'),('admin/config/people/accounts/fields/%/widget-type','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\";}}}','','field_ui_admin_access','a:2:{i:0;s:11:\"user_access\";i:1;a:1:{i:0;s:16:\"administer users\";}}','drupal_get_form','a:2:{i:0;s:25:\"field_ui_widget_type_form\";i:1;i:5;}','',125,7,1,'admin/config/people/accounts/fields/%','admin/config/people/accounts/fields/%','Widget type','t','','','a:0:{}',132,'','',0,'modules/field_ui/field_ui.admin.inc'),('admin/config/people/accounts/settings','','','user_access','a:1:{i:0;s:16:\"administer users\";}','drupal_get_form','a:1:{i:0;s:19:\"user_admin_settings\";}','',31,5,1,'admin/config/people/accounts','admin/config/people/accounts','Settings','t','','','a:0:{}',140,'','',-10,'modules/user/user.admin.inc'),('admin/config/people/ip-blocking','','','user_access','a:1:{i:0;s:18:\"block IP addresses\";}','system_ip_blocking','a:0:{}','',15,4,0,'','admin/config/people/ip-blocking','IP address blocking','t','','','a:0:{}',6,'Manage blocked IP addresses.','',10,'modules/system/system.admin.inc'),('admin/config/people/ip-blocking/delete/%','a:1:{i:5;s:15:\"blocked_ip_load\";}','','user_access','a:1:{i:0;s:18:\"block IP addresses\";}','drupal_get_form','a:2:{i:0;s:25:\"system_ip_blocking_delete\";i:1;i:5;}','',62,6,0,'','admin/config/people/ip-blocking/delete/%','Delete IP address','t','','','a:0:{}',6,'','',0,'modules/system/system.admin.inc'),('admin/config/regional','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','system_admin_menu_block_page','a:0:{}','',7,3,0,'','admin/config/regional','Regional and language','t','','','a:0:{}',6,'Regional settings, localization and translation.','left',-5,'modules/system/system.admin.inc'),('admin/config/regional/date-time','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:1:{i:0;s:25:\"system_date_time_settings\";}','',15,4,0,'','admin/config/regional/date-time','Date and time','t','','','a:0:{}',6,'Configure display formats for date and time.','',-15,'modules/system/system.admin.inc'),('admin/config/regional/date-time/formats','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','system_date_time_formats','a:0:{}','',31,5,1,'admin/config/regional/date-time','admin/config/regional/date-time','Formats','t','','','a:0:{}',132,'Configure display format strings for date and time.','',-9,'modules/system/system.admin.inc'),('admin/config/regional/date-time/formats/%/delete','a:1:{i:5;N;}','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:2:{i:0;s:30:\"system_date_delete_format_form\";i:1;i:5;}','',125,7,0,'','admin/config/regional/date-time/formats/%/delete','Delete date format','t','','','a:0:{}',6,'Allow users to delete a configured date format.','',0,'modules/system/system.admin.inc'),('admin/config/regional/date-time/formats/%/edit','a:1:{i:5;N;}','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:2:{i:0;s:34:\"system_configure_date_formats_form\";i:1;i:5;}','',125,7,0,'','admin/config/regional/date-time/formats/%/edit','Edit date format','t','','','a:0:{}',6,'Allow users to edit a configured date format.','',0,'modules/system/system.admin.inc'),('admin/config/regional/date-time/formats/add','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:1:{i:0;s:34:\"system_configure_date_formats_form\";}','',63,6,1,'admin/config/regional/date-time/formats','admin/config/regional/date-time','Add format','t','','','a:0:{}',388,'Allow users to add additional date formats.','',-10,'modules/system/system.admin.inc'),('admin/config/regional/date-time/formats/lookup','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','system_date_time_lookup','a:0:{}','',63,6,0,'','admin/config/regional/date-time/formats/lookup','Date and time lookup','t','','','a:0:{}',0,'','',0,'modules/system/system.admin.inc'),('admin/config/regional/date-time/locale','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','locale_date_format_language_overview_page','a:0:{}','',31,5,1,'admin/config/regional/date-time','admin/config/regional/date-time','Localize','t','','','a:0:{}',132,'Configure date formats for each locale','',-8,'modules/locale/locale.admin.inc'),('admin/config/regional/date-time/locale/%/edit','a:1:{i:5;N;}','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:2:{i:0;s:23:\"locale_date_format_form\";i:1;i:5;}','',125,7,0,'','admin/config/regional/date-time/locale/%/edit','Localize date formats','t','','','a:0:{}',6,'Configure date formats for each locale','',0,'modules/locale/locale.admin.inc'),('admin/config/regional/date-time/locale/%/reset','a:1:{i:5;N;}','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:2:{i:0;s:29:\"locale_date_format_reset_form\";i:1;i:5;}','',125,7,0,'','admin/config/regional/date-time/locale/%/reset','Reset date formats','t','','','a:0:{}',6,'Reset localized date formats to global defaults','',0,'modules/locale/locale.admin.inc'),('admin/config/regional/date-time/types','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:1:{i:0;s:25:\"system_date_time_settings\";}','',31,5,1,'admin/config/regional/date-time','admin/config/regional/date-time','Types','t','','','a:0:{}',140,'Configure display formats for date and time.','',-10,'modules/system/system.admin.inc'),('admin/config/regional/date-time/types/%/delete','a:1:{i:5;N;}','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:2:{i:0;s:35:\"system_delete_date_format_type_form\";i:1;i:5;}','',125,7,0,'','admin/config/regional/date-time/types/%/delete','Delete date type','t','','','a:0:{}',6,'Allow users to delete a configured date type.','',0,'modules/system/system.admin.inc'),('admin/config/regional/date-time/types/add','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:1:{i:0;s:32:\"system_add_date_format_type_form\";}','',63,6,1,'admin/config/regional/date-time/types','admin/config/regional/date-time','Add date type','t','','','a:0:{}',388,'Add new date type.','',-10,'modules/system/system.admin.inc'),('admin/config/regional/entity_translation','','','user_access','a:1:{i:0;s:29:\"administer entity translation\";}','drupal_get_form','a:1:{i:0;s:29:\"entity_translation_admin_form\";}','',15,4,0,'','admin/config/regional/entity_translation','Entity translation','t','','','a:0:{}',6,'Configure which entities can be translated and enable or disable language fallback.','',0,'sites/all/modules/entity_translation/entity_translation.admin.inc'),('admin/config/regional/entity_translation/translatable/%','a:1:{i:5;N;}','','user_access','a:1:{i:0;s:28:\"toggle field translatability\";}','drupal_get_form','a:2:{i:0;s:36:\"entity_translation_translatable_form\";i:1;i:5;}','',62,6,0,'','admin/config/regional/entity_translation/translatable/%','Confirm change in translatability.','t','','','a:0:{}',6,'Confirmation page for changing field translatability.','',0,'sites/all/modules/entity_translation/entity_translation.admin.inc'),('admin/config/regional/entity_translation/upgrade','','','user_access','a:1:{i:0;s:27:\"administer software updates\";}','drupal_get_form','a:1:{i:0;s:31:\"entity_translation_upgrade_form\";}','',31,5,0,'','admin/config/regional/entity_translation/upgrade','Entity Translation Upgrade','t','','','a:0:{}',0,'','',0,'sites/all/modules/entity_translation/entity_translation_upgrade/entity_translation_upgrade.admin.inc'),('admin/config/regional/i18n','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:2:{i:0;s:20:\"variable_module_form\";i:1;s:4:\"i18n\";}','',15,4,0,'','admin/config/regional/i18n','Multilingual settings','t','','','a:0:{}',6,'Configure extended options for multilingual content and translations.','',10,''),('admin/config/regional/i18n/configure','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:2:{i:0;s:20:\"variable_module_form\";i:1;s:4:\"i18n\";}','',31,5,1,'admin/config/regional/i18n','admin/config/regional/i18n','Multilingual system','t','','','a:0:{}',140,'Configure extended options for multilingual content and translations.','',0,''),('admin/config/regional/i18n/node','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:2:{i:0;s:19:\"variable_group_form\";i:1;s:9:\"i18n_node\";}','',31,5,1,'admin/config/regional/i18n','admin/config/regional/i18n','Node options','t','','','a:0:{}',132,'Configure extended options for multilingual content and translations.','',10,''),('admin/config/regional/i18n/select','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:1:{i:0;s:26:\"i18n_select_admin_settings\";}','',31,5,1,'admin/config/regional/i18n','admin/config/regional/i18n','Selection','t','','','a:0:{}',132,'Configure extended options for multilingual content and translations.','',0,'sites/all/modules/i18n/i18n_select/i18n_select.admin.inc'),('admin/config/regional/i18n/strings','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:2:{i:0;s:18:\"variable_edit_form\";i:1;a:3:{i:0;s:27:\"i18n_string_allowed_formats\";i:1;s:27:\"i18n_string_source_language\";i:2;s:39:\"i18n_string_textgroup_class_[textgroup]\";}}','',31,5,1,'admin/config/regional/i18n','admin/config/regional/i18n','Strings','t','','','a:0:{}',132,'Options for user defined strings.','',20,''),('admin/config/regional/i18n/variable','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:2:{i:0;s:36:\"variable_realm_select_variables_form\";i:1;s:8:\"language\";}','',31,5,1,'admin/config/regional/i18n','admin/config/regional/i18n','Variables','t','','','a:0:{}',132,'Configure multilingual variables.','',0,'sites/all/modules/variable/variable_realm/variable_realm.form.inc'),('admin/config/regional/i18n_translation','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','i18n_translation_admin_overview','a:0:{}','',15,4,0,'','admin/config/regional/i18n_translation','Translation sets','t','','','a:0:{}',6,'Translation sets overview.','',10,'sites/all/modules/i18n/i18n_translation/i18n_translation.admin.inc'),('admin/config/regional/i18n_translation/configure','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','i18n_translation_admin_overview','a:0:{}','',31,5,1,'admin/config/regional/i18n_translation','admin/config/regional/i18n_translation','Translation sets','t','','','a:0:{}',140,'Overview of existing translation sets.','',0,'sites/all/modules/i18n/i18n_translation/i18n_translation.admin.inc'),('admin/config/regional/i18n_translation/path','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','i18n_path_admin_overview','a:0:{}','',31,5,1,'admin/config/regional/i18n_translation','admin/config/regional/i18n_translation','Paths','t','','','a:0:{}',132,'Path translation.','',10,'sites/all/modules/i18n/i18n_path/i18n_path.admin.inc'),('admin/config/regional/i18n_translation/path/add','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:1:{i:0;s:20:\"i18n_path_admin_form\";}','',63,6,1,'admin/config/regional/i18n_translation/path','admin/config/regional/i18n_translation','Add path translation','t','','','a:0:{}',388,'','',0,'sites/all/modules/i18n/i18n_path/i18n_path.admin.inc'),('admin/config/regional/i18n_translation/path/delete/%','a:1:{i:6;s:30:\"i18n_path_translation_set_load\";}','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:2:{i:0;s:35:\"i18n_translation_set_delete_confirm\";i:1;i:6;}','',126,7,2,'admin/config/regional/i18n_translation/path','admin/config/regional/i18n_translation','Delete path translation','t','','','a:0:{}',132,'','',0,'sites/all/modules/i18n/i18n_path/i18n_path.admin.inc'),('admin/config/regional/i18n_translation/path/edit/%','a:1:{i:6;s:30:\"i18n_path_translation_set_load\";}','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:2:{i:0;s:20:\"i18n_path_admin_form\";i:1;i:6;}','',126,7,2,'admin/config/regional/i18n_translation/path','admin/config/regional/i18n_translation','Edit path translation','t','','','a:0:{}',132,'','',0,'sites/all/modules/i18n/i18n_path/i18n_path.admin.inc'),('admin/config/regional/i18n_translation/path/list','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','i18n_path_admin_overview','a:0:{}','',63,6,1,'admin/config/regional/i18n_translation/path','admin/config/regional/i18n_translation','Paths','t','','','a:0:{}',140,'','',-10,'sites/all/modules/i18n/i18n_path/i18n_path.admin.inc'),('admin/config/regional/language','','','user_access','a:1:{i:0;s:20:\"administer languages\";}','drupal_get_form','a:1:{i:0;s:30:\"locale_languages_overview_form\";}','',15,4,0,'','admin/config/regional/language','Languages','t','','','a:0:{}',6,'Configure languages for content and the user interface.','',-10,'modules/locale/locale.admin.inc'),('admin/config/regional/language/add','','','user_access','a:1:{i:0;s:20:\"administer languages\";}','locale_languages_add_screen','a:0:{}','',31,5,1,'admin/config/regional/language','admin/config/regional/language','Add language','t','','','a:0:{}',388,'','',5,'modules/locale/locale.admin.inc'),('admin/config/regional/language/configure','','','user_access','a:1:{i:0;s:20:\"administer languages\";}','drupal_get_form','a:1:{i:0;s:31:\"locale_languages_configure_form\";}','',31,5,1,'admin/config/regional/language','admin/config/regional/language','Detection and selection','t','','','a:0:{}',132,'','',10,'modules/locale/locale.admin.inc'),('admin/config/regional/language/configure/session','','','user_access','a:1:{i:0;s:20:\"administer languages\";}','drupal_get_form','a:1:{i:0;s:38:\"locale_language_providers_session_form\";}','',63,6,0,'','admin/config/regional/language/configure/session','Session language detection configuration','t','','','a:0:{}',4,'','',0,'modules/locale/locale.admin.inc'),('admin/config/regional/language/configure/url','','','user_access','a:1:{i:0;s:20:\"administer languages\";}','drupal_get_form','a:1:{i:0;s:34:\"locale_language_providers_url_form\";}','',63,6,0,'','admin/config/regional/language/configure/url','URL language detection configuration','t','','','a:0:{}',4,'','',0,'modules/locale/locale.admin.inc'),('admin/config/regional/language/delete/%','a:1:{i:5;N;}','','user_access','a:1:{i:0;s:20:\"administer languages\";}','drupal_get_form','a:2:{i:0;s:28:\"locale_languages_delete_form\";i:1;i:5;}','',62,6,0,'','admin/config/regional/language/delete/%','Confirm','t','','','a:0:{}',6,'','',0,'modules/locale/locale.admin.inc'),('admin/config/regional/language/edit/%','a:1:{i:5;N;}','','user_access','a:1:{i:0;s:20:\"administer languages\";}','drupal_get_form','a:2:{i:0;s:26:\"locale_languages_edit_form\";i:1;i:5;}','',62,6,0,'','admin/config/regional/language/edit/%','Edit language','t','','','a:0:{}',6,'','',0,'modules/locale/locale.admin.inc'),('admin/config/regional/language/icons','','','user_access','a:1:{i:0;s:20:\"administer languages\";}','drupal_get_form','a:1:{i:0;s:28:\"languageicons_admin_settings\";}','',31,5,1,'admin/config/regional/language','admin/config/regional/language','Icons','t','','','a:0:{}',132,'','',10,'sites/all/modules/languageicons/languageicons.admin.inc'),('admin/config/regional/language/overview','','','user_access','a:1:{i:0;s:20:\"administer languages\";}','drupal_get_form','a:1:{i:0;s:30:\"locale_languages_overview_form\";}','',31,5,1,'admin/config/regional/language','admin/config/regional/language','List','t','','','a:0:{}',140,'','',0,'modules/locale/locale.admin.inc'),('admin/config/regional/language/update','','','user_access','a:1:{i:0;s:19:\"translate interface\";}','drupal_get_form','a:1:{i:0;s:31:\"l10n_update_admin_settings_form\";}','',31,5,1,'admin/config/regional/language','admin/config/regional/language','Translation updates','t','','','a:0:{}',132,'Automatic update configuration','',20,'sites/all/modules/l10n_update/l10n_update.admin.inc'),('admin/config/regional/settings','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:1:{i:0;s:24:\"system_regional_settings\";}','',15,4,0,'','admin/config/regional/settings','Regional settings','t','','','a:0:{}',6,'Settings for the site\'s default time zone and country.','',-20,'modules/system/system.admin.inc'),('admin/config/regional/translate','','','user_access','a:1:{i:0;s:19:\"translate interface\";}','locale_translate_overview_screen','a:0:{}','',15,4,0,'','admin/config/regional/translate','Translate interface','t','','','a:0:{}',6,'Translate the built in interface and optionally other text.','',-5,'modules/locale/locale.admin.inc'),('admin/config/regional/translate/delete/%','a:1:{i:5;N;}','','user_access','a:1:{i:0;s:19:\"translate interface\";}','locale_translate_delete_page','a:1:{i:0;i:5;}','',62,6,0,'','admin/config/regional/translate/delete/%','Delete string','t','','','a:0:{}',6,'','',0,'modules/locale/locale.admin.inc'),('admin/config/regional/translate/edit/%','a:1:{i:5;N;}','','user_access','a:1:{i:0;s:19:\"translate interface\";}','drupal_get_form','a:2:{i:0;s:38:\"i18n_string_locale_translate_edit_form\";i:1;i:5;}','',62,6,0,'','admin/config/regional/translate/edit/%','Edit string','t','','','a:0:{}',6,'','',0,'sites/all/modules/i18n/i18n_string/i18n_string.pages.inc'),('admin/config/regional/translate/export','','','user_access','a:1:{i:0;s:19:\"translate interface\";}','locale_translate_export_screen','a:0:{}','',31,5,1,'admin/config/regional/translate','admin/config/regional/translate','Export','t','','','a:0:{}',132,'','',30,'modules/locale/locale.admin.inc'),('admin/config/regional/translate/i18n_string','','','user_access','a:1:{i:0;s:19:\"translate interface\";}','drupal_get_form','a:1:{i:0;s:30:\"i18n_string_admin_refresh_form\";}','',31,5,1,'admin/config/regional/translate','admin/config/regional/translate','Strings','t','','','a:0:{}',132,'Refresh user defined strings.','',20,'sites/all/modules/i18n/i18n_string/i18n_string.admin.inc'),('admin/config/regional/translate/import','','','user_access','a:1:{i:0;s:19:\"translate interface\";}','drupal_get_form','a:1:{i:0;s:28:\"locale_translate_import_form\";}','',31,5,1,'admin/config/regional/translate','admin/config/regional/translate','Import','t','','','a:0:{}',132,'','',20,'modules/locale/locale.admin.inc'),('admin/config/regional/translate/overview','','','user_access','a:1:{i:0;s:19:\"translate interface\";}','locale_translate_overview_screen','a:0:{}','',31,5,1,'admin/config/regional/translate','admin/config/regional/translate','Overview','t','','','a:0:{}',140,'','',0,'modules/locale/locale.admin.inc'),('admin/config/regional/translate/translate','','','user_access','a:1:{i:0;s:19:\"translate interface\";}','locale_translate_seek_screen','a:0:{}','',31,5,1,'admin/config/regional/translate','admin/config/regional/translate','Translate','t','','','a:0:{}',132,'','',10,'modules/locale/locale.admin.inc'),('admin/config/regional/translate/update','','','user_access','a:1:{i:0;s:19:\"translate interface\";}','l10n_update_admin_overview','a:0:{}','',31,5,1,'admin/config/regional/translate','admin/config/regional/translate','Update','t','','','a:0:{}',132,'Available updates','',20,'sites/all/modules/l10n_update/l10n_update.admin.inc'),('admin/config/search','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','system_admin_menu_block_page','a:0:{}','',7,3,0,'','admin/config/search','Search and metadata','t','','','a:0:{}',6,'Local site search, metadata and SEO.','left',-10,'modules/system/system.admin.inc'),('admin/config/search/clean-urls','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:1:{i:0;s:25:\"system_clean_url_settings\";}','',15,4,0,'','admin/config/search/clean-urls','Clean URLs','t','','','a:0:{}',6,'Enable or disable clean URLs for your site.','',5,'modules/system/system.admin.inc'),('admin/config/search/clean-urls/check','','','1','a:0:{}','drupal_json_output','a:1:{i:0;a:1:{s:6:\"status\";b:1;}}','',31,5,0,'','admin/config/search/clean-urls/check','Clean URL check','t','','','a:0:{}',0,'','',0,'modules/system/system.admin.inc'),('admin/config/search/path','','','user_access','a:1:{i:0;s:22:\"administer url aliases\";}','path_admin_overview','a:0:{}','',15,4,0,'','admin/config/search/path','URL aliases','t','','','a:0:{}',6,'Change your site\'s URL paths by aliasing them.','',-5,'modules/path/path.admin.inc'),('admin/config/search/path/add','','','user_access','a:1:{i:0;s:22:\"administer url aliases\";}','path_admin_edit','a:0:{}','',31,5,1,'admin/config/search/path','admin/config/search/path','Add alias','t','','','a:0:{}',388,'','',0,'modules/path/path.admin.inc'),('admin/config/search/path/delete/%','a:1:{i:5;s:9:\"path_load\";}','','user_access','a:1:{i:0;s:22:\"administer url aliases\";}','drupal_get_form','a:2:{i:0;s:25:\"path_admin_delete_confirm\";i:1;i:5;}','',62,6,0,'','admin/config/search/path/delete/%','Delete alias','t','','','a:0:{}',6,'','',0,'modules/path/path.admin.inc'),('admin/config/search/path/edit/%','a:1:{i:5;s:9:\"path_load\";}','','user_access','a:1:{i:0;s:22:\"administer url aliases\";}','path_admin_edit','a:1:{i:0;i:5;}','',62,6,0,'','admin/config/search/path/edit/%','Edit alias','t','','','a:0:{}',6,'','',0,'modules/path/path.admin.inc'),('admin/config/search/path/list','','','user_access','a:1:{i:0;s:22:\"administer url aliases\";}','path_admin_overview','a:0:{}','',31,5,1,'admin/config/search/path','admin/config/search/path','List','t','','','a:0:{}',140,'','',-10,'modules/path/path.admin.inc'),('admin/config/services','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','system_admin_menu_block_page','a:0:{}','',7,3,0,'','admin/config/services','Web services','t','','','a:0:{}',6,'Tools related to web services.','right',0,'modules/system/system.admin.inc'),('admin/config/services/gmap','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:1:{i:0;s:19:\"gmap_admin_settings\";}','',15,4,0,'','admin/config/services/gmap','GMap','t','','','a:0:{}',6,'Configure GMap settings','',0,'sites/all/modules/gmap/gmap_settings_ui.inc'),('admin/config/services/gmap_location','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:1:{i:0;s:28:\"gmap_location_admin_settings\";}','',15,4,0,'','admin/config/services/gmap_location','GMap Location','t','','','a:0:{}',6,'Configure GMap Location settings.','',0,''),('admin/config/services/rss-publishing','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:1:{i:0;s:25:\"system_rss_feeds_settings\";}','',15,4,0,'','admin/config/services/rss-publishing','RSS publishing','t','','','a:0:{}',6,'Configure the site description, the number of items per feed and whether feeds should be titles/teasers/full-text.','',0,'modules/system/system.admin.inc'),('admin/config/system','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','system_admin_menu_block_page','a:0:{}','',7,3,0,'','admin/config/system','System','t','','','a:0:{}',6,'General system related configuration.','right',-20,'modules/system/system.admin.inc'),('admin/config/system/actions','','','user_access','a:1:{i:0;s:18:\"administer actions\";}','system_actions_manage','a:0:{}','',15,4,0,'','admin/config/system/actions','Actions','t','','','a:0:{}',6,'Manage the actions defined for your site.','',0,'modules/system/system.admin.inc'),('admin/config/system/actions/configure','','','user_access','a:1:{i:0;s:18:\"administer actions\";}','drupal_get_form','a:1:{i:0;s:24:\"system_actions_configure\";}','',31,5,0,'','admin/config/system/actions/configure','Configure an advanced action','t','','','a:0:{}',4,'','',0,'modules/system/system.admin.inc'),('admin/config/system/actions/delete/%','a:1:{i:5;s:12:\"actions_load\";}','','user_access','a:1:{i:0;s:18:\"administer actions\";}','drupal_get_form','a:2:{i:0;s:26:\"system_actions_delete_form\";i:1;i:5;}','',62,6,0,'','admin/config/system/actions/delete/%','Delete action','t','','','a:0:{}',6,'Delete an action.','',0,'modules/system/system.admin.inc'),('admin/config/system/actions/manage','','','user_access','a:1:{i:0;s:18:\"administer actions\";}','system_actions_manage','a:0:{}','',31,5,1,'admin/config/system/actions','admin/config/system/actions','Manage actions','t','','','a:0:{}',140,'Manage the actions defined for your site.','',-2,'modules/system/system.admin.inc'),('admin/config/system/actions/orphan','','','user_access','a:1:{i:0;s:18:\"administer actions\";}','system_actions_remove_orphans','a:0:{}','',31,5,0,'','admin/config/system/actions/orphan','Remove orphans','t','','','a:0:{}',0,'','',0,'modules/system/system.admin.inc'),('admin/config/system/cron','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:1:{i:0;s:20:\"system_cron_settings\";}','',15,4,0,'','admin/config/system/cron','Cron','t','','','a:0:{}',6,'Manage automatic site maintenance tasks.','',20,'modules/system/system.admin.inc'),('admin/config/system/site-information','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:1:{i:0;s:32:\"system_site_information_settings\";}','',15,4,0,'','admin/config/system/site-information','Site information','t','','','a:0:{}',6,'Change site name, e-mail address, slogan, default front page, and number of posts per page, error pages.','',-20,'modules/system/system.admin.inc'),('admin/config/user-interface','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','system_admin_menu_block_page','a:0:{}','',7,3,0,'','admin/config/user-interface','User interface','t','','','a:0:{}',6,'Tools that enhance the user interface.','right',-15,'modules/system/system.admin.inc'),('admin/config/user-interface/shortcut','','','user_access','a:1:{i:0;s:20:\"administer shortcuts\";}','shortcut_set_admin','a:0:{}','',15,4,0,'','admin/config/user-interface/shortcut','Shortcuts','t','','','a:0:{}',6,'Add and modify shortcut sets.','',0,'modules/shortcut/shortcut.admin.inc'),('admin/config/user-interface/shortcut/%','a:1:{i:4;s:17:\"shortcut_set_load\";}','','shortcut_set_edit_access','a:1:{i:0;i:4;}','drupal_get_form','a:2:{i:0;s:22:\"shortcut_set_customize\";i:1;i:4;}','',30,5,0,'','admin/config/user-interface/shortcut/%','Edit shortcuts','shortcut_set_title_callback','a:1:{i:0;i:4;}','','a:0:{}',6,'','',0,'modules/shortcut/shortcut.admin.inc'),('admin/config/user-interface/shortcut/%/add-link','a:1:{i:4;s:17:\"shortcut_set_load\";}','','shortcut_set_edit_access','a:1:{i:0;i:4;}','drupal_get_form','a:2:{i:0;s:17:\"shortcut_link_add\";i:1;i:4;}','',61,6,1,'admin/config/user-interface/shortcut/%','admin/config/user-interface/shortcut/%','Add shortcut','t','','','a:0:{}',388,'','',0,'modules/shortcut/shortcut.admin.inc'),('admin/config/user-interface/shortcut/%/add-link-inline','a:1:{i:4;s:17:\"shortcut_set_load\";}','','shortcut_set_edit_access','a:1:{i:0;i:4;}','shortcut_link_add_inline','a:1:{i:0;i:4;}','',61,6,0,'','admin/config/user-interface/shortcut/%/add-link-inline','Add shortcut','t','','','a:0:{}',0,'','',0,'modules/shortcut/shortcut.admin.inc'),('admin/config/user-interface/shortcut/%/delete','a:1:{i:4;s:17:\"shortcut_set_load\";}','','shortcut_set_delete_access','a:1:{i:0;i:4;}','drupal_get_form','a:2:{i:0;s:24:\"shortcut_set_delete_form\";i:1;i:4;}','',61,6,0,'','admin/config/user-interface/shortcut/%/delete','Delete shortcut set','t','','','a:0:{}',6,'','',0,'modules/shortcut/shortcut.admin.inc'),('admin/config/user-interface/shortcut/%/edit','a:1:{i:4;s:17:\"shortcut_set_load\";}','','shortcut_set_edit_access','a:1:{i:0;i:4;}','drupal_get_form','a:2:{i:0;s:22:\"shortcut_set_edit_form\";i:1;i:4;}','',61,6,1,'admin/config/user-interface/shortcut/%','admin/config/user-interface/shortcut/%','Edit set name','t','','','a:0:{}',132,'','',10,'modules/shortcut/shortcut.admin.inc'),('admin/config/user-interface/shortcut/%/links','a:1:{i:4;s:17:\"shortcut_set_load\";}','','shortcut_set_edit_access','a:1:{i:0;i:4;}','drupal_get_form','a:2:{i:0;s:22:\"shortcut_set_customize\";i:1;i:4;}','',61,6,1,'admin/config/user-interface/shortcut/%','admin/config/user-interface/shortcut/%','List links','t','','','a:0:{}',140,'','',0,'modules/shortcut/shortcut.admin.inc'),('admin/config/user-interface/shortcut/add-set','','','user_access','a:1:{i:0;s:20:\"administer shortcuts\";}','drupal_get_form','a:1:{i:0;s:21:\"shortcut_set_add_form\";}','',31,5,1,'admin/config/user-interface/shortcut','admin/config/user-interface/shortcut','Add shortcut set','t','','','a:0:{}',388,'','',0,'modules/shortcut/shortcut.admin.inc'),('admin/config/user-interface/shortcut/link/%','a:1:{i:5;s:14:\"menu_link_load\";}','','shortcut_link_access','a:1:{i:0;i:5;}','drupal_get_form','a:2:{i:0;s:18:\"shortcut_link_edit\";i:1;i:5;}','',62,6,0,'','admin/config/user-interface/shortcut/link/%','Edit shortcut','t','','','a:0:{}',6,'','',0,'modules/shortcut/shortcut.admin.inc'),('admin/config/user-interface/shortcut/link/%/delete','a:1:{i:5;s:14:\"menu_link_load\";}','','shortcut_link_access','a:1:{i:0;i:5;}','drupal_get_form','a:2:{i:0;s:20:\"shortcut_link_delete\";i:1;i:5;}','',125,7,0,'','admin/config/user-interface/shortcut/link/%/delete','Delete shortcut','t','','','a:0:{}',6,'','',0,'modules/shortcut/shortcut.admin.inc'),('admin/config/workflow','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','system_admin_menu_block_page','a:0:{}','',7,3,0,'','admin/config/workflow','Workflow','t','','','a:0:{}',6,'Content workflow, editorial workflow tools.','right',5,'modules/system/system.admin.inc'),('admin/content','','','user_access','a:1:{i:0;s:23:\"access content overview\";}','drupal_get_form','a:1:{i:0;s:18:\"node_admin_content\";}','',3,2,0,'','admin/content','Content','t','','','a:0:{}',6,'Administer content and comments.','',-10,'modules/node/node.admin.inc'),('admin/content/comment','','','user_access','a:1:{i:0;s:19:\"administer comments\";}','comment_admin','a:0:{}','',7,3,1,'admin/content','admin/content','Comments','t','','','a:0:{}',134,'List and edit site comments and the comment approval queue.','',0,'modules/comment/comment.admin.inc'),('admin/content/comment/approval','','','user_access','a:1:{i:0;s:19:\"administer comments\";}','comment_admin','a:1:{i:0;s:8:\"approval\";}','',15,4,1,'admin/content/comment','admin/content','Unapproved comments','comment_count_unpublished','','','a:0:{}',132,'','',0,'modules/comment/comment.admin.inc'),('admin/content/comment/new','','','user_access','a:1:{i:0;s:19:\"administer comments\";}','comment_admin','a:0:{}','',15,4,1,'admin/content/comment','admin/content','Published comments','t','','','a:0:{}',140,'','',-10,'modules/comment/comment.admin.inc'),('admin/content/node','','','user_access','a:1:{i:0;s:23:\"access content overview\";}','drupal_get_form','a:1:{i:0;s:18:\"node_admin_content\";}','',7,3,1,'admin/content','admin/content','Content','t','','','a:0:{}',140,'','',-10,'modules/node/node.admin.inc'),('admin/dashboard','','','user_access','a:1:{i:0;s:16:\"access dashboard\";}','dashboard_admin','a:0:{}','',3,2,0,'','admin/dashboard','Dashboard','t','','','a:0:{}',6,'View and customize your dashboard.','',-15,''),('admin/dashboard/block-content/%/%','a:2:{i:3;N;i:4;N;}','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','dashboard_show_block_content','a:2:{i:0;i:3;i:1;i:4;}','',28,5,0,'','admin/dashboard/block-content/%/%','','t','','','a:0:{}',0,'','',0,''),('admin/dashboard/configure','','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','dashboard_admin_blocks','a:0:{}','',7,3,0,'','admin/dashboard/configure','Configure available dashboard blocks','t','','','a:0:{}',4,'Configure which blocks can be shown on the dashboard.','',0,''),('admin/dashboard/customize','','','user_access','a:1:{i:0;s:16:\"access dashboard\";}','dashboard_admin','a:1:{i:0;b:1;}','',7,3,0,'','admin/dashboard/customize','Customize dashboard','t','','','a:0:{}',4,'Customize your dashboard.','',0,''),('admin/dashboard/drawer','','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','dashboard_show_disabled','a:0:{}','',7,3,0,'','admin/dashboard/drawer','','t','','','a:0:{}',0,'','',0,''),('admin/dashboard/update','','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','dashboard_update','a:0:{}','',7,3,0,'','admin/dashboard/update','','t','','','a:0:{}',0,'','',0,''),('admin/help','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_main','a:0:{}','',3,2,0,'','admin/help','Help','t','','','a:0:{}',6,'Reference for usage, configuration, and modules.','',9,'modules/help/help.admin.inc'),('admin/help/block','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/block','block','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/color','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/color','color','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/comment','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/comment','comment','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/contact','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/contact','contact','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/contextual','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/contextual','contextual','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/dashboard','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/dashboard','dashboard','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/dblog','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/dblog','dblog','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/features','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/features','features','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/field','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/field','field','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/field_sql_storage','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/field_sql_storage','field_sql_storage','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/field_ui','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/field_ui','field_ui','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/file','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/file','file','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/filter','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/filter','filter','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/forum','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/forum','forum','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/help','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/help','help','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/i18n','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/i18n','i18n','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/i18n_block','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/i18n_block','i18n_block','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/i18n_forum','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/i18n_forum','i18n_forum','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/i18n_menu','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/i18n_menu','i18n_menu','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/i18n_node','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/i18n_node','i18n_node','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/i18n_redirect','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/i18n_redirect','i18n_redirect','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/i18n_string','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/i18n_string','i18n_string','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/i18n_sync','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/i18n_sync','i18n_sync','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/i18n_taxonomy','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/i18n_taxonomy','i18n_taxonomy','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/image','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/image','image','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/l10n_update','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/l10n_update','l10n_update','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/languageicons','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/languageicons','languageicons','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/libraries','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/libraries','libraries','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/list','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/list','list','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/locale','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/locale','locale','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/location','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/location','location','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/menu','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/menu','menu','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/node','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/node','node','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/number','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/number','number','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/options','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/options','options','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/overlay','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/overlay','overlay','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/path','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/path','path','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/php','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/php','php','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/rdf','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/rdf','rdf','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/shortcut','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/shortcut','shortcut','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/system','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/system','system','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/taxonomy','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/taxonomy','taxonomy','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/text','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/text','text','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/title','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/title','title','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/toolbar','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/toolbar','toolbar','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/translation','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/translation','translation','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/update','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/update','update','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/user','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/user','user','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/views','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/views','views','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/help/views_ui','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','help_page','a:1:{i:0;i:2;}','',7,3,0,'','admin/help/views_ui','views_ui','t','','','a:0:{}',4,'','',0,'modules/help/help.admin.inc'),('admin/index','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','system_admin_index','a:0:{}','',3,2,1,'admin','admin','Index','t','','','a:0:{}',132,'','',-18,'modules/system/system.admin.inc'),('admin/modules','','','user_access','a:1:{i:0;s:18:\"administer modules\";}','drupal_get_form','a:1:{i:0;s:14:\"system_modules\";}','',3,2,0,'','admin/modules','Modules','t','','','a:0:{}',6,'Extend site functionality.','',-2,'modules/system/system.admin.inc'),('admin/modules/install','','','update_manager_access','a:0:{}','drupal_get_form','a:2:{i:0;s:27:\"update_manager_install_form\";i:1;s:6:\"module\";}','',7,3,1,'admin/modules','admin/modules','Install new module','t','','','a:0:{}',388,'','',25,'modules/update/update.manager.inc'),('admin/modules/list','','','user_access','a:1:{i:0;s:18:\"administer modules\";}','drupal_get_form','a:1:{i:0;s:14:\"system_modules\";}','',7,3,1,'admin/modules','admin/modules','List','t','','','a:0:{}',140,'','',0,'modules/system/system.admin.inc'),('admin/modules/list/confirm','','','user_access','a:1:{i:0;s:18:\"administer modules\";}','drupal_get_form','a:1:{i:0;s:14:\"system_modules\";}','',15,4,0,'','admin/modules/list/confirm','List','t','','','a:0:{}',4,'','',0,'modules/system/system.admin.inc'),('admin/modules/uninstall','','','user_access','a:1:{i:0;s:18:\"administer modules\";}','drupal_get_form','a:1:{i:0;s:24:\"system_modules_uninstall\";}','',7,3,1,'admin/modules','admin/modules','Uninstall','t','','','a:0:{}',132,'','',20,'modules/system/system.admin.inc'),('admin/modules/uninstall/confirm','','','user_access','a:1:{i:0;s:18:\"administer modules\";}','drupal_get_form','a:1:{i:0;s:24:\"system_modules_uninstall\";}','',15,4,0,'','admin/modules/uninstall/confirm','Uninstall','t','','','a:0:{}',4,'','',0,'modules/system/system.admin.inc'),('admin/modules/update','','','update_manager_access','a:0:{}','drupal_get_form','a:2:{i:0;s:26:\"update_manager_update_form\";i:1;s:6:\"module\";}','',7,3,1,'admin/modules','admin/modules','Update','t','','','a:0:{}',132,'','',10,'modules/update/update.manager.inc'),('admin/people','','','user_access','a:1:{i:0;s:16:\"administer users\";}','user_admin','a:1:{i:0;s:4:\"list\";}','',3,2,0,'','admin/people','People','t','','','a:0:{}',6,'Manage user accounts, roles, and permissions.','left',-4,'modules/user/user.admin.inc'),('admin/people/create','','','user_access','a:1:{i:0;s:16:\"administer users\";}','user_admin','a:1:{i:0;s:6:\"create\";}','',7,3,1,'admin/people','admin/people','Add user','t','','','a:0:{}',388,'','',0,'modules/user/user.admin.inc'),('admin/people/people','','','user_access','a:1:{i:0;s:16:\"administer users\";}','user_admin','a:1:{i:0;s:4:\"list\";}','',7,3,1,'admin/people','admin/people','List','t','','','a:0:{}',140,'Find and manage people interacting with your site.','',-10,'modules/user/user.admin.inc'),('admin/people/permissions','','','user_access','a:1:{i:0;s:22:\"administer permissions\";}','drupal_get_form','a:1:{i:0;s:22:\"user_admin_permissions\";}','',7,3,1,'admin/people','admin/people','Permissions','t','','','a:0:{}',132,'Determine access to features by selecting permissions for roles.','',0,'modules/user/user.admin.inc'),('admin/people/permissions/list','','','user_access','a:1:{i:0;s:22:\"administer permissions\";}','drupal_get_form','a:1:{i:0;s:22:\"user_admin_permissions\";}','',15,4,1,'admin/people/permissions','admin/people','Permissions','t','','','a:0:{}',140,'Determine access to features by selecting permissions for roles.','',-8,'modules/user/user.admin.inc'),('admin/people/permissions/roles','','','user_access','a:1:{i:0;s:22:\"administer permissions\";}','drupal_get_form','a:1:{i:0;s:16:\"user_admin_roles\";}','',15,4,1,'admin/people/permissions','admin/people','Roles','t','','','a:0:{}',132,'List, edit, or add user roles.','',-5,'modules/user/user.admin.inc'),('admin/people/permissions/roles/delete/%','a:1:{i:5;s:14:\"user_role_load\";}','','user_role_edit_access','a:1:{i:0;i:5;}','drupal_get_form','a:2:{i:0;s:30:\"user_admin_role_delete_confirm\";i:1;i:5;}','',62,6,0,'','admin/people/permissions/roles/delete/%','Delete role','t','','','a:0:{}',6,'','',0,'modules/user/user.admin.inc'),('admin/people/permissions/roles/edit/%','a:1:{i:5;s:14:\"user_role_load\";}','','user_role_edit_access','a:1:{i:0;i:5;}','drupal_get_form','a:2:{i:0;s:15:\"user_admin_role\";i:1;i:5;}','',62,6,0,'','admin/people/permissions/roles/edit/%','Edit role','t','','','a:0:{}',6,'','',0,'modules/user/user.admin.inc'),('admin/reports','','','user_access','a:1:{i:0;s:19:\"access site reports\";}','system_admin_menu_block_page','a:0:{}','',3,2,0,'','admin/reports','Reports','t','','','a:0:{}',6,'View reports, updates, and errors.','left',5,'modules/system/system.admin.inc'),('admin/reports/access-denied','','','user_access','a:1:{i:0;s:19:\"access site reports\";}','dblog_top','a:1:{i:0;s:13:\"access denied\";}','',7,3,0,'','admin/reports/access-denied','Top \'access denied\' errors','t','','','a:0:{}',6,'View \'access denied\' errors (403s).','',0,'modules/dblog/dblog.admin.inc'),('admin/reports/dblog','','','user_access','a:1:{i:0;s:19:\"access site reports\";}','dblog_overview','a:0:{}','',7,3,0,'','admin/reports/dblog','Recent log messages','t','','','a:0:{}',6,'View events that have recently been logged.','',-1,'modules/dblog/dblog.admin.inc'),('admin/reports/event/%','a:1:{i:3;N;}','','user_access','a:1:{i:0;s:19:\"access site reports\";}','dblog_event','a:1:{i:0;i:3;}','',14,4,0,'','admin/reports/event/%','Details','t','','','a:0:{}',6,'','',0,'modules/dblog/dblog.admin.inc'),('admin/reports/fields','','','user_access','a:1:{i:0;s:24:\"administer content types\";}','field_ui_fields_list','a:0:{}','',7,3,0,'','admin/reports/fields','Field list','t','','','a:0:{}',6,'Overview of fields on all entity types.','',0,'modules/field_ui/field_ui.admin.inc'),('admin/reports/fields/list','','','user_access','a:1:{i:0;s:24:\"administer content types\";}','field_ui_fields_list','a:0:{}','',15,4,1,'admin/reports/fields','admin/reports/fields','List','t','','','a:0:{}',140,'','',-10,'modules/field_ui/field_ui.admin.inc'),('admin/reports/fields/views-fields','','','user_access','a:1:{i:0;s:16:\"administer views\";}','views_ui_field_list','a:0:{}','',15,4,1,'admin/reports/fields','admin/reports/fields','Used in views','t','','','a:0:{}',132,'Overview of fields used in all views.','',0,'sites/all/modules/views/includes/admin.inc'),('admin/reports/libraries','','','user_access','a:1:{i:0;s:22:\"access library reports\";}','drupal_get_form','a:1:{i:0;s:24:\"libraries_admin_overview\";}','',7,3,0,'','admin/reports/libraries','Libraries','t','','','a:0:{}',6,'An overview of libraries installed on this site.','',0,'sites/all/modules/libraries/libraries.admin.inc'),('admin/reports/libraries/%','a:1:{i:3;s:17:\"libraries_ui_load\";}','','user_access','a:1:{i:0;s:22:\"access library reports\";}','drupal_get_form','a:2:{i:0;s:35:\"libraries_admin_library_status_form\";i:1;i:3;}','',14,4,0,'','admin/reports/libraries/%','Library status report','t','','','a:0:{}',6,'Status overview for a single library','',0,'sites/all/modules/libraries/libraries.admin.inc'),('admin/reports/page-not-found','','','user_access','a:1:{i:0;s:19:\"access site reports\";}','dblog_top','a:1:{i:0;s:14:\"page not found\";}','',7,3,0,'','admin/reports/page-not-found','Top \'page not found\' errors','t','','','a:0:{}',6,'View \'page not found\' errors (404s).','',0,'modules/dblog/dblog.admin.inc'),('admin/reports/status','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','system_status','a:0:{}','',7,3,0,'','admin/reports/status','Status report','t','','','a:0:{}',6,'Get a status report about your site\'s operation and any detected problems.','',-60,'modules/system/system.admin.inc'),('admin/reports/status/php','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','system_php','a:0:{}','',15,4,0,'','admin/reports/status/php','PHP','t','','','a:0:{}',0,'','',0,'modules/system/system.admin.inc'),('admin/reports/status/rebuild','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','drupal_get_form','a:1:{i:0;s:30:\"node_configure_rebuild_confirm\";}','',15,4,0,'','admin/reports/status/rebuild','Rebuild permissions','t','','','a:0:{}',0,'','',0,'modules/node/node.admin.inc'),('admin/reports/status/run-cron','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','system_run_cron','a:0:{}','',15,4,0,'','admin/reports/status/run-cron','Run cron','t','','','a:0:{}',0,'','',0,'modules/system/system.admin.inc'),('admin/reports/updates','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','update_status','a:0:{}','',7,3,0,'','admin/reports/updates','Available updates','t','','','a:0:{}',6,'Get a status report about available updates for your installed modules and themes.','',-50,'modules/update/update.report.inc'),('admin/reports/updates/check','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','update_manual_status','a:0:{}','',15,4,0,'','admin/reports/updates/check','Manual update check','t','','','a:0:{}',0,'','',0,'modules/update/update.fetch.inc'),('admin/reports/updates/install','','','update_manager_access','a:0:{}','drupal_get_form','a:2:{i:0;s:27:\"update_manager_install_form\";i:1;s:6:\"report\";}','',15,4,1,'admin/reports/updates','admin/reports/updates','Install new module or theme','t','','','a:0:{}',388,'','',25,'modules/update/update.manager.inc'),('admin/reports/updates/list','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','update_status','a:0:{}','',15,4,1,'admin/reports/updates','admin/reports/updates','List','t','','','a:0:{}',140,'','',0,'modules/update/update.report.inc'),('admin/reports/updates/settings','','','user_access','a:1:{i:0;s:29:\"administer site configuration\";}','drupal_get_form','a:1:{i:0;s:15:\"update_settings\";}','',15,4,1,'admin/reports/updates','admin/reports/updates','Settings','t','','','a:0:{}',132,'','',50,'modules/update/update.settings.inc'),('admin/reports/updates/update','','','update_manager_access','a:0:{}','drupal_get_form','a:2:{i:0;s:26:\"update_manager_update_form\";i:1;s:6:\"report\";}','',15,4,1,'admin/reports/updates','admin/reports/updates','Update','t','','','a:0:{}',132,'','',10,'modules/update/update.manager.inc'),('admin/reports/views-plugins','','','user_access','a:1:{i:0;s:16:\"administer views\";}','views_ui_plugin_list','a:0:{}','',7,3,0,'','admin/reports/views-plugins','Views plugins','t','','','a:0:{}',6,'Overview of plugins used in all views.','',0,'sites/all/modules/views/includes/admin.inc'),('admin/structure','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','system_admin_menu_block_page','a:0:{}','',3,2,0,'','admin/structure','Structure','t','','','a:0:{}',6,'Administer blocks, content types, menus, etc.','right',-8,'modules/system/system.admin.inc'),('admin/structure/block','','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','block_admin_display','a:1:{i:0;s:12:\"multipurpose\";}','',7,3,0,'','admin/structure/block','Blocks','t','','','a:0:{}',6,'Configure what block content appears in your site\'s sidebars and other regions.','',0,'modules/block/block.admin.inc'),('admin/structure/block/add','','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','drupal_get_form','a:1:{i:0;s:20:\"block_add_block_form\";}','',15,4,1,'admin/structure/block','admin/structure/block','Add block','t','','','a:0:{}',388,'','',0,'modules/block/block.admin.inc'),('admin/structure/block/demo/alpha_responsive_theme','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":13:{s:8:\"filename\";s:67:\"sites/all/themes/alpha_responsive_theme/alpha_responsive_theme.info\";s:4:\"name\";s:22:\"alpha_responsive_theme\";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:22:\"Alpha Responsive Theme\";s:11:\"description\";s:178:\"Designed & Developed by <a href=http://www.zymphonies.com>Zymphonies</a><br/>Contact us for any kind of Drupal services <a href=mailto:info@zymphonies.com>info@zymphonies.com</a>\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:3:{s:20:\"css/font-awesome.css\";s:60:\"sites/all/themes/alpha_responsive_theme/css/font-awesome.css\";s:13:\"css/style.css\";s:53:\"sites/all/themes/alpha_responsive_theme/css/style.css\";s:13:\"css/media.css\";s:53:\"sites/all/themes/alpha_responsive_theme/css/media.css\";}}s:7:\"scripts\";a:1:{s:12:\"js/custom.js\";s:52:\"sites/all/themes/alpha_responsive_theme/js/custom.js\";}s:7:\"regions\";a:23:{s:6:\"search\";s:13:\"Search widget\";s:9:\"user_menu\";s:16:\"User menu widget\";s:9:\"slideshow\";s:16:\"Slideshow widget\";s:13:\"front_welcome\";s:20:\"Front welcome widget\";s:9:\"top_first\";s:16:\"First top widget\";s:10:\"top_second\";s:17:\"Second top widget\";s:9:\"top_third\";s:16:\"Third top widget\";s:13:\"sidebar_first\";s:13:\"First sidebar\";s:14:\"sidebar_second\";s:14:\"Second sidebar\";s:7:\"content\";s:7:\"Content\";s:10:\"highlights\";s:17:\"Highlights widget\";s:15:\"bottom_widget_1\";s:19:\"Bottom first widget\";s:15:\"bottom_widget_2\";s:20:\"Bottom second widget\";s:15:\"bottom_widget_3\";s:19:\"Bottom third widget\";s:12:\"footer_first\";s:19:\"First bottom widget\";s:13:\"footer_second\";s:20:\"Second bottom widget\";s:12:\"footer_third\";s:19:\"Third bottom widget\";s:12:\"footer_forth\";s:19:\"Forth bottom widget\";s:8:\"page_top\";s:8:\"Page top\";s:11:\"page_bottom\";s:11:\"Page bottom\";s:14:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:4:\"name\";i:2;s:6:\"slogan\";i:3;s:17:\"node_user_picture\";i:4;s:20:\"comment_user_picture\";i:5;s:25:\"comment_user_verification\";i:6;s:7:\"favicon\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:8:\"settings\";a:8:{s:11:\"breadcrumbs\";s:1:\"1\";s:12:\"social_links\";s:1:\"1\";s:11:\"twitter_url\";s:30:\"https://twitter.com/zymphonies\";s:12:\"facebook_url\";s:35:\"https://www.facebook.com/zymphonies\";s:17:\"gplus_profile_url\";s:52:\"https://plus.google.com/u/1/+ZymphoniesTechnologies/\";s:20:\"linkedin_profile_url\";s:43:\"https://www.linkedin.com/company/zymphonies\";s:21:\"pinterest_profile_url\";s:36:\"http://www.pinterest.com/zymphonies/\";s:19:\"youtube_profile_url\";s:22:\"http://www.youtube.com\";}s:7:\"version\";s:7:\"7.x-1.4\";s:7:\"project\";s:22:\"alpha_responsive_theme\";s:9:\"datestamp\";s:10:\"1511889487\";s:10:\"screenshot\";s:54:\"sites/all/themes/alpha_responsive_theme/screenshot.png\";s:3:\"php\";s:5:\"5.2.4\";s:5:\"mtime\";i:1537955055;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}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:3:{s:20:\"css/font-awesome.css\";s:60:\"sites/all/themes/alpha_responsive_theme/css/font-awesome.css\";s:13:\"css/style.css\";s:53:\"sites/all/themes/alpha_responsive_theme/css/style.css\";s:13:\"css/media.css\";s:53:\"sites/all/themes/alpha_responsive_theme/css/media.css\";}}s:7:\"scripts\";a:1:{s:12:\"js/custom.js\";s:52:\"sites/all/themes/alpha_responsive_theme/js/custom.js\";}s:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_demo','a:1:{i:0;s:22:\"alpha_responsive_theme\";}','',31,5,0,'','admin/structure/block/demo/alpha_responsive_theme','Alpha Responsive Theme','t','','_block_custom_theme','a:1:{i:0;s:22:\"alpha_responsive_theme\";}',0,'','',0,'modules/block/block.admin.inc'),('admin/structure/block/demo/bartik','','','_block_themes_access','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:19:{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.59\";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:20:{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:14:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"settings\";a:1:{s:20:\"shortcut_module_link\";s:1:\"0\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";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:1538750217;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}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\";}}','block_admin_demo','a:1:{i:0;s:6:\"bartik\";}','',31,5,0,'','admin/structure/block/demo/bartik','Bartik','t','','_block_custom_theme','a:1:{i:0;s:6:\"bartik\";}',0,'','',0,'modules/block/block.admin.inc'),('admin/structure/block/demo/garland','','','_block_themes_access','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:19:{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.59\";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:\"1524673284\";s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:12:{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:14:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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:1538750217;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}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\";}}','block_admin_demo','a:1:{i:0;s:7:\"garland\";}','',31,5,0,'','admin/structure/block/demo/garland','Garland','t','','_block_custom_theme','a:1:{i:0;s:7:\"garland\";}',0,'','',0,'modules/block/block.admin.inc'),('admin/structure/block/demo/multipurpose','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":13:{s:8:\"filename\";s:47:\"sites/all/themes/multipurpose/multipurpose.info\";s:4:\"name\";s:12:\"multipurpose\";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:18:\"Multipurpose Theme\";s:11:\"description\";s:112:\"Multipurpose Theme is a premium Drupal 7 theme. Developed by <a href=\"http://www.devsaran.com\">Devsaran.com</a>.\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:2:{s:9:\"style.css\";s:39:\"sites/all/themes/multipurpose/style.css\";s:18:\"css/responsive.css\";s:48:\"sites/all/themes/multipurpose/css/responsive.css\";}}s:7:\"scripts\";a:3:{s:12:\"js/retina.js\";s:42:\"sites/all/themes/multipurpose/js/retina.js\";s:13:\"js/plugins.js\";s:43:\"sites/all/themes/multipurpose/js/plugins.js\";s:12:\"js/global.js\";s:42:\"sites/all/themes/multipurpose/js/global.js\";}s:7:\"regions\";a:15:{s:13:\"sidebar_first\";s:13:\"First Sidebar\";s:6:\"header\";s:6:\"Header\";s:13:\"preface_first\";s:13:\"Preface First\";s:14:\"preface_middle\";s:14:\"Preface Middle\";s:12:\"preface_last\";s:12:\"Preface Last\";s:11:\"content_top\";s:11:\"Content Top\";s:7:\"content\";s:7:\"Content\";s:4:\"help\";s:4:\"Help\";s:6:\"footer\";s:6:\"Footer\";s:12:\"footer_first\";s:12:\"First Bottom\";s:13:\"footer_second\";s:13:\"Second Bottom\";s:12:\"footer_third\";s:12:\"Third Bottom\";s:14:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:4:\"name\";i:2;s:6:\"slogan\";i:3;s:17:\"node_user_picture\";i:4;s:20:\"comment_user_picture\";i:5;s:25:\"comment_user_verification\";i:6;s:7:\"favicon\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:8:\"settings\";a:8:{s:17:\"slideshow_display\";s:1:\"1\";s:11:\"breadcrumbs\";s:1:\"1\";s:10:\"image_logo\";s:1:\"0\";s:18:\"socialicon_display\";s:1:\"1\";s:12:\"facebook_url\";s:39:\"http://www.facebook.com/devsaran.drupal\";s:11:\"twitter_url\";s:34:\"http://www.twitter.com/saranquardz\";s:15:\"google_plus_url\";s:49:\"https://plus.google.com/u/0/109064032428497406718\";s:13:\"pinterest_url\";s:20:\"http://pinterest.com\";}s:7:\"version\";s:7:\"7.x-1.0\";s:7:\"project\";s:12:\"multipurpose\";s:9:\"datestamp\";s:10:\"1409600329\";s:10:\"screenshot\";s:44:\"sites/all/themes/multipurpose/screenshot.png\";s:3:\"php\";s:5:\"5.2.4\";s:5:\"mtime\";i:1413461100;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}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:2:{s:9:\"style.css\";s:39:\"sites/all/themes/multipurpose/style.css\";s:18:\"css/responsive.css\";s:48:\"sites/all/themes/multipurpose/css/responsive.css\";}}s:7:\"scripts\";a:3:{s:12:\"js/retina.js\";s:42:\"sites/all/themes/multipurpose/js/retina.js\";s:13:\"js/plugins.js\";s:43:\"sites/all/themes/multipurpose/js/plugins.js\";s:12:\"js/global.js\";s:42:\"sites/all/themes/multipurpose/js/global.js\";}s:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_demo','a:1:{i:0;s:12:\"multipurpose\";}','',31,5,0,'','admin/structure/block/demo/multipurpose','Multipurpose Theme','t','','_block_custom_theme','a:1:{i:0;s:12:\"multipurpose\";}',0,'','',0,'modules/block/block.admin.inc'),('admin/structure/block/demo/seven','','','_block_themes_access','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:19:{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.59\";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:8:{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:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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:\"1524673284\";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:1538750217;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}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\";}}','block_admin_demo','a:1:{i:0;s:5:\"seven\";}','',31,5,0,'','admin/structure/block/demo/seven','Seven','t','','_block_custom_theme','a:1:{i:0;s:5:\"seven\";}',0,'','',0,'modules/block/block.admin.inc'),('admin/structure/block/demo/stark','','','_block_themes_access','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:18:{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.59\";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:\"1524673284\";s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:12:{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:14:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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:1538750217;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}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\";}}','block_admin_demo','a:1:{i:0;s:5:\"stark\";}','',31,5,0,'','admin/structure/block/demo/stark','Stark','t','','_block_custom_theme','a:1:{i:0;s:5:\"stark\";}',0,'','',0,'modules/block/block.admin.inc'),('admin/structure/block/demo/venture_theme','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":13:{s:8:\"filename\";s:49:\"sites/all/themes/venture_theme/venture_theme.info\";s:4:\"name\";s:13:\"venture_theme\";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:13:\"Venture Theme\";s:11:\"description\";s:107:\"Venture Theme is a premium Drupal 7 theme. Developed by <a href=\"http://www.devsaran.com\">Devsaran.com</a>.\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:2:{s:9:\"style.css\";s:40:\"sites/all/themes/venture_theme/style.css\";s:18:\"css/responsive.css\";s:49:\"sites/all/themes/venture_theme/css/responsive.css\";}}s:7:\"scripts\";a:3:{s:12:\"js/retina.js\";s:43:\"sites/all/themes/venture_theme/js/retina.js\";s:13:\"js/plugins.js\";s:44:\"sites/all/themes/venture_theme/js/plugins.js\";s:12:\"js/global.js\";s:43:\"sites/all/themes/venture_theme/js/global.js\";}s:7:\"regions\";a:15:{s:13:\"sidebar_first\";s:13:\"First Sidebar\";s:6:\"header\";s:6:\"Header\";s:13:\"preface_first\";s:13:\"Preface First\";s:14:\"preface_middle\";s:14:\"Preface Middle\";s:12:\"preface_last\";s:12:\"Preface Last\";s:11:\"content_top\";s:11:\"Content Top\";s:7:\"content\";s:7:\"Content\";s:4:\"help\";s:4:\"Help\";s:6:\"footer\";s:6:\"Footer\";s:12:\"footer_first\";s:12:\"First Bottom\";s:13:\"footer_second\";s:13:\"Second Bottom\";s:12:\"footer_third\";s:12:\"Third Bottom\";s:14:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:4:\"name\";i:2;s:6:\"slogan\";i:3;s:17:\"node_user_picture\";i:4;s:20:\"comment_user_picture\";i:5;s:25:\"comment_user_verification\";i:6;s:7:\"favicon\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:8:\"settings\";a:12:{s:17:\"slideshow_display\";s:1:\"1\";s:11:\"breadcrumbs\";s:1:\"1\";s:10:\"image_logo\";s:1:\"0\";s:11:\"slide1_head\";s:14:\"Sample product\";s:11:\"slide2_head\";s:14:\"Sample service\";s:11:\"slide3_head\";s:10:\"Contact us\";s:11:\"slide1_desc\";s:40:\"Sed do eiusmod tempor incididunt elit...\";s:11:\"slide2_desc\";s:42:\"Lorem ipsum dolor sit amet, consectetur...\";s:11:\"slide3_desc\";s:41:\"Duis aute irure dolor in reprehenderit...\";s:10:\"slide1_url\";s:6:\"node/1\";s:10:\"slide2_url\";s:6:\"node/2\";s:10:\"slide3_url\";s:6:\"node/3\";}s:7:\"version\";s:7:\"7.x-1.1\";s:7:\"project\";s:13:\"venture_theme\";s:9:\"datestamp\";s:10:\"1402425233\";s:10:\"screenshot\";s:45:\"sites/all/themes/venture_theme/screenshot.png\";s:3:\"php\";s:5:\"5.2.4\";s:5:\"mtime\";i:1411558912;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}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:2:{s:9:\"style.css\";s:40:\"sites/all/themes/venture_theme/style.css\";s:18:\"css/responsive.css\";s:49:\"sites/all/themes/venture_theme/css/responsive.css\";}}s:7:\"scripts\";a:3:{s:12:\"js/retina.js\";s:43:\"sites/all/themes/venture_theme/js/retina.js\";s:13:\"js/plugins.js\";s:44:\"sites/all/themes/venture_theme/js/plugins.js\";s:12:\"js/global.js\";s:43:\"sites/all/themes/venture_theme/js/global.js\";}s:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_demo','a:1:{i:0;s:13:\"venture_theme\";}','',31,5,0,'','admin/structure/block/demo/venture_theme','Venture Theme','t','','_block_custom_theme','a:1:{i:0;s:13:\"venture_theme\";}',0,'','',0,'modules/block/block.admin.inc'),('admin/structure/block/list/alpha_responsive_theme','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":13:{s:8:\"filename\";s:67:\"sites/all/themes/alpha_responsive_theme/alpha_responsive_theme.info\";s:4:\"name\";s:22:\"alpha_responsive_theme\";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:22:\"Alpha Responsive Theme\";s:11:\"description\";s:178:\"Designed & Developed by <a href=http://www.zymphonies.com>Zymphonies</a><br/>Contact us for any kind of Drupal services <a href=mailto:info@zymphonies.com>info@zymphonies.com</a>\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:3:{s:20:\"css/font-awesome.css\";s:60:\"sites/all/themes/alpha_responsive_theme/css/font-awesome.css\";s:13:\"css/style.css\";s:53:\"sites/all/themes/alpha_responsive_theme/css/style.css\";s:13:\"css/media.css\";s:53:\"sites/all/themes/alpha_responsive_theme/css/media.css\";}}s:7:\"scripts\";a:1:{s:12:\"js/custom.js\";s:52:\"sites/all/themes/alpha_responsive_theme/js/custom.js\";}s:7:\"regions\";a:23:{s:6:\"search\";s:13:\"Search widget\";s:9:\"user_menu\";s:16:\"User menu widget\";s:9:\"slideshow\";s:16:\"Slideshow widget\";s:13:\"front_welcome\";s:20:\"Front welcome widget\";s:9:\"top_first\";s:16:\"First top widget\";s:10:\"top_second\";s:17:\"Second top widget\";s:9:\"top_third\";s:16:\"Third top widget\";s:13:\"sidebar_first\";s:13:\"First sidebar\";s:14:\"sidebar_second\";s:14:\"Second sidebar\";s:7:\"content\";s:7:\"Content\";s:10:\"highlights\";s:17:\"Highlights widget\";s:15:\"bottom_widget_1\";s:19:\"Bottom first widget\";s:15:\"bottom_widget_2\";s:20:\"Bottom second widget\";s:15:\"bottom_widget_3\";s:19:\"Bottom third widget\";s:12:\"footer_first\";s:19:\"First bottom widget\";s:13:\"footer_second\";s:20:\"Second bottom widget\";s:12:\"footer_third\";s:19:\"Third bottom widget\";s:12:\"footer_forth\";s:19:\"Forth bottom widget\";s:8:\"page_top\";s:8:\"Page top\";s:11:\"page_bottom\";s:11:\"Page bottom\";s:14:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:4:\"name\";i:2;s:6:\"slogan\";i:3;s:17:\"node_user_picture\";i:4;s:20:\"comment_user_picture\";i:5;s:25:\"comment_user_verification\";i:6;s:7:\"favicon\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:8:\"settings\";a:8:{s:11:\"breadcrumbs\";s:1:\"1\";s:12:\"social_links\";s:1:\"1\";s:11:\"twitter_url\";s:30:\"https://twitter.com/zymphonies\";s:12:\"facebook_url\";s:35:\"https://www.facebook.com/zymphonies\";s:17:\"gplus_profile_url\";s:52:\"https://plus.google.com/u/1/+ZymphoniesTechnologies/\";s:20:\"linkedin_profile_url\";s:43:\"https://www.linkedin.com/company/zymphonies\";s:21:\"pinterest_profile_url\";s:36:\"http://www.pinterest.com/zymphonies/\";s:19:\"youtube_profile_url\";s:22:\"http://www.youtube.com\";}s:7:\"version\";s:7:\"7.x-1.4\";s:7:\"project\";s:22:\"alpha_responsive_theme\";s:9:\"datestamp\";s:10:\"1511889487\";s:10:\"screenshot\";s:54:\"sites/all/themes/alpha_responsive_theme/screenshot.png\";s:3:\"php\";s:5:\"5.2.4\";s:5:\"mtime\";i:1537955055;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}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:3:{s:20:\"css/font-awesome.css\";s:60:\"sites/all/themes/alpha_responsive_theme/css/font-awesome.css\";s:13:\"css/style.css\";s:53:\"sites/all/themes/alpha_responsive_theme/css/style.css\";s:13:\"css/media.css\";s:53:\"sites/all/themes/alpha_responsive_theme/css/media.css\";}}s:7:\"scripts\";a:1:{s:12:\"js/custom.js\";s:52:\"sites/all/themes/alpha_responsive_theme/js/custom.js\";}s:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_display','a:1:{i:0;s:22:\"alpha_responsive_theme\";}','',31,5,1,'admin/structure/block','admin/structure/block','Alpha Responsive Theme','t','','','a:0:{}',132,'','',0,'modules/block/block.admin.inc'),('admin/structure/block/list/alpha_responsive_theme/add','','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','drupal_get_form','a:1:{i:0;s:20:\"block_add_block_form\";}','',63,6,1,'admin/structure/block/list/alpha_responsive_theme','admin/structure/block','Add block','t','','','a:0:{}',388,'','',0,'modules/block/block.admin.inc'),('admin/structure/block/list/bartik','','','_block_themes_access','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:19:{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.59\";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:20:{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:14:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"settings\";a:1:{s:20:\"shortcut_module_link\";s:1:\"0\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";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:1538750217;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}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\";}}','block_admin_display','a:1:{i:0;s:6:\"bartik\";}','',31,5,1,'admin/structure/block','admin/structure/block','Bartik','t','','','a:0:{}',132,'','',0,'modules/block/block.admin.inc'),('admin/structure/block/list/bartik/add','','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','drupal_get_form','a:1:{i:0;s:20:\"block_add_block_form\";}','',63,6,1,'admin/structure/block/list/bartik','admin/structure/block','Add block','t','','','a:0:{}',388,'','',0,'modules/block/block.admin.inc'),('admin/structure/block/list/garland','','','_block_themes_access','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:19:{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.59\";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:\"1524673284\";s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:12:{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:14:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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:1538750217;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}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\";}}','block_admin_display','a:1:{i:0;s:7:\"garland\";}','',31,5,1,'admin/structure/block','admin/structure/block','Garland','t','','','a:0:{}',132,'','',0,'modules/block/block.admin.inc'),('admin/structure/block/list/garland/add','','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','drupal_get_form','a:1:{i:0;s:20:\"block_add_block_form\";}','',63,6,1,'admin/structure/block/list/garland','admin/structure/block','Add block','t','','','a:0:{}',388,'','',0,'modules/block/block.admin.inc'),('admin/structure/block/list/multipurpose','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":13:{s:8:\"filename\";s:47:\"sites/all/themes/multipurpose/multipurpose.info\";s:4:\"name\";s:12:\"multipurpose\";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:18:\"Multipurpose Theme\";s:11:\"description\";s:112:\"Multipurpose Theme is a premium Drupal 7 theme. Developed by <a href=\"http://www.devsaran.com\">Devsaran.com</a>.\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:2:{s:9:\"style.css\";s:39:\"sites/all/themes/multipurpose/style.css\";s:18:\"css/responsive.css\";s:48:\"sites/all/themes/multipurpose/css/responsive.css\";}}s:7:\"scripts\";a:3:{s:12:\"js/retina.js\";s:42:\"sites/all/themes/multipurpose/js/retina.js\";s:13:\"js/plugins.js\";s:43:\"sites/all/themes/multipurpose/js/plugins.js\";s:12:\"js/global.js\";s:42:\"sites/all/themes/multipurpose/js/global.js\";}s:7:\"regions\";a:15:{s:13:\"sidebar_first\";s:13:\"First Sidebar\";s:6:\"header\";s:6:\"Header\";s:13:\"preface_first\";s:13:\"Preface First\";s:14:\"preface_middle\";s:14:\"Preface Middle\";s:12:\"preface_last\";s:12:\"Preface Last\";s:11:\"content_top\";s:11:\"Content Top\";s:7:\"content\";s:7:\"Content\";s:4:\"help\";s:4:\"Help\";s:6:\"footer\";s:6:\"Footer\";s:12:\"footer_first\";s:12:\"First Bottom\";s:13:\"footer_second\";s:13:\"Second Bottom\";s:12:\"footer_third\";s:12:\"Third Bottom\";s:14:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:4:\"name\";i:2;s:6:\"slogan\";i:3;s:17:\"node_user_picture\";i:4;s:20:\"comment_user_picture\";i:5;s:25:\"comment_user_verification\";i:6;s:7:\"favicon\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:8:\"settings\";a:8:{s:17:\"slideshow_display\";s:1:\"1\";s:11:\"breadcrumbs\";s:1:\"1\";s:10:\"image_logo\";s:1:\"0\";s:18:\"socialicon_display\";s:1:\"1\";s:12:\"facebook_url\";s:39:\"http://www.facebook.com/devsaran.drupal\";s:11:\"twitter_url\";s:34:\"http://www.twitter.com/saranquardz\";s:15:\"google_plus_url\";s:49:\"https://plus.google.com/u/0/109064032428497406718\";s:13:\"pinterest_url\";s:20:\"http://pinterest.com\";}s:7:\"version\";s:7:\"7.x-1.0\";s:7:\"project\";s:12:\"multipurpose\";s:9:\"datestamp\";s:10:\"1409600329\";s:10:\"screenshot\";s:44:\"sites/all/themes/multipurpose/screenshot.png\";s:3:\"php\";s:5:\"5.2.4\";s:5:\"mtime\";i:1413461100;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}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:2:{s:9:\"style.css\";s:39:\"sites/all/themes/multipurpose/style.css\";s:18:\"css/responsive.css\";s:48:\"sites/all/themes/multipurpose/css/responsive.css\";}}s:7:\"scripts\";a:3:{s:12:\"js/retina.js\";s:42:\"sites/all/themes/multipurpose/js/retina.js\";s:13:\"js/plugins.js\";s:43:\"sites/all/themes/multipurpose/js/plugins.js\";s:12:\"js/global.js\";s:42:\"sites/all/themes/multipurpose/js/global.js\";}s:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_display','a:1:{i:0;s:12:\"multipurpose\";}','',31,5,1,'admin/structure/block','admin/structure/block','Multipurpose Theme','t','','','a:0:{}',140,'','',-10,'modules/block/block.admin.inc'),('admin/structure/block/list/seven','','','_block_themes_access','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:19:{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.59\";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:8:{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:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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:\"1524673284\";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:1538750217;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}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\";}}','block_admin_display','a:1:{i:0;s:5:\"seven\";}','',31,5,1,'admin/structure/block','admin/structure/block','Seven','t','','','a:0:{}',132,'','',0,'modules/block/block.admin.inc'),('admin/structure/block/list/seven/add','','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','drupal_get_form','a:1:{i:0;s:20:\"block_add_block_form\";}','',63,6,1,'admin/structure/block/list/seven','admin/structure/block','Add block','t','','','a:0:{}',388,'','',0,'modules/block/block.admin.inc'),('admin/structure/block/list/stark','','','_block_themes_access','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:18:{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.59\";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:\"1524673284\";s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:12:{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:14:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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:1538750217;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}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\";}}','block_admin_display','a:1:{i:0;s:5:\"stark\";}','',31,5,1,'admin/structure/block','admin/structure/block','Stark','t','','','a:0:{}',132,'','',0,'modules/block/block.admin.inc'),('admin/structure/block/list/stark/add','','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','drupal_get_form','a:1:{i:0;s:20:\"block_add_block_form\";}','',63,6,1,'admin/structure/block/list/stark','admin/structure/block','Add block','t','','','a:0:{}',388,'','',0,'modules/block/block.admin.inc'),('admin/structure/block/list/venture_theme','','','_block_themes_access','a:1:{i:0;O:8:\"stdClass\":13:{s:8:\"filename\";s:49:\"sites/all/themes/venture_theme/venture_theme.info\";s:4:\"name\";s:13:\"venture_theme\";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:13:\"Venture Theme\";s:11:\"description\";s:107:\"Venture Theme is a premium Drupal 7 theme. Developed by <a href=\"http://www.devsaran.com\">Devsaran.com</a>.\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:2:{s:9:\"style.css\";s:40:\"sites/all/themes/venture_theme/style.css\";s:18:\"css/responsive.css\";s:49:\"sites/all/themes/venture_theme/css/responsive.css\";}}s:7:\"scripts\";a:3:{s:12:\"js/retina.js\";s:43:\"sites/all/themes/venture_theme/js/retina.js\";s:13:\"js/plugins.js\";s:44:\"sites/all/themes/venture_theme/js/plugins.js\";s:12:\"js/global.js\";s:43:\"sites/all/themes/venture_theme/js/global.js\";}s:7:\"regions\";a:15:{s:13:\"sidebar_first\";s:13:\"First Sidebar\";s:6:\"header\";s:6:\"Header\";s:13:\"preface_first\";s:13:\"Preface First\";s:14:\"preface_middle\";s:14:\"Preface Middle\";s:12:\"preface_last\";s:12:\"Preface Last\";s:11:\"content_top\";s:11:\"Content Top\";s:7:\"content\";s:7:\"Content\";s:4:\"help\";s:4:\"Help\";s:6:\"footer\";s:6:\"Footer\";s:12:\"footer_first\";s:12:\"First Bottom\";s:13:\"footer_second\";s:13:\"Second Bottom\";s:12:\"footer_third\";s:12:\"Third Bottom\";s:14:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:4:\"name\";i:2;s:6:\"slogan\";i:3;s:17:\"node_user_picture\";i:4;s:20:\"comment_user_picture\";i:5;s:25:\"comment_user_verification\";i:6;s:7:\"favicon\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:8:\"settings\";a:12:{s:17:\"slideshow_display\";s:1:\"1\";s:11:\"breadcrumbs\";s:1:\"1\";s:10:\"image_logo\";s:1:\"0\";s:11:\"slide1_head\";s:14:\"Sample product\";s:11:\"slide2_head\";s:14:\"Sample service\";s:11:\"slide3_head\";s:10:\"Contact us\";s:11:\"slide1_desc\";s:40:\"Sed do eiusmod tempor incididunt elit...\";s:11:\"slide2_desc\";s:42:\"Lorem ipsum dolor sit amet, consectetur...\";s:11:\"slide3_desc\";s:41:\"Duis aute irure dolor in reprehenderit...\";s:10:\"slide1_url\";s:6:\"node/1\";s:10:\"slide2_url\";s:6:\"node/2\";s:10:\"slide3_url\";s:6:\"node/3\";}s:7:\"version\";s:7:\"7.x-1.1\";s:7:\"project\";s:13:\"venture_theme\";s:9:\"datestamp\";s:10:\"1402425233\";s:10:\"screenshot\";s:45:\"sites/all/themes/venture_theme/screenshot.png\";s:3:\"php\";s:5:\"5.2.4\";s:5:\"mtime\";i:1411558912;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}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:2:{s:9:\"style.css\";s:40:\"sites/all/themes/venture_theme/style.css\";s:18:\"css/responsive.css\";s:49:\"sites/all/themes/venture_theme/css/responsive.css\";}}s:7:\"scripts\";a:3:{s:12:\"js/retina.js\";s:43:\"sites/all/themes/venture_theme/js/retina.js\";s:13:\"js/plugins.js\";s:44:\"sites/all/themes/venture_theme/js/plugins.js\";s:12:\"js/global.js\";s:43:\"sites/all/themes/venture_theme/js/global.js\";}s:6:\"engine\";s:11:\"phptemplate\";}}','block_admin_display','a:1:{i:0;s:13:\"venture_theme\";}','',31,5,1,'admin/structure/block','admin/structure/block','Venture Theme','t','','','a:0:{}',132,'','',0,'modules/block/block.admin.inc'),('admin/structure/block/list/venture_theme/add','','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','drupal_get_form','a:1:{i:0;s:20:\"block_add_block_form\";}','',63,6,1,'admin/structure/block/list/venture_theme','admin/structure/block','Add block','t','','','a:0:{}',388,'','',0,'modules/block/block.admin.inc'),('admin/structure/block/manage/%/%','a:2:{i:4;N;i:5;N;}','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','drupal_get_form','a:3:{i:0;s:21:\"block_admin_configure\";i:1;i:4;i:2;i:5;}','',60,6,0,'','admin/structure/block/manage/%/%','Configure block','t','','','a:0:{}',6,'','',0,'modules/block/block.admin.inc'),('admin/structure/block/manage/%/%/configure','a:2:{i:4;N;i:5;N;}','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','drupal_get_form','a:3:{i:0;s:21:\"block_admin_configure\";i:1;i:4;i:2;i:5;}','',121,7,3,'admin/structure/block/manage/%/%','admin/structure/block/manage/%/%','Configure','t','','','a:0:{}',140,'','',-100,'modules/block/block.admin.inc'),('admin/structure/block/manage/%/%/delete','a:2:{i:4;N;i:5;N;}','','user_access','a:1:{i:0;s:17:\"administer blocks\";}','drupal_get_form','a:3:{i:0;s:25:\"block_custom_block_delete\";i:1;i:4;i:2;i:5;}','',121,7,0,'','admin/structure/block/manage/%/%/delete','Delete block','t','','','a:0:{}',0,'','',0,'modules/block/block.admin.inc'),('admin/structure/block/manage/%/%/translate','a:2:{i:4;N;i:5;N;}','','i18n_block_translate_tab_access','a:2:{i:0;i:4;i:1;i:5;}','i18n_block_translate_tab_page','a:2:{i:0;i:4;i:1;i:5;}','',121,7,3,'admin/structure/block/manage/%/%','admin/structure/block/manage/%/%','Translate','t','','','a:0:{}',132,'','',10,''),('admin/structure/block/manage/%/%/translate/%','a:3:{i:4;N;i:5;N;i:7;s:18:\"i18n_language_load\";}','','i18n_block_translate_tab_access','a:2:{i:0;i:4;i:1;i:5;}','i18n_block_translate_tab_page','a:3:{i:0;i:4;i:1;i:5;i:2;i:7;}','',242,8,0,'','admin/structure/block/manage/%/%/translate/%','Translate','t','','','a:0:{}',0,'','',10,''),('admin/structure/contact','','','user_access','a:1:{i:0;s:24:\"administer contact forms\";}','contact_category_list','a:0:{}','',7,3,0,'','admin/structure/contact','Contact form','t','','','a:0:{}',6,'Create a system contact form and set up categories for the form to use.','',0,'modules/contact/contact.admin.inc'),('admin/structure/contact/add','','','user_access','a:1:{i:0;s:24:\"administer contact forms\";}','drupal_get_form','a:1:{i:0;s:26:\"contact_category_edit_form\";}','',15,4,1,'admin/structure/contact','admin/structure/contact','Add category','t','','','a:0:{}',388,'','',1,'modules/contact/contact.admin.inc'),('admin/structure/contact/delete/%','a:1:{i:4;s:12:\"contact_load\";}','','user_access','a:1:{i:0;s:24:\"administer contact forms\";}','drupal_get_form','a:2:{i:0;s:28:\"contact_category_delete_form\";i:1;i:4;}','',30,5,0,'','admin/structure/contact/delete/%','Delete contact','t','','','a:0:{}',6,'','',0,'modules/contact/contact.admin.inc'),('admin/structure/contact/edit/%','a:1:{i:4;s:12:\"contact_load\";}','','user_access','a:1:{i:0;s:24:\"administer contact forms\";}','drupal_get_form','a:2:{i:0;s:26:\"contact_category_edit_form\";i:1;i:4;}','',30,5,0,'','admin/structure/contact/edit/%','Edit contact category','t','','','a:0:{}',6,'','',0,'modules/contact/contact.admin.inc'),('admin/structure/contact/edit/%/edit','a:1:{i:4;s:12:\"contact_load\";}','','user_access','a:1:{i:0;s:24:\"administer contact forms\";}','drupal_get_form','a:2:{i:0;s:26:\"contact_category_edit_form\";i:1;i:4;}','',61,6,1,'admin/structure/contact/edit/%','admin/structure/contact/edit/%','Edit','t','','','a:0:{}',140,'','',-100,'modules/contact/contact.admin.inc'),('admin/structure/contact/edit/%/translate','a:1:{i:4;s:12:\"contact_load\";}','','i18n_object_translate_access','a:2:{i:0;s:16:\"contact_category\";i:1;i:4;}','i18n_page_translate_localize','a:2:{i:0;s:16:\"contact_category\";i:1;i:4;}','',61,6,1,'admin/structure/contact/edit/%','admin/structure/contact/edit/%','Translate','t','','','a:0:{}',132,'','',10,'sites/all/modules/i18n/i18n.pages.inc'),('admin/structure/contact/edit/%/translate/%','a:2:{i:4;s:12:\"contact_load\";i:6;s:18:\"i18n_language_load\";}','','i18n_object_translate_access','a:2:{i:0;s:16:\"contact_category\";i:1;i:4;}','i18n_page_translate_localize','a:3:{i:0;s:16:\"contact_category\";i:1;i:4;i:2;i:6;}','',122,7,0,'','admin/structure/contact/edit/%/translate/%','Translate','t','','','a:0:{}',0,'','',0,'sites/all/modules/i18n/i18n.pages.inc'),('admin/structure/features','','','user_access','a:1:{i:0;s:15:\"manage features\";}','drupal_get_form','a:1:{i:0;s:19:\"features_admin_form\";}','',7,3,0,'','admin/structure/features','Features','t','','','a:0:{}',6,'Manage features.','',0,'sites/all/modules/features/features.admin.inc'),('admin/structure/features/%','a:1:{i:3;a:1:{s:12:\"feature_load\";a:1:{i:0;b:1;}}}','','user_access','a:1:{i:0;s:19:\"administer features\";}','drupal_get_form','a:2:{i:0;s:25:\"features_admin_components\";i:1;i:3;}','',14,4,0,'','admin/structure/features/%','','features_get_feature_title','a:1:{i:0;i:3;}','','a:0:{}',0,'Display components of a feature.','',0,'sites/all/modules/features/features.admin.inc'),('admin/structure/features/%/lock','a:1:{i:3;a:1:{s:12:\"feature_load\";a:1:{i:0;b:1;}}}','','user_access','a:1:{i:0;s:15:\"manage features\";}','features_admin_lock','a:3:{i:0;i:3;i:1;i:5;i:2;i:6;}','',29,5,0,'','admin/structure/features/%/lock','Lock','t','','','a:0:{}',0,'Lock a feature or components.','',0,'sites/all/modules/features/features.admin.inc'),('admin/structure/features/%/recreate','a:1:{i:3;a:1:{s:12:\"feature_load\";a:1:{i:0;b:1;}}}','','user_access','a:1:{i:0;s:19:\"administer features\";}','drupal_get_form','a:2:{i:0;s:20:\"features_export_form\";i:1;i:3;}','',29,5,1,'admin/structure/features/%','admin/structure/features/%','Recreate','t','','','a:0:{}',132,'Recreate an existing feature.','',11,'sites/all/modules/features/features.admin.inc'),('admin/structure/features/%/status','a:1:{i:3;a:1:{s:12:\"feature_load\";a:1:{i:0;b:1;}}}','','user_access','a:1:{i:0;s:19:\"administer features\";}','features_feature_status','a:1:{i:0;i:3;}','',29,5,0,'','admin/structure/features/%/status','Status','t','','','a:0:{}',0,'Javascript status call back.','',0,'sites/all/modules/features/features.admin.inc'),('admin/structure/features/%/view','a:1:{i:3;a:1:{s:12:\"feature_load\";a:1:{i:0;b:1;}}}','','user_access','a:1:{i:0;s:19:\"administer features\";}','drupal_get_form','a:2:{i:0;s:25:\"features_admin_components\";i:1;i:3;}','',29,5,1,'admin/structure/features/%','admin/structure/features/%','View','t','','','a:0:{}',140,'Display components of a feature.','',-10,'sites/all/modules/features/features.admin.inc'),('admin/structure/features/cleanup','','','user_access','a:1:{i:0;s:15:\"manage features\";}','features_cleanup','a:0:{}','',15,4,0,'','admin/structure/features/cleanup','Cleanup','t','','','a:0:{}',0,'Clear cache after enabling/disabling a feature.','',1,'sites/all/modules/features/features.admin.inc'),('admin/structure/features/create','','','user_access','a:1:{i:0;s:19:\"administer features\";}','drupal_get_form','a:1:{i:0;s:20:\"features_export_form\";}','',15,4,1,'admin/structure/features','admin/structure/features','Create feature','t','','','a:0:{}',132,'Create a new feature.','',10,'sites/all/modules/features/features.admin.inc'),('admin/structure/features/manage','','','user_access','a:1:{i:0;s:15:\"manage features\";}','drupal_get_form','a:1:{i:0;s:19:\"features_admin_form\";}','',15,4,1,'admin/structure/features','admin/structure/features','Manage','t','','','a:0:{}',140,'Enable and disable features.','',0,'sites/all/modules/features/features.admin.inc'),('admin/structure/features/settings','','','user_access','a:1:{i:0;s:19:\"administer features\";}','drupal_get_form','a:1:{i:0;s:22:\"features_settings_form\";}','',15,4,1,'admin/structure/features','admin/structure/features','Settings','t','','','a:0:{}',132,'Adjust settings for using features module.','',11,'sites/all/modules/features/features.admin.inc'),('admin/structure/forum','','','user_access','a:1:{i:0;s:17:\"administer forums\";}','drupal_get_form','a:1:{i:0;s:14:\"forum_overview\";}','',7,3,0,'','admin/structure/forum','Forums','t','','','a:0:{}',6,'Control forum hierarchy settings.','',0,'modules/forum/forum.admin.inc'),('admin/structure/forum/add/container','','','user_access','a:1:{i:0;s:17:\"administer forums\";}','forum_form_main','a:1:{i:0;s:9:\"container\";}','',31,5,1,'admin/structure/forum','admin/structure/forum','Add container','t','','','a:0:{}',388,'','',0,'modules/forum/forum.admin.inc'),('admin/structure/forum/add/forum','','','user_access','a:1:{i:0;s:17:\"administer forums\";}','forum_form_main','a:1:{i:0;s:5:\"forum\";}','',31,5,1,'admin/structure/forum','admin/structure/forum','Add forum','t','','','a:0:{}',388,'','',0,'modules/forum/forum.admin.inc'),('admin/structure/forum/edit/container/%','a:1:{i:5;s:18:\"taxonomy_term_load\";}','','user_access','a:1:{i:0;s:17:\"administer forums\";}','forum_form_main','a:2:{i:0;s:9:\"container\";i:1;i:5;}','',62,6,0,'','admin/structure/forum/edit/container/%','Edit container','t','','','a:0:{}',6,'','',0,'modules/forum/forum.admin.inc'),('admin/structure/forum/edit/forum/%','a:1:{i:5;s:18:\"taxonomy_term_load\";}','','user_access','a:1:{i:0;s:17:\"administer forums\";}','forum_form_main','a:2:{i:0;s:5:\"forum\";i:1;i:5;}','',62,6,0,'','admin/structure/forum/edit/forum/%','Edit forum','t','','','a:0:{}',6,'','',0,'modules/forum/forum.admin.inc'),('admin/structure/forum/list','','','user_access','a:1:{i:0;s:17:\"administer forums\";}','drupal_get_form','a:1:{i:0;s:14:\"forum_overview\";}','',15,4,1,'admin/structure/forum','admin/structure/forum','List','t','','','a:0:{}',140,'','',-10,'modules/forum/forum.admin.inc'),('admin/structure/forum/settings','','','user_access','a:1:{i:0;s:17:\"administer forums\";}','drupal_get_form','a:1:{i:0;s:20:\"forum_admin_settings\";}','',15,4,1,'admin/structure/forum','admin/structure/forum','Settings','t','','','a:0:{}',132,'','',5,'modules/forum/forum.admin.inc'),('admin/structure/menu','','','user_access','a:1:{i:0;s:15:\"administer menu\";}','menu_overview_page','a:0:{}','',7,3,0,'','admin/structure/menu','Menus','t','','','a:0:{}',6,'Add new menus to your site, edit existing menus, and rename and reorganize menu links.','',0,'modules/menu/menu.admin.inc'),('admin/structure/menu/add','','','user_access','a:1:{i:0;s:15:\"administer menu\";}','drupal_get_form','a:2:{i:0;s:14:\"menu_edit_menu\";i:1;s:3:\"add\";}','',15,4,1,'admin/structure/menu','admin/structure/menu','Add menu','t','','','a:0:{}',388,'','',0,'modules/menu/menu.admin.inc'),('admin/structure/menu/item/%','a:1:{i:4;s:14:\"menu_link_load\";}','','user_access','a:1:{i:0;s:15:\"administer menu\";}','drupal_get_form','a:4:{i:0;s:14:\"menu_edit_item\";i:1;s:4:\"edit\";i:2;i:4;i:3;N;}','',30,5,0,'','admin/structure/menu/item/%','Edit menu link','t','','','a:0:{}',0,'','',0,'modules/menu/menu.admin.inc'),('admin/structure/menu/item/%/delete','a:1:{i:4;s:14:\"menu_link_load\";}','','user_access','a:1:{i:0;s:15:\"administer menu\";}','menu_item_delete_page','a:1:{i:0;i:4;}','',61,6,0,'','admin/structure/menu/item/%/delete','Delete menu link','t','','','a:0:{}',6,'','',0,'modules/menu/menu.admin.inc'),('admin/structure/menu/item/%/edit','a:1:{i:4;s:14:\"menu_link_load\";}','','user_access','a:1:{i:0;s:15:\"administer menu\";}','drupal_get_form','a:4:{i:0;s:14:\"menu_edit_item\";i:1;s:4:\"edit\";i:2;i:4;i:3;N;}','',61,6,1,'admin/structure/menu/item/%','admin/structure/menu/item/%','Edit menu link','t','','','a:0:{}',140,'','',0,'modules/menu/menu.admin.inc'),('admin/structure/menu/item/%/reset','a:1:{i:4;s:14:\"menu_link_load\";}','','user_access','a:1:{i:0;s:15:\"administer menu\";}','drupal_get_form','a:2:{i:0;s:23:\"menu_reset_item_confirm\";i:1;i:4;}','',61,6,0,'','admin/structure/menu/item/%/reset','Reset menu link','t','','','a:0:{}',6,'','',0,'modules/menu/menu.admin.inc'),('admin/structure/menu/item/%/translate','a:1:{i:4;s:14:\"menu_link_load\";}','','i18n_object_translate_access','a:2:{i:0;s:9:\"menu_link\";i:1;i:4;}','i18n_page_translate_tab','a:2:{i:0;s:9:\"menu_link\";i:1;i:4;}','',61,6,1,'admin/structure/menu/item/%','admin/structure/menu/item/%','Translate','t','','','a:0:{}',132,'','',10,'sites/all/modules/i18n/i18n.pages.inc'),('admin/structure/menu/item/%/translate/%','a:2:{i:4;s:14:\"menu_link_load\";i:6;s:18:\"i18n_language_load\";}','','i18n_object_translate_access','a:2:{i:0;s:9:\"menu_link\";i:1;i:4;}','i18n_page_translate_tab','a:3:{i:0;s:9:\"menu_link\";i:1;i:4;i:2;i:6;}','',122,7,0,'','admin/structure/menu/item/%/translate/%','Translate','t','','','a:0:{}',0,'','',0,'sites/all/modules/i18n/i18n.pages.inc'),('admin/structure/menu/list','','','user_access','a:1:{i:0;s:15:\"administer menu\";}','menu_overview_page','a:0:{}','',15,4,1,'admin/structure/menu','admin/structure/menu','List menus','t','','','a:0:{}',140,'','',-10,'modules/menu/menu.admin.inc'),('admin/structure/menu/manage/%','a:1:{i:4;s:9:\"menu_load\";}','','user_access','a:1:{i:0;s:15:\"administer menu\";}','drupal_get_form','a:2:{i:0;s:18:\"menu_overview_form\";i:1;i:4;}','',30,5,0,'','admin/structure/menu/manage/%','Customize menu','i18n_menu_menu_overview_title','a:1:{i:0;i:4;}','','a:0:{}',6,'','',0,'modules/menu/menu.admin.inc'),('admin/structure/menu/manage/%/add','a:1:{i:4;s:9:\"menu_load\";}','','user_access','a:1:{i:0;s:15:\"administer menu\";}','drupal_get_form','a:4:{i:0;s:14:\"menu_edit_item\";i:1;s:3:\"add\";i:2;N;i:3;i:4;}','',61,6,1,'admin/structure/menu/manage/%','admin/structure/menu/manage/%','Add link','t','','','a:0:{}',388,'','',0,'modules/menu/menu.admin.inc'),('admin/structure/menu/manage/%/delete','a:1:{i:4;s:9:\"menu_load\";}','','user_access','a:1:{i:0;s:15:\"administer menu\";}','menu_delete_menu_page','a:1:{i:0;i:4;}','',61,6,0,'','admin/structure/menu/manage/%/delete','Delete menu','t','','','a:0:{}',6,'','',0,'modules/menu/menu.admin.inc'),('admin/structure/menu/manage/%/edit','a:1:{i:4;s:9:\"menu_load\";}','','user_access','a:1:{i:0;s:15:\"administer menu\";}','drupal_get_form','a:3:{i:0;s:14:\"menu_edit_menu\";i:1;s:4:\"edit\";i:2;i:4;}','',61,6,3,'admin/structure/menu/manage/%','admin/structure/menu/manage/%','Edit menu','t','','','a:0:{}',132,'','',0,'modules/menu/menu.admin.inc'),('admin/structure/menu/manage/%/list','a:1:{i:4;s:9:\"menu_load\";}','','user_access','a:1:{i:0;s:15:\"administer menu\";}','drupal_get_form','a:2:{i:0;s:18:\"menu_overview_form\";i:1;i:4;}','',61,6,3,'admin/structure/menu/manage/%','admin/structure/menu/manage/%','List links','t','','','a:0:{}',140,'','',-10,'modules/menu/menu.admin.inc'),('admin/structure/menu/manage/%/translate','a:1:{i:4;s:9:\"menu_load\";}','','i18n_object_translate_access','a:2:{i:0;s:4:\"menu\";i:1;i:4;}','i18n_page_translate_localize','a:2:{i:0;s:4:\"menu\";i:1;i:4;}','',61,6,1,'admin/structure/menu/manage/%','admin/structure/menu/manage/%','Translate','t','','','a:0:{}',132,'','',10,'sites/all/modules/i18n/i18n.pages.inc'),('admin/structure/menu/manage/%/translate/%','a:2:{i:4;s:9:\"menu_load\";i:6;s:18:\"i18n_language_load\";}','','i18n_object_translate_access','a:2:{i:0;s:4:\"menu\";i:1;i:4;}','i18n_page_translate_localize','a:3:{i:0;s:4:\"menu\";i:1;i:4;i:2;i:6;}','',122,7,0,'','admin/structure/menu/manage/%/translate/%','Translate','t','','','a:0:{}',0,'','',0,'sites/all/modules/i18n/i18n.pages.inc'),('admin/structure/menu/manage/translation','','','user_access','a:1:{i:0;s:15:\"administer menu\";}','i18n_translation_set_list_manage','a:1:{i:0;s:9:\"menu_link\";}','',31,5,1,'admin/structure/menu','admin/structure/menu','Translation sets','t','','','a:0:{}',132,'','',10,''),('admin/structure/menu/manage/translation/add','','','user_access','a:1:{i:0;s:15:\"administer menu\";}','drupal_get_form','a:1:{i:0;s:26:\"i18n_menu_translation_form\";}','',63,6,1,'admin/structure/menu/manage/translation','admin/structure/menu','Add translation','t','','','a:0:{}',388,'','',0,'sites/all/modules/i18n/i18n_menu/i18n_menu.admin.inc'),('admin/structure/menu/manage/translation/delete/%','a:1:{i:6;s:26:\"i18n_menu_translation_load\";}','','user_access','a:1:{i:0;s:15:\"administer menu\";}','drupal_get_form','a:2:{i:0;s:35:\"i18n_translation_set_delete_confirm\";i:1;i:6;}','',126,7,0,'','admin/structure/menu/manage/translation/delete/%','Delete translation','t','','','a:0:{}',0,'','',0,''),('admin/structure/menu/manage/translation/edit/%','a:1:{i:6;s:26:\"i18n_menu_translation_load\";}','','user_access','a:1:{i:0;s:15:\"administer menu\";}','drupal_get_form','a:2:{i:0;s:26:\"i18n_menu_translation_form\";i:1;i:6;}','',126,7,0,'','admin/structure/menu/manage/translation/edit/%','Edit translation','t','','','a:0:{}',0,'','',0,'sites/all/modules/i18n/i18n_menu/i18n_menu.admin.inc'),('admin/structure/menu/parents','','','user_access','a:1:{i:0;s:15:\"administer menu\";}','menu_parent_options_js','a:0:{}','',15,4,0,'','admin/structure/menu/parents','Parent menu items','t','','','a:0:{}',0,'','',0,''),('admin/structure/menu/settings','','','user_access','a:1:{i:0;s:15:\"administer menu\";}','drupal_get_form','a:1:{i:0;s:14:\"menu_configure\";}','',15,4,1,'admin/structure/menu','admin/structure/menu','Settings','t','','','a:0:{}',132,'','',5,'modules/menu/menu.admin.inc'),('admin/structure/taxonomy','','','user_access','a:1:{i:0;s:19:\"administer taxonomy\";}','drupal_get_form','a:1:{i:0;s:30:\"taxonomy_overview_vocabularies\";}','',7,3,0,'','admin/structure/taxonomy','Taxonomy','t','','','a:0:{}',6,'Manage tagging, categorization, and classification of your content.','',0,'modules/taxonomy/taxonomy.admin.inc'),('admin/structure/taxonomy/%','a:1:{i:3;s:37:\"taxonomy_vocabulary_machine_name_load\";}','','user_access','a:1:{i:0;s:19:\"administer taxonomy\";}','drupal_get_form','a:2:{i:0;s:23:\"taxonomy_overview_terms\";i:1;i:3;}','',14,4,0,'','admin/structure/taxonomy/%','','entity_label','a:2:{i:0;s:19:\"taxonomy_vocabulary\";i:1;i:3;}','','a:0:{}',6,'','',0,'modules/taxonomy/taxonomy.admin.inc'),('admin/structure/taxonomy/%/add','a:1:{i:3;s:37:\"taxonomy_vocabulary_machine_name_load\";}','','user_access','a:1:{i:0;s:19:\"administer taxonomy\";}','drupal_get_form','a:3:{i:0;s:18:\"taxonomy_form_term\";i:1;a:0:{}i:2;i:3;}','',29,5,1,'admin/structure/taxonomy/%','admin/structure/taxonomy/%','Add term','t','','','a:0:{}',388,'','',0,'modules/taxonomy/taxonomy.admin.inc'),('admin/structure/taxonomy/%/display','a:1:{i:3;s:37:\"taxonomy_vocabulary_machine_name_load\";}','','field_ui_admin_access','a:2:{i:0;s:11:\"user_access\";i:1;a:1:{i:0;s:19:\"administer taxonomy\";}}','drupal_get_form','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\";}','',29,5,1,'admin/structure/taxonomy/%','admin/structure/taxonomy/%','Manage display','t','','','a:0:{}',132,'','',2,'modules/field_ui/field_ui.admin.inc'),('admin/structure/taxonomy/%/display/default','a:1:{i:3;s:37:\"taxonomy_vocabulary_machine_name_load\";}','','_field_ui_view_mode_menu_access','a:6:{i:0;s:13:\"taxonomy_term\";i:1;i:3;i:2;s:7:\"default\";i:3;s:21:\"field_ui_admin_access\";i:4;s:11:\"user_access\";i:5;a:1:{i:0;s:19:\"administer taxonomy\";}}','drupal_get_form','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\";}','',59,6,1,'admin/structure/taxonomy/%/display','admin/structure/taxonomy/%','Default','t','','','a:0:{}',140,'','',-10,'modules/field_ui/field_ui.admin.inc'),('admin/structure/taxonomy/%/display/full','a:1:{i:3;s:37:\"taxonomy_vocabulary_machine_name_load\";}','','_field_ui_view_mode_menu_access','a:6:{i:0;s:13:\"taxonomy_term\";i:1;i:3;i:2;s:4:\"full\";i:3;s:21:\"field_ui_admin_access\";i:4;s:11:\"user_access\";i:5;a:1:{i:0;s:19:\"administer taxonomy\";}}','drupal_get_form','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\";}','',59,6,1,'admin/structure/taxonomy/%/display','admin/structure/taxonomy/%','Taxonomy term page','t','','','a:0:{}',132,'','',0,'modules/field_ui/field_ui.admin.inc'),('admin/structure/taxonomy/%/edit','a:1:{i:3;s:37:\"taxonomy_vocabulary_machine_name_load\";}','','user_access','a:1:{i:0;s:19:\"administer taxonomy\";}','drupal_get_form','a:2:{i:0;s:24:\"taxonomy_form_vocabulary\";i:1;i:3;}','',29,5,1,'admin/structure/taxonomy/%','admin/structure/taxonomy/%','Edit','t','','','a:0:{}',132,'','',-10,'modules/taxonomy/taxonomy.admin.inc'),('admin/structure/taxonomy/%/fields','a:1:{i:3;s:37:\"taxonomy_vocabulary_machine_name_load\";}','','field_ui_admin_access','a:2:{i:0;s:11:\"user_access\";i:1;a:1:{i:0;s:19:\"administer taxonomy\";}}','drupal_get_form','a:3:{i:0;s:28:\"field_ui_field_overview_form\";i:1;s:13:\"taxonomy_term\";i:2;i:3;}','',29,5,1,'admin/structure/taxonomy/%','admin/structure/taxonomy/%','Manage fields','t','','','a:0:{}',132,'','',1,'modules/field_ui/field_ui.admin.inc'),('admin/structure/taxonomy/%/fields/%','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\";}}}','','field_ui_admin_access','a:2:{i:0;s:11:\"user_access\";i:1;a:1:{i:0;s:19:\"administer taxonomy\";}}','drupal_get_form','a:2:{i:0;s:24:\"field_ui_field_edit_form\";i:1;i:5;}','',58,6,0,'','admin/structure/taxonomy/%/fields/%','','field_ui_menu_title','a:1:{i:0;i:5;}','','a:0:{}',6,'','',0,'modules/field_ui/field_ui.admin.inc'),('admin/structure/taxonomy/%/fields/%/delete','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\";}}}','','field_ui_admin_access','a:2:{i:0;s:11:\"user_access\";i:1;a:1:{i:0;s:19:\"administer taxonomy\";}}','drupal_get_form','a:2:{i:0;s:26:\"field_ui_field_delete_form\";i:1;i:5;}','',117,7,1,'admin/structure/taxonomy/%/fields/%','admin/structure/taxonomy/%/fields/%','Delete','t','','','a:0:{}',132,'','',10,'modules/field_ui/field_ui.admin.inc'),('admin/structure/taxonomy/%/fields/%/edit','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\";}}}','','field_ui_admin_access','a:2:{i:0;s:11:\"user_access\";i:1;a:1:{i:0;s:19:\"administer taxonomy\";}}','drupal_get_form','a:2:{i:0;s:24:\"field_ui_field_edit_form\";i:1;i:5;}','',117,7,1,'admin/structure/taxonomy/%/fields/%','admin/structure/taxonomy/%/fields/%','Edit','t','','','a:0:{}',140,'','',0,'modules/field_ui/field_ui.admin.inc'),('admin/structure/taxonomy/%/fields/%/field-settings','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\";}}}','','field_ui_admin_access','a:2:{i:0;s:11:\"user_access\";i:1;a:1:{i:0;s:19:\"administer taxonomy\";}}','drupal_get_form','a:2:{i:0;s:28:\"field_ui_field_settings_form\";i:1;i:5;}','',117,7,1,'admin/structure/taxonomy/%/fields/%','admin/structure/taxonomy/%/fields/%','Field settings','t','','','a:0:{}',132,'','',0,'modules/field_ui/field_ui.admin.inc'),('admin/structure/taxonomy/%/fields/%/translate','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\";}}}','','user_access','a:1:{i:0;s:19:\"administer taxonomy\";}','i18n_field_page_translate','a:1:{i:0;i:5;}','',117,7,1,'admin/structure/taxonomy/%/fields/%','admin/structure/taxonomy/%/fields/%','Translate','t','','','a:0:{}',132,'','',0,'sites/all/modules/i18n/i18n_field/i18n_field.pages.inc'),('admin/structure/taxonomy/%/fields/%/translate/%','a:3:{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\";}}i:7;a:1:{s:18:\"i18n_language_load\";a:4:{i:0;s:13:\"taxonomy_term\";i:1;i:3;i:2;s:1:\"3\";i:3;s:4:\"%map\";}}}','','user_access','a:1:{i:0;s:19:\"administer taxonomy\";}','i18n_field_page_translate','a:2:{i:0;i:5;i:1;i:7;}','',234,8,0,'','admin/structure/taxonomy/%/fields/%/translate/%','Instance','t','','','a:0:{}',0,'','',0,'sites/all/modules/i18n/i18n_field/i18n_field.pages.inc'),('admin/structure/taxonomy/%/fields/%/widget-type','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\";}}}','','field_ui_admin_access','a:2:{i:0;s:11:\"user_access\";i:1;a:1:{i:0;s:19:\"administer taxonomy\";}}','drupal_get_form','a:2:{i:0;s:25:\"field_ui_widget_type_form\";i:1;i:5;}','',117,7,1,'admin/structure/taxonomy/%/fields/%','admin/structure/taxonomy/%/fields/%','Widget type','t','','','a:0:{}',132,'','',0,'modules/field_ui/field_ui.admin.inc'),('admin/structure/taxonomy/%/fields/replace/%','a:2:{i:3;a:1:{s:37:\"taxonomy_vocabulary_machine_name_load\";a:0:{}}i:6;N;}','','user_access','a:1:{i:0;s:19:\"administer taxonomy\";}','drupal_get_form','a:4:{i:0;s:28:\"title_field_replacement_form\";i:1;s:13:\"taxonomy_term\";i:2;i:3;i:3;i:6;}','',118,7,0,'','admin/structure/taxonomy/%/fields/replace/%','Replace fields','t','','','a:0:{}',6,'','',0,'sites/all/modules/title/title.admin.inc'),('admin/structure/taxonomy/%/list','a:1:{i:3;s:37:\"taxonomy_vocabulary_machine_name_load\";}','','user_access','a:1:{i:0;s:19:\"administer taxonomy\";}','drupal_get_form','a:2:{i:0;s:23:\"taxonomy_overview_terms\";i:1;i:3;}','',29,5,1,'admin/structure/taxonomy/%','admin/structure/taxonomy/%','List','t','','','a:0:{}',140,'','',-20,'modules/taxonomy/taxonomy.admin.inc'),('admin/structure/taxonomy/%/list/list','a:1:{i:3;s:37:\"taxonomy_vocabulary_machine_name_load\";}','','user_access','a:1:{i:0;s:19:\"administer taxonomy\";}','drupal_get_form','a:2:{i:0;s:23:\"taxonomy_overview_terms\";i:1;i:3;}','',59,6,1,'admin/structure/taxonomy/%/list','admin/structure/taxonomy/%','Terms','t','','','a:0:{}',140,'','',-20,'modules/taxonomy/taxonomy.admin.inc'),('admin/structure/taxonomy/%/list/sets','a:1:{i:3;s:37:\"taxonomy_vocabulary_machine_name_load\";}','','i18n_taxonomy_vocabulary_translation_tab_sets_access','a:1:{i:0;i:3;}','i18n_taxonomy_translation_sets_overview','a:1:{i:0;i:3;}','',59,6,1,'admin/structure/taxonomy/%/list','admin/structure/taxonomy/%','Translation sets','t','','','a:0:{}',132,'','',0,'sites/all/modules/i18n/i18n_taxonomy/i18n_taxonomy.admin.inc'),('admin/structure/taxonomy/%/list/sets/add','a:1:{i:3;s:37:\"taxonomy_vocabulary_machine_name_load\";}','','i18n_taxonomy_vocabulary_translation_tab_sets_access','a:1:{i:0;i:3;}','drupal_get_form','a:2:{i:0;s:35:\"i18n_taxonomy_translation_term_form\";i:1;i:3;}','',119,7,1,'admin/structure/taxonomy/%/list/sets','admin/structure/taxonomy/%','Create new translation','t','','','a:0:{}',388,'','',0,'sites/all/modules/i18n/i18n_taxonomy/i18n_taxonomy.admin.inc'),('admin/structure/taxonomy/%/list/sets/delete/%','a:2:{i:3;s:37:\"taxonomy_vocabulary_machine_name_load\";i:7;s:34:\"i18n_taxonomy_translation_set_load\";}','','i18n_taxonomy_vocabulary_translation_tab_sets_access','a:1:{i:0;i:3;}','drupal_get_form','a:2:{i:0;s:35:\"i18n_translation_set_delete_confirm\";i:1;i:7;}','',238,8,0,'','admin/structure/taxonomy/%/list/sets/delete/%','Delete translation','t','','','a:0:{}',0,'','',0,''),('admin/structure/taxonomy/%/list/sets/edit/%','a:2:{i:3;s:37:\"taxonomy_vocabulary_machine_name_load\";i:7;s:34:\"i18n_taxonomy_translation_set_load\";}','','i18n_taxonomy_vocabulary_translation_tab_sets_access','a:1:{i:0;i:3;}','drupal_get_form','a:3:{i:0;s:35:\"i18n_taxonomy_translation_term_form\";i:1;i:3;i:2;i:7;}','',238,8,0,'','admin/structure/taxonomy/%/list/sets/edit/%','Edit translation','t','','','a:0:{}',0,'','',0,'sites/all/modules/i18n/i18n_taxonomy/i18n_taxonomy.admin.inc'),('admin/structure/taxonomy/%/translate','a:1:{i:3;s:37:\"taxonomy_vocabulary_machine_name_load\";}','','i18n_object_translate_access','a:2:{i:0;s:19:\"taxonomy_vocabulary\";i:1;i:3;}','i18n_page_translate_localize','a:2:{i:0;s:19:\"taxonomy_vocabulary\";i:1;i:3;}','',29,5,1,'admin/structure/taxonomy/%','admin/structure/taxonomy/%','Translate','t','','','a:0:{}',132,'','',10,'sites/all/modules/i18n/i18n.pages.inc'),('admin/structure/taxonomy/%/translate/%','a:2:{i:3;s:37:\"taxonomy_vocabulary_machine_name_load\";i:5;s:18:\"i18n_language_load\";}','','i18n_object_translate_access','a:2:{i:0;s:19:\"taxonomy_vocabulary\";i:1;i:3;}','i18n_page_translate_localize','a:3:{i:0;s:19:\"taxonomy_vocabulary\";i:1;i:3;i:2;i:5;}','',58,6,0,'','admin/structure/taxonomy/%/translate/%','Translate','t','','','a:0:{}',0,'','',0,'sites/all/modules/i18n/i18n.pages.inc'),('admin/structure/taxonomy/add','','','user_access','a:1:{i:0;s:19:\"administer taxonomy\";}','drupal_get_form','a:1:{i:0;s:24:\"taxonomy_form_vocabulary\";}','',15,4,1,'admin/structure/taxonomy','admin/structure/taxonomy','Add vocabulary','t','','','a:0:{}',388,'','',0,'modules/taxonomy/taxonomy.admin.inc'),('admin/structure/taxonomy/list','','','user_access','a:1:{i:0;s:19:\"administer taxonomy\";}','drupal_get_form','a:1:{i:0;s:30:\"taxonomy_overview_vocabularies\";}','',15,4,1,'admin/structure/taxonomy','admin/structure/taxonomy','List','t','','','a:0:{}',140,'','',-10,'modules/taxonomy/taxonomy.admin.inc'),('admin/structure/types','','','user_access','a:1:{i:0;s:24:\"administer content types\";}','node_overview_types','a:0:{}','',7,3,0,'','admin/structure/types','Content types','t','','','a:0:{}',6,'Manage content types, including default status, front page promotion, comment settings, etc.','',0,'modules/node/content_types.inc'),('admin/structure/types/add','','','user_access','a:1:{i:0;s:24:\"administer content types\";}','drupal_get_form','a:1:{i:0;s:14:\"node_type_form\";}','',15,4,1,'admin/structure/types','admin/structure/types','Add content type','t','','','a:0:{}',388,'','',0,'modules/node/content_types.inc'),('admin/structure/types/list','','','user_access','a:1:{i:0;s:24:\"administer content types\";}','node_overview_types','a:0:{}','',15,4,1,'admin/structure/types','admin/structure/types','List','t','','','a:0:{}',140,'','',-10,'modules/node/content_types.inc'),('admin/structure/types/manage/%','a:1:{i:4;s:14:\"node_type_load\";}','','user_access','a:1:{i:0;s:24:\"administer content types\";}','drupal_get_form','a:2:{i:0;s:14:\"node_type_form\";i:1;i:4;}','',30,5,0,'','admin/structure/types/manage/%','Edit content type','node_type_page_title','a:1:{i:0;i:4;}','','a:0:{}',6,'','',0,'modules/node/content_types.inc'),('admin/structure/types/manage/%/comment/display','a:1:{i:4;s:22:\"comment_node_type_load\";}','','field_ui_admin_access','a:2:{i:0;s:11:\"user_access\";i:1;a:1:{i:0;s:24:\"administer content types\";}}','drupal_get_form','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\";}','',123,7,1,'admin/structure/types/manage/%','admin/structure/types/manage/%','Comment display','t','','','a:0:{}',132,'','',4,'modules/field_ui/field_ui.admin.inc'),('admin/structure/types/manage/%/comment/display/default','a:1:{i:4;s:22:\"comment_node_type_load\";}','','_field_ui_view_mode_menu_access','a:6:{i:0;s:7:\"comment\";i:1;i:4;i:2;s:7:\"default\";i:3;s:21:\"field_ui_admin_access\";i:4;s:11:\"user_access\";i:5;a:1:{i:0;s:24:\"administer content types\";}}','drupal_get_form','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\";}','',247,8,1,'admin/structure/types/manage/%/comment/display','admin/structure/types/manage/%','Default','t','','','a:0:{}',140,'','',-10,'modules/field_ui/field_ui.admin.inc'),('admin/structure/types/manage/%/comment/display/full','a:1:{i:4;s:22:\"comment_node_type_load\";}','','_field_ui_view_mode_menu_access','a:6:{i:0;s:7:\"comment\";i:1;i:4;i:2;s:4:\"full\";i:3;s:21:\"field_ui_admin_access\";i:4;s:11:\"user_access\";i:5;a:1:{i:0;s:24:\"administer content types\";}}','drupal_get_form','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\";}','',247,8,1,'admin/structure/types/manage/%/comment/display','admin/structure/types/manage/%','Full comment','t','','','a:0:{}',132,'','',0,'modules/field_ui/field_ui.admin.inc'),('admin/structure/types/manage/%/comment/fields','a:1:{i:4;s:22:\"comment_node_type_load\";}','','field_ui_admin_access','a:2:{i:0;s:11:\"user_access\";i:1;a:1:{i:0;s:24:\"administer content types\";}}','drupal_get_form','a:3:{i:0;s:28:\"field_ui_field_overview_form\";i:1;s:7:\"comment\";i:2;i:4;}','',123,7,1,'admin/structure/types/manage/%','admin/structure/types/manage/%','Comment fields','t','','','a:0:{}',132,'','',3,'modules/field_ui/field_ui.admin.inc'),('admin/structure/types/manage/%/comment/fields/%','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\";}}}','','field_ui_admin_access','a:2:{i:0;s:11:\"user_access\";i:1;a:1:{i:0;s:24:\"administer content types\";}}','drupal_get_form','a:2:{i:0;s:24:\"field_ui_field_edit_form\";i:1;i:7;}','',246,8,0,'','admin/structure/types/manage/%/comment/fields/%','','field_ui_menu_title','a:1:{i:0;i:7;}','','a:0:{}',6,'','',0,'modules/field_ui/field_ui.admin.inc'),('admin/structure/types/manage/%/comment/fields/%/delete','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\";}}}','','field_ui_admin_access','a:2:{i:0;s:11:\"user_access\";i:1;a:1:{i:0;s:24:\"administer content types\";}}','drupal_get_form','a:2:{i:0;s:26:\"field_ui_field_delete_form\";i:1;i:7;}','',493,9,1,'admin/structure/types/manage/%/comment/fields/%','admin/structure/types/manage/%/comment/fields/%','Delete','t','','','a:0:{}',132,'','',10,'modules/field_ui/field_ui.admin.inc'),('admin/structure/types/manage/%/comment/fields/%/edit','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\";}}}','','field_ui_admin_access','a:2:{i:0;s:11:\"user_access\";i:1;a:1:{i:0;s:24:\"administer content types\";}}','drupal_get_form','a:2:{i:0;s:24:\"field_ui_field_edit_form\";i:1;i:7;}','',493,9,1,'admin/structure/types/manage/%/comment/fields/%','admin/structure/types/manage/%/comment/fields/%','Edit','t','','','a:0:{}',140,'','',0,'modules/field_ui/field_ui.admin.inc'),('admin/structure/types/manage/%/comment/fields/%/field-settings','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\";}}}','','field_ui_admin_access','a:2:{i:0;s:11:\"user_access\";i:1;a:1:{i:0;s:24:\"administer content types\";}}','drupal_get_form','a:2:{i:0;s:28:\"field_ui_field_settings_form\";i:1;i:7;}','',493,9,1,'admin/structure/types/manage/%/comment/fields/%','admin/structure/types/manage/%/comment/fields/%','Field settings','t','','','a:0:{}',132,'','',0,'modules/field_ui/field_ui.admin.inc'),('admin/structure/types/manage/%/comment/fields/%/translate','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\";}}}','','user_access','a:1:{i:0;s:24:\"administer content types\";}','i18n_field_page_translate','a:1:{i:0;i:7;}','',493,9,1,'admin/structure/types/manage/%/comment/fields/%','admin/structure/types/manage/%/comment/fields/%','Translate','t','','','a:0:{}',132,'','',0,'sites/all/modules/i18n/i18n_field/i18n_field.pages.inc'),('admin/structure/types/manage/%/comment/fields/%/translate/%i18n_language','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\";}}}','','user_access','a:1:{i:0;s:24:\"administer content types\";}','i18n_field_page_translate','a:2:{i:0;i:7;i:1;i:9;}','',493,9,0,'','admin/structure/types/manage/%/comment/fields/%/translate/%i18n_language','Instance','t','','','a:0:{}',0,'','',0,'sites/all/modules/i18n/i18n_field/i18n_field.pages.inc'),('admin/structure/types/manage/%/comment/fields/%/widget-type','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\";}}}','','field_ui_admin_access','a:2:{i:0;s:11:\"user_access\";i:1;a:1:{i:0;s:24:\"administer content types\";}}','drupal_get_form','a:2:{i:0;s:25:\"field_ui_widget_type_form\";i:1;i:7;}','',493,9,1,'admin/structure/types/manage/%/comment/fields/%','admin/structure/types/manage/%/comment/fields/%','Widget type','t','','','a:0:{}',132,'','',0,'modules/field_ui/field_ui.admin.inc'),('admin/structure/types/manage/%/comment/fields/replace/%','a:2:{i:4;a:1:{s:22:\"comment_node_type_load\";a:0:{}}i:8;N;}','','user_access','a:1:{i:0;s:24:\"administer content types\";}','drupal_get_form','a:4:{i:0;s:28:\"title_field_replacement_form\";i:1;s:7:\"comment\";i:2;i:4;i:3;i:8;}','',494,9,0,'','admin/structure/types/manage/%/comment/fields/replace/%','Replace fields','t','','','a:0:{}',6,'','',0,'sites/all/modules/title/title.admin.inc'),('admin/structure/types/manage/%/delete','a:1:{i:4;s:14:\"node_type_load\";}','','user_access','a:1:{i:0;s:24:\"administer content types\";}','drupal_get_form','a:2:{i:0;s:24:\"node_type_delete_confirm\";i:1;i:4;}','',61,6,0,'','admin/structure/types/manage/%/delete','Delete','t','','','a:0:{}',6,'','',0,'modules/node/content_types.inc'),('admin/structure/types/manage/%/display','a:1:{i:4;s:14:\"node_type_load\";}','','field_ui_admin_access','a:2:{i:0;s:11:\"user_access\";i:1;a:1:{i:0;s:24:\"administer content types\";}}','drupal_get_form','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\";}','',61,6,1,'admin/structure/types/manage/%','admin/structure/types/manage/%','Manage display','t','','','a:0:{}',132,'','',2,'modules/field_ui/field_ui.admin.inc'),('admin/structure/types/manage/%/display/default','a:1:{i:4;s:14:\"node_type_load\";}','','_field_ui_view_mode_menu_access','a:6:{i:0;s:4:\"node\";i:1;i:4;i:2;s:7:\"default\";i:3;s:21:\"field_ui_admin_access\";i:4;s:11:\"user_access\";i:5;a:1:{i:0;s:24:\"administer content types\";}}','drupal_get_form','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\";}','',123,7,1,'admin/structure/types/manage/%/display','admin/structure/types/manage/%','Default','t','','','a:0:{}',140,'','',-10,'modules/field_ui/field_ui.admin.inc'),('admin/structure/types/manage/%/display/full','a:1:{i:4;s:14:\"node_type_load\";}','','_field_ui_view_mode_menu_access','a:6:{i:0;s:4:\"node\";i:1;i:4;i:2;s:4:\"full\";i:3;s:21:\"field_ui_admin_access\";i:4;s:11:\"user_access\";i:5;a:1:{i:0;s:24:\"administer content types\";}}','drupal_get_form','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\";}','',123,7,1,'admin/structure/types/manage/%/display','admin/structure/types/manage/%','Full content','t','','','a:0:{}',132,'','',0,'modules/field_ui/field_ui.admin.inc'),('admin/structure/types/manage/%/display/rss','a:1:{i:4;s:14:\"node_type_load\";}','','_field_ui_view_mode_menu_access','a:6:{i:0;s:4:\"node\";i:1;i:4;i:2;s:3:\"rss\";i:3;s:21:\"field_ui_admin_access\";i:4;s:11:\"user_access\";i:5;a:1:{i:0;s:24:\"administer content types\";}}','drupal_get_form','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\";}','',123,7,1,'admin/structure/types/manage/%/display','admin/structure/types/manage/%','RSS','t','','','a:0:{}',132,'','',2,'modules/field_ui/field_ui.admin.inc'),('admin/structure/types/manage/%/display/teaser','a:1:{i:4;s:14:\"node_type_load\";}','','_field_ui_view_mode_menu_access','a:6:{i:0;s:4:\"node\";i:1;i:4;i:2;s:6:\"teaser\";i:3;s:21:\"field_ui_admin_access\";i:4;s:11:\"user_access\";i:5;a:1:{i:0;s:24:\"administer content types\";}}','drupal_get_form','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\";}','',123,7,1,'admin/structure/types/manage/%/display','admin/structure/types/manage/%','Teaser','t','','','a:0:{}',132,'','',1,'modules/field_ui/field_ui.admin.inc'),('admin/structure/types/manage/%/edit','a:1:{i:4;s:14:\"node_type_load\";}','','user_access','a:1:{i:0;s:24:\"administer content types\";}','drupal_get_form','a:2:{i:0;s:14:\"node_type_form\";i:1;i:4;}','',61,6,1,'admin/structure/types/manage/%','admin/structure/types/manage/%','Edit','t','','','a:0:{}',140,'','',0,'modules/node/content_types.inc'),('admin/structure/types/manage/%/fields','a:1:{i:4;s:14:\"node_type_load\";}','','field_ui_admin_access','a:2:{i:0;s:11:\"user_access\";i:1;a:1:{i:0;s:24:\"administer content types\";}}','drupal_get_form','a:3:{i:0;s:28:\"field_ui_field_overview_form\";i:1;s:4:\"node\";i:2;i:4;}','',61,6,1,'admin/structure/types/manage/%','admin/structure/types/manage/%','Manage fields','t','','','a:0:{}',132,'','',1,'modules/field_ui/field_ui.admin.inc'),('admin/structure/types/manage/%/fields/%','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\";}}}','','field_ui_admin_access','a:2:{i:0;s:11:\"user_access\";i:1;a:1:{i:0;s:24:\"administer content types\";}}','drupal_get_form','a:2:{i:0;s:24:\"field_ui_field_edit_form\";i:1;i:6;}','',122,7,0,'','admin/structure/types/manage/%/fields/%','','field_ui_menu_title','a:1:{i:0;i:6;}','','a:0:{}',6,'','',0,'modules/field_ui/field_ui.admin.inc'),('admin/structure/types/manage/%/fields/%/delete','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\";}}}','','field_ui_admin_access','a:2:{i:0;s:11:\"user_access\";i:1;a:1:{i:0;s:24:\"administer content types\";}}','drupal_get_form','a:2:{i:0;s:26:\"field_ui_field_delete_form\";i:1;i:6;}','',245,8,1,'admin/structure/types/manage/%/fields/%','admin/structure/types/manage/%/fields/%','Delete','t','','','a:0:{}',132,'','',10,'modules/field_ui/field_ui.admin.inc'),('admin/structure/types/manage/%/fields/%/edit','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\";}}}','','field_ui_admin_access','a:2:{i:0;s:11:\"user_access\";i:1;a:1:{i:0;s:24:\"administer content types\";}}','drupal_get_form','a:2:{i:0;s:24:\"field_ui_field_edit_form\";i:1;i:6;}','',245,8,1,'admin/structure/types/manage/%/fields/%','admin/structure/types/manage/%/fields/%','Edit','t','','','a:0:{}',140,'','',0,'modules/field_ui/field_ui.admin.inc'),('admin/structure/types/manage/%/fields/%/field-settings','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\";}}}','','field_ui_admin_access','a:2:{i:0;s:11:\"user_access\";i:1;a:1:{i:0;s:24:\"administer content types\";}}','drupal_get_form','a:2:{i:0;s:28:\"field_ui_field_settings_form\";i:1;i:6;}','',245,8,1,'admin/structure/types/manage/%/fields/%','admin/structure/types/manage/%/fields/%','Field settings','t','','','a:0:{}',132,'','',0,'modules/field_ui/field_ui.admin.inc'),('admin/structure/types/manage/%/fields/%/translate','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\";}}}','','user_access','a:1:{i:0;s:24:\"administer content types\";}','i18n_field_page_translate','a:1:{i:0;i:6;}','',245,8,1,'admin/structure/types/manage/%/fields/%','admin/structure/types/manage/%/fields/%','Translate','t','','','a:0:{}',132,'','',0,'sites/all/modules/i18n/i18n_field/i18n_field.pages.inc'),('admin/structure/types/manage/%/fields/%/translate/%','a:3:{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\";}}i:8;a:1:{s:18:\"i18n_language_load\";a:4:{i:0;s:4:\"node\";i:1;i:4;i:2;s:1:\"4\";i:3;s:4:\"%map\";}}}','','user_access','a:1:{i:0;s:24:\"administer content types\";}','i18n_field_page_translate','a:2:{i:0;i:6;i:1;i:8;}','',490,9,0,'','admin/structure/types/manage/%/fields/%/translate/%','Instance','t','','','a:0:{}',0,'','',0,'sites/all/modules/i18n/i18n_field/i18n_field.pages.inc'),('admin/structure/types/manage/%/fields/%/widget-type','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\";}}}','','field_ui_admin_access','a:2:{i:0;s:11:\"user_access\";i:1;a:1:{i:0;s:24:\"administer content types\";}}','drupal_get_form','a:2:{i:0;s:25:\"field_ui_widget_type_form\";i:1;i:6;}','',245,8,1,'admin/structure/types/manage/%/fields/%','admin/structure/types/manage/%/fields/%','Widget type','t','','','a:0:{}',132,'','',0,'modules/field_ui/field_ui.admin.inc'),('admin/structure/types/manage/%/fields/replace/%','a:2:{i:4;a:1:{s:14:\"node_type_load\";a:0:{}}i:7;N;}','','user_access','a:1:{i:0;s:24:\"administer content types\";}','drupal_get_form','a:4:{i:0;s:28:\"title_field_replacement_form\";i:1;s:4:\"node\";i:2;i:4;i:3;i:7;}','',246,8,0,'','admin/structure/types/manage/%/fields/replace/%','Replace fields','t','','','a:0:{}',6,'','',0,'sites/all/modules/title/title.admin.inc'),('admin/structure/types/manage/%/translate','a:1:{i:4;s:14:\"node_type_load\";}','','i18n_object_translate_access','a:2:{i:0;s:9:\"node_type\";i:1;i:4;}','i18n_page_translate_localize','a:2:{i:0;s:9:\"node_type\";i:1;i:4;}','',61,6,1,'admin/structure/types/manage/%','admin/structure/types/manage/%','Translate','t','','','a:0:{}',132,'','',10,'sites/all/modules/i18n/i18n.pages.inc'),('admin/structure/types/manage/%/translate/%','a:2:{i:4;s:14:\"node_type_load\";i:6;s:18:\"i18n_language_load\";}','','i18n_object_translate_access','a:2:{i:0;s:9:\"node_type\";i:1;i:4;}','i18n_page_translate_localize','a:3:{i:0;s:9:\"node_type\";i:1;i:4;i:2;i:6;}','',122,7,0,'','admin/structure/types/manage/%/translate/%','Translate','t','','','a:0:{}',0,'','',0,'sites/all/modules/i18n/i18n.pages.inc'),('admin/structure/views','','','ctools_export_ui_task_access','a:2:{i:0;s:8:\"views_ui\";i:1;s:4:\"list\";}','ctools_export_ui_switcher_page','a:2:{i:0;s:8:\"views_ui\";i:1;s:4:\"list\";}','',7,3,0,'','admin/structure/views','Views','t','','','a:0:{}',6,'Manage customized lists of content.','',0,'sites/all/modules/ctools/includes/export-ui.inc'),('admin/structure/views/add','','','user_access','a:1:{i:0;s:16:\"administer views\";}','views_ui_add_page','a:0:{}','',15,4,1,'admin/structure/views','admin/structure/views','Add new view','t','','','a:0:{}',388,'','',0,'sites/all/modules/views/includes/admin.inc'),('admin/structure/views/add-template','','','user_access','a:1:{i:0;s:16:\"administer views\";}','views_ui_add_template_page','a:0:{}','',15,4,1,'admin/structure/views','admin/structure/views','Add view from template','t','','','a:0:{}',388,'','',0,'sites/all/modules/views/includes/admin.inc'),('admin/structure/views/ajax/%/%','a:2:{i:4;N;i:5;s:19:\"views_ui_cache_load\";}','','user_access','a:1:{i:0;s:16:\"administer views\";}','views_ui_ajax_form','a:3:{i:0;b:1;i:1;i:4;i:2;i:5;}','ajax_deliver',60,6,0,'','admin/structure/views/ajax/%/%','','t','','','a:0:{}',0,'','',0,'sites/all/modules/views/includes/admin.inc'),('admin/structure/views/ajax/preview/%/%','a:2:{i:5;s:19:\"views_ui_cache_load\";i:6;N;}','','user_access','a:1:{i:0;s:16:\"administer views\";}','views_ui_preview','a:2:{i:0;i:5;i:1;i:6;}','ajax_deliver',124,7,0,'','admin/structure/views/ajax/preview/%/%','','t','','','a:0:{}',6,'','',0,'sites/all/modules/views/includes/admin.inc'),('admin/structure/views/import','','','views_import_access','a:1:{i:0;s:16:\"administer views\";}','drupal_get_form','a:1:{i:0;s:20:\"views_ui_import_page\";}','',15,4,1,'admin/structure/views','admin/structure/views','Import','t','','','a:0:{}',388,'','',0,'sites/all/modules/views/includes/admin.inc'),('admin/structure/views/list','','','ctools_export_ui_task_access','a:2:{i:0;s:8:\"views_ui\";i:1;s:4:\"list\";}','ctools_export_ui_switcher_page','a:2:{i:0;s:8:\"views_ui\";i:1;s:4:\"list\";}','',15,4,1,'admin/structure/views','admin/structure/views','List','t','','','a:0:{}',140,'','',-10,'sites/all/modules/ctools/includes/export-ui.inc'),('admin/structure/views/nojs/%/%','a:2:{i:4;N;i:5;s:19:\"views_ui_cache_load\";}','','user_access','a:1:{i:0;s:16:\"administer views\";}','views_ui_ajax_form','a:3:{i:0;b:0;i:1;i:4;i:2;i:5;}','',60,6,0,'','admin/structure/views/nojs/%/%','','t','','','a:0:{}',0,'','',0,'sites/all/modules/views/includes/admin.inc'),('admin/structure/views/nojs/preview/%/%','a:2:{i:5;s:19:\"views_ui_cache_load\";i:6;N;}','','user_access','a:1:{i:0;s:16:\"administer views\";}','views_ui_preview','a:2:{i:0;i:5;i:1;i:6;}','',124,7,0,'','admin/structure/views/nojs/preview/%/%','','t','','','a:0:{}',6,'','',0,'sites/all/modules/views/includes/admin.inc'),('admin/structure/views/settings','','','user_access','a:1:{i:0;s:16:\"administer views\";}','drupal_get_form','a:1:{i:0;s:29:\"views_ui_admin_settings_basic\";}','',15,4,1,'admin/structure/views','admin/structure/views','Settings','t','','','a:0:{}',132,'','',0,'sites/all/modules/views/includes/admin.inc'),('admin/structure/views/settings/advanced','','','user_access','a:1:{i:0;s:16:\"administer views\";}','drupal_get_form','a:1:{i:0;s:32:\"views_ui_admin_settings_advanced\";}','',31,5,1,'admin/structure/views/settings','admin/structure/views','Advanced','t','','','a:0:{}',132,'','',1,'sites/all/modules/views/includes/admin.inc'),('admin/structure/views/settings/basic','','','user_access','a:1:{i:0;s:16:\"administer views\";}','drupal_get_form','a:1:{i:0;s:29:\"views_ui_admin_settings_basic\";}','',31,5,1,'admin/structure/views/settings','admin/structure/views','Basic','t','','','a:0:{}',140,'','',0,'sites/all/modules/views/includes/admin.inc'),('admin/structure/views/template/%/add','a:1:{i:4;N;}','','ctools_export_ui_task_access','a:3:{i:0;s:8:\"views_ui\";i:1;s:12:\"add_template\";i:2;i:4;}','ctools_export_ui_switcher_page','a:3:{i:0;s:8:\"views_ui\";i:1;s:12:\"add_template\";i:2;i:4;}','',61,6,0,'','admin/structure/views/template/%/add','Add from template','t','','','a:0:{}',0,'','',0,'sites/all/modules/ctools/includes/export-ui.inc'),('admin/structure/views/view/%','a:1:{i:4;s:19:\"views_ui_cache_load\";}','','user_access','a:1:{i:0;s:16:\"administer views\";}','views_ui_edit_page','a:1:{i:0;i:4;}','',30,5,0,'','admin/structure/views/view/%','','views_ui_edit_page_title','a:1:{i:0;i:4;}','','a:0:{}',6,'','',0,'sites/all/modules/views/includes/admin.inc'),('admin/structure/views/view/%/break-lock','a:1:{i:4;s:19:\"views_ui_cache_load\";}','','user_access','a:1:{i:0;s:16:\"administer views\";}','drupal_get_form','a:2:{i:0;s:27:\"views_ui_break_lock_confirm\";i:1;i:4;}','',61,6,0,'','admin/structure/views/view/%/break-lock','Break lock','t','','','a:0:{}',4,'','',0,'sites/all/modules/views/includes/admin.inc'),('admin/structure/views/view/%/clone','a:1:{i:4;a:1:{s:21:\"ctools_export_ui_load\";a:1:{i:0;s:8:\"views_ui\";}}}','','ctools_export_ui_task_access','a:3:{i:0;s:8:\"views_ui\";i:1;s:5:\"clone\";i:2;i:4;}','ctools_export_ui_switcher_page','a:3:{i:0;s:8:\"views_ui\";i:1;s:5:\"clone\";i:2;i:4;}','',61,6,0,'','admin/structure/views/view/%/clone','Clone','t','','','a:0:{}',4,'','',0,'sites/all/modules/ctools/includes/export-ui.inc'),('admin/structure/views/view/%/delete','a:1:{i:4;a:1:{s:21:\"ctools_export_ui_load\";a:1:{i:0;s:8:\"views_ui\";}}}','','ctools_export_ui_task_access','a:3:{i:0;s:8:\"views_ui\";i:1;s:6:\"delete\";i:2;i:4;}','ctools_export_ui_switcher_page','a:3:{i:0;s:8:\"views_ui\";i:1;s:6:\"delete\";i:2;i:4;}','',61,6,0,'','admin/structure/views/view/%/delete','Delete','t','','','a:0:{}',4,'','',0,'sites/all/modules/ctools/includes/export-ui.inc'),('admin/structure/views/view/%/disable','a:1:{i:4;a:1:{s:21:\"ctools_export_ui_load\";a:1:{i:0;s:8:\"views_ui\";}}}','','ctools_export_ui_task_access','a:3:{i:0;s:8:\"views_ui\";i:1;s:7:\"disable\";i:2;i:4;}','ctools_export_ui_switcher_page','a:3:{i:0;s:8:\"views_ui\";i:1;s:7:\"disable\";i:2;i:4;}','',61,6,0,'','admin/structure/views/view/%/disable','Disable','t','','','a:0:{}',0,'','',0,'sites/all/modules/ctools/includes/export-ui.inc'),('admin/structure/views/view/%/edit','a:1:{i:4;s:19:\"views_ui_cache_load\";}','','user_access','a:1:{i:0;s:16:\"administer views\";}','views_ui_edit_page','a:1:{i:0;i:4;}','',61,6,3,'admin/structure/views/view/%','admin/structure/views/view/%','Edit view','t','','ajax_base_page_theme','a:0:{}',140,'','',-10,'sites/all/modules/views/includes/admin.inc'),('admin/structure/views/view/%/edit/%/ajax','a:2:{i:4;s:19:\"views_ui_cache_load\";i:6;N;}','','user_access','a:1:{i:0;s:16:\"administer views\";}','views_ui_ajax_get_form','a:3:{i:0;s:18:\"views_ui_edit_form\";i:1;i:4;i:2;i:6;}','ajax_deliver',245,8,0,'','admin/structure/views/view/%/edit/%/ajax','','t','','ajax_base_page_theme','a:0:{}',0,'','',0,'sites/all/modules/views/includes/admin.inc'),('admin/structure/views/view/%/enable','a:1:{i:4;a:1:{s:21:\"ctools_export_ui_load\";a:1:{i:0;s:8:\"views_ui\";}}}','','ctools_export_ui_task_access','a:3:{i:0;s:8:\"views_ui\";i:1;s:6:\"enable\";i:2;i:4;}','ctools_export_ui_switcher_page','a:3:{i:0;s:8:\"views_ui\";i:1;s:6:\"enable\";i:2;i:4;}','',61,6,0,'','admin/structure/views/view/%/enable','Enable','t','','','a:0:{}',0,'','',0,'sites/all/modules/ctools/includes/export-ui.inc'),('admin/structure/views/view/%/export','a:1:{i:4;a:1:{s:21:\"ctools_export_ui_load\";a:1:{i:0;s:8:\"views_ui\";}}}','','ctools_export_ui_task_access','a:3:{i:0;s:8:\"views_ui\";i:1;s:6:\"export\";i:2;i:4;}','ctools_export_ui_switcher_page','a:3:{i:0;s:8:\"views_ui\";i:1;s:6:\"export\";i:2;i:4;}','',61,6,0,'','admin/structure/views/view/%/export','Export','t','','','a:0:{}',4,'','',0,'sites/all/modules/ctools/includes/export-ui.inc'),('admin/structure/views/view/%/preview/%','a:2:{i:4;s:19:\"views_ui_cache_load\";i:6;N;}','','user_access','a:1:{i:0;s:16:\"administer views\";}','views_ui_build_preview','a:2:{i:0;i:4;i:1;i:6;}','',122,7,3,'','admin/structure/views/view/%/preview/%','','t','','','a:0:{}',4,'','',0,'sites/all/modules/views/includes/admin.inc'),('admin/structure/views/view/%/preview/%/ajax','a:2:{i:4;s:19:\"views_ui_cache_load\";i:6;N;}','','user_access','a:1:{i:0;s:16:\"administer views\";}','views_ui_build_preview','a:2:{i:0;i:4;i:1;i:6;}','ajax_deliver',245,8,0,'','admin/structure/views/view/%/preview/%/ajax','','t','','ajax_base_page_theme','a:0:{}',0,'','',0,'sites/all/modules/views/includes/admin.inc'),('admin/structure/views/view/%/revert','a:1:{i:4;a:1:{s:21:\"ctools_export_ui_load\";a:1:{i:0;s:8:\"views_ui\";}}}','','ctools_export_ui_task_access','a:3:{i:0;s:8:\"views_ui\";i:1;s:6:\"revert\";i:2;i:4;}','ctools_export_ui_switcher_page','a:3:{i:0;s:8:\"views_ui\";i:1;s:6:\"delete\";i:2;i:4;}','',61,6,0,'','admin/structure/views/view/%/revert','Revert','t','','','a:0:{}',4,'','',0,'sites/all/modules/ctools/includes/export-ui.inc'),('admin/tasks','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','system_admin_menu_block_page','a:0:{}','',3,2,1,'admin','admin','Tasks','t','','','a:0:{}',140,'','',-20,'modules/system/system.admin.inc'),('admin/update/ready','','','update_manager_access','a:0:{}','drupal_get_form','a:1:{i:0;s:32:\"update_manager_update_ready_form\";}','',7,3,0,'','admin/update/ready','Ready to update','t','','','a:0:{}',0,'','',0,'modules/update/update.manager.inc'),('admin/views/ajax/autocomplete/tag','','','user_access','a:1:{i:0;s:16:\"administer views\";}','views_ui_autocomplete_tag','a:0:{}','',31,5,0,'','admin/views/ajax/autocomplete/tag','','t','','','a:0:{}',0,'','',0,'sites/all/modules/views/includes/admin.inc'),('admin/views/ajax/autocomplete/taxonomy','','','user_access','a:1:{i:0;s:14:\"access content\";}','views_ajax_autocomplete_taxonomy','a:0:{}','',31,5,0,'','admin/views/ajax/autocomplete/taxonomy','','t','','ajax_base_page_theme','a:0:{}',0,'','',0,'sites/all/modules/views/includes/ajax.inc'),('admin/views/ajax/autocomplete/user','','','user_access','a:1:{i:0;s:20:\"access user profiles\";}','views_ajax_autocomplete_user','a:0:{}','',31,5,0,'','admin/views/ajax/autocomplete/user','','t','','ajax_base_page_theme','a:0:{}',0,'','',0,'sites/all/modules/views/includes/ajax.inc'),('articles','','','views_access','a:1:{i:0;a:2:{i:0;s:16:\"views_check_perm\";i:1;a:1:{i:0;s:14:\"access content\";}}}','views_page','a:2:{i:0;s:8:\"articles\";i:1;s:4:\"page\";}','',1,1,0,'','articles','','t','','','a:0:{}',0,'','',0,''),('batch','','','1','a:0:{}','system_batch_page','a:0:{}','',1,1,0,'','batch','','t','','_system_batch_theme','a:0:{}',0,'','',0,'modules/system/system.admin.inc'),('chart/page','','','1','a:0:{}','chartModule_page','a:0:{}','',3,2,0,'','chart/page','Forecast as charts','t','','','a:0:{}',6,'','',0,''),('comment/%','a:1:{i:1;N;}','','user_access','a:1:{i:0;s:15:\"access comments\";}','comment_permalink','a:1:{i:0;i:1;}','',2,2,0,'','comment/%','Comment permalink','t','','','a:0:{}',6,'','',0,''),('comment/%/approve','a:1:{i:1;N;}','','user_access','a:1:{i:0;s:19:\"administer comments\";}','comment_approve','a:1:{i:0;i:1;}','',5,3,0,'','comment/%/approve','Approve','t','','','a:0:{}',6,'','',1,'modules/comment/comment.pages.inc'),('comment/%/delete','a:1:{i:1;N;}','','user_access','a:1:{i:0;s:19:\"administer comments\";}','comment_confirm_delete_page','a:1:{i:0;i:1;}','',5,3,1,'comment/%','comment/%','Delete','t','','','a:0:{}',132,'','',2,'modules/comment/comment.admin.inc'),('comment/%/edit','a:1:{i:1;s:12:\"comment_load\";}','','comment_access','a:2:{i:0;s:4:\"edit\";i:1;i:1;}','comment_edit_page','a:1:{i:0;i:1;}','',5,3,1,'comment/%','comment/%','Edit','t','','','a:0:{}',132,'','',0,''),('comment/%/view','a:1:{i:1;N;}','','user_access','a:1:{i:0;s:15:\"access comments\";}','comment_permalink','a:1:{i:0;i:1;}','',5,3,1,'comment/%','comment/%','View comment','t','','','a:0:{}',140,'','',-10,''),('comment/reply/%','a:1:{i:2;s:9:\"node_load\";}','','node_access','a:2:{i:0;s:4:\"view\";i:1;i:2;}','comment_reply','a:1:{i:0;i:2;}','',6,3,0,'','comment/reply/%','Add new comment','t','','','a:0:{}',6,'','',0,'modules/comment/comment.pages.inc'),('contact','','','user_access','a:1:{i:0;s:29:\"access site-wide contact form\";}','drupal_get_form','a:1:{i:0;s:17:\"contact_site_form\";}','',1,1,0,'','contact','Contact','t','','','a:0:{}',20,'','',0,'modules/contact/contact.pages.inc'),('ctools/autocomplete/%','a:1:{i:2;N;}','','user_access','a:1:{i:0;s:14:\"access content\";}','ctools_content_autocomplete_entity','a:1:{i:0;i:2;}','',6,3,0,'','ctools/autocomplete/%','','t','','','a:0:{}',0,'','',0,'sites/all/modules/ctools/includes/content.menu.inc'),('ctools/context/ajax/access/add','','','user_access','a:1:{i:0;s:14:\"access content\";}','ctools_access_ajax_add','a:0:{}','',31,5,0,'','ctools/context/ajax/access/add','','t','','ajax_base_page_theme','a:0:{}',0,'','',0,'sites/all/modules/ctools/includes/context-access-admin.inc'),('ctools/context/ajax/access/configure','','','user_access','a:1:{i:0;s:14:\"access content\";}','ctools_access_ajax_edit','a:0:{}','',31,5,0,'','ctools/context/ajax/access/configure','','t','','ajax_base_page_theme','a:0:{}',0,'','',0,'sites/all/modules/ctools/includes/context-access-admin.inc'),('ctools/context/ajax/access/delete','','','user_access','a:1:{i:0;s:14:\"access content\";}','ctools_access_ajax_delete','a:0:{}','',31,5,0,'','ctools/context/ajax/access/delete','','t','','ajax_base_page_theme','a:0:{}',0,'','',0,'sites/all/modules/ctools/includes/context-access-admin.inc'),('ctools/context/ajax/add','','','user_access','a:1:{i:0;s:14:\"access content\";}','ctools_context_ajax_item_add','a:0:{}','',15,4,0,'','ctools/context/ajax/add','','t','','ajax_base_page_theme','a:0:{}',0,'','',0,'sites/all/modules/ctools/includes/context-admin.inc'),('ctools/context/ajax/configure','','','user_access','a:1:{i:0;s:14:\"access content\";}','ctools_context_ajax_item_edit','a:0:{}','',15,4,0,'','ctools/context/ajax/configure','','t','','ajax_base_page_theme','a:0:{}',0,'','',0,'sites/all/modules/ctools/includes/context-admin.inc'),('ctools/context/ajax/delete','','','user_access','a:1:{i:0;s:14:\"access content\";}','ctools_context_ajax_item_delete','a:0:{}','',15,4,0,'','ctools/context/ajax/delete','','t','','ajax_base_page_theme','a:0:{}',0,'','',0,'sites/all/modules/ctools/includes/context-admin.inc'),('entity_translation/taxonomy_term/autocomplete','','','user_access','a:1:{i:0;s:14:\"access content\";}','entity_translation_taxonomy_term_autocomplete','a:0:{}','',7,3,0,'','entity_translation/taxonomy_term/autocomplete','Entity translation autocomplete','t','','','a:0:{}',0,'','',0,''),('features/ajaxcallback/%','a:1:{i:2;N;}','','user_access','a:1:{i:0;s:19:\"administer features\";}','features_export_components_json','a:1:{i:0;i:2;}','',6,3,0,'','features/ajaxcallback/%','','features_get_feature_components','','','a:0:{}',0,'Return components of a feature.','',0,'sites/all/modules/features/features.admin.inc'),('features/autocomplete/packages','','','user_access','a:1:{i:0;s:15:\"manage features\";}','features_autocomplete_packages','a:0:{}','',7,3,0,'','features/autocomplete/packages','','t','','','a:0:{}',0,'','',0,'sites/all/modules/features/features.admin.inc'),('file/ajax','','','user_access','a:1:{i:0;s:14:\"access content\";}','file_ajax_upload','a:0:{}','ajax_deliver',3,2,0,'','file/ajax','','t','','ajax_base_page_theme','a:0:{}',0,'','',0,''),('file/progress','','','user_access','a:1:{i:0;s:14:\"access content\";}','file_ajax_progress','a:0:{}','',3,2,0,'','file/progress','','t','','ajax_base_page_theme','a:0:{}',0,'','',0,''),('filter/tips','','','1','a:0:{}','filter_tips_long','a:0:{}','',3,2,0,'','filter/tips','Compose tips','t','','','a:0:{}',20,'','',0,'modules/filter/filter.pages.inc'),('filter/tips/%','a:1:{i:2;s:18:\"filter_format_load\";}','','filter_access','a:1:{i:0;i:2;}','filter_tips_long','a:1:{i:0;i:2;}','',6,3,0,'','filter/tips/%','Compose tips','t','','','a:0:{}',6,'','',0,'modules/filter/filter.pages.inc'),('forum','','','user_access','a:1:{i:0;s:14:\"access content\";}','forum_page','a:0:{}','',1,1,0,'','forum','Forums','t','','','a:0:{}',6,'','',0,'modules/forum/forum.pages.inc'),('forum/%','a:1:{i:1;s:16:\"forum_forum_load\";}','','user_access','a:1:{i:0;s:14:\"access content\";}','forum_page','a:1:{i:0;i:1;}','',2,2,0,'','forum/%','Forums','t','','','a:0:{}',6,'','',0,'modules/forum/forum.pages.inc'),('geocoder/service/%','a:1:{i:2;N;}','','geocoder_service_check_perms','a:1:{i:0;s:11:\"development\";}','geocoder_service_callback','a:1:{i:0;i:2;}','',6,3,0,'','geocoder/service/%','AJAX / AJAJ geocoding service','t','','','a:0:{}',0,'Provides basic callback for geocoding using JavaScript','',0,''),('i18n/node/autocomplete','','','user_access','a:1:{i:0;s:31:\"administer content translations\";}','i18n_node_autocomplete','a:0:{}','',7,3,0,'','i18n/node/autocomplete','','t','','','a:0:{}',0,'','',0,'sites/all/modules/i18n/i18n_node/i18n_node.pages.inc'),('i18n/taxonomy/autocomplete/language/%','a:1:{i:4;N;}','','user_access','a:1:{i:0;s:14:\"access content\";}','i18n_taxonomy_autocomplete_language','a:2:{i:0;i:4;i:1;N;}','',30,5,0,'','i18n/taxonomy/autocomplete/language/%','Autocomplete taxonomy','t','','','a:0:{}',0,'','',0,'sites/all/modules/i18n/i18n_taxonomy/i18n_taxonomy.pages.inc'),('i18n/taxonomy/autocomplete/vocabulary/%/%','a:2:{i:4;s:37:\"taxonomy_vocabulary_machine_name_load\";i:5;N;}','','user_access','a:1:{i:0;s:14:\"access content\";}','i18n_taxonomy_autocomplete_language','a:2:{i:0;i:5;i:1;i:4;}','',60,6,0,'','i18n/taxonomy/autocomplete/vocabulary/%/%','Autocomplete taxonomy','t','','','a:0:{}',0,'','',0,'sites/all/modules/i18n/i18n_taxonomy/i18n_taxonomy.pages.inc'),('i18n_string/save','','','user_access','a:1:{i:0;s:23:\"use on-page translation\";}','i18n_string_l10n_client_save_string','a:0:{}','',3,2,0,'','i18n_string/save','Save string','t','','','a:0:{}',0,'','',0,'sites/all/modules/i18n/i18n_string/i18n_string.pages.inc'),('imce','','','imce_access','a:2:{i:0;b:0;i:1;i:1;}','imce','a:0:{}','',1,1,0,'','imce','File browser','t','','','a:0:{}',0,'','',0,'sites/all/modules/imce/inc/imce.page.inc'),('location/autocomplete','','','user_access','a:1:{i:0;s:14:\"access content\";}','_location_autocomplete','a:0:{}','',3,2,0,'','location/autocomplete','','t','','','a:0:{}',0,'','',0,''),('map/node','','','user_access','a:1:{i:0;s:13:\"view node map\";}','gmap_location_node_page','a:0:{}','',3,2,0,'','map/node','Node locations','t','','','a:0:{}',6,'','',0,''),('map/node/load/%/%','a:2:{i:3;s:9:\"node_load\";i:4;N;}','','user_access','a:1:{i:0;s:13:\"view node map\";}','gmap_location_node_point','a:2:{i:0;i:3;i:1;i:4;}','',28,5,0,'','map/node/load/%/%','','t','','','a:0:{}',0,'','',0,''),('map/user','','','user_access','a:1:{i:0;s:13:\"view user map\";}','gmap_location_user_page','a:0:{}','',3,2,0,'','map/user','User locations','t','','','a:0:{}',6,'','',0,''),('map/user/load','','','user_access','a:1:{i:0;s:13:\"view user map\";}','gmap_location_user_point','a:0:{}','',7,3,0,'','map/user/load','','t','','','a:0:{}',0,'','',0,''),('node','','','user_access','a:1:{i:0;s:14:\"access content\";}','node_page_default','a:0:{}','',1,1,0,'','node','','t','','','a:0:{}',0,'','',0,''),('node/%','a:1:{i:1;s:9:\"node_load\";}','','entity_translation_upgrade_access','a:1:{i:0;i:1;}','node_page_view','a:1:{i:0;i:1;}','',2,2,0,'','node/%','','node_page_title','a:1:{i:0;i:1;}','','a:0:{}',6,'','',0,''),('node/%/delete','a:1:{i:1;s:9:\"node_load\";}','','node_access','a:2:{i:0;s:6:\"delete\";i:1;i:1;}','drupal_get_form','a:2:{i:0;s:19:\"node_delete_confirm\";i:1;i:1;}','',5,3,2,'node/%','node/%','Delete','t','','','a:0:{}',132,'','',1,'modules/node/node.pages.inc'),('node/%/edit','a:1:{i:1;s:9:\"node_load\";}','','entity_translation_edit_access','a:6:{i:0;s:4:\"node\";i:1;i:1;i:2;b:0;i:3;a:10:{s:5:\"title\";s:4:\"Edit\";s:13:\"page callback\";s:14:\"node_page_edit\";s:14:\"page arguments\";a:1:{i:0;i:1;}s:15:\"access callback\";s:11:\"node_access\";s:16:\"access arguments\";a:2:{i:0;s:6:\"update\";i:1;i:1;}s:6:\"weight\";i:0;s:4:\"type\";i:132;s:7:\"context\";i:3;s:4:\"file\";s:14:\"node.pages.inc\";s:6:\"module\";s:4:\"node\";}i:4;s:6:\"update\";i:5;i:1;}','entity_translation_edit_page','a:5:{i:0;s:4:\"node\";i:1;i:1;i:2;b:0;i:3;a:10:{s:5:\"title\";s:4:\"Edit\";s:13:\"page callback\";s:14:\"node_page_edit\";s:14:\"page arguments\";a:1:{i:0;i:1;}s:15:\"access callback\";s:11:\"node_access\";s:16:\"access arguments\";a:2:{i:0;s:6:\"update\";i:1;i:1;}s:6:\"weight\";i:0;s:4:\"type\";i:132;s:7:\"context\";i:3;s:4:\"file\";s:14:\"node.pages.inc\";s:6:\"module\";s:4:\"node\";}i:4;i:1;}','',5,3,3,'node/%','node/%','Edit','t','','','a:0:{}',132,'','',0,'modules/node/node.pages.inc'),('node/%/edit/%','a:2:{i:1;s:9:\"node_load\";i:3;s:32:\"entity_translation_language_load\";}','','entity_translation_edit_access','a:6:{i:0;s:4:\"node\";i:1;i:1;i:2;i:3;i:3;a:10:{s:5:\"title\";s:4:\"Edit\";s:13:\"page callback\";s:14:\"node_page_edit\";s:14:\"page arguments\";a:1:{i:0;i:1;}s:15:\"access callback\";s:11:\"node_access\";s:16:\"access arguments\";a:2:{i:0;s:6:\"update\";i:1;i:1;}s:6:\"weight\";i:0;s:4:\"type\";i:132;s:7:\"context\";i:3;s:4:\"file\";s:14:\"node.pages.inc\";s:6:\"module\";s:4:\"node\";}i:4;s:6:\"update\";i:5;i:1;}','entity_translation_edit_page','a:5:{i:0;s:4:\"node\";i:1;i:1;i:2;i:3;i:3;a:10:{s:5:\"title\";s:4:\"Edit\";s:13:\"page callback\";s:14:\"node_page_edit\";s:14:\"page arguments\";a:1:{i:0;i:1;}s:15:\"access callback\";s:11:\"node_access\";s:16:\"access arguments\";a:2:{i:0;s:6:\"update\";i:1;i:1;}s:6:\"weight\";i:0;s:4:\"type\";i:132;s:7:\"context\";i:3;s:4:\"file\";s:14:\"node.pages.inc\";s:6:\"module\";s:4:\"node\";}i:4;i:1;}','',10,4,3,'node/%/edit','node/%','Edit','entity_translation_edit_title','a:1:{i:0;i:3;}','','a:0:{}',140,'','',0,'modules/node/node.pages.inc'),('node/%/edit/add/%/%','a:3:{i:1;s:9:\"node_load\";i:4;s:32:\"entity_translation_language_load\";i:5;s:32:\"entity_translation_language_load\";}','','entity_translation_add_access','a:7:{i:0;s:4:\"node\";i:1;i:1;i:2;i:4;i:3;i:5;i:4;a:10:{s:5:\"title\";s:4:\"Edit\";s:13:\"page callback\";s:14:\"node_page_edit\";s:14:\"page arguments\";a:1:{i:0;i:1;}s:15:\"access callback\";s:11:\"node_access\";s:16:\"access arguments\";a:2:{i:0;s:6:\"update\";i:1;i:1;}s:6:\"weight\";i:0;s:4:\"type\";i:132;s:7:\"context\";i:3;s:4:\"file\";s:14:\"node.pages.inc\";s:6:\"module\";s:4:\"node\";}i:5;s:6:\"update\";i:6;i:1;}','entity_translation_add_page','a:6:{i:0;s:4:\"node\";i:1;i:1;i:2;i:4;i:3;i:5;i:4;a:10:{s:5:\"title\";s:4:\"Edit\";s:13:\"page callback\";s:14:\"node_page_edit\";s:14:\"page arguments\";a:1:{i:0;i:1;}s:15:\"access callback\";s:11:\"node_access\";s:16:\"access arguments\";a:2:{i:0;s:6:\"update\";i:1;i:1;}s:6:\"weight\";i:0;s:4:\"type\";i:132;s:7:\"context\";i:3;s:4:\"file\";s:14:\"node.pages.inc\";s:6:\"module\";s:4:\"node\";}i:5;i:1;}','',44,6,3,'node/%/edit','node/%','Edit','Add translation','','','a:0:{}',132,'','',0,'modules/node/node.pages.inc'),('node/%/photos','a:1:{i:1;s:9:\"node_load\";}','','_photos_access','a:2:{i:0;s:9:\"editAlbum\";i:1;i:1;}','photos_edit_page','a:1:{i:0;i:1;}','',5,3,1,'node/%','node/%','Images Management','t','','','a:0:{}',132,'','',0,'sites/all/modules/photos/inc/photos.edit.inc'),('node/%/photos-sort','a:1:{i:1;s:9:\"node_load\";}','','_photos_access','a:2:{i:0;s:9:\"editAlbum\";i:1;i:1;}','photos_edit_sort_page','a:1:{i:0;i:1;}','',5,3,1,'node/%','node/%','Re-arrange','t','','','a:0:{}',132,'','',0,'sites/all/modules/photos/inc/photos.edit.inc'),('node/%/photos/cover/%','a:2:{i:1;s:9:\"node_load\";i:4;N;}','','node_access','a:2:{i:0;s:6:\"update\";i:1;i:1;}','photos_edit_cover','a:2:{i:0;i:1;i:1;i:4;}','',22,5,0,'','node/%/photos/cover/%','','t','','','a:0:{}',0,'','',0,'sites/all/modules/photos/inc/photos.edit.inc'),('node/%/revisions','a:1:{i:1;s:9:\"node_load\";}','','_node_revision_access','a:1:{i:0;i:1;}','node_revision_overview','a:1:{i:0;i:1;}','',5,3,1,'node/%','node/%','Revisions','t','','','a:0:{}',132,'','',2,'modules/node/node.pages.inc'),('node/%/revisions/%/delete','a:2:{i:1;a:1:{s:9:\"node_load\";a:1:{i:0;i:3;}}i:3;N;}','','_node_revision_access','a:2:{i:0;i:1;i:1;s:6:\"delete\";}','drupal_get_form','a:2:{i:0;s:28:\"node_revision_delete_confirm\";i:1;i:1;}','',21,5,0,'','node/%/revisions/%/delete','Delete earlier revision','t','','','a:0:{}',6,'','',0,'modules/node/node.pages.inc'),('node/%/revisions/%/revert','a:2:{i:1;a:1:{s:9:\"node_load\";a:1:{i:0;i:3;}}i:3;N;}','','_node_revision_access','a:2:{i:0;i:1;i:1;s:6:\"update\";}','drupal_get_form','a:2:{i:0;s:28:\"node_revision_revert_confirm\";i:1;i:1;}','',21,5,0,'','node/%/revisions/%/revert','Revert to earlier revision','t','','','a:0:{}',6,'','',0,'modules/node/node.pages.inc'),('node/%/revisions/%/view','a:2:{i:1;a:1:{s:9:\"node_load\";a:1:{i:0;i:3;}}i:3;N;}','','_node_revision_access','a:1:{i:0;i:1;}','node_show','a:2:{i:0;i:1;i:1;b:1;}','',21,5,0,'','node/%/revisions/%/view','Revisions','t','','','a:0:{}',6,'','',0,''),('node/%/translate','a:1:{i:1;s:9:\"node_load\";}','','entity_translation_node_tab_access','a:3:{i:0;i:1;i:1;s:23:\"_translation_tab_access\";i:2;i:1;}','entity_translation_overview','a:4:{i:0;s:4:\"node\";i:1;i:1;i:2;a:3:{s:13:\"page callback\";s:30:\"i18n_node_translation_overview\";s:4:\"file\";s:19:\"i18n_node.pages.inc\";s:6:\"module\";s:9:\"i18n_node\";}i:3;i:1;}','',5,3,3,'node/%','node/%','Translate','t','','','a:0:{}',132,'','',1,'sites/all/modules/entity_translation/entity_translation.admin.inc'),('node/%/translate/delete/%','a:2:{i:1;s:9:\"node_load\";i:4;s:32:\"entity_translation_language_load\";}','','entity_translation_node_tab_access','a:1:{i:0;i:1;}','drupal_get_form','a:4:{i:0;s:33:\"entity_translation_delete_confirm\";i:1;s:4:\"node\";i:2;i:1;i:3;i:4;}','',22,5,0,'','node/%/translate/delete/%','Delete','t','','','a:0:{}',6,'','',0,'sites/all/modules/entity_translation/entity_translation.admin.inc'),('node/%/view','a:1:{i:1;s:9:\"node_load\";}','','entity_translation_upgrade_access','a:1:{i:0;i:1;}','node_page_view','a:1:{i:0;i:1;}','',5,3,1,'node/%','node/%','View','t','','','a:0:{}',140,'','',-10,''),('node/add','','','_node_add_access','a:0:{}','i18n_node_add_page','a:0:{}','',3,2,0,'','node/add','Add content','t','','','a:0:{}',6,'','',0,'sites/all/modules/i18n/i18n_node/i18n_node.pages.inc'),('node/add/article','','','node_access','a:2:{i:0;s:6:\"create\";i:1;s:7:\"article\";}','node_add','a:1:{i:0;s:7:\"article\";}','',7,3,0,'','node/add/article','Article','i18n_node_type_name','a:2:{i:0;s:7:\"article\";i:1;s:7:\"Article\";}','','a:0:{}',6,'Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.','',0,'modules/node/node.pages.inc'),('node/add/forum','','','node_access','a:2:{i:0;s:6:\"create\";i:1;s:5:\"forum\";}','node_add','a:1:{i:0;s:5:\"forum\";}','',7,3,0,'','node/add/forum','Forum topic','i18n_node_type_name','a:2:{i:0;s:5:\"forum\";i:1;s:11:\"Forum topic\";}','','a:0:{}',6,'A <em>forum topic</em> starts a new discussion thread within a forum.','',0,'modules/node/node.pages.inc'),('node/add/mooring','','','node_access','a:2:{i:0;s:6:\"create\";i:1;s:7:\"mooring\";}','node_add','a:1:{i:0;s:7:\"mooring\";}','',7,3,0,'','node/add/mooring','Mooring','i18n_node_type_name','a:2:{i:0;s:7:\"mooring\";i:1;s:7:\"Mooring\";}','','a:0:{}',6,'A mooring','',0,'modules/node/node.pages.inc'),('node/add/openlayers-example-content','','','node_access','a:2:{i:0;s:6:\"create\";i:1;s:26:\"openlayers_example_content\";}','node_add','a:1:{i:0;s:26:\"openlayers_example_content\";}','',7,3,0,'','node/add/openlayers-example-content','OpenLayers Example Content','i18n_node_type_name','a:2:{i:0;s:26:\"openlayers_example_content\";i:1;s:26:\"OpenLayers Example Content\";}','','a:0:{}',6,'This is an example content type for the OpenLayers module.','',0,'modules/node/node.pages.inc'),('node/add/page','','','node_access','a:2:{i:0;s:6:\"create\";i:1;s:4:\"page\";}','node_add','a:1:{i:0;s:4:\"page\";}','',7,3,0,'','node/add/page','Basic page','i18n_node_type_name','a:2:{i:0;s:4:\"page\";i:1;s:10:\"Basic page\";}','','a:0:{}',6,'Use <em>basic pages</em> for your static content, such as an \'About us\' page.','',0,'modules/node/node.pages.inc'),('node/add/photo-moorings-2010','','','node_access','a:2:{i:0;s:6:\"create\";i:1;s:19:\"photo_moorings_2010\";}','node_add','a:1:{i:0;s:19:\"photo_moorings_2010\";}','',7,3,0,'','node/add/photo-moorings-2010','Photo Moorings 2010','i18n_node_type_name','a:2:{i:0;s:19:\"photo_moorings_2010\";i:1;s:19:\"Photo Moorings 2010\";}','','a:0:{}',6,'','',0,'modules/node/node.pages.inc'),('node/add/photo-moorings-2012','','','node_access','a:2:{i:0;s:6:\"create\";i:1;s:19:\"photo_moorings_2012\";}','node_add','a:1:{i:0;s:19:\"photo_moorings_2012\";}','',7,3,0,'','node/add/photo-moorings-2012','Photo Moorings 2012','i18n_node_type_name','a:2:{i:0;s:19:\"photo_moorings_2012\";i:1;s:19:\"Photo Moorings 2012\";}','','a:0:{}',6,'','',0,'modules/node/node.pages.inc'),('node/add/photo-moorings-2014','','','node_access','a:2:{i:0;s:6:\"create\";i:1;s:19:\"photo_moorings_2014\";}','node_add','a:1:{i:0;s:19:\"photo_moorings_2014\";}','',7,3,0,'','node/add/photo-moorings-2014','Photo Moorings 2014','i18n_node_type_name','a:2:{i:0;s:19:\"photo_moorings_2014\";i:1;s:19:\"Photo Moorings 2014\";}','','a:0:{}',6,'','',0,'modules/node/node.pages.inc'),('node/add/photos','','','node_access','a:2:{i:0;s:6:\"create\";i:1;s:6:\"photos\";}','node_add','a:1:{i:0;s:6:\"photos\";}','',7,3,0,'','node/add/photos','Album','i18n_node_type_name','a:2:{i:0;s:6:\"photos\";i:1;s:5:\"Album\";}','','a:0:{}',6,'Create new photo albums.','',0,'modules/node/node.pages.inc'),('overlay-ajax/%','a:1:{i:1;N;}','','user_access','a:1:{i:0;s:14:\"access overlay\";}','overlay_ajax_render_region','a:1:{i:0;i:1;}','',2,2,0,'','overlay-ajax/%','','t','','','a:0:{}',0,'','',0,''),('overlay/dismiss-message','','','user_access','a:1:{i:0;s:14:\"access overlay\";}','overlay_user_dismiss_message','a:0:{}','',3,2,0,'','overlay/dismiss-message','','t','','','a:0:{}',0,'','',0,''),('photos','','','user_access','a:1:{i:0;s:10:\"view photo\";}','photos_page_default','a:0:{}','',1,1,0,'','photos','Album photos','t','','','a:0:{}',6,'','',0,'sites/all/modules/photos/inc/photos.page.inc'),('photos-access/user/autocomplete/multiple','','','user_access','a:1:{i:0;s:20:\"access user profiles\";}','photos_access_multiple_users_autocomplete','a:0:{}','',15,4,0,'','photos-access/user/autocomplete/multiple','Multiple users autocomplete','t','','','a:0:{}',0,'','',0,''),('photos/ajax','','','user_access','a:1:{i:0;s:12:\"create photo\";}','_photos_ajax_helper','a:0:{}','',3,2,0,'','photos/ajax','Photos ajax helper','t','','','a:0:{}',0,'','',0,''),('photos/album','','','user_access','a:1:{i:0;s:10:\"view photo\";}','photos_page_album','a:0:{}','',3,2,0,'','photos/album','Recent albums','t','','','a:0:{}',6,'','',0,'sites/all/modules/photos/inc/photos.page.inc'),('photos/album/%','a:1:{i:2;s:9:\"node_load\";}','','_photos_access','a:2:{i:0;s:5:\"album\";i:1;i:2;}','photos_album_page','a:1:{i:0;i:2;}','',6,3,0,'','photos/album/%','','t','','','a:0:{}',0,'','',0,'sites/all/modules/photos/inc/photos.album.inc'),('photos/album/%/share','a:1:{i:2;s:9:\"node_load\";}','','_photos_access','a:2:{i:0;s:5:\"album\";i:1;i:2;}','photos_album_share','a:1:{i:0;i:2;}','',13,4,0,'','photos/album/%/share','Share code','t','','','a:0:{}',0,'','',0,'sites/all/modules/photos/inc/photos.album.inc'),('photos/data/album/%','a:1:{i:3;s:9:\"node_load\";}','','node_access','a:2:{i:0;s:4:\"view\";i:1;i:3;}','photos_data_album','a:1:{i:0;i:3;}','',14,4,0,'','photos/data/album/%','','t','','','a:0:{}',0,'','',0,'sites/all/modules/photos/inc/photos.data.inc'),('photos/data/sub_album/%','a:1:{i:3;s:9:\"node_load\";}','','node_access','a:2:{i:0;s:4:\"view\";i:1;i:3;}','photos_data_album','a:1:{i:0;i:3;}','',14,4,0,'','photos/data/sub_album/%','','t','','','a:0:{}',0,'','',0,'sites/all/modules/photos/inc/photos.data.inc'),('photos/data/sub_album/%/block_new','a:1:{i:3;s:9:\"node_load\";}','','node_access','a:2:{i:0;s:4:\"view\";i:1;i:3;}','photos_data_sub_block_slide','a:2:{i:0;i:3;i:1;i:4;}','',29,5,0,'','photos/data/sub_album/%/block_new','','t','','','a:0:{}',0,'','',0,'sites/all/modules/photos/inc/photos.data.inc'),('photos/data/user/%','a:1:{i:3;s:9:\"user_load\";}','','user_access','a:1:{i:0;s:10:\"view photo\";}','photos_data_user_slide','a:1:{i:0;i:3;}','',14,4,0,'','photos/data/user/%','','t','','','a:0:{}',0,'','',0,'sites/all/modules/photos/inc/photos.data.inc'),('photos/image','','','user_access','a:1:{i:0;s:10:\"view photo\";}','photos_page_image','a:0:{}','',3,2,0,'','photos/image','Recent images','t','','','a:0:{}',6,'','',0,'sites/all/modules/photos/inc/photos.page.inc'),('photos/image/%','a:1:{i:2;N;}','','_photos_access','a:2:{i:0;s:9:\"imageView\";i:1;i:2;}','photos_image_page','a:1:{i:0;i:2;}','',6,3,0,'','photos/image/%','','t','','','a:0:{}',0,'','',0,'sites/all/modules/photos/inc/photos.image.inc'),('photos/image/%/delete','a:1:{i:2;N;}','','_photos_access','a:2:{i:0;s:11:\"imageDelete\";i:1;i:2;}','photos_edit_delete','a:1:{i:0;i:2;}','',13,4,0,'','photos/image/%/delete','','t','','','a:0:{}',0,'','',0,'sites/all/modules/photos/inc/photos.edit.inc'),('photos/image/%/edit','a:1:{i:2;N;}','','_photos_access','a:2:{i:0;s:9:\"imageEdit\";i:1;i:2;}','_photos_edit_page_single_image','a:1:{i:0;i:2;}','',13,4,0,'','photos/image/%/edit','','t','','','a:0:{}',0,'','',0,'sites/all/modules/photos/inc/photos.edit.inc'),('photos/image/%/to_sub','a:1:{i:2;N;}','','_photos_access','a:2:{i:0;s:9:\"imageEdit\";i:1;i:2;}','photos_edit_to_sub','a:1:{i:0;i:2;}','',13,4,0,'','photos/image/%/to_sub','Add to sub-album','t','','','a:0:{}',0,'','',0,'sites/all/modules/photos/inc/photos.edit.inc'),('photos/image/%/vote/%','a:2:{i:2;N;i:4;N;}','','_photos_access','a:2:{i:0;s:9:\"imageView\";i:1;i:2;}','photos_image_vote','a:1:{i:0;i:2;}','',26,5,0,'','photos/image/%/vote/%','','t','','','a:0:{}',0,'','',0,'sites/all/modules/photos/inc/photos.image.inc'),('photos/image/update','','','user_access','a:1:{i:0;s:12:\"create photo\";}','photos_edit_update','a:0:{}','',7,3,0,'','photos/image/update','','t','','','a:0:{}',0,'','',0,'sites/all/modules/photos/inc/photos.edit.inc'),('photos/image/update/load','','','user_access','a:1:{i:0;s:12:\"create photo\";}','photos_edit_update_load','a:0:{}','',15,4,0,'','photos/image/update/load','','t','','','a:0:{}',0,'','',0,'sites/all/modules/photos/inc/photos.edit.inc'),('photos/share','','','user_access','a:1:{i:0;s:12:\"create photo\";}','photos_share','a:0:{}','',3,2,0,'','photos/share','Share code','t','','','a:0:{}',6,'','',0,'sites/all/modules/photos/inc/photos.page.inc'),('photos/sub_album/%','a:1:{i:2;s:9:\"node_load\";}','','_photos_access','a:2:{i:0;s:8:\"subAlbum\";i:1;i:2;}','photos_sub_album_page','a:1:{i:0;i:2;}','',6,3,0,'','photos/sub_album/%','','t','','','a:0:{}',0,'','',0,'sites/all/modules/photos/inc/photos.album.inc'),('photos/sub_album/%/share','a:1:{i:2;s:9:\"node_load\";}','','_photos_access','a:2:{i:0;s:8:\"subAlbum\";i:1;i:2;}','photos_album_share','a:1:{i:0;i:2;}','',13,4,0,'','photos/sub_album/%/share','Share code','t','','','a:0:{}',0,'','',0,'sites/all/modules/photos/inc/photos.album.inc'),('photos/upload','','','user_access','a:1:{i:0;s:12:\"create photo\";}','photos_edit_upload','a:0:{}','',3,2,0,'','photos/upload','Image upload','t','','','a:0:{}',6,'','',9,'sites/all/modules/photos/inc/photos.edit.inc'),('photos/user/%/album','a:1:{i:2;s:22:\"user_uid_optional_load\";}','a:1:{i:2;s:24:\"user_uid_optional_to_arg\";}','_photos_access','a:2:{i:0;s:8:\"viewUser\";i:1;i:2;}','photos_page_album','a:1:{i:0;i:2;}','',13,4,0,'','photos/user/%/album','My albums','photos_page_title','a:2:{i:0;i:2;i:1;s:6:\"albums\";}','','a:0:{}',6,'','',0,'sites/all/modules/photos/inc/photos.page.inc'),('photos/user/%/album-sort','a:1:{i:2;s:22:\"user_uid_optional_load\";}','a:1:{i:2;s:24:\"user_uid_optional_to_arg\";}','_photos_access','a:2:{i:0;s:8:\"viewUser\";i:1;i:2;}','photos_edit_sort_album_page','a:1:{i:0;i:2;}','',13,4,0,'','photos/user/%/album-sort','Re-arrange My Albums','t','','','a:0:{}',0,'','',0,'sites/all/modules/photos/inc/photos.edit.inc'),('photos/user/%/image','a:1:{i:2;s:22:\"user_uid_optional_load\";}','a:1:{i:2;s:24:\"user_uid_optional_to_arg\";}','_photos_access','a:2:{i:0;s:8:\"viewUser\";i:1;i:2;}','photos_page_image','a:1:{i:0;i:2;}','',13,4,0,'','photos/user/%/image','My images','photos_page_title','a:2:{i:0;i:2;i:1;s:6:\"images\";}','','a:0:{}',6,'','',0,'sites/all/modules/photos/inc/photos.page.inc'),('photos/zoom/%','a:1:{i:2;N;}','','_photos_access','a:2:{i:0;s:9:\"imageView\";i:1;i:2;}','photos_down_page','a:1:{i:0;i:2;}','',6,3,0,'','photos/zoom/%','','t','','','a:0:{}',0,'','',0,'sites/all/modules/photos/inc/photos.down.inc'),('photos/zoom/%/original','a:1:{i:2;N;}','','_photos_access','a:2:{i:0;s:9:\"imageOrig\";i:1;i:2;}','photos_down_page','a:1:{i:0;i:2;}','',13,4,0,'','photos/zoom/%/original','','t','','','a:0:{}',0,'','',0,'sites/all/modules/photos/inc/photos.down.inc'),('privacy/pass/%/%','a:2:{i:2;N;i:3;s:9:\"node_load\";}','','user_access','a:1:{i:0;s:14:\"access content\";}','photos_access_page','a:1:{i:0;i:3;}','',12,4,0,'','privacy/pass/%/%','Please enter password','t','','','a:0:{}',0,'','',0,''),('rss.xml','','','user_access','a:1:{i:0;s:14:\"access content\";}','node_feed','a:2:{i:0;b:0;i:1;a:0:{}}','',1,1,0,'','rss.xml','RSS feed','t','','','a:0:{}',0,'','',0,''),('sites/default/files/styles/%','a:1:{i:4;s:16:\"image_style_load\";}','','1','a:0:{}','image_style_deliver','a:1:{i:0;i:4;}','',30,5,0,'','sites/default/files/styles/%','Generate image style','t','','','a:0:{}',0,'','',0,''),('system/ajax','','','1','a:0:{}','ajax_form_callback','a:0:{}','ajax_deliver',3,2,0,'','system/ajax','AHAH callback','t','','ajax_base_page_theme','a:0:{}',0,'','',0,'includes/form.inc'),('system/files','','','1','a:0:{}','file_download','a:1:{i:0;s:7:\"private\";}','',3,2,0,'','system/files','File download','t','','','a:0:{}',0,'','',0,''),('system/files/styles/%','a:1:{i:3;s:16:\"image_style_load\";}','','1','a:0:{}','image_style_deliver','a:1:{i:0;i:3;}','',14,4,0,'','system/files/styles/%','Generate image style','t','','','a:0:{}',0,'','',0,''),('system/temporary','','','1','a:0:{}','file_download','a:1:{i:0;s:9:\"temporary\";}','',3,2,0,'','system/temporary','Temporary files','t','','','a:0:{}',0,'','',0,''),('system/timezone','','','1','a:0:{}','system_timezone','a:0:{}','',3,2,0,'','system/timezone','Time zone','t','','','a:0:{}',0,'','',0,'modules/system/system.admin.inc'),('taxonomy/autocomplete','','','user_access','a:1:{i:0;s:14:\"access content\";}','i18n_taxonomy_autocomplete_field','a:0:{}','',3,2,0,'','taxonomy/autocomplete','Autocomplete taxonomy','t','','','a:0:{}',0,'','',0,'sites/all/modules/i18n/i18n_taxonomy/i18n_taxonomy.pages.inc'),('taxonomy/term/%','a:1:{i:2;s:18:\"taxonomy_term_load\";}','','user_access','a:1:{i:0;s:14:\"access content\";}','i18n_taxonomy_term_page','a:1:{i:0;i:2;}','',6,3,0,'','taxonomy/term/%','Taxonomy term','i18n_taxonomy_term_name','a:1:{i:0;i:2;}','','a:0:{}',6,'','',0,'sites/all/modules/i18n/i18n_taxonomy/i18n_taxonomy.pages.inc'),('taxonomy/term/%/edit','a:1:{i:2;s:18:\"taxonomy_term_load\";}','','taxonomy_term_edit_access','a:1:{i:0;i:2;}','drupal_get_form','a:3:{i:0;s:18:\"taxonomy_form_term\";i:1;i:2;i:2;N;}','',13,4,1,'taxonomy/term/%','taxonomy/term/%','Edit','t','','','a:0:{}',132,'','',10,'modules/taxonomy/taxonomy.admin.inc'),('taxonomy/term/%/feed','a:1:{i:2;s:18:\"taxonomy_term_load\";}','','user_access','a:1:{i:0;s:14:\"access content\";}','taxonomy_term_feed','a:1:{i:0;i:2;}','',13,4,0,'','taxonomy/term/%/feed','Taxonomy term','taxonomy_term_title','a:1:{i:0;i:2;}','','a:0:{}',0,'','',0,'modules/taxonomy/taxonomy.pages.inc'),('taxonomy/term/%/translate','a:1:{i:2;s:18:\"taxonomy_term_load\";}','','i18n_object_translate_access','a:2:{i:0;s:13:\"taxonomy_term\";i:1;i:2;}','i18n_page_translate_tab','a:2:{i:0;s:13:\"taxonomy_term\";i:1;i:2;}','',13,4,1,'taxonomy/term/%','taxonomy/term/%','Translate','t','','','a:0:{}',132,'','',10,'sites/all/modules/i18n/i18n.pages.inc'),('taxonomy/term/%/translate/%','a:2:{i:2;s:18:\"taxonomy_term_load\";i:4;s:18:\"i18n_language_load\";}','','i18n_object_translate_access','a:2:{i:0;s:13:\"taxonomy_term\";i:1;i:2;}','i18n_page_translate_tab','a:3:{i:0;s:13:\"taxonomy_term\";i:1;i:2;i:2;i:4;}','',26,5,0,'','taxonomy/term/%/translate/%','Translate','t','','','a:0:{}',0,'','',0,'sites/all/modules/i18n/i18n.pages.inc'),('taxonomy/term/%/view','a:1:{i:2;s:18:\"taxonomy_term_load\";}','','user_access','a:1:{i:0;s:14:\"access content\";}','i18n_taxonomy_term_page','a:1:{i:0;i:2;}','',13,4,1,'taxonomy/term/%','taxonomy/term/%','View','t','','','a:0:{}',140,'','',0,'sites/all/modules/i18n/i18n_taxonomy/i18n_taxonomy.pages.inc'),('toolbar/toggle','','','user_access','a:1:{i:0;s:14:\"access toolbar\";}','toolbar_toggle_page','a:0:{}','',3,2,0,'','toolbar/toggle','Toggle drawer visibility','t','','','a:0:{}',0,'','',0,''),('user','','','1','a:0:{}','user_page','a:0:{}','',1,1,0,'','user','User account','user_menu_title','','','a:0:{}',6,'','',-10,'modules/user/user.pages.inc'),('user/%','a:1:{i:1;s:9:\"user_load\";}','','user_view_access','a:1:{i:0;i:1;}','user_view_page','a:1:{i:0;i:1;}','',2,2,0,'','user/%','My account','user_page_title','a:1:{i:0;i:1;}','','a:0:{}',6,'','',0,''),('user/%/cancel','a:1:{i:1;s:9:\"user_load\";}','','user_cancel_access','a:1:{i:0;i:1;}','drupal_get_form','a:2:{i:0;s:24:\"user_cancel_confirm_form\";i:1;i:1;}','',5,3,0,'','user/%/cancel','Cancel account','t','','','a:0:{}',6,'','',0,'modules/user/user.pages.inc'),('user/%/cancel/confirm/%/%','a:3:{i:1;s:9:\"user_load\";i:4;N;i:5;N;}','','user_cancel_access','a:1:{i:0;i:1;}','user_cancel_confirm','a:3:{i:0;i:1;i:1;i:4;i:2;i:5;}','',44,6,0,'','user/%/cancel/confirm/%/%','Confirm account cancellation','t','','','a:0:{}',6,'','',0,'modules/user/user.pages.inc'),('user/%/contact','a:1:{i:1;s:9:\"user_load\";}','','_contact_personal_tab_access','a:1:{i:0;i:1;}','drupal_get_form','a:2:{i:0;s:21:\"contact_personal_form\";i:1;i:1;}','',5,3,1,'user/%','user/%','Contact','t','','','a:0:{}',132,'','',2,'modules/contact/contact.pages.inc'),('user/%/edit','a:1:{i:1;s:9:\"user_load\";}','','user_edit_access','a:1:{i:0;i:1;}','drupal_get_form','a:2:{i:0;s:17:\"user_profile_form\";i:1;i:1;}','',5,3,1,'user/%','user/%','Edit','t','','','a:0:{}',132,'','',0,'modules/user/user.pages.inc'),('user/%/edit/account','a:1:{i:1;a:1:{s:18:\"user_category_load\";a:2:{i:0;s:4:\"%map\";i:1;s:6:\"%index\";}}}','','user_edit_access','a:1:{i:0;i:1;}','drupal_get_form','a:2:{i:0;s:17:\"user_profile_form\";i:1;i:1;}','',11,4,1,'user/%/edit','user/%','Account','t','','','a:0:{}',140,'','',0,'modules/user/user.pages.inc'),('user/%/imce','a:1:{i:1;s:9:\"user_load\";}','','imce_user_page_access','a:1:{i:0;i:1;}','imce_user_page','a:1:{i:0;i:1;}','',5,3,1,'user/%','user/%','File browser','t','','','a:0:{}',132,'','',10,'sites/all/modules/imce/inc/imce.page.inc'),('user/%/shortcuts','a:1:{i:1;s:9:\"user_load\";}','','shortcut_set_switch_access','a:1:{i:0;i:1;}','drupal_get_form','a:2:{i:0;s:19:\"shortcut_set_switch\";i:1;i:1;}','',5,3,1,'user/%','user/%','Shortcuts','t','','','a:0:{}',132,'','',0,'modules/shortcut/shortcut.admin.inc'),('user/%/view','a:1:{i:1;s:9:\"user_load\";}','','user_view_access','a:1:{i:0;i:1;}','user_view_page','a:1:{i:0;i:1;}','',5,3,1,'user/%','user/%','View','t','','','a:0:{}',140,'','',-10,''),('user/autocomplete','','','user_access','a:1:{i:0;s:20:\"access user profiles\";}','user_autocomplete','a:0:{}','',3,2,0,'','user/autocomplete','User autocomplete','t','','','a:0:{}',0,'','',0,'modules/user/user.pages.inc'),('user/login','','','user_is_anonymous','a:0:{}','user_page','a:0:{}','',3,2,1,'user','user','Log in','t','','','a:0:{}',140,'','',0,'modules/user/user.pages.inc'),('user/logout','','','user_is_logged_in','a:0:{}','user_logout','a:0:{}','',3,2,0,'','user/logout','Log out','t','','','a:0:{}',6,'','',10,'modules/user/user.pages.inc'),('user/password','','','1','a:0:{}','drupal_get_form','a:1:{i:0;s:9:\"user_pass\";}','',3,2,1,'user','user','Request new password','t','','','a:0:{}',132,'','',0,'modules/user/user.pages.inc'),('user/register','','','user_register_access','a:0:{}','drupal_get_form','a:1:{i:0;s:18:\"user_register_form\";}','',3,2,1,'user','user','Create new account','t','','','a:0:{}',132,'','',0,''),('user/reset/%/%/%','a:3:{i:2;N;i:3;N;i:4;N;}','','1','a:0:{}','drupal_get_form','a:4:{i:0;s:15:\"user_pass_reset\";i:1;i:2;i:2;i:3;i:3;i:4;}','',24,5,0,'','user/reset/%/%/%','Reset password','t','','','a:0:{}',0,'','',0,'modules/user/user.pages.inc'),('views/ajax','','','1','a:0:{}','views_ajax','a:0:{}','ajax_deliver',3,2,0,'','views/ajax','Views','t','','ajax_base_page_theme','a:0:{}',0,'Ajax callback for view loading.','',0,'sites/all/modules/views/includes/ajax.inc');
/*!40000 ALTER TABLE `menu_router` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `node`
--

DROP TABLE IF EXISTS `node`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `node` (
  `nid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'The primary identifier for a node.',
  `vid` int(10) unsigned DEFAULT NULL COMMENT 'The current node_revision.vid version identifier.',
  `type` varchar(32) NOT NULL DEFAULT '' COMMENT 'The node_type.type of this node.',
  `language` varchar(12) NOT NULL DEFAULT '' COMMENT 'The languages.language of this node.',
  `title` varchar(255) NOT NULL DEFAULT '' COMMENT 'The title of this node, always treated as non-markup plain text.',
  `uid` int(11) NOT NULL DEFAULT 0 COMMENT 'The users.uid that owns this node; initially, this is the user that created it.',
  `status` int(11) NOT NULL DEFAULT 1 COMMENT 'Boolean indicating whether the node is published (visible to non-administrators).',
  `created` int(11) NOT NULL DEFAULT 0 COMMENT 'The Unix timestamp when the node was created.',
  `changed` int(11) NOT NULL DEFAULT 0 COMMENT 'The Unix timestamp when the node was most recently saved.',
  `comment` int(11) NOT NULL DEFAULT 0 COMMENT 'Whether comments are allowed on this node: 0 = no, 1 = closed (read only), 2 = open (read/write).',
  `promote` int(11) NOT NULL DEFAULT 0 COMMENT 'Boolean indicating whether the node should be displayed on the front page.',
  `sticky` int(11) NOT NULL DEFAULT 0 COMMENT 'Boolean indicating whether the node should be displayed at the top of lists in which it appears.',
  `tnid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'The translation set id for this node, which equals the node id of the source post in each set.',
  `translate` int(11) NOT NULL DEFAULT 0 COMMENT 'A boolean indicating whether this translation page needs to be updated.',
  PRIMARY KEY (`nid`),
  UNIQUE KEY `vid` (`vid`),
  KEY `node_changed` (`changed`),
  KEY `node_created` (`created`),
  KEY `node_frontpage` (`promote`,`status`,`sticky`,`created`),
  KEY `node_status_type` (`status`,`type`,`nid`),
  KEY `node_title_type` (`title`,`type`(4)),
  KEY `node_type` (`type`(4)),
  KEY `uid` (`uid`),
  KEY `tnid` (`tnid`),
  KEY `translate` (`translate`),
  KEY `language` (`language`)
) ENGINE=InnoDB AUTO_INCREMENT=132 DEFAULT CHARSET=utf8 COMMENT='The base table for nodes.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `node`
--

LOCK TABLES `node` WRITE;
/*!40000 ALTER TABLE `node` DISABLE KEYS */;
INSERT INTO `node` VALUES (1,1,'page','und','MORSea Gallery',1,1,1410354902,1413466311,1,0,0,0,0),(2,2,'page','und','Contacts',1,1,1410354967,1411563255,1,0,0,0,0),(3,3,'page','en','Cooperations',1,1,1410354991,1442139085,1,0,0,0,0),(4,4,'page','en','Data access',1,1,1410355045,1652168648,1,0,0,0,0),(7,7,'page','en','Ancillary activities',1,1,1410367592,1428587337,1,0,0,7,0),(8,8,'page','und','The network',1,1,1410367644,1411577871,1,0,0,0,0),(12,12,'page','en','The Moorings',1,1,1412077470,1431184620,1,0,0,12,0),(13,13,'page','en','2011/12 - PNRA XXVII',1,1,1412077688,1533202028,1,0,0,13,0),(14,14,'page','en','2013/14 - PNRA XXIX',1,1,1412078001,1533214033,1,0,0,14,0),(15,15,'page','en','Pubblications',1,1,1412082460,1448566496,1,0,0,0,0),(21,21,'photo_moorings_2014','en','Mooring B',0,1,1412972054,1428591473,1,0,0,0,0),(22,22,'photo_moorings_2014','en','Mooring L',0,1,1412972029,1428591495,1,0,0,0,0),(23,23,'photo_moorings_2014','en','Mooring G',0,1,1412971995,1428591512,1,0,0,0,0),(24,24,'photo_moorings_2014','en','Mooring D',0,1,1412971963,1428591529,1,0,0,0,0),(26,26,'photo_moorings_2012','en','Mooring L',0,1,1415043078,1442135909,1,0,0,26,0),(28,28,'page','en','Mooring details',1,1,1413541382,1442136277,1,0,0,28,0),(29,29,'photos','en','Photos',1,1,1413803194,1533041974,1,0,0,0,0),(30,30,'page','en','Ancillary Activities A',1,1,1413893392,1538039217,1,0,0,0,0),(31,31,'page','und','Ancillary Activities B',1,1,1413893425,1413893425,1,0,0,0,0),(32,32,'page','en','Ancillary Activities C',1,1,1413893439,1538039370,1,0,0,0,0),(33,33,'page','en','People',1,1,1414347762,1533216243,1,0,0,0,0),(34,34,'photo_moorings_2012','en','Mooring B',0,1,1415042382,1428591453,1,0,0,0,0),(35,35,'photo_moorings_2012','en','Mooring D',0,1,1415042464,1428591436,1,0,0,0,0),(36,36,'photo_moorings_2012','en','Mooring G',0,1,1415042637,1428591419,1,0,0,0,0),(37,37,'page','en','Metadati',1,1,1415616636,1441806897,1,0,0,37,0),(39,39,'page','und','Metadati Mooring L 2012',1,1,1415740687,1425983387,1,0,0,0,0),(40,40,'page','und','Metadati Mooring L 2014',1,1,1415875064,1425983744,1,0,0,0,0),(41,41,'page','und','Metadati Mooring G 2012',1,1,1415879427,1427642798,1,0,0,0,0),(42,42,'page','und','Metadati Mooring G 2014',1,1,1415882786,1425983086,1,0,0,0,0),(43,43,'page','und','Metadati Mooring D 2012',1,1,1415884443,1425973762,1,0,0,0,0),(44,44,'page','und','Metadati Mooring D 2014',1,1,1415908968,1425980840,1,0,0,0,0),(45,45,'page','en','2014/15 - PNRA XXX',1,1,1416760837,1442139021,1,0,0,45,0),(46,46,'page','en','News',1,1,1416922072,1448569430,1,0,0,0,0),(57,57,'page','und','2010_D_rcm7_11559_1078m',1,1,1425929508,1425930137,1,0,0,0,0),(58,58,'page','und','2010_D_sbe16_1433_463m',1,1,1425930636,1425930993,1,0,0,0,0),(59,59,'page','und','2010_D_rcm7_11560_494m',1,1,1425933439,1425933439,1,0,0,0,0),(60,60,'page','und','2010_D_rcm9_975_838m',1,1,1425972619,1425972619,1,0,0,0,0),(61,61,'page','und','2010_D_sbe16_1437_1036m',1,1,1425972986,1425972986,1,0,0,0,0),(62,62,'page','und','2010_D_sbe39_1210_694m',1,1,1425973252,1425973252,1,0,0,0,0),(63,63,'page','und','2010_D_sbe39_1213_950m',1,1,1425973661,1425973670,1,0,0,0,0),(64,64,'page','und','2012_D_rcm7_9022_539m',1,1,1425978788,1425978788,1,0,0,0,0),(65,65,'page','und','2012_D_rcm7_11199_875m',1,1,1425978993,1425979002,1,0,0,0,0),(66,66,'page','und','2012_D_rcm7_11565_1112m',1,1,1425979212,1425979212,1,0,0,0,0),(67,67,'page','und','2012_D_sbe16_1433_509m',1,1,1425980027,1425980027,1,0,0,0,0),(68,68,'page','und','2012_D_sbe16_1437_1069m',1,1,1425980201,1425980201,1,0,0,0,0),(69,69,'page','und','2012_D_sbe39_1211_966m',1,1,1425980361,1425980361,1,0,0,0,0),(70,70,'page','und','2012_D_sbe39_1214_739m',1,1,1425980494,1425980494,1,0,0,0,0),(71,71,'page','und','2010_G_rcm7_11199_454m',1,1,1425981077,1425981117,1,0,0,0,0),(72,72,'page','und','2010_G_rcm7_11565_514m',1,1,1425981295,1425981318,1,0,0,0,0),(73,73,'page','und','2010_G_sbe39_1211_474m',1,1,1425981537,1425981537,1,0,0,0,0),(74,74,'page','und','2010_G_sbe39_1214_494m',1,1,1425981787,1425981787,1,0,0,0,0),(75,75,'page','und','2012_G_rcm7_9016_455m',1,1,1425982132,1425982153,1,0,0,0,0),(76,76,'page','und','2012_G_rcm7_11560_517m',1,1,1425982588,1425982588,1,0,0,0,0),(77,77,'page','und','2012_G_sbe39_1213_495m',1,1,1425982828,1425982828,1,0,0,0,0),(78,78,'page','und','2012_G_sbe39_1210_475m',1,1,1425983011,1425983011,1,0,0,0,0),(79,79,'page','und','2010_L_L_rcm7_11974_40m',1,1,1425983219,1425983292,1,0,0,0,0),(80,80,'page','und','2012_L_L_rcm7_11559_144m',1,1,1425983477,1425983477,1,0,0,0,0),(81,81,'page','und','2012_L_L_rcm7_11974_62m',1,1,1425983650,1425983650,1,0,0,0,0),(82,82,'page','en','Tide',1,1,1426158451,1442139095,1,0,0,0,0),(83,83,'page','en','Metadati Mooring B 2012',1,1,1427644117,1429105664,1,0,0,0,0),(84,84,'page','en','Metadati Mooring G 201B',1,1,1427647727,1429106469,1,0,0,0,0),(85,85,'page','und','CA09-10_XXVItaEsp_NZ',1,1,1428306613,1428306634,1,0,0,0,0),(86,86,'page','und','CA09-10_XXVItaEsp_SA',1,1,1428306995,1428307038,1,0,0,0,0),(87,87,'page','und','CA10-11_XXVItaEsp_SA',1,1,1428307402,1428307444,1,0,0,0,0),(88,88,'page','und','CA11-12_XXVII_ItaEsp_SA',1,1,1428307769,1428307842,1,0,0,0,0),(89,89,'page','und','CA11-12_XXVII_ItaEsp_NZ',1,1,1428319417,1428319417,1,0,0,0,0),(90,90,'page','und','CA12-13_XXVIII_ItaEsp_SA',1,1,1428406708,1428406708,1,0,0,0,0),(91,91,'page','und','CA12-13_XXVIII_ItaEsp_NZ',1,1,1428406957,1428407015,1,0,0,0,0),(92,92,'page','und','CA13-14_XXIX_ItaEsp_NZ',1,1,1428407372,1428407372,1,0,0,0,0),(93,93,'page','und','CA14-15_XXX_ItaEsp_NZ',1,1,1428407646,1428407646,1,0,0,0,0),(94,94,'page','und','XBT INTERNATIONAL BACKGROUND',1,1,1428417607,1428417792,1,0,0,0,0),(95,95,'page','und','INSTRUMENTATION',1,1,1428417694,1428417718,1,0,0,0,0),(96,96,'page','it','Ancillary activities',1,1,1428587231,1428587701,1,0,0,7,0),(98,98,'page','it','The Moorings',1,1,1428589286,1428589286,1,0,0,12,0),(99,99,'page','en','Home Page',1,1,1428592060,1428610151,1,0,0,99,0),(102,102,'page','en','B_rcm9_1210_543m',1,1,1429105247,1429105278,1,0,0,0,0),(103,103,'page','en','B_sbe16_4494_533m',1,1,1429105440,1429105440,1,0,0,0,0),(104,104,'page','en','B_sbe37_4118_280m',1,1,1429105632,1429105632,1,0,0,0,0),(105,105,'page','en','B_2012_rcm7_9474_229m',1,1,1429105799,1429105799,1,0,0,0,0),(106,106,'page','en','B_2012_sbe16_4494_500m',1,1,1429105959,1429105959,1,0,0,0,0),(107,107,'page','en','B_2012_sbe37_4118_228m',1,1,1429106077,1429106077,1,0,0,0,0),(108,108,'page','en','ARGO functioning',1,1,1438022206,1438023569,1,0,0,0,0),(109,109,'page','en','ARGO',1,1,1438022618,1438023358,1,0,0,0,0),(110,110,'page','en','ARGO 2013',1,1,1438023627,1438112788,1,0,0,0,0),(111,111,'page','en','ARGO 2014',1,1,1438023654,1438113456,1,0,0,0,0),(112,112,'page','en','ARGO 2015',1,1,1438023678,1442070330,1,0,0,0,0),(113,113,'page','it','Metadati',1,1,1442070585,1442070585,1,0,0,37,0),(115,115,'photo_moorings_2010','en','Mooring L',0,1,1442135430,1442139229,1,0,0,115,0),(116,116,'photo_moorings_2010','en','Mooring B',0,1,1442135650,1442139550,1,0,0,116,0),(117,117,'photo_moorings_2010','en','Mooring G',0,1,1442135697,1442139529,1,0,0,117,0),(118,118,'photo_moorings_2010','und','Mooring D',0,1,1442135746,1442135746,1,0,0,0,0),(119,119,'page','it','Dettagli dei Moorings',1,1,1442137500,1442137500,1,0,0,28,0),(120,120,'photo_moorings_2012','it','Mooring L',1,1,1442137566,1442137566,1,1,0,26,0),(121,121,'photo_moorings_2010','it','Mooring L',1,1,1442139504,1442139504,1,1,0,115,0),(122,122,'photo_moorings_2010','it','Mooring G',1,1,1442139538,1442139538,1,1,0,117,0),(123,123,'photo_moorings_2010','it','Mooring B',1,1,1442139560,1442139560,1,1,0,116,0),(124,124,'page','en','2015/16 - PNRA XXXI',1,1,1533199683,1533215758,1,0,0,124,0),(125,125,'page','it','2013/14 - PNRA XXIX',1,1,1533201951,1533201951,1,0,0,14,0),(126,126,'page','it','2011/12 - PNRA XXVII',1,1,1533202042,1533202042,1,0,0,13,0),(127,127,'page','it','2014/15 - PNRA XXX',1,1,1533202064,1533202064,1,0,0,45,0),(128,128,'page','it','2015/16 - PNRA XXXI',1,1,1533214667,1533214667,1,0,0,124,0),(129,129,'page','en','2016/17 - PNRA XXXII',1,1,1533214901,1533223974,1,0,0,0,0),(130,130,'page','en','2017/18 - PNRA XXXIII',1,1,1538040079,1538041205,1,0,0,0,0),(131,131,'page','en','Prova',1,1,1652167761,1652167761,1,0,0,0,0);
/*!40000 ALTER TABLE `node` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `node_access`
--

DROP TABLE IF EXISTS `node_access`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `node_access` (
  `nid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'The node.nid this record affects.',
  `gid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'The grant ID a user must possess in the specified realm to gain this row’s privileges on the node.',
  `realm` varchar(255) NOT NULL DEFAULT '' COMMENT 'The realm in which the user must possess the grant ID. Each node access node can define one or more realms.',
  `grant_view` tinyint(3) unsigned NOT NULL DEFAULT 0 COMMENT 'Boolean indicating whether a user with the realm/grant pair can view this node.',
  `grant_update` tinyint(3) unsigned NOT NULL DEFAULT 0 COMMENT 'Boolean indicating whether a user with the realm/grant pair can edit this node.',
  `grant_delete` tinyint(3) unsigned NOT NULL DEFAULT 0 COMMENT 'Boolean indicating whether a user with the realm/grant pair can delete this node.',
  PRIMARY KEY (`nid`,`gid`,`realm`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Identifies which realm/grant pairs a user must possess in...';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `node_access`
--

LOCK TABLES `node_access` WRITE;
/*!40000 ALTER TABLE `node_access` DISABLE KEYS */;
INSERT INTO `node_access` VALUES (1,0,'all',1,0,0),(2,0,'all',1,0,0),(3,0,'all',1,0,0),(4,0,'all',1,0,0),(7,0,'all',1,0,0),(8,0,'all',1,0,0),(12,0,'all',1,0,0),(13,0,'all',1,0,0),(14,0,'all',1,0,0),(15,0,'all',1,0,0),(21,0,'all',1,0,0),(22,0,'all',1,0,0),(23,0,'all',1,0,0),(24,0,'all',1,0,0),(26,0,'all',1,0,0),(28,0,'all',1,0,0),(29,0,'all',1,0,0),(30,0,'all',1,0,0),(31,0,'all',1,0,0),(32,0,'all',1,0,0),(33,0,'all',1,0,0),(34,0,'all',1,0,0),(35,0,'all',1,0,0),(36,0,'all',1,0,0),(37,0,'all',1,0,0),(39,0,'all',1,0,0),(40,0,'all',1,0,0),(41,0,'all',1,0,0),(42,0,'all',1,0,0),(43,0,'all',1,0,0),(44,0,'all',1,0,0),(45,0,'all',1,0,0),(46,0,'all',1,0,0),(57,0,'all',1,0,0),(58,0,'all',1,0,0),(59,0,'all',1,0,0),(60,0,'all',1,0,0),(61,0,'all',1,0,0),(62,0,'all',1,0,0),(63,0,'all',1,0,0),(64,0,'all',1,0,0),(65,0,'all',1,0,0),(66,0,'all',1,0,0),(67,0,'all',1,0,0),(68,0,'all',1,0,0),(69,0,'all',1,0,0),(70,0,'all',1,0,0),(71,0,'all',1,0,0),(72,0,'all',1,0,0),(73,0,'all',1,0,0),(74,0,'all',1,0,0),(75,0,'all',1,0,0),(76,0,'all',1,0,0),(77,0,'all',1,0,0),(78,0,'all',1,0,0),(79,0,'all',1,0,0),(80,0,'all',1,0,0),(81,0,'all',1,0,0),(82,0,'all',1,0,0),(83,0,'all',1,0,0),(84,0,'all',1,0,0),(85,0,'all',1,0,0),(86,0,'all',1,0,0),(87,0,'all',1,0,0),(88,0,'all',1,0,0),(89,0,'all',1,0,0),(90,0,'all',1,0,0),(91,0,'all',1,0,0),(92,0,'all',1,0,0),(93,0,'all',1,0,0),(94,0,'all',1,0,0),(95,0,'all',1,0,0),(96,0,'all',1,0,0),(98,0,'all',1,0,0),(99,0,'all',1,0,0),(102,0,'all',1,0,0),(103,0,'all',1,0,0),(104,0,'all',1,0,0),(105,0,'all',1,0,0),(106,0,'all',1,0,0),(107,0,'all',1,0,0),(108,0,'all',1,0,0),(109,0,'all',1,0,0),(110,0,'all',1,0,0),(111,0,'all',1,0,0),(112,0,'all',1,0,0),(113,0,'all',1,0,0),(115,0,'all',1,0,0),(116,0,'all',1,0,0),(117,0,'all',1,0,0),(118,0,'all',1,0,0),(119,0,'all',1,0,0),(120,0,'all',1,0,0),(121,0,'all',1,0,0),(122,0,'all',1,0,0),(123,0,'all',1,0,0),(124,0,'all',1,0,0),(125,0,'all',1,0,0),(126,0,'all',1,0,0),(127,0,'all',1,0,0),(128,0,'all',1,0,0),(129,0,'all',1,0,0),(130,0,'all',1,0,0),(131,0,'all',1,0,0);
/*!40000 ALTER TABLE `node_access` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `node_comment_statistics`
--

DROP TABLE IF EXISTS `node_comment_statistics`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `node_comment_statistics` (
  `nid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'The node.nid for which the statistics are compiled.',
  `cid` int(11) NOT NULL DEFAULT 0 COMMENT 'The comment.cid of the last comment.',
  `last_comment_timestamp` int(11) NOT NULL DEFAULT 0 COMMENT 'The Unix timestamp of the last comment that was posted within this node, from comment.changed.',
  `last_comment_name` varchar(60) DEFAULT NULL COMMENT 'The name of the latest author to post a comment on this node, from comment.name.',
  `last_comment_uid` int(11) NOT NULL DEFAULT 0 COMMENT 'The user ID of the latest author to post a comment on this node, from comment.uid.',
  `comment_count` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'The total number of comments on this node.',
  PRIMARY KEY (`nid`),
  KEY `node_comment_timestamp` (`last_comment_timestamp`),
  KEY `comment_count` (`comment_count`),
  KEY `last_comment_uid` (`last_comment_uid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Maintains statistics of node and comments posts to show ...';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `node_comment_statistics`
--

LOCK TABLES `node_comment_statistics` WRITE;
/*!40000 ALTER TABLE `node_comment_statistics` DISABLE KEYS */;
INSERT INTO `node_comment_statistics` VALUES (1,0,1410354902,NULL,1,0),(2,0,1410354967,NULL,1,0),(3,0,1410354991,NULL,1,0),(4,0,1410355045,NULL,1,0),(7,0,1410367592,NULL,1,0),(8,0,1410367644,NULL,1,0),(12,0,1412077470,NULL,1,0),(13,0,1412077688,NULL,1,0),(14,0,1412078001,NULL,1,0),(15,0,1412082460,NULL,1,0),(21,0,1412948575,'',1,0),(22,0,1412948676,NULL,1,0),(23,0,1412949488,NULL,1,0),(24,0,1412949539,NULL,1,0),(26,0,1413538557,NULL,1,0),(28,0,1413541382,NULL,1,0),(29,0,1413803194,'',1,0),(30,0,1413893392,NULL,1,0),(31,0,1413893425,NULL,1,0),(32,0,1413893439,NULL,1,0),(33,0,1414347762,NULL,1,0),(34,0,1415042322,NULL,1,0),(35,0,1415042464,NULL,0,0),(36,0,1415042570,NULL,1,0),(37,0,1415616636,NULL,1,0),(39,0,1415740687,NULL,1,0),(40,0,1415875064,NULL,1,0),(41,0,1415879427,NULL,1,0),(42,0,1415882786,NULL,1,0),(43,0,1415884443,NULL,1,0),(44,0,1415908968,NULL,1,0),(45,0,1416760837,NULL,1,0),(46,0,1416922072,NULL,1,0),(57,0,1425929508,NULL,1,0),(58,0,1425930636,NULL,1,0),(59,0,1425933439,NULL,1,0),(60,0,1425972619,NULL,1,0),(61,0,1425972986,NULL,1,0),(62,0,1425973252,NULL,1,0),(63,0,1425973661,NULL,1,0),(64,0,1425978788,NULL,1,0),(65,0,1425978993,NULL,1,0),(66,0,1425979212,NULL,1,0),(67,0,1425980027,NULL,1,0),(68,0,1425980201,NULL,1,0),(69,0,1425980361,NULL,1,0),(70,0,1425980494,NULL,1,0),(71,0,1425981077,NULL,1,0),(72,0,1425981295,NULL,1,0),(73,0,1425981537,NULL,1,0),(74,0,1425981787,NULL,1,0),(75,0,1425982132,NULL,1,0),(76,0,1425982588,NULL,1,0),(77,0,1425982828,NULL,1,0),(78,0,1425983011,NULL,1,0),(79,0,1425983219,NULL,1,0),(80,0,1425983477,NULL,1,0),(81,0,1425983650,NULL,1,0),(82,0,1426158451,NULL,1,0),(83,0,1427644117,NULL,1,0),(84,0,1427647727,NULL,1,0),(85,0,1428306613,NULL,1,0),(86,0,1428306995,NULL,1,0),(87,0,1428307402,NULL,1,0),(88,0,1428307769,NULL,1,0),(89,0,1428319417,NULL,1,0),(90,0,1428406708,NULL,1,0),(91,0,1428406957,NULL,1,0),(92,0,1428407372,NULL,1,0),(93,0,1428407646,NULL,1,0),(94,0,1428417607,NULL,1,0),(95,0,1428417694,NULL,1,0),(96,0,1428587231,NULL,1,0),(98,0,1428589286,NULL,1,0),(99,0,1428592060,NULL,1,0),(102,0,1429105247,NULL,1,0),(103,0,1429105440,NULL,1,0),(104,0,1429105632,NULL,1,0),(105,0,1429105799,NULL,1,0),(106,0,1429105959,NULL,1,0),(107,0,1429106077,NULL,1,0),(108,0,1438022206,NULL,1,0),(109,0,1438022618,NULL,1,0),(110,0,1438023627,NULL,1,0),(111,0,1438023654,NULL,1,0),(112,0,1438023678,NULL,1,0),(113,0,1442070585,NULL,1,0),(115,0,1442135396,NULL,1,0),(116,0,1442135650,NULL,0,0),(117,0,1442135697,NULL,0,0),(118,0,1442135746,NULL,0,0),(119,0,1442137500,NULL,1,0),(120,0,1442137566,NULL,1,0),(121,0,1442139504,NULL,1,0),(122,0,1442139538,NULL,1,0),(123,0,1442139560,NULL,1,0),(124,0,1533199683,NULL,1,0),(125,0,1533201951,NULL,1,0),(126,0,1533202042,NULL,1,0),(127,0,1533202064,NULL,1,0),(128,0,1533214667,NULL,1,0),(129,0,1533214901,NULL,1,0),(130,0,1538040079,NULL,1,0),(131,0,1652167761,NULL,1,0);
/*!40000 ALTER TABLE `node_comment_statistics` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `node_revision`
--

DROP TABLE IF EXISTS `node_revision`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `node_revision` (
  `nid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'The node this version belongs to.',
  `vid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'The primary identifier for this version.',
  `uid` int(11) NOT NULL DEFAULT 0 COMMENT 'The users.uid that created this version.',
  `title` varchar(255) NOT NULL DEFAULT '' COMMENT 'The title of this version.',
  `log` longtext NOT NULL COMMENT 'The log entry explaining the changes in this version.',
  `timestamp` int(11) NOT NULL DEFAULT 0 COMMENT 'A Unix timestamp indicating when this version was created.',
  `status` int(11) NOT NULL DEFAULT 1 COMMENT 'Boolean indicating whether the node (at the time of this revision) is published (visible to non-administrators).',
  `comment` int(11) NOT NULL DEFAULT 0 COMMENT 'Whether comments are allowed on this node (at the time of this revision): 0 = no, 1 = closed (read only), 2 = open (read/write).',
  `promote` int(11) NOT NULL DEFAULT 0 COMMENT 'Boolean indicating whether the node (at the time of this revision) should be displayed on the front page.',
  `sticky` int(11) NOT NULL DEFAULT 0 COMMENT 'Boolean indicating whether the node (at the time of this revision) should be displayed at the top of lists in which it appears.',
  PRIMARY KEY (`vid`),
  KEY `nid` (`nid`),
  KEY `uid` (`uid`)
) ENGINE=InnoDB AUTO_INCREMENT=132 DEFAULT CHARSET=utf8 COMMENT='Stores information about each saved version of a node.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `node_revision`
--

LOCK TABLES `node_revision` WRITE;
/*!40000 ALTER TABLE `node_revision` DISABLE KEYS */;
INSERT INTO `node_revision` VALUES (1,1,1,'MORSea Gallery','',1413466311,1,1,0,0),(2,2,1,'Contacts','',1411563255,1,1,0,0),(3,3,1,'Cooperations','',1442139085,1,1,0,0),(4,4,1,'Data access','',1652168648,1,1,0,0),(7,7,1,'Ancillary activities','',1428587337,1,1,0,0),(8,8,1,'The network','',1411577871,1,1,0,0),(12,12,1,'The Moorings','',1431184620,1,1,0,0),(13,13,1,'2011/12 - PNRA XXVII','',1533202028,1,1,0,0),(14,14,1,'2013/14 - PNRA XXIX','',1533214033,1,1,0,0),(15,15,1,'Pubblications','',1448566496,1,1,0,0),(21,21,1,'Mooring B','',1428591473,1,1,0,0),(22,22,1,'Mooring L','',1428591495,1,1,0,0),(23,23,1,'Mooring G','',1428591512,1,1,0,0),(24,24,1,'Mooring D','',1428591529,1,1,0,0),(26,26,1,'Mooring L','',1442135909,1,1,0,0),(28,28,1,'Mooring details','',1442136277,1,1,0,0),(29,29,1,'Photos','',1533041974,1,1,0,0),(30,30,1,'Ancillary Activities A','',1538039217,1,1,0,0),(31,31,1,'Ancillary Activities B','',1413893425,1,1,0,0),(32,32,1,'Ancillary Activities C','',1538039370,1,1,0,0),(33,33,1,'People','',1533216243,1,1,0,0),(34,34,1,'Mooring B','',1428591453,1,1,0,0),(35,35,1,'Mooring D','',1428591436,1,1,0,0),(36,36,1,'Mooring G','',1428591419,1,1,0,0),(37,37,1,'Metadati','',1441806897,1,1,0,0),(39,39,1,'Metadati Mooring L 2012','',1425983387,1,1,0,0),(40,40,1,'Metadati Mooring L 2014','',1425983744,1,1,0,0),(41,41,1,'Metadati Mooring G 2012','',1427642798,1,1,0,0),(42,42,1,'Metadati Mooring G 2014','',1425983086,1,1,0,0),(43,43,1,'Metadati Mooring D 2012','',1425973762,1,1,0,0),(44,44,1,'Metadati Mooring D 2014','',1425980840,1,1,0,0),(45,45,1,'2014/15 - PNRA XXX','',1442139021,1,1,0,0),(46,46,1,'News','',1448569430,1,1,0,0),(57,57,1,'2010_D_rcm7_11559_1078m','',1425930137,1,1,0,0),(58,58,1,'2010_D_sbe16_1433_463m','',1425930993,1,1,0,0),(59,59,1,'2010_D_rcm7_11560_494m','',1425933439,1,1,0,0),(60,60,1,'2010_D_rcm9_975_838m','',1425972619,1,1,0,0),(61,61,1,'2010_D_sbe16_1437_1036m','',1425972986,1,1,0,0),(62,62,1,'2010_D_sbe39_1210_694m','',1425973252,1,1,0,0),(63,63,1,'2010_D_sbe39_1213_950m','',1425973670,1,1,0,0),(64,64,1,'2012_D_rcm7_9022_539m','',1425978788,1,1,0,0),(65,65,1,'2012_D_rcm7_11199_875m','',1425979002,1,1,0,0),(66,66,1,'2012_D_rcm7_11565_1112m','',1425979212,1,1,0,0),(67,67,1,'2012_D_sbe16_1433_509m','',1425980027,1,1,0,0),(68,68,1,'2012_D_sbe16_1437_1069m','',1425980201,1,1,0,0),(69,69,1,'2012_D_sbe39_1211_966m','',1425980361,1,1,0,0),(70,70,1,'2012_D_sbe39_1214_739m','',1425980494,1,1,0,0),(71,71,1,'2010_G_rcm7_11199_454m','',1425981117,1,1,0,0),(72,72,1,'2010_G_rcm7_11565_514m','',1425981318,1,1,0,0),(73,73,1,'2010_G_sbe39_1211_474m','',1425981537,1,1,0,0),(74,74,1,'2010_G_sbe39_1214_494m','',1425981787,1,1,0,0),(75,75,1,'2012_G_rcm7_9016_455m','',1425982153,1,1,0,0),(76,76,1,'2012_G_rcm7_11560_517m','',1425982588,1,1,0,0),(77,77,1,'2012_G_sbe39_1213_495m','',1425982828,1,1,0,0),(78,78,1,'2012_G_sbe39_1210_475m','',1425983011,1,1,0,0),(79,79,1,'2010_L_L_rcm7_11974_40m','',1425983292,1,1,0,0),(80,80,1,'2012_L_L_rcm7_11559_144m','',1425983477,1,1,0,0),(81,81,1,'2012_L_L_rcm7_11974_62m','',1425983650,1,1,0,0),(82,82,1,'Tide','',1442139095,1,1,0,0),(83,83,1,'Metadati Mooring B 2012','',1429105664,1,1,0,0),(84,84,1,'Metadati Mooring G 201B','',1429106469,1,1,0,0),(85,85,1,'CA09-10_XXVItaEsp_NZ','',1428306634,1,1,0,0),(86,86,1,'CA09-10_XXVItaEsp_SA','',1428307038,1,1,0,0),(87,87,1,'CA10-11_XXVItaEsp_SA','',1428307444,1,1,0,0),(88,88,1,'CA11-12_XXVII_ItaEsp_SA','',1428307842,1,1,0,0),(89,89,1,'CA11-12_XXVII_ItaEsp_NZ','',1428319417,1,1,0,0),(90,90,1,'CA12-13_XXVIII_ItaEsp_SA','',1428406708,1,1,0,0),(91,91,1,'CA12-13_XXVIII_ItaEsp_NZ','',1428407015,1,1,0,0),(92,92,1,'CA13-14_XXIX_ItaEsp_NZ','',1428407372,1,1,0,0),(93,93,1,'CA14-15_XXX_ItaEsp_NZ','',1428407646,1,1,0,0),(94,94,1,'XBT INTERNATIONAL BACKGROUND','',1428417792,1,1,0,0),(95,95,1,'INSTRUMENTATION','',1428417718,1,1,0,0),(96,96,1,'Ancillary activities','',1428587701,1,1,0,0),(98,98,1,'The Moorings','',1428589286,1,1,0,0),(99,99,1,'Home Page','',1428610151,1,1,0,0),(102,102,1,'B_rcm9_1210_543m','',1429105278,1,1,0,0),(103,103,1,'B_sbe16_4494_533m','',1429105440,1,1,0,0),(104,104,1,'B_sbe37_4118_280m','',1429105632,1,1,0,0),(105,105,1,'B_2012_rcm7_9474_229m','',1429105799,1,1,0,0),(106,106,1,'B_2012_sbe16_4494_500m','',1429105959,1,1,0,0),(107,107,1,'B_2012_sbe37_4118_228m','',1429106077,1,1,0,0),(108,108,1,'ARGO functioning','',1438023569,1,1,0,0),(109,109,1,'ARGO','',1438023358,1,1,0,0),(110,110,1,'ARGO 2013','',1438112788,1,1,0,0),(111,111,1,'ARGO 2014','',1438113456,1,1,0,0),(112,112,1,'ARGO 2015','',1442070330,1,1,0,0),(113,113,1,'Metadati','',1442070585,1,1,0,0),(115,115,1,'Mooring L','',1442139229,1,1,0,0),(116,116,1,'Mooring B','',1442139550,1,1,0,0),(117,117,1,'Mooring G','',1442139529,1,1,0,0),(118,118,1,'Mooring D','',1442135746,1,1,0,0),(119,119,1,'Dettagli dei Moorings','',1442137500,1,1,0,0),(120,120,1,'Mooring L','',1442137566,1,1,1,0),(121,121,1,'Mooring L','',1442139504,1,1,1,0),(122,122,1,'Mooring G','',1442139538,1,1,1,0),(123,123,1,'Mooring B','',1442139560,1,1,1,0),(124,124,1,'2015/16 - PNRA XXXI','',1533215758,1,1,0,0),(125,125,1,'2013/14 - PNRA XXIX','',1533201951,1,1,0,0),(126,126,1,'2011/12 - PNRA XXVII','',1533202042,1,1,0,0),(127,127,1,'2014/15 - PNRA XXX','',1533202064,1,1,0,0),(128,128,1,'2015/16 - PNRA XXXI','',1533214667,1,1,0,0),(129,129,1,'2016/17 - PNRA XXXII','',1533223974,1,1,0,0),(130,130,1,'2017/18 - PNRA XXXIII','',1538041205,1,1,0,0),(131,131,1,'Prova','',1652167761,1,1,0,0);
/*!40000 ALTER TABLE `node_revision` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `node_type`
--

DROP TABLE IF EXISTS `node_type`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `node_type` (
  `type` varchar(32) NOT NULL COMMENT 'The machine-readable name of this type.',
  `name` varchar(255) NOT NULL DEFAULT '' COMMENT 'The human-readable name of this type.',
  `base` varchar(255) NOT NULL COMMENT 'The base string used to construct callbacks corresponding to this node type.',
  `module` varchar(255) NOT NULL COMMENT 'The module defining this node type.',
  `description` mediumtext NOT NULL COMMENT 'A brief description of this type.',
  `help` mediumtext NOT NULL COMMENT 'Help information shown to the user when creating a node of this type.',
  `has_title` tinyint(3) unsigned NOT NULL COMMENT 'Boolean indicating whether this type uses the node.title field.',
  `title_label` varchar(255) NOT NULL DEFAULT '' COMMENT 'The label displayed for the title field on the edit form.',
  `custom` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'A boolean indicating whether this type is defined by a module (FALSE) or by a user via Add content type (TRUE).',
  `modified` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'A boolean indicating whether this type has been modified by an administrator; currently not used in any way.',
  `locked` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'A boolean indicating whether the administrator can change the machine name of this type.',
  `disabled` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'A boolean indicating whether the node type is disabled.',
  `orig_type` varchar(255) NOT NULL DEFAULT '' COMMENT 'The original machine-readable name of this node type. This may be different from the current type name if the locked field is 0.',
  PRIMARY KEY (`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores information about all defined node types.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `node_type`
--

LOCK TABLES `node_type` WRITE;
/*!40000 ALTER TABLE `node_type` DISABLE KEYS */;
INSERT INTO `node_type` VALUES ('article','Article','node_content','node','Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.','',1,'Title',1,1,0,0,'article'),('forum','Forum topic','forum','forum','A <em>forum topic</em> starts a new discussion thread within a forum.','',1,'Subject',0,1,1,0,'forum'),('mooring','Mooring','node_content','node','A mooring','',1,'Title',1,1,0,0,'mooring'),('openlayers_example_content','OpenLayers Example Content','node_content','openlayers_test_example_feature','This is an example content type for the OpenLayers module.','',1,'Title',0,1,1,0,'openlayers_example_content'),('page','Basic page','node_content','node','Use <em>basic pages</em> for your static content, such as an \'About us\' page.','',1,'Title',1,1,0,0,'page'),('photos','Album','photos','photos','Create new photo albums.','',1,'Album name',0,1,1,0,'photos'),('photo_moorings_2010','Photo Moorings 2010','node_content','node','','',1,'Photo Moorings 2010',1,1,0,0,'photo_moorings_2010'),('photo_moorings_2012','Photo Moorings 2012','node_content','node','','',1,'Photo Moorings 2012',1,1,0,0,'photo_moorings_2012'),('photo_moorings_2014','Photo Moorings 2014','node_content','node','','',1,'Photo Moorings 2014',1,1,0,0,'photo');
/*!40000 ALTER TABLE `node_type` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `openlayers_layers`
--

DROP TABLE IF EXISTS `openlayers_layers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `openlayers_layers` (
  `name` varchar(255) NOT NULL DEFAULT '' COMMENT 'Layer name.',
  `title` varchar(255) NOT NULL DEFAULT '' COMMENT 'Layer title.',
  `description` text NOT NULL COMMENT 'Layer description.',
  `data` text DEFAULT NULL COMMENT 'Layer data serialized.',
  PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Storage for user defined OpenLayers layers.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `openlayers_layers`
--

LOCK TABLES `openlayers_layers` WRITE;
/*!40000 ALTER TABLE `openlayers_layers` DISABLE KEYS */;
INSERT INTO `openlayers_layers` VALUES ('map_openlayers_1','map - OpenLayers Data Overlay','','a:15:{s:5:\"views\";a:2:{s:4:\"view\";s:3:\"map\";s:7:\"display\";s:12:\"openlayers_1\";}s:10:\"projection\";a:1:{i:0;s:9:\"EPSG:4326\";}s:11:\"isBaseLayer\";i:0;s:10:\"layer_type\";s:23:\"openlayers_views_vector\";s:13:\"layer_handler\";s:23:\"openlayers_views_vector\";s:6:\"vector\";b:1;s:4:\"type\";s:6:\"Vector\";s:3:\"url\";a:0:{}s:7:\"options\";a:1:{s:15:\"rendererOptions\";a:1:{s:9:\"yOrdering\";b:1;}}s:6:\"events\";a:0:{}s:17:\"serverResolutions\";a:22:{i:0;d:156543.03390000001;i:1;d:78271.516950000005;i:2;d:39135.758475000002;i:3;d:19567.879237500001;i:4;d:9783.9396187500006;i:5;d:4891.9698093750003;i:6;d:2445.9849046875001;i:7;d:1222.9924523437501;i:8;d:611.49622617187504;i:9;d:305.74811308593752;i:10;d:152.87405654296876;i:11;d:76.43702827148438;i:12;d:38.21851413574219;i:13;d:19.109257067871095;i:14;d:9.5546285339355475;i:15;d:4.7773142669677737;i:16;d:2.3886571334838869;i:17;d:1.1943285667419434;i:18;d:0.59716428337097172;i:19;d:0.29858214169740677;i:20;d:0.14929107084870338;i:21;d:0.074645535424351692;}s:11:\"resolutions\";a:22:{i:0;d:156543.03390000001;i:1;d:78271.516950000005;i:2;d:39135.758475000002;i:3;d:19567.879237500001;i:4;d:9783.9396187500006;i:5;d:4891.9698093750003;i:6;d:2445.9849046875001;i:7;d:1222.9924523437501;i:8;d:611.49622617187504;i:9;d:305.74811308593752;i:10;d:152.87405654296876;i:11;d:76.43702827148438;i:12;d:38.21851413574219;i:13;d:19.109257067871095;i:14;d:9.5546285339355475;i:15;d:4.7773142669677737;i:16;d:2.3886571334838869;i:17;d:1.1943285667419434;i:18;d:0.59716428337097172;i:19;d:0.29858214169740677;i:20;d:0.14929107084870338;i:21;d:0.074645535424351692;}s:8:\"base_url\";N;s:16:\"transitionEffect\";s:6:\"resize\";s:6:\"weight\";i:0;}'),('moorings_spot','moorings_spot','','a:16:{s:6:\"method\";s:4:\"file\";s:3:\"url\";s:63:\"http://morsea.uniparthenope.it/sites/default/files/Moorings.kml\";s:4:\"file\";s:2:\"16\";s:3:\"raw\";s:0:\"\";s:13:\"formatOptions\";a:3:{s:13:\"extractStyles\";b:1;s:13:\"extractTracks\";b:1;s:17:\"extractAttributes\";b:1;}s:10:\"projection\";a:1:{i:0;s:9:\"EPSG:3857\";}s:11:\"isBaseLayer\";i:0;s:10:\"layer_type\";s:25:\"openlayers_layer_type_kml\";s:13:\"layer_handler\";s:3:\"kml\";s:11:\"resolutions\";a:17:{i:0;d:0.703125;i:1;d:0.3515625;i:2;d:0.17578125;i:3;d:0.087890625;i:4;d:0.0439453125;i:5;d:0.02197265625;i:6;d:0.010986328125;i:7;d:0.0054931640625;i:8;d:0.00274658203125;i:9;d:0.001373291015625;i:10;d:0.0006866455078125;i:11;d:0.00034332275390625;i:12;d:0.000171661376953125;i:13;d:8.58306884765625E-5;i:14;d:4.291534423828125E-5;i:15;d:2.1457672119140625E-5;i:16;d:1.0728836059570312E-5;}s:17:\"serverResolutions\";a:17:{i:0;d:0.703125;i:1;d:0.3515625;i:2;d:0.17578125;i:3;d:0.087890625;i:4;d:0.0439453125;i:5;d:0.02197265625;i:6;d:0.010986328125;i:7;d:0.0054931640625;i:8;d:0.00274658203125;i:9;d:0.001373291015625;i:10;d:0.0006866455078125;i:11;d:0.00034332275390625;i:12;d:0.000171661376953125;i:13;d:8.58306884765625E-5;i:14;d:4.291534423828125E-5;i:15;d:2.1457672119140625E-5;i:16;d:1.0728836059570312E-5;}s:9:\"maxExtent\";a:4:{i:0;d:-180;i:1;d:-90;i:2;d:180;i:3;d:90;}s:6:\"vector\";b:1;s:8:\"base_url\";N;s:16:\"transitionEffect\";s:6:\"resize\";s:6:\"weight\";i:0;}');
/*!40000 ALTER TABLE `openlayers_layers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `openlayers_maps`
--

DROP TABLE IF EXISTS `openlayers_maps`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `openlayers_maps` (
  `name` varchar(255) NOT NULL COMMENT 'The primary identifier for the map.',
  `title` varchar(255) NOT NULL COMMENT 'The title of the map.',
  `description` text NOT NULL COMMENT 'The description of the map.',
  `data` text NOT NULL COMMENT 'The serialized map.',
  PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Storage for User defined OpenLayers maps.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `openlayers_maps`
--

LOCK TABLES `openlayers_maps` WRITE;
/*!40000 ALTER TABLE `openlayers_maps` DISABLE KEYS */;
INSERT INTO `openlayers_maps` VALUES ('clone_of_openlayers_test_openlayers_example_map','Moorings','Moorings','a:19:{s:5:\"width\";s:4:\"auto\";s:6:\"height\";s:5:\"400px\";s:10:\"image_path\";s:53:\"sites/all/modules/openlayers/themes/default_dark/img/\";s:8:\"css_path\";s:58:\"sites/all/modules/openlayers/themes/default_dark/style.css\";s:10:\"proxy_host\";s:14:\"proxy?request=\";s:14:\"hide_empty_map\";i:0;s:6:\"center\";a:2:{s:7:\"initial\";a:2:{s:11:\"centerpoint\";s:39:\"-154.33593747954092, -73.42842363337873\";s:4:\"zoom\";s:1:\"2\";}s:8:\"restrict\";a:2:{s:14:\"restrictextent\";i:1;s:16:\"restrictedExtent\";s:0:\"\";}}s:9:\"behaviors\";a:7:{s:36:\"openlayers_behavior_keyboarddefaults\";a:0:{}s:31:\"openlayers_behavior_attribution\";a:1:{s:9:\"separator\";s:0:\"\";}s:33:\"openlayers_behavior_layerswitcher\";a:6:{s:9:\"ascending\";i:1;s:13:\"sortBaseLayer\";s:1:\"0\";s:13:\"roundedCorner\";i:1;s:18:\"roundedCornerColor\";s:7:\"#222222\";s:15:\"maximizeDefault\";i:0;s:3:\"div\";s:0:\"\";}s:30:\"openlayers_behavior_navigation\";a:3:{s:16:\"zoomWheelEnabled\";i:1;s:14:\"zoomBoxEnabled\";i:1;s:12:\"documentDrag\";i:0;}s:27:\"openlayers_behavior_panzoom\";a:0:{}s:25:\"openlayers_behavior_popup\";a:5:{s:6:\"layers\";a:1:{s:44:\"openlayers_example_data_overlay_openlayers_1\";s:44:\"openlayers_example_data_overlay_openlayers_1\";}s:17:\"panMapIfOutOfView\";i:1;s:9:\"keepInMap\";i:1;s:11:\"zoomToPoint\";i:0;s:13:\"zoomToCluster\";i:0;}s:31:\"openlayers_behavior_zoomtolayer\";a:3:{s:11:\"zoomtolayer\";a:4:{s:44:\"openlayers_example_data_overlay_openlayers_1\";s:44:\"openlayers_example_data_overlay_openlayers_1\";s:16:\"google_satellite\";i:0;s:12:\"mapquest_osm\";i:0;s:19:\"mapquest_openaerial\";i:0;}s:16:\"point_zoom_level\";s:1:\"5\";s:17:\"zoomtolayer_scale\";s:1:\"1\";}}s:13:\"default_layer\";s:16:\"google_satellite\";s:6:\"layers\";a:4:{s:16:\"google_satellite\";s:16:\"google_satellite\";s:12:\"mapquest_osm\";s:12:\"mapquest_osm\";s:19:\"mapquest_openaerial\";s:19:\"mapquest_openaerial\";s:28:\"mooring_overlay_openlayers_1\";s:28:\"mooring_overlay_openlayers_1\";}s:12:\"layer_weight\";a:6:{s:28:\"mooring_overlay_openlayers_1\";s:1:\"0\";s:44:\"openlayers_example_data_overlay_openlayers_1\";s:1:\"0\";s:31:\"openlayers_geojson_picture_this\";s:1:\"0\";s:22:\"openlayers_kml_example\";s:1:\"0\";s:18:\"geofield_formatter\";s:1:\"0\";s:16:\"map_openlayers_1\";s:1:\"0\";}s:12:\"layer_styles\";a:6:{s:16:\"map_openlayers_1\";s:1:\"0\";s:18:\"geofield_formatter\";s:1:\"0\";s:22:\"openlayers_kml_example\";s:1:\"0\";s:31:\"openlayers_geojson_picture_this\";s:1:\"0\";s:28:\"mooring_overlay_openlayers_1\";s:1:\"0\";s:44:\"openlayers_example_data_overlay_openlayers_1\";s:18:\"default_marker_red\";}s:19:\"layer_styles_select\";a:6:{s:16:\"map_openlayers_1\";s:1:\"0\";s:18:\"geofield_formatter\";s:1:\"0\";s:22:\"openlayers_kml_example\";s:1:\"0\";s:31:\"openlayers_geojson_picture_this\";s:1:\"0\";s:28:\"mooring_overlay_openlayers_1\";s:1:\"0\";s:44:\"openlayers_example_data_overlay_openlayers_1\";s:18:\"default_marker_red\";}s:22:\"layer_styles_temporary\";a:6:{s:16:\"map_openlayers_1\";s:1:\"0\";s:18:\"geofield_formatter\";s:1:\"0\";s:22:\"openlayers_kml_example\";s:1:\"0\";s:31:\"openlayers_geojson_picture_this\";s:1:\"0\";s:28:\"mooring_overlay_openlayers_1\";s:1:\"0\";s:44:\"openlayers_example_data_overlay_openlayers_1\";s:18:\"default_marker_red\";}s:15:\"layer_activated\";a:6:{s:28:\"mooring_overlay_openlayers_1\";s:28:\"mooring_overlay_openlayers_1\";s:16:\"map_openlayers_1\";i:0;s:18:\"geofield_formatter\";i:0;s:22:\"openlayers_kml_example\";i:0;s:31:\"openlayers_geojson_picture_this\";i:0;s:44:\"openlayers_example_data_overlay_openlayers_1\";i:0;}s:14:\"layer_switcher\";a:6:{s:28:\"mooring_overlay_openlayers_1\";s:28:\"mooring_overlay_openlayers_1\";s:16:\"map_openlayers_1\";i:0;s:18:\"geofield_formatter\";i:0;s:22:\"openlayers_kml_example\";i:0;s:31:\"openlayers_geojson_picture_this\";i:0;s:44:\"openlayers_example_data_overlay_openlayers_1\";i:0;}s:10:\"projection\";s:11:\"EPSG:900913\";s:17:\"displayProjection\";s:9:\"EPSG:4326\";s:6:\"styles\";a:3:{s:7:\"default\";s:18:\"default_marker_red\";s:6:\"select\";s:18:\"default_marker_red\";s:9:\"temporary\";s:18:\"default_marker_red\";}}'),('default','Default Map','This is the default map that will be the basis for all maps, unless you have changed the <a href=\"/?q=admin/structure/openlayers\">OpenLayers main settings</a>.  This is also a good example of a basic map.','a:19:{s:5:\"width\";s:4:\"auto\";s:6:\"height\";s:5:\"400px\";s:10:\"image_path\";s:53:\"sites/all/modules/openlayers/themes/default_dark/img/\";s:8:\"css_path\";s:58:\"sites/all/modules/openlayers/themes/default_dark/style.css\";s:10:\"proxy_host\";s:0:\"\";s:14:\"hide_empty_map\";i:0;s:6:\"center\";a:2:{s:7:\"initial\";a:2:{s:11:\"centerpoint\";s:36:\"71.01562498009272, -68.0075710090522\";s:4:\"zoom\";s:1:\"4\";}s:8:\"restrict\";a:2:{s:14:\"restrictextent\";i:1;s:16:\"restrictedExtent\";s:0:\"\";}}s:9:\"behaviors\";a:5:{s:36:\"openlayers_behavior_keyboarddefaults\";a:0:{}s:31:\"openlayers_behavior_attribution\";a:1:{s:9:\"separator\";s:0:\"\";}s:33:\"openlayers_behavior_layerswitcher\";a:6:{s:9:\"ascending\";i:1;s:13:\"sortBaseLayer\";s:1:\"0\";s:13:\"roundedCorner\";i:1;s:18:\"roundedCornerColor\";s:7:\"#222222\";s:15:\"maximizeDefault\";i:0;s:3:\"div\";s:0:\"\";}s:30:\"openlayers_behavior_navigation\";a:3:{s:16:\"zoomWheelEnabled\";i:1;s:14:\"zoomBoxEnabled\";i:1;s:12:\"documentDrag\";i:0;}s:30:\"openlayers_behavior_panzoombar\";a:2:{s:13:\"zoomWorldIcon\";i:0;s:8:\"panIcons\";i:1;}}s:13:\"default_layer\";s:13:\"google_normal\";s:6:\"layers\";a:3:{s:13:\"google_normal\";s:13:\"google_normal\";s:15:\"google_physical\";s:15:\"google_physical\";s:13:\"moorings_spot\";s:13:\"moorings_spot\";}s:12:\"layer_weight\";a:7:{s:44:\"openlayers_example_data_overlay_openlayers_1\";s:1:\"0\";s:16:\"map_openlayers_1\";s:1:\"0\";s:31:\"openlayers_geojson_picture_this\";s:1:\"0\";s:18:\"geofield_formatter\";s:1:\"0\";s:22:\"openlayers_kml_example\";s:1:\"0\";s:13:\"moorings_spot\";s:2:\"10\";s:28:\"mooring_overlay_openlayers_1\";s:2:\"10\";}s:12:\"layer_styles\";a:7:{s:16:\"map_openlayers_1\";s:1:\"0\";s:18:\"geofield_formatter\";s:1:\"0\";s:22:\"openlayers_kml_example\";s:1:\"0\";s:31:\"openlayers_geojson_picture_this\";s:1:\"0\";s:28:\"mooring_overlay_openlayers_1\";s:7:\"default\";s:44:\"openlayers_example_data_overlay_openlayers_1\";s:1:\"0\";s:13:\"moorings_spot\";s:18:\"default_marker_red\";}s:19:\"layer_styles_select\";a:7:{s:16:\"map_openlayers_1\";s:1:\"0\";s:18:\"geofield_formatter\";s:1:\"0\";s:22:\"openlayers_kml_example\";s:1:\"0\";s:31:\"openlayers_geojson_picture_this\";s:1:\"0\";s:28:\"mooring_overlay_openlayers_1\";s:7:\"default\";s:44:\"openlayers_example_data_overlay_openlayers_1\";s:1:\"0\";s:13:\"moorings_spot\";s:18:\"default_marker_red\";}s:22:\"layer_styles_temporary\";a:7:{s:16:\"map_openlayers_1\";s:1:\"0\";s:18:\"geofield_formatter\";s:1:\"0\";s:22:\"openlayers_kml_example\";s:1:\"0\";s:31:\"openlayers_geojson_picture_this\";s:1:\"0\";s:28:\"mooring_overlay_openlayers_1\";s:7:\"default\";s:44:\"openlayers_example_data_overlay_openlayers_1\";s:1:\"0\";s:13:\"moorings_spot\";s:18:\"default_marker_red\";}s:15:\"layer_activated\";a:7:{s:13:\"moorings_spot\";s:13:\"moorings_spot\";s:16:\"map_openlayers_1\";i:0;s:18:\"geofield_formatter\";i:0;s:22:\"openlayers_kml_example\";i:0;s:31:\"openlayers_geojson_picture_this\";i:0;s:28:\"mooring_overlay_openlayers_1\";i:0;s:44:\"openlayers_example_data_overlay_openlayers_1\";i:0;}s:14:\"layer_switcher\";a:7:{s:13:\"moorings_spot\";s:13:\"moorings_spot\";s:16:\"map_openlayers_1\";i:0;s:18:\"geofield_formatter\";i:0;s:22:\"openlayers_kml_example\";i:0;s:31:\"openlayers_geojson_picture_this\";i:0;s:28:\"mooring_overlay_openlayers_1\";i:0;s:44:\"openlayers_example_data_overlay_openlayers_1\";i:0;}s:10:\"projection\";s:9:\"EPSG:3857\";s:17:\"displayProjection\";s:9:\"EPSG:4326\";s:6:\"styles\";a:3:{s:7:\"default\";s:18:\"default_marker_red\";s:6:\"select\";s:14:\"default_select\";s:9:\"temporary\";s:18:\"default_marker_red\";}}'),('geofield_widget_map','Geofield Widget Map','A Map Used for Geofield Input','a:19:{s:5:\"width\";s:5:\"600px\";s:6:\"height\";s:5:\"400px\";s:10:\"image_path\";s:53:\"sites/all/modules/openlayers/themes/default_dark/img/\";s:8:\"css_path\";s:58:\"sites/all/modules/openlayers/themes/default_dark/style.css\";s:10:\"proxy_host\";s:0:\"\";s:14:\"hide_empty_map\";i:1;s:6:\"center\";a:2:{s:7:\"initial\";a:2:{s:11:\"centerpoint\";s:38:\"164.17968746340458, -75.05035356684584\";s:4:\"zoom\";s:1:\"2\";}s:8:\"restrict\";a:2:{s:14:\"restrictextent\";i:0;s:16:\"restrictedExtent\";s:0:\"\";}}s:9:\"behaviors\";a:4:{s:28:\"openlayers_behavior_geofield\";a:0:{}s:36:\"openlayers_behavior_keyboarddefaults\";a:0:{}s:30:\"openlayers_behavior_navigation\";a:3:{s:16:\"zoomWheelEnabled\";i:0;s:14:\"zoomBoxEnabled\";i:1;s:12:\"documentDrag\";i:0;}s:30:\"openlayers_behavior_panzoombar\";a:2:{s:13:\"zoomWorldIcon\";i:0;s:8:\"panIcons\";i:1;}}s:13:\"default_layer\";s:16:\"google_satellite\";s:6:\"layers\";a:3:{s:16:\"google_satellite\";s:16:\"google_satellite\";s:15:\"google_physical\";s:15:\"google_physical\";s:12:\"mapquest_osm\";s:12:\"mapquest_osm\";}s:12:\"layer_weight\";a:4:{s:44:\"openlayers_example_data_overlay_openlayers_1\";s:1:\"0\";s:31:\"openlayers_geojson_picture_this\";s:1:\"0\";s:22:\"openlayers_kml_example\";s:1:\"0\";s:18:\"geofield_formatter\";s:1:\"0\";}s:12:\"layer_styles\";a:4:{s:18:\"geofield_formatter\";s:1:\"0\";s:22:\"openlayers_kml_example\";s:1:\"0\";s:31:\"openlayers_geojson_picture_this\";s:1:\"0\";s:44:\"openlayers_example_data_overlay_openlayers_1\";s:1:\"0\";}s:19:\"layer_styles_select\";a:4:{s:18:\"geofield_formatter\";s:1:\"0\";s:22:\"openlayers_kml_example\";s:1:\"0\";s:31:\"openlayers_geojson_picture_this\";s:1:\"0\";s:44:\"openlayers_example_data_overlay_openlayers_1\";s:1:\"0\";}s:22:\"layer_styles_temporary\";a:4:{s:18:\"geofield_formatter\";s:1:\"0\";s:22:\"openlayers_kml_example\";s:1:\"0\";s:31:\"openlayers_geojson_picture_this\";s:1:\"0\";s:44:\"openlayers_example_data_overlay_openlayers_1\";s:1:\"0\";}s:15:\"layer_activated\";a:4:{s:18:\"geofield_formatter\";i:0;s:22:\"openlayers_kml_example\";i:0;s:31:\"openlayers_geojson_picture_this\";i:0;s:44:\"openlayers_example_data_overlay_openlayers_1\";i:0;}s:14:\"layer_switcher\";a:4:{s:18:\"geofield_formatter\";i:0;s:22:\"openlayers_kml_example\";i:0;s:31:\"openlayers_geojson_picture_this\";i:0;s:44:\"openlayers_example_data_overlay_openlayers_1\";i:0;}s:10:\"projection\";s:11:\"EPSG:900913\";s:17:\"displayProjection\";s:9:\"EPSG:4326\";s:6:\"styles\";a:3:{s:7:\"default\";s:7:\"default\";s:6:\"select\";s:7:\"default\";s:9:\"temporary\";s:7:\"default\";}}');
/*!40000 ALTER TABLE `openlayers_maps` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `openlayers_projections`
--

DROP TABLE IF EXISTS `openlayers_projections`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `openlayers_projections` (
  `identifier` varchar(255) NOT NULL COMMENT 'Opaque identifier. Guaranteed to be unique but does not have any other meaning.',
  `authority` text NOT NULL COMMENT 'Projection authority.',
  `code` text NOT NULL COMMENT 'Projection code.',
  `definition` text NOT NULL COMMENT 'Projection definition (proj4 format).',
  `projectedextentleft` decimal(10,0) NOT NULL COMMENT 'Leftmost value in this projection’s coordinates',
  `projectedextentbottom` decimal(10,0) NOT NULL COMMENT 'Bottommost value in this projection’s coordinates',
  `projectedextentright` decimal(10,0) NOT NULL COMMENT 'Rightmost value in this projection’s coordinates',
  `projectedextenttop` decimal(10,0) NOT NULL COMMENT 'Topmost value in this projection’s coordinates',
  `data` text DEFAULT NULL COMMENT 'Projection data serialized.',
  PRIMARY KEY (`identifier`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Storage for user defined OpenLayers projections.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `openlayers_projections`
--

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

--
-- Table structure for table `openlayers_styles`
--

DROP TABLE IF EXISTS `openlayers_styles`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `openlayers_styles` (
  `name` varchar(255) NOT NULL DEFAULT '' COMMENT 'Style name.',
  `title` varchar(255) NOT NULL DEFAULT '' COMMENT 'Style title.',
  `description` text NOT NULL COMMENT 'Style description.',
  `data` text DEFAULT NULL COMMENT 'Style data serialized.',
  PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Storage for user defined OpenLayers styles.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `openlayers_styles`
--

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

--
-- Table structure for table `photos_access_album`
--

DROP TABLE IF EXISTS `photos_access_album`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `photos_access_album` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `nid` int(10) unsigned NOT NULL,
  `viewid` tinyint(4) DEFAULT 0 COMMENT '0: Open, 1: Locked, 2: Password, 3: User list',
  `pass` varchar(128) DEFAULT '',
  PRIMARY KEY (`id`),
  KEY `nid` (`nid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `photos_access_album`
--

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

--
-- Table structure for table `photos_access_user`
--

DROP TABLE IF EXISTS `photos_access_user`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `photos_access_user` (
  `id` int(10) unsigned NOT NULL,
  `uid` int(10) unsigned NOT NULL,
  `collaborate` tinyint(4) DEFAULT 0,
  KEY `uid` (`uid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `photos_access_user`
--

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

--
-- Table structure for table `photos_album`
--

DROP TABLE IF EXISTS `photos_album`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `photos_album` (
  `pid` int(10) unsigned NOT NULL,
  `fid` int(10) unsigned NOT NULL DEFAULT 0,
  `wid` int(11) NOT NULL DEFAULT 0,
  `count` int(10) unsigned NOT NULL DEFAULT 0,
  `data` longtext NOT NULL,
  PRIMARY KEY (`pid`),
  KEY `fid` (`fid`),
  KEY `wid` (`wid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `photos_album`
--

LOCK TABLES `photos_album` WRITE;
/*!40000 ALTER TABLE `photos_album` DISABLE KEYS */;
INSERT INTO `photos_album` VALUES (29,20,0,15,'a:11:{s:9:\"viewpager\";s:2:\"10\";s:10:\"imageorder\";s:14:\"timestamp|desc\";s:14:\"list_imagesize\";s:5:\"large\";s:14:\"view_imagesize\";s:5:\"large\";s:12:\"page_display\";s:1:\"2\";s:12:\"full_viewnum\";s:2:\"50\";s:14:\"full_imagesize\";s:9:\"thumbnail\";s:3:\"pid\";s:2:\"29\";s:14:\"teaser_display\";s:1:\"0\";s:14:\"teaser_viewnum\";s:2:\"10\";s:16:\"teaser_imagesize\";s:6:\"medium\";}');
/*!40000 ALTER TABLE `photos_album` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `photos_comment`
--

DROP TABLE IF EXISTS `photos_comment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `photos_comment` (
  `fid` int(10) unsigned NOT NULL,
  `cid` int(10) unsigned NOT NULL,
  KEY `fid` (`fid`),
  KEY `cid` (`cid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `photos_comment`
--

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

--
-- Table structure for table `photos_count`
--

DROP TABLE IF EXISTS `photos_count`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `photos_count` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `cid` int(10) unsigned NOT NULL DEFAULT 0,
  `changed` int(10) unsigned NOT NULL DEFAULT 0,
  `type` varchar(12) NOT NULL DEFAULT '',
  `value` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `cid` (`cid`),
  KEY `type` (`type`),
  KEY `value` (`value`)
) ENGINE=InnoDB AUTO_INCREMENT=488 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `photos_count`
--

LOCK TABLES `photos_count` WRITE;
/*!40000 ALTER TABLE `photos_count` DISABLE KEYS */;
INSERT INTO `photos_count` VALUES (1,0,1652171442,'site_album',1),(2,0,1652171442,'site_image',15),(3,2,1411553189,'user_image',0),(4,2,1411553189,'user_album',0),(5,1,1652171442,'user_image',15),(6,1,1652171442,'user_album',1),(7,28,1652171442,'user_album',0),(8,28,1652171442,'user_image',0),(9,37,1652171442,'user_album',0),(10,37,1652171442,'user_image',0),(11,38,1652171442,'user_album',0),(12,38,1652171442,'user_image',0),(13,39,1652171442,'user_album',0),(14,39,1652171442,'user_image',0),(15,40,1652171442,'user_album',0),(16,40,1652171442,'user_image',0),(17,41,1652171442,'user_album',0),(18,41,1652171442,'user_image',0),(19,42,1652171442,'user_album',0),(20,42,1652171442,'user_image',0),(21,62,1652171442,'user_album',0),(22,62,1652171442,'user_image',0),(23,29,1652171442,'node_node',15),(24,72,1422614096,'user_album',0),(25,72,1422614096,'user_image',0),(26,73,1422614096,'user_album',0),(27,73,1422614096,'user_image',0),(28,74,1422614096,'user_album',0),(29,74,1422614096,'user_image',0),(30,75,1422614096,'user_album',0),(31,75,1422614096,'user_image',0),(32,76,1422614096,'user_album',0),(33,76,1422614096,'user_image',0),(34,77,1422614096,'user_album',0),(35,77,1422614096,'user_image',0),(36,78,1422614096,'user_album',0),(37,78,1422614096,'user_image',0),(38,79,1422614096,'user_album',0),(39,79,1422614096,'user_image',0),(40,80,1422614096,'user_album',0),(41,80,1422614096,'user_image',0),(42,81,1422614096,'user_album',0),(43,81,1422614096,'user_image',0),(44,82,1422614096,'user_album',0),(45,82,1422614096,'user_image',0),(46,83,1422614096,'user_album',0),(47,83,1422614096,'user_image',0),(48,84,1422614096,'user_album',0),(49,84,1422614096,'user_image',0),(50,85,1422614096,'user_album',0),(51,85,1422614096,'user_image',0),(52,86,1422614096,'user_album',0),(53,86,1422614096,'user_image',0),(54,87,1422614096,'user_album',0),(55,87,1422614096,'user_image',0),(56,88,1422614096,'user_album',0),(57,88,1422614096,'user_image',0),(58,89,1422614096,'user_album',0),(59,89,1422614096,'user_image',0),(60,90,1422614096,'user_album',0),(61,90,1422614096,'user_image',0),(62,91,1422614096,'user_album',0),(63,91,1422614096,'user_image',0),(64,92,1422614096,'user_album',0),(65,92,1422614096,'user_image',0),(66,93,1422614096,'user_album',0),(67,93,1422614096,'user_image',0),(68,94,1422614096,'user_album',0),(69,94,1422614096,'user_image',0),(70,95,1422614096,'user_album',0),(71,95,1422614096,'user_image',0),(72,96,1422614096,'user_album',0),(73,96,1422614096,'user_image',0),(74,97,1422614096,'user_album',0),(75,97,1422614096,'user_image',0),(76,98,1422614096,'user_album',0),(77,98,1422614096,'user_image',0),(78,99,1422614096,'user_album',0),(79,99,1422614096,'user_image',0),(80,100,1422614096,'user_album',0),(81,100,1422614096,'user_image',0),(82,101,1422614096,'user_album',0),(83,101,1422614096,'user_image',0),(84,102,1422614096,'user_album',0),(85,102,1422614096,'user_image',0),(86,103,1422614096,'user_album',0),(87,103,1422614096,'user_image',0),(88,104,1422614096,'user_album',0),(89,104,1422614096,'user_image',0),(90,105,1422614096,'user_album',0),(91,105,1422614096,'user_image',0),(92,106,1422614096,'user_album',0),(93,106,1422614096,'user_image',0),(94,107,1422614096,'user_album',0),(95,107,1422614096,'user_image',0),(96,108,1422614096,'user_album',0),(97,108,1422614096,'user_image',0),(98,109,1422614096,'user_album',0),(99,109,1422614096,'user_image',0),(100,110,1422614096,'user_album',0),(101,110,1422614096,'user_image',0),(102,111,1422614096,'user_album',0),(103,111,1422614096,'user_image',0),(104,112,1422614096,'user_album',0),(105,112,1422614096,'user_image',0),(106,113,1422614096,'user_album',0),(107,113,1422614096,'user_image',0),(108,114,1422614096,'user_album',0),(109,114,1422614096,'user_image',0),(110,0,1652171442,'site_album',1),(111,0,1652171442,'site_image',15),(112,39,1652171442,'user_image',0),(113,39,1652171442,'user_album',0),(114,40,1652171442,'user_image',0),(115,40,1652171442,'user_album',0),(116,41,1652171442,'user_image',0),(117,41,1652171442,'user_album',0),(118,42,1652171442,'user_image',0),(119,42,1652171442,'user_album',0),(120,38,1652171442,'user_image',0),(121,38,1652171442,'user_album',0),(122,37,1652171442,'user_image',0),(123,37,1652171442,'user_album',0),(124,28,1652171442,'user_image',0),(125,28,1652171442,'user_album',0),(126,62,1652171442,'user_image',0),(127,62,1652171442,'user_album',0),(128,1,1652171442,'user_image',15),(129,1,1652171442,'user_album',1),(130,29,1652171442,'node_node',15),(131,0,1652171442,'site_album',1),(132,0,1652171442,'site_image',15),(133,39,1652171442,'user_image',0),(134,39,1652171442,'user_album',0),(135,40,1652171442,'user_image',0),(136,40,1652171442,'user_album',0),(137,41,1652171442,'user_image',0),(138,41,1652171442,'user_album',0),(139,42,1652171442,'user_image',0),(140,42,1652171442,'user_album',0),(141,38,1652171442,'user_image',0),(142,38,1652171442,'user_album',0),(143,37,1652171442,'user_image',0),(144,37,1652171442,'user_album',0),(145,28,1652171442,'user_image',0),(146,28,1652171442,'user_album',0),(147,62,1652171442,'user_image',0),(148,62,1652171442,'user_album',0),(149,1,1652171442,'user_image',15),(150,1,1652171442,'user_album',1),(151,29,1652171442,'node_node',15),(152,0,1652171442,'site_album',1),(153,0,1652171442,'site_image',15),(154,39,1652171442,'user_image',0),(155,39,1652171442,'user_album',0),(156,40,1652171442,'user_image',0),(157,40,1652171442,'user_album',0),(158,41,1652171442,'user_image',0),(159,41,1652171442,'user_album',0),(160,42,1652171442,'user_image',0),(161,42,1652171442,'user_album',0),(162,38,1652171442,'user_image',0),(163,38,1652171442,'user_album',0),(164,37,1652171442,'user_image',0),(165,37,1652171442,'user_album',0),(166,28,1652171442,'user_image',0),(167,28,1652171442,'user_album',0),(168,62,1652171442,'user_image',0),(169,62,1652171442,'user_album',0),(170,1,1652171442,'user_image',15),(171,1,1652171442,'user_album',1),(172,29,1652171442,'node_node',15),(173,0,1652171442,'site_album',1),(174,0,1652171442,'site_image',15),(175,39,1652171442,'user_image',0),(176,39,1652171442,'user_album',0),(177,40,1652171442,'user_image',0),(178,40,1652171442,'user_album',0),(179,41,1652171442,'user_image',0),(180,41,1652171442,'user_album',0),(181,42,1652171442,'user_image',0),(182,42,1652171442,'user_album',0),(183,38,1652171442,'user_image',0),(184,38,1652171442,'user_album',0),(185,37,1652171442,'user_image',0),(186,37,1652171442,'user_album',0),(187,28,1652171442,'user_image',0),(188,28,1652171442,'user_album',0),(189,62,1652171442,'user_image',0),(190,62,1652171442,'user_album',0),(191,1,1652171442,'user_image',15),(192,1,1652171442,'user_album',1),(193,29,1652171442,'node_node',15),(194,0,1652171442,'site_album',1),(195,0,1652171442,'site_image',15),(196,39,1652171442,'user_image',0),(197,39,1652171442,'user_album',0),(198,40,1652171442,'user_image',0),(199,40,1652171442,'user_album',0),(200,41,1652171442,'user_image',0),(201,41,1652171442,'user_album',0),(202,42,1652171442,'user_image',0),(203,42,1652171442,'user_album',0),(204,38,1652171442,'user_image',0),(205,38,1652171442,'user_album',0),(206,37,1652171442,'user_image',0),(207,37,1652171442,'user_album',0),(208,28,1652171442,'user_image',0),(209,28,1652171442,'user_album',0),(210,62,1652171442,'user_image',0),(211,62,1652171442,'user_album',0),(212,1,1652171442,'user_image',15),(213,1,1652171442,'user_album',1),(214,29,1652171442,'node_node',15),(215,0,1652171442,'site_album',1),(216,0,1652171442,'site_image',15),(217,39,1652171442,'user_image',0),(218,39,1652171442,'user_album',0),(219,40,1652171442,'user_image',0),(220,40,1652171442,'user_album',0),(221,41,1652171442,'user_image',0),(222,41,1652171442,'user_album',0),(223,42,1652171442,'user_image',0),(224,42,1652171442,'user_album',0),(225,38,1652171442,'user_image',0),(226,38,1652171442,'user_album',0),(227,37,1652171442,'user_image',0),(228,37,1652171442,'user_album',0),(229,28,1652171442,'user_image',0),(230,28,1652171442,'user_album',0),(231,62,1652171442,'user_image',0),(232,62,1652171442,'user_album',0),(233,1,1652171442,'user_image',15),(234,1,1652171442,'user_album',1),(235,29,1652171442,'node_node',15),(236,0,1652171442,'site_album',1),(237,0,1652171442,'site_image',15),(238,39,1652171442,'user_image',0),(239,39,1652171442,'user_album',0),(240,40,1652171442,'user_image',0),(241,40,1652171442,'user_album',0),(242,41,1652171442,'user_image',0),(243,41,1652171442,'user_album',0),(244,42,1652171442,'user_image',0),(245,42,1652171442,'user_album',0),(246,38,1652171442,'user_image',0),(247,38,1652171442,'user_album',0),(248,37,1652171442,'user_image',0),(249,37,1652171442,'user_album',0),(250,28,1652171442,'user_image',0),(251,28,1652171442,'user_album',0),(252,62,1652171442,'user_image',0),(253,62,1652171442,'user_album',0),(254,1,1652171442,'user_image',15),(255,1,1652171442,'user_album',1),(256,29,1652171442,'node_node',15),(257,0,1652171442,'site_album',1),(258,0,1652171442,'site_image',15),(259,39,1652171442,'user_image',0),(260,39,1652171442,'user_album',0),(261,40,1652171442,'user_image',0),(262,40,1652171442,'user_album',0),(263,41,1652171442,'user_image',0),(264,41,1652171442,'user_album',0),(265,42,1652171442,'user_image',0),(266,42,1652171442,'user_album',0),(267,38,1652171442,'user_image',0),(268,38,1652171442,'user_album',0),(269,37,1652171442,'user_image',0),(270,37,1652171442,'user_album',0),(271,28,1652171442,'user_image',0),(272,28,1652171442,'user_album',0),(273,62,1652171442,'user_image',0),(274,62,1652171442,'user_album',0),(275,1,1652171442,'user_image',15),(276,1,1652171442,'user_album',1),(277,29,1652171442,'node_node',15),(278,0,1652171442,'site_album',1),(279,0,1652171442,'site_image',15),(280,39,1652171442,'user_image',0),(281,39,1652171442,'user_album',0),(282,40,1652171442,'user_image',0),(283,40,1652171442,'user_album',0),(284,41,1652171442,'user_image',0),(285,41,1652171442,'user_album',0),(286,42,1652171442,'user_image',0),(287,42,1652171442,'user_album',0),(288,38,1652171442,'user_image',0),(289,38,1652171442,'user_album',0),(290,37,1652171442,'user_image',0),(291,37,1652171442,'user_album',0),(292,28,1652171442,'user_image',0),(293,28,1652171442,'user_album',0),(294,62,1652171442,'user_image',0),(295,62,1652171442,'user_album',0),(296,1,1652171442,'user_image',15),(297,1,1652171442,'user_album',1),(298,29,1652171442,'node_node',15),(299,0,1652171442,'site_album',1),(300,0,1652171442,'site_image',15),(301,39,1652171442,'user_image',0),(302,39,1652171442,'user_album',0),(303,40,1652171442,'user_image',0),(304,40,1652171442,'user_album',0),(305,41,1652171442,'user_image',0),(306,41,1652171442,'user_album',0),(307,42,1652171442,'user_image',0),(308,42,1652171442,'user_album',0),(309,38,1652171442,'user_image',0),(310,38,1652171442,'user_album',0),(311,37,1652171442,'user_image',0),(312,37,1652171442,'user_album',0),(313,28,1652171442,'user_image',0),(314,28,1652171442,'user_album',0),(315,62,1652171442,'user_image',0),(316,62,1652171442,'user_album',0),(317,1,1652171442,'user_image',15),(318,1,1652171442,'user_album',1),(319,29,1652171442,'node_node',15),(320,0,1652171442,'site_album',1),(321,0,1652171442,'site_image',15),(322,39,1652171442,'user_image',0),(323,39,1652171442,'user_album',0),(324,40,1652171442,'user_image',0),(325,40,1652171442,'user_album',0),(326,41,1652171442,'user_image',0),(327,41,1652171442,'user_album',0),(328,42,1652171442,'user_image',0),(329,42,1652171442,'user_album',0),(330,38,1652171442,'user_image',0),(331,38,1652171442,'user_album',0),(332,37,1652171442,'user_image',0),(333,37,1652171442,'user_album',0),(334,28,1652171442,'user_image',0),(335,28,1652171442,'user_album',0),(336,62,1652171442,'user_image',0),(337,62,1652171442,'user_album',0),(338,1,1652171442,'user_image',15),(339,1,1652171442,'user_album',1),(340,29,1652171442,'node_node',15),(341,0,1652171442,'site_album',1),(342,0,1652171442,'site_image',15),(343,39,1652171442,'user_image',0),(344,39,1652171442,'user_album',0),(345,40,1652171442,'user_image',0),(346,40,1652171442,'user_album',0),(347,41,1652171442,'user_image',0),(348,41,1652171442,'user_album',0),(349,42,1652171442,'user_image',0),(350,42,1652171442,'user_album',0),(351,38,1652171442,'user_image',0),(352,38,1652171442,'user_album',0),(353,37,1652171442,'user_image',0),(354,37,1652171442,'user_album',0),(355,28,1652171442,'user_image',0),(356,28,1652171442,'user_album',0),(357,62,1652171442,'user_image',0),(358,62,1652171442,'user_album',0),(359,1,1652171442,'user_image',15),(360,1,1652171442,'user_album',1),(361,29,1652171442,'node_node',15),(362,0,1652171442,'site_album',1),(363,0,1652171442,'site_image',15),(364,39,1652171442,'user_image',0),(365,39,1652171442,'user_album',0),(366,40,1652171442,'user_image',0),(367,40,1652171442,'user_album',0),(368,41,1652171442,'user_image',0),(369,41,1652171442,'user_album',0),(370,42,1652171442,'user_image',0),(371,42,1652171442,'user_album',0),(372,38,1652171442,'user_image',0),(373,38,1652171442,'user_album',0),(374,37,1652171442,'user_image',0),(375,37,1652171442,'user_album',0),(376,28,1652171442,'user_image',0),(377,28,1652171442,'user_album',0),(378,62,1652171442,'user_image',0),(379,62,1652171442,'user_album',0),(380,1,1652171442,'user_image',15),(381,1,1652171442,'user_album',1),(382,29,1652171442,'node_node',15),(383,0,1652171442,'site_album',1),(384,0,1652171442,'site_image',15),(385,39,1652171442,'user_image',0),(386,39,1652171442,'user_album',0),(387,40,1652171442,'user_image',0),(388,40,1652171442,'user_album',0),(389,41,1652171442,'user_image',0),(390,41,1652171442,'user_album',0),(391,42,1652171442,'user_image',0),(392,42,1652171442,'user_album',0),(393,38,1652171442,'user_image',0),(394,38,1652171442,'user_album',0),(395,37,1652171442,'user_image',0),(396,37,1652171442,'user_album',0),(397,28,1652171442,'user_image',0),(398,28,1652171442,'user_album',0),(399,62,1652171442,'user_image',0),(400,62,1652171442,'user_album',0),(401,1,1652171442,'user_image',15),(402,1,1652171442,'user_album',1),(403,29,1652171442,'node_node',15),(404,0,1652171442,'site_album',1),(405,0,1652171442,'site_image',15),(406,39,1652171442,'user_image',0),(407,39,1652171442,'user_album',0),(408,40,1652171442,'user_image',0),(409,40,1652171442,'user_album',0),(410,41,1652171442,'user_image',0),(411,41,1652171442,'user_album',0),(412,42,1652171442,'user_image',0),(413,42,1652171442,'user_album',0),(414,38,1652171442,'user_image',0),(415,38,1652171442,'user_album',0),(416,37,1652171442,'user_image',0),(417,37,1652171442,'user_album',0),(418,28,1652171442,'user_image',0),(419,28,1652171442,'user_album',0),(420,62,1652171442,'user_image',0),(421,62,1652171442,'user_album',0),(422,1,1652171442,'user_image',15),(423,1,1652171442,'user_album',1),(424,29,1652171442,'node_node',15),(425,0,1652171442,'site_album',1),(426,0,1652171442,'site_image',15),(427,39,1652171442,'user_image',0),(428,39,1652171442,'user_album',0),(429,40,1652171442,'user_image',0),(430,40,1652171442,'user_album',0),(431,41,1652171442,'user_image',0),(432,41,1652171442,'user_album',0),(433,42,1652171442,'user_image',0),(434,42,1652171442,'user_album',0),(435,38,1652171442,'user_image',0),(436,38,1652171442,'user_album',0),(437,37,1652171442,'user_image',0),(438,37,1652171442,'user_album',0),(439,28,1652171442,'user_image',0),(440,28,1652171442,'user_album',0),(441,62,1652171442,'user_image',0),(442,62,1652171442,'user_album',0),(443,1,1652171442,'user_image',15),(444,1,1652171442,'user_album',1),(445,29,1652171442,'node_node',15),(446,0,1652171442,'site_album',1),(447,0,1652171442,'site_image',15),(448,39,1652171442,'user_image',0),(449,39,1652171442,'user_album',0),(450,40,1652171442,'user_image',0),(451,40,1652171442,'user_album',0),(452,41,1652171442,'user_image',0),(453,41,1652171442,'user_album',0),(454,42,1652171442,'user_image',0),(455,42,1652171442,'user_album',0),(456,38,1652171442,'user_image',0),(457,38,1652171442,'user_album',0),(458,37,1652171442,'user_image',0),(459,37,1652171442,'user_album',0),(460,28,1652171442,'user_image',0),(461,28,1652171442,'user_album',0),(462,62,1652171442,'user_image',0),(463,62,1652171442,'user_album',0),(464,1,1652171442,'user_image',15),(465,1,1652171442,'user_album',1),(466,29,1652171442,'node_node',15),(467,0,1652171442,'site_album',1),(468,0,1652171442,'site_image',15),(469,39,1652171442,'user_image',0),(470,39,1652171442,'user_album',0),(471,40,1652171442,'user_image',0),(472,40,1652171442,'user_album',0),(473,41,1652171442,'user_image',0),(474,41,1652171442,'user_album',0),(475,42,1652171442,'user_image',0),(476,42,1652171442,'user_album',0),(477,38,1652171442,'user_image',0),(478,38,1652171442,'user_album',0),(479,37,1652171442,'user_image',0),(480,37,1652171442,'user_album',0),(481,28,1652171442,'user_image',0),(482,28,1652171442,'user_album',0),(483,62,1652171442,'user_image',0),(484,62,1652171442,'user_album',0),(485,1,1652171442,'user_image',15),(486,1,1652171442,'user_album',1),(487,29,1652171442,'node_node',15);
/*!40000 ALTER TABLE `photos_count` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `photos_image`
--

DROP TABLE IF EXISTS `photos_image`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `photos_image` (
  `fid` int(10) unsigned NOT NULL,
  `pid` int(10) unsigned NOT NULL,
  `title` varchar(255) DEFAULT '' COMMENT 'The title of this image.',
  `des` longtext NOT NULL,
  `wid` int(11) NOT NULL DEFAULT 0,
  `count` int(10) unsigned NOT NULL DEFAULT 0,
  `comcount` int(10) unsigned NOT NULL DEFAULT 0,
  `exif` tinyint(4) DEFAULT 0,
  PRIMARY KEY (`fid`),
  KEY `pid` (`pid`),
  KEY `wid` (`wid`),
  KEY `count` (`count`),
  KEY `comcount` (`comcount`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `photos_image`
--

LOCK TABLES `photos_image` WRITE;
/*!40000 ALTER TABLE `photos_image` DISABLE KEYS */;
INSERT INTO `photos_image` VALUES (18,29,'PNTA XXIX','',13,3,0,1),(19,29,'','',1,5,0,1),(20,29,'','',2,9,0,1),(21,29,'','',3,2,0,1),(22,29,'','',4,3,0,1),(24,29,'','',5,6,0,1),(25,29,'','',6,6,0,1),(26,29,'','',7,6,0,1),(27,29,'','',8,6,0,1),(28,29,'','',9,8,0,1),(29,29,'','',10,12,0,1),(36,29,'','',0,0,0,1),(37,29,'','',11,0,0,1),(38,29,'','',14,0,0,1),(39,29,'','',12,0,0,1);
/*!40000 ALTER TABLE `photos_image` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `photos_node`
--

DROP TABLE IF EXISTS `photos_node`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `photos_node` (
  `nid` int(10) unsigned NOT NULL,
  `fid` int(10) unsigned NOT NULL,
  `wid` int(11) NOT NULL DEFAULT 0,
  KEY `nid` (`nid`),
  KEY `fid` (`fid`),
  KEY `wid` (`wid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `photos_node`
--

LOCK TABLES `photos_node` WRITE;
/*!40000 ALTER TABLE `photos_node` DISABLE KEYS */;
INSERT INTO `photos_node` VALUES (29,18,0),(29,19,0),(29,20,0),(29,21,0),(29,22,0),(29,24,0),(29,25,0),(29,26,0),(29,27,0),(29,28,0),(29,29,0),(29,36,0),(29,37,0),(29,38,0),(29,39,0);
/*!40000 ALTER TABLE `photos_node` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `queue`
--

DROP TABLE IF EXISTS `queue`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `queue` (
  `item_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: Unique item ID.',
  `name` varchar(255) NOT NULL DEFAULT '' COMMENT 'The queue name.',
  `data` longblob DEFAULT NULL COMMENT 'The arbitrary data for the item.',
  `expire` int(11) NOT NULL DEFAULT 0 COMMENT 'Timestamp when the claim lease expires on the item.',
  `created` int(11) NOT NULL DEFAULT 0 COMMENT 'Timestamp when the item was created.',
  PRIMARY KEY (`item_id`),
  KEY `name_created` (`name`,`created`),
  KEY `expire` (`expire`)
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8 COMMENT='Stores items in queues.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `queue`
--

LOCK TABLES `queue` WRITE;
/*!40000 ALTER TABLE `queue` DISABLE KEYS */;
INSERT INTO `queue` VALUES (1,'update_fetch_tasks','a:8:{s:4:\"name\";s:12:\"addressfield\";s:4:\"info\";a:6:{s:4:\"name\";s:13:\"Address Field\";s:7:\"package\";s:6:\"Fields\";s:7:\"version\";s:7:\"7.x-1.2\";s:7:\"project\";s:12:\"addressfield\";s:9:\"datestamp\";s:10:\"1444254070\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1444254070\";s:8:\"includes\";a:1:{s:12:\"addressfield\";s:13:\"Address Field\";}s:12:\"project_type\";s:6:\"module\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}',1652171452,1651056051),(2,'update_fetch_tasks','a:8:{s:4:\"name\";s:6:\"drupal\";s:4:\"info\";a:6:{s:4:\"name\";s:5:\"Block\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.59\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1524673284\";s:8:\"includes\";a:35:{s:5:\"block\";s:5:\"Block\";s:5:\"color\";s:5:\"Color\";s:7:\"comment\";s:7:\"Comment\";s:7:\"contact\";s:7:\"Contact\";s:10:\"contextual\";s:16:\"Contextual links\";s:9:\"dashboard\";s:9:\"Dashboard\";s:5:\"dblog\";s:16:\"Database logging\";s:5:\"field\";s:5:\"Field\";s:17:\"field_sql_storage\";s:17:\"Field SQL storage\";s:8:\"field_ui\";s:8:\"Field UI\";s:4:\"file\";s:4:\"File\";s:6:\"filter\";s:6:\"Filter\";s:5:\"forum\";s:5:\"Forum\";s:4:\"help\";s:4:\"Help\";s:5:\"image\";s:5:\"Image\";s:4:\"list\";s:4:\"List\";s:6:\"locale\";s:6:\"Locale\";s:4:\"menu\";s:4:\"Menu\";s:4:\"node\";s:4:\"Node\";s:6:\"number\";s:6:\"Number\";s:7:\"options\";s:7:\"Options\";s:7:\"overlay\";s:7:\"Overlay\";s:4:\"path\";s:4:\"Path\";s:3:\"php\";s:10:\"PHP filter\";s:3:\"rdf\";s:3:\"RDF\";s:8:\"shortcut\";s:8:\"Shortcut\";s:6:\"system\";s:6:\"System\";s:8:\"taxonomy\";s:8:\"Taxonomy\";s:4:\"text\";s:4:\"Text\";s:7:\"toolbar\";s:7:\"Toolbar\";s:11:\"translation\";s:19:\"Content translation\";s:6:\"update\";s:14:\"Update manager\";s:4:\"user\";s:4:\"User\";s:6:\"bartik\";s:6:\"Bartik\";s:5:\"seven\";s:5:\"Seven\";}s:12:\"project_type\";s:4:\"core\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}',1652171459,1651056051),(3,'update_fetch_tasks','a:8:{s:4:\"name\";s:6:\"ctools\";s:4:\"info\";a:6:{s:4:\"name\";s:11:\"Chaos tools\";s:7:\"package\";s:16:\"Chaos tool suite\";s:7:\"version\";s:8:\"7.x-1.14\";s:7:\"project\";s:6:\"ctools\";s:9:\"datestamp\";s:10:\"1519455788\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1519455788\";s:8:\"includes\";a:1:{s:6:\"ctools\";s:11:\"Chaos tools\";}s:12:\"project_type\";s:6:\"module\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}',1652171466,1651056051),(4,'update_fetch_tasks','a:8:{s:4:\"name\";s:6:\"entity\";s:4:\"info\";a:6:{s:4:\"name\";s:10:\"Entity API\";s:7:\"version\";s:7:\"7.x-1.9\";s:7:\"project\";s:6:\"entity\";s:9:\"datestamp\";s:10:\"1518620551\";s:7:\"package\";s:5:\"Other\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1518620551\";s:8:\"includes\";a:2:{s:6:\"entity\";s:10:\"Entity API\";s:12:\"entity_token\";s:13:\"Entity tokens\";}s:12:\"project_type\";s:6:\"module\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}',1652171472,1651056051),(5,'update_fetch_tasks','a:8:{s:4:\"name\";s:18:\"entity_translation\";s:4:\"info\";a:6:{s:4:\"name\";s:18:\"Entity Translation\";s:7:\"package\";s:33:\"Multilingual - Entity Translation\";s:7:\"version\";s:7:\"7.x-1.0\";s:7:\"project\";s:18:\"entity_translation\";s:9:\"datestamp\";s:10:\"1522600694\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1522600694\";s:8:\"includes\";a:2:{s:18:\"entity_translation\";s:18:\"Entity Translation\";s:26:\"entity_translation_upgrade\";s:26:\"Entity Translation Upgrade\";}s:12:\"project_type\";s:6:\"module\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}',0,1651056051),(6,'update_fetch_tasks','a:8:{s:4:\"name\";s:8:\"features\";s:4:\"info\";a:6:{s:4:\"name\";s:8:\"Features\";s:7:\"package\";s:8:\"Features\";s:7:\"version\";s:8:\"7.x-2.10\";s:7:\"project\";s:8:\"features\";s:9:\"datestamp\";s:10:\"1461011641\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1461011641\";s:8:\"includes\";a:1:{s:8:\"features\";s:8:\"Features\";}s:12:\"project_type\";s:6:\"module\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}',0,1651056051),(7,'update_fetch_tasks','a:8:{s:4:\"name\";s:8:\"geocoder\";s:4:\"info\";a:6:{s:4:\"name\";s:8:\"Geocoder\";s:7:\"version\";s:7:\"7.x-1.4\";s:7:\"project\";s:8:\"geocoder\";s:9:\"datestamp\";s:10:\"1536073093\";s:7:\"package\";s:5:\"Other\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1536073093\";s:8:\"includes\";a:1:{s:8:\"geocoder\";s:8:\"Geocoder\";}s:12:\"project_type\";s:6:\"module\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}',0,1651056051),(8,'update_fetch_tasks','a:8:{s:4:\"name\";s:8:\"geofield\";s:4:\"info\";a:6:{s:4:\"name\";s:8:\"Geofield\";s:7:\"package\";s:6:\"Fields\";s:7:\"version\";s:7:\"7.x-2.3\";s:7:\"project\";s:8:\"geofield\";s:9:\"datestamp\";s:10:\"1411337638\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1411337638\";s:8:\"includes\";a:1:{s:8:\"geofield\";s:8:\"Geofield\";}s:12:\"project_type\";s:6:\"module\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}',0,1651056051),(9,'update_fetch_tasks','a:8:{s:4:\"name\";s:6:\"geophp\";s:4:\"info\";a:6:{s:4:\"name\";s:6:\"geoPHP\";s:7:\"version\";s:7:\"7.x-1.7\";s:7:\"project\";s:6:\"geophp\";s:9:\"datestamp\";s:10:\"1352084822\";s:7:\"package\";s:5:\"Other\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1352084822\";s:8:\"includes\";a:1:{s:6:\"geophp\";s:6:\"geoPHP\";}s:12:\"project_type\";s:6:\"module\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}',0,1651056051),(10,'update_fetch_tasks','a:8:{s:4:\"name\";s:4:\"gmap\";s:4:\"info\";a:6:{s:4:\"name\";s:4:\"GMap\";s:7:\"package\";s:8:\"Location\";s:7:\"version\";s:8:\"7.x-2.11\";s:7:\"project\";s:4:\"gmap\";s:9:\"datestamp\";s:10:\"1457698170\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1457698170\";s:8:\"includes\";a:3:{s:4:\"gmap\";s:4:\"GMap\";s:13:\"gmap_location\";s:13:\"GMap Location\";s:26:\"location_gmap_find_address\";s:37:\"Location + Gmap \'Find Address\' button\";}s:12:\"project_type\";s:6:\"module\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}',0,1651056051),(11,'update_fetch_tasks','a:8:{s:4:\"name\";s:4:\"i18n\";s:4:\"info\";a:6:{s:4:\"name\";s:20:\"Internationalization\";s:7:\"package\";s:35:\"Multilingual - Internationalization\";s:7:\"version\";s:8:\"7.x-1.26\";s:7:\"project\";s:4:\"i18n\";s:9:\"datestamp\";s:10:\"1534531985\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1534531985\";s:8:\"includes\";a:16:{s:4:\"i18n\";s:20:\"Internationalization\";s:10:\"i18n_block\";s:15:\"Block languages\";s:12:\"i18n_contact\";s:19:\"Contact translation\";s:10:\"i18n_field\";s:17:\"Field translation\";s:10:\"i18n_forum\";s:18:\"Multilingual forum\";s:9:\"i18n_menu\";s:16:\"Menu translation\";s:9:\"i18n_node\";s:20:\"Multilingual content\";s:9:\"i18n_path\";s:16:\"Path translation\";s:13:\"i18n_redirect\";s:20:\"Translation redirect\";s:11:\"i18n_select\";s:19:\"Multilingual select\";s:11:\"i18n_string\";s:18:\"String translation\";s:9:\"i18n_sync\";s:24:\"Synchronize translations\";s:13:\"i18n_taxonomy\";s:20:\"Taxonomy translation\";s:16:\"i18n_translation\";s:16:\"Translation sets\";s:9:\"i18n_user\";s:21:\"User mail translation\";s:13:\"i18n_variable\";s:20:\"Variable translation\";}s:12:\"project_type\";s:6:\"module\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}',0,1651056051),(12,'update_fetch_tasks','a:8:{s:4:\"name\";s:4:\"imce\";s:4:\"info\";a:6:{s:4:\"name\";s:4:\"IMCE\";s:7:\"package\";s:5:\"Media\";s:7:\"version\";s:8:\"7.x-1.11\";s:7:\"project\";s:4:\"imce\";s:9:\"datestamp\";s:10:\"1495890787\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1495890787\";s:8:\"includes\";a:1:{s:4:\"imce\";s:4:\"IMCE\";}s:12:\"project_type\";s:6:\"module\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}',0,1651056051),(13,'update_fetch_tasks','a:8:{s:4:\"name\";s:11:\"l10n_update\";s:4:\"info\";a:6:{s:4:\"name\";s:19:\"Localization update\";s:7:\"package\";s:12:\"Multilingual\";s:7:\"version\";s:7:\"7.x-1.1\";s:7:\"project\";s:11:\"l10n_update\";s:9:\"datestamp\";s:10:\"1415605322\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1415605322\";s:8:\"includes\";a:1:{s:11:\"l10n_update\";s:19:\"Localization update\";}s:12:\"project_type\";s:6:\"module\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}',0,1651056051),(14,'update_fetch_tasks','a:8:{s:4:\"name\";s:13:\"languageicons\";s:4:\"info\";a:6:{s:4:\"name\";s:14:\"Language Icons\";s:7:\"package\";s:12:\"Multilingual\";s:7:\"version\";s:7:\"7.x-1.1\";s:7:\"project\";s:13:\"languageicons\";s:9:\"datestamp\";s:10:\"1399825730\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1399825730\";s:8:\"includes\";a:1:{s:13:\"languageicons\";s:14:\"Language Icons\";}s:12:\"project_type\";s:6:\"module\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}',0,1651056051),(15,'update_fetch_tasks','a:8:{s:4:\"name\";s:9:\"libraries\";s:4:\"info\";a:6:{s:4:\"name\";s:9:\"Libraries\";s:7:\"version\";s:7:\"7.x-2.4\";s:7:\"project\";s:9:\"libraries\";s:9:\"datestamp\";s:10:\"1536581584\";s:7:\"package\";s:5:\"Other\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1536581584\";s:8:\"includes\";a:1:{s:9:\"libraries\";s:9:\"Libraries\";}s:12:\"project_type\";s:6:\"module\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}',0,1651056051),(16,'update_fetch_tasks','a:8:{s:4:\"name\";s:8:\"location\";s:4:\"info\";a:6:{s:4:\"name\";s:8:\"Location\";s:7:\"package\";s:8:\"Location\";s:7:\"version\";s:7:\"7.x-3.7\";s:7:\"project\";s:8:\"location\";s:9:\"datestamp\";s:10:\"1438695672\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1438695672\";s:8:\"includes\";a:3:{s:8:\"location\";s:8:\"Location\";s:12:\"location_cck\";s:12:\"Location CCK\";s:13:\"location_node\";s:14:\"Node Locations\";}s:12:\"project_type\";s:6:\"module\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}',0,1651056051),(17,'update_fetch_tasks','a:8:{s:4:\"name\";s:6:\"photos\";s:4:\"info\";a:6:{s:4:\"name\";s:12:\"Album photos\";s:7:\"package\";s:12:\"album photos\";s:7:\"version\";s:11:\"7.x-3.0-rc4\";s:7:\"project\";s:6:\"photos\";s:9:\"datestamp\";s:10:\"1465340041\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1465340041\";s:8:\"includes\";a:2:{s:6:\"photos\";s:12:\"Album photos\";s:13:\"photos_access\";s:13:\"Photos access\";}s:12:\"project_type\";s:6:\"module\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}',0,1651056051),(18,'update_fetch_tasks','a:8:{s:4:\"name\";s:7:\"proj4js\";s:4:\"info\";a:6:{s:4:\"name\";s:7:\"Proj4JS\";s:7:\"version\";s:7:\"7.x-1.2\";s:7:\"project\";s:7:\"proj4js\";s:9:\"datestamp\";s:10:\"1363209312\";s:7:\"package\";s:5:\"Other\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1363209312\";s:8:\"includes\";a:1:{s:7:\"proj4js\";s:7:\"Proj4JS\";}s:12:\"project_type\";s:6:\"module\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}',0,1651056051),(19,'update_fetch_tasks','a:8:{s:4:\"name\";s:5:\"title\";s:4:\"info\";a:6:{s:4:\"name\";s:5:\"Title\";s:7:\"package\";s:6:\"Fields\";s:7:\"version\";s:14:\"7.x-1.0-alpha9\";s:7:\"project\";s:5:\"title\";s:9:\"datestamp\";s:10:\"1484302985\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1484302985\";s:8:\"includes\";a:1:{s:5:\"title\";s:5:\"Title\";}s:12:\"project_type\";s:6:\"module\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}',0,1651056051),(20,'update_fetch_tasks','a:8:{s:4:\"name\";s:8:\"variable\";s:4:\"info\";a:6:{s:4:\"name\";s:8:\"Variable\";s:7:\"package\";s:8:\"Variable\";s:7:\"version\";s:7:\"7.x-2.5\";s:7:\"project\";s:8:\"variable\";s:9:\"datestamp\";s:10:\"1398250128\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1398250128\";s:8:\"includes\";a:3:{s:8:\"variable\";s:8:\"Variable\";s:14:\"variable_realm\";s:14:\"Variable realm\";s:14:\"variable_store\";s:14:\"Variable store\";}s:12:\"project_type\";s:6:\"module\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}',0,1651056051),(21,'update_fetch_tasks','a:8:{s:4:\"name\";s:5:\"views\";s:4:\"info\";a:6:{s:4:\"name\";s:5:\"Views\";s:7:\"package\";s:5:\"Views\";s:7:\"version\";s:8:\"7.x-3.24\";s:7:\"project\";s:5:\"views\";s:9:\"datestamp\";s:10:\"1583615732\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1583615732\";s:8:\"includes\";a:2:{s:5:\"views\";s:5:\"Views\";s:8:\"views_ui\";s:8:\"Views UI\";}s:12:\"project_type\";s:6:\"module\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}',0,1651056051),(22,'update_fetch_tasks','a:8:{s:4:\"name\";s:22:\"alpha_responsive_theme\";s:4:\"info\";a:5:{s:4:\"name\";s:22:\"Alpha Responsive Theme\";s:7:\"version\";s:7:\"7.x-1.4\";s:7:\"project\";s:22:\"alpha_responsive_theme\";s:9:\"datestamp\";s:10:\"1511889487\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1511889487\";s:8:\"includes\";a:1:{s:22:\"alpha_responsive_theme\";s:22:\"Alpha Responsive Theme\";}s:12:\"project_type\";s:5:\"theme\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}',0,1651056051),(23,'update_fetch_tasks','a:8:{s:4:\"name\";s:12:\"multipurpose\";s:4:\"info\";a:5:{s:4:\"name\";s:18:\"Multipurpose Theme\";s:7:\"version\";s:7:\"7.x-1.0\";s:7:\"project\";s:12:\"multipurpose\";s:9:\"datestamp\";s:10:\"1409600329\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1409600329\";s:8:\"includes\";a:1:{s:12:\"multipurpose\";s:18:\"Multipurpose Theme\";}s:12:\"project_type\";s:5:\"theme\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}',0,1651056051),(24,'update_fetch_tasks','a:8:{s:4:\"name\";s:13:\"venture_theme\";s:4:\"info\";a:5:{s:4:\"name\";s:13:\"Venture Theme\";s:7:\"version\";s:7:\"7.x-1.1\";s:7:\"project\";s:13:\"venture_theme\";s:9:\"datestamp\";s:10:\"1402425233\";s:16:\"_info_file_ctime\";i:1651048651;}s:9:\"datestamp\";s:10:\"1402425233\";s:8:\"includes\";a:1:{s:13:\"venture_theme\";s:13:\"Venture Theme\";}s:12:\"project_type\";s:5:\"theme\";s:14:\"project_status\";b:1;s:10:\"sub_themes\";a:0:{}s:11:\"base_themes\";a:0:{}}',0,1651056051);
/*!40000 ALTER TABLE `queue` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `rdf_mapping`
--

DROP TABLE IF EXISTS `rdf_mapping`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `rdf_mapping` (
  `type` varchar(128) NOT NULL COMMENT 'The name of the entity type a mapping applies to (node, user, comment, etc.).',
  `bundle` varchar(128) NOT NULL COMMENT 'The name of the bundle a mapping applies to.',
  `mapping` longblob DEFAULT NULL COMMENT 'The serialized mapping of the bundle type and fields to RDF terms.',
  PRIMARY KEY (`type`,`bundle`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores custom RDF mappings for user defined content types...';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `rdf_mapping`
--

LOCK TABLES `rdf_mapping` WRITE;
/*!40000 ALTER TABLE `rdf_mapping` DISABLE KEYS */;
INSERT INTO `rdf_mapping` VALUES ('node','article','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\";}}'),('node','page','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\";}}');
/*!40000 ALTER TABLE `rdf_mapping` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `registry`
--

DROP TABLE IF EXISTS `registry`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `registry` (
  `name` varchar(255) NOT NULL DEFAULT '' COMMENT 'The name of the function, class, or interface.',
  `type` varchar(9) NOT NULL DEFAULT '' COMMENT 'Either function or class or interface.',
  `filename` varchar(255) NOT NULL COMMENT 'Name of the file.',
  `module` varchar(255) NOT NULL DEFAULT '' COMMENT 'Name of the module the file belongs to.',
  `weight` int(11) NOT NULL DEFAULT 0 COMMENT 'The order in which this module’s hooks should be invoked relative to other modules. Equal-weighted modules are ordered by name.',
  PRIMARY KEY (`name`,`type`),
  KEY `hook` (`type`,`weight`,`module`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Each record is a function, class, or interface name and...';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `registry`
--

LOCK TABLES `registry` WRITE;
/*!40000 ALTER TABLE `registry` DISABLE KEYS */;
INSERT INTO `registry` VALUES ('AccessDeniedTestCase','class','modules/system/system.test','system',0),('addressfield_views_handler_field_administrative_area','class','sites/all/modules/addressfield/views/addressfield_views_handler_field_administrative_area.inc','addressfield',0),('addressfield_views_handler_field_country','class','sites/all/modules/addressfield/views/addressfield_views_handler_field_country.inc','addressfield',0),('addressfield_views_handler_filter_country','class','sites/all/modules/addressfield/views/addressfield_views_handler_filter_country.inc','addressfield',0),('AdminMetaTagTestCase','class','modules/system/system.test','system',0),('ArchiverInterface','interface','includes/archiver.inc','',0),('ArchiverTar','class','modules/system/system.archiver.inc','system',0),('ArchiverZip','class','modules/system/system.archiver.inc','system',0),('Archive_Tar','class','modules/system/system.tar.inc','system',0),('BatchMemoryQueue','class','includes/batch.queue.inc','',0),('BatchQueue','class','includes/batch.queue.inc','',0),('BlockAdminThemeTestCase','class','modules/block/block.test','block',-5),('BlockCacheTestCase','class','modules/block/block.test','block',-5),('BlockHashTestCase','class','modules/block/block.test','block',-5),('BlockHiddenRegionTestCase','class','modules/block/block.test','block',-5),('BlockHTMLIdTestCase','class','modules/block/block.test','block',-5),('BlockInvalidRegionTestCase','class','modules/block/block.test','block',-5),('BlockTemplateSuggestionsUnitTest','class','modules/block/block.test','block',-5),('BlockTestCase','class','modules/block/block.test','block',-5),('BlockViewModuleDeltaAlterWebTest','class','modules/block/block.test','block',-5),('ColorTestCase','class','modules/color/color.test','color',0),('CommentActionsTestCase','class','modules/comment/comment.test','comment',0),('CommentAnonymous','class','modules/comment/comment.test','comment',0),('CommentApprovalTest','class','modules/comment/comment.test','comment',0),('CommentBlockFunctionalTest','class','modules/comment/comment.test','comment',0),('CommentContentRebuild','class','modules/comment/comment.test','comment',0),('CommentController','class','modules/comment/comment.module','comment',0),('CommentFieldsTest','class','modules/comment/comment.test','comment',0),('CommentHelperCase','class','modules/comment/comment.test','comment',0),('CommentInterfaceTest','class','modules/comment/comment.test','comment',0),('CommentNodeAccessTest','class','modules/comment/comment.test','comment',0),('CommentNodeChangesTestCase','class','modules/comment/comment.test','comment',0),('CommentPagerTest','class','modules/comment/comment.test','comment',0),('CommentPreviewTest','class','modules/comment/comment.test','comment',0),('CommentRSSUnitTest','class','modules/comment/comment.test','comment',0),('CommentThreadingTestCase','class','modules/comment/comment.test','comment',0),('CommentTokenReplaceTestCase','class','modules/comment/comment.test','comment',0),('ConfirmFormTest','class','modules/system/system.test','system',0),('ContactPersonalTestCase','class','modules/contact/contact.test','contact',0),('ContactSitewideTestCase','class','modules/contact/contact.test','contact',0),('ContextualDynamicContextTestCase','class','modules/contextual/contextual.test','contextual',0),('CowInstanceTest','class','sites/all/modules/location/tests/cow.test','location',0),('CronQueueTestCase','class','modules/system/system.test','system',0),('CronRunTestCase','class','modules/system/system.test','system',0),('CtoolsContextIDTestCase','class','sites/all/modules/ctools/tests/context.test','ctools',0),('CtoolsContextKeywordsSubstitutionTestCase','class','sites/all/modules/ctools/tests/context.test','ctools',0),('CtoolsContextUnitTestCase','class','sites/all/modules/ctools/tests/context.test','ctools',0),('CToolsCssCache','class','sites/all/modules/ctools/includes/css-cache.inc','ctools',0),('CtoolsCSSObjectCache','class','sites/all/modules/ctools/tests/css_cache.test','ctools',0),('CtoolsCssTestCase','class','sites/all/modules/ctools/tests/css.test','ctools',0),('CtoolsMathExpressionStackTestCase','class','sites/all/modules/ctools/tests/math_expression_stack.test','ctools',0),('CtoolsMathExpressionTestCase','class','sites/all/modules/ctools/tests/math_expression.test','ctools',0),('CtoolsModuleTestCase','class','sites/all/modules/ctools/tests/ctools.test','ctools',0),('CtoolsObjectCache','class','sites/all/modules/ctools/tests/object_cache.test','ctools',0),('CtoolsPageTokens','class','sites/all/modules/ctools/tests/page_tokens.test','ctools',0),('CtoolsPluginsGetInfoTestCase','class','sites/all/modules/ctools/tests/ctools.plugins.test','ctools',0),('CtoolsUnitObjectCachePlugins','class','sites/all/modules/ctools/tests/object_cache_unit.test','ctools',0),('ctools_context','class','sites/all/modules/ctools/includes/context.inc','ctools',0),('ctools_context_optional','class','sites/all/modules/ctools/includes/context.inc','ctools',0),('ctools_context_required','class','sites/all/modules/ctools/includes/context.inc','ctools',0),('ctools_export_ui','class','sites/all/modules/ctools/plugins/export_ui/ctools_export_ui.class.php','ctools',0),('ctools_math_expr','class','sites/all/modules/ctools/includes/math-expr.inc','ctools',0),('ctools_math_expr_stack','class','sites/all/modules/ctools/includes/math-expr.inc','ctools',0),('ctools_stylizer_image_processor','class','sites/all/modules/ctools/includes/stylizer.inc','ctools',0),('DashboardBlocksTestCase','class','modules/dashboard/dashboard.test','dashboard',0),('Database','class','includes/database/database.inc','',0),('DatabaseCondition','class','includes/database/query.inc','',0),('DatabaseConnection','class','includes/database/database.inc','',0),('DatabaseConnectionNotDefinedException','class','includes/database/database.inc','',0),('DatabaseConnection_mysql','class','includes/database/mysql/database.inc','',0),('DatabaseConnection_pgsql','class','includes/database/pgsql/database.inc','',0),('DatabaseConnection_sqlite','class','includes/database/sqlite/database.inc','',0),('DatabaseDriverNotSpecifiedException','class','includes/database/database.inc','',0),('DatabaseLog','class','includes/database/log.inc','',0),('DatabaseSchema','class','includes/database/schema.inc','',0),('DatabaseSchemaObjectDoesNotExistException','class','includes/database/schema.inc','',0),('DatabaseSchemaObjectExistsException','class','includes/database/schema.inc','',0),('DatabaseSchema_mysql','class','includes/database/mysql/schema.inc','',0),('DatabaseSchema_pgsql','class','includes/database/pgsql/schema.inc','',0),('DatabaseSchema_sqlite','class','includes/database/sqlite/schema.inc','',0),('DatabaseStatementBase','class','includes/database/database.inc','',0),('DatabaseStatementEmpty','class','includes/database/database.inc','',0),('DatabaseStatementInterface','interface','includes/database/database.inc','',0),('DatabaseStatementPrefetch','class','includes/database/prefetch.inc','',0),('DatabaseStatement_sqlite','class','includes/database/sqlite/database.inc','',0),('DatabaseTaskException','class','includes/install.inc','',0),('DatabaseTasks','class','includes/install.inc','',0),('DatabaseTasks_mysql','class','includes/database/mysql/install.inc','',0),('DatabaseTasks_pgsql','class','includes/database/pgsql/install.inc','',0),('DatabaseTasks_sqlite','class','includes/database/sqlite/install.inc','',0),('DatabaseTransaction','class','includes/database/database.inc','',0),('DatabaseTransactionCommitFailedException','class','includes/database/database.inc','',0),('DatabaseTransactionExplicitCommitNotAllowedException','class','includes/database/database.inc','',0),('DatabaseTransactionNameNonUniqueException','class','includes/database/database.inc','',0),('DatabaseTransactionNoActiveException','class','includes/database/database.inc','',0),('DatabaseTransactionOutOfOrderException','class','includes/database/database.inc','',0),('DateFormatTestCase','class','modules/system/system.test','system',0),('DateTimeFunctionalTest','class','modules/system/system.test','system',0),('DBLogTestCase','class','modules/dblog/dblog.test','dblog',0),('DefaultMailSystem','class','modules/system/system.mail.inc','system',0),('DeleteQuery','class','includes/database/query.inc','',0),('DeleteQuery_sqlite','class','includes/database/sqlite/query.inc','',0),('DrupalCacheArray','class','includes/bootstrap.inc','',0),('DrupalCacheInterface','interface','includes/cache.inc','',0),('DrupalDatabaseCache','class','includes/cache.inc','',0),('DrupalDefaultEntityController','class','includes/entity.inc','',0),('DrupalEntityControllerInterface','interface','includes/entity.inc','',0),('DrupalFakeCache','class','includes/cache-install.inc','',0),('Drupali18nConfigTestCase','class','sites/all/modules/i18n/i18n.test','i18n',10),('Drupali18nTestCase','class','sites/all/modules/i18n/i18n.test','i18n',10),('DrupalLocalStreamWrapper','class','includes/stream_wrappers.inc','',0),('DrupalPrivateStreamWrapper','class','includes/stream_wrappers.inc','',0),('DrupalPublicStreamWrapper','class','includes/stream_wrappers.inc','',0),('DrupalQueue','class','modules/system/system.queue.inc','system',0),('DrupalQueueInterface','interface','modules/system/system.queue.inc','system',0),('DrupalReliableQueueInterface','interface','modules/system/system.queue.inc','system',0),('DrupalRequestSanitizer','class','includes/request-sanitizer.inc','',0),('DrupalSetMessageTest','class','modules/system/system.test','system',0),('DrupalStreamWrapperInterface','interface','includes/stream_wrappers.inc','',0),('DrupalTemporaryStreamWrapper','class','includes/stream_wrappers.inc','',0),('DrupalUpdateException','class','includes/update.inc','',0),('DrupalUpdaterInterface','interface','includes/updater.inc','',0),('EnableDisableTestCase','class','modules/system/system.test','system',0),('Entity','class','sites/all/modules/entity/includes/entity.inc','entity',0),('EntityAPICommentNodeAccessTestCase','class','sites/all/modules/entity/entity.test','entity',0),('EntityAPIController','class','sites/all/modules/entity/includes/entity.controller.inc','entity',0),('EntityAPIControllerExportable','class','sites/all/modules/entity/includes/entity.controller.inc','entity',0),('EntityAPIControllerInterface','interface','sites/all/modules/entity/includes/entity.controller.inc','entity',0),('EntityAPIControllerRevisionableInterface','interface','sites/all/modules/entity/includes/entity.controller.inc','entity',0),('EntityAPIi18nItegrationTestCase','class','sites/all/modules/entity/entity.test','entity',0),('EntityAPIRulesIntegrationTestCase','class','sites/all/modules/entity/entity.test','entity',0),('EntityAPITestCase','class','sites/all/modules/entity/entity.test','entity',0),('EntityBundleableUIController','class','sites/all/modules/entity/includes/entity.ui.inc','entity',0),('EntityContentUIController','class','sites/all/modules/entity/includes/entity.ui.inc','entity',0),('EntityDB','class','sites/all/modules/entity/includes/entity.inc','entity',0),('EntityDBExtendable','class','sites/all/modules/entity/includes/entity.inc','entity',0),('EntityDefaultExtraFieldsController','class','sites/all/modules/entity/entity.info.inc','entity',0),('EntityDefaultFeaturesController','class','sites/all/modules/entity/entity.features.inc','entity',0),('EntityDefaultI18nStringController','class','sites/all/modules/entity/entity.i18n.inc','entity',0),('EntityDefaultMetadataController','class','sites/all/modules/entity/entity.info.inc','entity',0),('EntityDefaultRulesController','class','sites/all/modules/entity/entity.rules.inc','entity',0),('EntityDefaultUIController','class','sites/all/modules/entity/includes/entity.ui.inc','entity',0),('EntityDefaultViewsController','class','sites/all/modules/entity/views/entity.views.inc','entity',0),('EntityDrupalWrapper','class','sites/all/modules/entity/includes/entity.wrapper.inc','entity',0),('EntityExtendable','class','sites/all/modules/entity/includes/entity.inc','entity',0),('EntityExtraFieldsControllerInterface','interface','sites/all/modules/entity/entity.info.inc','entity',0),('EntityFieldHandlerHelper','class','sites/all/modules/entity/views/handlers/entity_views_field_handler_helper.inc','entity',0),('EntityFieldQuery','class','includes/entity.inc','',0),('EntityFieldQueryException','class','includes/entity.inc','',0),('EntityInterface','interface','sites/all/modules/entity/includes/entity.inc','entity',0),('EntityListWrapper','class','sites/all/modules/entity/includes/entity.wrapper.inc','entity',0),('EntityMalformedException','class','includes/entity.inc','',0),('EntityMetadataArrayObject','class','sites/all/modules/entity/includes/entity.wrapper.inc','entity',0),('EntityMetadataIntegrationTestCase','class','sites/all/modules/entity/entity.test','entity',0),('EntityMetadataNodeAccessTestCase','class','sites/all/modules/entity/entity.test','entity',0),('EntityMetadataNodeCreateAccessTestCase','class','sites/all/modules/entity/entity.test','entity',0),('EntityMetadataNodeRevisionAccessTestCase','class','sites/all/modules/entity/entity.test','entity',0),('EntityMetadataTaxonomyAccessTestCase','class','sites/all/modules/entity/entity.test','entity',0),('EntityMetadataTestCase','class','sites/all/modules/entity/entity.test','entity',0),('EntityMetadataWrapper','class','sites/all/modules/entity/includes/entity.wrapper.inc','entity',0),('EntityMetadataWrapperException','class','sites/all/modules/entity/includes/entity.wrapper.inc','entity',0),('EntityMetadataWrapperIterator','class','sites/all/modules/entity/includes/entity.wrapper.inc','entity',0),('EntityPropertiesTestCase','class','modules/field/tests/field.test','field',0),('EntityStructureWrapper','class','sites/all/modules/entity/includes/entity.wrapper.inc','entity',0),('EntityTokenTestCase','class','sites/all/modules/entity/entity.test','entity',0),('EntityTranslationCommentHandler','class','sites/all/modules/entity_translation/includes/translation.handler.comment.inc','entity_translation',0),('EntityTranslationCommentTestCase','class','sites/all/modules/entity_translation/tests/entity_translation.test','entity_translation',11),('EntityTranslationContentTranslationTestCase','class','sites/all/modules/entity_translation/tests/entity_translation.test','entity_translation',11),('EntityTranslationDefaultHandler','class','sites/all/modules/entity_translation/includes/translation.handler.inc','entity_translation',11),('EntityTranslationHandlerFactory','class','sites/all/modules/entity_translation/includes/translation.handler_factory.inc','entity_translation',11),('EntityTranslationHandlerInterface','interface','sites/all/modules/entity_translation/includes/translation.handler.inc','entity_translation',11),('EntityTranslationHierarchyTestCase','class','sites/all/modules/entity_translation/tests/entity_translation.test','entity_translation',11),('EntityTranslationHookTestCase','class','sites/all/modules/entity_translation/tests/entity_translation.test','entity_translation',11),('EntityTranslationIntegrationTestCase','class','sites/all/modules/entity_translation/tests/entity_translation.test','entity_translation',11),('EntityTranslationNodeHandler','class','sites/all/modules/entity_translation/includes/translation.handler.node.inc','entity_translation',11),('EntityTranslationTaxonomyAutocompleteTestCase','class','sites/all/modules/entity_translation/tests/entity_translation.test','entity_translation',11),('EntityTranslationTaxonomyTermHandler','class','sites/all/modules/entity_translation/includes/translation.handler.taxonomy_term.inc','entity_translation',11),('EntityTranslationTestCase','class','sites/all/modules/entity_translation/tests/entity_translation.test','entity_translation',11),('EntityTranslationToggleFieldsTranslatabilityTestCase','class','sites/all/modules/entity_translation/tests/entity_translation.test','entity_translation',11),('EntityTranslationTranslationTestCase','class','sites/all/modules/entity_translation/tests/entity_translation.test','entity_translation',11),('EntityTranslationUpgradeTestCase','class','sites/all/modules/entity_translation/entity_translation_upgrade/entity_translation_upgrade.test','entity_translation_upgrade',0),('EntityTranslationUserHandler','class','sites/all/modules/entity_translation/includes/translation.handler.user.inc','entity_translation',0),('EntityValueWrapper','class','sites/all/modules/entity/includes/entity.wrapper.inc','entity',0),('EntityWebTestCase','class','sites/all/modules/entity/entity.test','entity',0),('entity_translation_handler_field_field','class','sites/all/modules/entity_translation/views/entity_translation_handler_field_field.inc','entity_translation',0),('entity_translation_handler_field_label','class','sites/all/modules/entity_translation/views/entity_translation_handler_field_label.inc','entity_translation',0),('entity_translation_handler_field_translate_link','class','sites/all/modules/entity_translation/views/entity_translation_handler_field_translate_link.inc','entity_translation',0),('entity_translation_handler_filter_entity_type','class','sites/all/modules/entity_translation/views/entity_translation_handler_filter_entity_type.inc','entity_translation',0),('entity_translation_handler_filter_language','class','sites/all/modules/entity_translation/views/entity_translation_handler_filter_language.inc','entity_translation',0),('entity_translation_handler_filter_translation_exists','class','sites/all/modules/entity_translation/views/entity_translation_handler_filter_translation_exists.inc','entity_translation',0),('entity_translation_handler_relationship','class','sites/all/modules/entity_translation/views/entity_translation_handler_relationship.inc','entity_translation',11),('entity_views_handler_area_entity','class','sites/all/modules/entity/views/handlers/entity_views_handler_area_entity.inc','entity',0),('entity_views_handler_field_boolean','class','sites/all/modules/entity/views/handlers/entity_views_handler_field_boolean.inc','entity',0),('entity_views_handler_field_date','class','sites/all/modules/entity/views/handlers/entity_views_handler_field_date.inc','entity',0),('entity_views_handler_field_duration','class','sites/all/modules/entity/views/handlers/entity_views_handler_field_duration.inc','entity',0),('entity_views_handler_field_entity','class','sites/all/modules/entity/views/handlers/entity_views_handler_field_entity.inc','entity',0),('entity_views_handler_field_field','class','sites/all/modules/entity/views/handlers/entity_views_handler_field_field.inc','entity',0),('entity_views_handler_field_numeric','class','sites/all/modules/entity/views/handlers/entity_views_handler_field_numeric.inc','entity',0),('entity_views_handler_field_options','class','sites/all/modules/entity/views/handlers/entity_views_handler_field_options.inc','entity',0),('entity_views_handler_field_text','class','sites/all/modules/entity/views/handlers/entity_views_handler_field_text.inc','entity',0),('entity_views_handler_field_uri','class','sites/all/modules/entity/views/handlers/entity_views_handler_field_uri.inc','entity',0),('entity_views_handler_relationship','class','sites/all/modules/entity/views/handlers/entity_views_handler_relationship.inc','entity',0),('entity_views_handler_relationship_by_bundle','class','sites/all/modules/entity/views/handlers/entity_views_handler_relationship_by_bundle.inc','entity',0),('entity_views_plugin_row_entity_view','class','sites/all/modules/entity/views/plugins/entity_views_plugin_row_entity_view.inc','entity',0),('FeaturesCtoolsIntegrationTest','class','sites/all/modules/features/tests/features.test','features',20),('FeaturesDetectionTestCase','class','sites/all/modules/features/tests/features.test','features',20),('FeaturesEnableTestCase','class','sites/all/modules/features/tests/features.test','features',20),('FeaturesUserTestCase','class','sites/all/modules/features/tests/features.test','features',20),('FieldAttachOtherTestCase','class','modules/field/tests/field.test','field',0),('FieldAttachStorageTestCase','class','modules/field/tests/field.test','field',0),('FieldAttachTestCase','class','modules/field/tests/field.test','field',0),('FieldBulkDeleteTestCase','class','modules/field/tests/field.test','field',0),('FieldCrudTestCase','class','modules/field/tests/field.test','field',0),('FieldDisplayAPITestCase','class','modules/field/tests/field.test','field',0),('FieldException','class','modules/field/field.module','field',0),('FieldFormTestCase','class','modules/field/tests/field.test','field',0),('FieldInfo','class','modules/field/field.info.class.inc','field',0),('FieldInfoTestCase','class','modules/field/tests/field.test','field',0),('FieldInstanceCrudTestCase','class','modules/field/tests/field.test','field',0),('FieldsOverlapException','class','includes/database/database.inc','',0),('FieldSqlStorageTestCase','class','modules/field/modules/field_sql_storage/field_sql_storage.test','field_sql_storage',0),('FieldTestCase','class','modules/field/tests/field.test','field',0),('FieldTranslationsTestCase','class','modules/field/tests/field.test','field',0),('FieldUIAlterTestCase','class','modules/field_ui/field_ui.test','field_ui',0),('FieldUIManageDisplayTestCase','class','modules/field_ui/field_ui.test','field_ui',0),('FieldUIManageFieldsTestCase','class','modules/field_ui/field_ui.test','field_ui',0),('FieldUITestCase','class','modules/field_ui/field_ui.test','field_ui',0),('FieldUpdateForbiddenException','class','modules/field/field.module','field',0),('FieldValidationException','class','modules/field/field.attach.inc','field',0),('FileFieldAnonymousSubmission','class','modules/file/tests/file.test','file',0),('FileFieldDisplayTestCase','class','modules/file/tests/file.test','file',0),('FileFieldPathTestCase','class','modules/file/tests/file.test','file',0),('FileFieldRevisionTestCase','class','modules/file/tests/file.test','file',0),('FileFieldTestCase','class','modules/file/tests/file.test','file',0),('FileFieldValidateTestCase','class','modules/file/tests/file.test','file',0),('FileFieldWidgetTestCase','class','modules/file/tests/file.test','file',0),('FileManagedFileElementTestCase','class','modules/file/tests/file.test','file',0),('FilePrivateTestCase','class','modules/file/tests/file.test','file',0),('FileTaxonomyTermTestCase','class','modules/file/tests/file.test','file',0),('FileTokenReplaceTestCase','class','modules/file/tests/file.test','file',0),('FileTransfer','class','includes/filetransfer/filetransfer.inc','',0),('FileTransferChmodInterface','interface','includes/filetransfer/filetransfer.inc','',0),('FileTransferException','class','includes/filetransfer/filetransfer.inc','',0),('FileTransferFTP','class','includes/filetransfer/ftp.inc','',0),('FileTransferFTPExtension','class','includes/filetransfer/ftp.inc','',0),('FileTransferLocal','class','includes/filetransfer/local.inc','',0),('FileTransferSSH','class','includes/filetransfer/ssh.inc','',0),('FilterAdminTestCase','class','modules/filter/filter.test','filter',0),('FilterCRUDTestCase','class','modules/filter/filter.test','filter',0),('FilterDefaultFormatTestCase','class','modules/filter/filter.test','filter',0),('FilterDOMSerializeTestCase','class','modules/filter/filter.test','filter',0),('FilterFormatAccessTestCase','class','modules/filter/filter.test','filter',0),('FilterHooksTestCase','class','modules/filter/filter.test','filter',0),('FilterNoFormatTestCase','class','modules/filter/filter.test','filter',0),('FilterSecurityTestCase','class','modules/filter/filter.test','filter',0),('FilterSettingsTestCase','class','modules/filter/filter.test','filter',0),('FilterUnitTestCase','class','modules/filter/filter.test','filter',0),('FloodFunctionalTest','class','modules/system/system.test','system',0),('ForumIndexTestCase','class','modules/forum/forum.test','forum',0),('ForumTestCase','class','modules/forum/forum.test','forum',0),('FrontPageTestCase','class','modules/system/system.test','system',0),('GeofieldBaseTestCase','class','sites/all/modules/geofield/tests/geofield.test','geofield',0),('GeoFieldElementTestCase','class','sites/all/modules/geofield/tests/geofield.test','geofield',0),('GeofieldFormatterTestCase','class','sites/all/modules/geofield/tests/geofield.test','geofield',0),('geofieldProximityBase','class','sites/all/modules/geofield/views/proximity_plugins/geofieldProximityBase.inc','geofield',0),('geofieldProximityContextualFilter','class','sites/all/modules/geofield/views/proximity_plugins/geofieldProximityContextualFilter.inc','geofield',0),('geofieldProximityCurrentUser','class','sites/all/modules/geofield/views/proximity_plugins/geofieldProximityCurrentUser.inc','geofield',0),('geofieldProximityEntityURL','class','sites/all/modules/geofield/views/proximity_plugins/geofieldProximityEntityURL.inc','geofield',0),('geofieldProximityExposedFilter','class','sites/all/modules/geofield/views/proximity_plugins/geofieldProximityExposedFilter.inc','geofield',0),('geofieldProximityGeocoder','class','sites/all/modules/geofield/views/proximity_plugins/geofieldProximityGeocoder.inc','geofield',0),('geofieldProximityManual','class','sites/all/modules/geofield/views/proximity_plugins/geofieldProximityManual.inc','geofield',0),('geofieldProximityOtherGeofield','class','sites/all/modules/geofield/views/proximity_plugins/geofieldProximityOtherGeofield.inc','geofield',0),('geofieldProximityPluginInterface','interface','sites/all/modules/geofield/views/proximity_plugins/geofieldProximityBase.inc','geofield',0),('GeofieldWidgetTestCase','class','sites/all/modules/geofield/tests/geofield.test','geofield',0),('geofield_handler_argument_proximity','class','sites/all/modules/geofield/views/handlers/geofield_handler_argument_proximity.inc','geofield',0),('geofield_handler_field','class','sites/all/modules/geofield/views/handlers/geofield_handler_field.inc','geofield',0),('geofield_handler_filter','class','sites/all/modules/geofield/views/handlers/geofield_handler_filter.inc','geofield',0),('geofield_handler_sort','class','sites/all/modules/geofield/views/handlers/geofield_handler_sort.inc','geofield',0),('GmapDefaults','class','sites/all/modules/gmap/lib/Drupal/gmap/GmapDefaults.php','gmap',0),('GmapDefaultsTestCase','class','sites/all/modules/gmap/tests/oopmigration.test','gmap',0),('GMapMacroTest','class','sites/all/modules/gmap/tests/gmap.test','gmap',0),('GmapMacroToolbox','class','sites/all/modules/gmap/lib/Drupal/gmap/GmapMacroToolbox.php','gmap',0),('GmapMacroToolboxTestCase','class','sites/all/modules/gmap/tests/oopmigration.test','gmap',0),('GmapPolylineToolbox','class','sites/all/modules/gmap/lib/Drupal/gmap/GmapPolylineToolbox.php','gmap',0),('GmapPolylineToolboxTestCase','class','sites/all/modules/gmap/tests/oopmigration.test','gmap',0),('GMapSimpleAPITest','class','sites/all/modules/gmap/tests/gmap.test','gmap',0),('gmap_plugin_style_gmap','class','sites/all/modules/gmap/gmap_plugin_style_gmap.inc','gmap',0),('gmap_plugin_style_gmapextended','class','sites/all/modules/gmap/gmap_plugin_style_gmapextended.inc','gmap',0),('HelpTestCase','class','modules/help/help.test','help',0),('HookRequirementsTestCase','class','modules/system/system.test','system',0),('i18nBlocksTestCase','class','sites/all/modules/i18n/i18n_block/i18n_block.test','i18n_block',100),('i18nFieldTestCase','class','sites/all/modules/i18n/i18n_field/i18n_field.test','i18n_field',0),('i18nForumTestCase','class','sites/all/modules/i18n/i18n_forum/i18n_forum.test','i18n_forum',0),('i18nMenuTestCase','class','sites/all/modules/i18n/i18n_menu/i18n_menu.test','i18n_menu',0),('I18nNodeTestCase','class','sites/all/modules/i18n/i18n_node/i18n_node.test','i18n_node',0),('i18nPathTestCase','class','sites/all/modules/i18n/i18n_path/i18n_path.test','i18n_path',0),('I18NSelectAdminViewsAjax','class','sites/all/modules/i18n/i18n_select/i18n_select.test','i18n_select',0),('i18nSelectTestCase','class','sites/all/modules/i18n/i18n_select/i18n_select.test','i18n_select',0),('i18nStringTestCase','class','sites/all/modules/i18n/i18n_string/i18n_string.test','i18n_string',10),('i18nSyncTestCase','class','sites/all/modules/i18n/i18n_sync/i18n_sync.test','i18n_sync',0),('i18nTaxonomyTestCase','class','sites/all/modules/i18n/i18n_taxonomy/i18n_taxonomy.test','i18n_taxonomy',0),('I18nVariableLanguageRealm','class','sites/all/modules/i18n/i18n_variable/i18n_variable.class.inc','i18n_variable',0),('i18nVariableTestCase','class','sites/all/modules/i18n/i18n_variable/i18n_variable.test','i18n_variable',0),('i18n_block_object','class','sites/all/modules/i18n/i18n_block/i18n_block.inc','i18n_block',0),('i18n_field','class','sites/all/modules/i18n/i18n_field/i18n_field.inc','i18n_field',0),('i18n_field_base','class','sites/all/modules/i18n/i18n_field/i18n_field.inc','i18n_field',0),('i18n_field_instance','class','sites/all/modules/i18n/i18n_field/i18n_field.inc','i18n_field',0),('i18n_menu_link','class','sites/all/modules/i18n/i18n_menu/i18n_menu.inc','i18n_menu',0),('i18n_menu_link_translation_set','class','sites/all/modules/i18n/i18n_menu/i18n_menu.inc','i18n_menu',0),('i18n_object_wrapper','class','sites/all/modules/i18n/i18n_object.inc','i18n',0),('i18n_path_object','class','sites/all/modules/i18n/i18n_path/i18n_path.inc','i18n_path',0),('i18n_path_translation_set','class','sites/all/modules/i18n/i18n_path/i18n_path.inc','i18n_path',0),('i18n_string_object','class','sites/all/modules/i18n/i18n_string/i18n_string.inc','i18n_string',10),('i18n_string_object_wrapper','class','sites/all/modules/i18n/i18n_string/i18n_string.inc','i18n_string',10),('i18n_string_textgroup_cached','class','sites/all/modules/i18n/i18n_string/i18n_string.inc','i18n_string',10),('i18n_string_textgroup_default','class','sites/all/modules/i18n/i18n_string/i18n_string.inc','i18n_string',10),('i18n_taxonomy_term','class','sites/all/modules/i18n/i18n_taxonomy/i18n_taxonomy.inc','i18n_taxonomy',0),('i18n_taxonomy_translation_set','class','sites/all/modules/i18n/i18n_taxonomy/i18n_taxonomy.inc','i18n_taxonomy',0),('i18n_translation_set','class','sites/all/modules/i18n/i18n_translation/i18n_translation.inc','i18n_translation',0),('ImageAdminStylesUnitTest','class','modules/image/image.test','image',0),('ImageAdminUiTestCase','class','modules/image/image.test','image',0),('ImageDimensionsScaleTestCase','class','modules/image/image.test','image',0),('ImageDimensionsTestCase','class','modules/image/image.test','image',0),('ImageEffectsUnitTest','class','modules/image/image.test','image',0),('ImageFieldDefaultImagesTestCase','class','modules/image/image.test','image',0),('ImageFieldDisplayTestCase','class','modules/image/image.test','image',0),('ImageFieldTestCase','class','modules/image/image.test','image',0),('ImageFieldValidateTestCase','class','modules/image/image.test','image',0),('ImageStyleFlushTest','class','modules/image/image.test','image',0),('ImageStylesPathAndUrlTestCase','class','modules/image/image.test','image',0),('ImageThemeFunctionWebTestCase','class','modules/image/image.test','image',0),('InfoFileParserTestCase','class','modules/system/system.test','system',0),('InsertQuery','class','includes/database/query.inc','',0),('InsertQuery_mysql','class','includes/database/mysql/query.inc','',0),('InsertQuery_pgsql','class','includes/database/pgsql/query.inc','',0),('InsertQuery_sqlite','class','includes/database/sqlite/query.inc','',0),('InvalidMergeQueryException','class','includes/database/database.inc','',0),('IPAddressBlockingTestCase','class','modules/system/system.test','system',0),('l10n_update_xml_parser','class','sites/all/modules/l10n_update/l10n_update.parser.inc','l10n_update',0),('LGFATestCase','class','sites/all/modules/gmap/tests/gmap.test','gmap',0),('LibrariesAdminWebTest','class','sites/all/modules/libraries/tests/LibrariesAdminWebTest.test','libraries',0),('LibrariesLoadWebTest','class','sites/all/modules/libraries/tests/LibrariesLoadWebTest.test','libraries',0),('LibrariesUnitTest','class','sites/all/modules/libraries/tests/LibrariesUnitTest.test','libraries',0),('LibrariesWebTestBase','class','sites/all/modules/libraries/tests/LibrariesWebTestBase.test','libraries',0),('ListDynamicValuesTestCase','class','modules/field/modules/list/tests/list.test','list',0),('ListDynamicValuesValidationTestCase','class','modules/field/modules/list/tests/list.test','list',0),('ListFieldTestCase','class','modules/field/modules/list/tests/list.test','list',0),('ListFieldUITestCase','class','modules/field/modules/list/tests/list.test','list',0),('LocaleBrowserDetectionTest','class','modules/locale/locale.test','locale',0),('LocaleCommentLanguageFunctionalTest','class','modules/locale/locale.test','locale',0),('LocaleConfigurationTest','class','modules/locale/locale.test','locale',0),('LocaleContentFunctionalTest','class','modules/locale/locale.test','locale',0),('LocaleCSSAlterTest','class','modules/locale/locale.test','locale',0),('LocaleDateFormatsFunctionalTest','class','modules/locale/locale.test','locale',0),('LocaleExportFunctionalTest','class','modules/locale/locale.test','locale',0),('LocaleImportFunctionalTest','class','modules/locale/locale.test','locale',0),('LocaleInstallTest','class','modules/locale/locale.test','locale',0),('LocaleJavascriptTranslationTest','class','modules/locale/locale.test','locale',0),('LocaleLanguageNegotiationInfoFunctionalTest','class','modules/locale/locale.test','locale',0),('LocaleLanguageSwitchingFunctionalTest','class','modules/locale/locale.test','locale',0),('LocaleLibraryInfoAlterTest','class','modules/locale/locale.test','locale',0),('LocaleMultilingualFieldsFunctionalTest','class','modules/locale/locale.test','locale',0),('LocalePathFunctionalTest','class','modules/locale/locale.test','locale',0),('LocalePluralFormatTest','class','modules/locale/locale.test','locale',0),('LocaleStringIsSafeTest','class','modules/locale/locale.test','locale',0),('LocaleTranslationFunctionalTest','class','modules/locale/locale.test','locale',0),('LocaleUILanguageNegotiationTest','class','modules/locale/locale.test','locale',0),('LocaleUninstallFrenchFunctionalTest','class','modules/locale/locale.test','locale',0),('LocaleUninstallFunctionalTest','class','modules/locale/locale.test','locale',0),('LocaleUrlRewritingTest','class','modules/locale/locale.test','locale',0),('LocaleUserCreationTest','class','modules/locale/locale.test','locale',0),('LocaleUserLanguageFunctionalTest','class','modules/locale/locale.test','locale',0),('LocationCCK2Test','class','sites/all/modules/location/tests/location_cck2.test','location',0),('LocationCCKTest','class','sites/all/modules/location/tests/location_cck.test','location',0),('LocationEarthTest','class','sites/all/modules/location/tests/earth.test','location',0),('LocationGoogleGeocoderTest','class','sites/all/modules/location/tests/google_geocoder.test','location',0),('LocationTestCase','class','sites/all/modules/location/tests/location_testcase.test','location',0),('location_handler_argument_location_country','class','sites/all/modules/location/handlers/location_handler_argument_location_country.inc','location',0),('location_handler_argument_location_province','class','sites/all/modules/location/handlers/location_handler_argument_location_province.inc','location',0),('location_handler_argument_location_proximity','class','sites/all/modules/location/handlers/location_handler_argument_location_proximity.inc','location',0),('location_handler_field_location_additional','class','sites/all/modules/location/handlers/location_handler_field_location_additional.inc','location',0),('location_handler_field_location_address','class','sites/all/modules/location/handlers/location_handler_field_location_address.inc','location',0),('location_handler_field_location_country','class','sites/all/modules/location/handlers/location_handler_field_location_country.inc','location',0),('location_handler_field_location_distance','class','sites/all/modules/location/handlers/location_handler_field_location_distance.inc','location',0),('location_handler_field_location_province','class','sites/all/modules/location/handlers/location_handler_field_location_province.inc','location',0),('location_handler_field_location_street','class','sites/all/modules/location/handlers/location_handler_field_location_street.inc','location',0),('location_handler_filter_location_country','class','sites/all/modules/location/handlers/location_handler_filter_location_country.inc','location',0),('location_handler_filter_location_province','class','sites/all/modules/location/handlers/location_handler_filter_location_province.inc','location',0),('location_handler_sort_location_country','class','sites/all/modules/location/handlers/location_handler_sort_location_country.inc','location',0),('location_handler_sort_location_distance','class','sites/all/modules/location/handlers/location_handler_sort_location_distance.inc','location',0),('location_views_handler_field_coordinates','class','sites/all/modules/location/handlers/location_views_handler_field_coordinates.inc','location',0),('location_views_handler_field_latitude','class','sites/all/modules/location/handlers/location_views_handler_field_latitude.inc','location',0),('location_views_handler_field_longitude','class','sites/all/modules/location/handlers/location_views_handler_field_longitude.inc','location',0),('location_views_handler_filter_proximity','class','sites/all/modules/location/handlers/location_views_handler_filter_proximity.inc','location',0),('MailSystemInterface','interface','includes/mail.inc','',0),('MemoryQueue','class','modules/system/system.queue.inc','system',0),('MenuNodeTestCase','class','modules/menu/menu.test','menu',0),('MenuTestCase','class','modules/menu/menu.test','menu',0),('MergeQuery','class','includes/database/query.inc','',0),('MigrateAddressFieldHandler','class','sites/all/modules/addressfield/addressfield.migrate.inc','addressfield',0),('MigrateLocationFieldHandler','class','sites/all/modules/location/location.migrate.inc','location',0),('MigrateTranslationEntityHandler','class','sites/all/modules/entity_translation/includes/translation.migrate.inc','entity_translation',11),('ModuleDependencyTestCase','class','modules/system/system.test','system',0),('ModuleRequiredTestCase','class','modules/system/system.test','system',0),('ModuleTestCase','class','modules/system/system.test','system',0),('ModuleUpdater','class','modules/system/system.updater.inc','system',0),('ModuleVersionTestCase','class','modules/system/system.test','system',0),('MultiStepNodeFormBasicOptionsTest','class','modules/node/node.test','node',0),('NewDefaultThemeBlocks','class','modules/block/block.test','block',-5),('NodeAccessBaseTableTestCase','class','modules/node/node.test','node',0),('NodeAccessFieldTestCase','class','modules/node/node.test','node',0),('NodeAccessPagerTestCase','class','modules/node/node.test','node',0),('NodeAccessRebuildTestCase','class','modules/node/node.test','node',0),('NodeAccessRecordsTestCase','class','modules/node/node.test','node',0),('NodeAccessTestCase','class','modules/node/node.test','node',0),('NodeAdminTestCase','class','modules/node/node.test','node',0),('NodeBlockFunctionalTest','class','modules/node/node.test','node',0),('NodeBlockTestCase','class','modules/node/node.test','node',0),('NodeBuildContent','class','modules/node/node.test','node',0),('NodeController','class','modules/node/node.module','node',0),('NodeCreationTestCase','class','modules/node/node.test','node',0),('NodeEntityFieldQueryAlter','class','modules/node/node.test','node',0),('NodeEntityViewModeAlterTest','class','modules/node/node.test','node',0),('NodeFeedTestCase','class','modules/node/node.test','node',0),('NodeLoadHooksTestCase','class','modules/node/node.test','node',0),('NodeLoadMultipleTestCase','class','modules/node/node.test','node',0),('NodeMultiByteUtf8Test','class','modules/node/node.test','node',0),('NodePageCacheTest','class','modules/node/node.test','node',0),('NodePostSettingsTestCase','class','modules/node/node.test','node',0),('NodeQueryAlter','class','modules/node/node.test','node',0),('NodeRevisionPermissionsTestCase','class','modules/node/node.test','node',0),('NodeRevisionsTestCase','class','modules/node/node.test','node',0),('NodeRSSContentTestCase','class','modules/node/node.test','node',0),('NodeSaveTestCase','class','modules/node/node.test','node',0),('NodeTitleTestCase','class','modules/node/node.test','node',0),('NodeTitleXSSTestCase','class','modules/node/node.test','node',0),('NodeTokenReplaceTestCase','class','modules/node/node.test','node',0),('NodeTypePersistenceTestCase','class','modules/node/node.test','node',0),('NodeTypeTestCase','class','modules/node/node.test','node',0),('NodeWebTestCase','class','modules/node/node.test','node',0),('NoFieldsException','class','includes/database/database.inc','',0),('NoHelpTestCase','class','modules/help/help.test','help',0),('NonDefaultBlockAdmin','class','modules/block/block.test','block',-5),('NumberFieldTestCase','class','modules/field/modules/number/number.test','number',0),('OptionsSelectDynamicValuesTestCase','class','modules/field/modules/options/options.test','options',0),('OptionsWidgetsTestCase','class','modules/field/modules/options/options.test','options',0),('PageEditTestCase','class','modules/node/node.test','node',0),('PageNotFoundTestCase','class','modules/system/system.test','system',0),('PagePreviewTestCase','class','modules/node/node.test','node',0),('PagerDefault','class','includes/pager.inc','',0),('PageTitleFiltering','class','modules/system/system.test','system',0),('PageViewTestCase','class','modules/node/node.test','node',0),('PathLanguageTestCase','class','modules/path/path.test','path',0),('PathLanguageUITestCase','class','modules/path/path.test','path',0),('PathMonolingualTestCase','class','modules/path/path.test','path',0),('PathTaxonomyTermTestCase','class','modules/path/path.test','path',0),('PathTestCase','class','modules/path/path.test','path',0),('photos_handler_field_photos_album_cover','class','sites/all/modules/photos/inc/views/handlers/photos_handler_field_photos_album_cover.inc','photos',0),('photos_handler_field_photos_image','class','sites/all/modules/photos/inc/views/handlers/photos_handler_field_photos_image.inc','photos',0),('PHPAccessTestCase','class','modules/php/php.test','php',0),('PHPFilterTestCase','class','modules/php/php.test','php',0),('PHPTestCase','class','modules/php/php.test','php',0),('Query','class','includes/database/query.inc','',0),('QueryAlterableInterface','interface','includes/database/query.inc','',0),('QueryConditionInterface','interface','includes/database/query.inc','',0),('QueryExtendableInterface','interface','includes/database/select.inc','',0),('QueryPlaceholderInterface','interface','includes/database/query.inc','',0),('QueueTestCase','class','modules/system/system.test','system',0),('RdfCommentAttributesTestCase','class','modules/rdf/rdf.test','rdf',0),('RdfCrudTestCase','class','modules/rdf/rdf.test','rdf',0),('RdfGetRdfNamespacesTestCase','class','modules/rdf/rdf.test','rdf',0),('RdfMappingDefinitionTestCase','class','modules/rdf/rdf.test','rdf',0),('RdfMappingHookTestCase','class','modules/rdf/rdf.test','rdf',0),('RdfRdfaMarkupTestCase','class','modules/rdf/rdf.test','rdf',0),('RdfTrackerAttributesTestCase','class','modules/rdf/rdf.test','rdf',0),('RetrieveFileTestCase','class','modules/system/system.test','system',0),('SchemaCache','class','includes/bootstrap.inc','',0),('SelectQuery','class','includes/database/select.inc','',0),('SelectQueryExtender','class','includes/database/select.inc','',0),('SelectQueryInterface','interface','includes/database/select.inc','',0),('SelectQuery_pgsql','class','includes/database/pgsql/select.inc','',0),('SelectQuery_sqlite','class','includes/database/sqlite/select.inc','',0),('ShortcutLinksTestCase','class','modules/shortcut/shortcut.test','shortcut',0),('ShortcutSetsTestCase','class','modules/shortcut/shortcut.test','shortcut',0),('ShortcutTestCase','class','modules/shortcut/shortcut.test','shortcut',0),('ShutdownFunctionsTest','class','modules/system/system.test','system',0),('SiteMaintenanceTestCase','class','modules/system/system.test','system',0),('SkipDotsRecursiveDirectoryIterator','class','includes/filetransfer/filetransfer.inc','',0),('StreamWrapperInterface','interface','includes/stream_wrappers.inc','',0),('SummaryLengthTestCase','class','modules/node/node.test','node',0),('SystemAdminTestCase','class','modules/system/system.test','system',0),('SystemAuthorizeCase','class','modules/system/system.test','system',0),('SystemBlockTestCase','class','modules/system/system.test','system',0),('SystemIndexPhpTest','class','modules/system/system.test','system',0),('SystemInfoAlterTestCase','class','modules/system/system.test','system',0),('SystemMainContentFallback','class','modules/system/system.test','system',0),('SystemQueue','class','modules/system/system.queue.inc','system',0),('SystemThemeFunctionalTest','class','modules/system/system.test','system',0),('SystemValidTokenTest','class','modules/system/system.test','system',0),('TableSort','class','includes/tablesort.inc','',0),('TaxonomyEFQTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0),('TaxonomyHooksTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0),('TaxonomyLegacyTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0),('TaxonomyLoadMultipleTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0),('TaxonomyQueryAlterTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0),('TaxonomyRSSTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0),('TaxonomyTermController','class','modules/taxonomy/taxonomy.module','taxonomy',0),('TaxonomyTermFieldMultipleVocabularyTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0),('TaxonomyTermFieldTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0),('TaxonomyTermFunctionTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0),('TaxonomyTermIndexTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0),('TaxonomyTermTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0),('TaxonomyThemeTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0),('TaxonomyTokenReplaceTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0),('TaxonomyVocabularyController','class','modules/taxonomy/taxonomy.module','taxonomy',0),('TaxonomyVocabularyFunctionalTest','class','modules/taxonomy/taxonomy.test','taxonomy',0),('TaxonomyVocabularyTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0),('TaxonomyWebTestCase','class','modules/taxonomy/taxonomy.test','taxonomy',0),('testGmapFormsTestCase','class','sites/all/modules/gmap/tests/gmap.test','gmap',0),('testGmapMacroFormsTestCase','class','sites/all/modules/gmap/tests/gmap.test','gmap',0),('testGmapTaxonomyFormsTestCase','class','sites/all/modules/gmap/tests/gmap.test','gmap',0),('TestingMailSystem','class','modules/system/system.mail.inc','system',0),('TextFieldTestCase','class','modules/field/modules/text/text.test','text',0),('TextSummaryTestCase','class','modules/field/modules/text/text.test','text',0),('TextTranslationTestCase','class','modules/field/modules/text/text.test','text',0),('ThemeRegistry','class','includes/theme.inc','',0),('ThemeUpdater','class','modules/system/system.updater.inc','system',0),('TitleAdminSettingsTestCase','class','sites/all/modules/title/tests/title.test','title',100),('TitleFieldReplacementTestCase','class','sites/all/modules/title/tests/title.test','title',100),('TitleTranslationTestCase','class','sites/all/modules/title/tests/title.test','title',100),('TokenReplaceTestCase','class','modules/system/system.test','system',0),('TokenScanTest','class','modules/system/system.test','system',0),('TranslationTestCase','class','modules/translation/translation.test','translation',0),('TruncateQuery','class','includes/database/query.inc','',0),('TruncateQuery_mysql','class','includes/database/mysql/query.inc','',0),('TruncateQuery_sqlite','class','includes/database/sqlite/query.inc','',0),('UpdateCoreTestCase','class','modules/update/update.test','update',0),('UpdateCoreUnitTestCase','class','modules/update/update.test','update',0),('UpdateQuery','class','includes/database/query.inc','',0),('UpdateQuery_pgsql','class','includes/database/pgsql/query.inc','',0),('UpdateQuery_sqlite','class','includes/database/sqlite/query.inc','',0),('Updater','class','includes/updater.inc','',0),('UpdaterException','class','includes/updater.inc','',0),('UpdaterFileTransferException','class','includes/updater.inc','',0),('UpdateScriptFunctionalTest','class','modules/system/system.test','system',0),('UpdateTestContribCase','class','modules/update/update.test','update',0),('UpdateTestHelper','class','modules/update/update.test','update',0),('UpdateTestUploadCase','class','modules/update/update.test','update',0),('UserAccountLinksUnitTests','class','modules/user/user.test','user',0),('UserAdminTestCase','class','modules/user/user.test','user',0),('UserAuthmapAssignmentTestCase','class','modules/user/user.test','user',0),('UserAutocompleteTestCase','class','modules/user/user.test','user',0),('UserBlocksUnitTests','class','modules/user/user.test','user',0),('UserCancelTestCase','class','modules/user/user.test','user',0),('UserController','class','modules/user/user.module','user',0),('UserCreateTestCase','class','modules/user/user.test','user',0),('UserEditedOwnAccountTestCase','class','modules/user/user.test','user',0),('UserEditRebuildTestCase','class','modules/user/user.test','user',0),('UserEditTestCase','class','modules/user/user.test','user',0),('UserLoginTestCase','class','modules/user/user.test','user',0),('UserPasswordResetTestCase','class','modules/user/user.test','user',0),('UserPermissionsTestCase','class','modules/user/user.test','user',0),('UserPictureTestCase','class','modules/user/user.test','user',0),('UserRegistrationTestCase','class','modules/user/user.test','user',0),('UserRoleAdminTestCase','class','modules/user/user.test','user',0),('UserRolesAssignmentTestCase','class','modules/user/user.test','user',0),('UserSaveTestCase','class','modules/user/user.test','user',0),('UserSignatureTestCase','class','modules/user/user.test','user',0),('UserTimeZoneFunctionalTest','class','modules/user/user.test','user',0),('UserTokenReplaceTestCase','class','modules/user/user.test','user',0),('UserUserSearchTestCase','class','modules/user/user.test','user',0),('UserValidateCurrentPassCustomForm','class','modules/user/user.test','user',0),('UserValidationTestCase','class','modules/user/user.test','user',0),('VariableRealmControllerInterface','interface','sites/all/modules/variable/variable_realm/variable_realm.class.inc','variable_realm',0),('VariableRealmDefaultController','class','sites/all/modules/variable/variable_realm/variable_realm.class.inc','variable_realm',0),('VariableRealmDefaultStore','class','sites/all/modules/variable/variable_realm/variable_realm.class.inc','variable_realm',0),('VariableRealmGlobalStore','class','sites/all/modules/variable/variable_realm/variable_realm.class.inc','variable_realm',0),('VariableRealmHooks','interface','sites/all/modules/variable/variable_realm/variable_realm.class.inc','variable_realm',0),('VariableRealmStoreInterface','interface','sites/all/modules/variable/variable_realm/variable_realm.class.inc','variable_realm',0),('VariableRealmUnionController','class','sites/all/modules/variable/variable_realm/variable_realm_union.class.inc','variable_realm',0),('VariableStoreRealmStore','class','sites/all/modules/variable/variable_store/variable_store.class.inc','variable_store',0),('VariableStoreTestCase','class','sites/all/modules/variable/variable_store/variable_store.test','variable_store',0),('VariableTestCase','class','sites/all/modules/variable/variable.test','variable',0),('view','class','sites/all/modules/views/includes/view.inc','views',10),('ViewsAccessTest','class','sites/all/modules/views/tests/views_access.test','views',10),('ViewsAjaxTest','class','sites/all/modules/views/tests/views_ajax.test','views',10),('ViewsAnalyzeTest','class','sites/all/modules/views/tests/views_analyze.test','views',10),('ViewsArgumentDefaultTest','class','sites/all/modules/views/tests/views_argument_default.test','views',10),('ViewsArgumentValidatorTest','class','sites/all/modules/views/tests/views_argument_validator.test','views',10),('ViewsBasicTest','class','sites/all/modules/views/tests/views_basic.test','views',10),('ViewsCacheTest','class','sites/all/modules/views/tests/views_cache.test','views',10),('ViewsExposedFormTest','class','sites/all/modules/views/tests/views_exposed_form.test','views',10),('viewsFieldApiDataTest','class','sites/all/modules/views/tests/field/views_fieldapi.test','views',10),('ViewsFieldApiTestHelper','class','sites/all/modules/views/tests/field/views_fieldapi.test','views',10),('ViewsGlossaryTestCase','class','sites/all/modules/views/tests/views_glossary.test','views',10),('ViewsHandlerAreaTextTest','class','sites/all/modules/views/tests/handlers/views_handler_area_text.test','views',10),('viewsHandlerArgumentCommentUserUidTest','class','sites/all/modules/views/tests/comment/views_handler_argument_comment_user_uid.test','views',10),('ViewsHandlerArgumentNullTest','class','sites/all/modules/views/tests/handlers/views_handler_argument_null.test','views',10),('ViewsHandlerArgumentStringTest','class','sites/all/modules/views/tests/handlers/views_handler_argument_string.test','views',10),('ViewsHandlerFieldBooleanTest','class','sites/all/modules/views/tests/handlers/views_handler_field_boolean.test','views',10),('ViewsHandlerFieldCustomTest','class','sites/all/modules/views/tests/handlers/views_handler_field_custom.test','views',10),('ViewsHandlerFieldDateTest','class','sites/all/modules/views/tests/handlers/views_handler_field_date.test','views',10),('viewsHandlerFieldFieldTest','class','sites/all/modules/views/tests/field/views_fieldapi.test','views',10),('ViewsHandlerFieldMath','class','sites/all/modules/views/tests/handlers/views_handler_field_math.test','views',10),('ViewsHandlerFieldTest','class','sites/all/modules/views/tests/handlers/views_handler_field.test','views',10),('ViewsHandlerFieldUrlTest','class','sites/all/modules/views/tests/handlers/views_handler_field_url.test','views',10),('viewsHandlerFieldUserNameTest','class','sites/all/modules/views/tests/user/views_handler_field_user_name.test','views',10),('ViewsHandlerFileExtensionTest','class','sites/all/modules/views/tests/handlers/views_handler_field_file_extension.test','views',10),('ViewsHandlerFilterCombineTest','class','sites/all/modules/views/tests/handlers/views_handler_filter_combine.test','views',10),('viewsHandlerFilterCommentUserUidTest','class','sites/all/modules/views/tests/comment/views_handler_filter_comment_user_uid.test','views',10),('ViewsHandlerFilterCounterTest','class','sites/all/modules/views/tests/handlers/views_handler_field_counter.test','views',10),('ViewsHandlerFilterDateTest','class','sites/all/modules/views/tests/handlers/views_handler_filter_date.test','views',10),('ViewsHandlerFilterEqualityTest','class','sites/all/modules/views/tests/handlers/views_handler_filter_equality.test','views',10),('ViewsHandlerFilterInOperator','class','sites/all/modules/views/tests/handlers/views_handler_filter_in_operator.test','views',0),('ViewsHandlerFilterNumericTest','class','sites/all/modules/views/tests/handlers/views_handler_filter_numeric.test','views',10),('ViewsHandlerFilterStringTest','class','sites/all/modules/views/tests/handlers/views_handler_filter_string.test','views',10),('ViewsHandlerRelationshipNodeTermDataTest','class','sites/all/modules/views/tests/taxonomy/views_handler_relationship_node_term_data.test','views',10),('ViewsHandlerSortDateTest','class','sites/all/modules/views/tests/handlers/views_handler_sort_date.test','views',10),('ViewsHandlerSortRandomTest','class','sites/all/modules/views/tests/handlers/views_handler_sort_random.test','views',10),('ViewsHandlerSortTest','class','sites/all/modules/views/tests/handlers/views_handler_sort.test','views',10),('ViewsHandlersTest','class','sites/all/modules/views/tests/views_handlers.test','views',10),('ViewsHandlerTest','class','sites/all/modules/views/tests/handlers/views_handlers.test','views',10),('ViewsHandlerTestFileSize','class','sites/all/modules/views/tests/handlers/views_handler_field_file_size.test','views',10),('ViewsHandlerTestXss','class','sites/all/modules/views/tests/handlers/views_handler_field_xss.test','views',10),('ViewsModuleTest','class','sites/all/modules/views/tests/views_module.test','views',10),('ViewsNodeRevisionRelationsTestCase','class','sites/all/modules/views/tests/node/views_node_revision_relations.test','views',10),('ViewsPagerTest','class','sites/all/modules/views/tests/views_pager.test','views',10),('ViewsPluginDisplayTestCase','class','sites/all/modules/views/tests/plugins/views_plugin_display.test','views',10),('viewsPluginStyleJumpMenuTest','class','sites/all/modules/views/tests/styles/views_plugin_style_jump_menu.test','views',10),('ViewsPluginStyleMappingTest','class','sites/all/modules/views/tests/styles/views_plugin_style_mapping.test','views',10),('ViewsPluginStyleTestBase','class','sites/all/modules/views/tests/styles/views_plugin_style_base.test','views',0),('ViewsPluginStyleTestCase','class','sites/all/modules/views/tests/styles/views_plugin_style.test','views',10),('ViewsPluginStyleUnformattedTestCase','class','sites/all/modules/views/tests/styles/views_plugin_style_unformatted.test','views',10),('ViewsQueryGroupByTest','class','sites/all/modules/views/tests/views_groupby.test','views',10),('viewsSearchQuery','class','sites/all/modules/views/modules/search/views_handler_filter_search.inc','views',10),('ViewsSqlTest','class','sites/all/modules/views/tests/views_query.test','views',10),('ViewsTestCase','class','sites/all/modules/views/tests/views_query.test','views',10),('ViewsTranslatableTest','class','sites/all/modules/views/tests/views_translatable.test','views',10),('ViewsUiBaseViewsWizard','class','sites/all/modules/views/plugins/views_wizard/views_ui_base_views_wizard.class.php','views_ui',0),('ViewsUiCommentViewsWizard','class','sites/all/modules/views/plugins/views_wizard/views_ui_comment_views_wizard.class.php','views_ui',0),('ViewsUiFileManagedViewsWizard','class','sites/all/modules/views/plugins/views_wizard/views_ui_file_managed_views_wizard.class.php','views_ui',0),('viewsUiGroupbyTestCase','class','sites/all/modules/views/tests/views_groupby.test','views',10),('ViewsUiNodeRevisionViewsWizard','class','sites/all/modules/views/plugins/views_wizard/views_ui_node_revision_views_wizard.class.php','views_ui',0),('ViewsUiNodeViewsWizard','class','sites/all/modules/views/plugins/views_wizard/views_ui_node_views_wizard.class.php','views_ui',0),('ViewsUiTaxonomyTermViewsWizard','class','sites/all/modules/views/plugins/views_wizard/views_ui_taxonomy_term_views_wizard.class.php','views_ui',0),('ViewsUiUsersViewsWizard','class','sites/all/modules/views/plugins/views_wizard/views_ui_users_views_wizard.class.php','views_ui',0),('ViewsUIWizardBasicTestCase','class','sites/all/modules/views/tests/views_ui.test','views',10),('ViewsUIWizardDefaultViewsTestCase','class','sites/all/modules/views/tests/views_ui.test','views',10),('ViewsUIWizardHelper','class','sites/all/modules/views/tests/views_ui.test','views',10),('ViewsUIWizardItemsPerPageTestCase','class','sites/all/modules/views/tests/views_ui.test','views',10),('ViewsUIWizardJumpMenuTestCase','class','sites/all/modules/views/tests/views_ui.test','views',10),('ViewsUIWizardMenuTestCase','class','sites/all/modules/views/tests/views_ui.test','views',10),('ViewsUIWizardOverrideDisplaysTestCase','class','sites/all/modules/views/tests/views_ui.test','views',10),('ViewsUIWizardSortingTestCase','class','sites/all/modules/views/tests/views_ui.test','views',10),('ViewsUIWizardTaggedWithTestCase','class','sites/all/modules/views/tests/views_ui.test','views',10),('ViewsUpgradeTestCase','class','sites/all/modules/views/tests/views_upgrade.test','views',10),('ViewsUserArgumentDefault','class','sites/all/modules/views/tests/user/views_user_argument_default.test','views',10),('ViewsUserArgumentValidate','class','sites/all/modules/views/tests/user/views_user_argument_validate.test','views',10),('ViewsUserTestCase','class','sites/all/modules/views/tests/user/views_user.test','views',10),('ViewsViewTest','class','sites/all/modules/views/tests/views_view.test','views',10),('ViewsWizardException','class','sites/all/modules/views/plugins/views_wizard/views_ui_base_views_wizard.class.php','views_ui',0),('ViewsWizardInterface','interface','sites/all/modules/views/plugins/views_wizard/views_ui_base_views_wizard.class.php','views_ui',0),('views_db_object','class','sites/all/modules/views/includes/view.inc','views',10),('views_display','class','sites/all/modules/views/includes/view.inc','views',10),('views_handler','class','sites/all/modules/views/includes/handlers.inc','views',10),('views_handler_area','class','sites/all/modules/views/handlers/views_handler_area.inc','views',10),('views_handler_area_broken','class','sites/all/modules/views/handlers/views_handler_area.inc','views',10),('views_handler_area_messages','class','sites/all/modules/views/handlers/views_handler_area_messages.inc','views',10),('views_handler_area_result','class','sites/all/modules/views/handlers/views_handler_area_result.inc','views',10),('views_handler_area_text','class','sites/all/modules/views/handlers/views_handler_area_text.inc','views',10),('views_handler_area_text_custom','class','sites/all/modules/views/handlers/views_handler_area_text_custom.inc','views',10),('views_handler_area_view','class','sites/all/modules/views/handlers/views_handler_area_view.inc','views',10),('views_handler_argument','class','sites/all/modules/views/handlers/views_handler_argument.inc','views',10),('views_handler_argument_aggregator_category_cid','class','sites/all/modules/views/modules/aggregator/views_handler_argument_aggregator_category_cid.inc','views',10),('views_handler_argument_aggregator_fid','class','sites/all/modules/views/modules/aggregator/views_handler_argument_aggregator_fid.inc','views',10),('views_handler_argument_aggregator_iid','class','sites/all/modules/views/modules/aggregator/views_handler_argument_aggregator_iid.inc','views',10),('views_handler_argument_broken','class','sites/all/modules/views/handlers/views_handler_argument.inc','views',10),('views_handler_argument_comment_user_uid','class','sites/all/modules/views/modules/comment/views_handler_argument_comment_user_uid.inc','views',10),('views_handler_argument_date','class','sites/all/modules/views/handlers/views_handler_argument_date.inc','views',10),('views_handler_argument_field_list','class','sites/all/modules/views/modules/field/views_handler_argument_field_list.inc','views',10),('views_handler_argument_field_list_string','class','sites/all/modules/views/modules/field/views_handler_argument_field_list_string.inc','views',10),('views_handler_argument_file_fid','class','sites/all/modules/views/modules/system/views_handler_argument_file_fid.inc','views',10),('views_handler_argument_formula','class','sites/all/modules/views/handlers/views_handler_argument_formula.inc','views',10),('views_handler_argument_group_by_numeric','class','sites/all/modules/views/handlers/views_handler_argument_group_by_numeric.inc','views',10),('views_handler_argument_locale_group','class','sites/all/modules/views/modules/locale/views_handler_argument_locale_group.inc','views',10),('views_handler_argument_locale_language','class','sites/all/modules/views/modules/locale/views_handler_argument_locale_language.inc','views',10),('views_handler_argument_many_to_one','class','sites/all/modules/views/handlers/views_handler_argument_many_to_one.inc','views',10),('views_handler_argument_node_created_day','class','sites/all/modules/views/modules/node/views_handler_argument_dates_various.inc','views',10),('views_handler_argument_node_created_fulldate','class','sites/all/modules/views/modules/node/views_handler_argument_dates_various.inc','views',10),('views_handler_argument_node_created_month','class','sites/all/modules/views/modules/node/views_handler_argument_dates_various.inc','views',10),('views_handler_argument_node_created_week','class','sites/all/modules/views/modules/node/views_handler_argument_dates_various.inc','views',10),('views_handler_argument_node_created_year','class','sites/all/modules/views/modules/node/views_handler_argument_dates_various.inc','views',10),('views_handler_argument_node_created_year_month','class','sites/all/modules/views/modules/node/views_handler_argument_dates_various.inc','views',10),('views_handler_argument_node_language','class','sites/all/modules/views/modules/node/views_handler_argument_node_language.inc','views',10),('views_handler_argument_node_nid','class','sites/all/modules/views/modules/node/views_handler_argument_node_nid.inc','views',10),('views_handler_argument_node_tnid','class','sites/all/modules/views/modules/translation/views_handler_argument_node_tnid.inc','views',10),('views_handler_argument_node_type','class','sites/all/modules/views/modules/node/views_handler_argument_node_type.inc','views',10),('views_handler_argument_node_uid_revision','class','sites/all/modules/views/modules/node/views_handler_argument_node_uid_revision.inc','views',10),('views_handler_argument_node_vid','class','sites/all/modules/views/modules/node/views_handler_argument_node_vid.inc','views',10),('views_handler_argument_null','class','sites/all/modules/views/handlers/views_handler_argument_null.inc','views',10),('views_handler_argument_numeric','class','sites/all/modules/views/handlers/views_handler_argument_numeric.inc','views',10),('views_handler_argument_search','class','sites/all/modules/views/modules/search/views_handler_argument_search.inc','views',10),('views_handler_argument_string','class','sites/all/modules/views/handlers/views_handler_argument_string.inc','views',10),('views_handler_argument_taxonomy','class','sites/all/modules/views/modules/taxonomy/views_handler_argument_taxonomy.inc','views',10),('views_handler_argument_term_node_tid','class','sites/all/modules/views/modules/taxonomy/views_handler_argument_term_node_tid.inc','views',10),('views_handler_argument_term_node_tid_depth','class','sites/all/modules/views/modules/taxonomy/views_handler_argument_term_node_tid_depth.inc','views',10),('views_handler_argument_term_node_tid_depth_join','class','sites/all/modules/views/modules/taxonomy/views_handler_argument_term_node_tid_depth_join.inc','views',10),('views_handler_argument_term_node_tid_depth_modifier','class','sites/all/modules/views/modules/taxonomy/views_handler_argument_term_node_tid_depth_modifier.inc','views',10),('views_handler_argument_tracker_comment_user_uid','class','sites/all/modules/views/modules/tracker/views_handler_argument_tracker_comment_user_uid.inc','views',10),('views_handler_argument_users_roles_rid','class','sites/all/modules/views/modules/user/views_handler_argument_users_roles_rid.inc','views',10),('views_handler_argument_user_uid','class','sites/all/modules/views/modules/user/views_handler_argument_user_uid.inc','views',10),('views_handler_argument_vocabulary_machine_name','class','sites/all/modules/views/modules/taxonomy/views_handler_argument_vocabulary_machine_name.inc','views',10),('views_handler_argument_vocabulary_vid','class','sites/all/modules/views/modules/taxonomy/views_handler_argument_vocabulary_vid.inc','views',10),('views_handler_field','class','sites/all/modules/views/handlers/views_handler_field.inc','views',10),('views_handler_field_accesslog_path','class','sites/all/modules/views/modules/statistics/views_handler_field_accesslog_path.inc','views',10),('views_handler_field_aggregator_category','class','sites/all/modules/views/modules/aggregator/views_handler_field_aggregator_category.inc','views',10),('views_handler_field_aggregator_title_link','class','sites/all/modules/views/modules/aggregator/views_handler_field_aggregator_title_link.inc','views',10),('views_handler_field_aggregator_xss','class','sites/all/modules/views/modules/aggregator/views_handler_field_aggregator_xss.inc','views',10),('views_handler_field_boolean','class','sites/all/modules/views/handlers/views_handler_field_boolean.inc','views',10),('views_handler_field_broken','class','sites/all/modules/views/handlers/views_handler_field.inc','views',10),('views_handler_field_comment','class','sites/all/modules/views/modules/comment/views_handler_field_comment.inc','views',10),('views_handler_field_comment_depth','class','sites/all/modules/views/modules/comment/views_handler_field_comment_depth.inc','views',10),('views_handler_field_comment_link','class','sites/all/modules/views/modules/comment/views_handler_field_comment_link.inc','views',10),('views_handler_field_comment_link_approve','class','sites/all/modules/views/modules/comment/views_handler_field_comment_link_approve.inc','views',10),('views_handler_field_comment_link_delete','class','sites/all/modules/views/modules/comment/views_handler_field_comment_link_delete.inc','views',10),('views_handler_field_comment_link_edit','class','sites/all/modules/views/modules/comment/views_handler_field_comment_link_edit.inc','views',10),('views_handler_field_comment_link_reply','class','sites/all/modules/views/modules/comment/views_handler_field_comment_link_reply.inc','views',10),('views_handler_field_comment_node_link','class','sites/all/modules/views/modules/comment/views_handler_field_comment_node_link.inc','views',10),('views_handler_field_comment_username','class','sites/all/modules/views/modules/comment/views_handler_field_comment_username.inc','views',10),('views_handler_field_contact_link','class','sites/all/modules/views/modules/contact/views_handler_field_contact_link.inc','views',10),('views_handler_field_contextual_links','class','sites/all/modules/views/handlers/views_handler_field_contextual_links.inc','views',10),('views_handler_field_counter','class','sites/all/modules/views/handlers/views_handler_field_counter.inc','views',10),('views_handler_field_ctools_dropdown','class','sites/all/modules/views/handlers/views_handler_field_ctools_dropdown.inc','views',10),('views_handler_field_custom','class','sites/all/modules/views/handlers/views_handler_field_custom.inc','views',10),('views_handler_field_date','class','sites/all/modules/views/handlers/views_handler_field_date.inc','views',10),('views_handler_field_entity','class','sites/all/modules/views/handlers/views_handler_field_entity.inc','views',10),('views_handler_field_field','class','sites/all/modules/views/modules/field/views_handler_field_field.inc','views',10),('views_handler_field_file','class','sites/all/modules/views/modules/system/views_handler_field_file.inc','views',10),('views_handler_field_file_extension','class','sites/all/modules/views/modules/system/views_handler_field_file_extension.inc','views',10),('views_handler_field_file_filemime','class','sites/all/modules/views/modules/system/views_handler_field_file_filemime.inc','views',10),('views_handler_field_file_size','class','sites/all/modules/views/handlers/views_handler_field.inc','views',10),('views_handler_field_file_status','class','sites/all/modules/views/modules/system/views_handler_field_file_status.inc','views',10),('views_handler_field_file_uri','class','sites/all/modules/views/modules/system/views_handler_field_file_uri.inc','views',10),('views_handler_field_filter_format_name','class','sites/all/modules/views/modules/filter/views_handler_field_filter_format_name.inc','views',10),('views_handler_field_history_user_timestamp','class','sites/all/modules/views/modules/node/views_handler_field_history_user_timestamp.inc','views',10),('views_handler_field_last_comment_timestamp','class','sites/all/modules/views/modules/comment/views_handler_field_last_comment_timestamp.inc','views',10),('views_handler_field_links','class','sites/all/modules/views/handlers/views_handler_field_links.inc','views',10),('views_handler_field_locale_group','class','sites/all/modules/views/modules/locale/views_handler_field_locale_group.inc','views',10),('views_handler_field_locale_language','class','sites/all/modules/views/modules/locale/views_handler_field_locale_language.inc','views',10),('views_handler_field_locale_link_edit','class','sites/all/modules/views/modules/locale/views_handler_field_locale_link_edit.inc','views',10),('views_handler_field_machine_name','class','sites/all/modules/views/handlers/views_handler_field_machine_name.inc','views',10),('views_handler_field_markup','class','sites/all/modules/views/handlers/views_handler_field_markup.inc','views',10),('views_handler_field_math','class','sites/all/modules/views/handlers/views_handler_field_math.inc','views',10),('views_handler_field_ncs_last_comment_name','class','sites/all/modules/views/modules/comment/views_handler_field_ncs_last_comment_name.inc','views',10),('views_handler_field_ncs_last_updated','class','sites/all/modules/views/modules/comment/views_handler_field_ncs_last_updated.inc','views',10),('views_handler_field_node','class','sites/all/modules/views/modules/node/views_handler_field_node.inc','views',10),('views_handler_field_node_comment','class','sites/all/modules/views/modules/comment/views_handler_field_node_comment.inc','views',10),('views_handler_field_node_counter_timestamp','class','sites/all/modules/views/modules/statistics/views_handler_field_node_counter_timestamp.inc','views',10),('views_handler_field_node_language','class','sites/all/modules/views/modules/locale/views_handler_field_node_language.inc','views',10),('views_handler_field_node_link','class','sites/all/modules/views/modules/node/views_handler_field_node_link.inc','views',10),('views_handler_field_node_link_delete','class','sites/all/modules/views/modules/node/views_handler_field_node_link_delete.inc','views',10),('views_handler_field_node_link_edit','class','sites/all/modules/views/modules/node/views_handler_field_node_link_edit.inc','views',10),('views_handler_field_node_link_translate','class','sites/all/modules/views/modules/translation/views_handler_field_node_link_translate.inc','views',10),('views_handler_field_node_new_comments','class','sites/all/modules/views/modules/comment/views_handler_field_node_new_comments.inc','views',10),('views_handler_field_node_path','class','sites/all/modules/views/modules/node/views_handler_field_node_path.inc','views',10),('views_handler_field_node_revision','class','sites/all/modules/views/modules/node/views_handler_field_node_revision.inc','views',10),('views_handler_field_node_revision_link','class','sites/all/modules/views/modules/node/views_handler_field_node_revision_link.inc','views',10),('views_handler_field_node_revision_link_delete','class','sites/all/modules/views/modules/node/views_handler_field_node_revision_link_delete.inc','views',10),('views_handler_field_node_revision_link_revert','class','sites/all/modules/views/modules/node/views_handler_field_node_revision_link_revert.inc','views',10),('views_handler_field_node_translation_link','class','sites/all/modules/views/modules/translation/views_handler_field_node_translation_link.inc','views',10),('views_handler_field_node_type','class','sites/all/modules/views/modules/node/views_handler_field_node_type.inc','views',10),('views_handler_field_node_version_count','class','sites/all/modules/views/modules/node/views_handler_field_node_version_count.inc','views',10),('views_handler_field_numeric','class','sites/all/modules/views/handlers/views_handler_field_numeric.inc','views',10),('views_handler_field_prerender_list','class','sites/all/modules/views/handlers/views_handler_field_prerender_list.inc','views',10),('views_handler_field_profile_date','class','sites/all/modules/views/modules/profile/views_handler_field_profile_date.inc','views',10),('views_handler_field_profile_list','class','sites/all/modules/views/modules/profile/views_handler_field_profile_list.inc','views',10),('views_handler_field_search_score','class','sites/all/modules/views/modules/search/views_handler_field_search_score.inc','views',10),('views_handler_field_serialized','class','sites/all/modules/views/handlers/views_handler_field_serialized.inc','views',10),('views_handler_field_statistics_numeric','class','sites/all/modules/views/modules/statistics/views_handler_field_statistics_numeric.inc','views',10),('views_handler_field_taxonomy','class','sites/all/modules/views/modules/taxonomy/views_handler_field_taxonomy.inc','views',10),('views_handler_field_term_link_edit','class','sites/all/modules/views/modules/taxonomy/views_handler_field_term_link_edit.inc','views',10),('views_handler_field_term_node_tid','class','sites/all/modules/views/modules/taxonomy/views_handler_field_term_node_tid.inc','views',10),('views_handler_field_time_interval','class','sites/all/modules/views/handlers/views_handler_field_time_interval.inc','views',10),('views_handler_field_url','class','sites/all/modules/views/handlers/views_handler_field_url.inc','views',10),('views_handler_field_user','class','sites/all/modules/views/modules/user/views_handler_field_user.inc','views',10),('views_handler_field_user_language','class','sites/all/modules/views/modules/user/views_handler_field_user_language.inc','views',10),('views_handler_field_user_link','class','sites/all/modules/views/modules/user/views_handler_field_user_link.inc','views',10),('views_handler_field_user_link_cancel','class','sites/all/modules/views/modules/user/views_handler_field_user_link_cancel.inc','views',10),('views_handler_field_user_link_edit','class','sites/all/modules/views/modules/user/views_handler_field_user_link_edit.inc','views',10),('views_handler_field_user_mail','class','sites/all/modules/views/modules/user/views_handler_field_user_mail.inc','views',10),('views_handler_field_user_name','class','sites/all/modules/views/modules/user/views_handler_field_user_name.inc','views',10),('views_handler_field_user_permissions','class','sites/all/modules/views/modules/user/views_handler_field_user_permissions.inc','views',10),('views_handler_field_user_picture','class','sites/all/modules/views/modules/user/views_handler_field_user_picture.inc','views',10),('views_handler_field_user_roles','class','sites/all/modules/views/modules/user/views_handler_field_user_roles.inc','views',10),('views_handler_field_xss','class','sites/all/modules/views/handlers/views_handler_field.inc','views',10),('views_handler_filter','class','sites/all/modules/views/handlers/views_handler_filter.inc','views',10),('views_handler_filter_aggregator_category_cid','class','sites/all/modules/views/modules/aggregator/views_handler_filter_aggregator_category_cid.inc','views',10),('views_handler_filter_boolean_operator','class','sites/all/modules/views/handlers/views_handler_filter_boolean_operator.inc','views',10),('views_handler_filter_boolean_operator_string','class','sites/all/modules/views/handlers/views_handler_filter_boolean_operator_string.inc','views',10),('views_handler_filter_broken','class','sites/all/modules/views/handlers/views_handler_filter.inc','views',10),('views_handler_filter_combine','class','sites/all/modules/views/handlers/views_handler_filter_combine.inc','views',10),('views_handler_filter_comment_user_uid','class','sites/all/modules/views/modules/comment/views_handler_filter_comment_user_uid.inc','views',10),('views_handler_filter_date','class','sites/all/modules/views/handlers/views_handler_filter_date.inc','views',10),('views_handler_filter_entity_bundle','class','sites/all/modules/views/handlers/views_handler_filter_entity_bundle.inc','views',10),('views_handler_filter_equality','class','sites/all/modules/views/handlers/views_handler_filter_equality.inc','views',10),('views_handler_filter_fields_compare','class','sites/all/modules/views/handlers/views_handler_filter_fields_compare.inc','views',10),('views_handler_filter_field_list','class','sites/all/modules/views/modules/field/views_handler_filter_field_list.inc','views',10),('views_handler_filter_field_list_boolean','class','sites/all/modules/views/modules/field/views_handler_filter_field_list_boolean.inc','views',10),('views_handler_filter_file_status','class','sites/all/modules/views/modules/system/views_handler_filter_file_status.inc','views',10),('views_handler_filter_group_by_numeric','class','sites/all/modules/views/handlers/views_handler_filter_group_by_numeric.inc','views',10),('views_handler_filter_history_user_timestamp','class','sites/all/modules/views/modules/node/views_handler_filter_history_user_timestamp.inc','views',10),('views_handler_filter_in_operator','class','sites/all/modules/views/handlers/views_handler_filter_in_operator.inc','views',10),('views_handler_filter_locale_group','class','sites/all/modules/views/modules/locale/views_handler_filter_locale_group.inc','views',10),('views_handler_filter_locale_language','class','sites/all/modules/views/modules/locale/views_handler_filter_locale_language.inc','views',10),('views_handler_filter_locale_version','class','sites/all/modules/views/modules/locale/views_handler_filter_locale_version.inc','views',10),('views_handler_filter_many_to_one','class','sites/all/modules/views/handlers/views_handler_filter_many_to_one.inc','views',10),('views_handler_filter_ncs_last_updated','class','sites/all/modules/views/modules/comment/views_handler_filter_ncs_last_updated.inc','views',10),('views_handler_filter_node_access','class','sites/all/modules/views/modules/node/views_handler_filter_node_access.inc','views',10),('views_handler_filter_node_comment','class','sites/all/modules/views/modules/comment/views_handler_filter_node_comment.inc','views',10),('views_handler_filter_node_language','class','sites/all/modules/views/modules/locale/views_handler_filter_node_language.inc','views',10),('views_handler_filter_node_status','class','sites/all/modules/views/modules/node/views_handler_filter_node_status.inc','views',10),('views_handler_filter_node_tnid','class','sites/all/modules/views/modules/translation/views_handler_filter_node_tnid.inc','views',10),('views_handler_filter_node_tnid_child','class','sites/all/modules/views/modules/translation/views_handler_filter_node_tnid_child.inc','views',10),('views_handler_filter_node_type','class','sites/all/modules/views/modules/node/views_handler_filter_node_type.inc','views',10),('views_handler_filter_node_uid_revision','class','sites/all/modules/views/modules/node/views_handler_filter_node_uid_revision.inc','views',10),('views_handler_filter_node_version_count','class','sites/all/modules/views/modules/node/views_handler_filter_node_version_count.inc','views',10),('views_handler_filter_numeric','class','sites/all/modules/views/handlers/views_handler_filter_numeric.inc','views',10),('views_handler_filter_profile_selection','class','sites/all/modules/views/modules/profile/views_handler_filter_profile_selection.inc','views',10),('views_handler_filter_search','class','sites/all/modules/views/modules/search/views_handler_filter_search.inc','views',10),('views_handler_filter_string','class','sites/all/modules/views/handlers/views_handler_filter_string.inc','views',10),('views_handler_filter_system_type','class','sites/all/modules/views/modules/system/views_handler_filter_system_type.inc','views',10),('views_handler_filter_term_node_tid','class','sites/all/modules/views/modules/taxonomy/views_handler_filter_term_node_tid.inc','views',10),('views_handler_filter_term_node_tid_depth','class','sites/all/modules/views/modules/taxonomy/views_handler_filter_term_node_tid_depth.inc','views',10),('views_handler_filter_term_node_tid_depth_join','class','sites/all/modules/views/modules/taxonomy/views_handler_filter_term_node_tid_depth_join.inc','views',10),('views_handler_filter_tracker_boolean_operator','class','sites/all/modules/views/modules/tracker/views_handler_filter_tracker_boolean_operator.inc','views',10),('views_handler_filter_tracker_comment_user_uid','class','sites/all/modules/views/modules/tracker/views_handler_filter_tracker_comment_user_uid.inc','views',10),('views_handler_filter_user_current','class','sites/all/modules/views/modules/user/views_handler_filter_user_current.inc','views',10),('views_handler_filter_user_name','class','sites/all/modules/views/modules/user/views_handler_filter_user_name.inc','views',10),('views_handler_filter_user_permissions','class','sites/all/modules/views/modules/user/views_handler_filter_user_permissions.inc','views',10),('views_handler_filter_user_roles','class','sites/all/modules/views/modules/user/views_handler_filter_user_roles.inc','views',10),('views_handler_filter_vocabulary_machine_name','class','sites/all/modules/views/modules/taxonomy/views_handler_filter_vocabulary_machine_name.inc','views',10),('views_handler_filter_vocabulary_vid','class','sites/all/modules/views/modules/taxonomy/views_handler_filter_vocabulary_vid.inc','views',10),('views_handler_relationship','class','sites/all/modules/views/handlers/views_handler_relationship.inc','views',10),('views_handler_relationship_broken','class','sites/all/modules/views/handlers/views_handler_relationship.inc','views',10),('views_handler_relationship_entity_reverse','class','sites/all/modules/views/modules/field/views_handler_relationship_entity_reverse.inc','views',10),('views_handler_relationship_groupwise_max','class','sites/all/modules/views/handlers/views_handler_relationship_groupwise_max.inc','views',10),('views_handler_relationship_node_term_data','class','sites/all/modules/views/modules/taxonomy/views_handler_relationship_node_term_data.inc','views',10),('views_handler_relationship_translation','class','sites/all/modules/views/modules/translation/views_handler_relationship_translation.inc','views',10),('views_handler_sort','class','sites/all/modules/views/handlers/views_handler_sort.inc','views',10),('views_handler_sort_broken','class','sites/all/modules/views/handlers/views_handler_sort.inc','views',10),('views_handler_sort_comment_thread','class','sites/all/modules/views/modules/comment/views_handler_sort_comment_thread.inc','views',10),('views_handler_sort_date','class','sites/all/modules/views/handlers/views_handler_sort_date.inc','views',10),('views_handler_sort_group_by_numeric','class','sites/all/modules/views/handlers/views_handler_sort_group_by_numeric.inc','views',10),('views_handler_sort_menu_hierarchy','class','sites/all/modules/views/handlers/views_handler_sort_menu_hierarchy.inc','views',10),('views_handler_sort_ncs_last_comment_name','class','sites/all/modules/views/modules/comment/views_handler_sort_ncs_last_comment_name.inc','views',10),('views_handler_sort_ncs_last_updated','class','sites/all/modules/views/modules/comment/views_handler_sort_ncs_last_updated.inc','views',10),('views_handler_sort_node_language','class','sites/all/modules/views/modules/locale/views_handler_sort_node_language.inc','views',10),('views_handler_sort_node_version_count','class','sites/all/modules/views/modules/node/views_handler_sort_node_version_count.inc','views',10),('views_handler_sort_random','class','sites/all/modules/views/handlers/views_handler_sort_random.inc','views',10),('views_handler_sort_search_score','class','sites/all/modules/views/modules/search/views_handler_sort_search_score.inc','views',10),('views_handler_title_field','class','sites/all/modules/title/views/views_handler_title_field.inc','title',100),('views_join','class','sites/all/modules/views/includes/handlers.inc','views',10),('views_join_subquery','class','sites/all/modules/views/includes/handlers.inc','views',10),('views_many_to_one_helper','class','sites/all/modules/views/includes/handlers.inc','views',10),('views_object','class','sites/all/modules/views/includes/base.inc','views',10),('views_plugin','class','sites/all/modules/views/includes/plugins.inc','views',10),('views_plugin_access','class','sites/all/modules/views/plugins/views_plugin_access.inc','views',10),('views_plugin_access_none','class','sites/all/modules/views/plugins/views_plugin_access_none.inc','views',10),('views_plugin_access_perm','class','sites/all/modules/views/plugins/views_plugin_access_perm.inc','views',10),('views_plugin_access_role','class','sites/all/modules/views/plugins/views_plugin_access_role.inc','views',10),('views_plugin_argument_default','class','sites/all/modules/views/plugins/views_plugin_argument_default.inc','views',10),('views_plugin_argument_default_book_root','class','sites/all/modules/views/modules/book/views_plugin_argument_default_book_root.inc','views',10),('views_plugin_argument_default_current_user','class','sites/all/modules/views/modules/user/views_plugin_argument_default_current_user.inc','views',10),('views_plugin_argument_default_fixed','class','sites/all/modules/views/plugins/views_plugin_argument_default_fixed.inc','views',10),('views_plugin_argument_default_node','class','sites/all/modules/views/modules/node/views_plugin_argument_default_node.inc','views',10),('views_plugin_argument_default_php','class','sites/all/modules/views/plugins/views_plugin_argument_default_php.inc','views',10),('views_plugin_argument_default_raw','class','sites/all/modules/views/plugins/views_plugin_argument_default_raw.inc','views',10),('views_plugin_argument_default_taxonomy_tid','class','sites/all/modules/views/modules/taxonomy/views_plugin_argument_default_taxonomy_tid.inc','views',10),('views_plugin_argument_default_user','class','sites/all/modules/views/modules/user/views_plugin_argument_default_user.inc','views',10),('views_plugin_argument_validate','class','sites/all/modules/views/plugins/views_plugin_argument_validate.inc','views',10),('views_plugin_argument_validate_node','class','sites/all/modules/views/modules/node/views_plugin_argument_validate_node.inc','views',10),('views_plugin_argument_validate_numeric','class','sites/all/modules/views/plugins/views_plugin_argument_validate_numeric.inc','views',10),('views_plugin_argument_validate_php','class','sites/all/modules/views/plugins/views_plugin_argument_validate_php.inc','views',10),('views_plugin_argument_validate_taxonomy_term','class','sites/all/modules/views/modules/taxonomy/views_plugin_argument_validate_taxonomy_term.inc','views',10),('views_plugin_argument_validate_user','class','sites/all/modules/views/modules/user/views_plugin_argument_validate_user.inc','views',10),('views_plugin_cache','class','sites/all/modules/views/plugins/views_plugin_cache.inc','views',10),('views_plugin_cache_none','class','sites/all/modules/views/plugins/views_plugin_cache_none.inc','views',10),('views_plugin_cache_time','class','sites/all/modules/views/plugins/views_plugin_cache_time.inc','views',10),('views_plugin_display','class','sites/all/modules/views/plugins/views_plugin_display.inc','views',10),('views_plugin_display_attachment','class','sites/all/modules/views/plugins/views_plugin_display_attachment.inc','views',10),('views_plugin_display_block','class','sites/all/modules/views/plugins/views_plugin_display_block.inc','views',10),('views_plugin_display_default','class','sites/all/modules/views/plugins/views_plugin_display_default.inc','views',10),('views_plugin_display_embed','class','sites/all/modules/views/plugins/views_plugin_display_embed.inc','views',10),('views_plugin_display_extender','class','sites/all/modules/views/plugins/views_plugin_display_extender.inc','views',10),('views_plugin_display_feed','class','sites/all/modules/views/plugins/views_plugin_display_feed.inc','views',10),('views_plugin_display_page','class','sites/all/modules/views/plugins/views_plugin_display_page.inc','views',10),('views_plugin_exposed_form','class','sites/all/modules/views/plugins/views_plugin_exposed_form.inc','views',10),('views_plugin_exposed_form_basic','class','sites/all/modules/views/plugins/views_plugin_exposed_form_basic.inc','views',10),('views_plugin_exposed_form_input_required','class','sites/all/modules/views/plugins/views_plugin_exposed_form_input_required.inc','views',10),('views_plugin_localization','class','sites/all/modules/views/plugins/views_plugin_localization.inc','views',10),('views_plugin_localization_core','class','sites/all/modules/views/plugins/views_plugin_localization_core.inc','views',10),('views_plugin_localization_none','class','sites/all/modules/views/plugins/views_plugin_localization_none.inc','views',10),('views_plugin_localization_test','class','sites/all/modules/views/tests/views_plugin_localization_test.inc','views',10),('views_plugin_pager','class','sites/all/modules/views/plugins/views_plugin_pager.inc','views',10),('views_plugin_pager_full','class','sites/all/modules/views/plugins/views_plugin_pager_full.inc','views',10),('views_plugin_pager_mini','class','sites/all/modules/views/plugins/views_plugin_pager_mini.inc','views',10),('views_plugin_pager_none','class','sites/all/modules/views/plugins/views_plugin_pager_none.inc','views',10),('views_plugin_pager_some','class','sites/all/modules/views/plugins/views_plugin_pager_some.inc','views',10),('views_plugin_query','class','sites/all/modules/views/plugins/views_plugin_query.inc','views',10),('views_plugin_query_default','class','sites/all/modules/views/plugins/views_plugin_query_default.inc','views',10),('views_plugin_row','class','sites/all/modules/views/plugins/views_plugin_row.inc','views',10),('views_plugin_row_aggregator_rss','class','sites/all/modules/views/modules/aggregator/views_plugin_row_aggregator_rss.inc','views',10),('views_plugin_row_comment_rss','class','sites/all/modules/views/modules/comment/views_plugin_row_comment_rss.inc','views',10),('views_plugin_row_comment_view','class','sites/all/modules/views/modules/comment/views_plugin_row_comment_view.inc','views',10),('views_plugin_row_fields','class','sites/all/modules/views/plugins/views_plugin_row_fields.inc','views',10),('views_plugin_row_node_rss','class','sites/all/modules/views/modules/node/views_plugin_row_node_rss.inc','views',10),('views_plugin_row_node_view','class','sites/all/modules/views/modules/node/views_plugin_row_node_view.inc','views',10),('views_plugin_row_rss_fields','class','sites/all/modules/views/plugins/views_plugin_row_rss_fields.inc','views',10),('views_plugin_row_search_view','class','sites/all/modules/views/modules/search/views_plugin_row_search_view.inc','views',10),('views_plugin_row_user_view','class','sites/all/modules/views/modules/user/views_plugin_row_user_view.inc','views',10),('views_plugin_style','class','sites/all/modules/views/plugins/views_plugin_style.inc','views',10),('views_plugin_style_default','class','sites/all/modules/views/plugins/views_plugin_style_default.inc','views',10),('views_plugin_style_grid','class','sites/all/modules/views/plugins/views_plugin_style_grid.inc','views',10),('views_plugin_style_jump_menu','class','sites/all/modules/views/plugins/views_plugin_style_jump_menu.inc','views',10),('views_plugin_style_list','class','sites/all/modules/views/plugins/views_plugin_style_list.inc','views',10),('views_plugin_style_mapping','class','sites/all/modules/views/plugins/views_plugin_style_mapping.inc','views',10),('views_plugin_style_rss','class','sites/all/modules/views/plugins/views_plugin_style_rss.inc','views',10),('views_plugin_style_summary','class','sites/all/modules/views/plugins/views_plugin_style_summary.inc','views',10),('views_plugin_style_summary_jump_menu','class','sites/all/modules/views/plugins/views_plugin_style_summary_jump_menu.inc','views',10),('views_plugin_style_summary_unformatted','class','sites/all/modules/views/plugins/views_plugin_style_summary_unformatted.inc','views',10),('views_plugin_style_table','class','sites/all/modules/views/plugins/views_plugin_style_table.inc','views',10),('views_test_area_access','class','sites/all/modules/views/tests/test_handlers/views_test_area_access.inc','views',10),('views_test_plugin_access_test_dynamic','class','sites/all/modules/views/tests/test_plugins/views_test_plugin_access_test_dynamic.inc','views',10),('views_test_plugin_access_test_static','class','sites/all/modules/views/tests/test_plugins/views_test_plugin_access_test_static.inc','views',10),('views_test_plugin_style_test_mapping','class','sites/all/modules/views/tests/test_plugins/views_test_plugin_style_test_mapping.inc','views',10),('views_ui','class','sites/all/modules/views/plugins/export_ui/views_ui.class.php','views_ui',0);
/*!40000 ALTER TABLE `registry` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `registry_file`
--

DROP TABLE IF EXISTS `registry_file`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `registry_file` (
  `filename` varchar(255) NOT NULL COMMENT 'Path to the file.',
  `hash` varchar(64) NOT NULL COMMENT 'sha-256 hash of the file’s contents when last parsed.',
  PRIMARY KEY (`filename`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Files parsed to build the registry.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `registry_file`
--

LOCK TABLES `registry_file` WRITE;
/*!40000 ALTER TABLE `registry_file` DISABLE KEYS */;
INSERT INTO `registry_file` VALUES ('includes/actions.inc','f36b066681463c7dfe189e0430cb1a89bf66f7e228cbb53cdfcd93987193f759'),('includes/ajax.inc','3d1c0d2efcdab327224122df1156a665f9bbf60873907dde2f189b018d4e9be3'),('includes/archiver.inc','bdbb21b712a62f6b913590b609fd17cd9f3c3b77c0d21f68e71a78427ed2e3e9'),('includes/authorize.inc','6d64d8c21aa01eb12fc29918732e4df6b871ed06e5d41373cb95c197ed661d13'),('includes/batch.inc','1fe00f9a25481cd43e19fbd6bd37b7ff9dca79f8405ec3e55ffb011be12ec2c3'),('includes/batch.queue.inc','554b2e92e1dad0f7fd5a19cb8dff7e109f10fbe2441a5692d076338ec908de0f'),('includes/bootstrap.inc','1c29077bba129da26660f46f083112dd313e9fba9447436610a94b036c393bb3'),('includes/cache-install.inc','e7ed123c5805703c84ad2cce9c1ca46b3ce8caeeea0d8ef39a3024a4ab95fa0e'),('includes/cache.inc','033c9bf2555dba29382b077f78cc00c82fd7f42a959ba31b710adddf6fdf24fe'),('includes/common.inc','d53f0ec66d5a9a2b98698ddda819ee41c6dd26c049b41a7a7aa5c4e377339bdb'),('includes/database/database.inc','2ef46543fb9cf61ed9fa9aed4e44dd31630c22604ea6b8e48b57ebd7ad11a111'),('includes/database/log.inc','9feb5a17ae2fabcf26a96d2a634ba73da501f7bcfc3599a693d916a6971d00d1'),('includes/database/mysql/database.inc','32a577354dba6030043500873f8a2a7359c80c179a213284b026c1a9b0452b70'),('includes/database/mysql/install.inc','6ae316941f771732fbbabed7e1d6b4cbb41b1f429dd097d04b3345aa15e461a0'),('includes/database/mysql/query.inc','0212a871646c223bf77aa26b945c77a8974855373967b5fb9fdc09f8a1de88a6'),('includes/database/mysql/schema.inc','2ef729f8d6466d5cd87ba233152d88590bce629d8366040b2509b4e24258d780'),('includes/database/pgsql/database.inc','651bec324e2204aa35a28fdbd876aa8e4f7a9e909e75cc8db811e9c156b0df88'),('includes/database/pgsql/install.inc','39587f26a9e054afaab2064d996af910f1b201ef1c6b82938ef130e4ff8c6aab'),('includes/database/pgsql/query.inc','0df57377686c921e722a10b49d5e433b131176c8059a4ace4680964206fc14b4'),('includes/database/pgsql/schema.inc','1588daadfa53506aa1f5d94572162a45a46dc3ceabdd0e2f224532ded6508403'),('includes/database/pgsql/select.inc','1e509bc97c58223750e8ea735145b316827e36f43c07b946003e41f5bca23659'),('includes/database/prefetch.inc','b5b207a66a69ecb52ee4f4459af16a7b5eabedc87254245f37cc33bebb61c0fb'),('includes/database/query.inc','982d44a294eea1c9619687c14df2987257e3776fcabeba05f01432e934cf61c6'),('includes/database/schema.inc','6ea8e4063eb72d8f6b1a9f8b8908489d9f89b4a158ef37002d21209fb500358c'),('includes/database/select.inc','02a2d4345287df62b163ca2524e99b7370c9ec167bc937245328683d4e3e3d56'),('includes/database/sqlite/database.inc','62f6669c4610557c4b34ada9f0a0f61d6cb7b377e0a9032d2efca7b5f39b0965'),('includes/database/sqlite/install.inc','6620f354aa175a116ba3a0562c980d86cc3b8b481042fc3cc5ed6a4d1a7a6d74'),('includes/database/sqlite/query.inc','0eb02ad036ef61c490fb3f189a4cdc8fc1ae0d442737806346fd63aea8f30db3'),('includes/database/sqlite/schema.inc','3a7d22ec1f0ee09bfa267309b90e30edbe39e453b3025b30cbe3ae7412a4df2d'),('includes/database/sqlite/select.inc','8d1c426dbd337733c206cce9f59a172546c6ed856d8ef3f1c7bef05a16f7bf68'),('includes/date.inc','1de2c25e3b67a9919fc6c8061594442b6fb2cdd3a48ddf1591ee3aa98484b737'),('includes/entity.inc','f06b508f93e72ba70f979d8391be57662c018a03a32fac0a6d3baa752740133d'),('includes/errors.inc','d731bbe3a60508e164cfa90b8edc06400c7f15844f9f9bc3935dd87e44c460db'),('includes/file.inc','f112194214d483ce867165922ad7996c64174bd932369f89f8335af026bbb493'),('includes/file.mimetypes.inc','33266e837f4ce076378e7e8cef6c5af46446226ca4259f83e13f605856a7f147'),('includes/filetransfer/filetransfer.inc','fdea8ae48345ec91885ac48a9bc53daf87616271472bb7c29b7e3ce219b22034'),('includes/filetransfer/ftp.inc','51eb119b8e1221d598ffa6cc46c8a322aa77b49a3d8879f7fb38b7221cf7e06d'),('includes/filetransfer/local.inc','7cbfdb46abbdf539640db27e66fb30e5265128f31002bd0dfc3af16ae01a9492'),('includes/filetransfer/ssh.inc','92f1232158cb32ab04cbc93ae38ad3af04796e18f66910a9bc5ca8e437f06891'),('includes/form.inc','a0e219d53d641f08d6f1d609e53f06f3f8b1c591d20113d0992557c815b44a72'),('includes/graph.inc','8e0e313a8bb33488f371df11fc1b58d7cf80099b886cd1003871e2c896d1b536'),('includes/image.inc','bcdc7e1599c02227502b9d0fe36eeb2b529b130a392bc709eb737647bd361826'),('includes/install.core.inc','189653e4bb7d4828bd6e1b61015fabcc7182e23d9dd8858170f98114d99400c8'),('includes/install.inc','fbb23627b06abb070b4531da786c1e06bf1dbd6f923bb2b404f4808c2340b0f9'),('includes/iso.inc','0ce4c225edcfa9f037703bc7dd09d4e268a69bcc90e55da0a3f04c502bd2f349'),('includes/json-encode.inc','02a822a652d00151f79db9aa9e171c310b69b93a12f549bc2ce00533a8efa14e'),('includes/language.inc','4e08f30843a7ccaeea5c041083e9f77d33d57ff002f1ab4f66168e2c683ce128'),('includes/locale.inc','ca50acc0780cbffeca17f99a0997f91b8b9402f0eec1898c3122e1d73664d01d'),('includes/lock.inc','a181c8bd4f88d292a0a73b9f1fbd727e3314f66ec3631f288e6b9a54ba2b70fa'),('includes/mail.inc','41d0e657119a05f8d7e85ebf32e74b12a1c3107d717a348158414b113e208b9c'),('includes/menu.inc','8e7a8a1a4666a8ca66d1b19cc97be4cf82c3bb0e835e652ee366bec9b74a8c23'),('includes/module.inc','8dab73e50e6bcd680a26f55597d2d103ba68a29089f888e2a2c206fc38eaa669'),('includes/pager.inc','6f9494b85c07a2cc3be4e54aff2d2757485238c476a7da084d25bde1d88be6d8'),('includes/password.inc','fd9a1c94fe5a0fa7c7049a2435c7280b1d666b2074595010e3c492dd15712775'),('includes/path.inc','2dca08d14a46e5ac6a665b7a5dde78045d8de2b35aaa78c6fb811e1125ce4953'),('includes/registry.inc','f47b20859f0fc80bf4bb2849a1282d6c54006957b69da0e5f4691de585ca4cdf'),('includes/request-sanitizer.inc','8d43f991b57cbedb2dc99d153f053a24e3ab43849b4816c0353529b918a66441'),('includes/session.inc','5851ff6941aba2744dd0c247f077fc02fbbe24e9786e04ea0a3c372d68ca6d16'),('includes/stream_wrappers.inc','b8a5a53f3d3ef26ea868037547f76af8049ce0c55b464810c627310a84f24924'),('includes/tablesort.inc','2d88768a544829595dd6cda2a5eb008bedb730f36bba6dfe005d9ddd999d5c0f'),('includes/theme.inc','5d8b96db9760367eb86821085a17a144a58cb355e6f547e321321ee34535da7b'),('includes/theme.maintenance.inc','39f068b3eee4d10a90d6aa3c86db587b6d25844c2919d418d34d133cfe330f5a'),('includes/token.inc','5e7898cd78689e2c291ed3cd8f41c032075656896f1db57e49217aac19ae0428'),('includes/unicode.entities.inc','2b858138596d961fbaa4c6e3986e409921df7f76b6ee1b109c4af5970f1e0f54'),('includes/unicode.inc','e18772dafe0f80eb139fcfc582fef1704ba9f730647057d4f4841d6a6e4066ca'),('includes/update.inc','25c30f1e61ef9c91a7bdeb37791c2215d9dc2ae07dba124722d783ca31bb01e7'),('includes/updater.inc','d2da0e74ed86e93c209f16069f3d32e1a134ceb6c06a0044f78e841a1b54e380'),('includes/utility.inc','3458fd2b55ab004dd0cc529b8e58af12916e8bd36653b072bdd820b26b907ed5'),('includes/xmlrpc.inc','ea24176ec445c440ba0c825fc7b04a31b440288df8ef02081560dc418e34e659'),('includes/xmlrpcs.inc','925c4d5bf429ad9650f059a8862a100bd394dce887933f5b3e7e32309a51fd8e'),('modules/block/block.test','40d9de00589211770a85c47d38c8ad61c598ec65d9332128a882eb8750e65a16'),('modules/color/color.test','610ba154f42b6af5871fb09cdb0bc7badc29b03845c08d86e0e524840dd27568'),('modules/comment/comment.module','db858137ff6ce06d87cb3b8f5275bed90c33a6d9aa7d46e7a74524cc2f052309'),('modules/comment/comment.test','332d14e197b4ebe85b1b70a15602981d99d332e2293576c0e44cf18a808c7aac'),('modules/contact/contact.test','655e8d5fe7536a972c2233e438a142166b15a118cc644e94b756c2814c375634'),('modules/contextual/contextual.test','023dafa199bd325ecc55a17b2a3db46ac0a31e23059f701f789f3bc42427ba0b'),('modules/dashboard/dashboard.test','125df00fc6deb985dc554aa7807a48e60a68dbbddbad9ec2c4718da724f0e683'),('modules/dblog/dblog.test','79ba7991c3f40f9241e9a03ffa43faf945c82658ca9b52ec62bd13bd80f41269'),('modules/field/field.attach.inc','2df4687b5ec078c4893dc1fea514f67524fd5293de717b9e05caf977e5ae2327'),('modules/field/field.info.class.inc','cf18178e119d43897d3abd882ba3acc0cf59d1ad747663437c57b1ec4d0a4322'),('modules/field/field.module','48b5b83f214a8d19e446f46c5d7a1cd35faa656ccb7b540f9f02462a440cacdd'),('modules/field/modules/field_sql_storage/field_sql_storage.test','315eedaf2022afc884c35efd3b7c400eddab6ea30bec91924bc82ab5cd3e79f2'),('modules/field/modules/list/tests/list.test','c1a214d7efd3247dd947d742a8514ec9649da62593608dfdccee6913d48e5709'),('modules/field/modules/number/number.test','fc8f193904f1c5f87dcf51a279975214b34aa1349fe9c38b09c4e6740b059b49'),('modules/field/modules/options/options.test','1b30956b6f46840ccb41b99bda08f328172f008f1fb4164c65fe9e4047fffa5f'),('modules/field/modules/text/text.test','5c28b9da26417d2ed8a169850989c0b59f2b188a0161eb58e2b87c67994d602d'),('modules/field/tests/field.test','5eaad7a933ef8ea05b958056492ce17858cd542111f0fe81dd1a5949ad8f966e'),('modules/field_ui/field_ui.test','f535e5627c969e9083a63aaf72d4ac645e30709d7b87af15c6c3b870481f283a'),('modules/file/tests/file.test','09a4233406b2913692c91986ef0509197ffbf4a59d3c9843acf8bdd81ec0832b'),('modules/filter/filter.test','b8aa5e6b832422c6ad5fe963898ec9526c814614f27ecccb67107ce194997d6a'),('modules/forum/forum.test','d282b29d6312d63183e003ba036d7645a946e828c94448592f930d80fceb42d6'),('modules/help/help.test','bc934de8c71bd9874a05ccb5e8f927f4c227b3b2397d739e8504c8fd6ae5a83c'),('modules/image/image.test','6e7a0cbcb58f6210127b0ac7c1d118d488abd0925fe8db10a3405af87f1d9fe1'),('modules/locale/locale.test','08793bfbabe6147248a3cbbecaec2c3179baf15bd3289b43f3b0dad3bc8280ae'),('modules/menu/menu.test','71efd7117a882fdcdd50971b4a68f7f2895b532e09acf094d747f27a15742c5b'),('modules/node/node.module','70f969229d03819dba439546ae7aef30283b93e410af1b45f5a25b90d3cb8edd'),('modules/node/node.test','35bf40fde62f3a1de95bab9f037b84f20c2f93a1c579d7d19e4a87afe75dc330'),('modules/path/path.test','2004183b2c7c86028bf78c519c6a7afc4397a8267874462b0c2b49b0f8c20322'),('modules/php/php.test','d234f9c1ab18a05834a3cb6dc532fb4c259aa25612551f953ba6e3bb714657b8'),('modules/rdf/rdf.test','9849d2b717119aa6b5f1496929e7ac7c9c0a6e98486b66f3876bda0a8c165525'),('modules/shortcut/shortcut.test','0d78280d4d0a05aa772218e45911552e39611ca9c258b9dd436307914ac3f254'),('modules/system/system.archiver.inc','faa849f3e646a910ab82fd6c8bbf0a4e6b8c60725d7ba81ec0556bd716616cd1'),('modules/system/system.mail.inc','d31e1769f5defbe5f27dc68f641ab80fb8d3de92f6e895f4c654ec05fc7e5f0f'),('modules/system/system.queue.inc','a77a5913d84368092805ac551ca63737c1d829455504fcccb95baa2932f28009'),('modules/system/system.tar.inc','d0d2f191d79b3227852e7436908386bdd7a25f78c73f3c8bf9ef5903892ae993'),('modules/system/system.test','7a94d94c13eb60684678e62f25cec44d46714a1ca4987f62d86d358e8978902a'),('modules/system/system.updater.inc','9433fa8d39500b8c59ab05f41c0aac83b2586a43be4aa949821380e36c4d3c48'),('modules/taxonomy/taxonomy.module','19992c2e810a7b7a1c228d178b0b6c5f358082d515b8a6e77b0415a430e23997'),('modules/taxonomy/taxonomy.test','ce91ff8a2879d65fdb3477d3f437cad8ef50b8963dadb75ae203854987b2c23a'),('modules/translation/translation.test','c2ad71934a9a2139cdf8213df35f4c91dcc0e643fabb883c38e3ffbdd313d608'),('modules/update/update.test','994b66b737f16eb98ee18c9e9ecd62e86de2792159e70b36982e95b48f2746a3'),('modules/user/user.module','b773a1b0f7448546393e6f7b2436d0d91b7965889afdf4a863bba4c0bc0dba69'),('modules/user/user.test','0b55048c0de2dee5ab1c25a38c01b3bd13f476b43e4172bb0c06cb6188d2edc9'),('sites/all/modules/addressfield/addressfield.migrate.inc','1750da9b75d2f5b4f1303bc7592774e971080ba13d467e3d95265279d6261a4f'),('sites/all/modules/addressfield/views/addressfield_views_handler_field_administrative_area.inc','557ad6bbaeab17cc99820f08887169e1408e5fff8c17c44b66b5e56e5fd62db2'),('sites/all/modules/addressfield/views/addressfield_views_handler_field_country.inc','e87fd32bd4ba5229040ab7020206774fec2717236d4a39c729362b5c7a55f03c'),('sites/all/modules/addressfield/views/addressfield_views_handler_filter_country.inc','51956e153daca9f27e4c8bbecfa2398a4ef50391d2f5bcac258586a6d1dd1fb2'),('sites/all/modules/ctools/includes/context.inc','2057a0331cf54e23ef39aa84b7c60f486aff749223367a30f3513b05dde35f3d'),('sites/all/modules/ctools/includes/css-cache.inc','db90ff67669d9fa445e91074ac67fb97cdb191a19e68d42744f0fd4158649cfa'),('sites/all/modules/ctools/includes/math-expr.inc','f468453177eaa340d2a9dd03cc857be1080f4422bc0c4467e1f55663aa8aa4ae'),('sites/all/modules/ctools/includes/stylizer.inc','a19b912a79e6d982a6bfbb660c108a047e41283a23e1b12e4b9c22af51771add'),('sites/all/modules/ctools/plugins/export_ui/ctools_export_ui.class.php','ba3c6c2b75bdbd9922a6324d7a946b3916870590477cceea58d824c18a85e78d'),('sites/all/modules/ctools/tests/context.test','bc23a86c5c32a0335c970f1e51ad6d60cc02d006de3d5cb5ee0bbdaa84d5bcd3'),('sites/all/modules/ctools/tests/css.test','832c58634157083e988797bf878c5fd6b9640e187802a397763e25771eced028'),('sites/all/modules/ctools/tests/css_cache.test','331564b96148bb666b306ead748b8b18a7baf746e96d6564b9685a23ca47a888'),('sites/all/modules/ctools/tests/ctools.plugins.test','2dbabab681d5a9e15e093aef5a48732dcdb030680b932c7a0c7260e444751919'),('sites/all/modules/ctools/tests/ctools.test','427659c5c3db1e8638539b6dd1a440451e043129172a42f66f3f9bbd15e8db0b'),('sites/all/modules/ctools/tests/math_expression.test','8e75cdab9db025add3adf9dd36fa818e6982b23f7bf3a8192deca5d3240360e4'),('sites/all/modules/ctools/tests/math_expression_stack.test','203b98c797d7eaa787c6481c1ab9482c0ca45559314f79632d7c5efb51d7d170'),('sites/all/modules/ctools/tests/object_cache.test','0af88e1d17b8265ac621799922934dded7c44073c001acf8c1c47d0187cb52fa'),('sites/all/modules/ctools/tests/object_cache_unit.test','9fd7871c5f0307247469bcdd488f3086126f5f7978d6a470f8ecb8a6dc4b5a1e'),('sites/all/modules/ctools/tests/page_tokens.test','078f82bd0957d8821521388fa270e70e10e9f143c1012ebac60f2dfd4d9ab1a4'),('sites/all/modules/entity/entity.features.inc','53f537caf6ad9355fb92b2c6db019959abdf399d80764151dd976b0891f37436'),('sites/all/modules/entity/entity.i18n.inc','41e0e62af7e2774f62b162d597bb3244551c280296b692b29d039a2c243d7059'),('sites/all/modules/entity/entity.info.inc','8799080b9393c9560e64feae1276fb7d26fef4d92bb0edacc863ee3e7b67bf04'),('sites/all/modules/entity/entity.rules.inc','774199059d1b3ebe6d3fe7a49dbb1550df489055a3d066b5de54edda8dd7ba84'),('sites/all/modules/entity/entity.test','aba6490cd2041438d832dc8f63b213e0d171a5a218f6d51a9fe00c51e95069ce'),('sites/all/modules/entity/entity_token.module','0c1ad6fb6f8c430e47a81be6d08180883c5a1ee728ce8b5dd0775713b34fb862'),('sites/all/modules/entity/entity_token.tokens.inc','084edf8f860f3c9843e23cc2e06a9084dcb644ee6d99c21cdd7bd924138d518f'),('sites/all/modules/entity/includes/entity.controller.inc','b85d1882fae38ee8a0e82bf75952f44f65a58fd95e3bf0c3cb2a1321cf4d308a'),('sites/all/modules/entity/includes/entity.inc','02c3c8b1d4b7230f875c4fae8e6ba3bd57431e01f312b32f3ed305a7be734774'),('sites/all/modules/entity/includes/entity.ui.inc','49653cbbccc4b4e51f957727aa95803c149fac9565f53ed553e2cd1c1c3580ff'),('sites/all/modules/entity/includes/entity.wrapper.inc','c728444ea73d4d5a7f0ec4cc80c7b749ab3134e1d0b973f8c001936c3dd5b861'),('sites/all/modules/entity/views/entity.views.inc','089b8ed3103f62778be3395a99ddfbd84da4235f5ad431392f8984eaa4bf349f'),('sites/all/modules/entity/views/handlers/entity_views_field_handler_helper.inc','88e4cbbbeab9bbaa4c928118bdefb158ea99f343f813cf88cce01ed7fbf8bf6a'),('sites/all/modules/entity/views/handlers/entity_views_handler_area_entity.inc','39ac643c4365394ac54190c4d130ea5787de423b9dadc14a470687a64cfbc8ab'),('sites/all/modules/entity/views/handlers/entity_views_handler_field_boolean.inc','b28b8eee8761ba7a6af35d97ab7aaee28406e6c227271f9769818560626c5791'),('sites/all/modules/entity/views/handlers/entity_views_handler_field_date.inc','b0f5be5b399de94934b24e84c8cf6053a043f6b00c60dcffa752daeafdd38778'),('sites/all/modules/entity/views/handlers/entity_views_handler_field_duration.inc','ed7bb64cb63b94a20c8cde98cfb053b5ea252804396cf61ac562faf1d850266b'),('sites/all/modules/entity/views/handlers/entity_views_handler_field_entity.inc','4f255918a22fefebe9c7734f200751457a7ca4d3648e32a98511bb51968d7521'),('sites/all/modules/entity/views/handlers/entity_views_handler_field_field.inc','893121efbce2a7181e31147bade260c9cc657cbd33b0d254cb28b2650e57566d'),('sites/all/modules/entity/views/handlers/entity_views_handler_field_numeric.inc','f14e2b063930e8820af381b4f5e83c7278440e7804ab88cfde865b6c94e7c0f6'),('sites/all/modules/entity/views/handlers/entity_views_handler_field_options.inc','27ef31b8ee7b9999930380d6a5fdb477772329c4ddbd5c70cc34bcdc7543ce56'),('sites/all/modules/entity/views/handlers/entity_views_handler_field_text.inc','5fb0a85d35d29944c699ceaf6efed5eda2df757009e44caba8ff2be397568b60'),('sites/all/modules/entity/views/handlers/entity_views_handler_field_uri.inc','79ecaa3eb17dfdd0ca077351b75a2c0adf411ebc04720e7cc0e2397674225f24'),('sites/all/modules/entity/views/handlers/entity_views_handler_relationship.inc','b69bc538d1e1e0f91f8485ca54c3b6e2be025caa47619734c467377cf89041b9'),('sites/all/modules/entity/views/handlers/entity_views_handler_relationship_by_bundle.inc','65300c793c4591d60ad908dc02cf3148fe4e899fa6ad218e875fd92d411374dc'),('sites/all/modules/entity/views/plugins/entity_views_plugin_row_entity_view.inc','e489ca209c66b76228383864b8267067e7cf3a1e375d9a195339f89932fed71f'),('sites/all/modules/entity_translation/entity_translation_upgrade/entity_translation_upgrade.test','a7bff85b8ef693c394b387e3588cc4eaa730623df3f2505bc9a6e62e29de009a'),('sites/all/modules/entity_translation/includes/translation.handler.comment.inc','c1667be0bdea8805be52b10bad904f60a278213b749d4c9903e3887b6165448c'),('sites/all/modules/entity_translation/includes/translation.handler.inc','ee78d6330239e326af6187f92e6a19b776323bf367c181f0cf6d09339a7835a8'),('sites/all/modules/entity_translation/includes/translation.handler.node.inc','255963e0d0a38349e1c5cb3ff072819b9c39cb5760a71b312ddaac1dd2edbb82'),('sites/all/modules/entity_translation/includes/translation.handler.taxonomy_term.inc','587417ed1ba9debd4caef9b32722ca003be28c325d12f3fcb82b70384c095814'),('sites/all/modules/entity_translation/includes/translation.handler.user.inc','4574d55fc756f566bc10f574231ee7900a181fbaa68d647ae973d9e06b4167ac'),('sites/all/modules/entity_translation/includes/translation.handler_factory.inc','80ed7658c3d685bc18e7d29129893b2fb48dcda029e730241c1d0f53db7ad367'),('sites/all/modules/entity_translation/includes/translation.migrate.inc','e5c56971c44ad5352089481e48e01fb83bfefbb5359c8033949ce5227a917d42'),('sites/all/modules/entity_translation/tests/entity_translation.test','ea12781697a342961ae466b46a89646e31b5fb4d7618e64998c6e8b2d8bcc5c6'),('sites/all/modules/entity_translation/views/entity_translation_handler_field_field.inc','4681a5b5e8963b562e6fbb39c3385024034f392162eb4ff7f52a1684db628ea8'),('sites/all/modules/entity_translation/views/entity_translation_handler_field_label.inc','d31ea1af45150832df052fad29af729c6c028a54fa44d62a023a861bbeba744d'),('sites/all/modules/entity_translation/views/entity_translation_handler_field_translate_link.inc','78cfa9c4e9b074e5d45d887fe8f69a8966fc0112d95a6abc74b9b13421b58047'),('sites/all/modules/entity_translation/views/entity_translation_handler_filter_entity_type.inc','d86bb73731c60f8ebaa3d8c29f837403935e91fe062c5ab6293901aa253da3e7'),('sites/all/modules/entity_translation/views/entity_translation_handler_filter_language.inc','44c3a6928b8f7cde5fea6ae7cff973982d6c7781a3c8be663838ff770435c939'),('sites/all/modules/entity_translation/views/entity_translation_handler_filter_translation_exists.inc','25d8ee7f5d45a5e3984572d00816368902121574f04277a67bbabd004b67f39a'),('sites/all/modules/entity_translation/views/entity_translation_handler_relationship.inc','aac136a9eab8c4b832edd73b942e124c3fdf1f48b6c8a8d0bf5383ba1d32259c'),('sites/all/modules/features/tests/features.test','5fc1c5733eb4c76c32f1a79736c064f1f89001f7987eb7bf183c8d438c8f8baf'),('sites/all/modules/geofield/geofield.elements.inc','12f1d4ce3a1e77e4485ed5f057bbbf4bda1974f23041fb969413e43f0f36571c'),('sites/all/modules/geofield/geofield.feeds.inc','96cbbaa5715824c1243cb5a802239a72774a5827d6b25da548f000893cdd3180'),('sites/all/modules/geofield/geofield.formatters.inc','de7f292079587046e3e5591fe551f76878dbc006f498a1043fc6cb747b6c90b2'),('sites/all/modules/geofield/geofield.install','3377af4b8935462c8b59441072ccc8ef4899a08787d21c988562cd1aec09349e'),('sites/all/modules/geofield/geofield.module','7955f43b59af849a1173db96e935c6553f15ec3838fae109ec3dd241f433d6ea'),('sites/all/modules/geofield/geofield.openlayers.inc','007a5b97fe16d5af2b6473bd87fd4e4a66743d3c87f7373148d474b74966b0e4'),('sites/all/modules/geofield/geofield.widgets.inc','da2f07077fb692aa0dda87e19887ba6126a1106165f3fabec9de3020bf8006b4'),('sites/all/modules/geofield/tests/geofield.test','074f4d7f322f0dabffa8f522209c18e241c7191b9ce24cfedd1a63c41e28c11d'),('sites/all/modules/geofield/views/geofield.views.inc','3a604800a2ba736da2be47c9831fcfd9388eca66254c80a147a8627b00041f8e'),('sites/all/modules/geofield/views/handlers/geofield_handler_argument_proximity.inc','b0be3bc348a1ec8f7b87d4c48f99180e47a6deb18549cea7be2f6cc170dad95f'),('sites/all/modules/geofield/views/handlers/geofield_handler_field.inc','06ff54603ed730183b8dfeb12956196c658d3f79d86ee0139c7784eef179845b'),('sites/all/modules/geofield/views/handlers/geofield_handler_filter.inc','961468a6e11d679fec27b40dac66c48cb171d4ad068372aece159abb9b3eba23'),('sites/all/modules/geofield/views/handlers/geofield_handler_sort.inc','cc8492843d1e11a9336951bb6ca8e236e1fbd7df0b2203a57cbff47043245619'),('sites/all/modules/geofield/views/proximity_plugins/geofieldProximityBase.inc','a0917a5c8095b7d87e9965390f5959f33b0aa787b82826980689674cd7930381'),('sites/all/modules/geofield/views/proximity_plugins/geofieldProximityContextualFilter.inc','089a18c5513afddeb4b9b5b67edd8ebc881e3b85c1834707e94a9a94684fe96c'),('sites/all/modules/geofield/views/proximity_plugins/geofieldProximityCurrentUser.inc','ab8c0ca5adfd29dec90c3d67677dcec1e53092c4a7919c00c2682123e57e092d'),('sites/all/modules/geofield/views/proximity_plugins/geofieldProximityEntityURL.inc','2f68c7c16834986376b170eb2ef7a543c2eebe1a935f5c6466b422bb4a51502d'),('sites/all/modules/geofield/views/proximity_plugins/geofieldProximityExposedFilter.inc','3dd678a263886b524877d1db0b1252186c58bfc1f072e6762ea0bd4ec408e4cf'),('sites/all/modules/geofield/views/proximity_plugins/geofieldProximityGeocoder.inc','c1d8cc9377b344f3830bcb50de1d264b4316cede88a83c9df71875619bef0fae'),('sites/all/modules/geofield/views/proximity_plugins/geofieldProximityManual.inc','0790a25abf3b63bf0b3f03b52f4c7affef3243b1f903b9170b99e6cf3c45ccbb'),('sites/all/modules/geofield/views/proximity_plugins/geofieldProximityOtherGeofield.inc','475bd06c57225422a3e4de3879822132d27b1513624e3ef901029e51f3abcdf1'),('sites/all/modules/gmap/gmap_location.module','8dfed0880dfd020efaa848843aa438ee4e39de85d8385a190bb11831ba36e4c6'),('sites/all/modules/gmap/gmap_plugin_style_gmap.inc','87163ff9ed0faea1bfbfa008e69ec4f443ca5c3a263f76e7d9896d0a56ffe799'),('sites/all/modules/gmap/gmap_plugin_style_gmapextended.inc','b9b3b6b84dbaab3d8dd433d7cf17d38facb0baaffbdae8cb13f327fb0d43b542'),('sites/all/modules/gmap/lib/Drupal/gmap/GmapDefaults.php','3a1f0bd6ebecbca05ca2f61509e843a031e6e8d70389137e26f649620ab37ae0'),('sites/all/modules/gmap/lib/Drupal/gmap/GmapMacroToolbox.php','b59621e19e6bff4470edd27784cd57a594e4a80dc56537eec64efc601183c45d'),('sites/all/modules/gmap/lib/Drupal/gmap/GmapPolylineToolbox.php','bfb5de6122cdd1ffafdfb6c9f14c6ce884e56d2b5a94d9e986e5b3bc1bd86c45'),('sites/all/modules/gmap/tests/gmap.test','3e7de4d0d1db5a5fe0c126860eecf2d96b60fc75a121b17d97643389c9564560'),('sites/all/modules/gmap/tests/inc/gmap_defaults.inc','68ace77723622c8256518778d17016ff39e88b686ef41fbb6bd51304a48cb9ac'),('sites/all/modules/gmap/tests/inc/gmap_polyutil.inc','b05ea6252d0b43b47f38a81ce0988b58a21169ebdd0f9fe8b3264d7153236ddc'),('sites/all/modules/gmap/tests/oopmigration.test','0d3ecf0d9674db3ea94653fcc9b0caf8f25dfcbb81e8ac2f218554353c47c68c'),('sites/all/modules/i18n/i18n.test','c52b5076bfd40ec8820a1f58dd9ea6f8d0098c771f65d740298143137d52866e'),('sites/all/modules/i18n/i18n_block/i18n_block.inc','73eb3b7ba1e14cd12b51c7a94dcd2e5d701d1cee5aaf24d907aa282dbc9212c1'),('sites/all/modules/i18n/i18n_block/i18n_block.test','b2608274dae333577514565b54b14f2ad8f84c3928fb0ea0ed848aa8db7375e6'),('sites/all/modules/i18n/i18n_field/i18n_field.inc','b8c9b97f9dbc510e0e3b478e8fe21e86278a19ac5b8ddcf2da15c37d14afcc03'),('sites/all/modules/i18n/i18n_field/i18n_field.test','933758375305519b97501c2479834620d258881088cdbabb4a493f4e0054d068'),('sites/all/modules/i18n/i18n_forum/i18n_forum.test','90b38124594fea145afac37b8343cee5a08b0db5e4f4adfcdd5cd5da9231f263'),('sites/all/modules/i18n/i18n_menu/i18n_menu.inc','932080f89ff854073641d565e46d82b8ecb9221640ce63192ff080527fa89f6e'),('sites/all/modules/i18n/i18n_menu/i18n_menu.test','c907c0cf68dec26504ede662d8afa254b3903d9a964e3099011d680de87acf0b'),('sites/all/modules/i18n/i18n_node/i18n_node.test','0009235387b1fb0a15ae46cea8e00539128f8a807c4e5f6c8abf27929ec28ff6'),('sites/all/modules/i18n/i18n_node/i18n_node.variable.inc','8f0a93b4d12a331373dac6025b9cb2cc1c8d41e8769db06d346fab011859a0e9'),('sites/all/modules/i18n/i18n_object.inc','13118a2525f7ef27040f1c4824fcd05258154fcba128bdb5802c0aac471293c8'),('sites/all/modules/i18n/i18n_path/i18n_path.inc','aab2fa18c2c8de78befa13c7c2532ba0c7646625a0e0681c433d24797fb2f9b5'),('sites/all/modules/i18n/i18n_path/i18n_path.test','d625f7e36e653d8d55cf68e4366a647f5efc20689d3905d6fc77657752ac7584'),('sites/all/modules/i18n/i18n_select/i18n_select.test','bfb4267be987278f079382f218433a191973f13f4f8c06077e719ca90fd744ed'),('sites/all/modules/i18n/i18n_string/i18n_string.admin.inc','ace6c13b12cbb5379c803def1f4c4ba073457aa7fe84d1f87a4a4693e28b216c'),('sites/all/modules/i18n/i18n_string/i18n_string.inc','35569a693d0bb7df4035acefddc026087676f5671f0957ec56bbdd63eadd1fbc'),('sites/all/modules/i18n/i18n_string/i18n_string.test','5127520c1b08f78d3314d6df948b6a59eeb5a889c74687a196bfa3244c33f6d8'),('sites/all/modules/i18n/i18n_sync/i18n_sync.install','12b053b45d9f2741afd2eccae8fc5e267c0319319976b08125a789d8df76abca'),('sites/all/modules/i18n/i18n_sync/i18n_sync.module','24aed1c28846be9333241c6c84ef18cea642ad13c220e043112f9dbd7ec081b2'),('sites/all/modules/i18n/i18n_sync/i18n_sync.node.inc','eeb55d7fca17c7b8396053a31d7a14e1a40643f87549648617c005115ef480c1'),('sites/all/modules/i18n/i18n_sync/i18n_sync.test','3da6de303a0d0443d312c44f72c6e346acb52688ffd1349b615640abb7a93ca5'),('sites/all/modules/i18n/i18n_taxonomy/i18n_taxonomy.admin.inc','1c0addd145245731d2ba8ec708c9557d389d5cece650ec4973d4a69261adb76e'),('sites/all/modules/i18n/i18n_taxonomy/i18n_taxonomy.inc','7bc643c59e25c8a00491bc70258821793bbcb232a70510eff071a02bb1e4343e'),('sites/all/modules/i18n/i18n_taxonomy/i18n_taxonomy.pages.inc','cd0cb343cbfe113a13583450618163b90e6bee8778f79b6dc76ce12dfd13a2f4'),('sites/all/modules/i18n/i18n_taxonomy/i18n_taxonomy.test','29fc8c69345e4d2b8eda25ae5d7775772ff1432452f07d51d66b727857ba3690'),('sites/all/modules/i18n/i18n_translation/i18n_translation.inc','e7e38105a080efcb1d947e7e6d2f1487127b166905b2722c516582827ddaf143'),('sites/all/modules/i18n/i18n_variable/i18n_variable.class.inc','8803cd58f313f348b08afb953c6ebcfc6ea2203e9751bee09326b882b346edc6'),('sites/all/modules/i18n/i18n_variable/i18n_variable.test','b511aa2d4275a7464cb0aef90e308568a08ff523c80d6a63567cbeba94918e01'),('sites/all/modules/l10n_update/l10n_update.parser.inc','4f1630414c2b23da065957a26403cc026f32034fd9550147b12ff7a85cd224d4'),('sites/all/modules/libraries/tests/LibrariesAdminWebTest.test','d50095f7e054e49ef02140ba6ec5edb7a81fc32b5baf29f1cd2b6522f1933fc1'),('sites/all/modules/libraries/tests/LibrariesLoadWebTest.test','4cfaf88ce29e72f8ecd52b02cc9f7bac2ea60a715530cd9ff4fea929dac161ee'),('sites/all/modules/libraries/tests/LibrariesUnitTest.test','08139d770447993484828d0a642b6a771314c74e392074e94c2b7dcebc10b093'),('sites/all/modules/libraries/tests/LibrariesWebTestBase.test','056dfdd67ac9d6a84ffbe0f507e165fd6f07a0c82c3c7efbc1874e870e85e83a'),('sites/all/modules/location/handlers/location_handler_argument_location_country.inc','f578011609004d9f95ec9f15811bcee117725e5b0660585aeb44ba42c0dba48e'),('sites/all/modules/location/handlers/location_handler_argument_location_province.inc','45a63c726e4c54ce64f167a01039109ea81804902066c0650ccbede3273b3826'),('sites/all/modules/location/handlers/location_handler_argument_location_proximity.inc','58c786828b263adde3e83d2857205a885a29c34df1386fb9535f5df141938d1b'),('sites/all/modules/location/handlers/location_handler_field_location_additional.inc','3131316a4a596b92f94ce02636fe2ab4d52a48df5ae921d822b8aee8a41a2085'),('sites/all/modules/location/handlers/location_handler_field_location_address.inc','ec3233c49e5799cd3f5b025c6423d1ddae747a17538ce1dcf6b5b06d54b23fc0'),('sites/all/modules/location/handlers/location_handler_field_location_country.inc','8b41adf8c407a28f7c3c577d23b2b686af7e81dcdc941b3f382a2ce83b0a3acc'),('sites/all/modules/location/handlers/location_handler_field_location_distance.inc','41ef322d938d1526a5cf2950581f160fd6e9485c4a3628114b3c7bfab8c72797'),('sites/all/modules/location/handlers/location_handler_field_location_province.inc','734a1bb5a8945956006c21386966885196929d8da8fc301297c02f2b18fe3756'),('sites/all/modules/location/handlers/location_handler_field_location_street.inc','04058e2222a25a8316f9bab92bc9279da4452c5263acf05b7f5eb313827a7b0b'),('sites/all/modules/location/handlers/location_handler_filter_location_country.inc','ce8c9c67173518f1633f486d2386723ea5e2340216235b468ad1348da20934bc'),('sites/all/modules/location/handlers/location_handler_filter_location_province.inc','1df7bfe95d3f211108f6737cf2dffc261ea66e24f691d2d263266a3ca7654a19'),('sites/all/modules/location/handlers/location_handler_sort_location_country.inc','dd39e691dc1c202fe94e48d1b4dbf18adab1aa12db710f36be4e98108ed60e02'),('sites/all/modules/location/handlers/location_handler_sort_location_distance.inc','39d9b50c734598171ed2d8cdcf48404d27518ac00b4d3e5e4011cf0540bbcc49'),('sites/all/modules/location/handlers/location_views_handler_field_coordinates.inc','1fda7261c7eac7387dd12ee8ec52888ce44482fd61f17c287834347e9bde853b'),('sites/all/modules/location/handlers/location_views_handler_field_latitude.inc','8d1b31f56a2610cdb1e901f300b0c139ed2fac82a64878a32febff087a8a5cc9'),('sites/all/modules/location/handlers/location_views_handler_field_longitude.inc','6ef6c1871efe59095312b8d8f61179496a144ce3aa740d91997abcc53383374f'),('sites/all/modules/location/handlers/location_views_handler_filter_proximity.inc','df6f4077eff42115a57822c2ce22cd91e9553f23a64c51ed09d2f5c947c530f3'),('sites/all/modules/location/location.admin.inc','c87faa4499160abe1a2548cbc5f6a67dc262770b81aafcfab471b91d9722e73c'),('sites/all/modules/location/location.georss.inc','8d7a9646f7aca2839d1de3dd06e27c291ae49fff0dd092c456d9c8799d824929'),('sites/all/modules/location/location.inc','e0c2d5f584eddb75e1cd58029d8be13a614e87f5d01c4eb2fc153f7e3e0701b6'),('sites/all/modules/location/location.migrate.inc','040fc2086f799e0ef3a4afc6936d9663130686f5309049c29efd57dd47d91bef'),('sites/all/modules/location/location.token.inc','c1a89953256052d641479e6366f859fddb9046135ae57c3df6c0453fa071676b'),('sites/all/modules/location/location.views.inc','2c7fdcd6c61b17aadf65643350c5ca6023635805d765feecb7d7bf19e4a611bd'),('sites/all/modules/location/location.views_default.inc','10f1e9c8e2eba4e0608c1673f872e2221b62fe569e0f802e5281fba0986980b4'),('sites/all/modules/location/plugins/contexts/location.inc','ce30c40ba99c94a0d5a019de892e559647d10314ca3c9a69b1ea550f22718634'),('sites/all/modules/location/plugins/relationships/location_from_node.inc','fa05154e7db5c7126c5a5b07f17a7b79cff089e844d2f7c0070763c076be92b9'),('sites/all/modules/location/tests/cow.test','db2be927639827a370331d7da1958322ccf2a8c87c6ab8fefc5e46a49cc497a2'),('sites/all/modules/location/tests/earth.test','61e09a9e00024e7c94892a929945ce0d87fcc131bd8ece4f61f62d92b41345fd'),('sites/all/modules/location/tests/google_geocoder.test','895a9d7e3e21116f1c4cffff992fd4388085b19c0dabb24885cf0c26c569c792'),('sites/all/modules/location/tests/location_cck.test','f0dbfa6743f98ffc1e112f544f770168f01f43542b7823d7c4b0ebba5d63e55c'),('sites/all/modules/location/tests/location_cck2.test','fe99d5ebffa270e883237ef36b58ee56cbdcaaf124efa978cbb2c3aa208e723b'),('sites/all/modules/location/tests/location_testcase.test','fdd67f59df97b6bc875f8f3a288b5ab2632e6417bf0b30603f0783f1d547f0fd'),('sites/all/modules/photos/inc/views/handlers/photos_handler_field_photos_album_cover.inc','8df7602cdf77b2df317ab154b3bf3d7943d530d2db6d27a1b4234209733d1235'),('sites/all/modules/photos/inc/views/handlers/photos_handler_field_photos_image.inc','8bfb67064c8d4e93b669edddd0d64087e0bac5860871fdeeae61261743cb2225'),('sites/all/modules/title/tests/title.test','d8d4884c1f6269a3d3c4a413efe7eb356b6595583e424f85ecb161516da62125'),('sites/all/modules/title/title.module','ad172436fe4a35461650f63cdb1a250e77d658f47df3a964a95f0967e9f6c09c'),('sites/all/modules/title/views/views_handler_title_field.inc','0d3887f86cac0993973710229695f755694e334928355b7fd0b0f98a096be3c6'),('sites/all/modules/variable/includes/forum.variable.inc','84ab5992d648c704b2ae6d680cf8e02d3150cccd8939170f7e8fd82ac054b516'),('sites/all/modules/variable/includes/locale.variable.inc','27173d9c9e526a8ba88c5f48bf516aaac59ad932b64ef654621bc11f1ccd9f7a'),('sites/all/modules/variable/includes/menu.variable.inc','bc776840ee32060a9fda616ca154d3fd315461fbe07ce822d7969b79fccd8160'),('sites/all/modules/variable/includes/node.variable.inc','596064101f8fbd3affdb61ca1240354ce0b51778601a8b02c021a1150bbf4e06'),('sites/all/modules/variable/includes/system.variable.inc','909bae0f1e3a4d85c32c385a92a58c559576fb60fd13a0e4f71127eee27afd3e'),('sites/all/modules/variable/includes/taxonomy.variable.inc','7792f07f8ea088cd8c3350e16f4cacef262c319c2e605dd911f17999a872f09e'),('sites/all/modules/variable/includes/translation.variable.inc','3e4e82f779986bfb32987d6b27bdab9f907ba5e18841847f138a20c42cf725d4'),('sites/all/modules/variable/includes/user.variable.inc','b80094c1db0037f396f197bdd70c19e87afe76f4378c5c6089c4199af3bcb03a'),('sites/all/modules/variable/variable.test','a6614814c24aee5ae1d2f2f8c23c08138466c41a82e57ee670e070d7cdd6e4b2'),('sites/all/modules/variable/variable_realm/variable_realm.class.inc','ba523237a0e0116b3fdb3c86390fd2adc51b1cc50bab25d42995cd40a5b582bf'),('sites/all/modules/variable/variable_realm/variable_realm_union.class.inc','e9597edd9bac66e6b7f078cee37c3ced317b2768821cdac77b8d4c2f68b2adcc'),('sites/all/modules/variable/variable_store/variable_store.class.inc','16870479d9464f0453d573e1384c808bae8319944fdf466e67ebdb53f6f8f54c'),('sites/all/modules/variable/variable_store/variable_store.test','1546243a6be757de0fd7f9fe1428152fb0e53a91453c53c72aebb06f6cef4311'),('sites/all/modules/views/handlers/views_handler_area.inc','16085f6aff78a35dfb536909e82e0ebba99f382d4abfeea74f86dfbbe576938b'),('sites/all/modules/views/handlers/views_handler_area_messages.inc','a99ce6f396662fd511f0a5b4dd44289940c61eb19419fce952e8cd1d92fb540a'),('sites/all/modules/views/handlers/views_handler_area_result.inc','080d8c10717aff0851cdca627651e2f0f94f7f8cdea33c0e617198387d09956f'),('sites/all/modules/views/handlers/views_handler_area_text.inc','9b249c72a27c425e554ac5fc4f5bfe5030468e941197a5f2a728251e1a1709ba'),('sites/all/modules/views/handlers/views_handler_area_text_custom.inc','b834a5b12dcb0437734337d50d81af185e7e0149fbad853addec5d2c6992c8fd'),('sites/all/modules/views/handlers/views_handler_area_view.inc','62faaa2aa80df6c136814acde663a7055a5c17bc6e2975ff566464a8fb90a38e'),('sites/all/modules/views/handlers/views_handler_argument.inc','d6479adda0e01d51e6913097db889c3527e6194ad1f9c566f367d0cb9afc6945'),('sites/all/modules/views/handlers/views_handler_argument_date.inc','e5cc90de6a536dfe2574306392d0b34674a9430fa1c8beac50c2b30685a8f40f'),('sites/all/modules/views/handlers/views_handler_argument_formula.inc','2090ca11e6328bb3b5c149a18027519bbfcbfdffed66d4c8c1e69316593199b3'),('sites/all/modules/views/handlers/views_handler_argument_group_by_numeric.inc','aa65e69556046558f52929009b129ea74ad4f4dd3c79dc517317082be298cad6'),('sites/all/modules/views/handlers/views_handler_argument_many_to_one.inc','e3b119709ebdae549a45a33751413d591fd29b886091257cb9f76afc87153612'),('sites/all/modules/views/handlers/views_handler_argument_null.inc','ade358ad05e2e269c02bd7a2b8dae3f630c1e2909379d6f87d3c951ac983e200'),('sites/all/modules/views/handlers/views_handler_argument_numeric.inc','366aa47d02f8c1f69cb9303bf56283601c07c7272a84ad4e6fe35b1bad49c8f3'),('sites/all/modules/views/handlers/views_handler_argument_string.inc','f4c5914a0f4edc01de7c28cbfcf5730b3ccb8cf480e273230450348a02b210ac'),('sites/all/modules/views/handlers/views_handler_field.inc','1997990be2fe0d97bb66be22b186b79670f8b19d88abda8e6ee7a71b2c9191fc'),('sites/all/modules/views/handlers/views_handler_field_boolean.inc','c4b6fe66a0af7f21db4597f5f697c8a2d5ed5ea413471bb34c31a776b1250e6a'),('sites/all/modules/views/handlers/views_handler_field_contextual_links.inc','58adabc6212039a33d232130a07622ba281385ceb8e3b33ad688cd4aefc6754e'),('sites/all/modules/views/handlers/views_handler_field_counter.inc','701ade124c2e6c08a459ef5445ceffd3dc16348c752db8eba86d9182ebc93658'),('sites/all/modules/views/handlers/views_handler_field_ctools_dropdown.inc','77e35b9f6e95f16c41de1d7a1abc608e48b77aee36ca05874d3b69046e04e5a4'),('sites/all/modules/views/handlers/views_handler_field_custom.inc','d3c2b1df06ec7f74f52e1188c9cd26eef23b09928f2d0355bddb2d14a985d221'),('sites/all/modules/views/handlers/views_handler_field_date.inc','2c56b14427b8974b3b983aef75b18d7a08e344a7ce7bb2b8bc0a11906349137f'),('sites/all/modules/views/handlers/views_handler_field_entity.inc','736eef3a2680483f1b0f2de7c0b90c302abca63d73baef62d0fb482f0ffbb3a3'),('sites/all/modules/views/handlers/views_handler_field_links.inc','acf1a7c0842fee0caeb96edec0c8241eb4860d5ba3c875425a4a5150a02b9a1e'),('sites/all/modules/views/handlers/views_handler_field_machine_name.inc','edbe2e4a2911d4ecdbf1c58f6645dfddf28f4434be809ba64e01fe9ea94783d5'),('sites/all/modules/views/handlers/views_handler_field_markup.inc','94a925ba9dcc866929cbb30b895ae75aacae60688ac0e38a1a84cc90ebbd51e6'),('sites/all/modules/views/handlers/views_handler_field_math.inc','5c9087cb87791ef94dd1830da08585efba43b28a09f9227e36a9c6e764ddc8f4'),('sites/all/modules/views/handlers/views_handler_field_numeric.inc','6a612a0cbe13830d0665b4908ac65ca82a400d5934ef65bde7135d89a9ff86cc'),('sites/all/modules/views/handlers/views_handler_field_prerender_list.inc','4332691d10f6d0ed91f3b4279499f12737314555fdd6c87a3556d998528545c9'),('sites/all/modules/views/handlers/views_handler_field_serialized.inc','870f8d7fa417a07f0c827d2c6719a795f67a02938fd9e07feadb11915e7e0f79'),('sites/all/modules/views/handlers/views_handler_field_time_interval.inc','4b6f36465710740d6e266f1cb731b3c0c72ba7455ee0fecee80a847131b3e7de'),('sites/all/modules/views/handlers/views_handler_field_url.inc','6633a403da44af6e82188fe1416bd06a6cb1f69e0546f162296d2c2e79af255b'),('sites/all/modules/views/handlers/views_handler_filter.inc','3c957ec9c30027a3a9f18cff3f0274d5a303241e8bbb90e0027cbcd8ef2fc1df'),('sites/all/modules/views/handlers/views_handler_filter_boolean_operator.inc','e9089bb8135313d5650c6095d91fb0682f0a0509108b567ccb13f352bab14db0'),('sites/all/modules/views/handlers/views_handler_filter_boolean_operator_string.inc','fd2bd503b46361ada4e6b4ada3451b322f646c68de5591e13b194c733ad683f4'),('sites/all/modules/views/handlers/views_handler_filter_combine.inc','35ac9e7d2b062bb0f06f41ff7ae22446c54f776856a6abdf1cfaa60cec022091'),('sites/all/modules/views/handlers/views_handler_filter_date.inc','a220dbf4ffebb74d113d5fafbd167d52c107af1244e545902d2212d4663f817a'),('sites/all/modules/views/handlers/views_handler_filter_entity_bundle.inc','c7e82ca67ac0e66740ce247829179158462dc4bf1d119407009460db1cca973e'),('sites/all/modules/views/handlers/views_handler_filter_equality.inc','8188497af26a099cdb0d7ca3feda14ce288eebe1d02f87348f30da1ef99993e2'),('sites/all/modules/views/handlers/views_handler_filter_fields_compare.inc','9639036d337eed13379a55ecbac33d1b059c2f38ce20ade614d6819cd0e29a26'),('sites/all/modules/views/handlers/views_handler_filter_group_by_numeric.inc','1258029768dbdcfcb5cfffcac09b22789fe36e91618a4a06e1e4a4b6c6c19d41'),('sites/all/modules/views/handlers/views_handler_filter_in_operator.inc','d54e35c8800930b149a2e2796f0990c079be0ea8359b03bc290ecffc096b14ed'),('sites/all/modules/views/handlers/views_handler_filter_many_to_one.inc','e8cb18060c952bf11148c2247ec14201fd499ac005c092e7d96734d83ac9895a'),('sites/all/modules/views/handlers/views_handler_filter_numeric.inc','4a889be08348f817f92d38a7e5eaf2d413c4bc7be6e4211f8d11efcc89b0eed3'),('sites/all/modules/views/handlers/views_handler_filter_string.inc','fd5f2495311e304863c0c438efebb438d742701340768636c4c338442ca7b3b5'),('sites/all/modules/views/handlers/views_handler_relationship.inc','56f8b9a3085aee56ffedc75f76a9334c57796f2cd3fe9706506683f46b85a0e4'),('sites/all/modules/views/handlers/views_handler_relationship_groupwise_max.inc','cee644bef90c8d4412c01a16f8189b6a5e912d36fcaf181c2cc1198012fd7bbb'),('sites/all/modules/views/handlers/views_handler_sort.inc','36391f1498cce13b2f37343da53e61ec437f6f1afd0fa3f1cc4c0627ca42e2d3'),('sites/all/modules/views/handlers/views_handler_sort_date.inc','9949279b1d2f714afa51fba865749a40546ef434f9ba5e68bf8fe09ed056fed4'),('sites/all/modules/views/handlers/views_handler_sort_group_by_numeric.inc','ed4196d099a2c5112b46ce1cd256edf71793e130a5ed49631fff2a365fc3291b'),('sites/all/modules/views/handlers/views_handler_sort_menu_hierarchy.inc','60628a647e83f991b2fb42506b1c52fc8934cb19278fefb2ffe980065d027136'),('sites/all/modules/views/handlers/views_handler_sort_random.inc','672a9473a35bc811d8bb0365dedfff988671de9c00e0e703819e9adaa70db4ba'),('sites/all/modules/views/includes/base.inc','1eb8aea63c9d50a9a13af71ed49ac76951bd65713c4aba9adc6ce43e402a97e6'),('sites/all/modules/views/includes/handlers.inc','5fb978fd672e72b8bb78c1fa835699a2412b25f0f713690e9e402af16e0dea41'),('sites/all/modules/views/includes/plugins.inc','b41a59b67e719abc1df93d022a37c0cf701059d1cf566fab6edee6147bdf0369'),('sites/all/modules/views/includes/view.inc','fbe0ec7147b0b9650977ff412b662a83ea3c638f75f4c3b6c87946bd30173a7d'),('sites/all/modules/views/modules/aggregator/views_handler_argument_aggregator_category_cid.inc','e67a696600c3c9a37f8c732b89813500f207eaad32766f2e804c02063cdfb17c'),('sites/all/modules/views/modules/aggregator/views_handler_argument_aggregator_fid.inc','51a2520546cac7d4c56a80f2b61dd41a878a4a75037f0739e214ff8155a0fef1'),('sites/all/modules/views/modules/aggregator/views_handler_argument_aggregator_iid.inc','c3045fdf47ae7639275090768d7d9a2358cd66e9de600e2cfc7ae52b5cd64c05'),('sites/all/modules/views/modules/aggregator/views_handler_field_aggregator_category.inc','9af125c4285d770572757e8ad114048e4243dd6710bcd992c3b8365aaf3d5cbb'),('sites/all/modules/views/modules/aggregator/views_handler_field_aggregator_title_link.inc','717fe70dc6f4a00a808d3ea478fd146c108be26e0c5773f4574b073bce0ef3b3'),('sites/all/modules/views/modules/aggregator/views_handler_field_aggregator_xss.inc','83ba99ebdc04ed18e266a41ed97c874c81002f13059815e353976668d68e6de3'),('sites/all/modules/views/modules/aggregator/views_handler_filter_aggregator_category_cid.inc','3d819f5de170c4d4f2e8d3348be5645f27059854169725375fbc5e4148e772e3'),('sites/all/modules/views/modules/aggregator/views_plugin_row_aggregator_rss.inc','c798315620e0f00780cca7c06d57d0058e3cca3736ce80aab85a2d3a6727c8a0'),('sites/all/modules/views/modules/book/views_plugin_argument_default_book_root.inc','123eda93e4ad9da88a6dc3ffd771772ea71abdf1d749c8f2d17c48d656fb0d5f'),('sites/all/modules/views/modules/comment/views_handler_argument_comment_user_uid.inc','9955ba779f626be3dbc18a5d5c3b7e0d4638ea32ce606fbc9144044965b491a8'),('sites/all/modules/views/modules/comment/views_handler_field_comment.inc','beb5e6eb481aa5adbc347ed7ef31572fcd63a892aa83266b9000f9569508f7ee'),('sites/all/modules/views/modules/comment/views_handler_field_comment_depth.inc','d316270160be29bac6e50d990c34d51811f9520359458331fced5ea6535a920f'),('sites/all/modules/views/modules/comment/views_handler_field_comment_link.inc','77f3fdaef1bb183bc6f51f9bcdcff7f5c267f02d731c6e774d7964048674f635'),('sites/all/modules/views/modules/comment/views_handler_field_comment_link_approve.inc','d56d49c6d2994ee39520f58f3154392caccb723715ddd03238a532fe241bca5b'),('sites/all/modules/views/modules/comment/views_handler_field_comment_link_delete.inc','1ded38e969e9ab4ed97ec1ae3d42ebce21d3be27468a404a15419a6263b5a125'),('sites/all/modules/views/modules/comment/views_handler_field_comment_link_edit.inc','4ea1157e43d2c04d15250aa2247223a5ebdb3cde5cd751ee8d9976ce09701fd5'),('sites/all/modules/views/modules/comment/views_handler_field_comment_link_reply.inc','deade5bba70380e3503cca084a38a2f8fdf3e6efc88b5fb487a09736185dd4e3'),('sites/all/modules/views/modules/comment/views_handler_field_comment_node_link.inc','fc093dd213dd5a9b66830b51083e8c94af1a4cf66485d242199284b20e84bf84'),('sites/all/modules/views/modules/comment/views_handler_field_comment_username.inc','dce17ff9703a545bb55f10aa51e702ab318ba6652a308bd4bbf7ab509816fbee'),('sites/all/modules/views/modules/comment/views_handler_field_last_comment_timestamp.inc','3865475732389244162027b2a1dd5c847b97f8007bd08bb597ede0a2abc07a33'),('sites/all/modules/views/modules/comment/views_handler_field_ncs_last_comment_name.inc','227bf7ff4ba7464310b75196da3f85e3eb9a8da89f667b6153d5023d93034105'),('sites/all/modules/views/modules/comment/views_handler_field_ncs_last_updated.inc','3a75c18196f060e268ed4a764039f63cfde4d45d157673b19171a6eed5fa1c79'),('sites/all/modules/views/modules/comment/views_handler_field_node_comment.inc','a3e9f9cd9e251e866ec1fc6e6072fe90e83ff4b882a6aa2796ec8721129dc2cd'),('sites/all/modules/views/modules/comment/views_handler_field_node_new_comments.inc','089a6649c4039ec3a855798fa131c01a5c8930928e47493f3c3073fb9ffc040d'),('sites/all/modules/views/modules/comment/views_handler_filter_comment_user_uid.inc','fedb023952d2b1b418848293f45f4f33adf9c885d279655ac0f6761d2dca11d5'),('sites/all/modules/views/modules/comment/views_handler_filter_ncs_last_updated.inc','40f9157a53807537a7bd8d5989e6abafbbc3b9b296958207e97944165f9ef639'),('sites/all/modules/views/modules/comment/views_handler_filter_node_comment.inc','222e790fae64c087c755949bdd98b2f70851c20c22ba7a0a6eebeca1ccbff8ed'),('sites/all/modules/views/modules/comment/views_handler_sort_comment_thread.inc','91fb14f3058c409bef347a0a76c48fe9f4715fcfa49b35a19899e74dfb4e3358'),('sites/all/modules/views/modules/comment/views_handler_sort_ncs_last_comment_name.inc','1b988db986ba10fc1052297d6bf47ffed64272032a6aedadb742a7737a8a04bd'),('sites/all/modules/views/modules/comment/views_handler_sort_ncs_last_updated.inc','d7ce11c55dbeef236965d2708cf4ff3f6fd751835b0e63538031600c8dd6b48f'),('sites/all/modules/views/modules/comment/views_plugin_row_comment_rss.inc','661a484de92222f270d2894ad9b5372165e4a8beee815aa52628e656757f331e'),('sites/all/modules/views/modules/comment/views_plugin_row_comment_view.inc','33a763b97f3b8998011e01e967e1a92d988215af365b8db0ebd4bdbc9a081870'),('sites/all/modules/views/modules/contact/views_handler_field_contact_link.inc','94aae2c3ca97edaae19cf8291b9255a9f50e28507307ec3d6ee3b84729ece1ba'),('sites/all/modules/views/modules/field/views_handler_argument_field_list.inc','c2782930964ee2e312ca238357b7ee3e0769372cc1216c604b2633677729c58e'),('sites/all/modules/views/modules/field/views_handler_argument_field_list_string.inc','1e3d03b1338c2ea5c7550e0ae4966dcb8e163ce2b3538d8654c0c4d3620f0898'),('sites/all/modules/views/modules/field/views_handler_field_field.inc','7a9a9f4fd6e5f8dc71275b0dc67b8ac91f4a86d9df8e5edc72c5067b0cc5e489'),('sites/all/modules/views/modules/field/views_handler_filter_field_list.inc','77fcfe98e5fb1638c879a3fb2dc6769e49a79cf348e26e843566175b01358730'),('sites/all/modules/views/modules/field/views_handler_filter_field_list_boolean.inc','028a78d1bdb1b5495dbb1b484220a9d8e31ca7b69f20f119a35fb6d58c7a0160'),('sites/all/modules/views/modules/field/views_handler_relationship_entity_reverse.inc','b14ede644a0f64ad2eab73d8c09dca5859412fedbd97ee0580d1d6fcdecdc819'),('sites/all/modules/views/modules/filter/views_handler_field_filter_format_name.inc','2a0a6d07ec0352260fc3e94c6f08e15afb0888dcc05d4184ba49de01be8b9fea'),('sites/all/modules/views/modules/locale/views_handler_argument_locale_group.inc','754ebf9a38ae05593fe74be7e4f0a887c12ed710da340c3066686f3f5740c256'),('sites/all/modules/views/modules/locale/views_handler_argument_locale_language.inc','ee06594ed7558b4e7369d5d560f3c9f1b8db4442e410e81bb282b45c4b5238ba'),('sites/all/modules/views/modules/locale/views_handler_field_locale_group.inc','fc6a3c57d9abffbe1cfb859c6adfdfed5f2c63cb645df1ec732f84ee2e8f4f4c'),('sites/all/modules/views/modules/locale/views_handler_field_locale_language.inc','2e18ff746d9a27d714157ede3d184688fcc0c31690dfef317b6b0de5a183eae1'),('sites/all/modules/views/modules/locale/views_handler_field_locale_link_edit.inc','63dc823990a69622585a21212f2e162e2ce018a9c1348c148a3e5215d005e023'),('sites/all/modules/views/modules/locale/views_handler_field_node_language.inc','76e09d9b0f4c345425a52f9def5aae5e029e6ac9dd079a242dfa9aa98f6cf010'),('sites/all/modules/views/modules/locale/views_handler_filter_locale_group.inc','2c9da2c417de6cb48a13b4bb52dd9d9ec0a4f257ee4e26b7b99ca46b10334ceb'),('sites/all/modules/views/modules/locale/views_handler_filter_locale_language.inc','59749963fd5fbebff0a6e09b5553b0ae639bf2f053da7aab325d0662093f3b04'),('sites/all/modules/views/modules/locale/views_handler_filter_locale_version.inc','266f380b0488af0ebaec0c9b0f8168402bdc53dfdd29f6a81924c88c04829287'),('sites/all/modules/views/modules/locale/views_handler_filter_node_language.inc','70dd129038f85a61f1a4bb24ce4286520154546f5696a135de8f0f2caf39ac15'),('sites/all/modules/views/modules/locale/views_handler_sort_node_language.inc','7f24790cf76cf979e9314d12a269b39f2b10d2787b69dc8a3a9b51d0b3ed4ae8'),('sites/all/modules/views/modules/node/views_handler_argument_dates_various.inc','6308402609dbc7f92594e4e5d4f4f0cb5ba71e43c6f247cb71af111c53db83d6'),('sites/all/modules/views/modules/node/views_handler_argument_node_language.inc','85d5ec6d2cb7fe84ba59d27054f170207ee1b765366de7324d2f8b58feaae710'),('sites/all/modules/views/modules/node/views_handler_argument_node_nid.inc','1c3517c618dc4704d48702250075384b9bf3fac50d24d5eed832a17f5dfa2da3'),('sites/all/modules/views/modules/node/views_handler_argument_node_type.inc','a79d743f7e0300feed39d7e9f1cb46bfe470c4639abc47f0110190d413e1dbc0'),('sites/all/modules/views/modules/node/views_handler_argument_node_uid_revision.inc','04e049eb41769c91b3bbff1be5971bdba0b56d4c9e81f7b564c2ec0cc8c8227f'),('sites/all/modules/views/modules/node/views_handler_argument_node_vid.inc','2bb53e69fcf14294053c5610fe40408f6adb5b25bf6f0c6d66c0848cb90615bb'),('sites/all/modules/views/modules/node/views_handler_field_history_user_timestamp.inc','c9bae50db9659597b7e8c1533ac2606919517811ace4b7dc786b7f48a264020d'),('sites/all/modules/views/modules/node/views_handler_field_node.inc','e13196a84647ec0bd6a4dcb92cf5d6e340bab0e9aeadabe723567e8c7abf21af'),('sites/all/modules/views/modules/node/views_handler_field_node_link.inc','450c511b8fada8689fbecd1f92fd208c4add47699e97438bffdd682415e1fe00'),('sites/all/modules/views/modules/node/views_handler_field_node_link_delete.inc','ab50268cfb67a3deafa21a7f5acb5c908d378efe6dbfd6e1537cde1487fb0a09'),('sites/all/modules/views/modules/node/views_handler_field_node_link_edit.inc','91aebee3065d3880773b81d8d3f1d062804162454265f8be12bea3681d0791b0'),('sites/all/modules/views/modules/node/views_handler_field_node_path.inc','fe9bd2b94c7ac927c78aa559783e12bea69abf2f9bc1ad8bbd250826bb295597'),('sites/all/modules/views/modules/node/views_handler_field_node_revision.inc','d3c7c25c86da0615304764c09e76b2d3f94da06975add14e539964a53d0afab8'),('sites/all/modules/views/modules/node/views_handler_field_node_revision_link.inc','ea7b46f10f54fd565bdc6b6a78c581de9889b20afa1d2773bbb51f9dc9ce4da5'),('sites/all/modules/views/modules/node/views_handler_field_node_revision_link_delete.inc','329a3063a79278c72fbc7a3dd87d9a309a62f4dac039785ff3ac43000b48155f'),('sites/all/modules/views/modules/node/views_handler_field_node_revision_link_revert.inc','939815ed25649dc4646e26042868cc3eeabf618ba750e84900c74017d181a675'),('sites/all/modules/views/modules/node/views_handler_field_node_type.inc','0296f415723508d2c68d314394055d5ab14df0958bc6cb0158eba2c395494f07'),('sites/all/modules/views/modules/node/views_handler_field_node_version_count.inc','42ed9bbe09e407f5452e8e8523cb8719c46a41d6a60eca449b0182e7dc9e9298'),('sites/all/modules/views/modules/node/views_handler_filter_history_user_timestamp.inc','83028bbcc531cd39d5368e4b2ec68c5569fb1d12f35712bf14c7cb3da4aa7e91'),('sites/all/modules/views/modules/node/views_handler_filter_node_access.inc','3f6a4da11b627de054c2e14b4869a521352d501d1be18a05f1c67db6ae73d18b'),('sites/all/modules/views/modules/node/views_handler_filter_node_status.inc','bc823f0c6771f62bb67e1ff79aa4542ebf9bfcee6f5b97d65a7a3b6d2df1ade3'),('sites/all/modules/views/modules/node/views_handler_filter_node_type.inc','a49a3da3983e79c4aa9ff237f1db5fd808117e939d7c619d62b63f95ad333582'),('sites/all/modules/views/modules/node/views_handler_filter_node_uid_revision.inc','40c2c6b4437e1446cfa41ac45fe29ebeeaa2a37796582c068dc37c6c35a1c88c'),('sites/all/modules/views/modules/node/views_handler_filter_node_version_count.inc','62d2b9095bced391c270d5293d239dba135955dc9157db747d01dca64c45bc56'),('sites/all/modules/views/modules/node/views_handler_sort_node_version_count.inc','b3b3012e04c2d90f7ae810f41748eea58062f291794a840d5ca951dadf22906b'),('sites/all/modules/views/modules/node/views_plugin_argument_default_node.inc','acd3fd318bcfcee6eac4381b260a539d6d79c63bc0f350932565b0dbe7e05961'),('sites/all/modules/views/modules/node/views_plugin_argument_validate_node.inc','2c8100dcf21a8d1f24a5e8621f9bbc6d7bfdd3c41b7a191d904f8c854df6d02b'),('sites/all/modules/views/modules/node/views_plugin_row_node_rss.inc','e9f5f676c0be810ccd6aca1f3c28f8ddcbf8af4b19a9bf6b049e6056b15461bc'),('sites/all/modules/views/modules/node/views_plugin_row_node_view.inc','2b64a6646cb8cfcbc0448133802d6d5effae2afc53d312ed783a87d2125f890e'),('sites/all/modules/views/modules/profile/views_handler_field_profile_date.inc','f1f23952836ebc20b7507250adc6ad0544e070a5b9e373afe3825b68c5caacb7'),('sites/all/modules/views/modules/profile/views_handler_field_profile_list.inc','f938abe03f7889fe51db5904c7ca40d0675cf3f6d452684dde3eacaef5aa6db6'),('sites/all/modules/views/modules/profile/views_handler_filter_profile_selection.inc','ca90aa667fcf313dd5676556b8fda60c587063cab3e9a42695199886f978239c'),('sites/all/modules/views/modules/search/views_handler_argument_search.inc','8bca051703deede7e59cc3da73c68dcc77952899f76c3308e4853111f744ae5c'),('sites/all/modules/views/modules/search/views_handler_field_search_score.inc','b70e66940c7ddf22a9f51475edb99124faf3a1a9fe94cc9131ad5118e49b80f3'),('sites/all/modules/views/modules/search/views_handler_filter_search.inc','940712aa47b2eb502a7bc8b255250bb7e915e8f89875798f4a0d41013b131e3f'),('sites/all/modules/views/modules/search/views_handler_sort_search_score.inc','a9736feee51cb2f54bc5af8a4120aa6027bf6b44d394dc4ac308999f138fe842'),('sites/all/modules/views/modules/search/views_plugin_row_search_view.inc','c8d6a5b3f0b2c795b6e7efe9de0c7598ff709aec09455de22b3b26bc366c65a6'),('sites/all/modules/views/modules/statistics/views_handler_field_accesslog_path.inc','e514b0ac78bbce36f6fa94bc3d7f39e3506de9bf8f5ffc149efd341f940b246c'),('sites/all/modules/views/modules/statistics/views_handler_field_node_counter_timestamp.inc','9493e13b361038b41959974e8c9eb9dec7970024d1dc8754c8a5f1044567d7f2'),('sites/all/modules/views/modules/statistics/views_handler_field_statistics_numeric.inc','e29fc2f1fe0e5e87cc594ec21dd81a778b7eac3e99518aad1820a3cb0c68aa86'),('sites/all/modules/views/modules/system/views_handler_argument_file_fid.inc','2e836d50b8a5fffa2e30cb35a2361aae8aef2f2138e90d12f9de20d74c77b622'),('sites/all/modules/views/modules/system/views_handler_field_file.inc','b8a83503931abf9d0804b865f28cc9725520afaefde2a36ee8369670098013b3'),('sites/all/modules/views/modules/system/views_handler_field_file_extension.inc','83f2f4de5bcad4c04c9f338c6afb1cd321f1325cd6908b65bf246626b62cacf4'),('sites/all/modules/views/modules/system/views_handler_field_file_filemime.inc','8a83f83bd135c71fe2b763f31aaebe6df392a46eee88e8251c15a1be7a96c1da'),('sites/all/modules/views/modules/system/views_handler_field_file_status.inc','e61cefaeb45471b0d95d756ac9bba45fe8dca0fb10ac9bd82fd9a32385175118'),('sites/all/modules/views/modules/system/views_handler_field_file_uri.inc','8edae85b8a83b5439962e73cae1cf1834b77d9c4a157035e2c1b3b265a9e75a4'),('sites/all/modules/views/modules/system/views_handler_filter_file_status.inc','630e79a1e4186e955fea776b0d6ce4316d30daf0c1b9594a654cd875f8139e17'),('sites/all/modules/views/modules/system/views_handler_filter_system_type.inc','024f4708e1ad9e626c56dd288590d39ac2b4be316cf265099a9fe7ad0169a97c'),('sites/all/modules/views/modules/taxonomy/views_handler_argument_taxonomy.inc','64d79041c19de4a04675db80cbdeb195bd4b7348f05eadc658fec9103d452d47'),('sites/all/modules/views/modules/taxonomy/views_handler_argument_term_node_tid.inc','fe5278a0ca737d4f207fa956f2adf8f875936903af0965f61d1b436ca4546fb4'),('sites/all/modules/views/modules/taxonomy/views_handler_argument_term_node_tid_depth.inc','46f0b0c72c912b854e10686297d52183e186e4da16301c047ab2b9966950e2fa'),('sites/all/modules/views/modules/taxonomy/views_handler_argument_term_node_tid_depth_join.inc','bd8af035a5e1849c9bccf519c82df814b5e0905441222559a4db2c685a962099'),('sites/all/modules/views/modules/taxonomy/views_handler_argument_term_node_tid_depth_modifier.inc','a4ae0d39e66a051c3ee6b5e490887c3a12679854e98b620e061bd6e06849db01'),('sites/all/modules/views/modules/taxonomy/views_handler_argument_vocabulary_machine_name.inc','53bd1e4831645069b13f9a9646ae9b74c09e07b997ce10a552c32138d685969d'),('sites/all/modules/views/modules/taxonomy/views_handler_argument_vocabulary_vid.inc','5187c6e68cbc69b6f9a01513f3a8de5384a9b8795bf68415decdcc08995caf3c'),('sites/all/modules/views/modules/taxonomy/views_handler_field_taxonomy.inc','8c57d2bd1f41bcaddb5eefe70dfd6ec98b3f22cf8f37d860f7f6e67c3592f1dc'),('sites/all/modules/views/modules/taxonomy/views_handler_field_term_link_edit.inc','a68d87f140f4a1e21b098597da8773b740a0a646609c911e10bd1214ef2c490c'),('sites/all/modules/views/modules/taxonomy/views_handler_field_term_node_tid.inc','82608d9d6109d1446f70caf5ad176cbdfcef283a1e5fa2d5565c0572f3a9613d'),('sites/all/modules/views/modules/taxonomy/views_handler_filter_term_node_tid.inc','b4838c5383cf5b557164fc177fa0fd396d18fabed859c7b18aa2c706e8857ce1'),('sites/all/modules/views/modules/taxonomy/views_handler_filter_term_node_tid_depth.inc','1fc479f4666696940f59cf330cfe22298d77e6587d16b281948ad05a2b1840f1'),('sites/all/modules/views/modules/taxonomy/views_handler_filter_term_node_tid_depth_join.inc','52821fd9d53a62ba65e24cb050edc3a7da78a7192e17e2202a8ce996a715dba0'),('sites/all/modules/views/modules/taxonomy/views_handler_filter_vocabulary_machine_name.inc','b8851e7c67a22e8c472417a97a528db0085b9cff614ac43edaf720378d643c8e'),('sites/all/modules/views/modules/taxonomy/views_handler_filter_vocabulary_vid.inc','f15850128ed9a2c4b7b5964e31faf10570a0fa3670cd72afc09589cc0c432995'),('sites/all/modules/views/modules/taxonomy/views_handler_relationship_node_term_data.inc','9dff3dd77766232a4c83cfc92197424d4d2839052f7b91326dda39a81d484f34'),('sites/all/modules/views/modules/taxonomy/views_plugin_argument_default_taxonomy_tid.inc','3e6610928bbadd83e10f67ec4d508e2f3f848cc9d7a672c122038ccd3d73f315'),('sites/all/modules/views/modules/taxonomy/views_plugin_argument_validate_taxonomy_term.inc','940966862c50d42b32796ee4a25299f42c3005e9f53641396ed40b26f76e7cd3'),('sites/all/modules/views/modules/tracker/views_handler_argument_tracker_comment_user_uid.inc','e2040743a77ba6ffad50b1601df62f6649747496f180a6e481f59cd320fd81ed'),('sites/all/modules/views/modules/tracker/views_handler_filter_tracker_boolean_operator.inc','0d0dca36d526ed1bd99f52dd91f113fb7fd3740778fb3ce2072bc39f90b9bb17'),('sites/all/modules/views/modules/tracker/views_handler_filter_tracker_comment_user_uid.inc','a3cc9f7b3e6052973bea54dd354116eee5962a9b8e57636ee3f1c87577e85d51'),('sites/all/modules/views/modules/translation/views_handler_argument_node_tnid.inc','d0493e7d7a6e182b77748ff44e71ed34999a20ac89830654c113e7c9a0d478f5'),('sites/all/modules/views/modules/translation/views_handler_field_node_link_translate.inc','76d366430880e7dde20d5794371544ff683f3d3bb3aec6319ef5383777326807'),('sites/all/modules/views/modules/translation/views_handler_field_node_translation_link.inc','91caa7ac0bc4f465c9a5eb7e79ee63474d59e65ba9e2b6a9b5f466ab51d23031'),('sites/all/modules/views/modules/translation/views_handler_filter_node_tnid.inc','35509bc3b369b3f0fe541bdd86c4afdb32936d18dc52c32bac01b8f7bd3f78fa'),('sites/all/modules/views/modules/translation/views_handler_filter_node_tnid_child.inc','8b1282ee8b48c61782239982a7c3426033664d2c96c41896ef7decdba00a7655'),('sites/all/modules/views/modules/translation/views_handler_relationship_translation.inc','1c6235c54b11a83db21c5b6070b20b614be737d19eb1e3779e8c9c3faea0ec2b'),('sites/all/modules/views/modules/user/views_handler_argument_users_roles_rid.inc','31d6f0e24e88473a4790f9f97a80d0467a53ae1774583f71f7fce6c9edc1edf2'),('sites/all/modules/views/modules/user/views_handler_argument_user_uid.inc','6a4ca265f1585c08a7efb5667d0808683d6b1ecb831228b0928d0c7a1a946c41'),('sites/all/modules/views/modules/user/views_handler_field_user.inc','cb9ab816ecf9af790a6f320e17c05e311a62d87b2ef179ab45879bbd53e57f2f'),('sites/all/modules/views/modules/user/views_handler_field_user_language.inc','998b03ab3904eefa63226d8a0143412e747f20500dc5244cf1208b5ebb8654a2'),('sites/all/modules/views/modules/user/views_handler_field_user_link.inc','d13886bf45cb49d2dee4823ff21106a10bdd0aa8ac0e387ca69f66729e203fe0'),('sites/all/modules/views/modules/user/views_handler_field_user_link_cancel.inc','988c31b68a7e71dc4433ca4a72b692b0b9cfddd6d91ecec62435c882fbd88919'),('sites/all/modules/views/modules/user/views_handler_field_user_link_edit.inc','0224a0f9268705e02e400125243540a5fb4ceda5fb12e700a6c9300df5f595cf'),('sites/all/modules/views/modules/user/views_handler_field_user_mail.inc','90d20da35decf9afe27f3cf7665a0738ea972e9d3114114d274fb17054b59c97'),('sites/all/modules/views/modules/user/views_handler_field_user_name.inc','3d8a244e6fb478d7ab78af21d1ffc9a08ab1a039a3810c10d038fae6eb124414'),('sites/all/modules/views/modules/user/views_handler_field_user_permissions.inc','b0cbd86a6bd690f28b9b2d3c633d7f93153fac910be9dd25b248f7e628d4dfa7'),('sites/all/modules/views/modules/user/views_handler_field_user_picture.inc','d8b780012df737e968f83682fc6de9dfbe3a2b81ade2803d68626d77fdf84dab'),('sites/all/modules/views/modules/user/views_handler_field_user_roles.inc','d9cc72b1d8ac8c70219e8335aff4fc287d494cd61e75111e7de3dbf7a5b3bff6'),('sites/all/modules/views/modules/user/views_handler_filter_user_current.inc','79b9f735c96e097366659876f85668547f788ca22a89edff9e1f8f84e0a4962a'),('sites/all/modules/views/modules/user/views_handler_filter_user_name.inc','bce96d7063b6f2f0b231ecf9b23f96c2e0b4fcde880238c2238306b5f4cb76dc'),('sites/all/modules/views/modules/user/views_handler_filter_user_permissions.inc','9d8e37e0e78f128f8747e90f962a7bf993d76f750caa74b260d76c659394fc4a'),('sites/all/modules/views/modules/user/views_handler_filter_user_roles.inc','742caf6b6e989b6a2fedf793d8e3d72e7e0444bf3f29b67c7f359fa333c870fd'),('sites/all/modules/views/modules/user/views_plugin_argument_default_current_user.inc','30ba56c9372cbb73ad332146a795a13058239925e5660e8ef1a2a0a22cf34ba4'),('sites/all/modules/views/modules/user/views_plugin_argument_default_user.inc','e187ae191a4cbcceeef81ffe9bf3b4e32300da0763018bf168d274622ec5f168'),('sites/all/modules/views/modules/user/views_plugin_argument_validate_user.inc','38259ced6b64580ed263571e8dbaded1fa12a8ea61b7790ba5c9f8b2e29108b3'),('sites/all/modules/views/modules/user/views_plugin_row_user_view.inc','22c5ecc1886ef06a6faa6ebc22d8c6991af31b518dceb98eae54fcf18e8acc23'),('sites/all/modules/views/plugins/export_ui/views_ui.class.php','07ce2a0d5125cf1514a8423a29896f8fdbd85a16282b18ff19fbe0a9ee1ca46f'),('sites/all/modules/views/plugins/views_plugin_access.inc','e1528e2faa60f47fd397fc6e272f88fcd1914c41bd942bb0a0f4a5073fbe1b6d'),('sites/all/modules/views/plugins/views_plugin_access_none.inc','52310ea867d6f21a11ced61fc1ba442836ca97c1e3020e1c5b5b5e9af3d29816'),('sites/all/modules/views/plugins/views_plugin_access_perm.inc','f88fa2a6898e13bbcde8fe8a5786f3a2014b8b7ac830b6c848e6163d0454a5f1'),('sites/all/modules/views/plugins/views_plugin_access_role.inc','061fdcf1410bb0f785333a23e1293b369993ee6dcd95bfdaf686eb56335a91ed'),('sites/all/modules/views/plugins/views_plugin_argument_default.inc','04cb62069593b0d3de1e00b0eabd5e0b7aa4e8eeb0989713bb343edf229e5925'),('sites/all/modules/views/plugins/views_plugin_argument_default_fixed.inc','e1f7aca5a279585aa6a4ff7e88fb896f25a6a91abab7cee2d8cf5b34f5b409b4'),('sites/all/modules/views/plugins/views_plugin_argument_default_php.inc','ffcd3d49b72d8de2e73836d02ff00f9b0c6b9b4ddcf4a41cc32e35df3c426931'),('sites/all/modules/views/plugins/views_plugin_argument_default_raw.inc','ed0f90f89a3618bacbf26377d499cc572c19eceb299bba4ed48fb2b97421321e'),('sites/all/modules/views/plugins/views_plugin_argument_validate.inc','9ae75fc5b1bf52f923c089ff03be6d0b13d3db1fec7c57d2d61765b57438ce28'),('sites/all/modules/views/plugins/views_plugin_argument_validate_numeric.inc','d895dec65ea4948641a3c58bdacd6482b37b1d1c6bdec3f35b6a0d2e42329277'),('sites/all/modules/views/plugins/views_plugin_argument_validate_php.inc','d3468db246b5f1274bd35e1926b515f06d3cd3ecfd54d26a914f3b28491a2c71'),('sites/all/modules/views/plugins/views_plugin_cache.inc','9c3a3b5d40d0d6401e4e4f239a6b6a5d4463ae358ab38c85a975fcc4fa2f2cdc'),('sites/all/modules/views/plugins/views_plugin_cache_none.inc','5ce14a8ca7887019cacded3bccd24f566519c24452f86baec422d2197b3bc5e0'),('sites/all/modules/views/plugins/views_plugin_cache_time.inc','3783386fae8966111917f2311055c37f8fcad181aa438d5d0637db05dccbe0e4'),('sites/all/modules/views/plugins/views_plugin_display.inc','e35c0b929286752b86e080887be3a47c18cff210724d553583fb2945f413d26c'),('sites/all/modules/views/plugins/views_plugin_display_attachment.inc','e4a3c0881736f6011d4d86218f1933b89ebfd16549a7200f9f53ab375ddef818'),('sites/all/modules/views/plugins/views_plugin_display_block.inc','1a14418a1e974d0cdacf2b3de77c46de09248e9eec26c44a6fff20f19d642b09'),('sites/all/modules/views/plugins/views_plugin_display_default.inc','d4bfea9c858c0ab9249dda27863eee45a9a43486fc8fa72a30ebf14a6b86c4ef'),('sites/all/modules/views/plugins/views_plugin_display_embed.inc','400651e11fe9e0e59540eae0f6f8549b7d6f6c1aabe8818f7f6c4c11ad501bf9'),('sites/all/modules/views/plugins/views_plugin_display_extender.inc','fdb3b0cc4d6f9eedb74c92563b94a7fdfe53e0f2dac89fe212a6624ac3469f92'),('sites/all/modules/views/plugins/views_plugin_display_feed.inc','b0f63921a2715acebe0dca014992e8705dc659620b760847c2c33542c60600da'),('sites/all/modules/views/plugins/views_plugin_display_page.inc','d62fa1f4efed4dbec43257e4a078f2e6c0acf315b3d4e76ff91c1382989117ce'),('sites/all/modules/views/plugins/views_plugin_exposed_form.inc','6751e11b08e2b3abacf6d1e578deb0f50bbf77aed8ce8ac75ea8b8857e6fe536'),('sites/all/modules/views/plugins/views_plugin_exposed_form_basic.inc','75f0c8630ec72a143e95e3695f379b0ee154d80773633f15de0ce80439e930aa'),('sites/all/modules/views/plugins/views_plugin_exposed_form_input_required.inc','72f41fbb87e87b78f69639e9d81b9f0d341995c882a5a93a7a8327b0e1bc8b0a'),('sites/all/modules/views/plugins/views_plugin_localization.inc','157a13a1d7c6d472f2ef179f74389fa31dce9cab1897363f8c45ce9557ce12e8'),('sites/all/modules/views/plugins/views_plugin_localization_core.inc','8feab7c01df92b1a7c6bbfbcaf4f0adf82b6f2adcbd4f50c7680ab3f8ba648aa'),('sites/all/modules/views/plugins/views_plugin_localization_none.inc','9d94a95dc72ce35561697497e9a6152b0b98d2af45039385e90bc3866c70c28b'),('sites/all/modules/views/plugins/views_plugin_pager.inc','2875af832559e7c2f8545b247afc2026b86ad853aca32a5cf6c6b85b8758722e'),('sites/all/modules/views/plugins/views_plugin_pager_full.inc','8402038e185329c5816aa047b33c43e6efb3e493f5a0a28825f853adc7027bec'),('sites/all/modules/views/plugins/views_plugin_pager_mini.inc','95802b0ef913a5d57b869075ffbcbd1912950c5bcda4cc1fd78e7715a35c6f01'),('sites/all/modules/views/plugins/views_plugin_pager_none.inc','f8bb711d9edede86814821f1f6d2ca940c5b488eeb8980b0ad3b69b69a93e9a8'),('sites/all/modules/views/plugins/views_plugin_pager_some.inc','272f71363f2a94a32997717ef89dcc4683f63b04b8a2a01a9b6dbbea89fcf97c'),('sites/all/modules/views/plugins/views_plugin_query.inc','a7e36dc3066067004199fa090602e5a9a7869711e3506b6cddb52f48184eb511'),('sites/all/modules/views/plugins/views_plugin_query_default.inc','f77149607c178d6775be9db05294d7ec114970bfc8c0959545ebc99a6b3aab87'),('sites/all/modules/views/plugins/views_plugin_row.inc','f525a18d9b273a890256bcd07caf6dacb1fcc2a38b65b866c16cd006e92de83d'),('sites/all/modules/views/plugins/views_plugin_row_fields.inc','3030f871c046548365156fdb5d7821104408fddeb327f6c685a72b213276eeae'),('sites/all/modules/views/plugins/views_plugin_row_rss_fields.inc','a37c50686477ed30b3d2a8688ef418e0862ec729ae749b346cc396bcda0be392'),('sites/all/modules/views/plugins/views_plugin_style.inc','6757c3103adcd8e9de4aa1d01b2374be20b35166a6c1998984cda84680248061'),('sites/all/modules/views/plugins/views_plugin_style_default.inc','1adf156419a1d7748e3633a8ade693b995902c1eca3452c5cf06da4857a961aa'),('sites/all/modules/views/plugins/views_plugin_style_grid.inc','b055853b4a0d58ceb2e2e761b515734f952073c0bed0725794745b1343ab8573'),('sites/all/modules/views/plugins/views_plugin_style_jump_menu.inc','33014f72ca94acb7b972b8c066355a6ba0726a0e60699260b5ecc6c08bd3ba5e'),('sites/all/modules/views/plugins/views_plugin_style_list.inc','fe74e3fecf15d8579d5e24d25be48dc4214af08775700eccc7b05b5abebbc951'),('sites/all/modules/views/plugins/views_plugin_style_mapping.inc','c078643b9c6e23e85e83cb9add17ef928556a5339b5bb55422689cdc6edf2523'),('sites/all/modules/views/plugins/views_plugin_style_rss.inc','a3e57703c3eb05dd8611ecb0d52c5d5aa516e91462cbed9d0f896528ec9ba98f'),('sites/all/modules/views/plugins/views_plugin_style_summary.inc','957f53e4a431f25a653bb0b7e14e43cf568c88c9504fcc75a93c7faa91c9752e'),('sites/all/modules/views/plugins/views_plugin_style_summary_jump_menu.inc','b286ca6c2a40ffb828b61cc9707173a4b9cd260e553364de1ebd3d7ca3d301db'),('sites/all/modules/views/plugins/views_plugin_style_summary_unformatted.inc','dc49a759f04a7da8dd69a88ba57796ace9960b18bd183926bae43e91b59e723a'),('sites/all/modules/views/plugins/views_plugin_style_table.inc','1c20234edfdcb715276dbd544160e47faf470c273973d974fdd361949faddb6c'),('sites/all/modules/views/plugins/views_wizard/views_ui_base_views_wizard.class.php','9faae5ac5f46a46a9732f96b7d55556b048a49307188690ad4c669afc7c53033'),('sites/all/modules/views/plugins/views_wizard/views_ui_comment_views_wizard.class.php','afde10deab03ebf2a9a92847b755520263182f726c0fe1b60b8b50a552c8c131'),('sites/all/modules/views/plugins/views_wizard/views_ui_file_managed_views_wizard.class.php','f2ede8d652be4383ea7adf9b6587169b593af44c5b6a39690f732cb5075d21fd'),('sites/all/modules/views/plugins/views_wizard/views_ui_node_revision_views_wizard.class.php','d733679e11f542d586d5fbcf3d1e09c1ea8eef83321c401bd8413986c30b847b'),('sites/all/modules/views/plugins/views_wizard/views_ui_node_views_wizard.class.php','86d7195aa3ef75293cfd933558a7127f6b3554db575911ed5a11b6b1b3c7c536'),('sites/all/modules/views/plugins/views_wizard/views_ui_taxonomy_term_views_wizard.class.php','cac9cd982e2f31ad72b2c850e459423fed0c392a4a239a6dd80e31964ef5592a'),('sites/all/modules/views/plugins/views_wizard/views_ui_users_views_wizard.class.php','854dd402224c6bfb6a0811a54eecc7655d13efc9b094621a5e8415ad27197048'),('sites/all/modules/views/tests/comment/views_handler_argument_comment_user_uid.test','112071c4612089fab915f89246af03d3d4ff99b93564677b4d0005464c6ee6b8'),('sites/all/modules/views/tests/comment/views_handler_filter_comment_user_uid.test','d62fe3f3257efc0eaf742e3c177ea3f1bd5efb9fc8f91dc1bc5e9e6196085bd7'),('sites/all/modules/views/tests/field/views_fieldapi.test','3d0625d9214c3fb72d5d422cbb093f11fe7f7c2cc791ffeb8dddd61ad7875667'),('sites/all/modules/views/tests/handlers/views_handlers.test','44f3dd30909d43e250c726e312290a522131c7f0d3048fc5f8583fc8c5986f72'),('sites/all/modules/views/tests/handlers/views_handler_area_text.test','3553a85c6d86992a17029eac182b486940393cee0c06380cf9f60ed208a57b5f'),('sites/all/modules/views/tests/handlers/views_handler_argument_null.test','e9adbe3e322cc8b536d79b5b915cab97102199abf2a14ad7a6374cfd18246372'),('sites/all/modules/views/tests/handlers/views_handler_argument_string.test','162bbf926626b68af8b1f1b6c74af5057962b0a26d74afb50298c0f2644a3d25'),('sites/all/modules/views/tests/handlers/views_handler_field.test','32aa0c4febcdcedb2b4d570279c4ec0e3a529cf1d93f370963f68411460efedd'),('sites/all/modules/views/tests/handlers/views_handler_field_boolean.test','c9f409147fe545a413b365ee37e0758a47291165effc76f0ae8743f84915053d'),('sites/all/modules/views/tests/handlers/views_handler_field_counter.test','86f4514cfa72192034db1ef70723cb2b2b1ffde6e4e5fb4212ec959cd5697ba6'),('sites/all/modules/views/tests/handlers/views_handler_field_custom.test','57d1f7d01e57f8e2a9694340684344f5e7d6d5c90bad8679aba591192c1f6a2d'),('sites/all/modules/views/tests/handlers/views_handler_field_date.test','27f9b23bc31068a3f2a2f5b6678388dd4175b66f758b60e9a996e061a2e3a789'),('sites/all/modules/views/tests/handlers/views_handler_field_file_extension.test','0f9c376f31ca47ecc0f01548d451c548ef7bebe8a07974def77e6725badda4e6'),('sites/all/modules/views/tests/handlers/views_handler_field_file_size.test','9c951d86dad9df3fca72b20abcb1345a0473578324a454c75d8a5a22e8b68015'),('sites/all/modules/views/tests/handlers/views_handler_field_math.test','bbf418c1be15c20d4ddf09add1620f19ff91dc66611e8426a5528900ad9baf60'),('sites/all/modules/views/tests/handlers/views_handler_field_url.test','0c0e54a93ffd5890b81807e0d0440d061f771fafc6d99943d5d9dfc4a1702686'),('sites/all/modules/views/tests/handlers/views_handler_field_xss.test','0089186f1ad71ff02e52e5f5d83b408a11914c2393102a989c360d00fde0592b'),('sites/all/modules/views/tests/handlers/views_handler_filter_combine.test','7e5d47eba626fb56ac0c44b0b9897e6854e8a615e2a7648198a47a00fd28fd8f'),('sites/all/modules/views/tests/handlers/views_handler_filter_date.test','93dc87c72a29beaa33963f8b8603bca7a8ace80314ff9e4d3f9af71e17e4ada4'),('sites/all/modules/views/tests/handlers/views_handler_filter_equality.test','8940123f7aec681ea580a517c77186cea7b8ec75368e5f5633b29c773fc3b93e'),('sites/all/modules/views/tests/handlers/views_handler_filter_in_operator.test','89420a4071677232e0eb82b184b37b818a82bdb2ff90a8b21293f9ecb21808bf'),('sites/all/modules/views/tests/handlers/views_handler_filter_numeric.test','3dd29c4bc988d15accf0473d8498c3d3e9dd05c8d93eac5722f2e39d5b7d4e74'),('sites/all/modules/views/tests/handlers/views_handler_filter_string.test','371b8e711df02b162227a22765808ecf3d9ddf6c40813a058f60208e151dad46'),('sites/all/modules/views/tests/handlers/views_handler_sort.test','ace33efab99798d8221871038b2298b9e645f22278dd015dda5fac6688ee54ee'),('sites/all/modules/views/tests/handlers/views_handler_sort_date.test','4f997b2d2afdb64747b087c7e118287bc58872d72740e5004e17e5ee6ef643c7'),('sites/all/modules/views/tests/handlers/views_handler_sort_random.test','9ff72485303fd209ef748c65d0cb52078400985b54f256b82f1b3bb28a323a1f'),('sites/all/modules/views/tests/node/views_node_revision_relations.test','108f56a3381d1c9a72f85d5a681ebeff66c587d032d13ed229dfc32c7d0195d7'),('sites/all/modules/views/tests/plugins/views_plugin_display.test','fb9399398d003056fe5b7d79f67de93b6a79a2a651f1041c73d5beedf632bfde'),('sites/all/modules/views/tests/styles/views_plugin_style.test','49507203fd59567c97575b139c4cb578f1eab8cd4ab2b31141ca224fc2724123'),('sites/all/modules/views/tests/styles/views_plugin_style_base.test','54fb7816d18416d8b0db67e9f55aa2aa50ac204eb9311be14b6700b7d7a95ae7'),('sites/all/modules/views/tests/styles/views_plugin_style_jump_menu.test','e1082d2fc79e05c9e32608a5b7e67e4465fec6172a137b03b63438a1ca7d0295'),('sites/all/modules/views/tests/styles/views_plugin_style_mapping.test','03e61703eefdc9fcc8d5a2e551c884a86a81e1459f4fc0da7d7d99776e0e0b70'),('sites/all/modules/views/tests/styles/views_plugin_style_unformatted.test','d22239d0812c2f28df86b1742a0968c8ce76f120072a7bf5631b839967ff757a'),('sites/all/modules/views/tests/taxonomy/views_handler_relationship_node_term_data.test','86da344a0263ad7cde83934d69f4cc9abaf6379cf0371422787169a9d048b26b'),('sites/all/modules/views/tests/test_handlers/views_test_area_access.inc','bcf28fc741476430d6904d35a81c5d11ae2b99b91a44b513fedfe452d66e2cb6'),('sites/all/modules/views/tests/test_plugins/views_test_plugin_access_test_dynamic.inc','d6fbf2f48808f6347c8cb9049bc94c1762eed36e034df3bec23baad23b3454df'),('sites/all/modules/views/tests/test_plugins/views_test_plugin_access_test_static.inc','38578c3e1ca4cec8e75fa088fc274390baf01335c226e4791b2a498bb62b0633'),('sites/all/modules/views/tests/test_plugins/views_test_plugin_style_test_mapping.inc','d5a1752b2d751359aaa6600f94f9e2cda903ffb580781cedc0ded7ea795f6024'),('sites/all/modules/views/tests/user/views_handler_field_user_name.test','b389292fef9b674317bc1d2f81aef59a6ee07ba517d2ab732cfeace0f4f5ef74'),('sites/all/modules/views/tests/user/views_user.test','bebfb59eec884e9b16a4a8052610046b02f0a08b3e372eca91a6589df124437b'),('sites/all/modules/views/tests/user/views_user_argument_default.test','a2026a55bec3bfd84601f4c03ba5a284732f9797c61c175a906b11a8fbe8effc'),('sites/all/modules/views/tests/user/views_user_argument_validate.test','7b67ac666fe7b838bdb839ff998d068febdd52cae0db0b64fcac515cf2b35abb'),('sites/all/modules/views/tests/views_access.test','ba3492c5ae718223f45d37766dfb7e991c34c26262c2e59dcb8e2f14db5fed48'),('sites/all/modules/views/tests/views_ajax.test','3d0675fcbf3766a902cce6ecc240eee90abb516055c6e48f4ce996a245aa6990'),('sites/all/modules/views/tests/views_analyze.test','3a1da4e3bee1ec7a7a8d9d02cf1779be40730e518a96d99ccd3a1b96013efe32'),('sites/all/modules/views/tests/views_argument_default.test','b63d8135cbce1ced2ffdf6d8e85423c7cdc9847c500bd397e2aaceea810c04db'),('sites/all/modules/views/tests/views_argument_validator.test','cf10d1f6d60bae2b40d381feccc6aa78e44dca60bb2e6360bc8961c1b181260c'),('sites/all/modules/views/tests/views_basic.test','e3715a9df468b1c2decb4d8a068a68ca6a3f8bd467066634075ee643d6cabb60'),('sites/all/modules/views/tests/views_cache.test','325ac3e8100fe1c9aa065a72bdd238c863bf51da269d2a686a36060d05ede112'),('sites/all/modules/views/tests/views_exposed_form.test','f509e3d9df6f28355ae53e3f24f5c7f11d2f820589251d4d69dd87380801566f'),('sites/all/modules/views/tests/views_glossary.test','6f6d3699b782796ec6280530fe3444f4593d4f2d5fe25aeab7ab90a61bee3bb0'),('sites/all/modules/views/tests/views_groupby.test','9c27b9c9e56a1b5f547637983b6af094d8f0d953becc38e1eab3cbae8e8ee8ee'),('sites/all/modules/views/tests/views_handlers.test','f9d37f26793529bfe9d1e21cb03ff3c7384e90569d72a3580d3d78fa4d44f93b'),('sites/all/modules/views/tests/views_module.test','b7c9d102c9b652c3b84267c5d3b022c7fb577d64bdfc951817b5c6cf85ef26c0'),('sites/all/modules/views/tests/views_pager.test','c5879c716f6c39f548fefbef4027bfb22bd8d9e06831d5768524db7bf3fb8dfc'),('sites/all/modules/views/tests/views_plugin_localization_test.inc','db13bd5e57b137f6cf0d06789b2429e33b429d5e001e1e99c6afbac38944d050'),('sites/all/modules/views/tests/views_query.test','74530c85b68b97e697f3b58a6f3ee49b15a58869bdc4afe9c807043f7e5772a0'),('sites/all/modules/views/tests/views_test.views_default.inc','1245b6883b9ce5169d5ea21cd951794a33f87ed16305205a35f2157f6152ab93'),('sites/all/modules/views/tests/views_translatable.test','8eadade5096b91633d4d7daa1021846c8c8c85a1d9abf20b736d63beb5307b99'),('sites/all/modules/views/tests/views_ui.test','de99510c24538d10dbe4feee0b8365fc3967be3804f6b45901b1c08c6507f0f1'),('sites/all/modules/views/tests/views_upgrade.test','ef950f69070176056ecd8435a5d98e347137b35558b74ef3e620c51dd0ff9046'),('sites/all/modules/views/tests/views_view.test','9fc3e62bfa6ad01bbf71b9b2ff065466290de378bd7adc28943dba1c1364fc83');
/*!40000 ALTER TABLE `registry_file` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `role`
--

DROP TABLE IF EXISTS `role`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `role` (
  `rid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: Unique role ID.',
  `name` varchar(64) NOT NULL DEFAULT '' COMMENT 'Unique role name.',
  `weight` int(11) NOT NULL DEFAULT 0 COMMENT 'The weight of this role in listings and the user interface.',
  PRIMARY KEY (`rid`),
  UNIQUE KEY `name` (`name`),
  KEY `name_weight` (`name`,`weight`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='Stores user roles.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `role`
--

LOCK TABLES `role` WRITE;
/*!40000 ALTER TABLE `role` DISABLE KEYS */;
INSERT INTO `role` VALUES (3,'administrator',2),(1,'anonymous user',0),(2,'authenticated user',1),(4,'editor',3);
/*!40000 ALTER TABLE `role` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `role_permission`
--

DROP TABLE IF EXISTS `role_permission`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `role_permission` (
  `rid` int(10) unsigned NOT NULL COMMENT 'Foreign Key: role.rid.',
  `permission` varchar(128) NOT NULL DEFAULT '' COMMENT 'A single permission granted to the role identified by rid.',
  `module` varchar(255) NOT NULL DEFAULT '' COMMENT 'The module declaring the permission.',
  PRIMARY KEY (`rid`,`permission`),
  KEY `permission` (`permission`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores the permissions assigned to user roles.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `role_permission`
--

LOCK TABLES `role_permission` WRITE;
/*!40000 ALTER TABLE `role_permission` DISABLE KEYS */;
INSERT INTO `role_permission` VALUES (1,'access comments','comment'),(1,'access content','node'),(1,'use text format filtered_html','filter'),(1,'view photo','photos'),(2,'access comments','comment'),(2,'access content','node'),(2,'allowed to vote','photos'),(2,'post comments','comment'),(2,'skip comment approval','comment'),(2,'use text format filtered_html','filter'),(2,'use text format full_html','filter'),(2,'view original','photos'),(2,'view photo','photos'),(2,'view vote list','photos'),(3,'access administration pages','system'),(3,'access all views','views'),(3,'access comments','comment'),(3,'access content','node'),(3,'access content overview','node'),(3,'access contextual links','contextual'),(3,'access dashboard','dashboard'),(3,'access library reports','libraries'),(3,'access overlay','overlay'),(3,'access site in maintenance mode','system'),(3,'access site reports','system'),(3,'access toolbar','toolbar'),(3,'access user profiles','user'),(3,'administer actions','system'),(3,'administer blocks','block'),(3,'administer ckeditor','ckeditor'),(3,'administer comments','comment'),(3,'administer content translations','i18n_node'),(3,'administer content types','node'),(3,'administer features','features'),(3,'administer fields','field'),(3,'administer filters','filter'),(3,'administer image styles','image'),(3,'administer imce','imce'),(3,'administer languages','locale'),(3,'administer locationmap','locationmap'),(3,'administer menu','menu'),(3,'administer modules','system'),(3,'administer nodes','node'),(3,'administer openlayers','openlayers_ui'),(3,'administer permissions','user'),(3,'administer radius','radius_dictionary'),(3,'administer search','search'),(3,'administer shortcuts','shortcut'),(3,'administer site configuration','system'),(3,'administer software updates','system'),(3,'administer taxonomy','taxonomy'),(3,'administer themes','system'),(3,'administer url aliases','path'),(3,'administer user locations','location_user'),(3,'administer users','user'),(3,'administer views','views'),(3,'allowed to vote','photos'),(3,'block IP addresses','system'),(3,'bypass node access','node'),(3,'cancel account','user'),(3,'change own username','user'),(3,'create article content','node'),(3,'create gmap macro','gmap_macro_builder'),(3,'create page content','node'),(3,'create photo','photos'),(3,'create url aliases','path'),(3,'customize ckeditor','ckeditor'),(3,'customize shortcut links','shortcut'),(3,'delete any article content','node'),(3,'delete any page content','node'),(3,'delete any photo','photos'),(3,'delete own article content','node'),(3,'delete own page content','node'),(3,'delete own photo','photos'),(3,'delete revisions','node'),(3,'delete terms in 1','taxonomy'),(3,'edit any article content','node'),(3,'edit any page content','node'),(3,'edit any photo','photos'),(3,'edit own article content','node'),(3,'edit own comments','comment'),(3,'edit own page content','node'),(3,'edit own photo','photos'),(3,'edit terms in 1','taxonomy'),(3,'generate features','features'),(3,'geocoder_service_all_handlers','geocoder'),(3,'geocoder_service_handler_exif','geocoder'),(3,'geocoder_service_handler_google','geocoder'),(3,'geocoder_service_handler_gpx','geocoder'),(3,'geocoder_service_handler_json','geocoder'),(3,'geocoder_service_handler_kml','geocoder'),(3,'geocoder_service_handler_latlon','geocoder'),(3,'geocoder_service_handler_mapquest_nominatim','geocoder'),(3,'geocoder_service_handler_wkt','geocoder'),(3,'geocoder_service_handler_yahoo','geocoder'),(3,'geocoder_service_handler_yandex','geocoder'),(3,'manage features','features'),(3,'post comments','comment'),(3,'rename features','features'),(3,'revert revisions','node'),(3,'search content','search'),(3,'select account cancellation method','user'),(3,'set own user location','location_user'),(3,'skip comment approval','comment'),(3,'submit latitude/longitude','location'),(3,'switch shortcut sets','shortcut'),(3,'translate admin strings','i18n_string'),(3,'translate content','translation'),(3,'translate interface','locale'),(3,'translate user-defined strings','i18n_string'),(3,'use advanced search','search'),(3,'use PHP for settings','php'),(3,'use text format filtered_html','filter'),(3,'use text format full_html','filter'),(3,'view all user locations','location_user'),(3,'view location directory','location'),(3,'view node location table','location'),(3,'view node map','gmap_location'),(3,'view original','photos'),(3,'view own unpublished content','node'),(3,'view own user location','location_user'),(3,'view photo','photos'),(3,'view revisions','node'),(3,'view the administration theme','system'),(3,'view user location details','gmap_location'),(3,'view user location table','location'),(3,'view user map','gmap_location'),(3,'view vote list','photos'),(4,'create article content','node'),(4,'create page content','node'),(4,'create photo','photos'),(4,'create photos content','node'),(4,'delete own article content','node'),(4,'delete own page content','node'),(4,'delete own photo','photos'),(4,'delete own photos content','node'),(4,'edit own article content','node'),(4,'edit own page content','node'),(4,'edit own photo','photos'),(4,'edit own photos content','node');
/*!40000 ALTER TABLE `role_permission` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `search_dataset`
--

DROP TABLE IF EXISTS `search_dataset`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `search_dataset` (
  `sid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Search item ID, e.g. node ID for nodes.',
  `type` varchar(16) NOT NULL COMMENT 'Type of item, e.g. node.',
  `data` longtext NOT NULL COMMENT 'List of space-separated words from the item.',
  `reindex` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Set to force node reindexing.',
  PRIMARY KEY (`sid`,`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores items that will be searched.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `search_dataset`
--

LOCK TABLES `search_dataset` WRITE;
/*!40000 ALTER TABLE `search_dataset` DISABLE KEYS */;
INSERT INTO `search_dataset` VALUES (1,'node',' morsea marine observatory in the ross sea language undefined il progetto morsea   m arine o bservatory in the r oss sea  nasce con la finalità di gestire la rete degli ancoraggi oceanografici alcuni posizionati fin dal 1994 nell ambito dei progetti clima p i prof g spezie e abioclear pi dottssa m ravaioli del pnra programma nazionale di ricerche in antartide con la chiusura di detti progetti avvenuta nel 2010 la commissione scientifica nazionale csna ha affidato all università degli studi di napoli parthenope sotto la responsabilità scientifica del prof g spezie la gestione dei quattro punti di ancoraggio nel mare di ross specificamente contrassegnati con le lettere b d g e l al fine di garantire l importante ruolo svolto da queste catene di sensori per lo studio dei cambiamenti climatici e dei processi fisici e biogeochimici nella colonna d acqua  ',0),(2,'node',' contacts language undefined prof giancarlo spezie pi  giancarlospezie uniparthenopeit prof giorgio budillon  giorgiobudillon uniparthenopeit università degli studi di napoli parthenope  dist dipartimento di scienze e tecnologie centro direzionale isola c4 80143 napoli italy ph 39 81 5476584 fax 39 81 5476515  ',0),(3,'node',' cooperations language undefined le attività vengono svolte in collaborazione con  consiglio nazionale delle ricerche ismar ancona consiglio nazionale delle ricerche ismar bologna università degli studi di genova distav   ',0),(4,'node',' data access language undefined pagina in costruzione ',0),(5,'node',' morsea marine observatory in the ross sea language undefined  ',0),(7,'node',' the observatory language undefined ss  ',0),(8,'node',' the network language undefined mooring b ',0),(9,'node',' my first experience in the ross sea  language undefined oops it was just chicago winter  ',0),(10,'node',' mooring l language undefined  ',0),(12,'node',' the moorings language undefined ss  ',0),(13,'node',' pnraxxvii language undefined  ',0),(14,'node',' pnraxxiv language undefined  ',0),(15,'node',' pubblications language undefined papers  ',0);
/*!40000 ALTER TABLE `search_dataset` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `search_index`
--

DROP TABLE IF EXISTS `search_index`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `search_index` (
  `word` varchar(50) NOT NULL DEFAULT '' COMMENT 'The search_total.word that is associated with the search item.',
  `sid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'The search_dataset.sid of the searchable item to which the word belongs.',
  `type` varchar(16) NOT NULL COMMENT 'The search_dataset.type of the searchable item to which the word belongs.',
  `score` float DEFAULT NULL COMMENT 'The numeric score of the word, higher being more important.',
  PRIMARY KEY (`word`,`sid`,`type`),
  KEY `sid_type` (`sid`,`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores the search index, associating words, items and...';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `search_index`
--

LOCK TABLES `search_index` WRITE;
/*!40000 ALTER TABLE `search_index` DISABLE KEYS */;
INSERT INTO `search_index` VALUES ('1994',1,'node',1),('2010',1,'node',1),('39',2,'node',2),('5476515',2,'node',1),('5476584',2,'node',1),('80143',2,'node',1),('81',2,'node',2),('abioclear',1,'node',1),('access',4,'node',26),('acqua',1,'node',1),('affidato',1,'node',1),('alcuni',1,'node',1),('all',1,'node',1),('ambito',1,'node',1),('ancona',3,'node',4),('ancoraggi',1,'node',1),('ancoraggio',1,'node',1),('antartide',1,'node',1),('arine',1,'node',1),('attività',3,'node',1),('avvenuta',1,'node',1),('biogeochimici',1,'node',1),('bologna',3,'node',4),('bservatory',1,'node',1),('budillon',2,'node',4),('cambiamenti',1,'node',1),('catene',1,'node',1),('centro',2,'node',1),('chicago',9,'node',1),('chiusura',1,'node',1),('clima',1,'node',1),('climatici',1,'node',1),('collaborazione',3,'node',1),('colonna',1,'node',1),('commissione',1,'node',1),('con',1,'node',3),('con',3,'node',1),('consiglio',3,'node',8),('contacts',2,'node',26),('contrassegnati',1,'node',1),('cooperations',3,'node',26),('costruzione',4,'node',7),('csna',1,'node',1),('dal',1,'node',1),('data',4,'node',26),('degli',1,'node',2),('degli',2,'node',22),('degli',3,'node',4),('dei',1,'node',4),('del',1,'node',2),('delle',3,'node',8),('detti',1,'node',1),('dipartimento',2,'node',1),('direzionale',2,'node',1),('dist',2,'node',1),('distav',3,'node',4),('dottssa',1,'node',1),('experience',9,'node',26),('fax',2,'node',1),('fin',1,'node',1),('finalità',1,'node',1),('fine',1,'node',1),('first',9,'node',26),('fisici',1,'node',1),('garantire',1,'node',1),('genova',3,'node',4),('gestione',1,'node',1),('gestire',1,'node',1),('giancarlo',2,'node',4),('giancarlospezie',2,'node',14),('giorgio',2,'node',4),('giorgiobudillon',2,'node',14),('importante',1,'node',1),('ismar',3,'node',8),('isola',2,'node',1),('italy',2,'node',1),('just',9,'node',1),('language',1,'node',1),('language',2,'node',1),('language',3,'node',1),('language',4,'node',1),('language',5,'node',1),('language',7,'node',1),('language',8,'node',1),('language',9,'node',1),('language',10,'node',1),('language',12,'node',1),('language',13,'node',1),('language',14,'node',1),('language',15,'node',1),('lettere',1,'node',1),('mare',1,'node',1),('marine',1,'node',26),('marine',5,'node',26),('mooring',8,'node',11),('mooring',10,'node',26),('moorings',12,'node',26),('morsea',1,'node',30),('morsea',5,'node',26),('napoli',1,'node',1),('napoli',2,'node',23),('nasce',1,'node',1),('nazionale',1,'node',2),('nazionale',3,'node',8),('nel',1,'node',2),('nell',1,'node',1),('nella',1,'node',1),('network',8,'node',26),('observatory',1,'node',26),('observatory',5,'node',26),('observatory',7,'node',26),('oceanografici',1,'node',1),('oops',9,'node',1),('oss',1,'node',1),('pagina',4,'node',7),('papers',15,'node',1),('parthenope',1,'node',1),('parthenope',2,'node',22),('per',1,'node',1),('pnra',1,'node',1),('pnraxxiv',14,'node',26),('pnraxxvii',13,'node',26),('posizionati',1,'node',1),('processi',1,'node',1),('prof',1,'node',2),('prof',2,'node',8),('progetti',1,'node',2),('progetto',1,'node',1),('programma',1,'node',1),('pubblications',15,'node',26),('punti',1,'node',1),('quattro',1,'node',1),('queste',1,'node',1),('ravaioli',1,'node',1),('responsabilità',1,'node',1),('rete',1,'node',1),('ricerche',1,'node',1),('ricerche',3,'node',8),('ross',1,'node',27),('ross',5,'node',26),('ross',9,'node',26),('ruolo',1,'node',1),('scientifica',1,'node',2),('scienze',2,'node',1),('sea',1,'node',30),('sea',5,'node',26),('sea',9,'node',26),('sensori',1,'node',1),('sotto',1,'node',1),('specificamente',1,'node',1),('spezie',1,'node',2),('spezie',2,'node',4),('studi',1,'node',1),('studi',2,'node',22),('studi',3,'node',4),('studio',1,'node',1),('svolte',3,'node',1),('svolto',1,'node',1),('tecnologie',2,'node',1),('the',1,'node',27),('the',5,'node',26),('the',7,'node',26),('the',8,'node',26),('the',9,'node',26),('the',12,'node',26),('undefined',1,'node',1),('undefined',2,'node',1),('undefined',3,'node',1),('undefined',4,'node',1),('undefined',5,'node',1),('undefined',7,'node',1),('undefined',8,'node',1),('undefined',9,'node',1),('undefined',10,'node',1),('undefined',12,'node',1),('undefined',13,'node',1),('undefined',14,'node',1),('undefined',15,'node',1),('uniparthenopeit',2,'node',28),('università',1,'node',1),('università',2,'node',22),('università',3,'node',4),('vengono',3,'node',1),('was',9,'node',1),('winter',9,'node',1);
/*!40000 ALTER TABLE `search_index` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `search_node_links`
--

DROP TABLE IF EXISTS `search_node_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `search_node_links` (
  `sid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'The search_dataset.sid of the searchable item containing the link to the node.',
  `type` varchar(16) NOT NULL DEFAULT '' COMMENT 'The search_dataset.type of the searchable item containing the link to the node.',
  `nid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'The node.nid that this item links to.',
  `caption` longtext DEFAULT NULL COMMENT 'The text used to link to the node.nid.',
  PRIMARY KEY (`sid`,`type`,`nid`),
  KEY `nid` (`nid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores items (like nodes) that link to other nodes, used...';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `search_node_links`
--

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

--
-- Table structure for table `search_total`
--

DROP TABLE IF EXISTS `search_total`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `search_total` (
  `word` varchar(50) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique word in the search index.',
  `count` float DEFAULT NULL COMMENT 'The count of the word in the index using Zipf’s law to equalize the probability distribution.',
  PRIMARY KEY (`word`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores search totals for words.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `search_total`
--

LOCK TABLES `search_total` WRITE;
/*!40000 ALTER TABLE `search_total` DISABLE KEYS */;
INSERT INTO `search_total` VALUES ('1994',0.30103),('2010',0.30103),('39',0.176091),('5476515',0.30103),('5476584',0.30103),('80143',0.30103),('81',0.176091),('abioclear',0.30103),('access',0.0163904),('acqua',0.30103),('affidato',0.30103),('alcuni',0.30103),('all',0.30103),('ambito',0.30103),('ancona',0.09691),('ancoraggi',0.30103),('ancoraggio',0.30103),('antartide',0.30103),('arine',0.30103),('attività',0.30103),('avvenuta',0.30103),('biogeochimici',0.30103),('bologna',0.09691),('bservatory',0.30103),('budillon',0.09691),('cambiamenti',0.30103),('catene',0.30103),('centro',0.30103),('chicago',0.30103),('chiusura',0.30103),('clima',0.30103),('climatici',0.30103),('collaborazione',0.30103),('colonna',0.30103),('commissione',0.30103),('con',0.09691),('consiglio',0.0511525),('contacts',0.0163904),('contrassegnati',0.30103),('cooperations',0.0163904),('csna',0.30103),('dal',0.30103),('data',0.0157943),('degli',0.01524),('dei',0.09691),('del',0.176091),('delle',0.0511525),('detti',0.30103),('dipartimento',0.30103),('direzionale',0.30103),('dist',0.30103),('distav',0.09691),('dottssa',0.30103),('experience',0.0163904),('fax',0.30103),('fin',0.30103),('finalità',0.30103),('fine',0.30103),('first',0.0163904),('fisici',0.30103),('garantire',0.30103),('genova',0.09691),('gestione',0.30103),('gestire',0.30103),('giancarlo',0.09691),('giancarlospezie',0.0299632),('giorgio',0.09691),('giorgiobudillon',0.0299632),('importante',0.30103),('ismar',0.0511525),('isola',0.30103),('italy',0.30103),('just',0.30103),('language',0.0321847),('lettere',0.30103),('mare',0.30103),('marine',0.00827253),('mooring',0.0115819),('moorings',0.0163904),('morsea',0.00768683),('napoli',0.0177288),('nasce',0.30103),('nazionale',0.0413927),('nel',0.176091),('nell',0.30103),('nella',0.30103),('network',0.0163904),('observatory',0.00553249),('oceanografici',0.30103),('oops',0.30103),('oss',0.30103),('papers',0.30103),('parthenope',0.0184834),('per',0.30103),('pnra',0.30103),('pnraxxiv',0.0163904),('pnraxxvii',0.0163904),('posizionati',0.30103),('processi',0.30103),('prof',0.0413927),('progetti',0.176091),('progetto',0.30103),('programma',0.30103),('pubblications',0.0163904),('punti',0.30103),('quattro',0.30103),('queste',0.30103),('ravaioli',0.30103),('responsabilità',0.30103),('rete',0.30103),('ricerche',0.0457575),('ross',0.0054629),('ruolo',0.30103),('scientifica',0.176091),('scienze',0.30103),('sea',0.00526424),('sensori',0.30103),('sotto',0.30103),('specificamente',0.30103),('spezie',0.0669468),('studi',0.0157943),('studio',0.30103),('svolte',0.30103),('svolto',0.30103),('tecnologie',0.30103),('the',0.00275743),('undefined',0.0321847),('uniparthenopeit',0.01524),('università',0.0157943),('vengono',0.30103),('was',0.30103),('winter',0.30103);
/*!40000 ALTER TABLE `search_total` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `semaphore`
--

DROP TABLE IF EXISTS `semaphore`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `semaphore` (
  `name` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique name.',
  `value` varchar(255) NOT NULL DEFAULT '' COMMENT 'A value for the semaphore.',
  `expire` double NOT NULL COMMENT 'A Unix timestamp with microseconds indicating when the semaphore should expire.',
  PRIMARY KEY (`name`),
  KEY `value` (`value`),
  KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Table for holding semaphores, locks, flags, etc. that...';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `semaphore`
--

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

--
-- Table structure for table `sequences`
--

DROP TABLE IF EXISTS `sequences`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sequences` (
  `value` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'The value of the sequence.',
  PRIMARY KEY (`value`)
) ENGINE=InnoDB AUTO_INCREMENT=172 DEFAULT CHARSET=utf8 COMMENT='Stores IDs.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sequences`
--

LOCK TABLES `sequences` WRITE;
/*!40000 ALTER TABLE `sequences` DISABLE KEYS */;
INSERT INTO `sequences` VALUES (171);
/*!40000 ALTER TABLE `sequences` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sessions`
--

DROP TABLE IF EXISTS `sessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sessions` (
  `uid` int(10) unsigned NOT NULL COMMENT 'The users.uid corresponding to a session, or 0 for anonymous user.',
  `sid` varchar(128) NOT NULL COMMENT 'A session ID. The value is generated by Drupal’s session handlers.',
  `ssid` varchar(128) NOT NULL DEFAULT '' COMMENT 'Secure session ID. The value is generated by Drupal’s session handlers.',
  `hostname` varchar(128) NOT NULL DEFAULT '' COMMENT 'The IP address that last used this session ID (sid).',
  `timestamp` int(11) NOT NULL DEFAULT 0 COMMENT 'The Unix timestamp when this session last requested a page. Old records are purged by PHP automatically.',
  `cache` int(11) NOT NULL DEFAULT 0 COMMENT 'The time of this user’s last post. This is used when the site has specified a minimum_cache_lifetime. See cache_get().',
  `session` longblob DEFAULT NULL COMMENT 'The serialized contents of $_SESSION, an array of name/value pairs that persists across page requests by this session ID. Drupal loads $_SESSION from here at the start of each request and saves it at the end.',
  PRIMARY KEY (`sid`,`ssid`),
  KEY `timestamp` (`timestamp`),
  KEY `uid` (`uid`),
  KEY `ssid` (`ssid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Drupal’s session handlers read and write into the...';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sessions`
--

LOCK TABLES `sessions` WRITE;
/*!40000 ALTER TABLE `sessions` DISABLE KEYS */;
INSERT INTO `sessions` VALUES (0,'-wMIUavYwM14fF1lvkYhFau9VPIOp0SEtVrUjTm6gYg','','213.180.203.23',1651978398,0,'messages|a:1:{s:5:\"error\";a:20:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://fileLNhtKX</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://fileqq7gg0</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'0uQgfMMIlTldgxYYb_b3-eree2lLfiuo9et6T8CwJeg','','40.77.167.24',1651909869,0,'messages|a:1:{s:5:\"error\";a:23:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:22;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'18hMZ8NnnN_VrCYbtae_FrAdcjqTBUYdVDPY7VsvrnI','','141.8.142.72',1651950371,0,'messages|a:1:{s:5:\"error\";a:21:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'1du6ag5HNPeha9YbVjVs39D2Uip7QAeUZyEy47uOa3M','','213.180.203.23',1652105987,0,'messages|a:1:{s:5:\"error\";a:23:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:22;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'1N8LiGyf7uSupM3UbcS_MUXnjmR9qofiWf8Dk_jrWUQ','','62.211.157.17',1652118827,0,'messages|a:1:{s:5:\"error\";a:21:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'2-4PgbGTMTtkBo3d8L79NqIcc9Zf_bhs6vYg_RYX1ws','','5.255.231.245',1652114147,0,'messages|a:1:{s:5:\"error\";a:21:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'2SOjVlR90M_VEJZoJ2mIemCtGOk2F_EVlmWhp3mZMWg','','213.180.203.23',1651978119,0,'messages|a:1:{s:5:\"error\";a:20:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://fileGwUMoJ</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://filesR746H</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'3KTAXwnPlmijGUWQUK3lCFTG4swaYcr5IsoFHPrbSkQ','','213.180.203.23',1652065299,0,'messages|a:1:{s:5:\"error\";a:23:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:22;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'3p9miEJQjntWBTtocAOVSYkprKL9tM-BlpoyOvtQgBg','','141.8.142.72',1652114221,0,'messages|a:1:{s:5:\"error\";a:21:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'3t38XZglfF7_Xi73w8Zgb8kI1ctywPkNh-jBNX-eg1E','','141.8.142.72',1651950408,0,'messages|a:1:{s:5:\"error\";a:21:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'3WxQPecBCnwRc_qKhU11AG-d61bdUGMFvOzm1Z2dsVU','','141.8.142.72',1652106018,0,'messages|a:1:{s:5:\"error\";a:23:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:22;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'42ksrkgBDMY2um2XelXn1dblrLlVNlJZaA_N9UCl_SA','','141.8.142.72',1652114243,0,'messages|a:1:{s:5:\"error\";a:23:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:22;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'47lxrUn-bNoPfT8KZQpsqf2_6sAX76FW0HdFB45-fa8','','185.191.171.25',1651954856,0,'messages|a:1:{s:5:\"error\";a:21:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'4FteSnxmgQQ1O0sUcjH99_mH0VMRU6RAYYj7qjTM2Sc','','213.180.203.23',1651977800,0,'messages|a:1:{s:5:\"error\";a:21:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://fileKBlvOT</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:16;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://file2CiKuS</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'4nbudl_J5U0V6WY08FgeDhH7HUK9ElO_IqGKB_wPiCo','','162.243.81.232',1652121980,0,'messages|a:1:{s:5:\"error\";a:21:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'58Zecd3bB8-bB0U1_k3nQ_IgsgRljK5WLbSlZLQq4oE','','66.249.73.237',1652035815,0,'messages|a:1:{s:5:\"error\";a:23:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:22;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'6J4KBzyFmNTFP_jJUgpMfe4U-Uyht5emdM1vFSTvvSA','','17.121.113.246',1652138069,0,'messages|a:1:{s:5:\"error\";a:23:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:22;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'6sKgCokzNoIaPe5XtU9RMAQ6uJ_WsXrHz3e9x_9edDg','','94.130.237.170',1652142021,0,'messages|a:1:{s:5:\"error\";a:23:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:22;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'6UsFSVT-j4YGizSImTd3av3uf3_3ofL7kkqiZafu4vE','','5.255.231.245',1651978367,0,'messages|a:1:{s:5:\"error\";a:20:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://filexsHMlb</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://filePLdWw8</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'7demPfui9qWz7heASfnxqDECNYUCcNZol9zyH8CXqvU','','114.119.143.177',1651946869,0,'messages|a:1:{s:5:\"error\";a:21:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'8bsmUj_5pInByNLqLz88-MsLgubPjiKopmdJc0n9rc4','','213.180.203.23',1651896195,0,'messages|a:1:{s:5:\"error\";a:20:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://fileis2YYl</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://fileWfXfYo</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'8uzDwGg3X0PPzbd84LP1vrU1XZ55Y4z2mdchPvL68zk','','141.8.142.72',1651950381,0,'messages|a:1:{s:5:\"error\";a:20:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://filepF1Xe4</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://file2pIUq5</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'9aA4dQt_-jmx6RKS9ZVUta4as4WIuB6akaJ1q04yH6Y','','50.62.176.219',1652042667,0,'messages|a:1:{s:5:\"error\";a:21:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'9KKGisNmBQLhhLYUZXepsuxW0AJymkaAVC8oOAxlzqw','','141.8.142.72',1652114245,0,'messages|a:1:{s:5:\"error\";a:20:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://fileleLxR5</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://fileKhRcb5</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(1,'9PLnlBhKE_Ue9G4MW92GRDsoMF1zBnIhskwMYNAblFI','','10.100.8.231',1652092007,0,'messages|a:1:{s:5:\"error\";a:30:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:22;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:23;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:24;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:25;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:26;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:27;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:28;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:29;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'9rX8AO0WAm8uIR4sFreJcEaDqcH7G1YkvgqplxNqG7c','','207.46.13.64',1651916561,0,'messages|a:1:{s:5:\"error\";a:22:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://file1KDSVK</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://file1QidOI</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'AY7pyE3Bsuc4CZGlCcUWbBj1nsqR6ObHy-5wINvQfKE','','10.100.8.231',1652090472,0,'messages|a:1:{s:5:\"error\";a:21:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'B34Y1vjIA0UfNDvnJyFfniv6uF6f19Bw1o9OEuGCHWU','','141.8.142.72',1651975333,0,'messages|a:1:{s:5:\"error\";a:23:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:22;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'B7t9q0yDKTcs7VyRcFt32DVCDR3UmQ8XcZLY9MWR5ng','','10.100.9.116',1652170088,0,'messages|a:1:{s:5:\"error\";a:22:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'b7UYtMgM3ArMtVyl06Xx2eYMRld15qOeEIDnuJnGvCg','','213.180.203.23',1651950442,0,'messages|a:1:{s:5:\"error\";a:20:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://fileVD31Ca</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://filetVGTu7</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'b7zjtF6bnhBPNseRP3BBEIYy50mlD9Fg4g1zm1RyFTU','','213.180.203.23',1651950440,0,'messages|a:1:{s:5:\"error\";a:20:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://fileVL0i48</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://filejxkuX7</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'B8ia19Bqit4kOqbt-AC2iA6ET4pmLjMv1RSOaJJ4Ggo','','157.55.39.30',1652097969,0,'messages|a:1:{s:5:\"error\";a:21:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'Ba85OLyDS7ogpGBjBBUPe31wRmbl_yQsWmU7EyOx7gQ','','66.249.73.233',1652045293,0,'messages|a:1:{s:5:\"error\";a:21:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'BgqOyGVlEaKPGIFyAqtws800UVFJhLdO3FeSkBVG7Ho','','141.8.142.72',1651950334,0,'messages|a:1:{s:5:\"error\";a:21:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'bs2udDlQys7a_zI6mqEGyGiGRMdbL5LxoDmXjldjBaU','','94.130.237.170',1652141700,0,'messages|a:1:{s:5:\"error\";a:23:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:22;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'bSgaSOrurpmh71ObW_dxwPqUMyf0L6wOabeahmz9HCg','','141.8.142.72',1652114223,0,'messages|a:1:{s:5:\"error\";a:21:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'bYNRlCEiaJKRL0lucR5jL3Q4iYwiBY9FY7WX2JGiiIc','','141.8.142.72',1651981608,0,'messages|a:1:{s:5:\"error\";a:23:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:22;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'c2xa_DHjEt71pGs6C7df6T44oaP73stCvn04MYVDZhQ','','141.8.142.72',1652106021,0,'messages|a:1:{s:5:\"error\";a:22:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://filen5NRh7</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://filesK3MV8</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'CdkB6cblNUP_hZqyyxWs-dUYjU4rHHU9W7bB-CFeVk8','','141.8.142.72',1651893273,0,'messages|a:1:{s:5:\"error\";a:23:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:22;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'D22dcOmDWLlq2JokucrrMmUSIuHk0EZ5wQUOd6job60','','141.8.142.72',1651978050,0,'messages|a:1:{s:5:\"error\";a:20:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://fileVkZA3b</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://fileE5ivc9</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'D2wwizqKghDE9EyyZQCJz4XMdLEU77c7g6KfsDrL8EA','','141.8.142.72',1651945405,0,'messages|a:1:{s:5:\"error\";a:20:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://fileUPuMka</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://file0KIBja</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'dlpekx70VgoGSfD-XGUMRR0VHe8tNAW0XUJVg7jSaJk','','213.180.203.23',1651978054,0,'messages|a:1:{s:5:\"error\";a:22:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://filevmN4wX</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://fileaVIGFW</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'dQ-VJOnwN5UvLKMItNWrZzviGVAbiIroAL2qkMFzeD4','','213.180.203.23',1651950490,0,'messages|a:1:{s:5:\"error\";a:20:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://filerFMQLl</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://filetGh2bp</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'DRRHXwcFFUN6aWdywrcV9ri2GvhWSNHxRlUxQPW6sJw','','213.180.203.23',1651950360,0,'messages|a:1:{s:5:\"error\";a:21:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'Dy4PExZh3bpdBRSYUTl9mkZwM3OmZhKqjuqVnwgC_m0','','213.180.203.23',1652053037,0,'messages|a:1:{s:5:\"error\";a:21:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'E-t2W0ISPVTrLrCuT1y3kRVeTgVvQve2W3XYpKJDQz0','','185.191.171.5',1652083208,0,'messages|a:1:{s:5:\"error\";a:23:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:22;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'E8H0f3OrSSzSuZTrRyp6WCNt3uReOpX480NDhPgCo2A','','157.55.39.30',1652016069,0,'messages|a:1:{s:5:\"error\";a:21:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'eCF9-XH64sHKz6Fg-vQMelrIvYv_-17Wv89UuwqAs0g','','141.8.142.72',1651978601,0,'messages|a:1:{s:5:\"error\";a:20:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://fileeMtQEK</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://fileVopzkK</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'eIHaLTjkXnpxHt1pTzRkUb0jpu2YhkSyUuB3ZS8sjcU','','106.75.134.236',1652037073,0,'messages|a:1:{s:5:\"error\";a:21:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'eRmVeSCxKxKGnSIb-5QOqVht_pEfeYV_kzAobpZGXXA','','192.168.241.66',1652095118,0,'messages|a:1:{s:5:\"error\";a:21:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'ESdhu8zAqyaN92foT-LjqGJ8D0jU7ETzIbOUNerLA4M','','87.250.224.24',1651978342,0,'messages|a:1:{s:5:\"error\";a:20:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://file4OArZV</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://file5BBW2T</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'e_s7xOiGCBJ2qhO92QqPwabBPlKu1FE2RmwcEo0e2yQ','','94.130.237.170',1652141811,0,'messages|a:1:{s:5:\"error\";a:23:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:22;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'fp0PVBRPlZjdUPVQX3eToReQzngaeh3srHEtoyVlOEw','','157.55.39.30',1651980603,0,'messages|a:1:{s:5:\"error\";a:21:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'fTudLZu7tfRs6bZfX4nCMstVgbfSLyt8RmlhF1sw6kc','','213.180.203.23',1651892282,0,'messages|a:1:{s:5:\"error\";a:20:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://fileVf9MTp</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://fileEaAHMm</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'g0VNX87JBSqrCs4tAIybh0hc-fff1WOMnA-ePHiODmk','','213.180.203.23',1652150884,0,'messages|a:1:{s:5:\"error\";a:22:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://fileCQigDb</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://fileDaWdha</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'GfyPLa_hh_-uorZaJGO4bnAExHzuBKKV1ubt-6mu0CY','','213.180.203.23',1651971359,0,'messages|a:1:{s:5:\"error\";a:20:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://filefAYg9B</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://file3iOW7D</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'GkUSPFAEt2snXUAkF_8yaY4o-a8yuE8J9v8WR64IfXw','','213.180.203.23',1651978052,0,'messages|a:1:{s:5:\"error\";a:20:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://fileplUFpX</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://filefMXB4X</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'GstcMEUvOBtHNbxA4e0qIBBYCHaJ3DIUHErsMDZqqoU','','141.8.142.72',1652000358,0,'messages|a:1:{s:5:\"error\";a:20:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://filem6lExc</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://filec0Q677</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'GT5yjYv3-4RLSKPRDRYbpMp1yN-9KbnaC-ERJ8CHcls','','94.130.237.170',1652141728,0,'messages|a:1:{s:5:\"error\";a:23:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:22;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'HCN-cwPr9hqm2xxH5iGwBQ2sMtxqCbiU_T2klUaV7ps','','141.8.142.72',1652114215,0,'messages|a:1:{s:5:\"error\";a:20:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://filePb6Tmd</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://filezSNrGb</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'hl5s45SJk8qZYnFaqadEOJI-bDEx6WQbOEK8ljPtQP8','','5.255.231.245',1652114212,0,'messages|a:1:{s:5:\"error\";a:21:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'hs9O9uFp3b1YwbKjmGY0wFNg-2dS8ZKG2L4V6Kyw-Sc','','68.183.178.222',1652041999,0,'messages|a:1:{s:5:\"error\";a:21:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'i4FZLPlK1sL6vxp4qquh4OOyPCYK0cYvht_I-GfOmcc','','141.8.142.72',1652114218,0,'messages|a:1:{s:5:\"error\";a:23:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:22;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'iSY9qK9i71KF5ddTUfiw-149FNk8LTS7bnEoUThto2U','','207.46.13.125',1651939878,0,'messages|a:1:{s:5:\"error\";a:23:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:22;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'IUmDYa20TpOm8W_6Hin2qgV2qv8wUvWiBwPPwTSevPw','','87.250.224.24',1651892709,0,'messages|a:1:{s:5:\"error\";a:21:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'jhNd5Z7j0mUHo19nJWF_wUbQQF1aBmqib11rbcfeBMs','','213.180.203.23',1652137011,0,'messages|a:1:{s:5:\"error\";a:21:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'JpFWK-GzB0Uj_7SBe7XjwUPTXT4VXW8tnQ_XLyeZE_8','','213.180.203.23',1651978043,0,'messages|a:1:{s:5:\"error\";a:20:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://file7VjZA4</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://filelOwDL3</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'K4zpc65SrgxHqd97L3_0aZi2VjNEnP2xD6OGJeLvZdo','','162.241.226.205',1651911807,0,'messages|a:1:{s:5:\"error\";a:21:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'kg1OJeEYM5cneCW2yU7BIWhhtWqJ7prZvsiZd5kgAKs','','141.8.142.72',1651893275,0,'messages|a:1:{s:5:\"error\";a:21:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'lCOVHi--Wj7aeOkwap96JWF0A1zwmhmgx19dMKQcsN8','','213.180.203.23',1651978059,0,'messages|a:1:{s:5:\"error\";a:20:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://fileq0JGiZ</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://file2jbiAY</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'n9ibx83w2um48gg2qnRT97-exO2XeiMFpQxaKL0pNBQ','','213.180.203.23',1652114453,0,'messages|a:1:{s:5:\"error\";a:20:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://fileVfa3jK</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://filecn7DIM</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'NCmag97k9YlzDrJgZksA_xX8ucTminfZDT5NyTDuMrQ','','94.130.237.170',1652141888,0,'messages|a:1:{s:5:\"error\";a:23:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:22;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'nfzWf6M4GL7MWmgFjnIhJqsfwaHWMVErBNP5LCt8FWU','','141.8.142.72',1652114240,0,'messages|a:1:{s:5:\"error\";a:20:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://fileo2yAB7</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://fileM6p7e8</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'nTclAJ7fPSrJkCgPAQvs196z2uHsxSpXKh81Xc-E0vc','','157.55.39.30',1651898473,0,'messages|a:1:{s:5:\"error\";a:21:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'o40bf_vVM-8DfC1YeO7YK73onwz3eUwLTKH9pS3mz_s','','213.180.203.23',1652114247,0,'messages|a:1:{s:5:\"error\";a:20:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://fileonJiFB</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://fileqiqNRB</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'OCCGxFgEpeFOSzBS6faX2Yssd4Ob0TFx-b3JRtlDcL8','','213.180.203.23',1651978040,0,'messages|a:1:{s:5:\"error\";a:20:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://fileFkqre2</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://fileY4C0W0</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'OE0or6hRmN6pNbsiw3QUXbNLx6qphAP0rUO2pEk7g9A','','213.180.203.23',1651892279,0,'messages|a:1:{s:5:\"error\";a:21:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'OFRHB0iVsBLeJ5rCvCzhVgqLxrMSzTwRzbK_9a_iTEs','','94.130.237.170',1652141925,0,'messages|a:1:{s:5:\"error\";a:23:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:22;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'OGHCNG8K3Uz1eeVbsQDb0Lr0J5jXzBRgVuiDn0eT1Lc','','94.130.237.170',1652142122,0,'messages|a:1:{s:5:\"error\";a:23:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:22;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'oHz0p9OBNi856FjcZ8KqEeFRDuSYo8eybN_cR6LYpXk','','213.180.203.23',1651975265,0,'messages|a:1:{s:5:\"error\";a:23:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:22;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'oq_s3zM6hF02wc9xr38DAqs1DJOyHBlDK2K2_LqgwDU','','141.8.142.72',1652073309,0,'messages|a:1:{s:5:\"error\";a:21:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'pcBtqkF2jCOXVaaxkRknPWplk2XQLP9UlcDb6oSlcJI','','141.8.142.72',1651975142,0,'messages|a:1:{s:5:\"error\";a:22:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://fileYem6gX</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://file1A1Pj0</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'PdFJWCKkebWEadKeyjtZplotfNkuIi0TO4FUlWFEgPU','','66.249.73.237',1652042861,0,'messages|a:1:{s:5:\"error\";a:22:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://fileUT4ZuF</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://filepk8wAC</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'pj1sEdssJNHcD8Do0AUClammSOI9Fu00oM8F9huFRQU','','185.191.171.41',1652059864,0,'messages|a:1:{s:5:\"error\";a:23:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:22;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'pO2AcbMh1iYrCxqMc5t13N1nGbU5qxVOFHRKg67SbLU','','213.180.203.23',1651896197,0,'messages|a:1:{s:5:\"error\";a:20:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://filer0NrGl</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://file3fprkp</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'PxkWVs-MhqwJY_QzXqT1i8TRQeYmDuM5ixgQv2sbF0A','','94.130.237.170',1652142090,0,'messages|a:1:{s:5:\"error\";a:23:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:22;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'Qu31rN0uUPg1pE8kJzEB_UCMIc9S0Np-DNz9TuWP4f8','','5.255.231.245',1651978045,0,'messages|a:1:{s:5:\"error\";a:20:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://fileomWuIP</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://fileYtfIjP</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'QWwcWSKz5Ehtqd8ha9WgIijGQ_5GMBa_yEc6zrjoTGo','','207.46.13.125',1651916562,0,'messages|a:1:{s:5:\"error\";a:22:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://fileN27cO1</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://filejpvgW1</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'R4AcZ_DaYFLGGpuDP7aO36LfxTbXcgE0rsOMdQTFqzE','','141.8.142.72',1651950368,0,'messages|a:1:{s:5:\"error\";a:20:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://filety9sd1</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://fileUzLJZ1</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'RB-XzMF-CiPI8hppe4_D3kSpFpwb0OH9cr5hFCNPgYQ','','94.130.237.170',1652141849,0,'messages|a:1:{s:5:\"error\";a:23:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:22;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'rpMf9iEPext50FpJxOOzp0w-AtY4PUmWcqPxwLylXNw','','20.187.103.56',1652065720,0,'messages|a:1:{s:5:\"error\";a:21:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'RpN4a-92NH5yTrsEA-_tfvX73fw9srp56MpgdDrDElU','','141.8.142.72',1651893270,0,'messages|a:1:{s:5:\"error\";a:21:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'rxKlHIWhuP5_mIH5Ff6XV3lBqifxuhNmfV44SJHCJBI','','213.180.203.23',1651978035,0,'messages|a:1:{s:5:\"error\";a:20:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://filer9AOE2</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://file0PwAG3</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'scnMONjwkwDYS-O0m5wu1HB1C1gJvzUH9-GZUWjvS6s','','141.8.142.72',1651981543,0,'messages|a:1:{s:5:\"error\";a:22:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://filecNTZ2H</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://filexURajL</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'sCZI2P_ld4_xAxLs2SnldnIp4rpJ0sfUaX6UfX-hZ6Y','','141.8.142.72',1651950405,0,'messages|a:1:{s:5:\"error\";a:21:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'SHorPepeEY4Cvgmgn6O4h8-2RypBy1IZcyfR7KBFVdQ','','94.130.237.170',1652141788,0,'messages|a:1:{s:5:\"error\";a:23:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:22;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'Stl1N8yGE2Tmnn1I0neoBQQPOhzAzNiZnEG49pu5jFA','','213.180.203.23',1651895940,0,'messages|a:1:{s:5:\"error\";a:20:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://filelho5Cj</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://filegz2x1h</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'sztrc1mu71-XlRIFIFRaHjHNxH2hUSW_fog_It6z-zM','','213.180.203.23',1651978038,0,'messages|a:1:{s:5:\"error\";a:20:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://filelfJfV4</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://file4zOUn3</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'tbXUgWkPjucLuBiK6uHBXK5TY9ptkkyPxO4sGwutX30','','94.130.237.170',1652141961,0,'messages|a:1:{s:5:\"error\";a:22:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'TFQTfPlZQLBN8jIoChgvTQbml9OVtq1zQ0r3NTF8QDc','','114.119.143.226',1652051034,0,'messages|a:1:{s:5:\"error\";a:23:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:22;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'TjmOnxaiC1atiNd3Cs0GfVJhOKmf-WcMbdGgnWNwIM8','','213.180.203.23',1652102742,0,'messages|a:1:{s:5:\"error\";a:21:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'TKYxfK8HUltM-fO4_aE5NmmhJER_lWL_l82wj7W2ASg','','141.8.142.72',1651892359,0,'messages|a:1:{s:5:\"error\";a:22:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://fileo5GD9e</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://fileVDYnpc</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'Ts-wNpGlBZIwaZLnlVwa6ZLcayYrRxIsR4iTWEqqKXQ','','192.168.244.239',1652168622,0,'messages|a:1:{s:5:\"error\";a:24:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:22;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:23;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'TVGZlVUkIkoj2GtdNSgLrn36XsUi86KFwLPWbAcjL4E','','185.191.171.38',1652139853,0,'messages|a:1:{s:5:\"error\";a:23:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:22;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'tYbNKKpsoTprE1O6vgVMqE7q2OGbVJVdRFk_e7GBr2o','','94.130.237.170',1652142172,0,'messages|a:1:{s:5:\"error\";a:23:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:22;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'uj3glLJgYaA3cR8GTSzqf-ZgA7-Uk01rUDe0dCuxYX0','','213.180.203.23',1651893960,0,'messages|a:1:{s:5:\"error\";a:23:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:22;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(1,'UJsQd03jQilDSzBO-cpRLkbj7mWOFbJf8j4_ka2O1aU','','192.168.241.80',1652171442,0,'messages|a:1:{s:5:\"error\";a:31:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:22;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:23;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:24;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:25;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:26;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:27;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:28;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:29;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:30;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'UMCh1bjf3OXJ0UhseuBbiSfsOdZkmNBPRqnjbU-_0jw','','66.249.76.43',1651911701,0,'messages|a:1:{s:5:\"error\";a:23:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:22;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'uVOl-IMN-rAYcZOB4NjfBs4JfWJP0hkG_U0b4aIB-uA','','213.180.203.23',1651891982,0,'messages|a:1:{s:5:\"error\";a:20:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://fileQeZ6hL</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://fileY5ORiK</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'uXqni5VxgP026--_RornimHSy53-WTeFQRxFfqUjYcA','','213.180.203.23',1651892272,0,'messages|a:1:{s:5:\"error\";a:20:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://file5L6qFl</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://filelN1bwl</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'v2KgdikUkjIxxaE_uAfOrL4thvvlvSiTze04eMdAqSI','','140.79.15.98',1652153580,0,'messages|a:1:{s:5:\"error\";a:23:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:22;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'VArCTLl_CCmFFuCQ4rzefiIqWov_upkzR1v02nEOoTA','','213.180.203.23',1651978832,0,'messages|a:1:{s:5:\"error\";a:20:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://file5OWPrb</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://filefecAB9</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'vDPzMC-G3lOVA03zpdlk5k9-RTsHSWWRd4ZTkxOPSCU','','213.180.203.23',1651896259,0,'messages|a:1:{s:5:\"error\";a:20:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://file8lPZYc</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://filegbMSzc</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'Vr6ED7GNpBegUfUguXbf2ZXi_ut_ekijDnnwM43mHDg','','213.180.203.23',1651978057,0,'messages|a:1:{s:5:\"error\";a:20:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://fileyJQOjX</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://fileMTSRfY</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'vRS6AaDr-mFvbcjCtAth2mVenUPFDi2ryarGyXki2mE','','66.249.73.235',1652151025,0,'messages|a:1:{s:5:\"error\";a:21:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'wLjjCJiU3NBO_uWd3CKTOYdz8WP5QtPIV5srfn53XOA','','94.130.237.170',1652142287,0,'messages|a:1:{s:5:\"error\";a:23:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:22;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'wlstyECLx2FqujtXhAsD8q6ffveRpayjAz6aLlPC4AI','','213.180.203.23',1651896199,0,'messages|a:1:{s:5:\"error\";a:20:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://fileUbTUvo</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://file13ovwn</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'wNa3FFE1LAqOaCihCFEhirXzUBo_zL86QwXVWPG_8sU','','157.55.39.30',1652145712,0,'messages|a:1:{s:5:\"error\";a:21:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'wq_b5Mwn8mXw6vARZj047_PFL_SLPhQ5lPI8D3G1LhE','','52.173.147.112',1652093737,0,'messages|a:1:{s:5:\"error\";a:21:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'wUZRknO0cYQ9fGmEAqn8js67DRtrDc9BTdWy9olaVew','','192.168.160.26',1652165178,0,'messages|a:1:{s:5:\"error\";a:21:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'wxwWpbEBNrJEtoyf69hbMVpLay4mwn6MKxLJfjlYyKc','','185.191.171.8',1652157407,0,'messages|a:1:{s:5:\"error\";a:23:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:22;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'x-JdP-GgZ8DPYBnU8820trK6Ry1x2rRmON7KXoO8ObE','','5.91.180.222',1652094529,0,'messages|a:1:{s:5:\"error\";a:21:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'x1nWrgHn6v4E_jNL5Dlk5yPkWPhkRYVWdn6bLlwcJyg','','10.100.8.231',1652090271,0,'messages|a:1:{s:5:\"error\";a:21:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'XD4eMaKFUI5m1OzoTVfJcuS_zb1v-MGQ1wDgMKyfLJo','','3.68.88.116',1652124074,0,'messages|a:1:{s:5:\"error\";a:21:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'XKTYr5u5lioTKOX_ElYd07G5lHJAlp3Ufd2xTaEO7QA','','10.100.9.48',1652089957,0,'messages|a:1:{s:5:\"error\";a:21:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'yC1XXFKO8vle-mWauu-B0KjxBKcEnGfkXowiQN5YThs','','94.130.237.170',1652141680,0,'messages|a:1:{s:5:\"error\";a:23:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:22;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'ye2IkeEjIHnSDbNDjieD_BleOtZE4bFHo4CX4oa96lk','','213.180.203.23',1652114250,0,'messages|a:1:{s:5:\"error\";a:20:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://fileD4Nabz</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://filegLKXqz</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'YiU32DCKeeZErUTxxYRPD5XA9I-hf7bH7_GyvM5gBws','','213.180.203.23',1651892276,0,'messages|a:1:{s:5:\"error\";a:20:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://fileae4kNm</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://fileVEaOZo</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'yJqHgdIL0CcUZqRxVVLxbzPsfipZr7H2ctZxA1MKya0','','94.130.237.170',1652142223,0,'messages|a:1:{s:5:\"error\";a:23:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:22;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'ymMLj_tidQAkgyBBej75P4FtFgHXEyG9b4XHZ_QDSiM','','157.55.39.30',1652062602,0,'messages|a:1:{s:5:\"error\";a:21:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'Yp3b0LpmByKMSB0oEvPL7jK4KtIgViBPFplAESuMICA','','94.130.237.170',1652142057,0,'messages|a:1:{s:5:\"error\";a:23:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:22;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'Zozu_Dc6_htIHcc4KJOuT-0ip7QtY5UXD5o8M3Zq_HM','','141.8.142.72',1651950365,0,'messages|a:1:{s:5:\"error\";a:21:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'zvrKzyGpeHsH0wN2WC6HZG0PTmHPSqIjGrSdHU_5j6s','','66.249.76.44',1651910815,0,'messages|a:1:{s:5:\"error\";a:23:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:22;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'_CNQOKl0bpxUmfeFez6LA4rMvuCCEV0VVTGJ-JxWaIs','','157.55.39.30',1651922451,0,'messages|a:1:{s:5:\"error\";a:23:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:22;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'_dLNJUrg41aTjsPliS4mem-qD_ZaeT8Ta4SFzou6zMc','','94.130.237.170',1652142257,0,'messages|a:1:{s:5:\"error\";a:23:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:21;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:22;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'_DqHweJT2VDflN24uPYHQFT-2eq7D1QWDeFHA0Wll24','','157.55.39.30',1651934099,0,'messages|a:1:{s:5:\"error\";a:21:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}'),(0,'_Nv6lIdkbG4didBCMvFpOYJxeIBoOe5h_JVymlMQsPg','','5.255.231.245',1651978047,0,'messages|a:1:{s:5:\"error\";a:20:{i:0;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://filefqow6N</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";i:15;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:269:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (linea <em class=\"placeholder\">6595</em> di <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:294:\"Non è stato possibile copiare il file <em class=\"placeholder\">temporary://fileEkVV7N</em>, poiché la cartella di destinazione non è configurata correttamente. Questo può derivare da un problema con i permessi dei file o delle cartelle. Per maggiori informazioni controlla il log di sistema.\";}}'),(0,'_OdP3NKBXmIZqvaVbYGxiEe1wfLfu6Rk93eY3GzwdjU','','5.255.253.124',1651980073,0,'messages|a:1:{s:5:\"error\";a:21:{i:0;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:1;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:2;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:3;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:4;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:5;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:6;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:7;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:8;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:9;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:10;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:11;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:12;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:13;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:14;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:15;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:16;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:17;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:18;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:19;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";i:20;s:268:\"<em class=\"placeholder\">Notice</em>: Trying to access array offset on value of type int in <em class=\"placeholder\">element_children()</em> (line <em class=\"placeholder\">6595</em> of <em class=\"placeholder\">/var/www/html/antarctic-drupal-7.31/includes/common.inc</em>).\";}}');
/*!40000 ALTER TABLE `sessions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `shortcut_set`
--

DROP TABLE IF EXISTS `shortcut_set`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `shortcut_set` (
  `set_name` varchar(32) NOT NULL DEFAULT '' COMMENT 'Primary Key: The menu_links.menu_name under which the set’s links are stored.',
  `title` varchar(255) NOT NULL DEFAULT '' COMMENT 'The title of the set.',
  PRIMARY KEY (`set_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores information about sets of shortcuts links.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `shortcut_set`
--

LOCK TABLES `shortcut_set` WRITE;
/*!40000 ALTER TABLE `shortcut_set` DISABLE KEYS */;
INSERT INTO `shortcut_set` VALUES ('shortcut-set-1','Default');
/*!40000 ALTER TABLE `shortcut_set` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `shortcut_set_users`
--

DROP TABLE IF EXISTS `shortcut_set_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `shortcut_set_users` (
  `uid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'The users.uid for this set.',
  `set_name` varchar(32) NOT NULL DEFAULT '' COMMENT 'The shortcut_set.set_name that will be displayed for this user.',
  PRIMARY KEY (`uid`),
  KEY `set_name` (`set_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Maps users to shortcut sets.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `shortcut_set_users`
--

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

--
-- Table structure for table `system`
--

DROP TABLE IF EXISTS `system`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `system` (
  `filename` varchar(255) NOT NULL DEFAULT '' COMMENT 'The path of the primary file for this item, relative to the Drupal root; e.g. modules/node/node.module.',
  `name` varchar(255) NOT NULL DEFAULT '' COMMENT 'The name of the item; e.g. node.',
  `type` varchar(12) NOT NULL DEFAULT '' COMMENT 'The type of the item, either module, theme, or theme_engine.',
  `owner` varchar(255) NOT NULL DEFAULT '' COMMENT 'A theme’s ’parent’ . Can be either a theme or an engine.',
  `status` int(11) NOT NULL DEFAULT 0 COMMENT 'Boolean indicating whether or not this item is enabled.',
  `bootstrap` int(11) NOT NULL DEFAULT 0 COMMENT 'Boolean indicating whether this module is loaded during Drupal’s early bootstrapping phase (e.g. even before the page cache is consulted).',
  `schema_version` smallint(6) NOT NULL DEFAULT -1 COMMENT 'The module’s database schema version number. -1 if the module is not installed (its tables do not exist); 0 or the largest N of the module’s hook_update_N() function that has either been run or existed when the module was first installed.',
  `weight` int(11) NOT NULL DEFAULT 0 COMMENT 'The order in which this module’s hooks should be invoked relative to other modules. Equal-weighted modules are ordered by name.',
  `info` blob DEFAULT NULL COMMENT 'A serialized array containing information from the module’s .info file; keys can include name, description, package, version, core, dependencies, and php.',
  PRIMARY KEY (`filename`),
  KEY `system_list` (`status`,`bootstrap`,`type`,`weight`,`name`),
  KEY `type_name` (`type`,`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='A list of all modules, themes, and theme engines that are...';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `system`
--

LOCK TABLES `system` WRITE;
/*!40000 ALTER TABLE `system` DISABLE KEYS */;
INSERT INTO `system` VALUES ('modules/aggregator/aggregator.module','aggregator','module','',0,0,-1,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/aggregator/tests/aggregator_test.module','aggregator_test','module','',0,0,-1,0,'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.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/block/block.module','block','module','',1,0,7009,-5,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/block/tests/block_test.module','block_test','module','',0,0,-1,0,'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.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/blog/blog.module','blog','module','',0,0,-1,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/book/book.module','book','module','',0,0,-1,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/color/color.module','color','module','',1,0,7001,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/comment/comment.module','comment','module','',1,0,7009,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/contact/contact.module','contact','module','',1,0,7003,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/contextual/contextual.module','contextual','module','',1,0,0,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/dashboard/dashboard.module','dashboard','module','',1,0,0,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/dblog/dblog.module','dblog','module','',1,1,7003,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/field/field.module','field','module','',1,0,7004,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/field/modules/field_sql_storage/field_sql_storage.module','field_sql_storage','module','',1,0,7002,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/field/modules/list/list.module','list','module','',1,0,7002,0,'a:12:{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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/field/modules/list/tests/list_test.module','list_test','module','',0,0,-1,0,'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.59\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/field/modules/number/number.module','number','module','',1,0,0,0,'a:12:{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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/field/modules/options/options.module','options','module','',1,0,0,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/field/modules/text/text.module','text','module','',1,0,7000,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;s:11:\"explanation\";s:76:\"Field type(s) in use - see <a href=\"/?q=admin/reports/fields\">Field list</a>\";}'),('modules/field/tests/field_test.module','field_test','module','',0,0,-1,0,'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.59\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/field_ui/field_ui.module','field_ui','module','',1,0,0,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/file/file.module','file','module','',1,0,0,0,'a:12:{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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/file/tests/file_module_test.module','file_module_test','module','',0,0,-1,0,'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.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/filter/filter.module','filter','module','',1,0,7010,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/forum/forum.module','forum','module','',1,0,7012,1,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/help/help.module','help','module','',1,0,0,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/image/image.module','image','module','',1,0,7005,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;s:8:\"required\";b:1;s:11:\"explanation\";s:76:\"Field type(s) in use - see <a href=\"/?q=admin/reports/fields\">Field list</a>\";}'),('modules/image/tests/image_module_test.module','image_module_test','module','',0,0,-1,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/locale/locale.module','locale','module','',1,0,7005,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/locale/tests/locale_test.module','locale_test','module','',0,0,-1,0,'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.59\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/menu/menu.module','menu','module','',1,0,7003,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/node/node.module','node','module','',1,0,7016,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/node/tests/node_access_test.module','node_access_test','module','',0,0,-1,0,'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.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/node/tests/node_test.module','node_test','module','',0,0,-1,0,'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.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/node/tests/node_test_exception.module','node_test_exception','module','',0,0,-1,0,'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.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/openid/openid.module','openid','module','',0,0,-1,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/openid/tests/openid_test.module','openid_test','module','',0,0,-1,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/overlay/overlay.module','overlay','module','',1,1,0,0,'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.59\";s:4:\"core\";s:3:\"7.x\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/path/path.module','path','module','',1,0,0,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/php/php.module','php','module','',1,0,0,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/poll/poll.module','poll','module','',0,0,-1,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/profile/profile.module','profile','module','',0,0,-1,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/rdf/rdf.module','rdf','module','',1,0,0,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/rdf/tests/rdf_test.module','rdf_test','module','',0,0,-1,0,'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.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:12:\"dependencies\";a:1:{i:0;s:4:\"blog\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/search/search.module','search','module','',0,0,7000,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/search/tests/search_embedded_form.module','search_embedded_form','module','',0,0,-1,0,'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.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/search/tests/search_extra_type.module','search_extra_type','module','',0,0,-1,0,'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.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/search/tests/search_node_tags.module','search_node_tags','module','',0,0,-1,0,'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.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/shortcut/shortcut.module','shortcut','module','',1,0,0,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/simpletest/simpletest.module','simpletest','module','',0,0,-1,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/actions_loop_test.module','actions_loop_test','module','',0,0,-1,0,'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.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/ajax_forms_test.module','ajax_forms_test','module','',0,0,-1,0,'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.59\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/ajax_test.module','ajax_test','module','',0,0,-1,0,'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.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/batch_test.module','batch_test','module','',0,0,-1,0,'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.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/boot_test_1.module','boot_test_1','module','',0,0,-1,0,'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.59\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/boot_test_2.module','boot_test_2','module','',0,0,-1,0,'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.59\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/common_test.module','common_test','module','',0,0,-1,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/common_test_cron_helper.module','common_test_cron_helper','module','',0,0,-1,0,'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.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/database_test.module','database_test','module','',0,0,-1,0,'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.59\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/drupal_autoload_test/drupal_autoload_test.module','drupal_autoload_test','module','',0,0,-1,0,'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.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.module','drupal_system_listing_compatible_test','module','',0,0,-1,0,'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.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.module','drupal_system_listing_incompatible_test','module','',0,0,-1,0,'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.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/entity_cache_test.module','entity_cache_test','module','',0,0,-1,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/entity_cache_test_dependency.module','entity_cache_test_dependency','module','',0,0,-1,0,'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.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/entity_crud_hook_test.module','entity_crud_hook_test','module','',0,0,-1,0,'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.59\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/entity_query_access_test.module','entity_query_access_test','module','',0,0,-1,0,'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.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/error_test.module','error_test','module','',0,0,-1,0,'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.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/file_test.module','file_test','module','',0,0,-1,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/filter_test.module','filter_test','module','',0,0,-1,0,'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.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/form_test.module','form_test','module','',0,0,-1,0,'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.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/image_test.module','image_test','module','',0,0,-1,0,'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.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/menu_test.module','menu_test','module','',0,0,-1,0,'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.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/module_test.module','module_test','module','',0,0,-1,0,'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.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/path_test.module','path_test','module','',0,0,-1,0,'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.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/psr_0_test/psr_0_test.module','psr_0_test','module','',0,0,-1,0,'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.59\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/psr_4_test/psr_4_test.module','psr_4_test','module','',0,0,-1,0,'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.59\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/requirements1_test.module','requirements1_test','module','',0,0,-1,0,'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.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/requirements2_test.module','requirements2_test','module','',0,0,-1,0,'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.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/session_test.module','session_test','module','',0,0,-1,0,'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.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/system_dependencies_test.module','system_dependencies_test','module','',0,0,-1,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/system_incompatible_core_version_dependencies_test.module','system_incompatible_core_version_dependencies_test','module','',0,0,-1,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/system_incompatible_core_version_test.module','system_incompatible_core_version_test','module','',0,0,-1,0,'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.59\";s:4:\"core\";s:3:\"5.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/system_incompatible_module_version_dependencies_test.module','system_incompatible_module_version_dependencies_test','module','',0,0,-1,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/system_incompatible_module_version_test.module','system_incompatible_module_version_test','module','',0,0,-1,0,'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.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/system_project_namespace_test.module','system_project_namespace_test','module','',0,0,-1,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/system_test.module','system_test','module','',0,0,-1,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/taxonomy_test.module','taxonomy_test','module','',0,0,-1,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/theme_test.module','theme_test','module','',0,0,-1,0,'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.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/update_script_test.module','update_script_test','module','',0,0,-1,0,'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.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/update_test_1.module','update_test_1','module','',0,0,-1,0,'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.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/update_test_2.module','update_test_2','module','',0,0,-1,0,'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.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/update_test_3.module','update_test_3','module','',0,0,-1,0,'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.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/url_alter_test.module','url_alter_test','module','',0,0,-1,0,'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.59\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/simpletest/tests/xmlrpc_test.module','xmlrpc_test','module','',0,0,-1,0,'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.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/statistics/statistics.module','statistics','module','',0,0,-1,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/syslog/syslog.module','syslog','module','',0,0,-1,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/system/system.module','system','module','',1,0,7081,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/system/tests/cron_queue_test.module','cron_queue_test','module','',0,0,-1,0,'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.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/system/tests/system_cron_test.module','system_cron_test','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:16:\"System Cron Test\";s:11:\"description\";s:45:\"Support module for testing the system_cron().\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/taxonomy/taxonomy.module','taxonomy','module','',1,0,7011,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;s:8:\"required\";b:1;s:11:\"explanation\";s:76:\"Field type(s) in use - see <a href=\"/?q=admin/reports/fields\">Field list</a>\";}'),('modules/toolbar/toolbar.module','toolbar','module','',1,0,0,0,'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.59\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/tracker/tracker.module','tracker','module','',0,0,-1,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/translation/tests/translation_test.module','translation_test','module','',0,0,-1,0,'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.59\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/translation/translation.module','translation','module','',1,0,0,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/trigger/tests/trigger_test.module','trigger_test','module','',0,0,-1,0,'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.59\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/trigger/trigger.module','trigger','module','',0,0,-1,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/update/tests/aaa_update_test.module','aaa_update_test','module','',0,0,-1,0,'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.59\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/update/tests/bbb_update_test.module','bbb_update_test','module','',0,0,-1,0,'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.59\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/update/tests/ccc_update_test.module','ccc_update_test','module','',0,0,-1,0,'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.59\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/update/tests/update_test.module','update_test','module','',0,0,-1,0,'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.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/update/update.module','update','module','',1,0,7001,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/user/tests/user_form_test.module','user_form_test','module','',0,0,-1,0,'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.59\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/user/user.module','user','module','',1,0,7019,0,'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.59\";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:\"1524673284\";s:5:\"mtime\";i:1538750217;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('profiles/standard/standard.profile','standard','module','',1,0,0,1000,'a:15:{s:4:\"name\";s:8:\"Standard\";s:11:\"description\";s:51:\"Install with commonly used features pre-configured.\";s:7:\"version\";s:4:\"7.59\";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:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";s:5:\"mtime\";i:1538750217;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\";}'),('sites/all/modules/addressfield/addressfield.module','addressfield','module','',1,0,7001,0,'a:12:{s:4:\"name\";s:13:\"Address Field\";s:11:\"description\";s:64:\"Manage a flexible address field, implementing the xNAL standard.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:6:\"Fields\";s:12:\"dependencies\";a:1:{i:0;s:6:\"ctools\";}s:5:\"files\";a:4:{i:0;s:24:\"addressfield.migrate.inc\";i:1;s:62:\"views/addressfield_views_handler_field_administrative_area.inc\";i:2;s:50:\"views/addressfield_views_handler_field_country.inc\";i:3;s:51:\"views/addressfield_views_handler_filter_country.inc\";}s:7:\"version\";s:7:\"7.x-1.2\";s:7:\"project\";s:12:\"addressfield\";s:9:\"datestamp\";s:10:\"1444254070\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/addressfield/example/addressfield_example.module','addressfield_example','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:21:\"Address Field Example\";s:11:\"description\";s:67:\"Example module for how to implement an addressfield format handler.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:6:\"Fields\";s:6:\"hidden\";b:1;s:12:\"dependencies\";a:2:{i:0;s:6:\"ctools\";i:1;s:12:\"addressfield\";}s:7:\"version\";s:7:\"7.x-1.2\";s:7:\"project\";s:12:\"addressfield\";s:9:\"datestamp\";s:10:\"1444254070\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/ckeditor/ckeditor.module','ckeditor','module','',0,0,7005,0,'a:12:{s:4:\"name\";s:8:\"CKEditor\";s:11:\"description\";s:76:\"Enables CKEditor (WYSIWYG HTML editor) for use instead of plain text fields.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:14:\"User interface\";s:9:\"configure\";s:29:\"admin/config/content/ckeditor\";s:7:\"version\";s:8:\"7.x-1.16\";s:7:\"project\";s:8:\"ckeditor\";s:9:\"datestamp\";s:10:\"1413311935\";s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/colorbox/colorbox.module','colorbox','module','',0,0,7202,0,'a:13:{s:4:\"name\";s:8:\"Colorbox\";s:11:\"description\";s:63:\"A light-weight, customizable lightbox plugin for jQuery 1.4.3+.\";s:12:\"dependencies\";a:1:{i:0;s:15:\"libraries (2.x)\";}s:4:\"core\";s:3:\"7.x\";s:9:\"configure\";s:27:\"admin/config/media/colorbox\";s:5:\"files\";a:1:{i:0;s:41:\"views/colorbox_handler_field_colorbox.inc\";}s:7:\"version\";s:7:\"7.x-2.8\";s:7:\"project\";s:8:\"colorbox\";s:9:\"datestamp\";s:10:\"1410514129\";s:5:\"mtime\";i:1414767982;s:7:\"package\";s:5:\"Other\";s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/ctools/bulk_export/bulk_export.module','bulk_export','module','',0,0,-1,0,'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:8:\"7.x-1.14\";s:7:\"project\";s:6:\"ctools\";s:9:\"datestamp\";s:10:\"1519455788\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/ctools/ctools.module','ctools','module','',1,0,7003,0,'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:14:{i:0;s:20:\"includes/context.inc\";i:1;s:22:\"includes/css-cache.inc\";i:2;s:22:\"includes/math-expr.inc\";i:3;s:21:\"includes/stylizer.inc\";i:4;s:18:\"tests/context.test\";i:5;s:14:\"tests/css.test\";i:6;s:20:\"tests/css_cache.test\";i:7;s:25:\"tests/ctools.plugins.test\";i:8;s:17:\"tests/ctools.test\";i:9;s:26:\"tests/math_expression.test\";i:10;s:32:\"tests/math_expression_stack.test\";i:11;s:23:\"tests/object_cache.test\";i:12;s:28:\"tests/object_cache_unit.test\";i:13;s:22:\"tests/page_tokens.test\";}s:7:\"version\";s:8:\"7.x-1.14\";s:7:\"project\";s:6:\"ctools\";s:9:\"datestamp\";s:10:\"1519455788\";s:5:\"mtime\";i:1537955055;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/ctools/ctools_access_ruleset/ctools_access_ruleset.module','ctools_access_ruleset','module','',0,0,-1,0,'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:8:\"7.x-1.14\";s:12:\"dependencies\";a:1:{i:0;s:6:\"ctools\";}s:7:\"project\";s:6:\"ctools\";s:9:\"datestamp\";s:10:\"1519455788\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/ctools/ctools_ajax_sample/ctools_ajax_sample.module','ctools_ajax_sample','module','',0,0,0,0,'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:8:\"7.x-1.14\";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:\"1519455788\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/ctools/ctools_custom_content/ctools_custom_content.module','ctools_custom_content','module','',0,0,-1,0,'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:8:\"7.x-1.14\";s:12:\"dependencies\";a:1:{i:0;s:6:\"ctools\";}s:7:\"project\";s:6:\"ctools\";s:9:\"datestamp\";s:10:\"1519455788\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/ctools/ctools_plugin_example/ctools_plugin_example.module','ctools_plugin_example','module','',0,0,-1,0,'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:8:\"7.x-1.14\";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:\"1519455788\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/ctools/page_manager/page_manager.module','page_manager','module','',0,0,-1,0,'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:8:\"7.x-1.14\";s:5:\"files\";a:1:{i:0;s:21:\"tests/head_links.test\";}s:7:\"project\";s:6:\"ctools\";s:9:\"datestamp\";s:10:\"1519455788\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/ctools/stylizer/stylizer.module','stylizer','module','',0,0,-1,0,'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:8:\"7.x-1.14\";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:\"1519455788\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/ctools/term_depth/term_depth.module','term_depth','module','',0,0,-1,0,'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:8:\"7.x-1.14\";s:7:\"project\";s:6:\"ctools\";s:9:\"datestamp\";s:10:\"1519455788\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/ctools/tests/ctools_export_test/ctools_export_test.module','ctools_export_test','module','',0,0,-1,0,'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:8:\"7.x-1.14\";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:\"1519455788\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/ctools/tests/ctools_plugin_test.module','ctools_plugin_test','module','',0,0,-1,0,'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:8:\"7.x-1.14\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:6:\"ctools\";}s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"ctools\";s:9:\"datestamp\";s:10:\"1519455788\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/ctools/views_content/views_content.module','views_content','module','',0,0,-1,0,'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:8:\"7.x-1.14\";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:\"1519455788\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/entity/entity.module','entity','module','',1,0,7003,0,'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.9\";s:7:\"project\";s:6:\"entity\";s:9:\"datestamp\";s:10:\"1518620551\";s:5:\"mtime\";i:1537955055;s:12:\"dependencies\";a:0:{}s:7:\"package\";s:5:\"Other\";s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/entity/entity_token.module','entity_token','module','',1,0,0,0,'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.9\";s:7:\"project\";s:6:\"entity\";s:9:\"datestamp\";s:10:\"1518620551\";s:5:\"mtime\";i:1537955055;s:7:\"package\";s:5:\"Other\";s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/entity/tests/entity_feature.module','entity_feature','module','',0,0,-1,0,'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.9\";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:\"1518620551\";s:5:\"mtime\";i:1537955055;s:7:\"package\";s:5:\"Other\";s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/entity/tests/entity_test.module','entity_test','module','',0,0,-1,0,'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.9\";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:\"1518620551\";s:5:\"mtime\";i:1537955055;s:7:\"package\";s:5:\"Other\";s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/entity/tests/entity_test_i18n.module','entity_test_i18n','module','',0,0,-1,0,'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.9\";s:7:\"project\";s:6:\"entity\";s:9:\"datestamp\";s:10:\"1518620551\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/entity_translation/entity_translation.module','entity_translation','module','',1,0,7009,11,'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:1537954994;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/entity_translation/entity_translation_i18n_menu/entity_translation_i18n_menu.module','entity_translation_i18n_menu','module','',0,0,-1,0,'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:1537954994;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/entity_translation/entity_translation_upgrade/entity_translation_upgrade.module','entity_translation_upgrade','module','',1,0,7001,0,'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:1537954994;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/entity_translation/tests/entity_translation_test.module','entity_translation_test','module','',0,0,-1,0,'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:1537954994;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/features/features.module','features','module','',1,0,7200,20,'a:14:{s:4:\"name\";s:8:\"Features\";s:11:\"description\";s:39:\"Provides feature management for Drupal.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:8:\"Features\";s:5:\"files\";a:1:{i:0;s:19:\"tests/features.test\";}s:17:\"test_dependencies\";a:4:{i:0;s:5:\"image\";i:1;s:9:\"strongarm\";i:2;s:8:\"taxonomy\";i:3;s:5:\"views\";}s:9:\"configure\";s:33:\"admin/structure/features/settings\";s:7:\"version\";s:8:\"7.x-2.10\";s:7:\"project\";s:8:\"features\";s:9:\"datestamp\";s:10:\"1461011641\";s:5:\"mtime\";i:1537954873;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/features/tests/features_test/features_test.module','features_test','module','',0,0,-1,0,'a:14:{s:4:\"name\";s:14:\"Features Tests\";s:11:\"description\";s:33:\"Test module for Features testing.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:7:\"Testing\";s:3:\"php\";s:5:\"5.2.0\";s:12:\"dependencies\";a:5:{i:0;s:8:\"features\";i:1;s:5:\"image\";i:2;s:9:\"strongarm\";i:3;s:8:\"taxonomy\";i:4;s:5:\"views\";}s:8:\"features\";a:10:{s:6:\"ctools\";a:2:{i:0;s:21:\"strongarm:strongarm:1\";i:1;s:23:\"views:views_default:3.0\";}s:12:\"features_api\";a:1:{i:0;s:5:\"api:2\";}s:10:\"field_base\";a:1:{i:0;s:19:\"field_features_test\";}s:14:\"field_instance\";a:1:{i:0;s:38:\"node-features_test-field_features_test\";}s:6:\"filter\";a:1:{i:0;s:13:\"features_test\";}s:5:\"image\";a:1:{i:0;s:13:\"features_test\";}s:4:\"node\";a:1:{i:0;s:13:\"features_test\";}s:8:\"taxonomy\";a:1:{i:0;s:22:\"taxonomy_features_test\";}s:15:\"user_permission\";a:1:{i:0;s:28:\"create features_test content\";}s:10:\"views_view\";a:1:{i:0;s:13:\"features_test\";}}s:6:\"hidden\";s:1:\"1\";s:7:\"version\";s:8:\"7.x-2.10\";s:7:\"project\";s:8:\"features\";s:9:\"datestamp\";s:10:\"1461011641\";s:5:\"mtime\";i:1537954873;s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/geocoder/geocoder.module','geocoder','module','',1,0,7101,0,'a:13:{s:4:\"name\";s:8:\"Geocoder\";s:11:\"description\";s:74:\"An API and widget to geocode various known data into other GIS data types.\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:4:{i:0;s:6:\"geophp\";i:1;s:16:\"geofield (>=1.x)\";i:2;s:6:\"ctools\";i:3;s:6:\"entity\";}s:9:\"configure\";s:29:\"admin/config/content/geocoder\";s:7:\"version\";s:7:\"7.x-1.4\";s:7:\"project\";s:8:\"geocoder\";s:9:\"datestamp\";s:10:\"1536073093\";s:5:\"mtime\";i:1537955055;s:7:\"package\";s:5:\"Other\";s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/geofield/geofield.module','geofield','module','',1,0,7202,0,'a:14:{s:4:\"name\";s:8:\"Geofield\";s:11:\"description\";s:66:\"Stores geographic and location data (points, lines, and polygons).\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:2:{i:0;s:14:\"geophp (>=1.7)\";i:1;s:6:\"ctools\";}s:7:\"package\";s:6:\"Fields\";s:5:\"files\";a:21:{i:0;s:15:\"geofield.module\";i:1;s:16:\"geofield.install\";i:2;s:21:\"geofield.elements.inc\";i:3;s:20:\"geofield.widgets.inc\";i:4;s:23:\"geofield.formatters.inc\";i:5;s:23:\"geofield.openlayers.inc\";i:6;s:18:\"geofield.feeds.inc\";i:7;s:19:\"tests/geofield.test\";i:8;s:24:\"views/geofield.views.inc\";i:9;s:40:\"views/handlers/geofield_handler_sort.inc\";i:10;s:41:\"views/handlers/geofield_handler_field.inc\";i:11;s:42:\"views/handlers/geofield_handler_filter.inc\";i:12;s:54:\"views/handlers/geofield_handler_argument_proximity.inc\";i:13;s:49:\"views/proximity_plugins/geofieldProximityBase.inc\";i:14;s:51:\"views/proximity_plugins/geofieldProximityManual.inc\";i:15;s:53:\"views/proximity_plugins/geofieldProximityGeocoder.inc\";i:16;s:54:\"views/proximity_plugins/geofieldProximityEntityURL.inc\";i:17;s:58:\"views/proximity_plugins/geofieldProximityOtherGeofield.inc\";i:18;s:56:\"views/proximity_plugins/geofieldProximityCurrentUser.inc\";i:19;s:58:\"views/proximity_plugins/geofieldProximityExposedFilter.inc\";i:20;s:61:\"views/proximity_plugins/geofieldProximityContextualFilter.inc\";}s:7:\"version\";s:7:\"7.x-2.3\";s:7:\"project\";s:8:\"geofield\";s:9:\"datestamp\";s:10:\"1411337638\";s:5:\"mtime\";i:1412683023;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;s:8:\"required\";b:1;s:11:\"explanation\";s:76:\"Field type(s) in use - see <a href=\"/?q=admin/reports/fields\">Field list</a>\";}'),('sites/all/modules/geofield/modules/geofield_map/geofield_map.module','geofield_map','module','',0,0,0,0,'a:12:{s:4:\"name\";s:12:\"Geofield Map\";s:11:\"description\";s:49:\"Provides a basic mapping interface for Geofields.\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:8:\"geofield\";}s:5:\"files\";a:2:{i:0;s:31:\"includes/geofield_map.views.inc\";i:1;s:42:\"includes/geofield_map_plugin_style_map.inc\";}s:7:\"version\";s:7:\"7.x-2.3\";s:7:\"project\";s:8:\"geofield\";s:9:\"datestamp\";s:10:\"1411337638\";s:5:\"mtime\";i:1412683023;s:7:\"package\";s:5:\"Other\";s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/geofield/tests/geofield_openlayers_test.module','geofield_openlayers_test','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:37:\"Geofield/Openlayers Integration tests\";s:11:\"description\";s:45:\"Integration tests for Geofield and Openlayers\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"package\";s:7:\"Testing\";s:12:\"dependencies\";a:2:{i:0;s:8:\"geofield\";i:1;s:10:\"openlayers\";}s:5:\"files\";a:1:{i:0;s:24:\"geofield_openlayers.test\";}s:7:\"version\";s:7:\"7.x-2.3\";s:7:\"project\";s:8:\"geofield\";s:9:\"datestamp\";s:10:\"1411337638\";s:5:\"mtime\";i:1412683023;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/geofield/tests/geofield_test.module','geofield_test','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:13:\"Geofield test\";s:11:\"description\";s:38:\"Support module for the Geofield tests.\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"package\";s:7:\"Testing\";s:12:\"dependencies\";a:2:{i:0;s:8:\"geocoder\";i:1;s:8:\"geofield\";}s:7:\"version\";s:7:\"7.x-2.3\";s:7:\"project\";s:8:\"geofield\";s:9:\"datestamp\";s:10:\"1411337638\";s:5:\"mtime\";i:1412683023;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/geophp/geophp.module','geophp','module','',1,0,0,0,'a:12:{s:4:\"name\";s:6:\"geoPHP\";s:11:\"description\";s:61:\"Wraps the geoPHP library: advanced geometry operations in PHP\";s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:7:\"7.x-1.7\";s:7:\"project\";s:6:\"geophp\";s:9:\"datestamp\";s:10:\"1352084822\";s:5:\"mtime\";i:1412683092;s:12:\"dependencies\";a:0:{}s:7:\"package\";s:5:\"Other\";s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/gmap/gmap.module','gmap','module','',1,0,7202,0,'a:13:{s:4:\"name\";s:4:\"GMap\";s:11:\"description\";s:48:\"Views plugins to show Google Maps from entities.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:8:\"Location\";s:9:\"configure\";s:26:\"admin/config/services/gmap\";s:5:\"files\";a:9:{i:0;s:26:\"gmap_plugin_style_gmap.inc\";i:1;s:34:\"gmap_plugin_style_gmapextended.inc\";i:2;s:15:\"tests/gmap.test\";i:3;s:23:\"tests/oopmigration.test\";i:4;s:32:\"lib/Drupal/gmap/GmapDefaults.php\";i:5;s:39:\"lib/Drupal/gmap/GmapPolylineToolbox.php\";i:6;s:36:\"lib/Drupal/gmap/GmapMacroToolbox.php\";i:7;s:27:\"tests/inc/gmap_polyutil.inc\";i:8;s:27:\"tests/inc/gmap_defaults.inc\";}s:7:\"version\";s:8:\"7.x-2.11\";s:7:\"project\";s:4:\"gmap\";s:9:\"datestamp\";s:10:\"1457698170\";s:5:\"mtime\";i:1537955055;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/gmap/gmap_fields/gmap_fields.module','gmap_fields','module','',0,0,-1,0,'a:12:{s:4:\"name\";s:11:\"GMap Fields\";s:11:\"description\";s:48:\"GMap field types, currently only a marker field.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:8:\"Location\";s:12:\"dependencies\";a:3:{i:0;s:5:\"field\";i:1;s:4:\"gmap\";i:2;s:7:\"options\";}s:7:\"version\";s:8:\"7.x-2.11\";s:7:\"project\";s:4:\"gmap\";s:9:\"datestamp\";s:10:\"1457698170\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/gmap/gmap_location.module','gmap_location','module','',1,0,5102,0,'a:13:{s:4:\"name\";s:13:\"GMap Location\";s:11:\"description\";s:50:\"Display location.module information on Google Maps\";s:7:\"package\";s:8:\"Location\";s:4:\"core\";s:3:\"7.x\";s:9:\"configure\";s:35:\"admin/config/services/gmap_location\";s:5:\"files\";a:1:{i:0;s:20:\"gmap_location.module\";}s:12:\"dependencies\";a:2:{i:0;s:4:\"gmap\";i:1;s:8:\"location\";}s:7:\"version\";s:8:\"7.x-2.11\";s:7:\"project\";s:4:\"gmap\";s:9:\"datestamp\";s:10:\"1457698170\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/gmap/gmap_macro_builder.module','gmap_macro_builder','module','',0,0,6100,0,'a:12:{s:4:\"name\";s:18:\"GMap Macro Builder\";s:11:\"description\";s:28:\"UI for building GMap macros.\";s:7:\"package\";s:8:\"Location\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:4:\"gmap\";}s:5:\"files\";a:1:{i:0;s:25:\"gmap_macro_builder.module\";}s:7:\"version\";s:8:\"7.x-2.11\";s:7:\"project\";s:4:\"gmap\";s:9:\"datestamp\";s:10:\"1457698170\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/gmap/gmap_style_bubbles/gmap_style_bubbles.module','gmap_style_bubbles','module','',0,0,0,0,'a:12:{s:4:\"name\";s:18:\"Gmap Style Bubbles\";s:11:\"description\";s:66:\"A module that lets you add more styles to your gmap popup bubbles.\";s:7:\"package\";s:8:\"Location\";s:4:\"core\";s:3:\"7.x\";s:7:\"project\";s:4:\"gmap\";s:12:\"dependencies\";a:2:{i:0;s:4:\"gmap\";i:1;s:15:\"libraries (2.x)\";}s:7:\"version\";s:8:\"7.x-2.11\";s:9:\"datestamp\";s:10:\"1457698170\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/gmap/gmap_taxonomy.module','gmap_taxonomy','module','',0,0,7202,0,'a:12:{s:4:\"name\";s:21:\"GMap Taxonomy Markers\";s:11:\"description\";s:22:\"Taxonomy based markers\";s:7:\"package\";s:8:\"Location\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:2:{i:0;s:8:\"taxonomy\";i:1;s:4:\"gmap\";}s:5:\"files\";a:2:{i:0;s:20:\"gmap_taxonomy.module\";i:1;s:23:\"gmap_taxonomy.views.inc\";}s:7:\"version\";s:8:\"7.x-2.11\";s:7:\"project\";s:4:\"gmap\";s:9:\"datestamp\";s:10:\"1457698170\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/gmap/gmap_test/gmap_test.module','gmap_test','module','',0,0,-1,0,'a:14:{s:4:\"name\";s:9:\"GMap test\";s:11:\"description\";s:41:\"Some Content types and Views to test GMap\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:8:\"Features\";s:7:\"version\";s:8:\"7.x-2.11\";s:7:\"project\";s:4:\"gmap\";s:6:\"hidden\";b:1;s:12:\"dependencies\";a:13:{i:0;s:12:\"addressfield\";i:1;s:6:\"ctools\";i:2;s:15:\"entityreference\";i:3;s:8:\"features\";i:4;s:17:\"field_sql_storage\";i:5;s:8:\"geofield\";i:6;s:6:\"geophp\";i:7;s:4:\"node\";i:8;s:7:\"options\";i:9;s:4:\"text\";i:10;s:5:\"views\";i:11;s:8:\"views_ui\";i:12;s:4:\"gmap\";}s:8:\"features\";a:5:{s:6:\"ctools\";a:1:{i:0;s:23:\"views:views_default:3.0\";}s:12:\"features_api\";a:1:{i:0;s:5:\"api:1\";}s:5:\"field\";a:6:{i:0;s:33:\"node-gmap_person-field_mylocation\";i:1;s:19:\"node-gmapplace-body\";i:2;s:30:\"node-gmapplace-field_myaddress\";i:3;s:31:\"node-gmapplace-field_mygeofield\";i:4;s:31:\"node-gmapplace-field_mylatitude\";i:5;s:32:\"node-gmapplace-field_mylongitude\";}s:4:\"node\";a:2:{i:0;s:11:\"gmap_person\";i:1;s:9:\"gmapplace\";}s:10:\"views_view\";a:1:{i:0;s:16:\"gmap_test_places\";}}s:5:\"files\";a:4:{i:0;s:28:\"gmap_test.features.field.inc\";i:1;s:22:\"gmap_test.features.inc\";i:2;s:27:\"gmap_test.views_default.inc\";i:3;s:20:\"tests/gmap_test.test\";}s:9:\"datestamp\";s:10:\"1457698170\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/gmap/gmap_test_extended/gmap_test_extended.module','gmap_test_extended','module','',0,0,-1,0,'a:14:{s:4:\"name\";s:18:\"GMap test extended\";s:11:\"description\";s:50:\"Some Content types and Views to test GMap Extended\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:8:\"Features\";s:7:\"version\";s:8:\"7.x-2.11\";s:7:\"project\";s:4:\"gmap\";s:6:\"hidden\";b:1;s:12:\"dependencies\";a:13:{i:0;s:12:\"addressfield\";i:1;s:6:\"ctools\";i:2;s:15:\"entityreference\";i:3;s:8:\"features\";i:4;s:17:\"field_sql_storage\";i:5;s:8:\"geofield\";i:6;s:6:\"geophp\";i:7;s:4:\"node\";i:8;s:7:\"options\";i:9;s:4:\"text\";i:10;s:5:\"views\";i:11;s:8:\"views_ui\";i:12;s:4:\"gmap\";}s:8:\"features\";a:5:{s:6:\"ctools\";a:1:{i:0;s:23:\"views:views_default:3.0\";}s:12:\"features_api\";a:1:{i:0;s:5:\"api:1\";}s:5:\"field\";a:6:{i:0;s:33:\"node-gmap_person-field_mylocation\";i:1;s:19:\"node-gmapplace-body\";i:2;s:30:\"node-gmapplace-field_myaddress\";i:3;s:31:\"node-gmapplace-field_mygeofield\";i:4;s:31:\"node-gmapplace-field_mylatitude\";i:5;s:32:\"node-gmapplace-field_mylongitude\";}s:4:\"node\";a:2:{i:0;s:11:\"gmap_person\";i:1;s:9:\"gmapplace\";}s:10:\"views_view\";a:1:{i:0;s:25:\"gmap_test_extended_places\";}}s:5:\"files\";a:4:{i:0;s:37:\"gmap_test_extended.features.field.inc\";i:1;s:31:\"gmap_test_extended.features.inc\";i:2;s:36:\"gmap_test_extended.views_default.inc\";i:3;s:29:\"tests/gmap_test_extended.test\";}s:9:\"datestamp\";s:10:\"1457698170\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/gmap/location_gmap_find_address/location_gmap_find_address.module','location_gmap_find_address','module','',1,0,0,0,'a:12:{s:4:\"name\";s:37:\"Location + Gmap \'Find Address\' button\";s:11:\"description\";s:65:\"Adds a \'Find Address\' button to all location fields that use gmap\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:8:\"Location\";s:12:\"dependencies\";a:3:{i:0;s:12:\"location_cck\";i:1;s:8:\"location\";i:2;s:4:\"gmap\";}s:7:\"version\";s:8:\"7.x-2.11\";s:7:\"project\";s:4:\"gmap\";s:9:\"datestamp\";s:10:\"1457698170\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/i18n/i18n.module','i18n','module','',1,1,7001,10,'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:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/i18n/i18n_block/i18n_block.module','i18n_block','module','',1,0,7001,100,'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.26\";s:7:\"project\";s:4:\"i18n\";s:9:\"datestamp\";s:10:\"1534531985\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/i18n/i18n_contact/i18n_contact.module','i18n_contact','module','',1,0,0,0,'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.26\";s:7:\"project\";s:4:\"i18n\";s:9:\"datestamp\";s:10:\"1534531985\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/i18n/i18n_field/i18n_field.module','i18n_field','module','',1,0,7000,0,'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.26\";s:7:\"project\";s:4:\"i18n\";s:9:\"datestamp\";s:10:\"1534531985\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/i18n/i18n_forum/i18n_forum.module','i18n_forum','module','',1,0,0,10,'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:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/i18n/i18n_menu/i18n_menu.module','i18n_menu','module','',1,0,7001,5,'a:12:{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:7:\"version\";s:8:\"7.x-1.26\";s:7:\"project\";s:4:\"i18n\";s:9:\"datestamp\";s:10:\"1534531985\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/i18n/i18n_node/i18n_node.module','i18n_node','module','',1,0,7000,0,'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:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/i18n/i18n_path/i18n_path.module','i18n_path','module','',1,0,7000,5,'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:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/i18n/i18n_redirect/i18n_redirect.module','i18n_redirect','module','',1,0,0,0,'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:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/i18n/i18n_select/i18n_select.module','i18n_select','module','',1,0,0,0,'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.26\";s:7:\"project\";s:4:\"i18n\";s:9:\"datestamp\";s:10:\"1534531985\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/i18n/i18n_string/i18n_string.module','i18n_string','module','',1,0,7004,10,'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.26\";s:7:\"project\";s:4:\"i18n\";s:9:\"datestamp\";s:10:\"1534531985\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/i18n/i18n_sync/i18n_sync.module','i18n_sync','module','',1,0,7000,100,'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.26\";s:7:\"project\";s:4:\"i18n\";s:9:\"datestamp\";s:10:\"1534531985\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/i18n/i18n_taxonomy/i18n_taxonomy.module','i18n_taxonomy','module','',1,0,7004,5,'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.26\";s:7:\"project\";s:4:\"i18n\";s:9:\"datestamp\";s:10:\"1534531985\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/i18n/i18n_translation/i18n_translation.module','i18n_translation','module','',1,0,0,0,'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.26\";s:7:\"project\";s:4:\"i18n\";s:9:\"datestamp\";s:10:\"1534531985\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/i18n/i18n_user/i18n_user.module','i18n_user','module','',1,0,0,-10000,'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:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/i18n/i18n_variable/i18n_variable.module','i18n_variable','module','',1,1,7004,-900,'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:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/i18n/tests/i18n_test.module','i18n_test','module','',0,0,-1,0,'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:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/imce/imce.module','imce','module','',1,0,7002,0,'a:13:{s:4:\"name\";s:4:\"IMCE\";s:11:\"description\";s:82:\"An image/file uploader and browser supporting personal directories and user quota.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:5:\"Media\";s:9:\"configure\";s:23:\"admin/config/media/imce\";s:7:\"version\";s:8:\"7.x-1.11\";s:7:\"project\";s:4:\"imce\";s:9:\"datestamp\";s:10:\"1495890787\";s:5:\"mtime\";i:1537955055;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/jquery_update/jquery_update.module','jquery_update','module','',0,0,7000,0,'a:13:{s:4:\"name\";s:13:\"jQuery Update\";s:11:\"description\";s:53:\"Update jQuery and jQuery UI to a more recent version.\";s:7:\"package\";s:14:\"User interface\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:2:{i:0;s:20:\"jquery_update.module\";i:1;s:21:\"jquery_update.install\";}s:9:\"configure\";s:38:\"admin/config/development/jquery_update\";s:7:\"version\";s:7:\"7.x-2.4\";s:7:\"project\";s:13:\"jquery_update\";s:9:\"datestamp\";s:10:\"1396482246\";s:5:\"mtime\";i:1411570315;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/juicebox/juicebox.module','juicebox','module','',0,0,7201,0,'a:14:{s:4:\"name\";s:8:\"Juicebox\";s:11:\"description\";s:89:\"Provides an integration between the Juicebox HTML5 responsive gallery library and Drupal.\";s:7:\"package\";s:5:\"Media\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:2:{i:0;s:5:\"image\";i:1;s:16:\"libraries (>1.0)\";}s:9:\"configure\";s:27:\"admin/config/media/juicebox\";s:5:\"files\";a:16:{i:0;s:37:\"includes/JuiceboxGalleryInterface.inc\";i:1;s:28:\"includes/JuiceboxGallery.inc\";i:2;s:37:\"includes/JuiceboxGalleryDecorator.inc\";i:3;s:43:\"includes/JuiceboxGalleryDrupalInterface.inc\";i:4;s:34:\"includes/JuiceboxGalleryDrupal.inc\";i:5;s:32:\"plugins/JuiceboxXmlInterface.inc\";i:6;s:28:\"plugins/JuiceboxXmlField.inc\";i:7;s:33:\"plugins/JuiceboxXmlViewsStyle.inc\";i:8;s:39:\"plugins/JuiceboxFormatterViewsStyle.inc\";i:9;s:27:\"tests/JuiceboxBaseCase.test\";i:10;s:37:\"tests/JuiceboxFieldFormatterCase.test\";i:11;s:27:\"tests/JuiceboxFileCase.test\";i:12;s:33:\"tests/JuiceboxFileEntityCase.test\";i:13;s:27:\"tests/JuiceboxConfCase.test\";i:14;s:33:\"tests/JuiceboxConfGlobalCase.test\";i:15;s:28:\"tests/JuiceboxViewsCase.test\";}s:17:\"test_dependencies\";a:2:{i:0;s:5:\"views\";i:1;s:11:\"file_entity\";}s:7:\"version\";s:7:\"7.x-2.0\";s:7:\"project\";s:8:\"juicebox\";s:9:\"datestamp\";s:10:\"1405309428\";s:5:\"mtime\";i:1415009079;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/juicebox/tests/views/juicebox_views_test.module','juicebox_views_test','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:20:\"Juicebox Views Tests\";s:11:\"description\";s:69:\"Provides hook implementations for testing Juicebox views integration.\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:2:{i:0;s:8:\"juicebox\";i:1;s:5:\"views\";}s:6:\"hidden\";b:1;s:7:\"version\";s:7:\"7.x-2.0\";s:7:\"project\";s:8:\"juicebox\";s:9:\"datestamp\";s:10:\"1405309428\";s:5:\"mtime\";i:1415009079;s:7:\"package\";s:5:\"Other\";s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/l10n_update/l10n_update.module','l10n_update','module','',1,0,7006,0,'a:12:{s:4:\"name\";s:19:\"Localization update\";s:11:\"description\";s:58:\"Provides automatic downloads and updates for translations.\";s:12:\"dependencies\";a:1:{i:0;s:6:\"locale\";}s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:12:\"Multilingual\";s:5:\"files\";a:1:{i:0;s:22:\"l10n_update.parser.inc\";}s:7:\"version\";s:7:\"7.x-1.1\";s:7:\"project\";s:11:\"l10n_update\";s:9:\"datestamp\";s:10:\"1415605322\";s:5:\"mtime\";i:1422615722;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/languageicons/languageicons.module','languageicons','module','',1,0,6200,0,'a:13:{s:4:\"name\";s:14:\"Language Icons\";s:11:\"description\";s:29:\"Adds icons to language links.\";s:12:\"dependencies\";a:1:{i:0;s:6:\"locale\";}s:7:\"package\";s:12:\"Multilingual\";s:4:\"core\";s:3:\"7.x\";s:9:\"configure\";s:36:\"admin/config/regional/language/icons\";s:7:\"version\";s:7:\"7.x-1.1\";s:7:\"project\";s:13:\"languageicons\";s:9:\"datestamp\";s:10:\"1399825730\";s:5:\"mtime\";i:1428585380;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/libraries/libraries.module','libraries','module','',1,0,7202,0,'a:12:{s:4:\"name\";s:9:\"Libraries\";s:11:\"description\";s:64:\"Allows version-dependent and shared usage of external libraries.\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:15:\"system (>=7.11)\";}s:5:\"files\";a:4:{i:0;s:32:\"tests/LibrariesAdminWebTest.test\";i:1;s:31:\"tests/LibrariesLoadWebTest.test\";i:2;s:28:\"tests/LibrariesUnitTest.test\";i:3;s:31:\"tests/LibrariesWebTestBase.test\";}s:7:\"version\";s:7:\"7.x-2.4\";s:7:\"project\";s:9:\"libraries\";s:9:\"datestamp\";s:10:\"1536581584\";s:5:\"mtime\";i:1537955055;s:7:\"package\";s:5:\"Other\";s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/libraries/tests/modules/libraries_test_module/libraries_test_module.module','libraries_test_module','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:21:\"Libraries test module\";s:11:\"description\";s:36:\"Tests library detection and loading.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:7:\"Testing\";s:12:\"dependencies\";a:1:{i:0;s:9:\"libraries\";}s:6:\"hidden\";b:1;s:7:\"version\";s:7:\"7.x-2.4\";s:7:\"project\";s:9:\"libraries\";s:9:\"datestamp\";s:10:\"1536581584\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/location/contrib/location_addanother/location_addanother.module','location_addanother','module','',0,0,0,1,'a:12:{s:4:\"name\";s:20:\"Location Add Another\";s:11:\"description\";s:94:\"Allows you to quickly add locations directly from a node without having to click \'edit\' first.\";s:12:\"dependencies\";a:2:{i:0;s:8:\"location\";i:1;s:13:\"location_node\";}s:7:\"package\";s:8:\"Location\";s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:7:\"7.x-3.7\";s:7:\"project\";s:8:\"location\";s:9:\"datestamp\";s:10:\"1438695672\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/location/contrib/location_autofill/la.module','la','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:17:\"Location autofill\";s:11:\"description\";s:39:\"Fill up all locations with lat&lon data\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:8:\"Location\";s:9:\"configure\";s:24:\"admin/config/services/la\";s:12:\"dependencies\";a:1:{i:0;s:8:\"location\";}s:7:\"version\";s:7:\"7.x-3.7\";s:7:\"project\";s:8:\"location\";s:9:\"datestamp\";s:10:\"1438695672\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/location/contrib/location_cck/location_cck.module','location_cck','module','',1,0,6301,0,'a:12:{s:4:\"name\";s:12:\"Location CCK\";s:11:\"description\";s:30:\"Defines a Location field type.\";s:12:\"dependencies\";a:1:{i:0;s:8:\"location\";}s:7:\"package\";s:6:\"Fields\";s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:7:\"7.x-3.7\";s:7:\"project\";s:8:\"location\";s:9:\"datestamp\";s:10:\"1438695672\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/location/contrib/location_email/location_email.module','location_email','module','',0,0,0,1,'a:12:{s:4:\"name\";s:14:\"Location Email\";s:7:\"package\";s:8:\"Location\";s:11:\"description\";s:49:\"Allows you to add an email address to a location.\";s:12:\"dependencies\";a:1:{i:0;s:8:\"location\";}s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:24:\"location_email.views.inc\";}s:7:\"version\";s:7:\"7.x-3.7\";s:7:\"project\";s:8:\"location\";s:9:\"datestamp\";s:10:\"1438695672\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/location/contrib/location_entity/location_entity.module','location_entity','module','',0,0,0,0,'a:12:{s:4:\"name\";s:15:\"Location Entity\";s:11:\"description\";s:58:\"Provide information about Location field to Entity module.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:8:\"Location\";s:12:\"dependencies\";a:1:{i:0;s:8:\"location\";}s:7:\"version\";s:7:\"7.x-3.7\";s:7:\"project\";s:8:\"location\";s:9:\"datestamp\";s:10:\"1438695672\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/location/contrib/location_fax/location_fax.module','location_fax','module','',0,0,6301,1,'a:12:{s:4:\"name\";s:12:\"Location Fax\";s:7:\"package\";s:8:\"Location\";s:11:\"description\";s:45:\"Allows you to add a fax number to a location.\";s:12:\"dependencies\";a:1:{i:0;s:8:\"location\";}s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:22:\"location_fax.views.inc\";}s:7:\"version\";s:7:\"7.x-3.7\";s:7:\"project\";s:8:\"location\";s:9:\"datestamp\";s:10:\"1438695672\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/location/contrib/location_generate/location_generate.module','location_generate','module','',0,0,-1,0,'a:12:{s:4:\"name\";s:17:\"Location Generate\";s:11:\"description\";s:52:\"Bulk assign random latitude and longitudes to nodes.\";s:7:\"package\";s:11:\"Development\";s:12:\"dependencies\";a:2:{i:0;s:14:\"devel_generate\";i:1;s:8:\"location\";}s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:7:\"7.x-3.7\";s:7:\"project\";s:8:\"location\";s:9:\"datestamp\";s:10:\"1438695672\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/location/contrib/location_phone/location_phone.module','location_phone','module','',0,0,6301,1,'a:12:{s:4:\"name\";s:14:\"Location Phone\";s:7:\"package\";s:8:\"Location\";s:11:\"description\";s:47:\"Allows you to add a phone number to a location.\";s:12:\"dependencies\";a:1:{i:0;s:8:\"location\";}s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:24:\"location_phone.views.inc\";}s:7:\"version\";s:7:\"7.x-3.7\";s:7:\"project\";s:8:\"location\";s:9:\"datestamp\";s:10:\"1438695672\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/location/contrib/location_search/location_search.module','location_search','module','',0,0,5300,0,'a:13:{s:4:\"name\";s:15:\"Location Search\";s:7:\"package\";s:8:\"Location\";s:11:\"description\";s:35:\"Advanced search page for locations.\";s:9:\"configure\";s:36:\"admin/config/content/location/search\";s:12:\"dependencies\";a:2:{i:0;s:6:\"search\";i:1;s:8:\"location\";}s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:25:\"location_search.admin.inc\";}s:7:\"version\";s:7:\"7.x-3.7\";s:7:\"project\";s:8:\"location\";s:9:\"datestamp\";s:10:\"1438695672\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/location/contrib/location_taxonomy/location_taxonomy.module','location_taxonomy','module','',0,0,0,0,'a:12:{s:4:\"name\";s:17:\"Location Taxonomy\";s:11:\"description\";s:40:\"Associate locations with taxonomy terms.\";s:12:\"dependencies\";a:2:{i:0;s:8:\"location\";i:1;s:8:\"taxonomy\";}s:7:\"package\";s:8:\"Location\";s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:7:\"7.x-3.7\";s:7:\"project\";s:8:\"location\";s:9:\"datestamp\";s:10:\"1438695672\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/location/contrib/location_www/location_www.module','location_www','module','',0,0,-1,0,'a:12:{s:4:\"name\";s:12:\"Location www\";s:7:\"package\";s:8:\"Location\";s:11:\"description\";s:45:\"Allows you to add a www adress to a location.\";s:12:\"dependencies\";a:1:{i:0;s:8:\"location\";}s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:7:\"7.x-3.7\";s:7:\"project\";s:8:\"location\";s:9:\"datestamp\";s:10:\"1438695672\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/location/location.module','location','module','',1,0,7302,0,'a:13:{s:4:\"name\";s:8:\"Location\";s:7:\"package\";s:8:\"Location\";s:11:\"description\";s:213:\"The location module allows you to associate a geographic location with content and users. Users can do proximity searches by postal code.  This is useful for organizing communities that have a geographic presence.\";s:4:\"core\";s:3:\"7.x\";s:9:\"configure\";s:29:\"admin/config/content/location\";s:5:\"files\";a:32:{i:0;s:18:\"location.admin.inc\";i:1;s:19:\"location.georss.inc\";i:2;s:12:\"location.inc\";i:3;s:18:\"location.token.inc\";i:4;s:18:\"location.views.inc\";i:5;s:26:\"location.views_default.inc\";i:6;s:20:\"location.migrate.inc\";i:7;s:28:\"tests/location_testcase.test\";i:8;s:14:\"tests/cow.test\";i:9;s:16:\"tests/earth.test\";i:10;s:26:\"tests/google_geocoder.test\";i:11;s:23:\"tests/location_cck.test\";i:12;s:24:\"tests/location_cck2.test\";i:13;s:55:\"handlers/location_handler_argument_location_country.inc\";i:14;s:56:\"handlers/location_handler_argument_location_province.inc\";i:15;s:57:\"handlers/location_handler_argument_location_proximity.inc\";i:16;s:55:\"handlers/location_handler_field_location_additional.inc\";i:17;s:52:\"handlers/location_handler_field_location_address.inc\";i:18;s:52:\"handlers/location_handler_field_location_country.inc\";i:19;s:53:\"handlers/location_handler_field_location_distance.inc\";i:20;s:53:\"handlers/location_handler_field_location_province.inc\";i:21;s:51:\"handlers/location_handler_field_location_street.inc\";i:22;s:53:\"handlers/location_handler_filter_location_country.inc\";i:23;s:54:\"handlers/location_handler_filter_location_province.inc\";i:24;s:51:\"handlers/location_handler_sort_location_country.inc\";i:25;s:52:\"handlers/location_handler_sort_location_distance.inc\";i:26;s:53:\"handlers/location_views_handler_field_coordinates.inc\";i:27;s:50:\"handlers/location_views_handler_field_latitude.inc\";i:28;s:51:\"handlers/location_views_handler_field_longitude.inc\";i:29;s:52:\"handlers/location_views_handler_filter_proximity.inc\";i:30;s:29:\"plugins/contexts/location.inc\";i:31;s:44:\"plugins/relationships/location_from_node.inc\";}s:7:\"version\";s:7:\"7.x-3.7\";s:7:\"project\";s:8:\"location\";s:9:\"datestamp\";s:10:\"1438695672\";s:5:\"mtime\";i:1537955055;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/location/location_node.module','location_node','module','',1,0,0,0,'a:12:{s:4:\"name\";s:14:\"Node Locations\";s:11:\"description\";s:31:\"Associate locations with nodes.\";s:12:\"dependencies\";a:1:{i:0;s:8:\"location\";}s:7:\"package\";s:8:\"Location\";s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:7:\"7.x-3.7\";s:7:\"project\";s:8:\"location\";s:9:\"datestamp\";s:10:\"1438695672\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/location/location_user.module','location_user','module','',0,0,0,0,'a:13:{s:4:\"name\";s:14:\"User Locations\";s:11:\"description\";s:31:\"Associate locations with users.\";s:12:\"dependencies\";a:1:{i:0;s:8:\"location\";}s:7:\"package\";s:8:\"Location\";s:4:\"core\";s:3:\"7.x\";s:9:\"configure\";s:28:\"admin/config/people/accounts\";s:7:\"version\";s:7:\"7.x-3.7\";s:7:\"project\";s:8:\"location\";s:9:\"datestamp\";s:10:\"1438695672\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/locationmap/locationmap.module','locationmap','module','',0,0,106,0,'a:13:{s:4:\"name\";s:12:\"Location Map\";s:11:\"description\";s:50:\"Display one geographical location via Google Maps.\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:5:{i:0;s:19:\"locationmap.install\";i:1;s:18:\"locationmap.module\";i:2;s:12:\"potx-cli.php\";i:3;s:8:\"potx.inc\";i:4;s:22:\"tests/locationmap.test\";}s:9:\"configure\";s:32:\"admin/config/content/locationmap\";s:7:\"version\";s:7:\"7.x-2.3\";s:7:\"project\";s:11:\"locationmap\";s:9:\"datestamp\";s:10:\"1400942328\";s:5:\"mtime\";i:1412673383;s:12:\"dependencies\";a:0:{}s:7:\"package\";s:5:\"Other\";s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/npop/npop.module','npop','module','',0,0,-1,0,'a:12:{s:4:\"name\";s:17:\"Node popup module\";s:11:\"description\";s:35:\"Allow to view nodes on popup window\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:2:{i:0;s:33:\"views/npop_handler_field_npop.inc\";i:1;s:38:\"views/npop_handler_field_npop_link.inc\";}s:7:\"version\";s:7:\"7.x-1.4\";s:7:\"project\";s:4:\"npop\";s:9:\"datestamp\";s:10:\"1511770687\";s:5:\"mtime\";i:1593685653;s:12:\"dependencies\";a:0:{}s:7:\"package\";s:5:\"Other\";s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/openlayers/modules/openlayers_ui/openlayers_ui.module','openlayers_ui','module','',0,0,7201,0,'a:12:{s:4:\"name\";s:13:\"OpenLayers UI\";s:11:\"description\";s:52:\"Provides a user interface to manage OpenLayers maps.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:10:\"OpenLayers\";s:12:\"dependencies\";a:1:{i:0;s:10:\"openlayers\";}s:9:\"configure\";s:26:\"admin/structure/openlayers\";s:5:\"files\";a:1:{i:0;s:20:\"openlayers_ui.module\";}s:7:\"version\";s:13:\"7.x-2.0-beta9\";s:7:\"project\";s:10:\"openlayers\";s:9:\"datestamp\";s:10:\"1395830381\";s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/openlayers/modules/openlayers_views/openlayers_views.module','openlayers_views','module','',0,0,0,0,'a:11:{s:4:\"name\";s:16:\"OpenLayers Views\";s:11:\"description\";s:34:\"Provides OpenLayers Views plugins.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:10:\"OpenLayers\";s:12:\"dependencies\";a:3:{i:0;s:10:\"openlayers\";i:1;s:5:\"views\";i:2;s:6:\"geophp\";}s:5:\"files\";a:11:{i:0;s:23:\"openlayers_views.module\";i:1;s:32:\"views/openlayers_views.views.inc\";i:2;s:36:\"views/openlayers_views_style_map.inc\";i:3;s:37:\"views/openlayers_views_style_data.inc\";i:4;s:43:\"views/openlayers_views_style_data_image.inc\";i:5;s:52:\"views/openlayers_views_plugin_display_openlayers.inc\";i:6;s:43:\"views/openlayers_views_plugin_row_point.inc\";i:7;s:50:\"views/openlayers_views_plugin_row_bounding_box.inc\";i:8;s:46:\"views/openlayers_views_plugin_row_geometry.inc\";i:9;s:47:\"plugins/layer_types/openlayers_views_vector.inc\";i:10;s:46:\"plugins/layer_types/openlayers_views_image.inc\";}s:7:\"version\";s:13:\"7.x-2.0-beta9\";s:7:\"project\";s:10:\"openlayers\";s:9:\"datestamp\";s:10:\"1395830381\";s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/openlayers/openlayers.module','openlayers','module','',0,0,7209,0,'a:11:{s:4:\"name\";s:10:\"OpenLayers\";s:11:\"description\";s:26:\"OpenLayers base API module\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:10:\"OpenLayers\";s:12:\"dependencies\";a:5:{i:0;s:17:\"libraries (>=2.1)\";i:1;s:7:\"proj4js\";i:2;s:6:\"ctools\";i:3;s:4:\"file\";i:4;s:5:\"image\";}s:5:\"files\";a:17:{i:0;s:17:\"openlayers.module\";i:1;s:50:\"plugins/layer_types/openlayers_layer_type_bing.inc\";i:2;s:55:\"plugins/layer_types/openlayers_layer_type_cloudmade.inc\";i:3;s:51:\"plugins/layer_types/openlayers_layer_type_dummy.inc\";i:4;s:53:\"plugins/layer_types/openlayers_layer_type_geojson.inc\";i:5;s:52:\"plugins/layer_types/openlayers_layer_type_google.inc\";i:6;s:49:\"plugins/layer_types/openlayers_layer_type_gpx.inc\";i:7;s:51:\"plugins/layer_types/openlayers_layer_type_image.inc\";i:8;s:49:\"plugins/layer_types/openlayers_layer_type_kml.inc\";i:9;s:54:\"plugins/layer_types/openlayers_layer_type_maptiler.inc\";i:10;s:49:\"plugins/layer_types/openlayers_layer_type_osm.inc\";i:11;s:55:\"plugins/layer_types/openlayers_layer_type_pointgrid.inc\";i:12;s:49:\"plugins/layer_types/openlayers_layer_type_raw.inc\";i:13;s:49:\"plugins/layer_types/openlayers_layer_type_tms.inc\";i:14;s:49:\"plugins/layer_types/openlayers_layer_type_wms.inc\";i:15;s:50:\"plugins/layer_types/openlayers_layer_type_wmts.inc\";i:16;s:49:\"plugins/layer_types/openlayers_layer_type_xyz.inc\";}s:7:\"version\";s:13:\"7.x-2.0-beta9\";s:7:\"project\";s:10:\"openlayers\";s:9:\"datestamp\";s:10:\"1395830381\";s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/openlayers/tests/features/openlayers_test_example_feature/openlayers_test_example_feature.module','openlayers_test_example_feature','module','',0,0,0,0,'a:13:{s:4:\"name\";s:31:\"OpenLayers Test Example Feature\";s:11:\"description\";s:49:\"Feature to hold OpenLayers configuration example.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:10:\"OpenLayers\";s:3:\"php\";s:5:\"5.2.4\";s:7:\"version\";s:13:\"7.x-2.0-beta9\";s:7:\"project\";s:10:\"openlayers\";s:12:\"dependencies\";a:8:{i:0;s:6:\"ctools\";i:1;s:8:\"features\";i:2;s:17:\"field_sql_storage\";i:3;s:8:\"geofield\";i:4;s:4:\"node\";i:5;s:10:\"openlayers\";i:6;s:4:\"text\";i:7;s:5:\"views\";}s:8:\"features\";a:5:{s:6:\"ctools\";a:2:{i:0;s:28:\"openlayers:openlayers_maps:1\";i:1;s:23:\"views:views_default:3.0\";}s:5:\"field\";a:2:{i:0;s:36:\"node-openlayers_example_content-body\";i:1;s:62:\"node-openlayers_example_content-field_openlayers_example_input\";}s:4:\"node\";a:1:{i:0;s:26:\"openlayers_example_content\";}s:15:\"openlayers_maps\";a:1:{i:0;s:38:\"openlayers_test_openlayers_example_map\";}s:10:\"views_view\";a:2:{i:0;s:31:\"openlayers_example_data_overlay\";i:1;s:35:\"openlayers_example_map_display_view\";}}s:18:\"project status url\";s:36:\"http://drupal.org/project/openlayers\";s:9:\"datestamp\";s:10:\"1395830381\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/photos/photos.module','photos','module','',1,0,7303,0,'a:13:{s:4:\"name\";s:12:\"Album photos\";s:11:\"description\";s:25:\"Picture Management Module\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:12:\"album photos\";s:12:\"dependencies\";a:2:{i:0;s:4:\"file\";i:1;s:5:\"image\";}s:9:\"configure\";s:25:\"admin/config/media/photos\";s:5:\"files\";a:2:{i:0;s:56:\"inc/views/handlers/photos_handler_field_photos_image.inc\";i:1;s:62:\"inc/views/handlers/photos_handler_field_photos_album_cover.inc\";}s:7:\"version\";s:11:\"7.x-3.0-rc4\";s:7:\"project\";s:6:\"photos\";s:9:\"datestamp\";s:10:\"1465340041\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/photos/photos_access/photos_access.module','photos_access','module','',1,0,7301,0,'a:12:{s:4:\"name\";s:13:\"Photos access\";s:11:\"description\";s:43:\"Advanced photo access and privacy settings.\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:12:\"album photos\";s:7:\"version\";s:11:\"7.x-3.0-rc4\";s:7:\"project\";s:6:\"photos\";s:9:\"datestamp\";s:10:\"1465340041\";s:5:\"mtime\";i:1537955055;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/photos/photos_swfu/photos_swfu.module','photos_swfu','module','',0,0,0,0,'a:12:{s:4:\"name\";s:16:\"Photos SWFUpload\";s:11:\"description\";s:58:\"SWFUpload flash utility to upload multiple images at once.\";s:7:\"package\";s:12:\"album photos\";s:12:\"dependencies\";a:2:{i:0;s:6:\"photos\";i:1;s:17:\"libraries (>=2.x)\";}s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:11:\"7.x-3.0-rc4\";s:7:\"project\";s:6:\"photos\";s:9:\"datestamp\";s:10:\"1465340041\";s:5:\"mtime\";i:1537955055;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/popup/modules/popup_block/popup_block.module','popup_block','module','',0,0,-1,0,'a:12:{s:4:\"name\";s:11:\"Popup block\";s:11:\"description\";s:39:\"Enable blocks to be displayed as popups\";s:7:\"package\";s:14:\"User interface\";s:7:\"version\";s:7:\"7.x-1.4\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:2:{i:0;s:8:\"popup_ui\";i:1;s:5:\"block\";}s:5:\"files\";a:2:{i:0;s:33:\"includes/popup_block.features.inc\";i:1;s:18:\"popup_block.module\";}s:7:\"project\";s:5:\"popup\";s:9:\"datestamp\";s:10:\"1404659328\";s:5:\"mtime\";i:1593685807;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/popup/modules/popup_descriptions/popup_descriptions.module','popup_descriptions','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:18:\"Popup descriptions\";s:11:\"description\";s:50:\"Enable field descriptions on forms to be popped up\";s:7:\"package\";s:14:\"User interface\";s:7:\"version\";s:7:\"7.x-1.4\";s:4:\"core\";s:3:\"7.x\";s:9:\"configure\";s:46:\"admin/config/user-interface/popup/descriptions\";s:12:\"dependencies\";a:1:{i:0;s:8:\"popup_ui\";}s:5:\"files\";a:3:{i:0;s:25:\"popup_descriptions.module\";i:1;s:37:\"includes/popup_descriptions.admin.inc\";i:2;s:36:\"includes/popup_descriptions.util.inc\";}s:7:\"project\";s:5:\"popup\";s:9:\"datestamp\";s:10:\"1404659328\";s:5:\"mtime\";i:1593685807;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/popup/modules/popup_filter/popup_filter.module','popup_filter','module','',0,0,-1,0,'a:12:{s:4:\"name\";s:12:\"Popup Filter\";s:11:\"description\";s:89:\"Embed popup text, nodes, views, menus and php generated content within filterable content\";s:7:\"package\";s:14:\"User interface\";s:7:\"version\";s:7:\"7.x-1.4\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:8:\"popup_ui\";}s:5:\"files\";a:3:{i:0;s:19:\"popup_filter.module\";i:1;s:31:\"includes/popup_filter.admin.inc\";i:2;s:36:\"includes/popup_filter.processing.inc\";}s:7:\"project\";s:5:\"popup\";s:9:\"datestamp\";s:10:\"1404659328\";s:5:\"mtime\";i:1593685807;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/popup/modules/popup_menu/popup_menu.module','popup_menu','module','',0,0,-1,0,'a:12:{s:4:\"name\";s:10:\"Popup menu\";s:11:\"description\";s:59:\"Enable menus to be displayed as popups within block regions\";s:7:\"package\";s:14:\"User interface\";s:7:\"version\";s:7:\"7.x-1.4\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:2:{i:0;s:8:\"popup_ui\";i:1;s:4:\"menu\";}s:5:\"files\";a:3:{i:0;s:17:\"popup_menu.module\";i:1;s:28:\"includes/popup_menu.util.inc\";i:2;s:32:\"includes/popup_menu.features.inc\";}s:7:\"project\";s:5:\"popup\";s:9:\"datestamp\";s:10:\"1404659328\";s:5:\"mtime\";i:1593685807;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/popup/modules/popup_nodereference/popup_nodereference.module','popup_nodereference','module','',0,0,-1,0,'a:12:{s:4:\"name\";s:19:\"Popup Nodereference\";s:11:\"description\";s:88:\"Provides a UI to manage popup formats used within content types, views, menus and blocks\";s:7:\"package\";s:14:\"User interface\";s:7:\"version\";s:7:\"7.x-1.4\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:2:{i:0;s:5:\"popup\";i:1;s:14:\"node_reference\";}s:5:\"files\";a:2:{i:0;s:26:\"popup_nodereference.module\";i:1;s:38:\"includes/popup_nodereference.theme.inc\";}s:7:\"project\";s:5:\"popup\";s:9:\"datestamp\";s:10:\"1404659328\";s:5:\"mtime\";i:1593685807;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/popup/modules/popup_test/popup_test.module','popup_test','module','',0,0,-1,0,'a:12:{s:4:\"name\";s:10:\"Popup test\";s:11:\"description\";s:44:\"Adds popup test pages to the navigation menu\";s:7:\"package\";s:14:\"User interface\";s:7:\"version\";s:7:\"7.x-1.4\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:5:\"popup\";}s:5:\"files\";a:2:{i:0;s:17:\"popup_test.module\";i:1;s:24:\"includes/popup.pages.inc\";}s:7:\"project\";s:5:\"popup\";s:9:\"datestamp\";s:10:\"1404659328\";s:5:\"mtime\";i:1593685807;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/popup/modules/popup_ui/popup_ui.module','popup_ui','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:8:\"Popup UI\";s:11:\"description\";s:88:\"Provides a UI to manage popup formats used within content types, views, menus and blocks\";s:7:\"package\";s:14:\"User interface\";s:7:\"version\";s:7:\"7.x-1.4\";s:4:\"core\";s:3:\"7.x\";s:9:\"configure\";s:41:\"admin/config/user-interface/popup/formats\";s:12:\"dependencies\";a:1:{i:0;s:5:\"popup\";}s:5:\"files\";a:4:{i:0;s:15:\"popup_ui.module\";i:1;s:27:\"includes/popup_ui.admin.inc\";i:2;s:25:\"includes/popup_ui.api.inc\";i:3;s:30:\"includes/popup_ui.features.inc\";}s:7:\"project\";s:5:\"popup\";s:9:\"datestamp\";s:10:\"1404659328\";s:5:\"mtime\";i:1593685807;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/popup/popup.module','popup','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:5:\"Popup\";s:11:\"description\";s:43:\"Enable CSS/JQuery popus of embedded content\";s:7:\"package\";s:14:\"User interface\";s:7:\"version\";s:7:\"7.x-1.4\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:4:{i:0;s:12:\"popup.module\";i:1;s:24:\"includes/popup.admin.inc\";i:2;s:22:\"includes/popup.api.inc\";i:3;s:23:\"includes/popup.util.inc\";}s:9:\"configure\";s:33:\"admin/config/user-interface/popup\";s:7:\"project\";s:5:\"popup\";s:9:\"datestamp\";s:10:\"1404659328\";s:5:\"mtime\";i:1593685807;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/popup_message/popup_message.module','popup_message','module','',0,0,-1,0,'a:12:{s:4:\"name\";s:13:\"Popup Message\";s:11:\"description\";s:23:\"Popup message for users\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:14:\"User interface\";s:7:\"project\";s:13:\"popup_message\";s:7:\"version\";s:7:\"7.x-1.2\";s:9:\"datestamp\";s:10:\"1395329057\";s:5:\"mtime\";i:1593687969;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/proj4js/proj4js.module','proj4js','module','',1,0,0,0,'a:12:{s:4:\"name\";s:7:\"Proj4JS\";s:11:\"description\";s:23:\"Proj4JS library loader.\";s:7:\"version\";s:7:\"7.x-1.2\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:9:\"libraries\";}s:7:\"project\";s:7:\"proj4js\";s:9:\"datestamp\";s:10:\"1363209312\";s:5:\"mtime\";i:1412682890;s:7:\"package\";s:5:\"Other\";s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/radius_client/radius_client.module','radius_client','module','',0,0,0,0,'a:12:{s:4:\"name\";s:13:\"RADIUS Client\";s:11:\"description\";s:13:\"Radius Module\";s:7:\"package\";s:5:\"Other\";s:4:\"core\";s:3:\"7.x\";s:12:\"dependencies\";a:1:{i:0;s:17:\"radius_dictionary\";}s:7:\"version\";s:11:\"7.x-1.x-dev\";s:7:\"project\";s:13:\"radius_client\";s:9:\"datestamp\";s:10:\"1380624777\";s:5:\"mtime\";i:1411553495;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/radius_client/radius_client_auth/radius_client_auth.module','radius_client_auth','module','',0,0,0,0,'a:12:{s:4:\"name\";s:37:\"RADIUS Client Authentication Provider\";s:11:\"description\";s:87:\"RADIUS Authentication Provider for Drupal, allowing for user login from a RADIUS server\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:14:\"Authentication\";s:12:\"dependencies\";a:1:{i:0;s:13:\"radius_client\";}s:7:\"version\";s:11:\"7.x-1.x-dev\";s:7:\"project\";s:13:\"radius_client\";s:9:\"datestamp\";s:10:\"1380624777\";s:5:\"mtime\";i:1411553495;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/radius_dictionary/radius_dictionary.module','radius_dictionary','module','',0,0,0,0,'a:13:{s:4:\"name\";s:17:\"RADIUS Dictionary\";s:10:\"descrition\";s:35:\"Library class for RADIUS Dictionary\";s:4:\"core\";s:3:\"7.x\";s:7:\"version\";s:18:\"7.x-1.0-beta+0-dev\";s:7:\"project\";s:17:\"radius_dictionary\";s:9:\"datestamp\";s:10:\"1380624780\";s:5:\"mtime\";i:1411553742;s:12:\"dependencies\";a:0:{}s:11:\"description\";s:0:\"\";s:7:\"package\";s:5:\"Other\";s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/site_disclaimer/site_disclaimer.module','site_disclaimer','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:15:\"Site Disclaimer\";s:11:\"description\";s:46:\"Adds Site Disclaimer to the registration page.\";s:4:\"core\";s:3:\"7.x\";s:9:\"configure\";s:35:\"admin/config/people/site_disclaimer\";s:5:\"files\";a:8:{i:0;s:22:\"site_disclaimer.module\";i:1;s:23:\"site_disclaimer.install\";i:2;s:25:\"site_disclaimer.admin.inc\";i:3;s:25:\"site_disclaimer.pages.inc\";i:4;s:28:\"site_disclaimer.variable.inc\";i:5;s:60:\"views/handlers/site_disclaimer_handler_field_tou_version.inc\";i:6;s:59:\"views/handlers/site_disclaimer_handler_sort_tou_version.inc\";i:7;s:26:\"tests/site_disclaimer.test\";}s:7:\"version\";s:7:\"7.x-1.3\";s:7:\"project\";s:15:\"site_disclaimer\";s:9:\"datestamp\";s:10:\"1454450246\";s:5:\"mtime\";i:1593684952;s:12:\"dependencies\";a:0:{}s:7:\"package\";s:5:\"Other\";s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/title/tests/title_test.module','title_test','module','',0,0,-1,0,'a:13:{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:3:{i:0;s:5:\"title\";i:1;s:6:\"entity\";i:2;s:18:\"entity_translation\";}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:1537954754;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/title/title.module','title','module','',1,0,7002,100,'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:1537954754;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/variable/variable.module','variable','module','',1,1,0,0,'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:1410352904;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/variable/variable_admin/variable_admin.module','variable_admin','module','',0,0,-1,0,'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:1410352904;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/variable/variable_example/variable_example.module','variable_example','module','',0,0,-1,0,'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:1410352904;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/variable/variable_realm/variable_realm.module','variable_realm','module','',1,1,7000,-1000,'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:1410352904;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/variable/variable_store/variable_store.module','variable_store','module','',1,1,7000,-1000,'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:1410352904;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/variable/variable_views/variable_views.module','variable_views','module','',0,0,-1,0,'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:1410352904;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/views/tests/views_test.module','views_test','module','',0,0,-1,0,'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.24\";s:7:\"project\";s:5:\"views\";s:9:\"datestamp\";s:10:\"1583615732\";s:5:\"mtime\";i:1593684437;s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('sites/all/modules/views/views.module','views','module','',1,0,7302,10,'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: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:316:{i:0;s:31:\"handlers/views_handler_area.inc\";i:1;s:40:\"handlers/views_handler_area_messages.inc\";i:2;s:38:\"handlers/views_handler_area_result.inc\";i:3;s:36:\"handlers/views_handler_area_text.inc\";i:4;s:43:\"handlers/views_handler_area_text_custom.inc\";i:5;s:36:\"handlers/views_handler_area_view.inc\";i:6;s:35:\"handlers/views_handler_argument.inc\";i:7;s:40:\"handlers/views_handler_argument_date.inc\";i:8;s:43:\"handlers/views_handler_argument_formula.inc\";i:9;s:47:\"handlers/views_handler_argument_many_to_one.inc\";i:10;s:40:\"handlers/views_handler_argument_null.inc\";i:11;s:43:\"handlers/views_handler_argument_numeric.inc\";i:12;s:42:\"handlers/views_handler_argument_string.inc\";i:13;s:52:\"handlers/views_handler_argument_group_by_numeric.inc\";i:14;s:32:\"handlers/views_handler_field.inc\";i:15;s:40:\"handlers/views_handler_field_counter.inc\";i:16;s:40:\"handlers/views_handler_field_boolean.inc\";i:17;s:49:\"handlers/views_handler_field_contextual_links.inc\";i:18;s:48:\"handlers/views_handler_field_ctools_dropdown.inc\";i:19;s:39:\"handlers/views_handler_field_custom.inc\";i:20;s:37:\"handlers/views_handler_field_date.inc\";i:21;s:39:\"handlers/views_handler_field_entity.inc\";i:22;s:38:\"handlers/views_handler_field_links.inc\";i:23;s:39:\"handlers/views_handler_field_markup.inc\";i:24;s:37:\"handlers/views_handler_field_math.inc\";i:25;s:40:\"handlers/views_handler_field_numeric.inc\";i:26;s:47:\"handlers/views_handler_field_prerender_list.inc\";i:27;s:46:\"handlers/views_handler_field_time_interval.inc\";i:28;s:43:\"handlers/views_handler_field_serialized.inc\";i:29;s:45:\"handlers/views_handler_field_machine_name.inc\";i:30;s:36:\"handlers/views_handler_field_url.inc\";i:31;s:33:\"handlers/views_handler_filter.inc\";i:32;s:50:\"handlers/views_handler_filter_boolean_operator.inc\";i:33;s:57:\"handlers/views_handler_filter_boolean_operator_string.inc\";i:34;s:41:\"handlers/views_handler_filter_combine.inc\";i:35;s:38:\"handlers/views_handler_filter_date.inc\";i:36;s:42:\"handlers/views_handler_filter_equality.inc\";i:37;s:47:\"handlers/views_handler_filter_entity_bundle.inc\";i:38;s:50:\"handlers/views_handler_filter_group_by_numeric.inc\";i:39;s:45:\"handlers/views_handler_filter_in_operator.inc\";i:40;s:45:\"handlers/views_handler_filter_many_to_one.inc\";i:41;s:41:\"handlers/views_handler_filter_numeric.inc\";i:42;s:40:\"handlers/views_handler_filter_string.inc\";i:43;s:48:\"handlers/views_handler_filter_fields_compare.inc\";i:44;s:39:\"handlers/views_handler_relationship.inc\";i:45;s:53:\"handlers/views_handler_relationship_groupwise_max.inc\";i:46;s:31:\"handlers/views_handler_sort.inc\";i:47;s:36:\"handlers/views_handler_sort_date.inc\";i:48;s:39:\"handlers/views_handler_sort_formula.inc\";i:49;s:48:\"handlers/views_handler_sort_group_by_numeric.inc\";i:50;s:46:\"handlers/views_handler_sort_menu_hierarchy.inc\";i:51;s:38:\"handlers/views_handler_sort_random.inc\";i:52;s:17:\"includes/base.inc\";i:53;s:21:\"includes/handlers.inc\";i:54;s:20:\"includes/plugins.inc\";i:55;s:17:\"includes/view.inc\";i:56;s:60:\"modules/aggregator/views_handler_argument_aggregator_fid.inc\";i:57;s:60:\"modules/aggregator/views_handler_argument_aggregator_iid.inc\";i:58;s:69:\"modules/aggregator/views_handler_argument_aggregator_category_cid.inc\";i:59;s:64:\"modules/aggregator/views_handler_field_aggregator_title_link.inc\";i:60;s:62:\"modules/aggregator/views_handler_field_aggregator_category.inc\";i:61;s:70:\"modules/aggregator/views_handler_field_aggregator_item_description.inc\";i:62;s:57:\"modules/aggregator/views_handler_field_aggregator_xss.inc\";i:63;s:67:\"modules/aggregator/views_handler_filter_aggregator_category_cid.inc\";i:64;s:54:\"modules/aggregator/views_plugin_row_aggregator_rss.inc\";i:65;s:56:\"modules/book/views_plugin_argument_default_book_root.inc\";i:66;s:59:\"modules/comment/views_handler_argument_comment_user_uid.inc\";i:67;s:47:\"modules/comment/views_handler_field_comment.inc\";i:68;s:53:\"modules/comment/views_handler_field_comment_depth.inc\";i:69;s:52:\"modules/comment/views_handler_field_comment_link.inc\";i:70;s:60:\"modules/comment/views_handler_field_comment_link_approve.inc\";i:71;s:59:\"modules/comment/views_handler_field_comment_link_delete.inc\";i:72;s:57:\"modules/comment/views_handler_field_comment_link_edit.inc\";i:73;s:58:\"modules/comment/views_handler_field_comment_link_reply.inc\";i:74;s:57:\"modules/comment/views_handler_field_comment_node_link.inc\";i:75;s:56:\"modules/comment/views_handler_field_comment_username.inc\";i:76;s:61:\"modules/comment/views_handler_field_ncs_last_comment_name.inc\";i:77;s:56:\"modules/comment/views_handler_field_ncs_last_updated.inc\";i:78;s:52:\"modules/comment/views_handler_field_node_comment.inc\";i:79;s:57:\"modules/comment/views_handler_field_node_new_comments.inc\";i:80;s:62:\"modules/comment/views_handler_field_last_comment_timestamp.inc\";i:81;s:57:\"modules/comment/views_handler_filter_comment_user_uid.inc\";i:82;s:57:\"modules/comment/views_handler_filter_ncs_last_updated.inc\";i:83;s:53:\"modules/comment/views_handler_filter_node_comment.inc\";i:84;s:53:\"modules/comment/views_handler_sort_comment_thread.inc\";i:85;s:60:\"modules/comment/views_handler_sort_ncs_last_comment_name.inc\";i:86;s:55:\"modules/comment/views_handler_sort_ncs_last_updated.inc\";i:87;s:48:\"modules/comment/views_plugin_row_comment_rss.inc\";i:88;s:49:\"modules/comment/views_plugin_row_comment_view.inc\";i:89;s:52:\"modules/contact/views_handler_field_contact_link.inc\";i:90;s:43:\"modules/field/views_handler_field_field.inc\";i:91;s:59:\"modules/field/views_handler_relationship_entity_reverse.inc\";i:92;s:51:\"modules/field/views_handler_argument_field_list.inc\";i:93;s:57:\"modules/field/views_handler_filter_field_list_boolean.inc\";i:94;s:58:\"modules/field/views_handler_argument_field_list_string.inc\";i:95;s:49:\"modules/field/views_handler_filter_field_list.inc\";i:96;s:57:\"modules/filter/views_handler_field_filter_format_name.inc\";i:97;s:52:\"modules/locale/views_handler_field_node_language.inc\";i:98;s:53:\"modules/locale/views_handler_filter_node_language.inc\";i:99;s:54:\"modules/locale/views_handler_argument_locale_group.inc\";i:100;s:57:\"modules/locale/views_handler_argument_locale_language.inc\";i:101;s:51:\"modules/locale/views_handler_field_locale_group.inc\";i:102;s:54:\"modules/locale/views_handler_field_locale_language.inc\";i:103;s:55:\"modules/locale/views_handler_field_locale_link_edit.inc\";i:104;s:52:\"modules/locale/views_handler_filter_locale_group.inc\";i:105;s:55:\"modules/locale/views_handler_filter_locale_language.inc\";i:106;s:54:\"modules/locale/views_handler_filter_locale_version.inc\";i:107;s:51:\"modules/locale/views_handler_sort_node_language.inc\";i:108;s:53:\"modules/node/views_handler_argument_dates_various.inc\";i:109;s:53:\"modules/node/views_handler_argument_node_language.inc\";i:110;s:48:\"modules/node/views_handler_argument_node_nid.inc\";i:111;s:49:\"modules/node/views_handler_argument_node_type.inc\";i:112;s:48:\"modules/node/views_handler_argument_node_vid.inc\";i:113;s:57:\"modules/node/views_handler_argument_node_uid_revision.inc\";i:114;s:59:\"modules/node/views_handler_field_history_user_timestamp.inc\";i:115;s:41:\"modules/node/views_handler_field_node.inc\";i:116;s:46:\"modules/node/views_handler_field_node_link.inc\";i:117;s:53:\"modules/node/views_handler_field_node_link_delete.inc\";i:118;s:51:\"modules/node/views_handler_field_node_link_edit.inc\";i:119;s:50:\"modules/node/views_handler_field_node_revision.inc\";i:120;s:55:\"modules/node/views_handler_field_node_revision_link.inc\";i:121;s:62:\"modules/node/views_handler_field_node_revision_link_delete.inc\";i:122;s:62:\"modules/node/views_handler_field_node_revision_link_revert.inc\";i:123;s:46:\"modules/node/views_handler_field_node_path.inc\";i:124;s:46:\"modules/node/views_handler_field_node_type.inc\";i:125;s:55:\"modules/node/views_handler_field_node_version_count.inc\";i:126;s:60:\"modules/node/views_handler_filter_history_user_timestamp.inc\";i:127;s:49:\"modules/node/views_handler_filter_node_access.inc\";i:128;s:49:\"modules/node/views_handler_filter_node_status.inc\";i:129;s:47:\"modules/node/views_handler_filter_node_type.inc\";i:130;s:55:\"modules/node/views_handler_filter_node_uid_revision.inc\";i:131;s:56:\"modules/node/views_handler_filter_node_version_count.inc\";i:132;s:54:\"modules/node/views_handler_sort_node_version_count.inc\";i:133;s:51:\"modules/node/views_plugin_argument_default_node.inc\";i:134;s:52:\"modules/node/views_plugin_argument_validate_node.inc\";i:135;s:42:\"modules/node/views_plugin_row_node_rss.inc\";i:136;s:43:\"modules/node/views_plugin_row_node_view.inc\";i:137;s:52:\"modules/profile/views_handler_field_profile_date.inc\";i:138;s:52:\"modules/profile/views_handler_field_profile_list.inc\";i:139;s:58:\"modules/profile/views_handler_filter_profile_selection.inc\";i:140;s:48:\"modules/search/views_handler_argument_search.inc\";i:141;s:51:\"modules/search/views_handler_field_search_score.inc\";i:142;s:46:\"modules/search/views_handler_filter_search.inc\";i:143;s:50:\"modules/search/views_handler_sort_search_score.inc\";i:144;s:47:\"modules/search/views_plugin_row_search_view.inc\";i:145;s:57:\"modules/statistics/views_handler_field_accesslog_path.inc\";i:146;s:65:\"modules/statistics/views_handler_field_node_counter_timestamp.inc\";i:147;s:61:\"modules/statistics/views_handler_field_statistics_numeric.inc\";i:148;s:50:\"modules/system/views_handler_argument_file_fid.inc\";i:149;s:43:\"modules/system/views_handler_field_file.inc\";i:150;s:53:\"modules/system/views_handler_field_file_extension.inc\";i:151;s:52:\"modules/system/views_handler_field_file_filemime.inc\";i:152;s:47:\"modules/system/views_handler_field_file_uri.inc\";i:153;s:50:\"modules/system/views_handler_field_file_status.inc\";i:154;s:51:\"modules/system/views_handler_filter_file_status.inc\";i:155;s:52:\"modules/taxonomy/views_handler_argument_taxonomy.inc\";i:156;s:57:\"modules/taxonomy/views_handler_argument_term_node_tid.inc\";i:157;s:63:\"modules/taxonomy/views_handler_argument_term_node_tid_depth.inc\";i:158;s:68:\"modules/taxonomy/views_handler_argument_term_node_tid_depth_join.inc\";i:159;s:72:\"modules/taxonomy/views_handler_argument_term_node_tid_depth_modifier.inc\";i:160;s:58:\"modules/taxonomy/views_handler_argument_vocabulary_vid.inc\";i:161;s:67:\"modules/taxonomy/views_handler_argument_vocabulary_machine_name.inc\";i:162;s:49:\"modules/taxonomy/views_handler_field_taxonomy.inc\";i:163;s:54:\"modules/taxonomy/views_handler_field_term_node_tid.inc\";i:164;s:55:\"modules/taxonomy/views_handler_field_term_link_edit.inc\";i:165;s:55:\"modules/taxonomy/views_handler_filter_term_node_tid.inc\";i:166;s:61:\"modules/taxonomy/views_handler_filter_term_node_tid_depth.inc\";i:167;s:66:\"modules/taxonomy/views_handler_filter_term_node_tid_depth_join.inc\";i:168;s:56:\"modules/taxonomy/views_handler_filter_vocabulary_vid.inc\";i:169;s:65:\"modules/taxonomy/views_handler_filter_vocabulary_machine_name.inc\";i:170;s:62:\"modules/taxonomy/views_handler_relationship_node_term_data.inc\";i:171;s:65:\"modules/taxonomy/views_plugin_argument_validate_taxonomy_term.inc\";i:172;s:63:\"modules/taxonomy/views_plugin_argument_default_taxonomy_tid.inc\";i:173;s:67:\"modules/tracker/views_handler_argument_tracker_comment_user_uid.inc\";i:174;s:65:\"modules/tracker/views_handler_filter_tracker_comment_user_uid.inc\";i:175;s:65:\"modules/tracker/views_handler_filter_tracker_boolean_operator.inc\";i:176;s:51:\"modules/system/views_handler_filter_system_type.inc\";i:177;s:56:\"modules/translation/views_handler_argument_node_tnid.inc\";i:178;s:63:\"modules/translation/views_handler_field_node_link_translate.inc\";i:179;s:65:\"modules/translation/views_handler_field_node_translation_link.inc\";i:180;s:54:\"modules/translation/views_handler_filter_node_tnid.inc\";i:181;s:60:\"modules/translation/views_handler_filter_node_tnid_child.inc\";i:182;s:62:\"modules/translation/views_handler_relationship_translation.inc\";i:183;s:48:\"modules/user/views_handler_argument_user_uid.inc\";i:184;s:55:\"modules/user/views_handler_argument_users_roles_rid.inc\";i:185;s:41:\"modules/user/views_handler_field_user.inc\";i:186;s:50:\"modules/user/views_handler_field_user_language.inc\";i:187;s:46:\"modules/user/views_handler_field_user_link.inc\";i:188;s:53:\"modules/user/views_handler_field_user_link_cancel.inc\";i:189;s:51:\"modules/user/views_handler_field_user_link_edit.inc\";i:190;s:46:\"modules/user/views_handler_field_user_mail.inc\";i:191;s:46:\"modules/user/views_handler_field_user_name.inc\";i:192;s:53:\"modules/user/views_handler_field_user_permissions.inc\";i:193;s:49:\"modules/user/views_handler_field_user_picture.inc\";i:194;s:47:\"modules/user/views_handler_field_user_roles.inc\";i:195;s:50:\"modules/user/views_handler_filter_user_current.inc\";i:196;s:47:\"modules/user/views_handler_filter_user_name.inc\";i:197;s:54:\"modules/user/views_handler_filter_user_permissions.inc\";i:198;s:48:\"modules/user/views_handler_filter_user_roles.inc\";i:199;s:59:\"modules/user/views_plugin_argument_default_current_user.inc\";i:200;s:51:\"modules/user/views_plugin_argument_default_user.inc\";i:201;s:52:\"modules/user/views_plugin_argument_validate_user.inc\";i:202;s:43:\"modules/user/views_plugin_row_user_view.inc\";i:203;s:31:\"plugins/views_plugin_access.inc\";i:204;s:36:\"plugins/views_plugin_access_none.inc\";i:205;s:36:\"plugins/views_plugin_access_perm.inc\";i:206;s:36:\"plugins/views_plugin_access_role.inc\";i:207;s:41:\"plugins/views_plugin_argument_default.inc\";i:208;s:45:\"plugins/views_plugin_argument_default_php.inc\";i:209;s:47:\"plugins/views_plugin_argument_default_fixed.inc\";i:210;s:45:\"plugins/views_plugin_argument_default_raw.inc\";i:211;s:42:\"plugins/views_plugin_argument_validate.inc\";i:212;s:50:\"plugins/views_plugin_argument_validate_numeric.inc\";i:213;s:46:\"plugins/views_plugin_argument_validate_php.inc\";i:214;s:30:\"plugins/views_plugin_cache.inc\";i:215;s:35:\"plugins/views_plugin_cache_none.inc\";i:216;s:35:\"plugins/views_plugin_cache_time.inc\";i:217;s:32:\"plugins/views_plugin_display.inc\";i:218;s:43:\"plugins/views_plugin_display_attachment.inc\";i:219;s:38:\"plugins/views_plugin_display_block.inc\";i:220;s:40:\"plugins/views_plugin_display_default.inc\";i:221;s:38:\"plugins/views_plugin_display_embed.inc\";i:222;s:41:\"plugins/views_plugin_display_extender.inc\";i:223;s:37:\"plugins/views_plugin_display_feed.inc\";i:224;s:37:\"plugins/views_plugin_display_page.inc\";i:225;s:43:\"plugins/views_plugin_exposed_form_basic.inc\";i:226;s:37:\"plugins/views_plugin_exposed_form.inc\";i:227;s:52:\"plugins/views_plugin_exposed_form_input_required.inc\";i:228;s:42:\"plugins/views_plugin_localization_core.inc\";i:229;s:37:\"plugins/views_plugin_localization.inc\";i:230;s:42:\"plugins/views_plugin_localization_none.inc\";i:231;s:30:\"plugins/views_plugin_pager.inc\";i:232;s:35:\"plugins/views_plugin_pager_full.inc\";i:233;s:35:\"plugins/views_plugin_pager_mini.inc\";i:234;s:35:\"plugins/views_plugin_pager_none.inc\";i:235;s:35:\"plugins/views_plugin_pager_some.inc\";i:236;s:30:\"plugins/views_plugin_query.inc\";i:237;s:38:\"plugins/views_plugin_query_default.inc\";i:238;s:28:\"plugins/views_plugin_row.inc\";i:239;s:35:\"plugins/views_plugin_row_fields.inc\";i:240;s:39:\"plugins/views_plugin_row_rss_fields.inc\";i:241;s:30:\"plugins/views_plugin_style.inc\";i:242;s:38:\"plugins/views_plugin_style_default.inc\";i:243;s:35:\"plugins/views_plugin_style_grid.inc\";i:244;s:35:\"plugins/views_plugin_style_list.inc\";i:245;s:40:\"plugins/views_plugin_style_jump_menu.inc\";i:246;s:38:\"plugins/views_plugin_style_mapping.inc\";i:247;s:34:\"plugins/views_plugin_style_rss.inc\";i:248;s:38:\"plugins/views_plugin_style_summary.inc\";i:249;s:48:\"plugins/views_plugin_style_summary_jump_menu.inc\";i:250;s:50:\"plugins/views_plugin_style_summary_unformatted.inc\";i:251;s:36:\"plugins/views_plugin_style_table.inc\";i:252;s:34:\"tests/handlers/views_handlers.test\";i:253;s:43:\"tests/handlers/views_handler_area_text.test\";i:254;s:47:\"tests/handlers/views_handler_argument_null.test\";i:255;s:39:\"tests/handlers/views_handler_field.test\";i:256;s:47:\"tests/handlers/views_handler_field_boolean.test\";i:257;s:46:\"tests/handlers/views_handler_field_custom.test\";i:258;s:47:\"tests/handlers/views_handler_field_counter.test\";i:259;s:44:\"tests/handlers/views_handler_field_date.test\";i:260;s:54:\"tests/handlers/views_handler_field_file_extension.test\";i:261;s:49:\"tests/handlers/views_handler_field_file_size.test\";i:262;s:44:\"tests/handlers/views_handler_field_math.test\";i:263;s:43:\"tests/handlers/views_handler_field_url.test\";i:264;s:43:\"tests/handlers/views_handler_field_xss.test\";i:265;s:48:\"tests/handlers/views_handler_filter_combine.test\";i:266;s:45:\"tests/handlers/views_handler_filter_date.test\";i:267;s:49:\"tests/handlers/views_handler_filter_equality.test\";i:268;s:52:\"tests/handlers/views_handler_filter_in_operator.test\";i:269;s:48:\"tests/handlers/views_handler_filter_numeric.test\";i:270;s:47:\"tests/handlers/views_handler_filter_string.test\";i:271;s:43:\"tests/handlers/views_handler_manytoone.test\";i:272;s:45:\"tests/handlers/views_handler_sort_random.test\";i:273;s:43:\"tests/handlers/views_handler_sort_date.test\";i:274;s:38:\"tests/handlers/views_handler_sort.test\";i:275;s:46:\"tests/test_handlers/views_test_area_access.inc\";i:276;s:60:\"tests/test_plugins/views_test_plugin_access_test_dynamic.inc\";i:277;s:59:\"tests/test_plugins/views_test_plugin_access_test_static.inc\";i:278;s:59:\"tests/test_plugins/views_test_plugin_style_test_mapping.inc\";i:279;s:39:\"tests/plugins/views_plugin_display.test\";i:280;s:46:\"tests/styles/views_plugin_style_jump_menu.test\";i:281;s:36:\"tests/styles/views_plugin_style.test\";i:282;s:41:\"tests/styles/views_plugin_style_base.test\";i:283;s:44:\"tests/styles/views_plugin_style_mapping.test\";i:284;s:48:\"tests/styles/views_plugin_style_unformatted.test\";i:285;s:23:\"tests/views_access.test\";i:286;s:24:\"tests/views_analyze.test\";i:287;s:22:\"tests/views_basic.test\";i:288;s:21:\"tests/views_ajax.test\";i:289;s:33:\"tests/views_argument_default.test\";i:290;s:35:\"tests/views_argument_validator.test\";i:291;s:29:\"tests/views_exposed_form.test\";i:292;s:31:\"tests/field/views_fieldapi.test\";i:293;s:25:\"tests/views_glossary.test\";i:294;s:24:\"tests/views_groupby.test\";i:295;s:31:\"tests/views_handler_filter.test\";i:296;s:25:\"tests/views_handlers.test\";i:297;s:23:\"tests/views_module.test\";i:298;s:22:\"tests/views_pager.test\";i:299;s:40:\"tests/views_plugin_localization_test.inc\";i:300;s:29:\"tests/views_translatable.test\";i:301;s:22:\"tests/views_query.test\";i:302;s:24:\"tests/views_upgrade.test\";i:303;s:34:\"tests/views_test.views_default.inc\";i:304;s:58:\"tests/comment/views_handler_argument_comment_user_uid.test\";i:305;s:56:\"tests/comment/views_handler_filter_comment_user_uid.test\";i:306;s:45:\"tests/node/views_node_revision_relations.test\";i:307;s:61:\"tests/taxonomy/views_handler_relationship_node_term_data.test\";i:308;s:45:\"tests/user/views_handler_field_user_name.test\";i:309;s:43:\"tests/user/views_user_argument_default.test\";i:310;s:44:\"tests/user/views_user_argument_validate.test\";i:311;s:26:\"tests/user/views_user.test\";i:312;s:22:\"tests/views_cache.test\";i:313;s:22:\"tests/views_clone.test\";i:314;s:21:\"tests/views_view.test\";i:315;s:19:\"tests/views_ui.test\";}s:7:\"version\";s:8:\"7.x-3.24\";s:7:\"project\";s:5:\"views\";s:9:\"datestamp\";s:10:\"1583615732\";s:5:\"mtime\";i:1593684437;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/views/views_ui.module','views_ui','module','',1,0,0,0,'a:14:{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:34:\"# @codingStandardsIgnoreLine\nfiles\";a:1:{i:0;s:15:\"views_ui.module\";}s:5:\"files\";a:1:{i:0;s:57:\"plugins/views_wizard/views_ui_base_views_wizard.class.php\";}s:7:\"version\";s:8:\"7.x-3.24\";s:7:\"project\";s:5:\"views\";s:9:\"datestamp\";s:10:\"1583615732\";s:5:\"mtime\";i:1593684437;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/modules/views_stylizer/views_stylizer.module','views_stylizer','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:14:\"Views Stylizer\";s:11:\"description\";s:55:\"Allows custom HTML widgets to be applied as Views Style\";s:4:\"core\";s:3:\"7.x\";s:7:\"package\";s:5:\"Sauce\";s:12:\"dependencies\";a:2:{i:0;s:5:\"views\";i:1;s:25:\"dynamic_fieldable_content\";}s:9:\"configure\";s:27:\"default-views-stylizer-view\";s:5:\"files\";a:1:{i:0;s:45:\"plugins/views_plugin_style_views_stylizer.inc\";}s:7:\"version\";s:7:\"7.x-1.3\";s:7:\"project\";s:14:\"views_stylizer\";s:9:\"datestamp\";s:10:\"1397840028\";s:5:\"mtime\";i:1412861318;s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('sites/all/themes/alpha_responsive_theme/alpha_responsive_theme.info','alpha_responsive_theme','theme','themes/engines/phptemplate/phptemplate.engine',1,0,-1,0,'a:18:{s:4:\"name\";s:22:\"Alpha Responsive Theme\";s:11:\"description\";s:178:\"Designed & Developed by <a href=http://www.zymphonies.com>Zymphonies</a><br/>Contact us for any kind of Drupal services <a href=mailto:info@zymphonies.com>info@zymphonies.com</a>\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:3:{s:20:\"css/font-awesome.css\";s:60:\"sites/all/themes/alpha_responsive_theme/css/font-awesome.css\";s:13:\"css/style.css\";s:53:\"sites/all/themes/alpha_responsive_theme/css/style.css\";s:13:\"css/media.css\";s:53:\"sites/all/themes/alpha_responsive_theme/css/media.css\";}}s:7:\"scripts\";a:1:{s:12:\"js/custom.js\";s:52:\"sites/all/themes/alpha_responsive_theme/js/custom.js\";}s:7:\"regions\";a:23:{s:6:\"search\";s:13:\"Search widget\";s:9:\"user_menu\";s:16:\"User menu widget\";s:9:\"slideshow\";s:16:\"Slideshow widget\";s:13:\"front_welcome\";s:20:\"Front welcome widget\";s:9:\"top_first\";s:16:\"First top widget\";s:10:\"top_second\";s:17:\"Second top widget\";s:9:\"top_third\";s:16:\"Third top widget\";s:13:\"sidebar_first\";s:13:\"First sidebar\";s:14:\"sidebar_second\";s:14:\"Second sidebar\";s:7:\"content\";s:7:\"Content\";s:10:\"highlights\";s:17:\"Highlights widget\";s:15:\"bottom_widget_1\";s:19:\"Bottom first widget\";s:15:\"bottom_widget_2\";s:20:\"Bottom second widget\";s:15:\"bottom_widget_3\";s:19:\"Bottom third widget\";s:12:\"footer_first\";s:19:\"First bottom widget\";s:13:\"footer_second\";s:20:\"Second bottom widget\";s:12:\"footer_third\";s:19:\"Third bottom widget\";s:12:\"footer_forth\";s:19:\"Forth bottom widget\";s:8:\"page_top\";s:8:\"Page top\";s:11:\"page_bottom\";s:11:\"Page bottom\";s:14:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:4:\"name\";i:2;s:6:\"slogan\";i:3;s:17:\"node_user_picture\";i:4;s:20:\"comment_user_picture\";i:5;s:25:\"comment_user_verification\";i:6;s:7:\"favicon\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:8:\"settings\";a:8:{s:11:\"breadcrumbs\";s:1:\"1\";s:12:\"social_links\";s:1:\"1\";s:11:\"twitter_url\";s:30:\"https://twitter.com/zymphonies\";s:12:\"facebook_url\";s:35:\"https://www.facebook.com/zymphonies\";s:17:\"gplus_profile_url\";s:52:\"https://plus.google.com/u/1/+ZymphoniesTechnologies/\";s:20:\"linkedin_profile_url\";s:43:\"https://www.linkedin.com/company/zymphonies\";s:21:\"pinterest_profile_url\";s:36:\"http://www.pinterest.com/zymphonies/\";s:19:\"youtube_profile_url\";s:22:\"http://www.youtube.com\";}s:7:\"version\";s:7:\"7.x-1.4\";s:7:\"project\";s:22:\"alpha_responsive_theme\";s:9:\"datestamp\";s:10:\"1511889487\";s:10:\"screenshot\";s:54:\"sites/all/themes/alpha_responsive_theme/screenshot.png\";s:3:\"php\";s:5:\"5.2.4\";s:5:\"mtime\";i:1537955055;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}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\";}}'),('sites/all/themes/multipurpose/multipurpose.info','multipurpose','theme','themes/engines/phptemplate/phptemplate.engine',1,0,-1,0,'a:18:{s:4:\"name\";s:18:\"Multipurpose Theme\";s:11:\"description\";s:112:\"Multipurpose Theme is a premium Drupal 7 theme. Developed by <a href=\"http://www.devsaran.com\">Devsaran.com</a>.\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:2:{s:9:\"style.css\";s:39:\"sites/all/themes/multipurpose/style.css\";s:18:\"css/responsive.css\";s:48:\"sites/all/themes/multipurpose/css/responsive.css\";}}s:7:\"scripts\";a:3:{s:12:\"js/retina.js\";s:42:\"sites/all/themes/multipurpose/js/retina.js\";s:13:\"js/plugins.js\";s:43:\"sites/all/themes/multipurpose/js/plugins.js\";s:12:\"js/global.js\";s:42:\"sites/all/themes/multipurpose/js/global.js\";}s:7:\"regions\";a:15:{s:13:\"sidebar_first\";s:13:\"First Sidebar\";s:6:\"header\";s:6:\"Header\";s:13:\"preface_first\";s:13:\"Preface First\";s:14:\"preface_middle\";s:14:\"Preface Middle\";s:12:\"preface_last\";s:12:\"Preface Last\";s:11:\"content_top\";s:11:\"Content Top\";s:7:\"content\";s:7:\"Content\";s:4:\"help\";s:4:\"Help\";s:6:\"footer\";s:6:\"Footer\";s:12:\"footer_first\";s:12:\"First Bottom\";s:13:\"footer_second\";s:13:\"Second Bottom\";s:12:\"footer_third\";s:12:\"Third Bottom\";s:14:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:4:\"name\";i:2;s:6:\"slogan\";i:3;s:17:\"node_user_picture\";i:4;s:20:\"comment_user_picture\";i:5;s:25:\"comment_user_verification\";i:6;s:7:\"favicon\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:8:\"settings\";a:8:{s:17:\"slideshow_display\";s:1:\"1\";s:11:\"breadcrumbs\";s:1:\"1\";s:10:\"image_logo\";s:1:\"0\";s:18:\"socialicon_display\";s:1:\"1\";s:12:\"facebook_url\";s:39:\"http://www.facebook.com/devsaran.drupal\";s:11:\"twitter_url\";s:34:\"http://www.twitter.com/saranquardz\";s:15:\"google_plus_url\";s:49:\"https://plus.google.com/u/0/109064032428497406718\";s:13:\"pinterest_url\";s:20:\"http://pinterest.com\";}s:7:\"version\";s:7:\"7.x-1.0\";s:7:\"project\";s:12:\"multipurpose\";s:9:\"datestamp\";s:10:\"1409600329\";s:10:\"screenshot\";s:44:\"sites/all/themes/multipurpose/screenshot.png\";s:3:\"php\";s:5:\"5.2.4\";s:5:\"mtime\";i:1413461100;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}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\";}}'),('sites/all/themes/venture_theme/venture_theme.info','venture_theme','theme','themes/engines/phptemplate/phptemplate.engine',1,0,-1,0,'a:18:{s:4:\"name\";s:13:\"Venture Theme\";s:11:\"description\";s:107:\"Venture Theme is a premium Drupal 7 theme. Developed by <a href=\"http://www.devsaran.com\">Devsaran.com</a>.\";s:4:\"core\";s:3:\"7.x\";s:6:\"engine\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:2:{s:9:\"style.css\";s:40:\"sites/all/themes/venture_theme/style.css\";s:18:\"css/responsive.css\";s:49:\"sites/all/themes/venture_theme/css/responsive.css\";}}s:7:\"scripts\";a:3:{s:12:\"js/retina.js\";s:43:\"sites/all/themes/venture_theme/js/retina.js\";s:13:\"js/plugins.js\";s:44:\"sites/all/themes/venture_theme/js/plugins.js\";s:12:\"js/global.js\";s:43:\"sites/all/themes/venture_theme/js/global.js\";}s:7:\"regions\";a:15:{s:13:\"sidebar_first\";s:13:\"First Sidebar\";s:6:\"header\";s:6:\"Header\";s:13:\"preface_first\";s:13:\"Preface First\";s:14:\"preface_middle\";s:14:\"Preface Middle\";s:12:\"preface_last\";s:12:\"Preface Last\";s:11:\"content_top\";s:11:\"Content Top\";s:7:\"content\";s:7:\"Content\";s:4:\"help\";s:4:\"Help\";s:6:\"footer\";s:6:\"Footer\";s:12:\"footer_first\";s:12:\"First Bottom\";s:13:\"footer_second\";s:13:\"Second Bottom\";s:12:\"footer_third\";s:12:\"Third Bottom\";s:14:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:4:\"name\";i:2;s:6:\"slogan\";i:3;s:17:\"node_user_picture\";i:4;s:20:\"comment_user_picture\";i:5;s:25:\"comment_user_verification\";i:6;s:7:\"favicon\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:8:\"settings\";a:12:{s:17:\"slideshow_display\";s:1:\"1\";s:11:\"breadcrumbs\";s:1:\"1\";s:10:\"image_logo\";s:1:\"0\";s:11:\"slide1_head\";s:14:\"Sample product\";s:11:\"slide2_head\";s:14:\"Sample service\";s:11:\"slide3_head\";s:10:\"Contact us\";s:11:\"slide1_desc\";s:40:\"Sed do eiusmod tempor incididunt elit...\";s:11:\"slide2_desc\";s:42:\"Lorem ipsum dolor sit amet, consectetur...\";s:11:\"slide3_desc\";s:41:\"Duis aute irure dolor in reprehenderit...\";s:10:\"slide1_url\";s:6:\"node/1\";s:10:\"slide2_url\";s:6:\"node/2\";s:10:\"slide3_url\";s:6:\"node/3\";}s:7:\"version\";s:7:\"7.x-1.1\";s:7:\"project\";s:13:\"venture_theme\";s:9:\"datestamp\";s:10:\"1402425233\";s:10:\"screenshot\";s:45:\"sites/all/themes/venture_theme/screenshot.png\";s:3:\"php\";s:5:\"5.2.4\";s:5:\"mtime\";i:1411558912;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}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\";}}'),('sites/default/modules/chartModule/chartModule.module','chartModule','module','',1,0,0,0,'a:11:{s:4:\"name\";s:11:\"chartModule\";s:11:\"description\";s:32:\"weather forecast in chart format\";s:4:\"core\";s:3:\"7.x\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:15:\"css/general.css\";s:49:\"sites/default/modules/chartModule/css/general.css\";}}s:7:\"package\";s:22:\"Meteo at Uniparthenope\";s:5:\"mtime\";i:1424957246;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;}'),('themes/bartik/bartik.info','bartik','theme','themes/engines/phptemplate/phptemplate.engine',1,0,-1,0,'a:19:{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.59\";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:20:{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:14:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"settings\";a:1:{s:20:\"shortcut_module_link\";s:1:\"0\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1524673284\";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:1538750217;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}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\";}}'),('themes/garland/garland.info','garland','theme','themes/engines/phptemplate/phptemplate.engine',0,0,-1,0,'a:19:{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.59\";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:\"1524673284\";s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:12:{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:14:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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:1538750217;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}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\";}}'),('themes/seven/seven.info','seven','theme','themes/engines/phptemplate/phptemplate.engine',1,0,-1,0,'a:19:{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.59\";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:8:{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:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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:\"1524673284\";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:1538750217;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}'),('themes/stark/stark.info','stark','theme','themes/engines/phptemplate/phptemplate.engine',0,0,-1,0,'a:18:{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.59\";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:\"1524673284\";s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:12:{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:14:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}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:1538750217;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}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\";}}');
/*!40000 ALTER TABLE `system` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `taxonomy_index`
--

DROP TABLE IF EXISTS `taxonomy_index`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `taxonomy_index` (
  `nid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'The node.nid this record tracks.',
  `tid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'The term ID.',
  `sticky` tinyint(4) DEFAULT 0 COMMENT 'Boolean indicating whether the node is sticky.',
  `created` int(11) NOT NULL DEFAULT 0 COMMENT 'The Unix timestamp when the node was created.',
  KEY `term_node` (`tid`,`sticky`,`created`),
  KEY `nid` (`nid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Maintains denormalized information about node/term...';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `taxonomy_index`
--

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

--
-- Table structure for table `taxonomy_term_data`
--

DROP TABLE IF EXISTS `taxonomy_term_data`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `taxonomy_term_data` (
  `tid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: Unique term ID.',
  `vid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'The taxonomy_vocabulary.vid of the vocabulary to which the term is assigned.',
  `name` varchar(255) NOT NULL DEFAULT '' COMMENT 'The term name.',
  `description` longtext DEFAULT NULL COMMENT 'A description of the term.',
  `format` varchar(255) DEFAULT NULL COMMENT 'The filter_format.format of the description.',
  `weight` int(11) NOT NULL DEFAULT 0 COMMENT 'The weight of this term in relation to other terms.',
  `language` varchar(12) NOT NULL DEFAULT 'und',
  `i18n_tsid` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`tid`),
  KEY `taxonomy_tree` (`vid`,`weight`,`name`),
  KEY `vid_name` (`vid`,`name`),
  KEY `name` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Stores term information.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `taxonomy_term_data`
--

LOCK TABLES `taxonomy_term_data` WRITE;
/*!40000 ALTER TABLE `taxonomy_term_data` DISABLE KEYS */;
INSERT INTO `taxonomy_term_data` VALUES (1,2,'General discussion','',NULL,0,'und',0);
/*!40000 ALTER TABLE `taxonomy_term_data` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `taxonomy_term_hierarchy`
--

DROP TABLE IF EXISTS `taxonomy_term_hierarchy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `taxonomy_term_hierarchy` (
  `tid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Primary Key: The taxonomy_term_data.tid of the term.',
  `parent` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Primary Key: The taxonomy_term_data.tid of the term’s parent. 0 indicates no parent.',
  PRIMARY KEY (`tid`,`parent`),
  KEY `parent` (`parent`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores the hierarchical relationship between terms.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `taxonomy_term_hierarchy`
--

LOCK TABLES `taxonomy_term_hierarchy` WRITE;
/*!40000 ALTER TABLE `taxonomy_term_hierarchy` DISABLE KEYS */;
INSERT INTO `taxonomy_term_hierarchy` VALUES (1,0);
/*!40000 ALTER TABLE `taxonomy_term_hierarchy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `taxonomy_vocabulary`
--

DROP TABLE IF EXISTS `taxonomy_vocabulary`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `taxonomy_vocabulary` (
  `vid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: Unique vocabulary ID.',
  `name` varchar(255) NOT NULL DEFAULT '' COMMENT 'Name of the vocabulary.',
  `machine_name` varchar(255) NOT NULL DEFAULT '' COMMENT 'The vocabulary machine name.',
  `description` longtext DEFAULT NULL COMMENT 'Description of the vocabulary.',
  `hierarchy` tinyint(3) unsigned NOT NULL DEFAULT 0 COMMENT 'The type of hierarchy allowed within the vocabulary. (0 = disabled, 1 = single, 2 = multiple)',
  `module` varchar(255) NOT NULL DEFAULT '' COMMENT 'The module which created the vocabulary.',
  `weight` int(11) NOT NULL DEFAULT 0 COMMENT 'The weight of this vocabulary in relation to other vocabularies.',
  `language` varchar(12) NOT NULL DEFAULT 'und',
  `i18n_mode` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`vid`),
  UNIQUE KEY `machine_name` (`machine_name`),
  KEY `list` (`weight`,`name`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='Stores vocabulary information.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `taxonomy_vocabulary`
--

LOCK TABLES `taxonomy_vocabulary` WRITE;
/*!40000 ALTER TABLE `taxonomy_vocabulary` DISABLE KEYS */;
INSERT INTO `taxonomy_vocabulary` VALUES (1,'Tags','tags','Use tags to group articles on similar topics into categories.',0,'taxonomy',0,'und',0),(2,'Forums','forums','Forum navigation vocabulary',1,'forum',-10,'und',1);
/*!40000 ALTER TABLE `taxonomy_vocabulary` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `url_alias`
--

DROP TABLE IF EXISTS `url_alias`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `url_alias` (
  `pid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'A unique path alias identifier.',
  `source` varchar(255) NOT NULL DEFAULT '' COMMENT 'The Drupal path this alias is for; e.g. node/12.',
  `alias` varchar(255) NOT NULL DEFAULT '' COMMENT 'The alias for this path; e.g. title-of-the-story.',
  `language` varchar(12) NOT NULL DEFAULT '' COMMENT 'The language this alias is for; if ’und’, the alias will be used for unknown languages. Each Drupal path can have an alias for each supported language.',
  PRIMARY KEY (`pid`),
  KEY `alias_language_pid` (`alias`,`language`,`pid`),
  KEY `source_language_pid` (`source`,`language`,`pid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='A list of URL aliases for Drupal paths; a user may visit...';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `url_alias`
--

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

--
-- Table structure for table `users`
--

DROP TABLE IF EXISTS `users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `users` (
  `uid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Primary Key: Unique user ID.',
  `name` varchar(60) NOT NULL DEFAULT '' COMMENT 'Unique user name.',
  `pass` varchar(128) NOT NULL DEFAULT '' COMMENT 'User’s password (hashed).',
  `mail` varchar(254) DEFAULT '' COMMENT 'User’s e-mail address.',
  `theme` varchar(255) NOT NULL DEFAULT '' COMMENT 'User’s default theme.',
  `signature` varchar(255) NOT NULL DEFAULT '' COMMENT 'User’s signature.',
  `signature_format` varchar(255) DEFAULT NULL COMMENT 'The filter_format.format of the signature.',
  `created` int(11) NOT NULL DEFAULT 0 COMMENT 'Timestamp for when user was created.',
  `access` int(11) NOT NULL DEFAULT 0 COMMENT 'Timestamp for previous time user accessed the site.',
  `login` int(11) NOT NULL DEFAULT 0 COMMENT 'Timestamp for user’s last login.',
  `status` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'Whether the user is active(1) or blocked(0).',
  `timezone` varchar(32) DEFAULT NULL COMMENT 'User’s time zone.',
  `language` varchar(12) NOT NULL DEFAULT '' COMMENT 'User’s default language.',
  `picture` int(11) NOT NULL DEFAULT 0 COMMENT 'Foreign key: file_managed.fid of user’s picture.',
  `init` varchar(254) DEFAULT '' COMMENT 'E-mail address used for initial account creation.',
  `data` longblob DEFAULT NULL COMMENT 'A serialized array of name value pairs that are related to the user. Any form values posted during user edit are stored and are loaded into the $user object during user_load(). Use of this field is discouraged and it will likely disappear in a future...',
  PRIMARY KEY (`uid`),
  UNIQUE KEY `name` (`name`),
  KEY `access` (`access`),
  KEY `created` (`created`),
  KEY `mail` (`mail`),
  KEY `picture` (`picture`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores user data.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `users`
--

LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
INSERT INTO `users` VALUES (0,'','','','','',NULL,0,0,0,0,NULL,'',0,'',NULL),(1,'admin','$S$DkaRqaEnqXRFwLM/dCvGZ6LrKxIK9B/fz.cJGNdKEkVaweINtIgS','raffaele.montella@uniparhenope.it','','',NULL,1409923615,1652171422,1652170068,1,'Europe/Berlin','',0,'raffaele.montella@uniparhenope.it','b:0;'),(28,'raffmont','$S$D8fptKPrSCtxN3fnbRxvRBrLgO0hHbPf3X9Nt6jI4Qs4sNzzVzvo','raffaele.montella@uniparthenope.it','','','filtered_html',1411554132,1412862323,1412862323,1,'','en',0,'raffmont','a:5:{s:16:\"ckeditor_default\";s:1:\"t\";s:20:\"ckeditor_show_toggle\";s:1:\"t\";s:14:\"ckeditor_width\";s:4:\"100%\";s:13:\"ckeditor_lang\";s:2:\"en\";s:18:\"ckeditor_auto_lang\";s:1:\"t\";}'),(37,'budillon@uniparthenope.it','$S$DgzFYxlIou/syHhT3iA5TLSNKzdyaMeYR9p4TBMgKc0S8RkBwV9/','budillon@uniparthenope.it','','','filtered_html',1411572872,1412085573,1412085573,1,'','en',0,'budillon@uniparthenope.it','a:5:{s:16:\"ckeditor_default\";s:1:\"t\";s:20:\"ckeditor_show_toggle\";s:1:\"t\";s:14:\"ckeditor_width\";s:4:\"100%\";s:13:\"ckeditor_lang\";s:2:\"en\";s:18:\"ckeditor_auto_lang\";s:1:\"t\";}'),(38,'diana.diluccio@uniparthenope.it','$S$DsiCFyAfVvvZC778OKOHpTaNqheAReOjJsiWeZ5lCmwJWapi0Xt.','diana.diluccio@uniparthenope.it','','','filtered_html',1411576403,1412069655,1412069655,1,'','en',0,'diana.diluccio@uniparthenope.it','a:5:{s:16:\"ckeditor_default\";s:1:\"t\";s:20:\"ckeditor_show_toggle\";s:1:\"t\";s:14:\"ckeditor_width\";s:4:\"100%\";s:13:\"ckeditor_lang\";s:2:\"en\";s:18:\"ckeditor_auto_lang\";s:1:\"t\";}'),(39,'0121000060','$S$Dt5pkQHgGFS9fqhu8t4lkl5xxwknWkzwDbu9sTnyl3NC7MxwMNb0','','','',NULL,1411737750,1411737750,1411737750,1,NULL,'',0,'0121000060',NULL),(40,'destefano@uniparthenope.it','$S$DhTMn5.uQ3DrIpNVngCQRqd4qwNQuhsQm1TrcjRrhMlVlLGk2YgO','destefano@uniparthenope.it','','','filtered_html',1412060960,1412060960,1412060960,1,'','en',0,'destefano@uniparthenope.it','a:5:{s:16:\"ckeditor_default\";s:1:\"t\";s:20:\"ckeditor_show_toggle\";s:1:\"t\";s:14:\"ckeditor_width\";s:4:\"100%\";s:13:\"ckeditor_lang\";s:2:\"en\";s:18:\"ckeditor_auto_lang\";s:1:\"t\";}'),(41,'destefano','$S$DXD2OOrx5ynkv1S8XaSzTEr6T.to8wYLwOHRUJMVLjA060ff0SxX','massimo.destefano@uniparthenope.it','','','filtered_html',1412061377,1412061377,1412061377,1,'','en',0,'destefano','a:5:{s:16:\"ckeditor_default\";s:1:\"t\";s:20:\"ckeditor_show_toggle\";s:1:\"t\";s:14:\"ckeditor_width\";s:4:\"100%\";s:13:\"ckeditor_lang\";s:2:\"en\";s:18:\"ckeditor_auto_lang\";s:1:\"t\";}'),(42,'arturo','$S$DIGeO2onQlUDO916y6ud3tZRiqom/DMK5fp99T45CRVBJsHcYhSI','arturo.dealteris@uniparthenope.it','','','filtered_html',1412061590,1412061590,1412061590,1,'','en',0,'arturo','a:5:{s:16:\"ckeditor_default\";s:1:\"t\";s:20:\"ckeditor_show_toggle\";s:1:\"t\";s:14:\"ckeditor_width\";s:4:\"100%\";s:13:\"ckeditor_lang\";s:2:\"en\";s:18:\"ckeditor_auto_lang\";s:1:\"t\";}'),(62,'budillon','$S$D8GcPjglFG3MH/JicaiE2K23duMF.0f7S/IC/AMhfCg/edGpEgWt','','','',NULL,1414079950,1414080131,1414079950,1,NULL,'',0,'budillon',NULL);
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `users_roles`
--

DROP TABLE IF EXISTS `users_roles`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `users_roles` (
  `uid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Primary Key: users.uid for user.',
  `rid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Primary Key: role.rid for role.',
  PRIMARY KEY (`uid`,`rid`),
  KEY `rid` (`rid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Maps users to roles.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `users_roles`
--

LOCK TABLES `users_roles` WRITE;
/*!40000 ALTER TABLE `users_roles` DISABLE KEYS */;
INSERT INTO `users_roles` VALUES (1,3),(28,4),(37,4),(38,4),(40,4),(41,4),(42,4);
/*!40000 ALTER TABLE `users_roles` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `variable`
--

DROP TABLE IF EXISTS `variable`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `variable` (
  `name` varchar(128) NOT NULL DEFAULT '' COMMENT 'The name of the variable.',
  `value` longblob NOT NULL COMMENT 'The value of the variable.',
  PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Named variable/value pairs created by Drupal core or any...';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `variable`
--

LOCK TABLES `variable` WRITE;
/*!40000 ALTER TABLE `variable` DISABLE KEYS */;
INSERT INTO `variable` VALUES ('additional_settings__active_tab_article','s:9:\"edit-i18n\";'),('additional_settings__active_tab_forum','s:9:\"edit-i18n\";'),('additional_settings__active_tab_gallery','s:15:\"edit-submission\";'),('additional_settings__active_tab_location','s:15:\"edit-submission\";'),('additional_settings__active_tab_maps','s:11:\"edit-photos\";'),('additional_settings__active_tab_mooring','s:9:\"edit-i18n\";'),('additional_settings__active_tab_openlayers_example_content','s:9:\"edit-i18n\";'),('additional_settings__active_tab_page','s:13:\"edit-workflow\";'),('additional_settings__active_tab_photos','s:9:\"edit-i18n\";'),('additional_settings__active_tab_photo_moorings_2010','s:22:\"edit-location-settings\";'),('additional_settings__active_tab_photo_moorings_2012','s:9:\"edit-i18n\";'),('additional_settings__active_tab_photo_moorings_2014','s:9:\"edit-i18n\";'),('admin_theme','s:5:\"seven\";'),('anonymous','s:9:\"Anonymous\";'),('authorize_filetransfer_connection_settings_ftp','a:2:{s:8:\"username\";s:8:\"antartic\";s:8:\"advanced\";a:2:{s:8:\"hostname\";s:9:\"localhost\";s:4:\"port\";s:2:\"21\";}}'),('authorize_filetransfer_default','s:3:\"ftp\";'),('block_cache','b:0;'),('cache','i:0;'),('cache_class_cache_ctools_css','s:14:\"CToolsCssCache\";'),('cache_lifetime','s:1:\"0\";'),('clean_url','s:1:\"0\";'),('colorbox_caption_trim','s:1:\"0\";'),('colorbox_caption_trim_length','s:2:\"75\";'),('colorbox_compression_type','s:8:\"minified\";'),('colorbox_custom_settings_activate','s:1:\"0\";'),('colorbox_fixed','i:1;'),('colorbox_initialheight','s:3:\"250\";'),('colorbox_initialwidth','s:3:\"300\";'),('colorbox_inline','i:0;'),('colorbox_load','i:1;'),('colorbox_maxheight','s:3:\"98%\";'),('colorbox_maxwidth','s:3:\"98%\";'),('colorbox_mobile_detect','s:1:\"1\";'),('colorbox_mobile_device_width','s:5:\"480px\";'),('colorbox_opacity','s:4:\"0.85\";'),('colorbox_overlayclose','i:1;'),('colorbox_pages','s:115:\"admin*\r\nimagebrowser*\r\nimg_assist*\r\nimce*\r\nnode/add/*\r\nnode/*/edit\r\nprint/*\r\nprintpdf/*\r\nsystem/ajax\r\nsystem/ajax/*\";'),('colorbox_scrolling','s:1:\"1\";'),('colorbox_slideshow','s:1:\"0\";'),('colorbox_slideshowauto','i:1;'),('colorbox_slideshowspeed','s:4:\"2500\";'),('colorbox_style','s:7:\"default\";'),('colorbox_text_close','s:5:\"Close\";'),('colorbox_text_current','s:20:\"{current} of {total}\";'),('colorbox_text_next','s:7:\"Next »\";'),('colorbox_text_previous','s:7:\"« Prev\";'),('colorbox_text_start','s:15:\"start slideshow\";'),('colorbox_text_stop','s:14:\"stop slideshow\";'),('colorbox_transition_speed','s:3:\"350\";'),('colorbox_transition_type','s:7:\"elastic\";'),('colorbox_visibility','s:1:\"0\";'),('comment_anonymous_article','i:0;'),('comment_anonymous_forum','i:0;'),('comment_anonymous_mooring','i:0;'),('comment_anonymous_openlayers_example_content','i:0;'),('comment_anonymous_page','i:0;'),('comment_anonymous_photos','i:0;'),('comment_anonymous_photo_moorings_2010','i:0;'),('comment_anonymous_photo_moorings_2012','i:0;'),('comment_anonymous_photo_moorings_2014','i:0;'),('comment_article','s:1:\"2\";'),('comment_default_mode_article','i:1;'),('comment_default_mode_forum','i:1;'),('comment_default_mode_mooring','i:1;'),('comment_default_mode_openlayers_example_content','i:1;'),('comment_default_mode_page','i:1;'),('comment_default_mode_photos','i:0;'),('comment_default_mode_photo_moorings_2010','i:0;'),('comment_default_mode_photo_moorings_2012','i:1;'),('comment_default_mode_photo_moorings_2014','i:1;'),('comment_default_per_page_article','s:2:\"50\";'),('comment_default_per_page_forum','s:2:\"50\";'),('comment_default_per_page_mooring','s:2:\"50\";'),('comment_default_per_page_openlayers_example_content','s:2:\"50\";'),('comment_default_per_page_page','s:2:\"50\";'),('comment_default_per_page_photos','s:2:\"50\";'),('comment_default_per_page_photo_moorings_2010','s:2:\"50\";'),('comment_default_per_page_photo_moorings_2012','s:2:\"50\";'),('comment_default_per_page_photo_moorings_2014','s:2:\"50\";'),('comment_form_location_article','i:1;'),('comment_form_location_forum','i:1;'),('comment_form_location_mooring','i:1;'),('comment_form_location_openlayers_example_content','i:1;'),('comment_form_location_page','i:1;'),('comment_form_location_photos','i:0;'),('comment_form_location_photo_moorings_2010','i:0;'),('comment_form_location_photo_moorings_2012','i:1;'),('comment_form_location_photo_moorings_2014','i:1;'),('comment_forum','s:1:\"2\";'),('comment_mooring','s:1:\"1\";'),('comment_openlayers_example_content','s:1:\"2\";'),('comment_page','s:1:\"0\";'),('comment_photos','s:1:\"1\";'),('comment_photo_moorings_2010','s:1:\"1\";'),('comment_photo_moorings_2012','s:1:\"1\";'),('comment_photo_moorings_2014','s:1:\"1\";'),('comment_preview_article','s:1:\"1\";'),('comment_preview_forum','s:1:\"1\";'),('comment_preview_mooring','s:1:\"1\";'),('comment_preview_openlayers_example_content','s:1:\"1\";'),('comment_preview_page','s:1:\"1\";'),('comment_preview_photos','s:1:\"1\";'),('comment_preview_photo_moorings_2010','s:1:\"0\";'),('comment_preview_photo_moorings_2012','s:1:\"0\";'),('comment_preview_photo_moorings_2014','s:1:\"1\";'),('comment_subject_field_article','i:1;'),('comment_subject_field_forum','i:1;'),('comment_subject_field_mooring','i:1;'),('comment_subject_field_openlayers_example_content','i:1;'),('comment_subject_field_page','i:1;'),('comment_subject_field_photos','i:0;'),('comment_subject_field_photo_moorings_2010','i:0;'),('comment_subject_field_photo_moorings_2012','i:1;'),('comment_subject_field_photo_moorings_2014','i:1;'),('cron_key','s:43:\"LsdCIkz6hLGESUQcU_Z9QDWiKMA6uCJVfJSTwdJdDZg\";'),('cron_last','i:1557935826;'),('css_js_query_string','s:6:\"pg4rm6\";'),('ctools_last_cron','i:1652102742;'),('date_default_timezone','s:13:\"Europe/Berlin\";'),('default_nodes_main','s:2:\"10\";'),('drupal_http_request_fails','b:0;'),('drupal_private_key','s:43:\"IusWfQ1bYp4KIRwAFn-DermrffO9386JuAzGBZzPyHA\";'),('email__active_tab','s:24:\"edit-email-admin-created\";'),('entity_translation_comment_filter_article','i:0;'),('entity_translation_comment_filter_forum','i:0;'),('entity_translation_comment_filter_mooring','i:0;'),('entity_translation_comment_filter_openlayers_example_content','i:0;'),('entity_translation_comment_filter_page','i:0;'),('entity_translation_comment_filter_photos','i:0;'),('entity_translation_comment_filter_photo_moorings_2010','i:0;'),('entity_translation_comment_filter_photo_moorings_2012','i:0;'),('entity_translation_comment_filter_photo_moorings_2014','i:0;'),('entity_translation_entity_types','a:1:{s:4:\"node\";s:4:\"node\";}'),('entity_translation_hide_translation_links_article','i:0;'),('entity_translation_hide_translation_links_forum','i:0;'),('entity_translation_hide_translation_links_mooring','i:0;'),('entity_translation_hide_translation_links_openlayers_example_content','i:0;'),('entity_translation_hide_translation_links_page','i:0;'),('entity_translation_hide_translation_links_photos','i:0;'),('entity_translation_hide_translation_links_photo_moorings_2010','i:0;'),('entity_translation_hide_translation_links_photo_moorings_2012','i:0;'),('entity_translation_hide_translation_links_photo_moorings_2014','i:0;'),('entity_translation_node_metadata_article','s:1:\"0\";'),('entity_translation_node_metadata_forum','s:1:\"0\";'),('entity_translation_node_metadata_mooring','s:1:\"0\";'),('entity_translation_node_metadata_openlayers_example_content','s:1:\"0\";'),('entity_translation_node_metadata_page','s:1:\"0\";'),('entity_translation_node_metadata_photos','s:1:\"0\";'),('entity_translation_node_metadata_photo_moorings_2010','s:1:\"0\";'),('entity_translation_node_metadata_photo_moorings_2012','s:1:\"0\";'),('entity_translation_node_metadata_photo_moorings_2014','s:1:\"0\";'),('entity_translation_revision_enabled','b:1;'),('features_codecache','a:1:{s:31:\"openlayers_test_example_feature\";a:2:{s:5:\"field\";s:32:\"10a3228c50dde96b89f8068880e4055b\";s:12:\"dependencies\";s:32:\"de3d6b8255f4510c34093f212c7cbf4a\";}}'),('features_ignored_orphans','a:0:{}'),('features_semaphore','a:0:{}'),('field_bundle_settings_comment__comment_node_photo_moorings_2010','a:2:{s:10:\"view_modes\";a:1:{s:4:\"full\";a:1:{s:15:\"custom_settings\";b:0;}}s:12:\"extra_fields\";a:2:{s:4:\"form\";a:0:{}s:7:\"display\";a:0:{}}}'),('field_bundle_settings_comment__comment_node_photo_moorings_2014','a:0:{}'),('field_bundle_settings_node__article','a:2:{s:10:\"view_modes\";a:0:{}s:12:\"extra_fields\";a:2:{s:4:\"form\";a:3:{s:8:\"language\";a:1:{s:6:\"weight\";s:1:\"0\";}s:9:\"locations\";a:1:{s:6:\"weight\";s:2:\"30\";}s:5:\"title\";a:1:{s:6:\"weight\";s:2:\"-5\";}}s:7:\"display\";a:0:{}}}'),('field_bundle_settings_node__forum','a:2:{s:10:\"view_modes\";a:0:{}s:12:\"extra_fields\";a:2:{s:4:\"form\";a:2:{s:8:\"language\";a:1:{s:6:\"weight\";s:1:\"0\";}s:9:\"locations\";a:1:{s:6:\"weight\";s:2:\"30\";}}s:7:\"display\";a:0:{}}}'),('field_bundle_settings_node__mooring','a:2:{s:10:\"view_modes\";a:0:{}s:12:\"extra_fields\";a:2:{s:4:\"form\";a:3:{s:9:\"locations\";a:1:{s:6:\"weight\";s:1:\"3\";}s:5:\"title\";a:1:{s:6:\"weight\";s:1:\"0\";}s:8:\"language\";a:1:{s:6:\"weight\";s:1:\"0\";}}s:7:\"display\";a:0:{}}}'),('field_bundle_settings_node__openlayers_example_content','a:2:{s:10:\"view_modes\";a:0:{}s:12:\"extra_fields\";a:2:{s:4:\"form\";a:2:{s:8:\"language\";a:1:{s:6:\"weight\";s:1:\"0\";}s:9:\"locations\";a:1:{s:6:\"weight\";s:2:\"30\";}}s:7:\"display\";a:0:{}}}'),('field_bundle_settings_node__page','a:2:{s:10:\"view_modes\";a:3:{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:\"extra_fields\";a:2:{s:4:\"form\";a:3:{s:8:\"language\";a:1:{s:6:\"weight\";s:1:\"1\";}s:9:\"locations\";a:1:{s:6:\"weight\";s:1:\"3\";}s:5:\"title\";a:1:{s:6:\"weight\";s:1:\"0\";}}s:7:\"display\";a:1:{s:8:\"language\";a:1:{s:7:\"default\";a:2:{s:6:\"weight\";s:1:\"0\";s:7:\"visible\";b:0;}}}}}'),('field_bundle_settings_node__photos','a:2:{s:10:\"view_modes\";a:3:{s:6:\"teaser\";a:1:{s:15:\"custom_settings\";b:1;}s:4:\"full\";a:1:{s:15:\"custom_settings\";b:1;}s:3:\"rss\";a:1:{s:15:\"custom_settings\";b:0;}}s:12:\"extra_fields\";a:2:{s:4:\"form\";a:2:{s:8:\"language\";a:1:{s:6:\"weight\";s:1:\"0\";}s:9:\"locations\";a:1:{s:6:\"weight\";s:2:\"30\";}}s:7:\"display\";a:0:{}}}'),('field_bundle_settings_node__photo_moorings_2010','a:2:{s:10:\"view_modes\";a:0:{}s:12:\"extra_fields\";a:2:{s:4:\"form\";a:2:{s:9:\"locations\";a:1:{s:6:\"weight\";s:2:\"30\";}s:5:\"title\";a:1:{s:6:\"weight\";s:2:\"-5\";}}s:7:\"display\";a:0:{}}}'),('field_bundle_settings_node__photo_moorings_2012','a:2:{s:10:\"view_modes\";a:3:{s:4:\"full\";a:1:{s:15:\"custom_settings\";b:1;}s:6:\"teaser\";a:1:{s:15:\"custom_settings\";b:1;}s:3:\"rss\";a:1:{s:15:\"custom_settings\";b:0;}}s:12:\"extra_fields\";a:2:{s:4:\"form\";a:2:{s:9:\"locations\";a:1:{s:6:\"weight\";s:2:\"30\";}s:5:\"title\";a:1:{s:6:\"weight\";s:2:\"-5\";}}s:7:\"display\";a:0:{}}}'),('field_bundle_settings_node__photo_moorings_2014','a:2:{s:10:\"view_modes\";a:3:{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:\"extra_fields\";a:2:{s:4:\"form\";a:3:{s:9:\"locations\";a:1:{s:6:\"weight\";s:2:\"30\";}s:5:\"title\";a:1:{s:6:\"weight\";s:2:\"-5\";}s:8:\"language\";a:1:{s:6:\"weight\";s:1:\"0\";}}s:7:\"display\";a:0:{}}}'),('file_temporary_path','s:4:\"/tmp\";'),('filter_fallback_format','s:10:\"plain_text\";'),('forum_nav_vocabulary','s:1:\"2\";'),('gmap_api_key','s:0:\"\";'),('gmap_bubble_styles','a:2:{s:19:\"enable_bubble_style\";i:0;s:20:\"style_bubble_options\";s:0:\"\";}'),('gmap_default','a:15:{s:5:\"width\";s:5:\"300px\";s:6:\"height\";s:5:\"200px\";s:7:\"latlong\";s:4:\"40,0\";s:4:\"zoom\";s:1:\"3\";s:7:\"maxzoom\";s:2:\"14\";s:6:\"styles\";a:3:{s:12:\"line_default\";a:5:{i:0;s:6:\"0000ff\";i:1;s:1:\"5\";i:2;s:2:\"45\";i:3;s:0:\"\";i:4;s:0:\"\";}s:12:\"poly_default\";a:5:{i:0;s:6:\"000000\";i:1;s:1:\"3\";i:2;s:2:\"25\";i:3;s:6:\"ff0000\";i:4;s:2:\"45\";}s:15:\"highlight_color\";s:6:\"ff0000\";}s:11:\"controltype\";s:5:\"Small\";s:10:\"pancontrol\";i:1;s:17:\"streetviewcontrol\";i:0;s:3:\"mtc\";s:8:\"standard\";s:7:\"maptype\";s:3:\"Map\";s:10:\"baselayers\";a:4:{s:3:\"Map\";i:1;s:9:\"Satellite\";i:1;s:6:\"Hybrid\";i:1;s:8:\"Physical\";i:0;}s:8:\"behavior\";a:13:{s:7:\"locpick\";b:0;s:6:\"nodrag\";i:0;s:10:\"nokeyboard\";i:1;s:11:\"nomousezoom\";i:0;s:10:\"nocontzoom\";i:0;s:8:\"autozoom\";i:0;s:10:\"dynmarkers\";i:0;s:8:\"overview\";i:0;s:12:\"collapsehack\";i:0;s:5:\"scale\";i:0;s:17:\"extramarkerevents\";b:0;s:15:\"clickableshapes\";b:0;s:9:\"highlight\";i:0;}s:10:\"markermode\";s:1:\"0\";s:11:\"line_colors\";a:3:{i:0;s:7:\"#00cc00\";i:1;s:7:\"#ff0000\";i:2;s:7:\"#0000ff\";}}'),('gmap_markermanager','a:4:{s:13:\"markermanager\";a:6:{s:8:\"filename\";s:23:\"markermanager_packed.js\";s:13:\"borderPadding\";s:3:\"256\";s:7:\"maxZoom\";s:1:\"4\";s:12:\"trackMarkers\";i:0;s:13:\"markerMinZoom\";s:1:\"4\";s:13:\"markerMaxZoom\";s:1:\"0\";}s:15:\"markerclusterer\";a:4:{s:8:\"filename\";s:25:\"markerclusterer_packed.js\";s:8:\"gridSize\";i:60;s:7:\"maxZoom\";i:17;s:6:\"styles\";a:0:{}}s:9:\"clusterer\";a:6:{s:8:\"filename\";s:13:\"Clusterer2.js\";s:6:\"marker\";s:7:\"cluster\";s:13:\"max_nocluster\";s:3:\"150\";s:11:\"cluster_min\";s:1:\"5\";s:9:\"max_lines\";s:2:\"10\";s:10:\"popup_mode\";s:4:\"orig\";}s:13:\"clustermarker\";a:7:{s:8:\"filename\";s:16:\"ClusterMarker.js\";s:13:\"borderPadding\";s:3:\"256\";s:17:\"clusteringEnabled\";i:1;s:17:\"clusterMarkerIcon\";s:0:\"\";s:18:\"clusterMarkerTitle\";s:0:\"\";s:13:\"fitMapMaxZoom\";s:1:\"0\";s:16:\"intersectPadding\";s:1:\"0\";}}'),('gmap_marker_file','s:1:\"9\";'),('gmap_mm_type','s:4:\"gmap\";'),('gmap_node_map','a:4:{s:5:\"macro\";s:61:\"[gmap |id=nodemap|center=40,0|zoom=3|width=100%|height=400px]\";s:6:\"header\";s:130:\"This map illustrates the locations of the nodes on this website. Each marker indicates a node associated with a specific location.\";s:6:\"footer\";s:0:\"\";s:10:\"markermode\";s:1:\"1\";}'),('gmap_node_markers','a:3:{s:6:\"photos\";s:6:\"drupal\";s:7:\"article\";s:6:\"drupal\";s:4:\"page\";s:6:\"drupal\";}'),('gmap_role_markers','a:3:{i:2;s:6:\"drupal\";i:3;s:6:\"drupal\";i:4;s:6:\"drupal\";}'),('gmap_user_map','a:4:{s:5:\"macro\";s:61:\"[gmap |id=usermap|center=40,0|zoom=3|width=100%|height=400px]\";s:6:\"header\";s:120:\"This map illustrates the extent of users of this website. Each marker indicates a user that has entered their locations.\";s:6:\"footer\";s:0:\"\";s:10:\"markermode\";s:1:\"1\";}'),('i18n_hide_translation_links','i:0;'),('i18n_language_list','s:1:\"1\";'),('i18n_node_default_language_none','s:1:\"1\";'),('i18n_node_extended_article','s:1:\"1\";'),('i18n_node_extended_forum','s:1:\"1\";'),('i18n_node_extended_mooring','s:1:\"1\";'),('i18n_node_extended_openlayers_example_content','s:1:\"1\";'),('i18n_node_extended_page','s:1:\"1\";'),('i18n_node_extended_photos','s:1:\"1\";'),('i18n_node_extended_photo_moorings_2010','s:1:\"1\";'),('i18n_node_extended_photo_moorings_2012','s:1:\"1\";'),('i18n_node_extended_photo_moorings_2014','s:1:\"1\";'),('i18n_node_options_article','a:1:{i:0;s:8:\"required\";}'),('i18n_node_options_forum','a:1:{i:0;s:8:\"required\";}'),('i18n_node_options_mooring','a:1:{i:0;s:8:\"required\";}'),('i18n_node_options_openlayers_example_content','a:1:{i:0;s:8:\"required\";}'),('i18n_node_options_page','a:1:{i:0;s:8:\"required\";}'),('i18n_node_options_photos','a:1:{i:0;s:8:\"required\";}'),('i18n_node_options_photo_moorings_2010','a:0:{}'),('i18n_node_options_photo_moorings_2012','a:1:{i:0;s:8:\"required\";}'),('i18n_node_options_photo_moorings_2014','a:1:{i:0;s:8:\"required\";}'),('i18n_string_allowed_formats','a:3:{s:13:\"filtered_html\";s:13:\"filtered_html\";s:9:\"full_html\";s:9:\"full_html\";s:10:\"plain_text\";s:10:\"plain_text\";}'),('i18n_string_source_language','s:2:\"en\";'),('i18n_sync_node_type_article','a:0:{}'),('i18n_sync_node_type_forum','a:0:{}'),('i18n_sync_node_type_mooring','a:0:{}'),('i18n_sync_node_type_openlayers_example_content','a:0:{}'),('i18n_sync_node_type_page','a:0:{}'),('i18n_sync_node_type_photos','a:0:{}'),('i18n_sync_node_type_photo_moorings_2010','a:0:{}'),('i18n_sync_node_type_photo_moorings_2012','a:0:{}'),('i18n_sync_node_type_photo_moorings_2014','a:0:{}'),('image_toolkit','s:2:\"gd\";'),('imce_profiles','a:2:{i:1;a:10:{s:4:\"name\";s:6:\"User-1\";s:7:\"usertab\";i:1;s:8:\"filesize\";i:0;s:5:\"quota\";i:0;s:7:\"tuquota\";i:0;s:10:\"extensions\";s:1:\"*\";s:10:\"dimensions\";s:9:\"1200x1200\";s:7:\"filenum\";i:0;s:11:\"directories\";a:1:{i:0;a:7:{s:4:\"name\";s:1:\".\";s:6:\"subnav\";i:1;s:6:\"browse\";i:1;s:6:\"upload\";i:1;s:5:\"thumb\";i:1;s:6:\"delete\";i:1;s:6:\"resize\";i:1;}}s:10:\"thumbnails\";a:3:{i:0;a:4:{s:4:\"name\";s:5:\"Small\";s:10:\"dimensions\";s:5:\"90x90\";s:6:\"prefix\";s:6:\"small_\";s:6:\"suffix\";s:0:\"\";}i:1;a:4:{s:4:\"name\";s:6:\"Medium\";s:10:\"dimensions\";s:7:\"120x120\";s:6:\"prefix\";s:7:\"medium_\";s:6:\"suffix\";s:0:\"\";}i:2;a:4:{s:4:\"name\";s:5:\"Large\";s:10:\"dimensions\";s:7:\"180x180\";s:6:\"prefix\";s:6:\"large_\";s:6:\"suffix\";s:0:\"\";}}}i:2;a:10:{s:4:\"name\";s:14:\"Sample profile\";s:7:\"usertab\";i:1;s:8:\"filesize\";i:1;s:5:\"quota\";i:2;s:7:\"tuquota\";i:0;s:10:\"extensions\";s:16:\"gif png jpg jpeg\";s:10:\"dimensions\";s:7:\"800x600\";s:7:\"filenum\";i:1;s:11:\"directories\";a:1:{i:0;a:7:{s:4:\"name\";s:5:\"u%uid\";s:6:\"subnav\";i:0;s:6:\"browse\";i:1;s:6:\"upload\";i:1;s:5:\"thumb\";i:1;s:6:\"delete\";i:0;s:6:\"resize\";i:0;}}s:10:\"thumbnails\";a:1:{i:0;a:4:{s:4:\"name\";s:5:\"Thumb\";s:10:\"dimensions\";s:5:\"90x90\";s:6:\"prefix\";s:6:\"thumb_\";s:6:\"suffix\";s:0:\"\";}}}}'),('imce_roles_profiles','a:4:{i:4;a:2:{s:6:\"weight\";s:1:\"0\";s:10:\"public_pid\";s:1:\"1\";}i:3;a:2:{s:6:\"weight\";s:1:\"0\";s:10:\"public_pid\";s:1:\"1\";}i:2;a:2:{s:6:\"weight\";i:11;s:10:\"public_pid\";i:0;}i:1;a:2:{s:6:\"weight\";i:12;s:10:\"public_pid\";i:0;}}'),('imce_settings_absurls','i:0;'),('imce_settings_disable_private','i:1;'),('imce_settings_replace','s:1:\"0\";'),('imce_settings_textarea','s:0:\"\";'),('imce_settings_thumb_method','s:14:\"scale_and_crop\";'),('install_profile','s:8:\"standard\";'),('install_task','s:4:\"done\";'),('install_time','i:1409923698;'),('javascript_parsed','a:55:{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/overlay/overlay-child.js\";i:4;s:45:\"sites/all/modules/photos/js/min/photos.min.js\";i:5;s:55:\"sites/all/modules/photos/photos_access/photos_access.js\";i:6;s:24:\"modules/system/system.js\";i:7;s:12:\"misc/form.js\";s:10:\"refresh:it\";s:7:\"waiting\";i:8;s:42:\"sites/all/themes/multipurpose/js/retina.js\";i:9;s:43:\"sites/all/themes/multipurpose/js/plugins.js\";i:10;s:42:\"sites/all/themes/multipurpose/js/global.js\";i:11;s:29:\"misc/ui/jquery.ui.core.min.js\";i:12;s:21:\"misc/jquery.ba-bbq.js\";i:13;s:33:\"modules/overlay/overlay-parent.js\";i:14;s:32:\"modules/contextual/contextual.js\";i:15;s:21:\"misc/jquery.cookie.js\";i:16;s:26:\"modules/toolbar/toolbar.js\";i:17;s:35:\"misc/ui/jquery.ui.datepicker.min.js\";i:18;s:35:\"modules/locale/locale.datepicker.js\";i:19;s:47:\"sites/default/modules/chartModule/js/general.js\";i:20;s:52:\"sites/default/modules/chartModule/js/canvasjs.min.js\";i:21;s:16:\"misc/textarea.js\";i:22;s:20:\"modules/user/user.js\";i:23;s:16:\"misc/collapse.js\";i:24;s:14:\"misc/states.js\";i:25;s:21:\"misc/vertical-tabs.js\";i:26;s:19:\"misc/tableheader.js\";i:27;s:19:\"misc/jquery.form.js\";i:28;s:16:\"misc/progress.js\";i:29;s:12:\"misc/ajax.js\";i:30;s:28:\"modules/field_ui/field_ui.js\";i:31;s:17:\"misc/tabledrag.js\";i:32;s:19:\"misc/tableselect.js\";i:33;s:31:\"misc/ui/jquery.ui.widget.min.js\";i:34;s:30:\"misc/ui/jquery.ui.mouse.min.js\";i:35;s:33:\"misc/ui/jquery.ui.sortable.min.js\";i:36;s:30:\"modules/dashboard/dashboard.js\";i:37;s:34:\"modules/field/modules/text/text.js\";i:38;s:24:\"modules/filter/filter.js\";i:39;s:33:\"sites/all/modules/gmap/js/gmap.js\";i:40;s:33:\"sites/all/modules/gmap/js/icon.js\";i:41;s:35:\"sites/all/modules/gmap/js/marker.js\";i:42;s:38:\"sites/all/modules/gmap/js/highlight.js\";i:43;s:33:\"sites/all/modules/gmap/js/poly.js\";i:44;s:36:\"sites/all/modules/gmap/js/locpick.js\";i:45;s:40:\"sites/all/modules/gmap/js/gmap_marker.js\";i:46;s:20:\"modules/menu/menu.js\";i:47;s:20:\"modules/node/node.js\";i:48;s:36:\"modules/comment/comment-node-form.js\";i:49;s:20:\"modules/path/path.js\";i:50;s:20:\"misc/autocomplete.js\";i:51;s:47:\"sites/all/modules/i18n/i18n_block/i18n_block.js\";i:52;s:22:\"modules/block/block.js\";i:53;s:20:\"modules/file/file.js\";}'),('juicebox_apply_markup_filter','i:1;'),('juicebox_enable_cors','i:0;'),('juicebox_js_scope','s:6:\"header\";'),('juicebox_multisize_large','s:14:\"juicebox_large\";'),('juicebox_multisize_medium','s:15:\"juicebox_medium\";'),('juicebox_multisize_small','s:14:\"juicebox_small\";'),('juicebox_translate_base_languagelist','s:85:\"Show Thumbnails|Hide Thumbnails|Expand Gallery|Close Gallery|Open Image in New Window\";'),('juicebox_translate_interface','i:0;'),('l10n_update_check_disabled','i:1;'),('l10n_update_check_frequency','s:1:\"7\";'),('l10n_update_check_mode','s:1:\"3\";'),('l10n_update_download_store','s:0:\"\";'),('l10n_update_import_mode','s:1:\"1\";'),('l10n_update_last_check','i:1651663083;'),('languageicons_path','s:43:\"sites/all/modules/languageicons/flags/*.png\";'),('languageicons_placement','s:6:\"before\";'),('languageicons_show_block','i:1;'),('languageicons_show_node','i:1;'),('languageicons_size','s:5:\"16x12\";'),('language_content_type_article','s:1:\"2\";'),('language_content_type_forum','s:1:\"2\";'),('language_content_type_gallery','s:1:\"0\";'),('language_content_type_location','s:1:\"0\";'),('language_content_type_maps','s:1:\"0\";'),('language_content_type_mooring','s:1:\"2\";'),('language_content_type_openlayers_example_content','s:1:\"2\";'),('language_content_type_page','s:1:\"2\";'),('language_content_type_photos','s:1:\"2\";'),('language_content_type_photo_moorings_2010','s:1:\"2\";'),('language_content_type_photo_moorings_2012','s:1:\"2\";'),('language_content_type_photo_moorings_2014','s:1:\"2\";'),('language_count','i:2;'),('language_default','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:\"\";}'),('language_negotiation_language','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:16:\"language-default\";a:1:{s:9:\"callbacks\";a:1:{s:8:\"language\";s:21:\"language_from_default\";}}}'),('language_negotiation_language_content','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:16:\"language-default\";a:1:{s:9:\"callbacks\";a:1:{s:8:\"language\";s:21:\"language_from_default\";}}}'),('language_negotiation_language_url','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\";}}'),('language_types','a:3:{s:8:\"language\";b:1;s:16:\"language_content\";b:1;s:12:\"language_url\";b:0;}'),('locale_language_providers_weight_language','a:5:{s:10:\"locale-url\";s:2:\"-8\";s:14:\"locale-session\";s:2:\"-6\";s:11:\"locale-user\";s:2:\"-4\";s:14:\"locale-browser\";s:2:\"-2\";s:16:\"language-default\";s:2:\"10\";}'),('locale_language_providers_weight_language_content','a:6:{s:10:\"locale-url\";s:2:\"-8\";s:14:\"locale-session\";s:2:\"-6\";s:11:\"locale-user\";s:2:\"-4\";s:14:\"locale-browser\";s:2:\"-2\";s:16:\"locale-interface\";s:1:\"8\";s:16:\"language-default\";s:2:\"10\";}'),('locationmap_address','s:8:\"Polo Sud\";'),('locationmap_body','a:2:{s:5:\"value\";s:0:\"\";s:6:\"format\";s:13:\"filtered_html\";}'),('locationmap_footer','a:2:{s:5:\"value\";s:0:\"\";s:6:\"format\";s:13:\"filtered_html\";}'),('locationmap_height','s:3:\"500\";'),('locationmap_info','a:2:{s:5:\"value\";s:0:\"\";s:6:\"format\";s:13:\"filtered_html\";}'),('locationmap_lat','d:18.215670100000001;'),('locationmap_lng','d:-73.759423900000002;'),('locationmap_title','s:9:\"Antartica\";'),('locationmap_type','s:31:\"google.maps.MapTypeId.SATELLITE\";'),('locationmap_width','s:3:\"500\";'),('locationmap_zoom','s:2:\"15\";'),('location_defaultnum_article','s:1:\"1\";'),('location_defaultnum_forum','s:1:\"1\";'),('location_defaultnum_mooring','s:1:\"1\";'),('location_defaultnum_openlayers_example_content','s:1:\"1\";'),('location_defaultnum_page','s:1:\"1\";'),('location_defaultnum_photos','s:1:\"1\";'),('location_defaultnum_photo_moorings_2010','s:1:\"0\";'),('location_defaultnum_photo_moorings_2012','s:1:\"1\";'),('location_defaultnum_photo_moorings_2014','s:1:\"1\";'),('location_default_country','s:2:\"aq\";'),('location_display_location','s:1:\"0\";'),('location_jit_geocoding','i:0;'),('location_locpick_macro','s:6:\"[gmap]\";'),('location_maplink_external','i:0;'),('location_maplink_external_method','s:15:\"target=\"_blank\"\";'),('location_maxnum_article','s:1:\"1\";'),('location_maxnum_forum','s:1:\"1\";'),('location_maxnum_mooring','s:1:\"1\";'),('location_maxnum_openlayers_example_content','s:1:\"1\";'),('location_maxnum_page','s:1:\"1\";'),('location_maxnum_photos','s:1:\"1\";'),('location_maxnum_photo_moorings_2010','s:1:\"0\";'),('location_maxnum_photo_moorings_2012','s:1:\"1\";'),('location_maxnum_photo_moorings_2014','s:1:\"1\";'),('location_settings_node_article','a:4:{s:8:\"multiple\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:1:\"1\";s:3:\"add\";s:1:\"1\";}s:4:\"form\";a:4:{s:6:\"weight\";s:1:\"0\";s:11:\"collapsible\";i:1;s:9:\"collapsed\";i:1;s:6:\"fields\";a:8:{s:4:\"name\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"2\";}s:6:\"street\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"4\";}s:10:\"additional\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"6\";}s:4:\"city\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"8\";}s:8:\"province\";a:4:{s:7:\"collect\";s:1:\"0\";s:6:\"widget\";s:12:\"autocomplete\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:2:\"10\";}s:11:\"postal_code\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:2:\"12\";}s:7:\"country\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:2:\"aq\";s:6:\"weight\";s:2:\"14\";}s:7:\"locpick\";a:2:{s:7:\"collect\";s:1:\"1\";s:6:\"weight\";s:2:\"20\";}}}s:7:\"display\";a:4:{s:6:\"weight\";s:1:\"0\";s:4:\"hide\";a:12:{s:4:\"name\";i:0;s:6:\"street\";i:0;s:10:\"additional\";i:0;s:4:\"city\";i:0;s:8:\"province\";i:0;s:11:\"postal_code\";i:0;s:7:\"country\";i:0;s:7:\"locpick\";i:0;s:13:\"province_name\";i:0;s:12:\"country_name\";i:0;s:8:\"map_link\";i:0;s:6:\"coords\";i:0;}s:6:\"teaser\";i:1;s:4:\"full\";i:1;}s:3:\"rss\";a:1:{s:4:\"mode\";s:6:\"simple\";}}'),('location_settings_node_forum','a:4:{s:8:\"multiple\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:1:\"1\";s:3:\"add\";s:1:\"1\";}s:4:\"form\";a:4:{s:6:\"weight\";s:1:\"0\";s:11:\"collapsible\";i:1;s:9:\"collapsed\";i:1;s:6:\"fields\";a:8:{s:4:\"name\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"2\";}s:6:\"street\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"4\";}s:10:\"additional\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"6\";}s:4:\"city\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"8\";}s:8:\"province\";a:4:{s:7:\"collect\";s:1:\"0\";s:6:\"widget\";s:12:\"autocomplete\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:2:\"10\";}s:11:\"postal_code\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:2:\"12\";}s:7:\"country\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:2:\"aq\";s:6:\"weight\";s:2:\"14\";}s:7:\"locpick\";a:2:{s:7:\"collect\";s:1:\"1\";s:6:\"weight\";s:2:\"20\";}}}s:7:\"display\";a:4:{s:6:\"weight\";s:1:\"0\";s:4:\"hide\";a:12:{s:4:\"name\";i:0;s:6:\"street\";i:0;s:10:\"additional\";i:0;s:4:\"city\";i:0;s:8:\"province\";i:0;s:11:\"postal_code\";i:0;s:7:\"country\";i:0;s:7:\"locpick\";i:0;s:13:\"province_name\";i:0;s:12:\"country_name\";i:0;s:8:\"map_link\";i:0;s:6:\"coords\";i:0;}s:6:\"teaser\";i:1;s:4:\"full\";i:1;}s:3:\"rss\";a:1:{s:4:\"mode\";s:6:\"simple\";}}'),('location_settings_node_mooring','a:4:{s:8:\"multiple\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:1:\"1\";s:3:\"add\";s:1:\"1\";}s:4:\"form\";a:4:{s:6:\"weight\";s:1:\"0\";s:11:\"collapsible\";i:1;s:9:\"collapsed\";i:1;s:6:\"fields\";a:8:{s:4:\"name\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"2\";}s:6:\"street\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"4\";}s:10:\"additional\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"6\";}s:4:\"city\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"8\";}s:8:\"province\";a:4:{s:7:\"collect\";s:1:\"0\";s:6:\"widget\";s:12:\"autocomplete\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:2:\"10\";}s:11:\"postal_code\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:2:\"12\";}s:7:\"country\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:2:\"aq\";s:6:\"weight\";s:2:\"14\";}s:7:\"locpick\";a:2:{s:7:\"collect\";s:1:\"1\";s:6:\"weight\";s:2:\"20\";}}}s:7:\"display\";a:4:{s:6:\"weight\";s:1:\"0\";s:4:\"hide\";a:12:{s:4:\"name\";i:0;s:6:\"street\";i:0;s:10:\"additional\";i:0;s:4:\"city\";i:0;s:8:\"province\";i:0;s:11:\"postal_code\";i:0;s:7:\"country\";i:0;s:7:\"locpick\";i:0;s:13:\"province_name\";i:0;s:12:\"country_name\";i:0;s:8:\"map_link\";i:0;s:6:\"coords\";i:0;}s:6:\"teaser\";i:1;s:4:\"full\";i:1;}s:3:\"rss\";a:1:{s:4:\"mode\";s:6:\"simple\";}}'),('location_settings_node_openlayers_example_content','a:4:{s:8:\"multiple\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:1:\"1\";s:3:\"add\";s:1:\"1\";}s:4:\"form\";a:4:{s:6:\"weight\";s:1:\"0\";s:11:\"collapsible\";i:1;s:9:\"collapsed\";i:1;s:6:\"fields\";a:8:{s:4:\"name\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"2\";}s:6:\"street\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"4\";}s:10:\"additional\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"6\";}s:4:\"city\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"8\";}s:8:\"province\";a:4:{s:7:\"collect\";s:1:\"0\";s:6:\"widget\";s:12:\"autocomplete\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:2:\"10\";}s:11:\"postal_code\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:2:\"12\";}s:7:\"country\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:2:\"aq\";s:6:\"weight\";s:2:\"14\";}s:7:\"locpick\";a:2:{s:7:\"collect\";s:1:\"1\";s:6:\"weight\";s:2:\"20\";}}}s:7:\"display\";a:4:{s:6:\"weight\";s:1:\"0\";s:4:\"hide\";a:12:{s:4:\"name\";i:0;s:6:\"street\";i:0;s:10:\"additional\";i:0;s:4:\"city\";i:0;s:8:\"province\";i:0;s:11:\"postal_code\";i:0;s:7:\"country\";i:0;s:7:\"locpick\";i:0;s:13:\"province_name\";i:0;s:12:\"country_name\";i:0;s:8:\"map_link\";i:0;s:6:\"coords\";i:0;}s:6:\"teaser\";i:1;s:4:\"full\";i:1;}s:3:\"rss\";a:1:{s:4:\"mode\";s:6:\"simple\";}}'),('location_settings_node_page','a:4:{s:8:\"multiple\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:1:\"1\";s:3:\"add\";s:1:\"1\";}s:4:\"form\";a:4:{s:6:\"weight\";s:1:\"0\";s:11:\"collapsible\";i:1;s:9:\"collapsed\";i:1;s:6:\"fields\";a:8:{s:4:\"name\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"2\";}s:6:\"street\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"4\";}s:10:\"additional\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"6\";}s:4:\"city\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"8\";}s:8:\"province\";a:4:{s:7:\"collect\";s:1:\"0\";s:6:\"widget\";s:12:\"autocomplete\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:2:\"10\";}s:11:\"postal_code\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:2:\"12\";}s:7:\"country\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:2:\"aq\";s:6:\"weight\";s:2:\"14\";}s:7:\"locpick\";a:2:{s:7:\"collect\";s:1:\"1\";s:6:\"weight\";s:2:\"20\";}}}s:7:\"display\";a:4:{s:6:\"weight\";s:1:\"0\";s:4:\"hide\";a:12:{s:4:\"name\";i:0;s:6:\"street\";i:0;s:10:\"additional\";i:0;s:4:\"city\";i:0;s:8:\"province\";i:0;s:11:\"postal_code\";i:0;s:7:\"country\";i:0;s:7:\"locpick\";i:0;s:13:\"province_name\";i:0;s:12:\"country_name\";i:0;s:8:\"map_link\";i:0;s:6:\"coords\";i:0;}s:6:\"teaser\";i:1;s:4:\"full\";i:1;}s:3:\"rss\";a:1:{s:4:\"mode\";s:6:\"simple\";}}'),('location_settings_node_photos','a:4:{s:8:\"multiple\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:1:\"1\";s:3:\"add\";s:1:\"1\";}s:4:\"form\";a:4:{s:6:\"weight\";s:1:\"0\";s:11:\"collapsible\";i:1;s:9:\"collapsed\";i:1;s:6:\"fields\";a:8:{s:4:\"name\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"2\";}s:6:\"street\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"4\";}s:10:\"additional\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"6\";}s:4:\"city\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"8\";}s:8:\"province\";a:4:{s:7:\"collect\";s:1:\"0\";s:6:\"widget\";s:12:\"autocomplete\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:2:\"10\";}s:11:\"postal_code\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:2:\"12\";}s:7:\"country\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:2:\"aq\";s:6:\"weight\";s:2:\"14\";}s:7:\"locpick\";a:2:{s:7:\"collect\";s:1:\"1\";s:6:\"weight\";s:2:\"20\";}}}s:7:\"display\";a:4:{s:6:\"weight\";s:1:\"0\";s:4:\"hide\";a:12:{s:4:\"name\";i:0;s:6:\"street\";i:0;s:10:\"additional\";i:0;s:4:\"city\";i:0;s:8:\"province\";i:0;s:11:\"postal_code\";i:0;s:7:\"country\";i:0;s:7:\"locpick\";i:0;s:13:\"province_name\";i:0;s:12:\"country_name\";i:0;s:8:\"map_link\";i:0;s:6:\"coords\";i:0;}s:6:\"teaser\";i:1;s:4:\"full\";i:1;}s:3:\"rss\";a:1:{s:4:\"mode\";s:6:\"simple\";}}'),('location_settings_node_photo_moorings_2010','a:4:{s:8:\"multiple\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:1:\"0\";s:3:\"add\";s:1:\"0\";}s:4:\"form\";a:4:{s:6:\"weight\";s:1:\"0\";s:11:\"collapsible\";i:0;s:9:\"collapsed\";i:0;s:6:\"fields\";a:8:{s:4:\"name\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"2\";}s:6:\"street\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"4\";}s:10:\"additional\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"6\";}s:4:\"city\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"8\";}s:8:\"province\";a:4:{s:7:\"collect\";s:1:\"0\";s:6:\"widget\";s:12:\"autocomplete\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:2:\"10\";}s:11:\"postal_code\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:2:\"12\";}s:7:\"country\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:2:\"aq\";s:6:\"weight\";s:2:\"14\";}s:7:\"locpick\";a:2:{s:7:\"collect\";s:1:\"0\";s:6:\"weight\";s:2:\"20\";}}}s:7:\"display\";a:4:{s:6:\"weight\";s:1:\"0\";s:4:\"hide\";a:12:{s:4:\"name\";i:0;s:6:\"street\";i:0;s:10:\"additional\";i:0;s:4:\"city\";i:0;s:8:\"province\";i:0;s:11:\"postal_code\";i:0;s:7:\"country\";i:0;s:7:\"locpick\";i:0;s:13:\"province_name\";i:0;s:12:\"country_name\";i:0;s:8:\"map_link\";i:0;s:6:\"coords\";i:0;}s:6:\"teaser\";i:0;s:4:\"full\";i:0;}s:3:\"rss\";a:1:{s:4:\"mode\";s:6:\"simple\";}}'),('location_settings_node_photo_moorings_2012','a:4:{s:8:\"multiple\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:1:\"1\";s:3:\"add\";s:1:\"1\";}s:4:\"form\";a:4:{s:6:\"weight\";s:1:\"0\";s:11:\"collapsible\";i:1;s:9:\"collapsed\";i:1;s:6:\"fields\";a:8:{s:4:\"name\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"2\";}s:6:\"street\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"4\";}s:10:\"additional\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"6\";}s:4:\"city\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"8\";}s:8:\"province\";a:4:{s:7:\"collect\";s:1:\"0\";s:6:\"widget\";s:12:\"autocomplete\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:2:\"10\";}s:11:\"postal_code\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:2:\"12\";}s:7:\"country\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:2:\"aq\";s:6:\"weight\";s:2:\"14\";}s:7:\"locpick\";a:2:{s:7:\"collect\";s:1:\"1\";s:6:\"weight\";s:2:\"20\";}}}s:7:\"display\";a:4:{s:6:\"weight\";s:1:\"0\";s:4:\"hide\";a:12:{s:4:\"name\";i:0;s:6:\"street\";i:0;s:10:\"additional\";i:0;s:4:\"city\";i:0;s:8:\"province\";i:0;s:11:\"postal_code\";i:0;s:7:\"country\";i:0;s:7:\"locpick\";i:0;s:13:\"province_name\";i:0;s:12:\"country_name\";i:0;s:8:\"map_link\";i:0;s:6:\"coords\";i:0;}s:6:\"teaser\";i:1;s:4:\"full\";i:1;}s:3:\"rss\";a:1:{s:4:\"mode\";s:6:\"simple\";}}'),('location_settings_node_photo_moorings_2014','a:4:{s:8:\"multiple\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:1:\"1\";s:3:\"add\";s:1:\"1\";}s:4:\"form\";a:4:{s:6:\"weight\";s:1:\"0\";s:11:\"collapsible\";i:1;s:9:\"collapsed\";i:1;s:6:\"fields\";a:8:{s:4:\"name\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"2\";}s:6:\"street\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"4\";}s:10:\"additional\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"6\";}s:4:\"city\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:1:\"8\";}s:8:\"province\";a:4:{s:7:\"collect\";s:1:\"0\";s:6:\"widget\";s:12:\"autocomplete\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:2:\"10\";}s:11:\"postal_code\";a:3:{s:7:\"collect\";s:1:\"0\";s:7:\"default\";s:0:\"\";s:6:\"weight\";s:2:\"12\";}s:7:\"country\";a:3:{s:7:\"collect\";s:1:\"1\";s:7:\"default\";s:2:\"aq\";s:6:\"weight\";s:2:\"14\";}s:7:\"locpick\";a:2:{s:7:\"collect\";s:1:\"1\";s:6:\"weight\";s:2:\"20\";}}}s:7:\"display\";a:4:{s:6:\"weight\";s:1:\"0\";s:4:\"hide\";a:12:{s:4:\"name\";i:0;s:6:\"street\";i:0;s:10:\"additional\";i:0;s:4:\"city\";i:0;s:8:\"province\";i:0;s:11:\"postal_code\";i:0;s:7:\"country\";i:0;s:7:\"locpick\";i:0;s:13:\"province_name\";i:0;s:12:\"country_name\";i:0;s:8:\"map_link\";i:0;s:6:\"coords\";i:0;}s:6:\"teaser\";i:1;s:4:\"full\";i:1;}s:3:\"rss\";a:1:{s:4:\"mode\";s:6:\"simple\";}}'),('location_usegmap','i:1;'),('location_use_province_abbreviation','s:1:\"1\";'),('maintenance_mode','i:1;'),('maintenance_mode_message','s:95:\" MORSea is currently under maintenance. We should be back shortly. Thank you for your patience.\";'),('menu_default_active_menus','a:4:{i:0;s:9:\"main-menu\";i:1;s:10:\"management\";i:2;s:10:\"navigation\";i:4;s:9:\"user-menu\";}'),('menu_expanded','a:1:{i:0;s:9:\"main-menu\";}'),('menu_masks','a:47:{i:0;i:501;i:1;i:494;i:2;i:493;i:3;i:490;i:4;i:250;i:5;i:247;i:6;i:246;i:7;i:245;i:8;i:242;i:9;i:238;i:10;i:234;i:11;i:126;i:12;i:125;i:13;i:124;i:14;i:123;i:15;i:122;i:16;i:121;i:17;i:119;i:18;i:118;i:19;i:117;i:20;i:63;i:21;i:62;i:22;i:61;i:23;i:60;i:24;i:59;i:25;i:58;i:26;i:44;i:27;i:31;i:28;i:30;i:29;i:29;i:30;i:28;i:31;i:26;i:32;i:24;i:33;i:22;i:34;i:21;i:35;i:15;i:36;i:14;i:37;i:13;i:38;i:12;i:39;i:11;i:40;i:10;i:41;i:7;i:42;i:6;i:43;i:5;i:44;i:3;i:45;i:2;i:46;i:1;}'),('menu_options_article','a:1:{i:0;s:9:\"main-menu\";}'),('menu_options_forum','a:1:{i:0;s:9:\"main-menu\";}'),('menu_options_gallery','a:1:{i:0;s:9:\"main-menu\";}'),('menu_options_location','a:1:{i:0;s:9:\"main-menu\";}'),('menu_options_maps','a:1:{i:0;s:9:\"main-menu\";}'),('menu_options_mooring','a:1:{i:0;s:9:\"main-menu\";}'),('menu_options_openlayers_example_content','a:1:{i:0;s:9:\"main-menu\";}'),('menu_options_page','a:1:{i:0;s:9:\"main-menu\";}'),('menu_options_photos','a:1:{i:0;s:9:\"main-menu\";}'),('menu_options_photo_moorings_2010','a:1:{i:0;s:9:\"main-menu\";}'),('menu_options_photo_moorings_2012','a:1:{i:0;s:9:\"main-menu\";}'),('menu_options_photo_moorings_2014','a:1:{i:0;s:9:\"main-menu\";}'),('menu_parent_article','s:11:\"main-menu:0\";'),('menu_parent_forum','s:11:\"main-menu:0\";'),('menu_parent_gallery','s:11:\"main-menu:0\";'),('menu_parent_location','s:11:\"main-menu:0\";'),('menu_parent_maps','s:11:\"main-menu:0\";'),('menu_parent_mooring','s:11:\"main-menu:0\";'),('menu_parent_openlayers_example_content','s:11:\"main-menu:0\";'),('menu_parent_page','s:11:\"main-menu:0\";'),('menu_parent_photos','s:11:\"main-menu:0\";'),('menu_parent_photo_moorings_2010','s:11:\"main-menu:0\";'),('menu_parent_photo_moorings_2012','s:11:\"main-menu:0\";'),('menu_parent_photo_moorings_2014','s:11:\"main-menu:0\";'),('node_admin_theme','s:1:\"1\";'),('node_cron_last','s:10:\"1412082460\";'),('node_options_article','a:2:{i:0;s:6:\"status\";i:1;s:7:\"promote\";}'),('node_options_forum','a:1:{i:0;s:6:\"status\";}'),('node_options_gallery','a:2:{i:0;s:6:\"status\";i:1;s:7:\"promote\";}'),('node_options_location','a:2:{i:0;s:6:\"status\";i:1;s:7:\"promote\";}'),('node_options_maps','a:2:{i:0;s:6:\"status\";i:1;s:7:\"promote\";}'),('node_options_mooring','a:2:{i:0;s:6:\"status\";i:1;s:7:\"promote\";}'),('node_options_openlayers_example_content','a:2:{i:0;s:6:\"status\";i:1;s:7:\"promote\";}'),('node_options_page','a:1:{i:0;s:6:\"status\";}'),('node_options_photos','a:2:{i:0;s:6:\"status\";i:1;s:7:\"promote\";}'),('node_options_photo_moorings_2010','a:2:{i:0;s:6:\"status\";i:1;s:7:\"promote\";}'),('node_options_photo_moorings_2012','a:2:{i:0;s:6:\"status\";i:1;s:7:\"promote\";}'),('node_options_photo_moorings_2014','a:2:{i:0;s:6:\"status\";i:1;s:7:\"promote\";}'),('node_preview_article','s:1:\"1\";'),('node_preview_forum','s:1:\"1\";'),('node_preview_mooring','s:1:\"1\";'),('node_preview_openlayers_example_content','s:1:\"1\";'),('node_preview_page','s:1:\"1\";'),('node_preview_photos','s:1:\"1\";'),('node_preview_photo_moorings_2010','s:1:\"1\";'),('node_preview_photo_moorings_2012','s:1:\"1\";'),('node_preview_photo_moorings_2014','s:1:\"1\";'),('node_submitted_article','i:1;'),('node_submitted_forum','i:1;'),('node_submitted_gallery','i:1;'),('node_submitted_location','i:1;'),('node_submitted_maps','i:1;'),('node_submitted_mooring','i:1;'),('node_submitted_openlayers_example_content','i:1;'),('node_submitted_page','i:0;'),('node_submitted_photos','i:0;'),('node_submitted_photo_moorings_2010','i:0;'),('node_submitted_photo_moorings_2012','i:0;'),('node_submitted_photo_moorings_2014','i:0;'),('openlayers_default_map','s:7:\"default\";'),('openlayers_source_external','s:44:\"http://openlayers.org/api/2.13/OpenLayers.js\";'),('openlayers_source_internal_variant','s:8:\"original\";'),('openlayers_source_type','s:8:\"external\";'),('openlayers_ui_preview_map','i:0;'),('openlayers_ui_version_check','s:12:\"Release 2.13\";'),('page_cache_maximum_age','s:1:\"0\";'),('page_compression','i:1;'),('path_alias_whitelist','a:0:{}'),('photos_access_photos','s:1:\"0\";'),('photos_additional_sizes','i:5;'),('photos_block_num_random_images','s:2:\"10\";'),('photos_comment','s:1:\"0\";'),('photos_cover_imagesize','s:5:\"large\";'),('photos_display_full_imagesize','s:6:\"medium\";'),('photos_display_full_viewnum','s:2:\"50\";'),('photos_display_imageorder','s:14:\"timestamp|desc\";'),('photos_display_list_imagesize','s:6:\"medium\";'),('photos_display_page_display','s:1:\"0\";'),('photos_display_page_user','s:1:\"0\";'),('photos_display_teaser_display','s:1:\"0\";'),('photos_display_teaser_imagesize','s:5:\"large\";'),('photos_display_teaser_user','s:1:\"0\";'),('photos_display_teaser_viewnum','s:2:\"10\";'),('photos_display_user','s:1:\"0\";'),('photos_display_viewpager','s:2:\"50\";'),('photos_display_view_imagesize','s:5:\"large\";'),('photos_exif','s:1:\"0\";'),('photos_exif_cache','s:1:\"1\";'),('photos_image_count','s:1:\"1\";'),('photos_name_0','s:5:\"Thumb\";'),('photos_name_1','s:6:\"Medium\";'),('photos_name_2','s:5:\"Large\";'),('photos_name_3','s:0:\"\";'),('photos_name_4','s:0:\"\";'),('photos_name_5','s:0:\"\";'),('photos_node_article','s:1:\"0\";'),('photos_node_forum','s:1:\"0\";'),('photos_node_mooring','s:1:\"0\";'),('photos_node_openlayers_example_content','s:1:\"0\";'),('photos_node_page','s:1:\"0\";'),('photos_node_photos','s:1:\"0\";'),('photos_node_photo_moorings_2010','s:1:\"0\";'),('photos_node_photo_moorings_2012','s:1:\"0\";'),('photos_node_photo_moorings_2014','s:1:\"0\";'),('photos_num','s:1:\"1\";'),('photos_pager_imagesize','s:5:\"large\";'),('photos_path','s:18:\"photos/image_%uid?\";'),('photos_plupload_status','i:0;'),('photos_pnum_2','s:2:\"20\";'),('photos_pnum_3','s:2:\"20\";'),('photos_pnum_4','s:2:\"20\";'),('photos_print_sizes','s:1:\"0\";'),('photos_rname','s:1:\"0\";'),('photos_share_article','s:1:\"0\";'),('photos_share_forum','s:1:\"0\";'),('photos_share_mooring','s:1:\"0\";'),('photos_share_openlayers_example_content','s:1:\"0\";'),('photos_share_page','s:1:\"0\";'),('photos_share_photos','s:1:\"0\";'),('photos_share_photo_moorings_2010','s:1:\"0\";'),('photos_share_photo_moorings_2012','s:1:\"0\";'),('photos_share_photo_moorings_2014','s:1:\"0\";'),('photos_size','a:3:{i:0;a:2:{s:5:\"style\";s:9:\"thumbnail\";s:4:\"name\";s:5:\"Thumb\";}i:1;a:2:{s:5:\"style\";s:6:\"medium\";s:4:\"name\";s:6:\"Medium\";}i:2;a:2:{s:5:\"style\";s:5:\"large\";s:4:\"name\";s:5:\"Large\";}}'),('photos_size_0','s:9:\"thumbnail\";'),('photos_size_1','s:6:\"medium\";'),('photos_size_2','s:5:\"large\";'),('photos_size_3','s:0:\"\";'),('photos_size_4','s:0:\"\";'),('photos_size_5','s:0:\"\";'),('photos_size_max','s:0:\"\";'),('photos_swfu_num','s:1:\"1\";'),('photos_thumb_count','s:1:\"6\";'),('photos_thumb_imagesize','s:9:\"thumbnail\";'),('photos_upzip','s:1:\"0\";'),('photos_user_count_cron','s:1:\"1\";'),('photos_vote','i:0;'),('preprocess_css','i:0;'),('preprocess_js','i:0;'),('radius_client_server1','a:5:{s:7:\"address\";s:24:\"radius2.uniparthenope.it\";s:4:\"port\";s:4:\"1812\";s:6:\"secret\";s:10:\"sebeto2012\";s:7:\"timeout\";s:1:\"5\";s:10:\"maxretries\";s:1:\"3\";}'),('radius_client_server2','a:5:{s:7:\"address\";s:0:\"\";s:4:\"port\";s:0:\"\";s:6:\"secret\";s:0:\"\";s:7:\"timeout\";s:0:\"\";s:10:\"maxretries\";s:0:\"\";}'),('radius_dictionary_path','s:21:\"/etc/raddb/dictionary\";'),('save_continue_gallery','s:19:\"Save and add fields\";'),('save_continue_location','s:19:\"Save and add fields\";'),('save_continue_maps','s:19:\"Save and add fields\";'),('save_continue_mooring','s:19:\"Save and add fields\";'),('save_continue_photo','s:19:\"Save and add fields\";'),('save_continue_photo_moorings_2010','s:19:\"Save and add fields\";'),('save_continue_photo_moorings_2012','s:19:\"Save and add fields\";'),('site_403','s:0:\"\";'),('site_404','s:0:\"\";'),('site_default_country','s:2:\"IT\";'),('site_frontpage','s:4:\"node\";'),('site_mail','s:33:\"raffaele.montella@uniparhenope.it\";'),('site_name','s:7:\" MORSea\";'),('site_slogan','s:34:\"Marine Observatory in the Ross Sea\";'),('theme_alpha_responsive_theme_settings','a:22:{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:22:\"public://logo_PNRA.GIF\";s:15:\"default_favicon\";i:1;s:12:\"favicon_path\";s:0:\"\";s:14:\"favicon_upload\";s:0:\"\";s:11:\"breadcrumbs\";i:1;s:12:\"social_links\";i:1;s:19:\"twitter_profile_url\";s:0:\"\";s:20:\"facebook_profile_url\";s:0:\"\";s:17:\"gplus_profile_url\";s:50:\"https://plus.google.com/u/0/115285675336265767735/\";s:20:\"linkedin_profile_url\";s:43:\"https://www.linkedin.com/company/zymphonies\";s:21:\"pinterest_profile_url\";s:34:\"http://www.pinterest.com/shanidkv/\";s:19:\"youtube_profile_url\";s:22:\"http://www.youtube.com\";}'),('theme_bartik_settings','a:19:{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:20:\"public://Logo300.jpg\";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: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\";}}'),('theme_default','s:12:\"multipurpose\";'),('theme_multipurpose_settings','a:23:{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:1;s:9:\"logo_path\";s:23:\"public://LogoItaAnt.jpg\";s:11:\"logo_upload\";s:0:\"\";s:15:\"default_favicon\";i:0;s:12:\"favicon_path\";s:25:\"public://LogoItaAnt_0.jpg\";s:11:\"breadcrumbs\";i:0;s:10:\"image_logo\";i:1;s:17:\"slideshow_display\";i:0;s:18:\"socialicon_display\";i:1;s:11:\"twitter_url\";s:3:\"xxx\";s:12:\"facebook_url\";s:3:\"xxx\";s:15:\"google_plus_url\";s:3:\"xxx\";s:13:\"pinterest_url\";s:3:\"xxx\";s:16:\"favicon_mimetype\";s:10:\"image/jpeg\";}'),('theme_settings','a:14:{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:26:\"public://logo_utmeater.gif\";s:15:\"default_favicon\";i:1;s:12:\"favicon_path\";s:0:\"\";s:14:\"favicon_upload\";s:0:\"\";}'),('theme_venture_theme_settings','a:27:{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:24:\"public://logo_pnra_0.png\";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:11:\"breadcrumbs\";i:1;s:10:\"image_logo\";i:1;s:17:\"slideshow_display\";i:1;s:11:\"slide1_head\";s:6:\"Foto 1\";s:11:\"slide1_desc\";s:4:\"xxx1\";s:10:\"slide1_url\";s:6:\"node/1\";s:11:\"slide2_head\";s:3:\"Fll\";s:11:\"slide2_desc\";s:42:\"Lorem ipsum dolor sit amet, consectetur...\";s:10:\"slide2_url\";s:6:\"node/2\";s:11:\"slide3_head\";s:3:\"ddd\";s:11:\"slide3_desc\";s:41:\"Duis aute irure dolor in reprehenderit...\";s:10:\"slide3_url\";s:6:\"node/3\";}'),('translation_language_type','s:16:\"language_content\";'),('update_last_check','i:1557863791;'),('update_last_email_notification','i:1557863788;'),('update_notify_emails','a:1:{i:0;s:33:\"raffaele.montella@uniparhenope.it\";}'),('user_admin_role','s:1:\"3\";'),('user_cancel_method','s:18:\"user_cancel_delete\";'),('user_email_verification','i:1;'),('user_mail_cancel_confirm_body','s:381:\"[user:name],\r\n\r\nA request to cancel your account has been made at [site:name].\r\n\r\nYou may now cancel your account on [site:url-brief] by clicking this link or copying and pasting it into your browser:\r\n\r\n[user:cancel-url]\r\n\r\nNOTE: The cancellation of your account is not reversible.\r\n\r\nThis link expires in one day and nothing will happen if it is not used.\r\n\r\n--  [site:name] team\";'),('user_mail_cancel_confirm_subject','s:59:\"Account cancellation request for [user:name] at [site:name]\";'),('user_mail_password_reset_body','s:407:\"[user:name],\r\n\r\nA request to reset the password for your account has been made at [site:name].\r\n\r\nYou may now log in by clicking this link or copying and pasting it to your browser:\r\n\r\n[user:one-time-login-url]\r\n\r\nThis link can only be used once to log in and will lead you to a page where you can set your password. It expires after one day and nothing will happen if it\'s not used.\r\n\r\n--  [site:name] team\";'),('user_mail_password_reset_subject','s:60:\"Replacement login information for [user:name] at [site:name]\";'),('user_mail_register_admin_created_body','s:476:\"[user:name],\r\n\r\nA site administrator at [site:name] has created an account for you. You may now log in by clicking this link or copying and pasting it to your browser:\r\n\r\n[user:one-time-login-url]\r\n\r\nThis link can only be used once to log in and will lead you to a page where you can set your password.\r\n\r\nAfter setting your password, you will be able to log in at [site:login-url] in the future using:\r\n\r\nusername: [user:name]\r\npassword: Your password\r\n\r\n--  [site:name] team\";'),('user_mail_register_admin_created_subject','s:58:\"An administrator created an account for you at [site:name]\";'),('user_mail_register_no_approval_required_body','s:450:\"[user:name],\r\n\r\nThank you for registering at [site:name]. You may now log in by clicking this link or copying and pasting it to your browser:\r\n\r\n[user:one-time-login-url]\r\n\r\nThis link can only be used once to log in and will lead you to a page where you can set your password.\r\n\r\nAfter setting your password, you will be able to log in at [site:login-url] in the future using:\r\n\r\nusername: [user:name]\r\npassword: Your password\r\n\r\n--  [site:name] team\";'),('user_mail_register_no_approval_required_subject','s:46:\"Account details for [user:name] at [site:name]\";'),('user_mail_register_pending_approval_body','s:287:\"[user:name],\r\n\r\nThank you for registering at [site:name]. Your application for an account is currently pending approval. Once it has been approved, you will receive another e-mail containing information about how to log in, set your password, and other details.\r\n\r\n\r\n--  [site:name] team\";'),('user_mail_register_pending_approval_subject','s:71:\"Account details for [user:name] at [site:name] (pending admin approval)\";'),('user_mail_status_activated_body','s:461:\"[user:name],\r\n\r\nYour account at [site:name] has been activated.\r\n\r\nYou may now log in by clicking this link or copying and pasting it into your browser:\r\n\r\n[user:one-time-login-url]\r\n\r\nThis link can only be used once to log in and will lead you to a page where you can set your password.\r\n\r\nAfter setting your password, you will be able to log in at [site:login-url] in the future using:\r\n\r\nusername: [user:name]\r\npassword: Your password\r\n\r\n--  [site:name] team\";'),('user_mail_status_activated_notify','i:1;'),('user_mail_status_activated_subject','s:57:\"Account details for [user:name] at [site:name] (approved)\";'),('user_mail_status_blocked_body','s:85:\"[user:name],\r\n\r\nYour account on [site:name] has been blocked.\r\n\r\n--  [site:name] team\";'),('user_mail_status_blocked_notify','i:0;'),('user_mail_status_blocked_subject','s:56:\"Account details for [user:name] at [site:name] (blocked)\";'),('user_mail_status_canceled_body','s:86:\"[user:name],\r\n\r\nYour account on [site:name] has been canceled.\r\n\r\n--  [site:name] team\";'),('user_mail_status_canceled_notify','i:0;'),('user_mail_status_canceled_subject','s:57:\"Account details for [user:name] at [site:name] (canceled)\";'),('user_pictures','i:1;'),('user_picture_default','s:0:\"\";'),('user_picture_dimensions','s:9:\"1024x1024\";'),('user_picture_file_size','s:3:\"800\";'),('user_picture_guidelines','s:0:\"\";'),('user_picture_path','s:8:\"pictures\";'),('user_picture_style','s:9:\"thumbnail\";'),('user_register','s:1:\"0\";'),('user_signatures','i:0;'),('variable_module_list','a:3:{s:4:\"i18n\";a:1:{i:0;s:18:\"i18n_language_list\";}s:11:\"i18n_string\";a:5:{i:0;s:33:\"i18n_string_translate_langcode_en\";i:1;s:33:\"i18n_string_translate_langcode_it\";i:2;s:27:\"i18n_string_allowed_formats\";i:3;s:27:\"i18n_string_source_language\";i:4;s:17:\"i18n_string_debug\";}s:9:\"i18n_node\";a:6:{i:0;s:27:\"i18n_hide_translation_links\";i:1;s:31:\"i18n_node_default_language_none\";i:2;s:25:\"i18n_node_options_article\";i:3;s:22:\"i18n_node_options_page\";i:4;s:26:\"i18n_node_extended_article\";i:5;s:23:\"i18n_node_extended_page\";}}'),('variable_realm_list_language','a:2:{i:0;s:9:\"site_name\";i:1;s:11:\"site_slogan\";}'),('views_defaults','a:3:{s:14:\"location_table\";b:1;s:18:\"location_directory\";b:1;s:13:\"photo_gallery\";b:1;}');
/*!40000 ALTER TABLE `variable` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `variable_store`
--

DROP TABLE IF EXISTS `variable_store`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `variable_store` (
  `realm` varchar(50) NOT NULL DEFAULT '' COMMENT 'The realm domain of this variable.',
  `realm_key` varchar(50) NOT NULL DEFAULT '' COMMENT 'The realm key of this variable.',
  `name` varchar(128) NOT NULL DEFAULT '' COMMENT 'The name of the variable.',
  `value` longtext NOT NULL COMMENT 'The value of the variable.',
  `serialized` smallint(6) NOT NULL DEFAULT 1 COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
  PRIMARY KEY (`realm`,`realm_key`,`name`),
  KEY `realm_value` (`realm`,`realm_key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Named variable/value pairs created by modules using...';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `variable_store`
--

LOCK TABLES `variable_store` WRITE;
/*!40000 ALTER TABLE `variable_store` DISABLE KEYS */;
INSERT INTO `variable_store` VALUES ('language','en','site_name',' MORSea',0),('language','en','site_slogan','Marine Observatory in the Ross Sea',0),('language','it','site_name',' MORSea',0),('language','it','site_slogan','Marine Observatory in the Ross Sea',0);
/*!40000 ALTER TABLE `variable_store` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `views_display`
--

DROP TABLE IF EXISTS `views_display`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `views_display` (
  `vid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'The view this display is attached to.',
  `id` varchar(64) NOT NULL DEFAULT '' COMMENT 'An identifier for this display; usually generated from the display_plugin, so should be something like page or page_1 or block_2, etc.',
  `display_title` varchar(64) NOT NULL DEFAULT '' COMMENT 'The title of the display, viewable by the administrator.',
  `display_plugin` varchar(64) NOT NULL DEFAULT '' COMMENT 'The type of the display. Usually page, block or embed, but is pluggable so may be other things.',
  `position` int(11) DEFAULT 0 COMMENT 'The order in which this display is loaded.',
  `display_options` longtext DEFAULT NULL COMMENT 'A serialized array of options for this display; it contains options that are generally only pertinent to that display plugin type.',
  PRIMARY KEY (`vid`,`id`),
  KEY `vid` (`vid`,`position`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores information about each display attached to a view.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `views_display`
--

LOCK TABLES `views_display` WRITE;
/*!40000 ALTER TABLE `views_display` DISABLE KEYS */;
INSERT INTO `views_display` VALUES (1,'block','Block','block',3,'a:5:{s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"some\";s:7:\"options\";a:1:{s:14:\"items_per_page\";s:1:\"5\";}}s:8:\"defaults\";a:2:{s:5:\"pager\";b:0;s:13:\"pager_options\";b:0;}s:13:\"pager_options\";N;s:5:\"field\";a:1:{s:5:\"title\";a:1:{s:12:\"link_to_node\";i:1;}}}'),(1,'default','Master','default',1,'a:11:{s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:6:\"access\";a:1:{s:4:\"type\";s:4:\"perm\";}s:5:\"cache\";a:1:{s:4:\"type\";s:4:\"none\";}s:12:\"exposed_form\";a:1:{s:4:\"type\";s:5:\"basic\";}s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"full\";s:7:\"options\";a:1:{s:14:\"items_per_page\";s:2:\"10\";}}s:12:\"style_plugin\";s:7:\"default\";s:10:\"row_plugin\";s:6:\"fields\";s:6:\"fields\";a:1:{s:5:\"title\";a:8:{s:2:\"id\";s:5:\"title\";s:5:\"table\";s:4:\"node\";s:5:\"field\";s:5:\"title\";s:5:\"label\";s:0:\"\";s:5:\"alter\";a:8:{s:10:\"alter_text\";i:0;s:9:\"make_link\";i:0;s:8:\"absolute\";i:0;s:4:\"trim\";i:0;s:13:\"word_boundary\";i:0;s:8:\"ellipsis\";i:0;s:10:\"strip_tags\";i:0;s:4:\"html\";i:0;}s:10:\"hide_empty\";i:0;s:10:\"empty_zero\";i:0;s:12:\"link_to_node\";i:1;}}s:7:\"filters\";a:2:{s:6:\"status\";a:6:{s:5:\"value\";i:1;s:5:\"table\";s:4:\"node\";s:5:\"field\";s:6:\"status\";s:2:\"id\";s:6:\"status\";s:6:\"expose\";a:1:{s:8:\"operator\";b:0;}s:5:\"group\";i:1;}s:4:\"type\";a:4:{s:2:\"id\";s:4:\"type\";s:5:\"table\";s:4:\"node\";s:5:\"field\";s:4:\"type\";s:5:\"value\";a:1:{s:7:\"article\";s:7:\"article\";}}}s:5:\"sorts\";a:1:{s:7:\"created\";a:4:{s:2:\"id\";s:7:\"created\";s:5:\"table\";s:4:\"node\";s:5:\"field\";s:7:\"created\";s:5:\"order\";s:4:\"DESC\";}}s:5:\"title\";s:8:\"Articles\";}'),(1,'page','Page','page',2,'a:3:{s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:4:\"path\";s:8:\"articles\";s:5:\"field\";a:1:{s:5:\"title\";a:1:{s:12:\"link_to_node\";i:1;}}}'),(2,'default','Defaults','default',1,'a:15:{s:14:\"items_per_page\";N;s:6:\"offset\";N;s:9:\"use_pager\";N;s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"none\";s:7:\"options\";a:1:{s:6:\"offset\";i:0;}}s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:6:\"fields\";a:6:{s:5:\"title\";a:8:{s:5:\"label\";s:5:\"Title\";s:12:\"link_to_node\";i:1;s:7:\"exclude\";i:0;s:2:\"id\";s:5:\"title\";s:5:\"table\";s:4:\"node\";s:5:\"field\";s:5:\"title\";s:8:\"override\";a:1:{s:6:\"button\";s:8:\"Override\";}s:12:\"relationship\";s:4:\"none\";}s:6:\"street\";a:8:{s:5:\"label\";s:6:\"Street\";s:5:\"style\";s:4:\"both\";s:7:\"exclude\";i:0;s:2:\"id\";s:6:\"street\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:6:\"street\";s:8:\"override\";a:1:{s:6:\"button\";s:8:\"Override\";}s:12:\"relationship\";s:4:\"none\";}s:4:\"city\";a:7:{s:5:\"label\";s:4:\"City\";s:7:\"exclude\";i:0;s:2:\"id\";s:4:\"city\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:4:\"city\";s:8:\"override\";a:1:{s:6:\"button\";s:8:\"Override\";}s:12:\"relationship\";s:4:\"none\";}s:8:\"province\";a:7:{s:5:\"label\";s:8:\"Province\";s:5:\"style\";s:4:\"name\";s:7:\"exclude\";i:0;s:2:\"id\";s:8:\"province\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:8:\"province\";s:12:\"relationship\";s:4:\"none\";}s:11:\"postal_code\";a:7:{s:5:\"label\";s:11:\"Postal Code\";s:7:\"exclude\";i:0;s:2:\"id\";s:11:\"postal_code\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:11:\"postal_code\";s:8:\"override\";a:1:{s:6:\"button\";s:8:\"Override\";}s:12:\"relationship\";s:4:\"none\";}s:7:\"country\";a:7:{s:5:\"label\";s:7:\"Country\";s:5:\"style\";s:4:\"name\";s:7:\"exclude\";i:0;s:2:\"id\";s:7:\"country\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:7:\"country\";s:12:\"relationship\";s:4:\"none\";}}s:8:\"defaults\";a:9:{s:6:\"fields\";b:0;s:7:\"filters\";b:0;s:13:\"filter_groups\";b:0;s:6:\"access\";b:0;s:14:\"access_options\";b:0;s:12:\"style_plugin\";b:0;s:13:\"style_options\";b:0;s:10:\"row_plugin\";b:0;s:11:\"row_options\";b:0;}s:7:\"filters\";a:2:{s:12:\"status_extra\";a:10:{s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:0:\"\";s:5:\"group\";s:1:\"0\";s:7:\"exposed\";b:0;s:6:\"expose\";a:2:{s:8:\"operator\";b:0;s:5:\"label\";s:0:\"\";}s:2:\"id\";s:12:\"status_extra\";s:5:\"table\";s:4:\"node\";s:5:\"field\";s:12:\"status_extra\";s:8:\"override\";a:1:{s:6:\"button\";s:8:\"Override\";}s:12:\"relationship\";s:4:\"none\";}s:3:\"lid\";a:9:{s:8:\"operator\";s:9:\"not empty\";s:5:\"value\";a:3:{s:5:\"value\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:5:\"group\";s:1:\"0\";s:7:\"exposed\";b:0;s:6:\"expose\";a:2:{s:8:\"operator\";b:0;s:5:\"label\";s:0:\"\";}s:2:\"id\";s:3:\"lid\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:3:\"lid\";s:12:\"relationship\";s:4:\"none\";}}s:13:\"filter_groups\";a:2:{s:8:\"operator\";s:3:\"AND\";s:6:\"groups\";a:1:{i:1;s:3:\"AND\";}}s:6:\"access\";a:2:{s:4:\"type\";s:4:\"perm\";s:4:\"perm\";s:24:\"view node location table\";}s:14:\"access_options\";N;s:12:\"style_plugin\";s:5:\"table\";s:13:\"style_options\";a:7:{s:8:\"grouping\";s:0:\"\";s:8:\"override\";i:1;s:6:\"sticky\";i:0;s:5:\"order\";s:3:\"asc\";s:7:\"columns\";a:6:{s:5:\"title\";s:5:\"title\";s:6:\"street\";s:6:\"street\";s:4:\"city\";s:4:\"city\";s:8:\"province\";s:8:\"province\";s:11:\"postal_code\";s:11:\"postal_code\";s:7:\"country\";s:7:\"country\";}s:4:\"info\";a:6:{s:5:\"title\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}s:6:\"street\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}s:4:\"city\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}s:8:\"province\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}s:11:\"postal_code\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}s:7:\"country\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}}s:7:\"default\";s:2:\"-1\";}s:10:\"row_plugin\";s:6:\"fields\";s:11:\"row_options\";a:0:{}}'),(2,'page_1','Page','page',2,'a:8:{s:14:\"items_per_page\";N;s:6:\"offset\";N;s:9:\"use_pager\";N;s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"none\";s:7:\"options\";a:1:{s:6:\"offset\";i:0;}}s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:4:\"path\";s:14:\"location/views\";s:4:\"menu\";a:3:{s:4:\"type\";s:6:\"normal\";s:5:\"title\";s:14:\"Location table\";s:6:\"weight\";s:1:\"0\";}s:11:\"tab_options\";a:3:{s:4:\"type\";s:4:\"none\";s:5:\"title\";s:0:\"\";s:6:\"weight\";i:0;}}'),(3,'default','Master','default',1,'a:10:{s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:6:\"access\";a:1:{s:4:\"type\";s:4:\"none\";}s:5:\"cache\";a:1:{s:4:\"type\";s:4:\"none\";}s:12:\"exposed_form\";a:1:{s:4:\"type\";s:5:\"basic\";}s:5:\"pager\";a:1:{s:4:\"type\";s:4:\"full\";}s:12:\"style_plugin\";s:7:\"default\";s:10:\"row_plugin\";s:6:\"fields\";s:6:\"fields\";a:1:{s:3:\"lid\";a:3:{s:5:\"table\";s:8:\"location\";s:5:\"field\";s:3:\"lid\";s:2:\"id\";s:3:\"lid\";}}s:7:\"filters\";a:0:{}s:5:\"sorts\";a:0:{}}'),(4,'default','Defaults','default',1,'a:16:{s:14:\"items_per_page\";N;s:6:\"offset\";N;s:9:\"use_pager\";N;s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"none\";s:7:\"options\";a:1:{s:6:\"offset\";i:0;}}s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:6:\"fields\";a:6:{s:5:\"title\";a:7:{s:5:\"label\";s:5:\"Title\";s:12:\"link_to_node\";i:1;s:7:\"exclude\";i:0;s:2:\"id\";s:5:\"title\";s:5:\"table\";s:4:\"node\";s:5:\"field\";s:5:\"title\";s:12:\"relationship\";s:4:\"none\";}s:6:\"street\";a:7:{s:5:\"label\";s:6:\"Street\";s:5:\"style\";s:4:\"both\";s:7:\"exclude\";i:0;s:2:\"id\";s:6:\"street\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:6:\"street\";s:12:\"relationship\";s:4:\"none\";}s:4:\"city\";a:6:{s:5:\"label\";s:4:\"City\";s:7:\"exclude\";i:0;s:2:\"id\";s:4:\"city\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:4:\"city\";s:12:\"relationship\";s:4:\"none\";}s:8:\"province\";a:7:{s:5:\"label\";s:8:\"Province\";s:5:\"style\";s:4:\"name\";s:7:\"exclude\";i:0;s:2:\"id\";s:8:\"province\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:8:\"province\";s:12:\"relationship\";s:4:\"none\";}s:11:\"postal_code\";a:6:{s:5:\"label\";s:11:\"Postal Code\";s:7:\"exclude\";i:0;s:2:\"id\";s:11:\"postal_code\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:11:\"postal_code\";s:12:\"relationship\";s:4:\"none\";}s:7:\"country\";a:7:{s:5:\"label\";s:7:\"Country\";s:5:\"style\";s:4:\"name\";s:7:\"exclude\";i:0;s:2:\"id\";s:7:\"country\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:7:\"country\";s:12:\"relationship\";s:4:\"none\";}}s:8:\"defaults\";a:10:{s:6:\"fields\";b:0;s:9:\"arguments\";b:0;s:7:\"filters\";b:0;s:13:\"filter_groups\";b:0;s:6:\"access\";b:0;s:14:\"access_options\";b:0;s:12:\"style_plugin\";b:0;s:13:\"style_options\";b:0;s:10:\"row_plugin\";b:0;s:11:\"row_options\";b:0;}s:9:\"arguments\";a:3:{s:7:\"country\";a:21:{s:14:\"default_action\";s:11:\"summary asc\";s:12:\"style_plugin\";s:15:\"default_summary\";s:13:\"style_options\";a:3:{s:5:\"count\";i:1;s:8:\"override\";i:0;s:14:\"items_per_page\";s:2:\"25\";}s:8:\"wildcard\";s:3:\"all\";s:21:\"wildcard_substitution\";s:3:\"All\";s:5:\"title\";s:2:\"%1\";s:21:\"default_argument_type\";s:5:\"fixed\";s:16:\"default_argument\";s:0:\"\";s:13:\"validate_type\";s:4:\"none\";s:13:\"validate_fail\";s:9:\"not found\";s:2:\"id\";s:7:\"country\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:7:\"country\";s:12:\"relationship\";s:4:\"none\";s:26:\"default_options_div_prefix\";s:0:\"\";s:22:\"default_argument_fixed\";s:0:\"\";s:20:\"default_argument_php\";s:0:\"\";s:27:\"validate_argument_node_type\";a:2:{s:4:\"page\";i:0;s:5:\"story\";i:0;}s:29:\"validate_argument_node_access\";i:0;s:26:\"validate_argument_nid_type\";s:3:\"nid\";s:21:\"validate_argument_php\";s:0:\"\";}s:8:\"province\";a:21:{s:14:\"default_action\";s:11:\"summary asc\";s:12:\"style_plugin\";s:15:\"default_summary\";s:13:\"style_options\";a:3:{s:5:\"count\";i:1;s:8:\"override\";i:0;s:14:\"items_per_page\";s:2:\"25\";}s:8:\"wildcard\";s:3:\"all\";s:21:\"wildcard_substitution\";s:3:\"All\";s:5:\"title\";s:2:\"%2\";s:21:\"default_argument_type\";s:5:\"fixed\";s:16:\"default_argument\";s:0:\"\";s:13:\"validate_type\";s:4:\"none\";s:13:\"validate_fail\";s:9:\"not found\";s:2:\"id\";s:8:\"province\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:8:\"province\";s:12:\"relationship\";s:4:\"none\";s:26:\"default_options_div_prefix\";s:0:\"\";s:22:\"default_argument_fixed\";s:0:\"\";s:20:\"default_argument_php\";s:0:\"\";s:27:\"validate_argument_node_type\";a:2:{s:4:\"page\";i:0;s:5:\"story\";i:0;}s:29:\"validate_argument_node_access\";i:0;s:26:\"validate_argument_nid_type\";s:3:\"nid\";s:21:\"validate_argument_php\";s:0:\"\";}s:4:\"city\";a:26:{s:14:\"default_action\";s:11:\"summary asc\";s:12:\"style_plugin\";s:15:\"default_summary\";s:13:\"style_options\";a:3:{s:5:\"count\";i:1;s:8:\"override\";i:0;s:14:\"items_per_page\";s:2:\"25\";}s:8:\"wildcard\";s:3:\"all\";s:21:\"wildcard_substitution\";s:3:\"All\";s:5:\"title\";s:2:\"%3\";s:21:\"default_argument_type\";s:5:\"fixed\";s:16:\"default_argument\";s:0:\"\";s:13:\"validate_type\";s:4:\"none\";s:13:\"validate_fail\";s:9:\"not found\";s:8:\"glossary\";i:1;s:5:\"limit\";s:1:\"1\";s:4:\"case\";s:4:\"none\";s:9:\"path_case\";s:4:\"none\";s:14:\"transform_dash\";i:0;s:2:\"id\";s:4:\"city\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:4:\"city\";s:12:\"relationship\";s:4:\"none\";s:26:\"default_options_div_prefix\";s:0:\"\";s:22:\"default_argument_fixed\";s:0:\"\";s:20:\"default_argument_php\";s:0:\"\";s:27:\"validate_argument_node_type\";a:2:{s:4:\"page\";i:0;s:5:\"story\";i:0;}s:29:\"validate_argument_node_access\";i:0;s:26:\"validate_argument_nid_type\";s:3:\"nid\";s:21:\"validate_argument_php\";s:0:\"\";}}s:7:\"filters\";a:2:{s:12:\"status_extra\";a:9:{s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:0:\"\";s:5:\"group\";s:1:\"0\";s:7:\"exposed\";b:0;s:6:\"expose\";a:2:{s:8:\"operator\";b:0;s:5:\"label\";s:0:\"\";}s:2:\"id\";s:12:\"status_extra\";s:5:\"table\";s:4:\"node\";s:5:\"field\";s:12:\"status_extra\";s:12:\"relationship\";s:4:\"none\";}s:3:\"lid\";a:9:{s:8:\"operator\";s:9:\"not empty\";s:5:\"value\";a:3:{s:5:\"value\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:5:\"group\";s:1:\"0\";s:7:\"exposed\";b:0;s:6:\"expose\";a:2:{s:8:\"operator\";b:0;s:5:\"label\";s:0:\"\";}s:2:\"id\";s:3:\"lid\";s:5:\"table\";s:8:\"location\";s:5:\"field\";s:3:\"lid\";s:12:\"relationship\";s:4:\"none\";}}s:13:\"filter_groups\";a:2:{s:8:\"operator\";s:3:\"AND\";s:6:\"groups\";a:1:{i:1;s:3:\"AND\";}}s:6:\"access\";a:2:{s:4:\"type\";s:4:\"perm\";s:4:\"perm\";s:23:\"view location directory\";}s:14:\"access_options\";N;s:12:\"style_plugin\";s:5:\"table\";s:13:\"style_options\";a:7:{s:8:\"grouping\";s:0:\"\";s:8:\"override\";i:1;s:6:\"sticky\";i:0;s:5:\"order\";s:3:\"asc\";s:7:\"columns\";a:6:{s:5:\"title\";s:5:\"title\";s:6:\"street\";s:6:\"street\";s:4:\"city\";s:4:\"city\";s:8:\"province\";s:8:\"province\";s:11:\"postal_code\";s:11:\"postal_code\";s:7:\"country\";s:7:\"country\";}s:4:\"info\";a:6:{s:5:\"title\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}s:6:\"street\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}s:4:\"city\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}s:8:\"province\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}s:11:\"postal_code\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}s:7:\"country\";a:2:{s:8:\"sortable\";i:1;s:9:\"separator\";s:0:\"\";}}s:7:\"default\";s:2:\"-1\";}s:10:\"row_plugin\";s:6:\"fields\";s:11:\"row_options\";a:0:{}}'),(4,'openlayers_1','OpenLayers Data Overlay','openlayers',3,'a:5:{s:14:\"items_per_page\";N;s:6:\"offset\";N;s:9:\"use_pager\";N;s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"none\";s:7:\"options\";a:1:{s:6:\"offset\";i:0;}}s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}}'),(4,'page_1','Page','page',2,'a:10:{s:14:\"items_per_page\";N;s:6:\"offset\";N;s:9:\"use_pager\";N;s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"none\";s:7:\"options\";a:1:{s:6:\"offset\";i:0;}}s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:0:{}}s:5:\"title\";s:9:\"Locations\";s:8:\"defaults\";a:1:{s:5:\"title\";b:0;}s:4:\"path\";s:7:\"node/12\";s:4:\"menu\";a:3:{s:4:\"type\";s:6:\"normal\";s:5:\"title\";s:9:\"Locations\";s:6:\"weight\";s:1:\"0\";}s:11:\"tab_options\";a:3:{s:4:\"type\";s:4:\"none\";s:5:\"title\";s:0:\"\";s:6:\"weight\";i:0;}}');
/*!40000 ALTER TABLE `views_display` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `views_view`
--

DROP TABLE IF EXISTS `views_view`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `views_view` (
  `vid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'The view ID of the field, defined by the database.',
  `name` varchar(128) NOT NULL DEFAULT '' COMMENT 'The unique name of the view. This is the primary field views are loaded from, and is used so that views may be internal and not necessarily in the database. May only be alphanumeric characters plus underscores.',
  `description` varchar(255) DEFAULT '' COMMENT 'A description of the view for the admin interface.',
  `tag` varchar(255) DEFAULT '' COMMENT 'A tag used to group/sort views in the admin interface',
  `base_table` varchar(64) NOT NULL DEFAULT '' COMMENT 'What table this view is based on, such as node, user, comment, or term.',
  `human_name` varchar(255) DEFAULT '' COMMENT 'A human readable name used to be displayed in the admin interface',
  `core` int(11) DEFAULT 0 COMMENT 'Stores the drupal core version of the view.',
  PRIMARY KEY (`vid`),
  UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='Stores the general data for a view.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `views_view`
--

LOCK TABLES `views_view` WRITE;
/*!40000 ALTER TABLE `views_view` DISABLE KEYS */;
INSERT INTO `views_view` VALUES (1,'articles','','default','node','Articles',7),(2,'location_table','Node location table.','','node','',0),(3,'custom_overlay','','default','location','Custom Overlay',7),(4,'location_directory','Location directory filtered by arguments in the url.','','node','',0);
/*!40000 ALTER TABLE `views_view` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `watchdog`
--

DROP TABLE IF EXISTS `watchdog`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `watchdog` (
  `wid` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: Unique watchdog event ID.',
  `uid` int(11) NOT NULL DEFAULT 0 COMMENT 'The users.uid of the user who triggered the event.',
  `type` varchar(64) NOT NULL DEFAULT '' COMMENT 'Type of log message, for example "user" or "page not found."',
  `message` longtext NOT NULL COMMENT 'Text of log message to be passed into the t() function.',
  `variables` longblob NOT NULL COMMENT 'Serialized array of variables that match the message string and that is passed into the t() function.',
  `severity` tinyint(3) unsigned NOT NULL DEFAULT 0 COMMENT 'The severity level of the event; ranges from 0 (Emergency) to 7 (Debug)',
  `link` varchar(255) DEFAULT '' COMMENT 'Link to view the result of the event.',
  `location` text NOT NULL COMMENT 'URL of the origin of the event.',
  `referer` text DEFAULT NULL COMMENT 'URL of referring page.',
  `hostname` varchar(128) NOT NULL DEFAULT '' COMMENT 'Hostname of the user who triggered the event.',
  `timestamp` int(11) NOT NULL DEFAULT 0 COMMENT 'Unix timestamp of when event occurred.',
  PRIMARY KEY (`wid`),
  KEY `type` (`type`),
  KEY `uid` (`uid`),
  KEY `severity` (`severity`)
) ENGINE=InnoDB AUTO_INCREMENT=286431 DEFAULT CHARSET=utf8 COMMENT='Table that contains logs of all system events.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `watchdog`
--

LOCK TABLES `watchdog` WRITE;
/*!40000 ALTER TABLE `watchdog` DISABLE KEYS */;
INSERT INTO `watchdog` VALUES (285422,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/','10.100.9.116',1652168938),(285423,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/','10.100.9.116',1652168938),(285424,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/','10.100.9.116',1652168938),(285425,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/','10.100.9.116',1652168938),(285426,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:5:\"Error\";s:8:\"!message\";s:44:\"Class &#039;SimpleXMLElement&#039; not found\";s:9:\"%function\";s:18:\"update_parse_xml()\";s:5:\"%file\";s:67:\"/var/www/html/antarctic-drupal-7.31/modules/update/update.fetch.inc\";s:5:\"%line\";i:390;s:14:\"severity_level\";i:3;}',3,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/','10.100.9.116',1652168938),(285427,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1486;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/','10.100.9.116',1652168938),(285428,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1490;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/','10.100.9.116',1652168938),(285429,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/','10.100.9.116',1652168938),(285430,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/','10.100.9.116',1652168938),(285431,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/','10.100.9.116',1652168938),(285432,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/','10.100.9.116',1652168938),(285433,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:83:\"The each() function is deprecated. This message will be suppressed on further calls\";s:9:\"%function\";s:27:\"_drupal_shutdown_function()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:3788;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/','10.100.9.116',1652168938),(285434,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:5:\"Error\";s:8:\"!message\";s:39:\"Class &#039;DOMDocument&#039; not found\";s:9:\"%function\";s:17:\"filter_dom_load()\";s:5:\"%file\";s:64:\"/var/www/html/antarctic-drupal-7.31/modules/filter/filter.module\";s:5:\"%line\";i:1105;s:14:\"severity_level\";i:3;}',3,'','http://morsea.uniparthenope.it/?q=node/4','http://morsea.uniparthenope.it/','10.100.9.116',1652168943),(285435,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:39:\"Drupal\\gmap\\GmapDefaults->__construct()\";s:5:\"%file\";s:91:\"/var/www/html/antarctic-drupal-7.31/sites/all/modules/gmap/lib/Drupal/gmap/GmapDefaults.php\";s:5:\"%line\";i:107;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=node/4','http://morsea.uniparthenope.it/','10.100.9.116',1652168943),(285436,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/4','http://morsea.uniparthenope.it/','10.100.9.116',1652168943),(285437,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:83:\"The each() function is deprecated. This message will be suppressed on further calls\";s:9:\"%function\";s:27:\"_drupal_shutdown_function()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:3788;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=node/4','http://morsea.uniparthenope.it/','10.100.9.116',1652168943),(285438,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:39:\"Drupal\\gmap\\GmapDefaults->__construct()\";s:5:\"%file\";s:91:\"/var/www/html/antarctic-drupal-7.31/sites/all/modules/gmap/lib/Drupal/gmap/GmapDefaults.php\";s:5:\"%line\";i:107;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=node/129','http://morsea.uniparthenope.it/','10.100.9.116',1652168952),(285439,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:18:\"drupal_get_feeds()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:394;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=node/129','http://morsea.uniparthenope.it/','10.100.9.116',1652168952),(285440,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:83:\"The each() function is deprecated. This message will be suppressed on further calls\";s:9:\"%function\";s:23:\"menu_set_active_trail()\";s:5:\"%file\";s:53:\"/var/www/html/antarctic-drupal-7.31/includes/menu.inc\";s:5:\"%line\";i:2405;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=node/129','http://morsea.uniparthenope.it/','10.100.9.116',1652168952),(285441,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/129','http://morsea.uniparthenope.it/','10.100.9.116',1652168952),(285442,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/129','http://morsea.uniparthenope.it/','10.100.9.116',1652168952),(285443,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/129','http://morsea.uniparthenope.it/','10.100.9.116',1652168952),(285444,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/129','http://morsea.uniparthenope.it/','10.100.9.116',1652168952),(285445,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/129','http://morsea.uniparthenope.it/','10.100.9.116',1652168952),(285446,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/129','http://morsea.uniparthenope.it/','10.100.9.116',1652168952),(285447,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/129','http://morsea.uniparthenope.it/','10.100.9.116',1652168952),(285448,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/129','http://morsea.uniparthenope.it/','10.100.9.116',1652168952),(285449,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/129','http://morsea.uniparthenope.it/','10.100.9.116',1652168952),(285450,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/129','http://morsea.uniparthenope.it/','10.100.9.116',1652168952),(285451,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/129','http://morsea.uniparthenope.it/','10.100.9.116',1652168952),(285452,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/129','http://morsea.uniparthenope.it/','10.100.9.116',1652168952),(285453,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/129','http://morsea.uniparthenope.it/','10.100.9.116',1652168952),(285454,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/129','http://morsea.uniparthenope.it/','10.100.9.116',1652168952),(285455,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/129','http://morsea.uniparthenope.it/','10.100.9.116',1652168952),(285456,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/129','http://morsea.uniparthenope.it/','10.100.9.116',1652168952),(285457,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/129','http://morsea.uniparthenope.it/','10.100.9.116',1652168952),(285458,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/129','http://morsea.uniparthenope.it/','10.100.9.116',1652168952),(285459,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/129','http://morsea.uniparthenope.it/','10.100.9.116',1652168952),(285460,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/129','http://morsea.uniparthenope.it/','10.100.9.116',1652168952),(285461,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/129','http://morsea.uniparthenope.it/','10.100.9.116',1652168952),(285462,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/129','http://morsea.uniparthenope.it/','10.100.9.116',1652168952),(285463,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/129','http://morsea.uniparthenope.it/','10.100.9.116',1652168952),(285464,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/129','http://morsea.uniparthenope.it/','10.100.9.116',1652168952),(285465,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:5:\"Error\";s:8:\"!message\";s:44:\"Class &#039;SimpleXMLElement&#039; not found\";s:9:\"%function\";s:18:\"update_parse_xml()\";s:5:\"%file\";s:67:\"/var/www/html/antarctic-drupal-7.31/modules/update/update.fetch.inc\";s:5:\"%line\";i:390;s:14:\"severity_level\";i:3;}',3,'','http://morsea.uniparthenope.it/?q=node/129','http://morsea.uniparthenope.it/','10.100.9.116',1652168952),(285466,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1486;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=node/129','http://morsea.uniparthenope.it/','10.100.9.116',1652168952),(285467,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1490;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=node/129','http://morsea.uniparthenope.it/','10.100.9.116',1652168952),(285468,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1490;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=node/129','http://morsea.uniparthenope.it/','10.100.9.116',1652168952),(285469,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1490;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=node/129','http://morsea.uniparthenope.it/','10.100.9.116',1652168952),(285470,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/129','http://morsea.uniparthenope.it/','10.100.9.116',1652168952),(285471,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/129','http://morsea.uniparthenope.it/','10.100.9.116',1652168952),(285472,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/129','http://morsea.uniparthenope.it/','10.100.9.116',1652168952),(285473,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/129','http://morsea.uniparthenope.it/','10.100.9.116',1652168952),(285474,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:39:\"Drupal\\gmap\\GmapDefaults->__construct()\";s:5:\"%file\";s:91:\"/var/www/html/antarctic-drupal-7.31/sites/all/modules/gmap/lib/Drupal/gmap/GmapDefaults.php\";s:5:\"%line\";i:107;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=node/45','http://morsea.uniparthenope.it/?q=node/129','10.100.9.116',1652168963),(285475,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:18:\"drupal_get_feeds()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:394;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=node/45','http://morsea.uniparthenope.it/?q=node/129','10.100.9.116',1652168963),(285476,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:83:\"The each() function is deprecated. This message will be suppressed on further calls\";s:9:\"%function\";s:23:\"menu_set_active_trail()\";s:5:\"%file\";s:53:\"/var/www/html/antarctic-drupal-7.31/includes/menu.inc\";s:5:\"%line\";i:2405;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=node/45','http://morsea.uniparthenope.it/?q=node/129','10.100.9.116',1652168963),(285477,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/45','http://morsea.uniparthenope.it/?q=node/129','10.100.9.116',1652168963),(285478,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/45','http://morsea.uniparthenope.it/?q=node/129','10.100.9.116',1652168963),(285479,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/45','http://morsea.uniparthenope.it/?q=node/129','10.100.9.116',1652168963),(285480,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/45','http://morsea.uniparthenope.it/?q=node/129','10.100.9.116',1652168963),(285481,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/45','http://morsea.uniparthenope.it/?q=node/129','10.100.9.116',1652168963),(285482,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/45','http://morsea.uniparthenope.it/?q=node/129','10.100.9.116',1652168963),(285483,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/45','http://morsea.uniparthenope.it/?q=node/129','10.100.9.116',1652168963),(285484,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/45','http://morsea.uniparthenope.it/?q=node/129','10.100.9.116',1652168963),(285485,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/45','http://morsea.uniparthenope.it/?q=node/129','10.100.9.116',1652168963),(285486,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/45','http://morsea.uniparthenope.it/?q=node/129','10.100.9.116',1652168963),(285487,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/45','http://morsea.uniparthenope.it/?q=node/129','10.100.9.116',1652168963),(285488,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/45','http://morsea.uniparthenope.it/?q=node/129','10.100.9.116',1652168963),(285489,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/45','http://morsea.uniparthenope.it/?q=node/129','10.100.9.116',1652168963),(285490,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/45','http://morsea.uniparthenope.it/?q=node/129','10.100.9.116',1652168963),(285491,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/45','http://morsea.uniparthenope.it/?q=node/129','10.100.9.116',1652168963),(285492,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/45','http://morsea.uniparthenope.it/?q=node/129','10.100.9.116',1652168963),(285493,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/45','http://morsea.uniparthenope.it/?q=node/129','10.100.9.116',1652168963),(285494,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/45','http://morsea.uniparthenope.it/?q=node/129','10.100.9.116',1652168963),(285495,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/45','http://morsea.uniparthenope.it/?q=node/129','10.100.9.116',1652168963),(285496,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/45','http://morsea.uniparthenope.it/?q=node/129','10.100.9.116',1652168963),(285497,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/45','http://morsea.uniparthenope.it/?q=node/129','10.100.9.116',1652168963),(285498,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/45','http://morsea.uniparthenope.it/?q=node/129','10.100.9.116',1652168963),(285499,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/45','http://morsea.uniparthenope.it/?q=node/129','10.100.9.116',1652168963),(285500,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/45','http://morsea.uniparthenope.it/?q=node/129','10.100.9.116',1652168963),(285501,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:5:\"Error\";s:8:\"!message\";s:44:\"Class &#039;SimpleXMLElement&#039; not found\";s:9:\"%function\";s:18:\"update_parse_xml()\";s:5:\"%file\";s:67:\"/var/www/html/antarctic-drupal-7.31/modules/update/update.fetch.inc\";s:5:\"%line\";i:390;s:14:\"severity_level\";i:3;}',3,'','http://morsea.uniparthenope.it/?q=node/45','http://morsea.uniparthenope.it/?q=node/129','10.100.9.116',1652168964),(285502,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1486;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=node/45','http://morsea.uniparthenope.it/?q=node/129','10.100.9.116',1652168964),(285503,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1490;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=node/45','http://morsea.uniparthenope.it/?q=node/129','10.100.9.116',1652168964),(285504,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1490;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=node/45','http://morsea.uniparthenope.it/?q=node/129','10.100.9.116',1652168964),(285505,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1490;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=node/45','http://morsea.uniparthenope.it/?q=node/129','10.100.9.116',1652168964),(285506,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/45','http://morsea.uniparthenope.it/?q=node/129','10.100.9.116',1652168964),(285507,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/45','http://morsea.uniparthenope.it/?q=node/129','10.100.9.116',1652168964),(285508,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/45','http://morsea.uniparthenope.it/?q=node/129','10.100.9.116',1652168964),(285509,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/45','http://morsea.uniparthenope.it/?q=node/129','10.100.9.116',1652168964),(285510,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:39:\"Drupal\\gmap\\GmapDefaults->__construct()\";s:5:\"%file\";s:91:\"/var/www/html/antarctic-drupal-7.31/sites/all/modules/gmap/lib/Drupal/gmap/GmapDefaults.php\";s:5:\"%line\";i:107;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=node/13','http://morsea.uniparthenope.it/?q=node/45','10.100.9.116',1652168969),(285511,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:18:\"drupal_get_feeds()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:394;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=node/13','http://morsea.uniparthenope.it/?q=node/45','10.100.9.116',1652168969),(285512,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:83:\"The each() function is deprecated. This message will be suppressed on further calls\";s:9:\"%function\";s:23:\"menu_set_active_trail()\";s:5:\"%file\";s:53:\"/var/www/html/antarctic-drupal-7.31/includes/menu.inc\";s:5:\"%line\";i:2405;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=node/13','http://morsea.uniparthenope.it/?q=node/45','10.100.9.116',1652168969),(285513,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/13','http://morsea.uniparthenope.it/?q=node/45','10.100.9.116',1652168969),(285514,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/13','http://morsea.uniparthenope.it/?q=node/45','10.100.9.116',1652168969),(285515,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/13','http://morsea.uniparthenope.it/?q=node/45','10.100.9.116',1652168969),(285516,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/13','http://morsea.uniparthenope.it/?q=node/45','10.100.9.116',1652168969),(285517,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/13','http://morsea.uniparthenope.it/?q=node/45','10.100.9.116',1652168969),(285518,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/13','http://morsea.uniparthenope.it/?q=node/45','10.100.9.116',1652168969),(285519,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/13','http://morsea.uniparthenope.it/?q=node/45','10.100.9.116',1652168969),(285520,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/13','http://morsea.uniparthenope.it/?q=node/45','10.100.9.116',1652168969),(285521,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/13','http://morsea.uniparthenope.it/?q=node/45','10.100.9.116',1652168969),(285522,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/13','http://morsea.uniparthenope.it/?q=node/45','10.100.9.116',1652168969),(285523,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/13','http://morsea.uniparthenope.it/?q=node/45','10.100.9.116',1652168969),(285524,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/13','http://morsea.uniparthenope.it/?q=node/45','10.100.9.116',1652168969),(285525,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/13','http://morsea.uniparthenope.it/?q=node/45','10.100.9.116',1652168969),(285526,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/13','http://morsea.uniparthenope.it/?q=node/45','10.100.9.116',1652168969),(285527,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/13','http://morsea.uniparthenope.it/?q=node/45','10.100.9.116',1652168969),(285528,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/13','http://morsea.uniparthenope.it/?q=node/45','10.100.9.116',1652168969),(285529,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/13','http://morsea.uniparthenope.it/?q=node/45','10.100.9.116',1652168969),(285530,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/13','http://morsea.uniparthenope.it/?q=node/45','10.100.9.116',1652168969),(285531,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/13','http://morsea.uniparthenope.it/?q=node/45','10.100.9.116',1652168969),(285532,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/13','http://morsea.uniparthenope.it/?q=node/45','10.100.9.116',1652168969),(285533,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/13','http://morsea.uniparthenope.it/?q=node/45','10.100.9.116',1652168969),(285534,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/13','http://morsea.uniparthenope.it/?q=node/45','10.100.9.116',1652168969),(285535,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/13','http://morsea.uniparthenope.it/?q=node/45','10.100.9.116',1652168969),(285536,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/13','http://morsea.uniparthenope.it/?q=node/45','10.100.9.116',1652168969),(285537,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:5:\"Error\";s:8:\"!message\";s:44:\"Class &#039;SimpleXMLElement&#039; not found\";s:9:\"%function\";s:18:\"update_parse_xml()\";s:5:\"%file\";s:67:\"/var/www/html/antarctic-drupal-7.31/modules/update/update.fetch.inc\";s:5:\"%line\";i:390;s:14:\"severity_level\";i:3;}',3,'','http://morsea.uniparthenope.it/?q=node/13','http://morsea.uniparthenope.it/?q=node/45','10.100.9.116',1652168969),(285538,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1486;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=node/13','http://morsea.uniparthenope.it/?q=node/45','10.100.9.116',1652168969),(285539,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1490;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=node/13','http://morsea.uniparthenope.it/?q=node/45','10.100.9.116',1652168969),(285540,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1490;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=node/13','http://morsea.uniparthenope.it/?q=node/45','10.100.9.116',1652168969),(285541,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1490;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=node/13','http://morsea.uniparthenope.it/?q=node/45','10.100.9.116',1652168969),(285542,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/13','http://morsea.uniparthenope.it/?q=node/45','10.100.9.116',1652168969),(285543,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/13','http://morsea.uniparthenope.it/?q=node/45','10.100.9.116',1652168969),(285544,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/13','http://morsea.uniparthenope.it/?q=node/45','10.100.9.116',1652168969),(285545,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/13','http://morsea.uniparthenope.it/?q=node/45','10.100.9.116',1652168969),(285546,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:39:\"Drupal\\gmap\\GmapDefaults->__construct()\";s:5:\"%file\";s:91:\"/var/www/html/antarctic-drupal-7.31/sites/all/modules/gmap/lib/Drupal/gmap/GmapDefaults.php\";s:5:\"%line\";i:107;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/?q=node/13','10.100.9.116',1652168972),(285547,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:18:\"drupal_get_feeds()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:394;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/?q=node/13','10.100.9.116',1652168972),(285548,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:83:\"The each() function is deprecated. This message will be suppressed on further calls\";s:9:\"%function\";s:23:\"menu_set_active_trail()\";s:5:\"%file\";s:53:\"/var/www/html/antarctic-drupal-7.31/includes/menu.inc\";s:5:\"%line\";i:2405;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/?q=node/13','10.100.9.116',1652168972),(285549,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/?q=node/13','10.100.9.116',1652168972),(285550,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/?q=node/13','10.100.9.116',1652168972),(285551,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/?q=node/13','10.100.9.116',1652168972),(285552,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/?q=node/13','10.100.9.116',1652168972),(285553,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/?q=node/13','10.100.9.116',1652168972),(285554,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/?q=node/13','10.100.9.116',1652168972),(285555,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/?q=node/13','10.100.9.116',1652168972),(285556,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/?q=node/13','10.100.9.116',1652168972),(285557,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/?q=node/13','10.100.9.116',1652168972),(285558,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/?q=node/13','10.100.9.116',1652168972),(285559,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/?q=node/13','10.100.9.116',1652168972),(285560,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/?q=node/13','10.100.9.116',1652168972),(285561,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/?q=node/13','10.100.9.116',1652168972),(285562,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/?q=node/13','10.100.9.116',1652168972),(285563,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/?q=node/13','10.100.9.116',1652168972),(285564,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/?q=node/13','10.100.9.116',1652168972),(285565,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/?q=node/13','10.100.9.116',1652168972),(285566,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/?q=node/13','10.100.9.116',1652168972),(285567,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/?q=node/13','10.100.9.116',1652168972),(285568,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/?q=node/13','10.100.9.116',1652168972),(285569,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/?q=node/13','10.100.9.116',1652168972),(285570,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/?q=node/13','10.100.9.116',1652168972),(285571,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/?q=node/13','10.100.9.116',1652168972),(285572,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/?q=node/13','10.100.9.116',1652168972),(285573,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:5:\"Error\";s:8:\"!message\";s:44:\"Class &#039;SimpleXMLElement&#039; not found\";s:9:\"%function\";s:18:\"update_parse_xml()\";s:5:\"%file\";s:67:\"/var/www/html/antarctic-drupal-7.31/modules/update/update.fetch.inc\";s:5:\"%line\";i:390;s:14:\"severity_level\";i:3;}',3,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/?q=node/13','10.100.9.116',1652168972),(285574,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1486;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/?q=node/13','10.100.9.116',1652168972),(285575,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1490;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/?q=node/13','10.100.9.116',1652168972),(285576,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1490;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/?q=node/13','10.100.9.116',1652168972),(285577,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1490;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/?q=node/13','10.100.9.116',1652168972),(285578,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/?q=node/13','10.100.9.116',1652168972),(285579,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/?q=node/13','10.100.9.116',1652168972),(285580,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/?q=node/13','10.100.9.116',1652168972),(285581,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/?q=node/13','10.100.9.116',1652168972),(285582,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:39:\"Drupal\\gmap\\GmapDefaults->__construct()\";s:5:\"%file\";s:91:\"/var/www/html/antarctic-drupal-7.31/sites/all/modules/gmap/lib/Drupal/gmap/GmapDefaults.php\";s:5:\"%line\";i:107;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652168998),(285583,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:18:\"drupal_get_feeds()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:394;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652168998),(285584,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:83:\"The each() function is deprecated. This message will be suppressed on further calls\";s:9:\"%function\";s:23:\"menu_set_active_trail()\";s:5:\"%file\";s:53:\"/var/www/html/antarctic-drupal-7.31/includes/menu.inc\";s:5:\"%line\";i:2405;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652168998),(285585,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652168998),(285586,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652168998),(285587,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652168998),(285588,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652168998),(285589,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652168998),(285590,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652168998),(285591,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652168998),(285592,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652168998),(285593,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652168998),(285594,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652168998),(285595,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652168998),(285596,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652168998),(285597,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652168998),(285598,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652168998),(285599,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652168998),(285600,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652168998),(285601,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652168998),(285602,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652168998),(285603,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652168998),(285604,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652168998),(285605,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652168998),(285606,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652168998),(285607,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652168998),(285608,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652168998),(285609,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:5:\"Error\";s:8:\"!message\";s:44:\"Class &#039;SimpleXMLElement&#039; not found\";s:9:\"%function\";s:18:\"update_parse_xml()\";s:5:\"%file\";s:67:\"/var/www/html/antarctic-drupal-7.31/modules/update/update.fetch.inc\";s:5:\"%line\";i:390;s:14:\"severity_level\";i:3;}',3,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652168998),(285610,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1486;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652168998),(285611,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1490;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652168998),(285612,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1490;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652168998),(285613,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1490;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652168998),(285614,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652168998),(285615,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652168998),(285616,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652168998),(285617,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652168998),(285618,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:39:\"Drupal\\gmap\\GmapDefaults->__construct()\";s:5:\"%file\";s:91:\"/var/www/html/antarctic-drupal-7.31/sites/all/modules/gmap/lib/Drupal/gmap/GmapDefaults.php\";s:5:\"%line\";i:107;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169367),(285619,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:18:\"drupal_get_feeds()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:394;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169367),(285620,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:83:\"The each() function is deprecated. This message will be suppressed on further calls\";s:9:\"%function\";s:23:\"menu_set_active_trail()\";s:5:\"%file\";s:53:\"/var/www/html/antarctic-drupal-7.31/includes/menu.inc\";s:5:\"%line\";i:2405;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169367),(285621,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169368),(285622,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169368),(285623,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169368),(285624,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169368),(285625,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169368),(285626,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169368),(285627,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169368),(285628,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169368),(285629,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169368),(285630,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169368),(285631,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169368),(285632,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169368),(285633,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169368),(285634,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169368),(285635,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169368),(285636,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169368),(285637,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169368),(285638,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169368),(285639,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169368),(285640,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169368),(285641,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169368),(285642,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169368),(285643,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169368),(285644,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169368),(285645,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:5:\"Error\";s:8:\"!message\";s:44:\"Class &#039;SimpleXMLElement&#039; not found\";s:9:\"%function\";s:18:\"update_parse_xml()\";s:5:\"%file\";s:67:\"/var/www/html/antarctic-drupal-7.31/modules/update/update.fetch.inc\";s:5:\"%line\";i:390;s:14:\"severity_level\";i:3;}',3,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169368),(285646,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1486;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169368),(285647,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1490;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169368),(285648,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1490;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169368),(285649,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1490;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169368),(285650,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169368),(285651,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169368),(285652,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169368),(285653,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169368),(285654,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:39:\"Drupal\\gmap\\GmapDefaults->__construct()\";s:5:\"%file\";s:91:\"/var/www/html/antarctic-drupal-7.31/sites/all/modules/gmap/lib/Drupal/gmap/GmapDefaults.php\";s:5:\"%line\";i:107;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169371),(285655,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:18:\"drupal_get_feeds()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:394;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169371),(285656,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169371),(285657,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169371),(285658,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169371),(285659,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169371),(285660,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169371),(285661,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169371),(285662,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169371),(285663,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169371),(285664,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169371),(285665,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169371),(285666,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169371),(285667,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169371),(285668,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169371),(285669,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169371),(285670,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169371),(285671,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169371),(285672,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169371),(285673,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169371),(285674,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169371),(285675,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169371),(285676,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169371),(285677,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169371),(285678,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:5:\"Error\";s:8:\"!message\";s:44:\"Class &#039;SimpleXMLElement&#039; not found\";s:9:\"%function\";s:18:\"update_parse_xml()\";s:5:\"%file\";s:67:\"/var/www/html/antarctic-drupal-7.31/modules/update/update.fetch.inc\";s:5:\"%line\";i:390;s:14:\"severity_level\";i:3;}',3,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169371),(285679,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1486;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169371),(285680,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1490;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169371),(285681,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169371),(285682,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169371),(285683,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169371),(285684,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169371),(285685,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:83:\"The each() function is deprecated. This message will be suppressed on further calls\";s:9:\"%function\";s:27:\"_drupal_shutdown_function()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:3788;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652169371),(285686,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:39:\"Drupal\\gmap\\GmapDefaults->__construct()\";s:5:\"%file\";s:91:\"/var/www/html/antarctic-drupal-7.31/sites/all/modules/gmap/lib/Drupal/gmap/GmapDefaults.php\";s:5:\"%line\";i:107;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/','10.100.9.116',1652169495),(285687,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:18:\"drupal_get_feeds()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:394;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/','10.100.9.116',1652169496),(285688,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:83:\"The each() function is deprecated. This message will be suppressed on further calls\";s:9:\"%function\";s:23:\"menu_set_active_trail()\";s:5:\"%file\";s:53:\"/var/www/html/antarctic-drupal-7.31/includes/menu.inc\";s:5:\"%line\";i:2405;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/','10.100.9.116',1652169496),(285689,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/','10.100.9.116',1652169496),(285690,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/','10.100.9.116',1652169496),(285691,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/','10.100.9.116',1652169496),(285692,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/','10.100.9.116',1652169496),(285693,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/','10.100.9.116',1652169496),(285694,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/','10.100.9.116',1652169496),(285695,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/','10.100.9.116',1652169496),(285696,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/','10.100.9.116',1652169496),(285697,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/','10.100.9.116',1652169496),(285698,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/','10.100.9.116',1652169496),(285699,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/','10.100.9.116',1652169496),(285700,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/','10.100.9.116',1652169496),(285701,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/','10.100.9.116',1652169496),(285702,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/','10.100.9.116',1652169496),(285703,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/','10.100.9.116',1652169496),(285704,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/','10.100.9.116',1652169496),(285705,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/','10.100.9.116',1652169496),(285706,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/','10.100.9.116',1652169496),(285707,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/','10.100.9.116',1652169496),(285708,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/','10.100.9.116',1652169496),(285709,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/','10.100.9.116',1652169496),(285710,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/','10.100.9.116',1652169496),(285711,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/','10.100.9.116',1652169496),(285712,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/','10.100.9.116',1652169496),(285713,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:5:\"Error\";s:8:\"!message\";s:44:\"Class &#039;SimpleXMLElement&#039; not found\";s:9:\"%function\";s:18:\"update_parse_xml()\";s:5:\"%file\";s:67:\"/var/www/html/antarctic-drupal-7.31/modules/update/update.fetch.inc\";s:5:\"%line\";i:390;s:14:\"severity_level\";i:3;}',3,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/','10.100.9.116',1652169496),(285714,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1486;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/','10.100.9.116',1652169496),(285715,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1490;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/','10.100.9.116',1652169496),(285716,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1490;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/','10.100.9.116',1652169496),(285717,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1490;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/','10.100.9.116',1652169496),(285718,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/','10.100.9.116',1652169496),(285719,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/','10.100.9.116',1652169496),(285720,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/','10.100.9.116',1652169496),(285721,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/33','http://morsea.uniparthenope.it/','10.100.9.116',1652169496),(285722,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:39:\"Drupal\\gmap\\GmapDefaults->__construct()\";s:5:\"%file\";s:91:\"/var/www/html/antarctic-drupal-7.31/sites/all/modules/gmap/lib/Drupal/gmap/GmapDefaults.php\";s:5:\"%line\";i:107;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/','10.100.9.116',1652169503),(285723,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:18:\"drupal_get_feeds()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:394;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/','10.100.9.116',1652169503),(285724,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/','10.100.9.116',1652169503),(285725,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/','10.100.9.116',1652169503),(285726,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/','10.100.9.116',1652169504),(285727,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/','10.100.9.116',1652169504),(285728,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/','10.100.9.116',1652169504),(285729,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/','10.100.9.116',1652169504),(285730,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/','10.100.9.116',1652169504),(285731,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/','10.100.9.116',1652169504),(285732,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/','10.100.9.116',1652169504),(285733,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/','10.100.9.116',1652169504),(285734,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/','10.100.9.116',1652169504),(285735,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/','10.100.9.116',1652169504),(285736,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/','10.100.9.116',1652169504),(285737,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/','10.100.9.116',1652169504),(285738,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/','10.100.9.116',1652169504),(285739,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/','10.100.9.116',1652169504),(285740,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/','10.100.9.116',1652169504),(285741,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/','10.100.9.116',1652169504),(285742,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/','10.100.9.116',1652169504),(285743,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/','10.100.9.116',1652169504),(285744,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/','10.100.9.116',1652169504),(285745,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/','10.100.9.116',1652169504),(285746,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:5:\"Error\";s:8:\"!message\";s:44:\"Class &#039;SimpleXMLElement&#039; not found\";s:9:\"%function\";s:18:\"update_parse_xml()\";s:5:\"%file\";s:67:\"/var/www/html/antarctic-drupal-7.31/modules/update/update.fetch.inc\";s:5:\"%line\";i:390;s:14:\"severity_level\";i:3;}',3,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/','10.100.9.116',1652169504),(285747,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1486;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/','10.100.9.116',1652169504),(285748,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1490;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/','10.100.9.116',1652169504),(285749,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/','10.100.9.116',1652169504),(285750,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/','10.100.9.116',1652169504),(285751,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/','10.100.9.116',1652169504),(285752,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/','10.100.9.116',1652169504),(285753,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:83:\"The each() function is deprecated. This message will be suppressed on further calls\";s:9:\"%function\";s:27:\"_drupal_shutdown_function()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:3788;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/','10.100.9.116',1652169504),(285754,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:39:\"Drupal\\gmap\\GmapDefaults->__construct()\";s:5:\"%file\";s:91:\"/var/www/html/antarctic-drupal-7.31/sites/all/modules/gmap/lib/Drupal/gmap/GmapDefaults.php\";s:5:\"%line\";i:107;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=user','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285755,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:74:\"count(): Parameter must be an array or an object that implements Countable\";s:9:\"%function\";s:16:\"_form_validate()\";s:5:\"%file\";s:53:\"/var/www/html/antarctic-drupal-7.31/includes/form.inc\";s:5:\"%line\";i:1441;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=user','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285756,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:74:\"count(): Parameter must be an array or an object that implements Countable\";s:9:\"%function\";s:16:\"_form_validate()\";s:5:\"%file\";s:53:\"/var/www/html/antarctic-drupal-7.31/includes/form.inc\";s:5:\"%line\";i:1441;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=user','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285757,1,'user','Session opened for %name.','a:1:{s:5:\"%name\";s:5:\"admin\";}',5,'','http://morsea.uniparthenope.it/?q=user','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285758,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:61:\"session_id(): Cannot change session id when session is active\";s:9:\"%function\";s:27:\"drupal_session_regenerate()\";s:5:\"%file\";s:56:\"/var/www/html/antarctic-drupal-7.31/includes/session.inc\";s:5:\"%line\";i:375;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=user','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285759,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:83:\"The each() function is deprecated. This message will be suppressed on further calls\";s:9:\"%function\";s:27:\"_drupal_shutdown_function()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:3788;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=user','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285760,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:39:\"Drupal\\gmap\\GmapDefaults->__construct()\";s:5:\"%file\";s:91:\"/var/www/html/antarctic-drupal-7.31/sites/all/modules/gmap/lib/Drupal/gmap/GmapDefaults.php\";s:5:\"%line\";i:107;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285761,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:18:\"drupal_get_feeds()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:394;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285762,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:83:\"The each() function is deprecated. This message will be suppressed on further calls\";s:9:\"%function\";s:20:\"_menu_load_objects()\";s:5:\"%file\";s:53:\"/var/www/html/antarctic-drupal-7.31/includes/menu.inc\";s:5:\"%line\";i:579;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285763,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285764,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285765,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285766,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285767,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285768,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285769,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285770,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285771,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285772,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285773,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285774,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285775,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285776,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285777,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285778,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285779,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285780,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285781,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285782,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285783,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285784,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285785,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285786,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285787,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285788,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285789,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285790,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285791,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285792,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285793,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285794,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285795,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285796,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285797,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285798,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285799,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:5:\"Error\";s:8:\"!message\";s:44:\"Class &#039;SimpleXMLElement&#039; not found\";s:9:\"%function\";s:18:\"update_parse_xml()\";s:5:\"%file\";s:67:\"/var/www/html/antarctic-drupal-7.31/modules/update/update.fetch.inc\";s:5:\"%line\";i:390;s:14:\"severity_level\";i:3;}',3,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285800,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1486;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285801,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1490;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285802,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285803,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285804,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285805,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285806,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','192.168.241.80',1652169571),(285807,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:39:\"Drupal\\gmap\\GmapDefaults->__construct()\";s:5:\"%file\";s:91:\"/var/www/html/antarctic-drupal-7.31/sites/all/modules/gmap/lib/Drupal/gmap/GmapDefaults.php\";s:5:\"%line\";i:107;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169578),(285808,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169578),(285809,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169578),(285810,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169578),(285811,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169578),(285812,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169578),(285813,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:18:\"drupal_get_feeds()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:394;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169578),(285814,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:83:\"The each() function is deprecated. This message will be suppressed on further calls\";s:9:\"%function\";s:20:\"_menu_load_objects()\";s:5:\"%file\";s:53:\"/var/www/html/antarctic-drupal-7.31/includes/menu.inc\";s:5:\"%line\";i:579;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169578),(285815,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169578),(285816,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169578),(285817,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169578),(285818,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169578),(285819,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169578),(285820,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169578),(285821,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169578),(285822,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169578),(285823,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169578),(285824,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169578),(285825,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169578),(285826,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169578),(285827,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169578),(285828,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169578),(285829,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169578),(285830,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169578),(285831,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169578),(285832,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169578),(285833,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:5:\"Error\";s:8:\"!message\";s:44:\"Class &#039;SimpleXMLElement&#039; not found\";s:9:\"%function\";s:18:\"update_parse_xml()\";s:5:\"%file\";s:67:\"/var/www/html/antarctic-drupal-7.31/modules/update/update.fetch.inc\";s:5:\"%line\";i:390;s:14:\"severity_level\";i:3;}',3,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169579),(285834,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1486;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169579),(285835,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1490;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169579),(285836,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169579),(285837,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169579),(285838,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169579),(285839,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169579),(285840,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169579),(285841,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169579),(285842,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169579),(285843,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169579),(285844,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:39:\"Drupal\\gmap\\GmapDefaults->__construct()\";s:5:\"%file\";s:91:\"/var/www/html/antarctic-drupal-7.31/sites/all/modules/gmap/lib/Drupal/gmap/GmapDefaults.php\";s:5:\"%line\";i:107;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169618),(285845,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169618),(285846,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169618),(285847,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169618),(285848,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169618),(285849,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169618),(285850,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:18:\"drupal_get_feeds()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:394;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169618),(285851,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:83:\"The each() function is deprecated. This message will be suppressed on further calls\";s:9:\"%function\";s:20:\"_menu_load_objects()\";s:5:\"%file\";s:53:\"/var/www/html/antarctic-drupal-7.31/includes/menu.inc\";s:5:\"%line\";i:579;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169618),(285852,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169618),(285853,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169618),(285854,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169618),(285855,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169618),(285856,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169618),(285857,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169618),(285858,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169618),(285859,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169618),(285860,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169618),(285861,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169618),(285862,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169618),(285863,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169618),(285864,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169618),(285865,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169618),(285866,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169618),(285867,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169618),(285868,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169618),(285869,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169618),(285870,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:5:\"Error\";s:8:\"!message\";s:44:\"Class &#039;SimpleXMLElement&#039; not found\";s:9:\"%function\";s:18:\"update_parse_xml()\";s:5:\"%file\";s:67:\"/var/www/html/antarctic-drupal-7.31/modules/update/update.fetch.inc\";s:5:\"%line\";i:390;s:14:\"severity_level\";i:3;}',3,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169618),(285871,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1486;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169618),(285872,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1490;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169618),(285873,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169618),(285874,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169618),(285875,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169618),(285876,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169618),(285877,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169618),(285878,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169618),(285879,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169618),(285880,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user%2F1%2Fedit&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169618),(285881,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:5:\"Error\";s:8:\"!message\";s:39:\"Class &#039;DOMDocument&#039; not found\";s:9:\"%function\";s:17:\"filter_dom_load()\";s:5:\"%file\";s:64:\"/var/www/html/antarctic-drupal-7.31/modules/filter/filter.module\";s:5:\"%line\";i:1105;s:14:\"severity_level\";i:3;}',3,'','http://morsea.uniparthenope.it/?q=node/131','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169823),(285882,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:39:\"Drupal\\gmap\\GmapDefaults->__construct()\";s:5:\"%file\";s:91:\"/var/www/html/antarctic-drupal-7.31/sites/all/modules/gmap/lib/Drupal/gmap/GmapDefaults.php\";s:5:\"%line\";i:107;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=node/131','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169823),(285883,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/131','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169823),(285884,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:83:\"The each() function is deprecated. This message will be suppressed on further calls\";s:9:\"%function\";s:27:\"_drupal_shutdown_function()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:3788;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=node/131','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652169823),(285885,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:39:\"Drupal\\gmap\\GmapDefaults->__construct()\";s:5:\"%file\";s:91:\"/var/www/html/antarctic-drupal-7.31/sites/all/modules/gmap/lib/Drupal/gmap/GmapDefaults.php\";s:5:\"%line\";i:107;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652170038),(285886,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:18:\"drupal_get_feeds()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:394;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652170038),(285887,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:83:\"The each() function is deprecated. This message will be suppressed on further calls\";s:9:\"%function\";s:23:\"menu_set_active_trail()\";s:5:\"%file\";s:53:\"/var/www/html/antarctic-drupal-7.31/includes/menu.inc\";s:5:\"%line\";i:2405;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652170038),(285888,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652170038),(285889,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652170038),(285890,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652170038),(285891,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652170038),(285892,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652170038),(285893,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652170038),(285894,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652170038),(285895,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652170038),(285896,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652170038),(285897,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652170038),(285898,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652170038),(285899,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652170038),(285900,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652170038),(285901,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652170038),(285902,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652170038),(285903,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652170038),(285904,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652170038),(285905,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652170038),(285906,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652170038),(285907,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652170038),(285908,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652170038),(285909,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652170038),(285910,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652170038),(285911,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652170038),(285912,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:5:\"Error\";s:8:\"!message\";s:44:\"Class &#039;SimpleXMLElement&#039; not found\";s:9:\"%function\";s:18:\"update_parse_xml()\";s:5:\"%file\";s:67:\"/var/www/html/antarctic-drupal-7.31/modules/update/update.fetch.inc\";s:5:\"%line\";i:390;s:14:\"severity_level\";i:3;}',3,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652170038),(285913,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1486;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652170038),(285914,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1490;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652170038),(285915,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1490;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652170038),(285916,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1490;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652170038),(285917,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652170038),(285918,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652170038),(285919,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652170038),(285920,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/82','http://morsea.uniparthenope.it/?q=node/33','10.100.9.116',1652170038),(285921,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:39:\"Drupal\\gmap\\GmapDefaults->__construct()\";s:5:\"%file\";s:91:\"/var/www/html/antarctic-drupal-7.31/sites/all/modules/gmap/lib/Drupal/gmap/GmapDefaults.php\";s:5:\"%line\";i:107;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652170040),(285922,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:18:\"drupal_get_feeds()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:394;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652170040),(285923,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652170040),(285924,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652170040),(285925,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652170040),(285926,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652170040),(285927,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652170040),(285928,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652170040),(285929,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652170040),(285930,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652170040),(285931,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652170040),(285932,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652170040),(285933,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652170040),(285934,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652170040),(285935,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652170040),(285936,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652170040),(285937,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652170040),(285938,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652170040),(285939,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652170040),(285940,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652170040),(285941,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652170040),(285942,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652170040),(285943,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652170040),(285944,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652170040),(285945,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:5:\"Error\";s:8:\"!message\";s:44:\"Class &#039;SimpleXMLElement&#039; not found\";s:9:\"%function\";s:18:\"update_parse_xml()\";s:5:\"%file\";s:67:\"/var/www/html/antarctic-drupal-7.31/modules/update/update.fetch.inc\";s:5:\"%line\";i:390;s:14:\"severity_level\";i:3;}',3,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652170041),(285946,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1486;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652170041),(285947,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1490;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652170041),(285948,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652170041),(285949,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652170041),(285950,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652170041),(285951,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652170041),(285952,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:83:\"The each() function is deprecated. This message will be suppressed on further calls\";s:9:\"%function\";s:27:\"_drupal_shutdown_function()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:3788;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=node/82','10.100.9.116',1652170041),(285953,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:39:\"Drupal\\gmap\\GmapDefaults->__construct()\";s:5:\"%file\";s:91:\"/var/www/html/antarctic-drupal-7.31/sites/all/modules/gmap/lib/Drupal/gmap/GmapDefaults.php\";s:5:\"%line\";i:107;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=user','http://morsea.uniparthenope.it/','10.100.9.116',1652170048),(285954,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:74:\"count(): Parameter must be an array or an object that implements Countable\";s:9:\"%function\";s:16:\"_form_validate()\";s:5:\"%file\";s:53:\"/var/www/html/antarctic-drupal-7.31/includes/form.inc\";s:5:\"%line\";i:1441;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=user','http://morsea.uniparthenope.it/','10.100.9.116',1652170048),(285955,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:74:\"count(): Parameter must be an array or an object that implements Countable\";s:9:\"%function\";s:16:\"_form_validate()\";s:5:\"%file\";s:53:\"/var/www/html/antarctic-drupal-7.31/includes/form.inc\";s:5:\"%line\";i:1441;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=user','http://morsea.uniparthenope.it/','10.100.9.116',1652170048),(285956,1,'user','Session opened for %name.','a:1:{s:5:\"%name\";s:5:\"admin\";}',5,'','http://morsea.uniparthenope.it/?q=user','http://morsea.uniparthenope.it/','10.100.9.116',1652170048),(285957,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:61:\"session_id(): Cannot change session id when session is active\";s:9:\"%function\";s:27:\"drupal_session_regenerate()\";s:5:\"%file\";s:56:\"/var/www/html/antarctic-drupal-7.31/includes/session.inc\";s:5:\"%line\";i:375;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=user','http://morsea.uniparthenope.it/','10.100.9.116',1652170048),(285958,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:83:\"The each() function is deprecated. This message will be suppressed on further calls\";s:9:\"%function\";s:27:\"_drupal_shutdown_function()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:3788;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=user','http://morsea.uniparthenope.it/','10.100.9.116',1652170048),(285959,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:39:\"Drupal\\gmap\\GmapDefaults->__construct()\";s:5:\"%file\";s:91:\"/var/www/html/antarctic-drupal-7.31/sites/all/modules/gmap/lib/Drupal/gmap/GmapDefaults.php\";s:5:\"%line\";i:107;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','10.100.9.116',1652170048),(285960,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:18:\"drupal_get_feeds()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:394;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','10.100.9.116',1652170049),(285961,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:83:\"The each() function is deprecated. This message will be suppressed on further calls\";s:9:\"%function\";s:20:\"_menu_load_objects()\";s:5:\"%file\";s:53:\"/var/www/html/antarctic-drupal-7.31/includes/menu.inc\";s:5:\"%line\";i:579;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','10.100.9.116',1652170049),(285962,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','10.100.9.116',1652170049),(285963,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','10.100.9.116',1652170049),(285964,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','10.100.9.116',1652170049),(285965,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','10.100.9.116',1652170049),(285966,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','10.100.9.116',1652170049),(285967,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','10.100.9.116',1652170049),(285968,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','10.100.9.116',1652170049),(285969,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','10.100.9.116',1652170049),(285970,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','10.100.9.116',1652170049),(285971,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','10.100.9.116',1652170049),(285972,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','10.100.9.116',1652170049),(285973,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','10.100.9.116',1652170049),(285974,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','10.100.9.116',1652170049),(285975,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','10.100.9.116',1652170049),(285976,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','10.100.9.116',1652170049),(285977,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','10.100.9.116',1652170049),(285978,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','10.100.9.116',1652170049),(285979,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','10.100.9.116',1652170049),(285980,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','10.100.9.116',1652170049),(285981,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','10.100.9.116',1652170049),(285982,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','10.100.9.116',1652170049),(285983,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','10.100.9.116',1652170049),(285984,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','10.100.9.116',1652170049),(285985,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','10.100.9.116',1652170049),(285986,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','10.100.9.116',1652170049),(285987,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','10.100.9.116',1652170049),(285988,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','10.100.9.116',1652170049),(285989,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','10.100.9.116',1652170049),(285990,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','10.100.9.116',1652170049),(285991,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','10.100.9.116',1652170049),(285992,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','10.100.9.116',1652170049),(285993,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','10.100.9.116',1652170049),(285994,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','10.100.9.116',1652170049),(285995,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','10.100.9.116',1652170049),(285996,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','10.100.9.116',1652170049),(285997,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','10.100.9.116',1652170049),(285998,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:5:\"Error\";s:8:\"!message\";s:44:\"Class &#039;SimpleXMLElement&#039; not found\";s:9:\"%function\";s:18:\"update_parse_xml()\";s:5:\"%file\";s:67:\"/var/www/html/antarctic-drupal-7.31/modules/update/update.fetch.inc\";s:5:\"%line\";i:390;s:14:\"severity_level\";i:3;}',3,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','10.100.9.116',1652170049),(285999,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1486;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','10.100.9.116',1652170049),(286000,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1490;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','10.100.9.116',1652170049),(286001,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','10.100.9.116',1652170049),(286002,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','10.100.9.116',1652170049),(286003,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','10.100.9.116',1652170049),(286004,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','10.100.9.116',1652170049),(286005,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/','10.100.9.116',1652170049),(286006,1,'user','Session closed for %name.','a:1:{s:5:\"%name\";s:5:\"admin\";}',5,'','http://morsea.uniparthenope.it/?q=user/logout','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170054),(286007,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:83:\"The each() function is deprecated. This message will be suppressed on further calls\";s:9:\"%function\";s:27:\"_drupal_shutdown_function()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:3788;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=user/logout','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170054),(286008,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:39:\"Drupal\\gmap\\GmapDefaults->__construct()\";s:5:\"%file\";s:91:\"/var/www/html/antarctic-drupal-7.31/sites/all/modules/gmap/lib/Drupal/gmap/GmapDefaults.php\";s:5:\"%line\";i:107;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170054),(286009,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:18:\"drupal_get_feeds()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:394;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170054),(286010,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170054),(286011,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170054),(286012,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170054),(286013,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170054),(286014,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170054),(286015,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170054),(286016,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170054),(286017,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170054),(286018,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170054),(286019,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170054),(286020,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170054),(286021,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170054),(286022,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170054),(286023,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170054),(286024,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170054),(286025,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170054),(286026,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170054),(286027,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170054),(286028,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170054),(286029,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170054),(286030,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170054),(286031,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170054),(286032,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:5:\"Error\";s:8:\"!message\";s:44:\"Class &#039;SimpleXMLElement&#039; not found\";s:9:\"%function\";s:18:\"update_parse_xml()\";s:5:\"%file\";s:67:\"/var/www/html/antarctic-drupal-7.31/modules/update/update.fetch.inc\";s:5:\"%line\";i:390;s:14:\"severity_level\";i:3;}',3,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170055),(286033,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1486;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170055),(286034,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1490;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170055),(286035,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170055),(286036,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170055),(286037,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170055),(286038,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170055),(286039,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:83:\"The each() function is deprecated. This message will be suppressed on further calls\";s:9:\"%function\";s:27:\"_drupal_shutdown_function()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:3788;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170055),(286040,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:5:\"Error\";s:8:\"!message\";s:39:\"Class &#039;DOMDocument&#039; not found\";s:9:\"%function\";s:17:\"filter_dom_load()\";s:5:\"%file\";s:64:\"/var/www/html/antarctic-drupal-7.31/modules/filter/filter.module\";s:5:\"%line\";i:1105;s:14:\"severity_level\";i:3;}',3,'','http://morsea.uniparthenope.it/?q=node/131','http://morsea.uniparthenope.it/','10.100.9.116',1652170058),(286041,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:39:\"Drupal\\gmap\\GmapDefaults->__construct()\";s:5:\"%file\";s:91:\"/var/www/html/antarctic-drupal-7.31/sites/all/modules/gmap/lib/Drupal/gmap/GmapDefaults.php\";s:5:\"%line\";i:107;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=node/131','http://morsea.uniparthenope.it/','10.100.9.116',1652170058),(286042,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/131','http://morsea.uniparthenope.it/','10.100.9.116',1652170058),(286043,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:83:\"The each() function is deprecated. This message will be suppressed on further calls\";s:9:\"%function\";s:27:\"_drupal_shutdown_function()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:3788;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=node/131','http://morsea.uniparthenope.it/','10.100.9.116',1652170058),(286044,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:39:\"Drupal\\gmap\\GmapDefaults->__construct()\";s:5:\"%file\";s:91:\"/var/www/html/antarctic-drupal-7.31/sites/all/modules/gmap/lib/Drupal/gmap/GmapDefaults.php\";s:5:\"%line\";i:107;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286045,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:18:\"drupal_get_feeds()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:394;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286046,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:39:\"Drupal\\gmap\\GmapDefaults->__construct()\";s:5:\"%file\";s:91:\"/var/www/html/antarctic-drupal-7.31/sites/all/modules/gmap/lib/Drupal/gmap/GmapDefaults.php\";s:5:\"%line\";i:107;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286047,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:83:\"The each() function is deprecated. This message will be suppressed on further calls\";s:9:\"%function\";s:23:\"menu_set_active_trail()\";s:5:\"%file\";s:53:\"/var/www/html/antarctic-drupal-7.31/includes/menu.inc\";s:5:\"%line\";i:2405;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286048,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286049,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286050,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286051,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286052,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286053,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286054,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286055,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286056,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286057,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:18:\"drupal_get_feeds()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:394;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286058,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286059,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286060,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286061,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286062,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286063,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286064,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286065,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286066,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286067,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:83:\"The each() function is deprecated. This message will be suppressed on further calls\";s:9:\"%function\";s:23:\"menu_set_active_trail()\";s:5:\"%file\";s:53:\"/var/www/html/antarctic-drupal-7.31/includes/menu.inc\";s:5:\"%line\";i:2405;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286068,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286069,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286070,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286071,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286072,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286073,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286074,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286075,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286076,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286077,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286078,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286079,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286080,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286081,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286082,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286083,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286084,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286085,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286086,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286087,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286088,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286089,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286090,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286091,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286092,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286093,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286094,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286095,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286096,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286097,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286098,0,'cron','Attempting to re-run cron while it is already running.','a:0:{}',4,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286099,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:5:\"Error\";s:8:\"!message\";s:44:\"Class &#039;SimpleXMLElement&#039; not found\";s:9:\"%function\";s:18:\"update_parse_xml()\";s:5:\"%file\";s:67:\"/var/www/html/antarctic-drupal-7.31/modules/update/update.fetch.inc\";s:5:\"%line\";i:390;s:14:\"severity_level\";i:3;}',3,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286100,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1486;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286101,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1490;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286102,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1490;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286103,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1490;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286104,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286105,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286106,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286107,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/46','http://morsea.uniparthenope.it/','10.100.9.116',1652170063),(286108,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:39:\"Drupal\\gmap\\GmapDefaults->__construct()\";s:5:\"%file\";s:91:\"/var/www/html/antarctic-drupal-7.31/sites/all/modules/gmap/lib/Drupal/gmap/GmapDefaults.php\";s:5:\"%line\";i:107;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=user','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170068),(286109,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:74:\"count(): Parameter must be an array or an object that implements Countable\";s:9:\"%function\";s:16:\"_form_validate()\";s:5:\"%file\";s:53:\"/var/www/html/antarctic-drupal-7.31/includes/form.inc\";s:5:\"%line\";i:1441;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=user','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170068),(286110,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:74:\"count(): Parameter must be an array or an object that implements Countable\";s:9:\"%function\";s:16:\"_form_validate()\";s:5:\"%file\";s:53:\"/var/www/html/antarctic-drupal-7.31/includes/form.inc\";s:5:\"%line\";i:1441;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=user','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170068),(286111,1,'user','Session opened for %name.','a:1:{s:5:\"%name\";s:5:\"admin\";}',5,'','http://morsea.uniparthenope.it/?q=user','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170068),(286112,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:61:\"session_id(): Cannot change session id when session is active\";s:9:\"%function\";s:27:\"drupal_session_regenerate()\";s:5:\"%file\";s:56:\"/var/www/html/antarctic-drupal-7.31/includes/session.inc\";s:5:\"%line\";i:375;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=user','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170068),(286113,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:83:\"The each() function is deprecated. This message will be suppressed on further calls\";s:9:\"%function\";s:27:\"_drupal_shutdown_function()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:3788;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=user','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170068),(286114,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:39:\"Drupal\\gmap\\GmapDefaults->__construct()\";s:5:\"%file\";s:91:\"/var/www/html/antarctic-drupal-7.31/sites/all/modules/gmap/lib/Drupal/gmap/GmapDefaults.php\";s:5:\"%line\";i:107;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170068),(286115,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:18:\"drupal_get_feeds()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:394;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170068),(286116,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:83:\"The each() function is deprecated. This message will be suppressed on further calls\";s:9:\"%function\";s:20:\"_menu_load_objects()\";s:5:\"%file\";s:53:\"/var/www/html/antarctic-drupal-7.31/includes/menu.inc\";s:5:\"%line\";i:579;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170068),(286117,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170068),(286118,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170068),(286119,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170068),(286120,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170068),(286121,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170068),(286122,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170068),(286123,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170068),(286124,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170068),(286125,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170068),(286126,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170068),(286127,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170068),(286128,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170068),(286129,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170068),(286130,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170068),(286131,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170068),(286132,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170068),(286133,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170068),(286134,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170068),(286135,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170068),(286136,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170068),(286137,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170068),(286138,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170068),(286139,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170068),(286140,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170068),(286141,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170068),(286142,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170068),(286143,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170068),(286144,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170068),(286145,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170068),(286146,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170068),(286147,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170068),(286148,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170068),(286149,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170068),(286150,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170068),(286151,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170068),(286152,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170068),(286153,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:5:\"Error\";s:8:\"!message\";s:44:\"Class &#039;SimpleXMLElement&#039; not found\";s:9:\"%function\";s:18:\"update_parse_xml()\";s:5:\"%file\";s:67:\"/var/www/html/antarctic-drupal-7.31/modules/update/update.fetch.inc\";s:5:\"%line\";i:390;s:14:\"severity_level\";i:3;}',3,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170069),(286154,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1486;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170069),(286155,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1490;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170069),(286156,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170069),(286157,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170069),(286158,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170069),(286159,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170069),(286160,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=user/1','http://morsea.uniparthenope.it/?q=node/46','10.100.9.116',1652170069),(286161,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:5:\"Error\";s:8:\"!message\";s:39:\"Class &#039;DOMDocument&#039; not found\";s:9:\"%function\";s:17:\"filter_dom_load()\";s:5:\"%file\";s:64:\"/var/www/html/antarctic-drupal-7.31/modules/filter/filter.module\";s:5:\"%line\";i:1105;s:14:\"severity_level\";i:3;}',3,'','http://morsea.uniparthenope.it/?q=node/131','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170079),(286162,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:39:\"Drupal\\gmap\\GmapDefaults->__construct()\";s:5:\"%file\";s:91:\"/var/www/html/antarctic-drupal-7.31/sites/all/modules/gmap/lib/Drupal/gmap/GmapDefaults.php\";s:5:\"%line\";i:107;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=node/131','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170079),(286163,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=node/131','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170079),(286164,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:83:\"The each() function is deprecated. This message will be suppressed on further calls\";s:9:\"%function\";s:27:\"_drupal_shutdown_function()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:3788;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=node/131','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170079),(286165,1,'user','Session closed for %name.','a:1:{s:5:\"%name\";s:5:\"admin\";}',5,'','http://morsea.uniparthenope.it/?q=user/logout','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170088),(286166,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:83:\"The each() function is deprecated. This message will be suppressed on further calls\";s:9:\"%function\";s:27:\"_drupal_shutdown_function()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:3788;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=user/logout','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170088),(286167,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:39:\"Drupal\\gmap\\GmapDefaults->__construct()\";s:5:\"%file\";s:91:\"/var/www/html/antarctic-drupal-7.31/sites/all/modules/gmap/lib/Drupal/gmap/GmapDefaults.php\";s:5:\"%line\";i:107;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170088),(286168,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:18:\"drupal_get_feeds()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:394;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170088),(286169,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170088),(286170,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170088),(286171,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170088),(286172,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170088),(286173,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170088),(286174,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170088),(286175,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170088),(286176,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170088),(286177,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170088),(286178,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170088),(286179,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170088),(286180,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170088),(286181,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170088),(286182,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170088),(286183,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170088),(286184,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170088),(286185,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170088),(286186,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170088),(286187,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170088),(286188,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170088),(286189,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170088),(286190,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170088),(286191,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:5:\"Error\";s:8:\"!message\";s:44:\"Class &#039;SimpleXMLElement&#039; not found\";s:9:\"%function\";s:18:\"update_parse_xml()\";s:5:\"%file\";s:67:\"/var/www/html/antarctic-drupal-7.31/modules/update/update.fetch.inc\";s:5:\"%line\";i:390;s:14:\"severity_level\";i:3;}',3,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170088),(286192,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1486;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170088),(286193,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1490;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170088),(286194,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170088),(286195,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170088),(286196,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170088),(286197,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170088),(286198,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:83:\"The each() function is deprecated. This message will be suppressed on further calls\";s:9:\"%function\";s:27:\"_drupal_shutdown_function()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:3788;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/','http://morsea.uniparthenope.it/?q=user/1','10.100.9.116',1652170088),(286199,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:39:\"Drupal\\gmap\\GmapDefaults->__construct()\";s:5:\"%file\";s:91:\"/var/www/html/antarctic-drupal-7.31/sites/all/modules/gmap/lib/Drupal/gmap/GmapDefaults.php\";s:5:\"%line\";i:107;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286200,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286201,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286202,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286203,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286204,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286205,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286206,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286207,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286208,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286209,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286210,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:18:\"drupal_get_feeds()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:394;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286211,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:83:\"The each() function is deprecated. This message will be suppressed on further calls\";s:9:\"%function\";s:23:\"menu_set_active_trail()\";s:5:\"%file\";s:53:\"/var/www/html/antarctic-drupal-7.31/includes/menu.inc\";s:5:\"%line\";i:2405;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286212,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286213,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286214,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286215,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286216,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286217,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286218,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286219,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286220,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286221,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286222,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286223,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286224,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286225,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286226,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286227,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286228,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286229,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286230,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286231,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286232,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286233,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286234,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286235,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286236,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286237,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286238,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286239,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286240,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286241,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286242,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286243,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286244,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286245,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286246,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286247,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286248,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286249,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286250,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286251,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286252,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286253,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286254,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286255,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286256,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286257,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286258,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286259,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286260,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286261,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286262,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286263,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286264,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286265,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:5:\"Error\";s:8:\"!message\";s:44:\"Class &#039;SimpleXMLElement&#039; not found\";s:9:\"%function\";s:18:\"update_parse_xml()\";s:5:\"%file\";s:67:\"/var/www/html/antarctic-drupal-7.31/modules/update/update.fetch.inc\";s:5:\"%line\";i:390;s:14:\"severity_level\";i:3;}',3,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286266,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1486;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286267,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1490;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286268,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286269,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286270,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286271,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286272,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286273,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286274,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286275,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fstructure%2Fblock%2Fmanage%2Fsystem%2Fuser-menu%2Fconfigure&destination=user%2F1&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170178),(286276,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:39:\"Drupal\\gmap\\GmapDefaults->__construct()\";s:5:\"%file\";s:91:\"/var/www/html/antarctic-drupal-7.31/sites/all/modules/gmap/lib/Drupal/gmap/GmapDefaults.php\";s:5:\"%line\";i:107;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170198),(286277,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:18:\"drupal_get_feeds()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:394;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170198),(286278,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:83:\"The each() function is deprecated. This message will be suppressed on further calls\";s:9:\"%function\";s:23:\"menu_set_active_trail()\";s:5:\"%file\";s:53:\"/var/www/html/antarctic-drupal-7.31/includes/menu.inc\";s:5:\"%line\";i:2405;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170198),(286279,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170198),(286280,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170198),(286281,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170198),(286282,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170198),(286283,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170198),(286284,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170198),(286285,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170198),(286286,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170198),(286287,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:5:\"Error\";s:8:\"!message\";s:44:\"Class &#039;SimpleXMLElement&#039; not found\";s:9:\"%function\";s:18:\"update_parse_xml()\";s:5:\"%file\";s:67:\"/var/www/html/antarctic-drupal-7.31/modules/update/update.fetch.inc\";s:5:\"%line\";i:390;s:14:\"severity_level\";i:3;}',3,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170198),(286288,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1486;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170198),(286289,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1490;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170198),(286290,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170198),(286291,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170198),(286292,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170198),(286293,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170198),(286294,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170198),(286295,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170198),(286296,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170198),(286297,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170198),(286298,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:12:\"User warning\";s:8:\"!message\";s:209:\"The following module is missing from the file system: <em class=\"placeholder\">ckeditor</em>. For information about how to fix this, see <a href=\"https://www.drupal.org/node/2487215\">the documentation page</a>.\";s:9:\"%function\";s:44:\"_drupal_trigger_error_with_delayed_logging()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1143;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170198),(286299,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:12:\"User warning\";s:8:\"!message\";s:214:\"The following module is missing from the file system: <em class=\"placeholder\">jquery_update</em>. For information about how to fix this, see <a href=\"https://www.drupal.org/node/2487215\">the documentation page</a>.\";s:9:\"%function\";s:44:\"_drupal_trigger_error_with_delayed_logging()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1143;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170198),(286300,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:12:\"User warning\";s:8:\"!message\";s:214:\"The following module is missing from the file system: <em class=\"placeholder\">openlayers_ui</em>. For information about how to fix this, see <a href=\"https://www.drupal.org/node/2487215\">the documentation page</a>.\";s:9:\"%function\";s:44:\"_drupal_trigger_error_with_delayed_logging()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1143;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170198),(286301,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:12:\"User warning\";s:8:\"!message\";s:217:\"The following module is missing from the file system: <em class=\"placeholder\">openlayers_views</em>. For information about how to fix this, see <a href=\"https://www.drupal.org/node/2487215\">the documentation page</a>.\";s:9:\"%function\";s:44:\"_drupal_trigger_error_with_delayed_logging()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1143;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170198),(286302,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:12:\"User warning\";s:8:\"!message\";s:211:\"The following module is missing from the file system: <em class=\"placeholder\">openlayers</em>. For information about how to fix this, see <a href=\"https://www.drupal.org/node/2487215\">the documentation page</a>.\";s:9:\"%function\";s:44:\"_drupal_trigger_error_with_delayed_logging()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1143;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170198),(286303,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:12:\"User warning\";s:8:\"!message\";s:232:\"The following module is missing from the file system: <em class=\"placeholder\">openlayers_test_example_feature</em>. For information about how to fix this, see <a href=\"https://www.drupal.org/node/2487215\">the documentation page</a>.\";s:9:\"%function\";s:44:\"_drupal_trigger_error_with_delayed_logging()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1143;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170198),(286304,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:12:\"User warning\";s:8:\"!message\";s:214:\"The following module is missing from the file system: <em class=\"placeholder\">radius_client</em>. For information about how to fix this, see <a href=\"https://www.drupal.org/node/2487215\">the documentation page</a>.\";s:9:\"%function\";s:44:\"_drupal_trigger_error_with_delayed_logging()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1143;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170198),(286305,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:12:\"User warning\";s:8:\"!message\";s:219:\"The following module is missing from the file system: <em class=\"placeholder\">radius_client_auth</em>. For information about how to fix this, see <a href=\"https://www.drupal.org/node/2487215\">the documentation page</a>.\";s:9:\"%function\";s:44:\"_drupal_trigger_error_with_delayed_logging()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1143;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170198),(286306,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:12:\"User warning\";s:8:\"!message\";s:218:\"The following module is missing from the file system: <em class=\"placeholder\">radius_dictionary</em>. For information about how to fix this, see <a href=\"https://www.drupal.org/node/2487215\">the documentation page</a>.\";s:9:\"%function\";s:44:\"_drupal_trigger_error_with_delayed_logging()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1143;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652170198),(286307,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:39:\"Drupal\\gmap\\GmapDefaults->__construct()\";s:5:\"%file\";s:91:\"/var/www/html/antarctic-drupal-7.31/sites/all/modules/gmap/lib/Drupal/gmap/GmapDefaults.php\";s:5:\"%line\";i:107;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652171422),(286308,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:18:\"drupal_get_feeds()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:394;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652171422),(286309,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:83:\"The each() function is deprecated. This message will be suppressed on further calls\";s:9:\"%function\";s:23:\"menu_set_active_trail()\";s:5:\"%file\";s:53:\"/var/www/html/antarctic-drupal-7.31/includes/menu.inc\";s:5:\"%line\";i:2405;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652171422),(286310,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652171422),(286311,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652171422),(286312,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652171422),(286313,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652171422),(286314,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652171422),(286315,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652171422),(286316,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652171422),(286317,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652171422),(286318,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:5:\"Error\";s:8:\"!message\";s:44:\"Class &#039;SimpleXMLElement&#039; not found\";s:9:\"%function\";s:18:\"update_parse_xml()\";s:5:\"%file\";s:67:\"/var/www/html/antarctic-drupal-7.31/modules/update/update.fetch.inc\";s:5:\"%line\";i:390;s:14:\"severity_level\";i:3;}',3,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652171422),(286319,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1486;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652171422),(286320,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1490;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652171422),(286321,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652171422),(286322,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652171422),(286323,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652171422),(286324,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652171422),(286325,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652171422),(286326,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652171422),(286327,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652171422),(286328,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','http://morsea.uniparthenope.it/?q=user/1','192.168.241.80',1652171422),(286329,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:39:\"Drupal\\gmap\\GmapDefaults->__construct()\";s:5:\"%file\";s:91:\"/var/www/html/antarctic-drupal-7.31/sites/all/modules/gmap/lib/Drupal/gmap/GmapDefaults.php\";s:5:\"%line\";i:107;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay&render=overlay','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','192.168.241.80',1652171428),(286330,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:83:\"The each() function is deprecated. This message will be suppressed on further calls\";s:9:\"%function\";s:23:\"menu_set_active_trail()\";s:5:\"%file\";s:53:\"/var/www/html/antarctic-drupal-7.31/includes/menu.inc\";s:5:\"%line\";i:2405;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay&render=overlay','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','192.168.241.80',1652171428),(286331,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay&render=overlay','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','192.168.241.80',1652171428),(286332,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay&render=overlay','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','192.168.241.80',1652171428),(286333,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay&render=overlay','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','192.168.241.80',1652171428),(286334,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay&render=overlay','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','192.168.241.80',1652171428),(286335,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay&render=overlay','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','192.168.241.80',1652171428),(286336,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay&render=overlay','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','192.168.241.80',1652171428),(286337,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:39:\"Drupal\\gmap\\GmapDefaults->__construct()\";s:5:\"%file\";s:91:\"/var/www/html/antarctic-drupal-7.31/sites/all/modules/gmap/lib/Drupal/gmap/GmapDefaults.php\";s:5:\"%line\";i:107;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','192.168.241.80',1652171429),(286338,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:18:\"drupal_get_feeds()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:394;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','192.168.241.80',1652171429),(286339,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:83:\"The each() function is deprecated. This message will be suppressed on further calls\";s:9:\"%function\";s:23:\"menu_set_active_trail()\";s:5:\"%file\";s:53:\"/var/www/html/antarctic-drupal-7.31/includes/menu.inc\";s:5:\"%line\";i:2405;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','192.168.241.80',1652171429),(286340,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','192.168.241.80',1652171429),(286341,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','192.168.241.80',1652171429),(286342,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','192.168.241.80',1652171429),(286343,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','192.168.241.80',1652171429),(286344,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','192.168.241.80',1652171429),(286345,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','192.168.241.80',1652171429),(286346,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','192.168.241.80',1652171429),(286347,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','192.168.241.80',1652171429),(286348,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:5:\"Error\";s:8:\"!message\";s:44:\"Class &#039;SimpleXMLElement&#039; not found\";s:9:\"%function\";s:18:\"update_parse_xml()\";s:5:\"%file\";s:67:\"/var/www/html/antarctic-drupal-7.31/modules/update/update.fetch.inc\";s:5:\"%line\";i:390;s:14:\"severity_level\";i:3;}',3,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','192.168.241.80',1652171429),(286349,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1486;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','192.168.241.80',1652171429),(286350,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1490;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','192.168.241.80',1652171429),(286351,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','192.168.241.80',1652171429),(286352,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','192.168.241.80',1652171429),(286353,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','192.168.241.80',1652171429),(286354,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','192.168.241.80',1652171429),(286355,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','192.168.241.80',1652171429),(286356,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','192.168.241.80',1652171429),(286357,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','192.168.241.80',1652171429),(286358,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','http://morsea.uniparthenope.it/?q=admin%2Fconfig%2Fdevelopment%2Fmaintenance&render=overlay','192.168.241.80',1652171429),(286359,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:39:\"Drupal\\gmap\\GmapDefaults->__construct()\";s:5:\"%file\";s:91:\"/var/www/html/antarctic-drupal-7.31/sites/all/modules/gmap/lib/Drupal/gmap/GmapDefaults.php\";s:5:\"%line\";i:107;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay&render=overlay','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','192.168.241.80',1652171435),(286360,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:83:\"The each() function is deprecated. This message will be suppressed on further calls\";s:9:\"%function\";s:23:\"menu_set_active_trail()\";s:5:\"%file\";s:53:\"/var/www/html/antarctic-drupal-7.31/includes/menu.inc\";s:5:\"%line\";i:2405;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay&render=overlay','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','192.168.241.80',1652171435),(286361,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay&render=overlay','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','192.168.241.80',1652171435),(286362,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay&render=overlay','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','192.168.241.80',1652171435),(286363,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay&render=overlay','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','192.168.241.80',1652171435),(286364,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay&render=overlay','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','192.168.241.80',1652171435),(286365,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay&render=overlay','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','192.168.241.80',1652171435),(286366,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay&render=overlay','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','192.168.241.80',1652171435),(286367,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:39:\"Drupal\\gmap\\GmapDefaults->__construct()\";s:5:\"%file\";s:91:\"/var/www/html/antarctic-drupal-7.31/sites/all/modules/gmap/lib/Drupal/gmap/GmapDefaults.php\";s:5:\"%line\";i:107;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','192.168.241.80',1652171435),(286368,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:18:\"drupal_get_feeds()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:394;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','192.168.241.80',1652171435),(286369,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:83:\"The each() function is deprecated. This message will be suppressed on further calls\";s:9:\"%function\";s:23:\"menu_set_active_trail()\";s:5:\"%file\";s:53:\"/var/www/html/antarctic-drupal-7.31/includes/menu.inc\";s:5:\"%line\";i:2405;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','192.168.241.80',1652171435),(286370,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','192.168.241.80',1652171435),(286371,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','192.168.241.80',1652171435),(286372,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','192.168.241.80',1652171435),(286373,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','192.168.241.80',1652171435),(286374,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','192.168.241.80',1652171435),(286375,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','192.168.241.80',1652171435),(286376,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','192.168.241.80',1652171435),(286377,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','192.168.241.80',1652171435),(286378,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:5:\"Error\";s:8:\"!message\";s:44:\"Class &#039;SimpleXMLElement&#039; not found\";s:9:\"%function\";s:18:\"update_parse_xml()\";s:5:\"%file\";s:67:\"/var/www/html/antarctic-drupal-7.31/modules/update/update.fetch.inc\";s:5:\"%line\";i:390;s:14:\"severity_level\";i:3;}',3,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','192.168.241.80',1652171436),(286379,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1486;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','192.168.241.80',1652171436),(286380,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1490;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','192.168.241.80',1652171436),(286381,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','192.168.241.80',1652171436),(286382,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','192.168.241.80',1652171436),(286383,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','192.168.241.80',1652171436),(286384,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','192.168.241.80',1652171436),(286385,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','192.168.241.80',1652171436),(286386,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','192.168.241.80',1652171436),(286387,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','192.168.241.80',1652171436),(286388,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','http://morsea.uniparthenope.it/?q=admin/config/development/maintenance&render=overlay','192.168.241.80',1652171436),(286389,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:39:\"Drupal\\gmap\\GmapDefaults->__construct()\";s:5:\"%file\";s:91:\"/var/www/html/antarctic-drupal-7.31/sites/all/modules/gmap/lib/Drupal/gmap/GmapDefaults.php\";s:5:\"%line\";i:107;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/','','192.168.241.80',1652171442),(286390,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:77:\"implode(): Passing glue string after array is deprecated. Swap the parameters\";s:9:\"%function\";s:18:\"drupal_get_feeds()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:394;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/','','192.168.241.80',1652171442),(286391,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','','192.168.241.80',1652171442),(286392,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','','192.168.241.80',1652171442),(286393,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','','192.168.241.80',1652171442),(286394,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','','192.168.241.80',1652171442),(286395,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','','192.168.241.80',1652171442),(286396,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','','192.168.241.80',1652171442),(286397,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','','192.168.241.80',1652171442),(286398,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','','192.168.241.80',1652171442),(286399,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','','192.168.241.80',1652171442),(286400,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','','192.168.241.80',1652171442),(286401,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','','192.168.241.80',1652171442),(286402,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','','192.168.241.80',1652171442),(286403,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','','192.168.241.80',1652171442),(286404,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','','192.168.241.80',1652171442),(286405,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','','192.168.241.80',1652171442),(286406,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','','192.168.241.80',1652171442),(286407,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','','192.168.241.80',1652171442),(286408,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','','192.168.241.80',1652171442),(286409,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','','192.168.241.80',1652171442),(286410,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','','192.168.241.80',1652171442),(286411,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','','192.168.241.80',1652171442),(286412,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','','192.168.241.80',1652171442),(286413,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','','192.168.241.80',1652171442),(286414,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','','192.168.241.80',1652171442),(286415,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','','192.168.241.80',1652171442),(286416,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','','192.168.241.80',1652171442),(286417,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','','192.168.241.80',1652171442),(286418,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','','192.168.241.80',1652171442),(286419,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','','192.168.241.80',1652171442),(286420,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','','192.168.241.80',1652171442),(286421,1,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','','192.168.241.80',1652171442),(286422,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:5:\"Error\";s:8:\"!message\";s:44:\"Class &#039;SimpleXMLElement&#039; not found\";s:9:\"%function\";s:18:\"update_parse_xml()\";s:5:\"%file\";s:67:\"/var/www/html/antarctic-drupal-7.31/modules/update/update.fetch.inc\";s:5:\"%line\";i:390;s:14:\"severity_level\";i:3;}',3,'','http://morsea.uniparthenope.it/','','192.168.241.80',1652171442),(286423,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1486;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/','','192.168.241.80',1652171442),(286424,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:7:\"Warning\";s:8:\"!message\";s:139:\"Cannot modify header information - headers already sent by (output started at /var/www/html/antarctic-drupal-7.31/includes/common.inc:2777)\";s:9:\"%function\";s:21:\"drupal_send_headers()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:1490;s:14:\"severity_level\";i:4;}',4,'','http://morsea.uniparthenope.it/','','192.168.241.80',1652171442),(286425,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','','192.168.241.80',1652171442),(286426,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','','192.168.241.80',1652171442),(286427,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','','192.168.241.80',1652171442),(286428,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','','192.168.241.80',1652171442),(286429,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:6:\"Notice\";s:8:\"!message\";s:50:\"Trying to access array offset on value of type int\";s:9:\"%function\";s:18:\"element_children()\";s:5:\"%file\";s:55:\"/var/www/html/antarctic-drupal-7.31/includes/common.inc\";s:5:\"%line\";i:6595;s:14:\"severity_level\";i:5;}',5,'','http://morsea.uniparthenope.it/','','192.168.241.80',1652171442),(286430,0,'php','%type: !message in %function (line %line of %file).','a:6:{s:5:\"%type\";s:19:\"Deprecated function\";s:8:\"!message\";s:83:\"The each() function is deprecated. This message will be suppressed on further calls\";s:9:\"%function\";s:27:\"_drupal_shutdown_function()\";s:5:\"%file\";s:58:\"/var/www/html/antarctic-drupal-7.31/includes/bootstrap.inc\";s:5:\"%line\";i:3788;s:14:\"severity_level\";i:7;}',7,'','http://morsea.uniparthenope.it/','','192.168.241.80',1652171442);
/*!40000 ALTER TABLE `watchdog` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zipcodes`
--

DROP TABLE IF EXISTS `zipcodes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zipcodes` (
  `zip` varchar(16) NOT NULL DEFAULT '0' COMMENT 'Postal / ZIP code.',
  `city` varchar(30) NOT NULL DEFAULT '' COMMENT 'City.',
  `state` varchar(30) NOT NULL DEFAULT '' COMMENT 'Province / State.',
  `latitude` decimal(10,6) NOT NULL DEFAULT 0.000000 COMMENT 'Location latitude (decimal degrees).',
  `longitude` decimal(10,6) NOT NULL DEFAULT 0.000000 COMMENT 'Location longitude (decimal degrees).',
  `timezone` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'Timezone (unused).',
  `dst` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'Daylight Savings Time (unused).',
  `country` char(2) NOT NULL DEFAULT '' COMMENT 'Two letter ISO country code.',
  KEY `pc` (`country`,`zip`),
  KEY `zip` (`zip`),
  KEY `latitude` (`latitude`),
  KEY `longitude` (`longitude`),
  KEY `country` (`country`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Location.module zipcode database.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zipcodes`
--

LOCK TABLES `zipcodes` WRITE;
/*!40000 ALTER TABLE `zipcodes` DISABLE KEYS */;
/*!40000 ALTER TABLE `zipcodes` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

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

-- Dump completed on 2022-05-10  8:30:55

AnonSec - 2021 | Recode By D7net